]> asedeno.scripts.mit.edu Git - linux.git/blob - arch/ia64/Kconfig
ia64: remove the hpsim platform
[linux.git] / arch / ia64 / Kconfig
1 # SPDX-License-Identifier: GPL-2.0
2 config PGTABLE_LEVELS
3         int "Page Table Levels" if !IA64_PAGE_SIZE_64KB
4         range 3 4 if !IA64_PAGE_SIZE_64KB
5         default 3
6
7 menu "Processor type and features"
8
9 config IA64
10         bool
11         select ARCH_MIGHT_HAVE_PC_PARPORT
12         select ARCH_MIGHT_HAVE_PC_SERIO
13         select ACPI
14         select ARCH_SUPPORTS_ACPI
15         select ACPI_SYSTEM_POWER_STATES_SUPPORT if ACPI
16         select ARCH_MIGHT_HAVE_ACPI_PDC if ACPI
17         select FORCE_PCI
18         select PCI_DOMAINS if PCI
19         select PCI_SYSCALL if PCI
20         select HAVE_UNSTABLE_SCHED_CLOCK
21         select HAVE_EXIT_THREAD
22         select HAVE_IDE
23         select HAVE_OPROFILE
24         select HAVE_KPROBES
25         select HAVE_KRETPROBES
26         select HAVE_FTRACE_MCOUNT_RECORD
27         select HAVE_DYNAMIC_FTRACE if (!ITANIUM)
28         select HAVE_FUNCTION_TRACER
29         select TTY
30         select HAVE_ARCH_TRACEHOOK
31         select HAVE_MEMBLOCK_NODE_MAP
32         select HAVE_VIRT_CPU_ACCOUNTING
33         select ARCH_HAS_DMA_COHERENT_TO_PFN if SWIOTLB
34         select ARCH_HAS_SYNC_DMA_FOR_CPU if SWIOTLB
35         select VIRT_TO_BUS
36         select GENERIC_IRQ_PROBE
37         select GENERIC_PENDING_IRQ if SMP
38         select GENERIC_IRQ_SHOW
39         select GENERIC_IRQ_LEGACY
40         select ARCH_HAVE_NMI_SAFE_CMPXCHG
41         select GENERIC_IOMAP
42         select GENERIC_SMP_IDLE_THREAD
43         select ARCH_TASK_STRUCT_ON_STACK
44         select ARCH_TASK_STRUCT_ALLOCATOR
45         select ARCH_THREAD_STACK_ALLOCATOR
46         select ARCH_CLOCKSOURCE_DATA
47         select GENERIC_TIME_VSYSCALL
48         select SYSCTL_ARCH_UNALIGN_NO_WARN
49         select HAVE_MOD_ARCH_SPECIFIC
50         select MODULES_USE_ELF_RELA
51         select ARCH_USE_CMPXCHG_LOCKREF
52         select HAVE_ARCH_AUDITSYSCALL
53         select NEED_DMA_MAP_STATE
54         select NEED_SG_DMA_LENGTH
55         default y
56         help
57           The Itanium Processor Family is Intel's 64-bit successor to
58           the 32-bit X86 line.  The IA-64 Linux project has a home
59           page at <http://www.linuxia64.org/> and a mailing list at
60           <linux-ia64@vger.kernel.org>.
61
62 config 64BIT
63         bool
64         select ATA_NONSTANDARD if ATA
65         default y
66
67 config ZONE_DMA32
68         def_bool y
69
70 config QUICKLIST
71         bool
72         default y
73
74 config MMU
75         bool
76         default y
77
78 config STACKTRACE_SUPPORT
79         def_bool y
80
81 config GENERIC_LOCKBREAK
82         def_bool n
83
84 config HUGETLB_PAGE_SIZE_VARIABLE
85         bool
86         depends on HUGETLB_PAGE
87         default y
88
89 config GENERIC_CALIBRATE_DELAY
90         bool
91         default y
92
93 config HAVE_SETUP_PER_CPU_AREA
94         def_bool y
95
96 config DMI
97         bool
98         default y
99         select DMI_SCAN_MACHINE_NON_EFI_FALLBACK
100
101 config EFI
102         bool
103         select UCS2_STRING
104         default y
105
106 config SCHED_OMIT_FRAME_POINTER
107         bool
108         default y
109
110 config IA64_UNCACHED_ALLOCATOR
111         bool
112         select GENERIC_ALLOCATOR
113
114 config ARCH_USES_PG_UNCACHED
115         def_bool y
116         depends on IA64_UNCACHED_ALLOCATOR
117
118 config AUDIT_ARCH
119         bool
120         default y
121
122 choice
123         prompt "System type"
124         default IA64_GENERIC
125
126 config IA64_GENERIC
127         bool "generic"
128         select NUMA
129         select ACPI_NUMA
130         select SWIOTLB
131         select PCI_MSI
132         help
133           This selects the system type of your hardware.  A "generic" kernel
134           will run on any supported IA-64 system.  However, if you configure
135           a kernel for your specific system, it will be faster and smaller.
136
137           generic               For any supported IA-64 system
138           DIG-compliant         For DIG ("Developer's Interface Guide") compliant systems
139           DIG+Intel+IOMMU       For DIG systems with Intel IOMMU
140           HP-zx1/sx1000         For HP systems
141           HP-zx1/sx1000+swiotlb For HP systems with (broken) DMA-constrained devices.
142           SGI-UV                For SGI UV systems
143
144           If you don't know what to do, choose "generic".
145
146 config IA64_DIG
147         bool "DIG-compliant"
148         select SWIOTLB
149
150 config IA64_DIG_VTD
151         bool "DIG+Intel+IOMMU"
152         select INTEL_IOMMU
153         select PCI_MSI
154
155 config IA64_HP_ZX1
156         bool "HP-zx1/sx1000"
157         help
158           Build a kernel that runs on HP zx1 and sx1000 systems.  This adds
159           support for the HP I/O MMU.
160
161 config IA64_HP_ZX1_SWIOTLB
162         bool "HP-zx1/sx1000 with software I/O TLB"
163         select SWIOTLB
164         help
165           Build a kernel that runs on HP zx1 and sx1000 systems even when they
166           have broken PCI devices which cannot DMA to full 32 bits.  Apart
167           from support for the HP I/O MMU, this includes support for the software
168           I/O TLB, which allows supporting the broken devices at the expense of
169           wasting some kernel memory (about 2MB by default).
170
171 config IA64_SGI_UV
172         bool "SGI-UV"
173         select NUMA
174         select ACPI_NUMA
175         select SWIOTLB
176         help
177           Selecting this option will optimize the kernel for use on UV based
178           systems, but the resulting kernel binary will not run on other
179           types of ia64 systems.  If you have an SGI UV system, it's safe
180           to select this option.  If in doubt, select ia64 generic support
181           instead.
182
183 endchoice
184
185 choice
186         prompt "Processor type"
187         default ITANIUM
188
189 config ITANIUM
190         bool "Itanium"
191         help
192           Select your IA-64 processor type.  The default is Itanium.
193           This choice is safe for all IA-64 systems, but may not perform
194           optimally on systems with, say, Itanium 2 or newer processors.
195
196 config MCKINLEY
197         bool "Itanium 2"
198         help
199           Select this to configure for an Itanium 2 (McKinley) processor.
200
201 endchoice
202
203 choice
204         prompt "Kernel page size"
205         default IA64_PAGE_SIZE_16KB
206
207 config IA64_PAGE_SIZE_4KB
208         bool "4KB"
209         help
210           This lets you select the page size of the kernel.  For best IA-64
211           performance, a page size of 8KB or 16KB is recommended.  For best
212           IA-32 compatibility, a page size of 4KB should be selected (the vast
213           majority of IA-32 binaries work perfectly fine with a larger page
214           size).  For Itanium 2 or newer systems, a page size of 64KB can also
215           be selected.
216
217           4KB                For best IA-32 compatibility
218           8KB                For best IA-64 performance
219           16KB               For best IA-64 performance
220           64KB               Requires Itanium 2 or newer processor.
221
222           If you don't know what to do, choose 16KB.
223
224 config IA64_PAGE_SIZE_8KB
225         bool "8KB"
226
227 config IA64_PAGE_SIZE_16KB
228         bool "16KB"
229
230 config IA64_PAGE_SIZE_64KB
231         depends on !ITANIUM
232         bool "64KB"
233
234 endchoice
235
236 source "kernel/Kconfig.hz"
237
238 config IA64_BRL_EMU
239         bool
240         depends on ITANIUM
241         default y
242
243 # align cache-sensitive data to 128 bytes
244 config IA64_L1_CACHE_SHIFT
245         int
246         default "7" if MCKINLEY
247         default "6" if ITANIUM
248
249 config IA64_CYCLONE
250         bool "Cyclone (EXA) Time Source support"
251         help
252           Say Y here to enable support for IBM EXA Cyclone time source.
253           If you're unsure, answer N.
254
255 config FORCE_MAX_ZONEORDER
256         int "MAX_ORDER (11 - 17)"  if !HUGETLB_PAGE
257         range 11 17  if !HUGETLB_PAGE
258         default "17" if HUGETLB_PAGE
259         default "11"
260
261 config SMP
262         bool "Symmetric multi-processing support"
263         help
264           This enables support for systems with more than one CPU. If you have
265           a system with only one CPU, say N.  If you have a system with more
266           than one CPU, say Y.
267
268           If you say N here, the kernel will run on single and multiprocessor
269           systems, but will use only one CPU of a multiprocessor system.  If
270           you say Y here, the kernel will run on many, but not all,
271           single processor systems.  On a single processor system, the kernel
272           will run faster if you say N here.
273
274           See also the SMP-HOWTO available at
275           <http://www.tldp.org/docs.html#howto>.
276
277           If you don't know what to do here, say N.
278
279 config NR_CPUS
280         int "Maximum number of CPUs (2-4096)"
281         range 2 4096
282         depends on SMP
283         default "4096"
284         help
285           You should set this to the number of CPUs in your system, but
286           keep in mind that a kernel compiled for, e.g., 2 CPUs will boot but
287           only use 2 CPUs on a >2 CPU system.  Setting this to a value larger
288           than 64 will cause the use of a CPU mask array, causing a small
289           performance hit.
290
291 config HOTPLUG_CPU
292         bool "Support for hot-pluggable CPUs"
293         depends on SMP
294         default n
295         ---help---
296           Say Y here to experiment with turning CPUs off and on.  CPUs
297           can be controlled through /sys/devices/system/cpu/cpu#.
298           Say N if you want to disable CPU hotplug.
299
300 config ARCH_ENABLE_MEMORY_HOTPLUG
301         def_bool y
302
303 config ARCH_ENABLE_MEMORY_HOTREMOVE
304         def_bool y
305
306 config SCHED_SMT
307         bool "SMT scheduler support"
308         depends on SMP
309         help
310           Improves the CPU scheduler's decision making when dealing with
311           Intel IA64 chips with MultiThreading at a cost of slightly increased
312           overhead in some places. If unsure say N here.
313
314 config PERMIT_BSP_REMOVE
315         bool "Support removal of Bootstrap Processor"
316         depends on HOTPLUG_CPU
317         default n
318         ---help---
319         Say Y here if your platform SAL will support removal of BSP with HOTPLUG_CPU
320         support. 
321
322 config FORCE_CPEI_RETARGET
323         bool "Force assumption that CPEI can be re-targeted"
324         depends on PERMIT_BSP_REMOVE
325         default n
326         ---help---
327         Say Y if you need to force the assumption that CPEI can be re-targeted to
328         any cpu in the system. This hint is available via ACPI 3.0 specifications.
329         Tiger4 systems are capable of re-directing CPEI to any CPU other than BSP.
330         This option it useful to enable this feature on older BIOS's as well.
331         You can also enable this by using boot command line option force_cpei=1.
332
333 config ARCH_SELECT_MEMORY_MODEL
334         def_bool y
335
336 config ARCH_DISCONTIGMEM_ENABLE
337         def_bool y
338         help
339           Say Y to support efficient handling of discontiguous physical memory,
340           for architectures which are either NUMA (Non-Uniform Memory Access)
341           or have huge holes in the physical address space for other reasons.
342           See <file:Documentation/vm/numa.rst> for more.
343
344 config ARCH_FLATMEM_ENABLE
345         def_bool y
346
347 config ARCH_SPARSEMEM_ENABLE
348         def_bool y
349         depends on ARCH_DISCONTIGMEM_ENABLE
350         select SPARSEMEM_VMEMMAP_ENABLE
351
352 config ARCH_DISCONTIGMEM_DEFAULT
353         def_bool y if (IA64_GENERIC || IA64_HP_ZX1 || IA64_HP_ZX1_SWIOTLB)
354         depends on ARCH_DISCONTIGMEM_ENABLE
355
356 config NUMA
357         bool "NUMA support"
358         depends on !FLATMEM
359         select ACPI_NUMA if ACPI
360         help
361           Say Y to compile the kernel to support NUMA (Non-Uniform Memory
362           Access).  This option is for configuring high-end multiprocessor
363           server systems.  If in doubt, say N.
364
365 config NODES_SHIFT
366         int "Max num nodes shift(3-10)"
367         range 3 10
368         default "10"
369         depends on NEED_MULTIPLE_NODES
370         help
371           This option specifies the maximum number of nodes in your SSI system.
372           MAX_NUMNODES will be 2^(This value).
373           If in doubt, use the default.
374
375 # VIRTUAL_MEM_MAP and FLAT_NODE_MEM_MAP are functionally equivalent.
376 # VIRTUAL_MEM_MAP has been retained for historical reasons.
377 config VIRTUAL_MEM_MAP
378         bool "Virtual mem map"
379         depends on !SPARSEMEM
380         default y
381         help
382           Say Y to compile the kernel with support for a virtual mem map.
383           This code also only takes effect if a memory hole of greater than
384           1 Gb is found during boot.  You must turn this option on if you
385           require the DISCONTIGMEM option for your machine. If you are
386           unsure, say Y.
387
388 config HOLES_IN_ZONE
389         bool
390         default y if VIRTUAL_MEM_MAP
391
392 config HAVE_ARCH_EARLY_PFN_TO_NID
393         def_bool NUMA && SPARSEMEM
394
395 config HAVE_ARCH_NODEDATA_EXTENSION
396         def_bool y
397         depends on NUMA
398
399 config USE_PERCPU_NUMA_NODE_ID
400         def_bool y
401         depends on NUMA
402
403 config HAVE_MEMORYLESS_NODES
404         def_bool NUMA
405
406 config ARCH_PROC_KCORE_TEXT
407         def_bool y
408         depends on PROC_KCORE
409
410 config IA64_MCA_RECOVERY
411         tristate "MCA recovery from errors other than TLB."
412
413 config PERFMON
414         bool "Performance monitor support"
415         depends on BROKEN
416         help
417           Selects whether support for the IA-64 performance monitor hardware
418           is included in the kernel.  This makes some kernel data-structures a
419           little bigger and slows down execution a bit, but it is generally
420           a good idea to turn this on.  If you're unsure, say Y.
421
422 config IA64_PALINFO
423         tristate "/proc/pal support"
424         help
425           If you say Y here, you are able to get PAL (Processor Abstraction
426           Layer) information in /proc/pal.  This contains useful information
427           about the processors in your systems, such as cache and TLB sizes
428           and the PAL firmware version in use.
429
430           To use this option, you have to ensure that the "/proc file system
431           support" (CONFIG_PROC_FS) is enabled, too.
432
433 config IA64_MC_ERR_INJECT
434         tristate "MC error injection support"
435         help
436           Adds support for MC error injection. If enabled, the kernel 
437           will provide a sysfs interface for user applications to
438           call MC error injection PAL procedures to inject various errors.
439           This is a useful tool for MCA testing.
440
441           If you're unsure, do not select this option.
442
443 config IA64_ESI
444         bool "ESI (Extensible SAL Interface) support"
445         help
446           If you say Y here, support is built into the kernel to
447           make ESI calls.  ESI calls are used to support vendor-specific
448           firmware extensions, such as the ability to inject memory-errors
449           for test-purposes.  If you're unsure, say N.
450
451 config IA64_HP_AML_NFW
452         bool "Support ACPI AML calls to native firmware"
453         help
454           This driver installs a global ACPI Operation Region handler for
455           region 0xA1.  AML methods can use this OpRegion to call arbitrary
456           native firmware functions.  The driver installs the OpRegion
457           handler if there is an HPQ5001 device or if the user supplies
458           the "force" module parameter, e.g., with the "aml_nfw.force"
459           kernel command line option.
460
461 config KEXEC
462         bool "kexec system call"
463         depends on !SMP || HOTPLUG_CPU
464         select KEXEC_CORE
465         help
466           kexec is a system call that implements the ability to shutdown your
467           current kernel, and to start another kernel.  It is like a reboot
468           but it is independent of the system firmware.   And like a reboot
469           you can start any kernel with it, not just Linux.
470
471           The name comes from the similarity to the exec system call.
472
473           It is an ongoing process to be certain the hardware in a machine
474           is properly shutdown, so do not be surprised if this code does not
475           initially work for you.  As of this writing the exact hardware
476           interface is strongly in flux, so no good recommendation can be
477           made.
478
479 config CRASH_DUMP
480           bool "kernel crash dumps"
481           depends on IA64_MCA_RECOVERY && (!SMP || HOTPLUG_CPU)
482           help
483             Generate crash dump after being started by kexec.
484
485 source "drivers/firmware/Kconfig"
486
487 endmenu
488
489 menu "Power management and ACPI options"
490
491 source "kernel/power/Kconfig"
492
493 source "drivers/acpi/Kconfig"
494
495 if PM
496 menu "CPU Frequency scaling"
497 source "drivers/cpufreq/Kconfig"
498 endmenu
499 endif
500
501 endmenu
502
503 config MSPEC
504         tristate "Memory special operations driver"
505         depends on IA64
506         select IA64_UNCACHED_ALLOCATOR
507         help
508           If you have an ia64 and you want to enable memory special
509           operations support (formerly known as fetchop), say Y here,
510           otherwise say N.