xref: /linux/arch/x86/Kconfig (revision 303148045aac34b70db722a54e5ad94a3a6625c6)
1daa93fabSSam Ravnborg# Select 32 or 64 bit
2daa93fabSSam Ravnborgconfig 64BIT
36840999bSSam Ravnborg	bool "64-bit kernel" if ARCH = "x86"
46840999bSSam Ravnborg	default ARCH = "x86_64"
58f9ca475SIngo Molnar	---help---
6daa93fabSSam Ravnborg	  Say yes to build a 64-bit kernel - formerly known as x86_64
7daa93fabSSam Ravnborg	  Say no to build a 32-bit kernel - formerly known as i386
8daa93fabSSam Ravnborg
9daa93fabSSam Ravnborgconfig X86_32
10daa93fabSSam Ravnborg	def_bool !64BIT
11daa93fabSSam Ravnborg
12daa93fabSSam Ravnborgconfig X86_64
13daa93fabSSam Ravnborg	def_bool 64BIT
141032c0baSSam Ravnborg
151032c0baSSam Ravnborg### Arch settings
168d5fffb9SSam Ravnborgconfig X86
173c2362e6SHarvey Harrison	def_bool y
18e17c6d56SDavid Woodhouse	select HAVE_AOUT if X86_32
192c5643b1SHitoshi Mitake	select HAVE_READQ
202c5643b1SHitoshi Mitake	select HAVE_WRITEQ
21a5574cf6SIngo Molnar	select HAVE_UNSTABLE_SCHED_CLOCK
22ec7748b5SSam Ravnborg	select HAVE_IDE
2342d4b839SMathieu Desnoyers	select HAVE_OPROFILE
24cc2067a5SPeter Zijlstra	select HAVE_PERF_EVENTS
25e360adbeSPeter Zijlstra	select HAVE_IRQ_WORK
2628b2ee20SRik van Riel	select HAVE_IOREMAP_PROT
273f550096SMathieu Desnoyers	select HAVE_KPROBES
2872d7c3b3SYinghai Lu	select HAVE_MEMBLOCK
291f972768SIngo Molnar	select ARCH_WANT_OPTIONAL_GPIOLIB
30da4276b8SIngo Molnar	select ARCH_WANT_FRAME_POINTERS
317c095e46SFUJITA Tomonori	select HAVE_DMA_ATTRS
329edddaa2SAnanth N Mavinakayanahalli	select HAVE_KRETPROBES
33c0f7ac3aSMasami Hiramatsu	select HAVE_OPTPROBES
34e4b2b886SSteven Rostedt	select HAVE_FTRACE_MCOUNT_RECORD
35cf4db259SSteven Rostedt	select HAVE_C_RECORDMCOUNT
36677aa9f7SSteven Rostedt	select HAVE_DYNAMIC_FTRACE
37606576ceSSteven Rostedt	select HAVE_FUNCTION_TRACER
3848d68b20SFrederic Weisbecker	select HAVE_FUNCTION_GRAPH_TRACER
3971e308a2SSteven Rostedt	select HAVE_FUNCTION_GRAPH_FP_TEST
4060a7ecf4SSteven Rostedt	select HAVE_FUNCTION_TRACE_MCOUNT_TEST
419a5fd902SSteven Rostedt	select HAVE_FTRACE_NMI_ENTER if DYNAMIC_FTRACE
4266700001SJosh Stone	select HAVE_SYSCALL_TRACEPOINTS
43e0ec9483SIngo Molnar	select HAVE_KVM
4449793b03SIngo Molnar	select HAVE_ARCH_KGDB
4599bbc4b1SRoland McGrath	select HAVE_ARCH_TRACEHOOK
46323ec001SDmitry Baryshkov	select HAVE_GENERIC_DMA_COHERENT if X86_32
4758340a07SJohannes Berg	select HAVE_EFFICIENT_UNALIGNED_ACCESS
488d26487fSTörök Edwin	select USER_STACKTRACE_SUPPORT
49f850c30cSHeiko Carstens	select HAVE_REGS_AND_STACK_ACCESS_API
502118d0c5SJoerg Roedel	select HAVE_DMA_API_DEBUG
512e9f3bddSH. Peter Anvin	select HAVE_KERNEL_GZIP
522e9f3bddSH. Peter Anvin	select HAVE_KERNEL_BZIP2
532e9f3bddSH. Peter Anvin	select HAVE_KERNEL_LZMA
54*30314804SLasse Collin	select HAVE_KERNEL_XZ
5513510997SAlbin Tonnerre	select HAVE_KERNEL_LZO
560067f129SK.Prasad	select HAVE_HW_BREAKPOINT
570102752eSFrederic Weisbecker	select HAVE_MIXED_BREAKPOINTS_REGS
5899e8c5a3SFrederic Weisbecker	select PERF_EVENTS
59c01d4323SFrederic Weisbecker	select HAVE_PERF_EVENTS_NMI
6099e8c5a3SFrederic Weisbecker	select ANON_INODES
610a4af3b0SPekka Enberg	select HAVE_ARCH_KMEMCHECK
627c68af6eSAvi Kivity	select HAVE_USER_RETURN_NOTIFIER
6346eb3b64SSteven Rostedt	select HAVE_ARCH_JUMP_LABEL
643cba11d3SMasami Hiramatsu	select HAVE_TEXT_POKE_SMP
653bb9808eSThomas Gleixner	select HAVE_GENERIC_HARDIRQS
663bb9808eSThomas Gleixner	select HAVE_SPARSE_IRQ
673bb9808eSThomas Gleixner	select GENERIC_IRQ_PROBE
683bb9808eSThomas Gleixner	select GENERIC_PENDING_IRQ if SMP
69351f8f8eSAmerigo Wang	select USE_GENERIC_SMP_HELPERS if SMP
707d8330a5SBalbir Singh
71ba7e4d13SIngo Molnarconfig INSTRUCTION_DECODER
72ba7e4d13SIngo Molnar	def_bool (KPROBES || PERF_EVENTS)
73ba7e4d13SIngo Molnar
7451b26adaSLinus Torvaldsconfig OUTPUT_FORMAT
7551b26adaSLinus Torvalds	string
7651b26adaSLinus Torvalds	default "elf32-i386" if X86_32
7751b26adaSLinus Torvalds	default "elf64-x86-64" if X86_64
7851b26adaSLinus Torvalds
7973531905SSam Ravnborgconfig ARCH_DEFCONFIG
80b9b39bfbSSam Ravnborg	string
8173531905SSam Ravnborg	default "arch/x86/configs/i386_defconfig" if X86_32
8273531905SSam Ravnborg	default "arch/x86/configs/x86_64_defconfig" if X86_64
83b9b39bfbSSam Ravnborg
848d5fffb9SSam Ravnborgconfig GENERIC_CMOS_UPDATE
853c2362e6SHarvey Harrison	def_bool y
868d5fffb9SSam Ravnborg
878d5fffb9SSam Ravnborgconfig CLOCKSOURCE_WATCHDOG
883c2362e6SHarvey Harrison	def_bool y
898d5fffb9SSam Ravnborg
908d5fffb9SSam Ravnborgconfig GENERIC_CLOCKEVENTS
913c2362e6SHarvey Harrison	def_bool y
928d5fffb9SSam Ravnborg
938d5fffb9SSam Ravnborgconfig GENERIC_CLOCKEVENTS_BROADCAST
943c2362e6SHarvey Harrison	def_bool y
958d5fffb9SSam Ravnborg	depends on X86_64 || (X86_32 && X86_LOCAL_APIC)
968d5fffb9SSam Ravnborg
978d5fffb9SSam Ravnborgconfig LOCKDEP_SUPPORT
983c2362e6SHarvey Harrison	def_bool y
998d5fffb9SSam Ravnborg
1008d5fffb9SSam Ravnborgconfig STACKTRACE_SUPPORT
1013c2362e6SHarvey Harrison	def_bool y
1028d5fffb9SSam Ravnborg
103aa7d9350SHeiko Carstensconfig HAVE_LATENCYTOP_SUPPORT
104aa7d9350SHeiko Carstens	def_bool y
105aa7d9350SHeiko Carstens
1068d5fffb9SSam Ravnborgconfig MMU
1073c2362e6SHarvey Harrison	def_bool y
1088d5fffb9SSam Ravnborg
1098d5fffb9SSam Ravnborgconfig ZONE_DMA
1103c2362e6SHarvey Harrison	def_bool y
1118d5fffb9SSam Ravnborg
1128d5fffb9SSam Ravnborgconfig SBUS
1138d5fffb9SSam Ravnborg	bool
1148d5fffb9SSam Ravnborg
1153bc4e459SFUJITA Tomonoriconfig NEED_DMA_MAP_STATE
1163bc4e459SFUJITA Tomonori       def_bool (X86_64 || DMAR || DMA_API_DEBUG)
1173bc4e459SFUJITA Tomonori
11818e98307SFUJITA Tomonoriconfig NEED_SG_DMA_LENGTH
1194a14d84eSAndrew Morton	def_bool y
12018e98307SFUJITA Tomonori
1218d5fffb9SSam Ravnborgconfig GENERIC_ISA_DMA
1223c2362e6SHarvey Harrison	def_bool y
1238d5fffb9SSam Ravnborg
1248d5fffb9SSam Ravnborgconfig GENERIC_IOMAP
1253c2362e6SHarvey Harrison	def_bool y
1268d5fffb9SSam Ravnborg
1278d5fffb9SSam Ravnborgconfig GENERIC_BUG
1283c2362e6SHarvey Harrison	def_bool y
1298d5fffb9SSam Ravnborg	depends on BUG
130b93a531eSJan Beulich	select GENERIC_BUG_RELATIVE_POINTERS if X86_64
131b93a531eSJan Beulich
132b93a531eSJan Beulichconfig GENERIC_BUG_RELATIVE_POINTERS
133b93a531eSJan Beulich	bool
1348d5fffb9SSam Ravnborg
1358d5fffb9SSam Ravnborgconfig GENERIC_HWEIGHT
1363c2362e6SHarvey Harrison	def_bool y
1378d5fffb9SSam Ravnborg
138a6082959SFlorian Fainelliconfig GENERIC_GPIO
1399ba16087SJan Beulich	bool
140a6082959SFlorian Fainelli
1418d5fffb9SSam Ravnborgconfig ARCH_MAY_HAVE_PC_FDC
1423c2362e6SHarvey Harrison	def_bool y
1438d5fffb9SSam Ravnborg
1441032c0baSSam Ravnborgconfig RWSEM_GENERIC_SPINLOCK
1451032c0baSSam Ravnborg	def_bool !X86_XADD
1461032c0baSSam Ravnborg
1471032c0baSSam Ravnborgconfig RWSEM_XCHGADD_ALGORITHM
1481032c0baSSam Ravnborg	def_bool X86_XADD
1491032c0baSSam Ravnborg
150a6869cc4SVenki Pallipadiconfig ARCH_HAS_CPU_IDLE_WAIT
151a6869cc4SVenki Pallipadi	def_bool y
152a6869cc4SVenki Pallipadi
1531032c0baSSam Ravnborgconfig GENERIC_CALIBRATE_DELAY
1541032c0baSSam Ravnborg	def_bool y
1551032c0baSSam Ravnborg
1568d5fffb9SSam Ravnborgconfig GENERIC_TIME_VSYSCALL
1578d5fffb9SSam Ravnborg	bool
1588d5fffb9SSam Ravnborg	default X86_64
1598d5fffb9SSam Ravnborg
1609a0b8415Svenkatesh.pallipadi@intel.comconfig ARCH_HAS_CPU_RELAX
1619a0b8415Svenkatesh.pallipadi@intel.com	def_bool y
1628d5fffb9SSam Ravnborg
16389cedfefSVenkatesh Pallipadiconfig ARCH_HAS_DEFAULT_IDLE
16489cedfefSVenkatesh Pallipadi	def_bool y
16589cedfefSVenkatesh Pallipadi
1661b27d05bSPekka Enbergconfig ARCH_HAS_CACHE_LINE_SIZE
1671b27d05bSPekka Enberg	def_bool y
1681b27d05bSPekka Enberg
169dd5af90aSMike Travisconfig HAVE_SETUP_PER_CPU_AREA
17089c9c4c5SBrian Gerst	def_bool y
171b32ef636Stravis@sgi.com
17208fc4580STejun Heoconfig NEED_PER_CPU_EMBED_FIRST_CHUNK
17308fc4580STejun Heo	def_bool y
17408fc4580STejun Heo
17508fc4580STejun Heoconfig NEED_PER_CPU_PAGE_FIRST_CHUNK
17611124411STejun Heo	def_bool y
17711124411STejun Heo
1789f0e8d04SMike Travisconfig HAVE_CPUMASK_OF_CPU_MAP
1799f0e8d04SMike Travis	def_bool X86_64_SMP
1809f0e8d04SMike Travis
181801e4062SJohannes Bergconfig ARCH_HIBERNATION_POSSIBLE
182801e4062SJohannes Berg	def_bool y
183801e4062SJohannes Berg
184f4cb5700SJohannes Bergconfig ARCH_SUSPEND_POSSIBLE
185f4cb5700SJohannes Berg	def_bool y
186f4cb5700SJohannes Berg
1878d5fffb9SSam Ravnborgconfig ZONE_DMA32
1888d5fffb9SSam Ravnborg	bool
1898d5fffb9SSam Ravnborg	default X86_64
1908d5fffb9SSam Ravnborg
1918d5fffb9SSam Ravnborgconfig ARCH_POPULATES_NODE_MAP
1928d5fffb9SSam Ravnborg	def_bool y
1938d5fffb9SSam Ravnborg
1948d5fffb9SSam Ravnborgconfig AUDIT_ARCH
1958d5fffb9SSam Ravnborg	bool
1968d5fffb9SSam Ravnborg	default X86_64
1978d5fffb9SSam Ravnborg
198765c68bdSIngo Molnarconfig ARCH_SUPPORTS_OPTIMIZED_INLINING
199765c68bdSIngo Molnar	def_bool y
200765c68bdSIngo Molnar
2016a11f75bSAkinobu Mitaconfig ARCH_SUPPORTS_DEBUG_PAGEALLOC
2026a11f75bSAkinobu Mita	def_bool y
2036a11f75bSAkinobu Mita
20469575d38SShane Wangconfig HAVE_INTEL_TXT
20569575d38SShane Wang	def_bool y
20669575d38SShane Wang	depends on EXPERIMENTAL && DMAR && ACPI
20769575d38SShane Wang
2086b0c3d44SSam Ravnborgconfig X86_32_SMP
2096b0c3d44SSam Ravnborg	def_bool y
2106b0c3d44SSam Ravnborg	depends on X86_32 && SMP
2116b0c3d44SSam Ravnborg
2126b0c3d44SSam Ravnborgconfig X86_64_SMP
2136b0c3d44SSam Ravnborg	def_bool y
2146b0c3d44SSam Ravnborg	depends on X86_64 && SMP
2156b0c3d44SSam Ravnborg
2168d5fffb9SSam Ravnborgconfig X86_HT
2176fc108a0SJan Beulich	def_bool y
218ee0011a7SAdrian Bunk	depends on SMP
2198d5fffb9SSam Ravnborg
2208d5fffb9SSam Ravnborgconfig X86_TRAMPOLINE
2216fc108a0SJan Beulich	def_bool y
2223e5095d1SIngo Molnar	depends on SMP || (64BIT && ACPI_SLEEP)
2238d5fffb9SSam Ravnborg
224ccbeed3aSTejun Heoconfig X86_32_LAZY_GS
225ccbeed3aSTejun Heo	def_bool y
22660a5317fSTejun Heo	depends on X86_32 && !CC_STACKPROTECTOR
227ccbeed3aSTejun Heo
228d61931d8SBorislav Petkovconfig ARCH_HWEIGHT_CFLAGS
229d61931d8SBorislav Petkov	string
230d61931d8SBorislav Petkov	default "-fcall-saved-ecx -fcall-saved-edx" if X86_32
231d61931d8SBorislav Petkov	default "-fcall-saved-rdi -fcall-saved-rsi -fcall-saved-rdx -fcall-saved-rcx -fcall-saved-r8 -fcall-saved-r9 -fcall-saved-r10 -fcall-saved-r11" if X86_64
232d61931d8SBorislav Petkov
2338d5fffb9SSam Ravnborgconfig KTIME_SCALAR
2348d5fffb9SSam Ravnborg	def_bool X86_32
235d7c53c9eSBorislav Petkov
236d7c53c9eSBorislav Petkovconfig ARCH_CPU_PROBE_RELEASE
237d7c53c9eSBorislav Petkov	def_bool y
238d7c53c9eSBorislav Petkov	depends on HOTPLUG_CPU
239d7c53c9eSBorislav Petkov
240506f1d07SSam Ravnborgsource "init/Kconfig"
241dc52ddc0SMatt Helsleysource "kernel/Kconfig.freezer"
2428d5fffb9SSam Ravnborg
243506f1d07SSam Ravnborgmenu "Processor type and features"
244506f1d07SSam Ravnborg
245506f1d07SSam Ravnborgsource "kernel/time/Kconfig"
246506f1d07SSam Ravnborg
247506f1d07SSam Ravnborgconfig SMP
248506f1d07SSam Ravnborg	bool "Symmetric multi-processing support"
249506f1d07SSam Ravnborg	---help---
250506f1d07SSam Ravnborg	  This enables support for systems with more than one CPU. If you have
251506f1d07SSam Ravnborg	  a system with only one CPU, like most personal computers, say N. If
252506f1d07SSam Ravnborg	  you have a system with more than one CPU, say Y.
253506f1d07SSam Ravnborg
254506f1d07SSam Ravnborg	  If you say N here, the kernel will run on single and multiprocessor
255506f1d07SSam Ravnborg	  machines, but will use only one CPU of a multiprocessor machine. If
256506f1d07SSam Ravnborg	  you say Y here, the kernel will run on many, but not all,
257506f1d07SSam Ravnborg	  singleprocessor machines. On a singleprocessor machine, the kernel
258506f1d07SSam Ravnborg	  will run faster if you say N here.
259506f1d07SSam Ravnborg
260506f1d07SSam Ravnborg	  Note that if you say Y here and choose architecture "586" or
261506f1d07SSam Ravnborg	  "Pentium" under "Processor family", the kernel will not work on 486
262506f1d07SSam Ravnborg	  architectures. Similarly, multiprocessor kernels for the "PPro"
263506f1d07SSam Ravnborg	  architecture may not work on all Pentium based boards.
264506f1d07SSam Ravnborg
265506f1d07SSam Ravnborg	  People using multiprocessor machines who say Y here should also say
266506f1d07SSam Ravnborg	  Y to "Enhanced Real Time Clock Support", below. The "Advanced Power
267506f1d07SSam Ravnborg	  Management" code will be disabled if you say Y here.
268506f1d07SSam Ravnborg
26903502faaSAdrian Bunk	  See also <file:Documentation/i386/IO-APIC.txt>,
270506f1d07SSam Ravnborg	  <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available at
271506f1d07SSam Ravnborg	  <http://www.tldp.org/docs.html#howto>.
272506f1d07SSam Ravnborg
273506f1d07SSam Ravnborg	  If you don't know what to do here, say N.
274506f1d07SSam Ravnborg
27506cd9a7dSYinghai Luconfig X86_X2APIC
27606cd9a7dSYinghai Lu	bool "Support x2apic"
277f7d7f866SDavid Woodhouse	depends on X86_LOCAL_APIC && X86_64 && INTR_REMAP
27806cd9a7dSYinghai Lu	---help---
27906cd9a7dSYinghai Lu	  This enables x2apic support on CPUs that have this feature.
28006cd9a7dSYinghai Lu
28106cd9a7dSYinghai Lu	  This allows 32-bit apic IDs (so it can support very large systems),
28206cd9a7dSYinghai Lu	  and accesses the local apic via MSRs not via mmio.
28306cd9a7dSYinghai Lu
28406cd9a7dSYinghai Lu	  If you don't know what to do here, say N.
28506cd9a7dSYinghai Lu
2866695c85bSYinghai Luconfig X86_MPPARSE
2877a527688SJan Beulich	bool "Enable MPS table" if ACPI
2887a527688SJan Beulich	default y
2895ab74722SIngo Molnar	depends on X86_LOCAL_APIC
2908f9ca475SIngo Molnar	---help---
2916695c85bSYinghai Lu	  For old smp systems that do not have proper acpi support. Newer systems
2926695c85bSYinghai Lu	  (esp with 64bit cpus) with acpi support, MADT and DSDT will override it
2936695c85bSYinghai Lu
29426f7ef14SYinghai Luconfig X86_BIGSMP
29526f7ef14SYinghai Lu	bool "Support for big SMP systems with more than 8 CPUs"
29626f7ef14SYinghai Lu	depends on X86_32 && SMP
2978f9ca475SIngo Molnar	---help---
29826f7ef14SYinghai Lu	  This option is needed for the systems that have more than 8 CPUs
299506f1d07SSam Ravnborg
3008425091fSRavikiran G Thirumalaiif X86_32
301c5c606d9SRavikiran G Thirumalaiconfig X86_EXTENDED_PLATFORM
302c5c606d9SRavikiran G Thirumalai	bool "Support for extended (non-PC) x86 platforms"
303c5c606d9SRavikiran G Thirumalai	default y
3048f9ca475SIngo Molnar	---help---
30506ac8346SIngo Molnar	  If you disable this option then the kernel will only support
30606ac8346SIngo Molnar	  standard PC platforms. (which covers the vast majority of
30706ac8346SIngo Molnar	  systems out there.)
30806ac8346SIngo Molnar
3098425091fSRavikiran G Thirumalai	  If you enable this option then you'll be able to select support
3108425091fSRavikiran G Thirumalai	  for the following (non-PC) 32 bit x86 platforms:
3118425091fSRavikiran G Thirumalai		AMD Elan
3128425091fSRavikiran G Thirumalai		NUMAQ (IBM/Sequent)
3138425091fSRavikiran G Thirumalai		RDC R-321x SoC
3148425091fSRavikiran G Thirumalai		SGI 320/540 (Visual Workstation)
3158425091fSRavikiran G Thirumalai		Summit/EXA (IBM x440)
3168425091fSRavikiran G Thirumalai		Unisys ES7000 IA32 series
3173f4110a4SThomas Gleixner		Moorestown MID devices
31806ac8346SIngo Molnar
31906ac8346SIngo Molnar	  If you have one of these systems, or if you want to build a
32006ac8346SIngo Molnar	  generic distribution kernel, say Y here - otherwise say N.
3218425091fSRavikiran G Thirumalaiendif
32206ac8346SIngo Molnar
3238425091fSRavikiran G Thirumalaiif X86_64
3248425091fSRavikiran G Thirumalaiconfig X86_EXTENDED_PLATFORM
3258425091fSRavikiran G Thirumalai	bool "Support for extended (non-PC) x86 platforms"
3268425091fSRavikiran G Thirumalai	default y
3278425091fSRavikiran G Thirumalai	---help---
3288425091fSRavikiran G Thirumalai	  If you disable this option then the kernel will only support
3298425091fSRavikiran G Thirumalai	  standard PC platforms. (which covers the vast majority of
3308425091fSRavikiran G Thirumalai	  systems out there.)
3318425091fSRavikiran G Thirumalai
3328425091fSRavikiran G Thirumalai	  If you enable this option then you'll be able to select support
3338425091fSRavikiran G Thirumalai	  for the following (non-PC) 64 bit x86 platforms:
3348425091fSRavikiran G Thirumalai		ScaleMP vSMP
3358425091fSRavikiran G Thirumalai		SGI Ultraviolet
3368425091fSRavikiran G Thirumalai
3378425091fSRavikiran G Thirumalai	  If you have one of these systems, or if you want to build a
3388425091fSRavikiran G Thirumalai	  generic distribution kernel, say Y here - otherwise say N.
3398425091fSRavikiran G Thirumalaiendif
340c5c606d9SRavikiran G Thirumalai# This is an alphabetically sorted list of 64 bit extended platforms
341c5c606d9SRavikiran G Thirumalai# Please maintain the alphabetic order if and when there are additions
34203b48632SNick Piggin
3436a48565eSIngo Molnarconfig X86_VSMP
344c5c606d9SRavikiran G Thirumalai	bool "ScaleMP vSMP"
34503f1a17cSRandy Dunlap	select PARAVIRT_GUEST
3466a48565eSIngo Molnar	select PARAVIRT
3476a48565eSIngo Molnar	depends on X86_64 && PCI
348c5c606d9SRavikiran G Thirumalai	depends on X86_EXTENDED_PLATFORM
3498f9ca475SIngo Molnar	---help---
3506a48565eSIngo Molnar	  Support for ScaleMP vSMP systems.  Say 'Y' here if this kernel is
3516a48565eSIngo Molnar	  supposed to run on these EM64T-based machines.  Only choose this option
3526a48565eSIngo Molnar	  if you have one of these machines.
3536a48565eSIngo Molnar
354c5c606d9SRavikiran G Thirumalaiconfig X86_UV
355c5c606d9SRavikiran G Thirumalai	bool "SGI Ultraviolet"
356c5c606d9SRavikiran G Thirumalai	depends on X86_64
357c5c606d9SRavikiran G Thirumalai	depends on X86_EXTENDED_PLATFORM
35854c28d29SJack Steiner	depends on NUMA
3599d6c26e7SSuresh Siddha	depends on X86_X2APIC
360c5c606d9SRavikiran G Thirumalai	---help---
361c5c606d9SRavikiran G Thirumalai	  This option is needed in order to support SGI Ultraviolet systems.
362c5c606d9SRavikiran G Thirumalai	  If you don't have one of these, you should say N here.
363c5c606d9SRavikiran G Thirumalai
364c5c606d9SRavikiran G Thirumalai# Following is an alphabetically sorted list of 32 bit extended platforms
365c5c606d9SRavikiran G Thirumalai# Please maintain the alphabetic order if and when there are additions
366506f1d07SSam Ravnborg
367506f1d07SSam Ravnborgconfig X86_ELAN
368506f1d07SSam Ravnborg	bool "AMD Elan"
369506f1d07SSam Ravnborg	depends on X86_32
370c5c606d9SRavikiran G Thirumalai	depends on X86_EXTENDED_PLATFORM
3718f9ca475SIngo Molnar	---help---
372506f1d07SSam Ravnborg	  Select this for an AMD Elan processor.
373506f1d07SSam Ravnborg
374506f1d07SSam Ravnborg	  Do not use this option for K6/Athlon/Opteron processors!
375506f1d07SSam Ravnborg
376506f1d07SSam Ravnborg	  If unsure, choose "PC-compatible" instead.
377506f1d07SSam Ravnborg
378c751e17bSThomas Gleixnerconfig X86_INTEL_CE
379c751e17bSThomas Gleixner	bool "CE4100 TV platform"
380c751e17bSThomas Gleixner	depends on PCI
381c751e17bSThomas Gleixner	depends on PCI_GODIRECT
382c751e17bSThomas Gleixner	depends on X86_32
383c751e17bSThomas Gleixner	depends on X86_EXTENDED_PLATFORM
38437bc9f50SDirk Brandewie	select X86_REBOOTFIXUPS
385c751e17bSThomas Gleixner	---help---
386c751e17bSThomas Gleixner	  Select for the Intel CE media processor (CE4100) SOC.
387c751e17bSThomas Gleixner	  This option compiles in support for the CE4100 SOC for settop
388c751e17bSThomas Gleixner	  boxes and media devices.
389c751e17bSThomas Gleixner
3903f4110a4SThomas Gleixnerconfig X86_MRST
3913f4110a4SThomas Gleixner       bool "Moorestown MID platform"
3924b2f3f7dSJacob Pan	depends on PCI
3934b2f3f7dSJacob Pan	depends on PCI_GOANY
3943f4110a4SThomas Gleixner	depends on X86_32
3953f4110a4SThomas Gleixner	depends on X86_EXTENDED_PLATFORM
3964b2f3f7dSJacob Pan	depends on X86_IO_APIC
397bb24c471SJacob Pan	select APB_TIMER
3981da4b1c6SFeng Tang	select I2C
3991da4b1c6SFeng Tang	select SPI
400b9fc71f4SAlan Cox	select INTEL_SCU_IPC
401ad02519aSRandy Dunlap	select X86_PLATFORM_DEVICES
4023f4110a4SThomas Gleixner	---help---
4033f4110a4SThomas Gleixner	  Moorestown is Intel's Low Power Intel Architecture (LPIA) based Moblin
4043f4110a4SThomas Gleixner	  Internet Device(MID) platform. Moorestown consists of two chips:
4053f4110a4SThomas Gleixner	  Lincroft (CPU core, graphics, and memory controller) and Langwell IOH.
4063f4110a4SThomas Gleixner	  Unlike standard x86 PCs, Moorestown does not have many legacy devices
4073f4110a4SThomas Gleixner	  nor standard legacy replacement devices/features. e.g. Moorestown does
4083f4110a4SThomas Gleixner	  not contain i8259, i8254, HPET, legacy BIOS, most of the io ports.
4093f4110a4SThomas Gleixner
410c5c606d9SRavikiran G Thirumalaiconfig X86_RDC321X
411c5c606d9SRavikiran G Thirumalai	bool "RDC R-321x SoC"
412506f1d07SSam Ravnborg	depends on X86_32
413c5c606d9SRavikiran G Thirumalai	depends on X86_EXTENDED_PLATFORM
414c5c606d9SRavikiran G Thirumalai	select M486
415c5c606d9SRavikiran G Thirumalai	select X86_REBOOTFIXUPS
416c5c606d9SRavikiran G Thirumalai	---help---
417c5c606d9SRavikiran G Thirumalai	  This option is needed for RDC R-321x system-on-chip, also known
418c5c606d9SRavikiran G Thirumalai	  as R-8610-(G).
419c5c606d9SRavikiran G Thirumalai	  If you don't have one of these chips, you should say N here.
420c5c606d9SRavikiran G Thirumalai
421e0c7ae37SIngo Molnarconfig X86_32_NON_STANDARD
4229c398017SIngo Molnar	bool "Support non-standard 32-bit SMP architectures"
4239c398017SIngo Molnar	depends on X86_32 && SMP
424c5c606d9SRavikiran G Thirumalai	depends on X86_EXTENDED_PLATFORM
4258f9ca475SIngo Molnar	---help---
426d49c4288SYinghai Lu	  This option compiles in the NUMAQ, Summit, bigsmp, ES7000, default
427d49c4288SYinghai Lu	  subarchitectures.  It is intended for a generic binary kernel.
428d49c4288SYinghai Lu	  if you select them all, kernel will probe it one by one. and will
429d49c4288SYinghai Lu	  fallback to default.
430d49c4288SYinghai Lu
431c5c606d9SRavikiran G Thirumalai# Alphabetically sorted list of Non standard 32 bit platforms
432d49c4288SYinghai Lu
433506f1d07SSam Ravnborgconfig X86_NUMAQ
434506f1d07SSam Ravnborg	bool "NUMAQ (IBM/Sequent)"
435e0c7ae37SIngo Molnar	depends on X86_32_NON_STANDARD
436a92d152eSPan, Jacob jun	depends on PCI
437506f1d07SSam Ravnborg	select NUMA
4389c398017SIngo Molnar	select X86_MPPARSE
4398f9ca475SIngo Molnar	---help---
440d49c4288SYinghai Lu	  This option is used for getting Linux to run on a NUMAQ (IBM/Sequent)
441d49c4288SYinghai Lu	  NUMA multiquad box. This changes the way that processors are
442d49c4288SYinghai Lu	  bootstrapped, and uses Clustered Logical APIC addressing mode instead
443d49c4288SYinghai Lu	  of Flat Logical.  You will need a new lynxer.elf file to flash your
444d49c4288SYinghai Lu	  firmware with - send email to <Martin.Bligh@us.ibm.com>.
445506f1d07SSam Ravnborg
446d949f36fSLinus Torvaldsconfig X86_SUPPORTS_MEMORY_FAILURE
4476fc108a0SJan Beulich	def_bool y
448d949f36fSLinus Torvalds	# MCE code calls memory_failure():
449d949f36fSLinus Torvalds	depends on X86_MCE
450d949f36fSLinus Torvalds	# On 32-bit this adds too big of NODES_SHIFT and we run out of page flags:
451d949f36fSLinus Torvalds	depends on !X86_NUMAQ
452d949f36fSLinus Torvalds	# On 32-bit SPARSEMEM adds too big of SECTIONS_WIDTH:
453d949f36fSLinus Torvalds	depends on X86_64 || !SPARSEMEM
454d949f36fSLinus Torvalds	select ARCH_SUPPORTS_MEMORY_FAILURE
455d949f36fSLinus Torvalds
4561b84e1c8SIngo Molnarconfig X86_VISWS
4571b84e1c8SIngo Molnar	bool "SGI 320/540 (Visual Workstation)"
458c5c606d9SRavikiran G Thirumalai	depends on X86_32 && PCI && X86_MPPARSE && PCI_GODIRECT
459c5c606d9SRavikiran G Thirumalai	depends on X86_32_NON_STANDARD
460c5c606d9SRavikiran G Thirumalai	---help---
4611b84e1c8SIngo Molnar	  The SGI Visual Workstation series is an IA32-based workstation
4621b84e1c8SIngo Molnar	  based on SGI systems chips with some legacy PC hardware attached.
4631b84e1c8SIngo Molnar
4641b84e1c8SIngo Molnar	  Say Y here to create a kernel to run on the SGI 320 or 540.
4651b84e1c8SIngo Molnar
4661b84e1c8SIngo Molnar	  A kernel compiled for the Visual Workstation will run on general
4671b84e1c8SIngo Molnar	  PCs as well. See <file:Documentation/sgi-visws.txt> for details.
4681b84e1c8SIngo Molnar
4699c398017SIngo Molnarconfig X86_SUMMIT
4709c398017SIngo Molnar	bool "Summit/EXA (IBM x440)"
471e0c7ae37SIngo Molnar	depends on X86_32_NON_STANDARD
4728f9ca475SIngo Molnar	---help---
4739c398017SIngo Molnar	  This option is needed for IBM systems that use the Summit/EXA chipset.
4749c398017SIngo Molnar	  In particular, it is needed for the x440.
4751f972768SIngo Molnar
4769c398017SIngo Molnarconfig X86_ES7000
477c5c606d9SRavikiran G Thirumalai	bool "Unisys ES7000 IA32 series"
47826f7ef14SYinghai Lu	depends on X86_32_NON_STANDARD && X86_BIGSMP
4798f9ca475SIngo Molnar	---help---
4809c398017SIngo Molnar	  Support for Unisys ES7000 systems.  Say 'Y' here if this kernel is
4819c398017SIngo Molnar	  supposed to run on an IA32-based Unisys ES7000 system.
4829c398017SIngo Molnar
48382148d1dSShérabconfig X86_32_IRIS
48482148d1dSShérab	tristate "Eurobraille/Iris poweroff module"
48582148d1dSShérab	depends on X86_32
48682148d1dSShérab	---help---
48782148d1dSShérab	  The Iris machines from EuroBraille do not have APM or ACPI support
48882148d1dSShérab	  to shut themselves down properly.  A special I/O sequence is
48982148d1dSShérab	  needed to do so, which is what this module does at
49082148d1dSShérab	  kernel shutdown.
49182148d1dSShérab
49282148d1dSShérab	  This is only for Iris machines from EuroBraille.
49382148d1dSShérab
49482148d1dSShérab	  If unused, say N.
49582148d1dSShérab
496ae1e9130SIngo Molnarconfig SCHED_OMIT_FRAME_POINTER
4973c2362e6SHarvey Harrison	def_bool y
4983c2362e6SHarvey Harrison	prompt "Single-depth WCHAN output"
499a87d0914SKen Chen	depends on X86
5008f9ca475SIngo Molnar	---help---
501506f1d07SSam Ravnborg	  Calculate simpler /proc/<PID>/wchan values. If this option
502506f1d07SSam Ravnborg	  is disabled then wchan values will recurse back to the
503506f1d07SSam Ravnborg	  caller function. This provides more accurate wchan values,
504506f1d07SSam Ravnborg	  at the expense of slightly more scheduling overhead.
505506f1d07SSam Ravnborg
506506f1d07SSam Ravnborg	  If in doubt, say "Y".
507506f1d07SSam Ravnborg
508506f1d07SSam Ravnborgmenuconfig PARAVIRT_GUEST
509506f1d07SSam Ravnborg	bool "Paravirtualized guest support"
5108f9ca475SIngo Molnar	---help---
511506f1d07SSam Ravnborg	  Say Y here to get to see options related to running Linux under
512506f1d07SSam Ravnborg	  various hypervisors.  This option alone does not add any kernel code.
513506f1d07SSam Ravnborg
514506f1d07SSam Ravnborg	  If you say N, all options in this submenu will be skipped and disabled.
515506f1d07SSam Ravnborg
516506f1d07SSam Ravnborgif PARAVIRT_GUEST
517506f1d07SSam Ravnborg
518506f1d07SSam Ravnborgsource "arch/x86/xen/Kconfig"
519506f1d07SSam Ravnborg
520790c73f6SGlauber de Oliveira Costaconfig KVM_CLOCK
521790c73f6SGlauber de Oliveira Costa	bool "KVM paravirtualized clock"
522790c73f6SGlauber de Oliveira Costa	select PARAVIRT
523f6e16d5aSGerd Hoffmann	select PARAVIRT_CLOCK
5248f9ca475SIngo Molnar	---help---
525790c73f6SGlauber de Oliveira Costa	  Turning on this option will allow you to run a paravirtualized clock
526790c73f6SGlauber de Oliveira Costa	  when running over the KVM hypervisor. Instead of relying on a PIT
527790c73f6SGlauber de Oliveira Costa	  (or probably other) emulation by the underlying device model, the host
528790c73f6SGlauber de Oliveira Costa	  provides the guest with timing infrastructure such as time of day, and
529790c73f6SGlauber de Oliveira Costa	  system time
530790c73f6SGlauber de Oliveira Costa
5310cf1bfd2SMarcelo Tosatticonfig KVM_GUEST
5320cf1bfd2SMarcelo Tosatti	bool "KVM Guest support"
5330cf1bfd2SMarcelo Tosatti	select PARAVIRT
5348f9ca475SIngo Molnar	---help---
5350cf1bfd2SMarcelo Tosatti	  This option enables various optimizations for running under the KVM
5360cf1bfd2SMarcelo Tosatti	  hypervisor.
5370cf1bfd2SMarcelo Tosatti
538506f1d07SSam Ravnborgsource "arch/x86/lguest/Kconfig"
539506f1d07SSam Ravnborg
540e61bd94aSEduardo Pereira Habkostconfig PARAVIRT
541e61bd94aSEduardo Pereira Habkost	bool "Enable paravirtualization code"
5428f9ca475SIngo Molnar	---help---
543e61bd94aSEduardo Pereira Habkost	  This changes the kernel so it can modify itself when it is run
544e61bd94aSEduardo Pereira Habkost	  under a hypervisor, potentially improving performance significantly
545e61bd94aSEduardo Pereira Habkost	  over full virtualization.  However, when run without a hypervisor
546e61bd94aSEduardo Pereira Habkost	  the kernel is theoretically slower and slightly larger.
547e61bd94aSEduardo Pereira Habkost
548b4ecc126SJeremy Fitzhardingeconfig PARAVIRT_SPINLOCKS
549b4ecc126SJeremy Fitzhardinge	bool "Paravirtualization layer for spinlocks"
550b4ecc126SJeremy Fitzhardinge	depends on PARAVIRT && SMP && EXPERIMENTAL
551b4ecc126SJeremy Fitzhardinge	---help---
552b4ecc126SJeremy Fitzhardinge	  Paravirtualized spinlocks allow a pvops backend to replace the
553b4ecc126SJeremy Fitzhardinge	  spinlock implementation with something virtualization-friendly
554b4ecc126SJeremy Fitzhardinge	  (for example, block the virtual CPU rather than spinning).
555b4ecc126SJeremy Fitzhardinge
556b4ecc126SJeremy Fitzhardinge	  Unfortunately the downside is an up to 5% performance hit on
557b4ecc126SJeremy Fitzhardinge	  native kernels, with various workloads.
558b4ecc126SJeremy Fitzhardinge
559b4ecc126SJeremy Fitzhardinge	  If you are unsure how to answer this question, answer N.
560b4ecc126SJeremy Fitzhardinge
5617af192c9SGerd Hoffmannconfig PARAVIRT_CLOCK
5627af192c9SGerd Hoffmann	bool
5637af192c9SGerd Hoffmann
564506f1d07SSam Ravnborgendif
565506f1d07SSam Ravnborg
56697349135SJeremy Fitzhardingeconfig PARAVIRT_DEBUG
56797349135SJeremy Fitzhardinge	bool "paravirt-ops debugging"
56897349135SJeremy Fitzhardinge	depends on PARAVIRT && DEBUG_KERNEL
5698f9ca475SIngo Molnar	---help---
57097349135SJeremy Fitzhardinge	  Enable to debug paravirt_ops internals.  Specifically, BUG if
57197349135SJeremy Fitzhardinge	  a paravirt_op is missing when it is called.
57297349135SJeremy Fitzhardinge
57308677214SYinghai Luconfig NO_BOOTMEM
574774ea0bcSYinghai Lu	def_bool y
57508677214SYinghai Lu
57603273184SYinghai Luconfig MEMTEST
57703273184SYinghai Lu	bool "Memtest"
5788f9ca475SIngo Molnar	---help---
579c64df707SYinghai Lu	  This option adds a kernel parameter 'memtest', which allows memtest
58003273184SYinghai Lu	  to be set.
58103273184SYinghai Lu	        memtest=0, mean disabled; -- default
58203273184SYinghai Lu	        memtest=1, mean do 1 test pattern;
58303273184SYinghai Lu	        ...
58403273184SYinghai Lu	        memtest=4, mean do 4 test patterns.
585aba3728cSThomas Gleixner	  If you are unsure how to answer this question, answer N.
586506f1d07SSam Ravnborg
587506f1d07SSam Ravnborgconfig X86_SUMMIT_NUMA
5883c2362e6SHarvey Harrison	def_bool y
589e0c7ae37SIngo Molnar	depends on X86_32 && NUMA && X86_32_NON_STANDARD
590506f1d07SSam Ravnborg
591506f1d07SSam Ravnborgconfig X86_CYCLONE_TIMER
5923c2362e6SHarvey Harrison	def_bool y
593e0c7ae37SIngo Molnar	depends on X86_32_NON_STANDARD
594506f1d07SSam Ravnborg
595506f1d07SSam Ravnborgsource "arch/x86/Kconfig.cpu"
596506f1d07SSam Ravnborg
597506f1d07SSam Ravnborgconfig HPET_TIMER
5983c2362e6SHarvey Harrison	def_bool X86_64
599506f1d07SSam Ravnborg	prompt "HPET Timer Support" if X86_32
6008f9ca475SIngo Molnar	---help---
601506f1d07SSam Ravnborg	  Use the IA-PC HPET (High Precision Event Timer) to manage
602506f1d07SSam Ravnborg	  time in preference to the PIT and RTC, if a HPET is
603506f1d07SSam Ravnborg	  present.
604506f1d07SSam Ravnborg	  HPET is the next generation timer replacing legacy 8254s.
605506f1d07SSam Ravnborg	  The HPET provides a stable time base on SMP
606506f1d07SSam Ravnborg	  systems, unlike the TSC, but it is more expensive to access,
607506f1d07SSam Ravnborg	  as it is off-chip.  You can find the HPET spec at
608e45f2c07SDenis V. Lunev	  <http://www.intel.com/hardwaredesign/hpetspec_1.pdf>.
609506f1d07SSam Ravnborg
610506f1d07SSam Ravnborg	  You can safely choose Y here.  However, HPET will only be
611506f1d07SSam Ravnborg	  activated if the platform and the BIOS support this feature.
612506f1d07SSam Ravnborg	  Otherwise the 8254 will be used for timing services.
613506f1d07SSam Ravnborg
614506f1d07SSam Ravnborg	  Choose N to continue using the legacy 8254 timer.
615506f1d07SSam Ravnborg
616506f1d07SSam Ravnborgconfig HPET_EMULATE_RTC
6173c2362e6SHarvey Harrison	def_bool y
6189d8af78bSBernhard Walle	depends on HPET_TIMER && (RTC=y || RTC=m || RTC_DRV_CMOS=m || RTC_DRV_CMOS=y)
619506f1d07SSam Ravnborg
620bb24c471SJacob Panconfig APB_TIMER
621bb24c471SJacob Pan       def_bool y if MRST
622bb24c471SJacob Pan       prompt "Langwell APB Timer Support" if X86_MRST
623bb24c471SJacob Pan       help
624bb24c471SJacob Pan         APB timer is the replacement for 8254, HPET on X86 MID platforms.
625bb24c471SJacob Pan         The APBT provides a stable time base on SMP
626bb24c471SJacob Pan         systems, unlike the TSC, but it is more expensive to access,
627bb24c471SJacob Pan         as it is off-chip. APB timers are always running regardless of CPU
628bb24c471SJacob Pan         C states, they are used as per CPU clockevent device when possible.
629bb24c471SJacob Pan
630506f1d07SSam Ravnborg# Mark as embedded because too many people got it wrong.
631506f1d07SSam Ravnborg# The code disables itself when not needed.
6327ae9392cSThomas Petazzoniconfig DMI
6337ae9392cSThomas Petazzoni	default y
6347ae9392cSThomas Petazzoni	bool "Enable DMI scanning" if EMBEDDED
6358f9ca475SIngo Molnar	---help---
6367ae9392cSThomas Petazzoni	  Enabled scanning of DMI to identify machine quirks. Say Y
6377ae9392cSThomas Petazzoni	  here unless you have verified that your setup is not
6387ae9392cSThomas Petazzoni	  affected by entries in the DMI blacklist. Required by PNP
6397ae9392cSThomas Petazzoni	  BIOS code.
6407ae9392cSThomas Petazzoni
641506f1d07SSam Ravnborgconfig GART_IOMMU
642506f1d07SSam Ravnborg	bool "GART IOMMU support" if EMBEDDED
643506f1d07SSam Ravnborg	default y
644506f1d07SSam Ravnborg	select SWIOTLB
64523ac4ae8SAndreas Herrmann	depends on X86_64 && PCI && AMD_NB
6468f9ca475SIngo Molnar	---help---
647506f1d07SSam Ravnborg	  Support for full DMA access of devices with 32bit memory access only
648506f1d07SSam Ravnborg	  on systems with more than 3GB. This is usually needed for USB,
649506f1d07SSam Ravnborg	  sound, many IDE/SATA chipsets and some other devices.
650506f1d07SSam Ravnborg	  Provides a driver for the AMD Athlon64/Opteron/Turion/Sempron GART
651506f1d07SSam Ravnborg	  based hardware IOMMU and a software bounce buffer based IOMMU used
652506f1d07SSam Ravnborg	  on Intel systems and as fallback.
653506f1d07SSam Ravnborg	  The code is only active when needed (enough memory and limited
654506f1d07SSam Ravnborg	  device) unless CONFIG_IOMMU_DEBUG or iommu=force is specified
655506f1d07SSam Ravnborg	  too.
656506f1d07SSam Ravnborg
657506f1d07SSam Ravnborgconfig CALGARY_IOMMU
658506f1d07SSam Ravnborg	bool "IBM Calgary IOMMU support"
659506f1d07SSam Ravnborg	select SWIOTLB
660506f1d07SSam Ravnborg	depends on X86_64 && PCI && EXPERIMENTAL
6618f9ca475SIngo Molnar	---help---
662506f1d07SSam Ravnborg	  Support for hardware IOMMUs in IBM's xSeries x366 and x460
663506f1d07SSam Ravnborg	  systems. Needed to run systems with more than 3GB of memory
664506f1d07SSam Ravnborg	  properly with 32-bit PCI devices that do not support DAC
665506f1d07SSam Ravnborg	  (Double Address Cycle). Calgary also supports bus level
666506f1d07SSam Ravnborg	  isolation, where all DMAs pass through the IOMMU.  This
667506f1d07SSam Ravnborg	  prevents them from going anywhere except their intended
668506f1d07SSam Ravnborg	  destination. This catches hard-to-find kernel bugs and
669506f1d07SSam Ravnborg	  mis-behaving drivers and devices that do not use the DMA-API
670506f1d07SSam Ravnborg	  properly to set up their DMA buffers.  The IOMMU can be
671506f1d07SSam Ravnborg	  turned off at boot time with the iommu=off parameter.
672506f1d07SSam Ravnborg	  Normally the kernel will make the right choice by itself.
673506f1d07SSam Ravnborg	  If unsure, say Y.
674506f1d07SSam Ravnborg
675506f1d07SSam Ravnborgconfig CALGARY_IOMMU_ENABLED_BY_DEFAULT
6763c2362e6SHarvey Harrison	def_bool y
6773c2362e6SHarvey Harrison	prompt "Should Calgary be enabled by default?"
678506f1d07SSam Ravnborg	depends on CALGARY_IOMMU
6798f9ca475SIngo Molnar	---help---
680506f1d07SSam Ravnborg	  Should Calgary be enabled by default? if you choose 'y', Calgary
681506f1d07SSam Ravnborg	  will be used (if it exists). If you choose 'n', Calgary will not be
682506f1d07SSam Ravnborg	  used even if it exists. If you choose 'n' and would like to use
683506f1d07SSam Ravnborg	  Calgary anyway, pass 'iommu=calgary' on the kernel command line.
684506f1d07SSam Ravnborg	  If unsure, say Y.
685506f1d07SSam Ravnborg
6862b188723SJoerg Roedelconfig AMD_IOMMU
6872b188723SJoerg Roedel	bool "AMD IOMMU support"
68807c40e8aSIngo Molnar	select SWIOTLB
689a80dc3e0SJoerg Roedel	select PCI_MSI
69024d2ba0aSIngo Molnar	depends on X86_64 && PCI && ACPI
6918f9ca475SIngo Molnar	---help---
69218d22200SJoerg Roedel	  With this option you can enable support for AMD IOMMU hardware in
69318d22200SJoerg Roedel	  your system. An IOMMU is a hardware component which provides
69418d22200SJoerg Roedel	  remapping of DMA memory accesses from devices. With an AMD IOMMU you
69518d22200SJoerg Roedel	  can isolate the the DMA memory of different devices and protect the
69618d22200SJoerg Roedel	  system from misbehaving device drivers or hardware.
69718d22200SJoerg Roedel
69818d22200SJoerg Roedel	  You can find out if your system has an AMD IOMMU if you look into
69918d22200SJoerg Roedel	  your BIOS for an option to enable it or if you have an IVRS ACPI
70018d22200SJoerg Roedel	  table.
7012b188723SJoerg Roedel
7022e117604SJoerg Roedelconfig AMD_IOMMU_STATS
7032e117604SJoerg Roedel	bool "Export AMD IOMMU statistics to debugfs"
7042e117604SJoerg Roedel	depends on AMD_IOMMU
7052e117604SJoerg Roedel	select DEBUG_FS
7068f9ca475SIngo Molnar	---help---
7072e117604SJoerg Roedel	  This option enables code in the AMD IOMMU driver to collect various
7082e117604SJoerg Roedel	  statistics about whats happening in the driver and exports that
7092e117604SJoerg Roedel	  information to userspace via debugfs.
7102e117604SJoerg Roedel	  If unsure, say N.
7112e117604SJoerg Roedel
712506f1d07SSam Ravnborg# need this always selected by IOMMU for the VIA workaround
713506f1d07SSam Ravnborgconfig SWIOTLB
714a1afd01cSJoerg Roedel	def_bool y if X86_64
7158f9ca475SIngo Molnar	---help---
716506f1d07SSam Ravnborg	  Support for software bounce buffers used on x86-64 systems
717506f1d07SSam Ravnborg	  which don't have a hardware IOMMU (e.g. the current generation
718506f1d07SSam Ravnborg	  of Intel's x86-64 CPUs). Using this PCI devices which can only
719506f1d07SSam Ravnborg	  access 32-bits of memory can be used on systems with more than
720506f1d07SSam Ravnborg	  3 GB of memory. If unsure, say Y.
721506f1d07SSam Ravnborg
722a8522509SFUJITA Tomonoriconfig IOMMU_HELPER
72318b743dcSFUJITA Tomonori	def_bool (CALGARY_IOMMU || GART_IOMMU || SWIOTLB || AMD_IOMMU)
724d25e26b6SLinus Torvalds
7251aaf1183SJoerg Roedelconfig IOMMU_API
7261aaf1183SJoerg Roedel	def_bool (AMD_IOMMU || DMAR)
7271aaf1183SJoerg Roedel
7281184dc2fSMike Travisconfig MAXSMP
729ddb0c5a6SSamuel Thibault	bool "Enable Maximum number of SMP Processors and NUMA Nodes"
73036f5101aSMike Travis	depends on X86_64 && SMP && DEBUG_KERNEL && EXPERIMENTAL
73136f5101aSMike Travis	select CPUMASK_OFFSTACK
7328f9ca475SIngo Molnar	---help---
733ddb0c5a6SSamuel Thibault	  Enable maximum number of CPUS and NUMA Nodes for this architecture.
7341184dc2fSMike Travis	  If unsure, say N.
735506f1d07SSam Ravnborg
736506f1d07SSam Ravnborgconfig NR_CPUS
73736f5101aSMike Travis	int "Maximum number of CPUs" if SMP && !MAXSMP
7382a3313f4SMichael K. Johnson	range 2 8 if SMP && X86_32 && !X86_BIGSMP
73936f5101aSMike Travis	range 2 512 if SMP && !MAXSMP
74078637a97SMike Travis	default "1" if !SMP
741d25e26b6SLinus Torvalds	default "4096" if MAXSMP
74278637a97SMike Travis	default "32" if SMP && (X86_NUMAQ || X86_SUMMIT || X86_BIGSMP || X86_ES7000)
74378637a97SMike Travis	default "8" if SMP
7448f9ca475SIngo Molnar	---help---
745506f1d07SSam Ravnborg	  This allows you to specify the maximum number of CPUs which this
746d25e26b6SLinus Torvalds	  kernel will support.  The maximum supported value is 512 and the
747506f1d07SSam Ravnborg	  minimum value which makes sense is 2.
748506f1d07SSam Ravnborg
749506f1d07SSam Ravnborg	  This is purely to save memory - each supported CPU adds
750506f1d07SSam Ravnborg	  approximately eight kilobytes to the kernel image.
751506f1d07SSam Ravnborg
752506f1d07SSam Ravnborgconfig SCHED_SMT
753506f1d07SSam Ravnborg	bool "SMT (Hyperthreading) scheduler support"
754b089c12bSHiroshi Shimamoto	depends on X86_HT
7558f9ca475SIngo Molnar	---help---
756506f1d07SSam Ravnborg	  SMT scheduler support improves the CPU scheduler's decision making
757506f1d07SSam Ravnborg	  when dealing with Intel Pentium 4 chips with HyperThreading at a
758506f1d07SSam Ravnborg	  cost of slightly increased overhead in some places. If unsure say
759506f1d07SSam Ravnborg	  N here.
760506f1d07SSam Ravnborg
761506f1d07SSam Ravnborgconfig SCHED_MC
7623c2362e6SHarvey Harrison	def_bool y
7633c2362e6SHarvey Harrison	prompt "Multi-core scheduler support"
764b089c12bSHiroshi Shimamoto	depends on X86_HT
7658f9ca475SIngo Molnar	---help---
766506f1d07SSam Ravnborg	  Multi-core scheduler support improves the CPU scheduler's decision
767506f1d07SSam Ravnborg	  making when dealing with multi-core CPU chips at a cost of slightly
768506f1d07SSam Ravnborg	  increased overhead in some places. If unsure say N here.
769506f1d07SSam Ravnborg
770e82b8e4eSVenkatesh Pallipadiconfig IRQ_TIME_ACCOUNTING
771e82b8e4eSVenkatesh Pallipadi	bool "Fine granularity task level IRQ time accounting"
772e82b8e4eSVenkatesh Pallipadi	default n
773e82b8e4eSVenkatesh Pallipadi	---help---
774e82b8e4eSVenkatesh Pallipadi	  Select this option to enable fine granularity task irq time
775e82b8e4eSVenkatesh Pallipadi	  accounting. This is done by reading a timestamp on each
776e82b8e4eSVenkatesh Pallipadi	  transitions between softirq and hardirq state, so there can be a
777e82b8e4eSVenkatesh Pallipadi	  small performance impact.
778e82b8e4eSVenkatesh Pallipadi
779e82b8e4eSVenkatesh Pallipadi	  If in doubt, say N here.
780e82b8e4eSVenkatesh Pallipadi
781506f1d07SSam Ravnborgsource "kernel/Kconfig.preempt"
782506f1d07SSam Ravnborg
783506f1d07SSam Ravnborgconfig X86_UP_APIC
784506f1d07SSam Ravnborg	bool "Local APIC support on uniprocessors"
785e0c7ae37SIngo Molnar	depends on X86_32 && !SMP && !X86_32_NON_STANDARD
7868f9ca475SIngo Molnar	---help---
787506f1d07SSam Ravnborg	  A local APIC (Advanced Programmable Interrupt Controller) is an
788506f1d07SSam Ravnborg	  integrated interrupt controller in the CPU. If you have a single-CPU
789506f1d07SSam Ravnborg	  system which has a processor with a local APIC, you can say Y here to
790506f1d07SSam Ravnborg	  enable and use it. If you say Y here even though your machine doesn't
791506f1d07SSam Ravnborg	  have a local APIC, then the kernel will still run with no slowdown at
792506f1d07SSam Ravnborg	  all. The local APIC supports CPU-generated self-interrupts (timer,
793506f1d07SSam Ravnborg	  performance counters), and the NMI watchdog which detects hard
794506f1d07SSam Ravnborg	  lockups.
795506f1d07SSam Ravnborg
796506f1d07SSam Ravnborgconfig X86_UP_IOAPIC
797506f1d07SSam Ravnborg	bool "IO-APIC support on uniprocessors"
798506f1d07SSam Ravnborg	depends on X86_UP_APIC
7998f9ca475SIngo Molnar	---help---
800506f1d07SSam Ravnborg	  An IO-APIC (I/O Advanced Programmable Interrupt Controller) is an
801506f1d07SSam Ravnborg	  SMP-capable replacement for PC-style interrupt controllers. Most
802506f1d07SSam Ravnborg	  SMP systems and many recent uniprocessor systems have one.
803506f1d07SSam Ravnborg
804506f1d07SSam Ravnborg	  If you have a single-CPU system with an IO-APIC, you can say Y here
805506f1d07SSam Ravnborg	  to use it. If you say Y here even though your machine doesn't have
806506f1d07SSam Ravnborg	  an IO-APIC, then the kernel will still run with no slowdown at all.
807506f1d07SSam Ravnborg
808506f1d07SSam Ravnborgconfig X86_LOCAL_APIC
8093c2362e6SHarvey Harrison	def_bool y
810e0c7ae37SIngo Molnar	depends on X86_64 || SMP || X86_32_NON_STANDARD || X86_UP_APIC
811506f1d07SSam Ravnborg
812506f1d07SSam Ravnborgconfig X86_IO_APIC
8133c2362e6SHarvey Harrison	def_bool y
814e0c7ae37SIngo Molnar	depends on X86_64 || SMP || X86_32_NON_STANDARD || X86_UP_APIC
815506f1d07SSam Ravnborg
816506f1d07SSam Ravnborgconfig X86_VISWS_APIC
8173c2362e6SHarvey Harrison	def_bool y
818506f1d07SSam Ravnborg	depends on X86_32 && X86_VISWS
819506f1d07SSam Ravnborg
82041b9eb26SStefan Assmannconfig X86_REROUTE_FOR_BROKEN_BOOT_IRQS
82141b9eb26SStefan Assmann	bool "Reroute for broken boot IRQs"
82241b9eb26SStefan Assmann	depends on X86_IO_APIC
8238f9ca475SIngo Molnar	---help---
82441b9eb26SStefan Assmann	  This option enables a workaround that fixes a source of
82541b9eb26SStefan Assmann	  spurious interrupts. This is recommended when threaded
82641b9eb26SStefan Assmann	  interrupt handling is used on systems where the generation of
82741b9eb26SStefan Assmann	  superfluous "boot interrupts" cannot be disabled.
82841b9eb26SStefan Assmann
82941b9eb26SStefan Assmann	  Some chipsets generate a legacy INTx "boot IRQ" when the IRQ
83041b9eb26SStefan Assmann	  entry in the chipset's IO-APIC is masked (as, e.g. the RT
83141b9eb26SStefan Assmann	  kernel does during interrupt handling). On chipsets where this
83241b9eb26SStefan Assmann	  boot IRQ generation cannot be disabled, this workaround keeps
83341b9eb26SStefan Assmann	  the original IRQ line masked so that only the equivalent "boot
83441b9eb26SStefan Assmann	  IRQ" is delivered to the CPUs. The workaround also tells the
83541b9eb26SStefan Assmann	  kernel to set up the IRQ handler on the boot IRQ line. In this
83641b9eb26SStefan Assmann	  way only one interrupt is delivered to the kernel. Otherwise
83741b9eb26SStefan Assmann	  the spurious second interrupt may cause the kernel to bring
83841b9eb26SStefan Assmann	  down (vital) interrupt lines.
83941b9eb26SStefan Assmann
84041b9eb26SStefan Assmann	  Only affects "broken" chipsets. Interrupt sharing may be
84141b9eb26SStefan Assmann	  increased on these systems.
84241b9eb26SStefan Assmann
843506f1d07SSam Ravnborgconfig X86_MCE
844bab9bc65SAndi Kleen	bool "Machine Check / overheating reporting"
845506f1d07SSam Ravnborg	---help---
846bab9bc65SAndi Kleen	  Machine Check support allows the processor to notify the
847bab9bc65SAndi Kleen	  kernel if it detects a problem (e.g. overheating, data corruption).
848506f1d07SSam Ravnborg	  The action the kernel takes depends on the severity of the problem,
849bab9bc65SAndi Kleen	  ranging from warning messages to halting the machine.
8504efc0670SAndi Kleen
851506f1d07SSam Ravnborgconfig X86_MCE_INTEL
8523c2362e6SHarvey Harrison	def_bool y
8533c2362e6SHarvey Harrison	prompt "Intel MCE features"
854c1ebf835SAndi Kleen	depends on X86_MCE && X86_LOCAL_APIC
8558f9ca475SIngo Molnar	---help---
856506f1d07SSam Ravnborg	   Additional support for intel specific MCE features such as
857506f1d07SSam Ravnborg	   the thermal monitor.
858506f1d07SSam Ravnborg
859506f1d07SSam Ravnborgconfig X86_MCE_AMD
8603c2362e6SHarvey Harrison	def_bool y
8613c2362e6SHarvey Harrison	prompt "AMD MCE features"
862c1ebf835SAndi Kleen	depends on X86_MCE && X86_LOCAL_APIC
8638f9ca475SIngo Molnar	---help---
864506f1d07SSam Ravnborg	   Additional support for AMD specific MCE features such as
865506f1d07SSam Ravnborg	   the DRAM Error Threshold.
866506f1d07SSam Ravnborg
8674efc0670SAndi Kleenconfig X86_ANCIENT_MCE
8686fc108a0SJan Beulich	bool "Support for old Pentium 5 / WinChip machine checks"
869c31d9633SAndi Kleen	depends on X86_32 && X86_MCE
8704efc0670SAndi Kleen	---help---
8714efc0670SAndi Kleen	  Include support for machine check handling on old Pentium 5 or WinChip
8724efc0670SAndi Kleen	  systems. These typically need to be enabled explicitely on the command
8734efc0670SAndi Kleen	  line.
8744efc0670SAndi Kleen
875b2762686SAndi Kleenconfig X86_MCE_THRESHOLD
876b2762686SAndi Kleen	depends on X86_MCE_AMD || X86_MCE_INTEL
8776fc108a0SJan Beulich	def_bool y
878b2762686SAndi Kleen
879ea149b36SAndi Kleenconfig X86_MCE_INJECT
880c1ebf835SAndi Kleen	depends on X86_MCE
881ea149b36SAndi Kleen	tristate "Machine check injector support"
882ea149b36SAndi Kleen	---help---
883ea149b36SAndi Kleen	  Provide support for injecting machine checks for testing purposes.
884ea149b36SAndi Kleen	  If you don't know what a machine check is and you don't do kernel
885ea149b36SAndi Kleen	  QA it is safe to say n.
886ea149b36SAndi Kleen
8874efc0670SAndi Kleenconfig X86_THERMAL_VECTOR
8884efc0670SAndi Kleen	def_bool y
8895bb38adcSAndi Kleen	depends on X86_MCE_INTEL
8904efc0670SAndi Kleen
891506f1d07SSam Ravnborgconfig VM86
892506f1d07SSam Ravnborg	bool "Enable VM86 support" if EMBEDDED
893506f1d07SSam Ravnborg	default y
894506f1d07SSam Ravnborg	depends on X86_32
8958f9ca475SIngo Molnar	---help---
896506f1d07SSam Ravnborg	  This option is required by programs like DOSEMU to run 16-bit legacy
897506f1d07SSam Ravnborg	  code on X86 processors. It also may be needed by software like
898506f1d07SSam Ravnborg	  XFree86 to initialize some video cards via BIOS. Disabling this
899506f1d07SSam Ravnborg	  option saves about 6k.
900506f1d07SSam Ravnborg
901506f1d07SSam Ravnborgconfig TOSHIBA
902506f1d07SSam Ravnborg	tristate "Toshiba Laptop support"
903506f1d07SSam Ravnborg	depends on X86_32
904506f1d07SSam Ravnborg	---help---
905506f1d07SSam Ravnborg	  This adds a driver to safely access the System Management Mode of
906506f1d07SSam Ravnborg	  the CPU on Toshiba portables with a genuine Toshiba BIOS. It does
907506f1d07SSam Ravnborg	  not work on models with a Phoenix BIOS. The System Management Mode
908506f1d07SSam Ravnborg	  is used to set the BIOS and power saving options on Toshiba portables.
909506f1d07SSam Ravnborg
910506f1d07SSam Ravnborg	  For information on utilities to make use of this driver see the
911506f1d07SSam Ravnborg	  Toshiba Linux utilities web site at:
912506f1d07SSam Ravnborg	  <http://www.buzzard.org.uk/toshiba/>.
913506f1d07SSam Ravnborg
914506f1d07SSam Ravnborg	  Say Y if you intend to run this kernel on a Toshiba portable.
915506f1d07SSam Ravnborg	  Say N otherwise.
916506f1d07SSam Ravnborg
917506f1d07SSam Ravnborgconfig I8K
918506f1d07SSam Ravnborg	tristate "Dell laptop support"
919506f1d07SSam Ravnborg	---help---
920506f1d07SSam Ravnborg	  This adds a driver to safely access the System Management Mode
921506f1d07SSam Ravnborg	  of the CPU on the Dell Inspiron 8000. The System Management Mode
922506f1d07SSam Ravnborg	  is used to read cpu temperature and cooling fan status and to
923506f1d07SSam Ravnborg	  control the fans on the I8K portables.
924506f1d07SSam Ravnborg
925506f1d07SSam Ravnborg	  This driver has been tested only on the Inspiron 8000 but it may
926506f1d07SSam Ravnborg	  also work with other Dell laptops. You can force loading on other
927506f1d07SSam Ravnborg	  models by passing the parameter `force=1' to the module. Use at
928506f1d07SSam Ravnborg	  your own risk.
929506f1d07SSam Ravnborg
930506f1d07SSam Ravnborg	  For information on utilities to make use of this driver see the
931506f1d07SSam Ravnborg	  I8K Linux utilities web site at:
932506f1d07SSam Ravnborg	  <http://people.debian.org/~dz/i8k/>
933506f1d07SSam Ravnborg
934506f1d07SSam Ravnborg	  Say Y if you intend to run this kernel on a Dell Inspiron 8000.
935506f1d07SSam Ravnborg	  Say N otherwise.
936506f1d07SSam Ravnborg
937506f1d07SSam Ravnborgconfig X86_REBOOTFIXUPS
9389ba16087SJan Beulich	bool "Enable X86 board specific fixups for reboot"
9399ba16087SJan Beulich	depends on X86_32
940506f1d07SSam Ravnborg	---help---
941506f1d07SSam Ravnborg	  This enables chipset and/or board specific fixups to be done
942506f1d07SSam Ravnborg	  in order to get reboot to work correctly. This is only needed on
943506f1d07SSam Ravnborg	  some combinations of hardware and BIOS. The symptom, for which
944506f1d07SSam Ravnborg	  this config is intended, is when reboot ends with a stalled/hung
945506f1d07SSam Ravnborg	  system.
946506f1d07SSam Ravnborg
947506f1d07SSam Ravnborg	  Currently, the only fixup is for the Geode machines using
9485e3a77e9SFlorian Fainelli	  CS5530A and CS5536 chipsets and the RDC R-321x SoC.
949506f1d07SSam Ravnborg
950506f1d07SSam Ravnborg	  Say Y if you want to enable the fixup. Currently, it's safe to
951506f1d07SSam Ravnborg	  enable this option even if you don't need it.
952506f1d07SSam Ravnborg	  Say N otherwise.
953506f1d07SSam Ravnborg
954506f1d07SSam Ravnborgconfig MICROCODE
9558d86f390SPeter Oruba	tristate "/dev/cpu/microcode - microcode support"
956506f1d07SSam Ravnborg	select FW_LOADER
957506f1d07SSam Ravnborg	---help---
958506f1d07SSam Ravnborg	  If you say Y here, you will be able to update the microcode on
95980cc9f10SPeter Oruba	  certain Intel and AMD processors. The Intel support is for the
96080cc9f10SPeter Oruba	  IA32 family, e.g. Pentium Pro, Pentium II, Pentium III,
96180cc9f10SPeter Oruba	  Pentium 4, Xeon etc. The AMD support is for family 0x10 and
96280cc9f10SPeter Oruba	  0x11 processors, e.g. Opteron, Phenom and Turion 64 Ultra.
96380cc9f10SPeter Oruba	  You will obviously need the actual microcode binary data itself
96480cc9f10SPeter Oruba	  which is not shipped with the Linux kernel.
965506f1d07SSam Ravnborg
9668d86f390SPeter Oruba	  This option selects the general module only, you need to select
9678d86f390SPeter Oruba	  at least one vendor specific module as well.
968506f1d07SSam Ravnborg
969506f1d07SSam Ravnborg	  To compile this driver as a module, choose M here: the
970506f1d07SSam Ravnborg	  module will be called microcode.
971506f1d07SSam Ravnborg
9728d86f390SPeter Orubaconfig MICROCODE_INTEL
97318dbc916SDmitry Adamushko	bool "Intel microcode patch loading support"
9748d86f390SPeter Oruba	depends on MICROCODE
9758d86f390SPeter Oruba	default MICROCODE
9768d86f390SPeter Oruba	select FW_LOADER
9778f9ca475SIngo Molnar	---help---
9788d86f390SPeter Oruba	  This options enables microcode patch loading support for Intel
9798d86f390SPeter Oruba	  processors.
9808d86f390SPeter Oruba
9818d86f390SPeter Oruba	  For latest news and information on obtaining all the required
9828d86f390SPeter Oruba	  Intel ingredients for this driver, check:
9838d86f390SPeter Oruba	  <http://www.urbanmyth.org/microcode/>.
9848d86f390SPeter Oruba
98580cc9f10SPeter Orubaconfig MICROCODE_AMD
98618dbc916SDmitry Adamushko	bool "AMD microcode patch loading support"
98780cc9f10SPeter Oruba	depends on MICROCODE
98880cc9f10SPeter Oruba	select FW_LOADER
9898f9ca475SIngo Molnar	---help---
99080cc9f10SPeter Oruba	  If you select this option, microcode patch loading support for AMD
99180cc9f10SPeter Oruba	  processors will be enabled.
99280cc9f10SPeter Oruba
993506f1d07SSam Ravnborgconfig MICROCODE_OLD_INTERFACE
9943c2362e6SHarvey Harrison	def_bool y
995506f1d07SSam Ravnborg	depends on MICROCODE
996506f1d07SSam Ravnborg
997506f1d07SSam Ravnborgconfig X86_MSR
998506f1d07SSam Ravnborg	tristate "/dev/cpu/*/msr - Model-specific register support"
9998f9ca475SIngo Molnar	---help---
1000506f1d07SSam Ravnborg	  This device gives privileged processes access to the x86
1001506f1d07SSam Ravnborg	  Model-Specific Registers (MSRs).  It is a character device with
1002506f1d07SSam Ravnborg	  major 202 and minors 0 to 31 for /dev/cpu/0/msr to /dev/cpu/31/msr.
1003506f1d07SSam Ravnborg	  MSR accesses are directed to a specific CPU on multi-processor
1004506f1d07SSam Ravnborg	  systems.
1005506f1d07SSam Ravnborg
1006506f1d07SSam Ravnborgconfig X86_CPUID
1007506f1d07SSam Ravnborg	tristate "/dev/cpu/*/cpuid - CPU information support"
10088f9ca475SIngo Molnar	---help---
1009506f1d07SSam Ravnborg	  This device gives processes access to the x86 CPUID instruction to
1010506f1d07SSam Ravnborg	  be executed on a specific processor.  It is a character device
1011506f1d07SSam Ravnborg	  with major 203 and minors 0 to 31 for /dev/cpu/0/cpuid to
1012506f1d07SSam Ravnborg	  /dev/cpu/31/cpuid.
1013506f1d07SSam Ravnborg
1014506f1d07SSam Ravnborgchoice
1015506f1d07SSam Ravnborg	prompt "High Memory Support"
1016506f1d07SSam Ravnborg	default HIGHMEM64G if X86_NUMAQ
10176fc108a0SJan Beulich	default HIGHMEM4G
1018506f1d07SSam Ravnborg	depends on X86_32
1019506f1d07SSam Ravnborg
1020506f1d07SSam Ravnborgconfig NOHIGHMEM
1021506f1d07SSam Ravnborg	bool "off"
1022506f1d07SSam Ravnborg	depends on !X86_NUMAQ
1023506f1d07SSam Ravnborg	---help---
1024506f1d07SSam Ravnborg	  Linux can use up to 64 Gigabytes of physical memory on x86 systems.
1025506f1d07SSam Ravnborg	  However, the address space of 32-bit x86 processors is only 4
1026506f1d07SSam Ravnborg	  Gigabytes large. That means that, if you have a large amount of
1027506f1d07SSam Ravnborg	  physical memory, not all of it can be "permanently mapped" by the
1028506f1d07SSam Ravnborg	  kernel. The physical memory that's not permanently mapped is called
1029506f1d07SSam Ravnborg	  "high memory".
1030506f1d07SSam Ravnborg
1031506f1d07SSam Ravnborg	  If you are compiling a kernel which will never run on a machine with
1032506f1d07SSam Ravnborg	  more than 1 Gigabyte total physical RAM, answer "off" here (default
1033506f1d07SSam Ravnborg	  choice and suitable for most users). This will result in a "3GB/1GB"
1034506f1d07SSam Ravnborg	  split: 3GB are mapped so that each process sees a 3GB virtual memory
1035506f1d07SSam Ravnborg	  space and the remaining part of the 4GB virtual memory space is used
1036506f1d07SSam Ravnborg	  by the kernel to permanently map as much physical memory as
1037506f1d07SSam Ravnborg	  possible.
1038506f1d07SSam Ravnborg
1039506f1d07SSam Ravnborg	  If the machine has between 1 and 4 Gigabytes physical RAM, then
1040506f1d07SSam Ravnborg	  answer "4GB" here.
1041506f1d07SSam Ravnborg
1042506f1d07SSam Ravnborg	  If more than 4 Gigabytes is used then answer "64GB" here. This
1043506f1d07SSam Ravnborg	  selection turns Intel PAE (Physical Address Extension) mode on.
1044506f1d07SSam Ravnborg	  PAE implements 3-level paging on IA32 processors. PAE is fully
1045506f1d07SSam Ravnborg	  supported by Linux, PAE mode is implemented on all recent Intel
1046506f1d07SSam Ravnborg	  processors (Pentium Pro and better). NOTE: If you say "64GB" here,
1047506f1d07SSam Ravnborg	  then the kernel will not boot on CPUs that don't support PAE!
1048506f1d07SSam Ravnborg
1049506f1d07SSam Ravnborg	  The actual amount of total physical memory will either be
1050506f1d07SSam Ravnborg	  auto detected or can be forced by using a kernel command line option
1051506f1d07SSam Ravnborg	  such as "mem=256M". (Try "man bootparam" or see the documentation of
1052506f1d07SSam Ravnborg	  your boot loader (lilo or loadlin) about how to pass options to the
1053506f1d07SSam Ravnborg	  kernel at boot time.)
1054506f1d07SSam Ravnborg
1055506f1d07SSam Ravnborg	  If unsure, say "off".
1056506f1d07SSam Ravnborg
1057506f1d07SSam Ravnborgconfig HIGHMEM4G
1058506f1d07SSam Ravnborg	bool "4GB"
1059506f1d07SSam Ravnborg	depends on !X86_NUMAQ
10608f9ca475SIngo Molnar	---help---
1061506f1d07SSam Ravnborg	  Select this if you have a 32-bit processor and between 1 and 4
1062506f1d07SSam Ravnborg	  gigabytes of physical RAM.
1063506f1d07SSam Ravnborg
1064506f1d07SSam Ravnborgconfig HIGHMEM64G
1065506f1d07SSam Ravnborg	bool "64GB"
1066506f1d07SSam Ravnborg	depends on !M386 && !M486
1067506f1d07SSam Ravnborg	select X86_PAE
10688f9ca475SIngo Molnar	---help---
1069506f1d07SSam Ravnborg	  Select this if you have a 32-bit processor and more than 4
1070506f1d07SSam Ravnborg	  gigabytes of physical RAM.
1071506f1d07SSam Ravnborg
1072506f1d07SSam Ravnborgendchoice
1073506f1d07SSam Ravnborg
1074506f1d07SSam Ravnborgchoice
1075506f1d07SSam Ravnborg	depends on EXPERIMENTAL
1076506f1d07SSam Ravnborg	prompt "Memory split" if EMBEDDED
1077506f1d07SSam Ravnborg	default VMSPLIT_3G
1078506f1d07SSam Ravnborg	depends on X86_32
10798f9ca475SIngo Molnar	---help---
1080506f1d07SSam Ravnborg	  Select the desired split between kernel and user memory.
1081506f1d07SSam Ravnborg
1082506f1d07SSam Ravnborg	  If the address range available to the kernel is less than the
1083506f1d07SSam Ravnborg	  physical memory installed, the remaining memory will be available
1084506f1d07SSam Ravnborg	  as "high memory". Accessing high memory is a little more costly
1085506f1d07SSam Ravnborg	  than low memory, as it needs to be mapped into the kernel first.
1086506f1d07SSam Ravnborg	  Note that increasing the kernel address space limits the range
1087506f1d07SSam Ravnborg	  available to user programs, making the address space there
1088506f1d07SSam Ravnborg	  tighter.  Selecting anything other than the default 3G/1G split
1089506f1d07SSam Ravnborg	  will also likely make your kernel incompatible with binary-only
1090506f1d07SSam Ravnborg	  kernel modules.
1091506f1d07SSam Ravnborg
1092506f1d07SSam Ravnborg	  If you are not absolutely sure what you are doing, leave this
1093506f1d07SSam Ravnborg	  option alone!
1094506f1d07SSam Ravnborg
1095506f1d07SSam Ravnborg	config VMSPLIT_3G
1096506f1d07SSam Ravnborg		bool "3G/1G user/kernel split"
1097506f1d07SSam Ravnborg	config VMSPLIT_3G_OPT
1098506f1d07SSam Ravnborg		depends on !X86_PAE
1099506f1d07SSam Ravnborg		bool "3G/1G user/kernel split (for full 1G low memory)"
1100506f1d07SSam Ravnborg	config VMSPLIT_2G
1101506f1d07SSam Ravnborg		bool "2G/2G user/kernel split"
1102506f1d07SSam Ravnborg	config VMSPLIT_2G_OPT
1103506f1d07SSam Ravnborg		depends on !X86_PAE
1104506f1d07SSam Ravnborg		bool "2G/2G user/kernel split (for full 2G low memory)"
1105506f1d07SSam Ravnborg	config VMSPLIT_1G
1106506f1d07SSam Ravnborg		bool "1G/3G user/kernel split"
1107506f1d07SSam Ravnborgendchoice
1108506f1d07SSam Ravnborg
1109506f1d07SSam Ravnborgconfig PAGE_OFFSET
1110506f1d07SSam Ravnborg	hex
1111506f1d07SSam Ravnborg	default 0xB0000000 if VMSPLIT_3G_OPT
1112506f1d07SSam Ravnborg	default 0x80000000 if VMSPLIT_2G
1113506f1d07SSam Ravnborg	default 0x78000000 if VMSPLIT_2G_OPT
1114506f1d07SSam Ravnborg	default 0x40000000 if VMSPLIT_1G
1115506f1d07SSam Ravnborg	default 0xC0000000
1116506f1d07SSam Ravnborg	depends on X86_32
1117506f1d07SSam Ravnborg
1118506f1d07SSam Ravnborgconfig HIGHMEM
11193c2362e6SHarvey Harrison	def_bool y
1120506f1d07SSam Ravnborg	depends on X86_32 && (HIGHMEM64G || HIGHMEM4G)
1121506f1d07SSam Ravnborg
1122506f1d07SSam Ravnborgconfig X86_PAE
11239ba16087SJan Beulich	bool "PAE (Physical Address Extension) Support"
1124506f1d07SSam Ravnborg	depends on X86_32 && !HIGHMEM4G
11258f9ca475SIngo Molnar	---help---
1126506f1d07SSam Ravnborg	  PAE is required for NX support, and furthermore enables
1127506f1d07SSam Ravnborg	  larger swapspace support for non-overcommit purposes. It
1128506f1d07SSam Ravnborg	  has the cost of more pagetable lookup overhead, and also
1129506f1d07SSam Ravnborg	  consumes more pagetable space per process.
1130506f1d07SSam Ravnborg
1131600715dcSJeremy Fitzhardingeconfig ARCH_PHYS_ADDR_T_64BIT
1132600715dcSJeremy Fitzhardinge	def_bool X86_64 || X86_PAE
1133600715dcSJeremy Fitzhardinge
113466f2b061SFUJITA Tomonoriconfig ARCH_DMA_ADDR_T_64BIT
113566f2b061SFUJITA Tomonori	def_bool X86_64 || HIGHMEM64G
113666f2b061SFUJITA Tomonori
11379e899816SNick Pigginconfig DIRECT_GBPAGES
11389e899816SNick Piggin	bool "Enable 1GB pages for kernel pagetables" if EMBEDDED
11399e899816SNick Piggin	default y
11409e899816SNick Piggin	depends on X86_64
11418f9ca475SIngo Molnar	---help---
11429e899816SNick Piggin	  Allow the kernel linear mapping to use 1GB pages on CPUs that
11439e899816SNick Piggin	  support it. This can improve the kernel's performance a tiny bit by
11449e899816SNick Piggin	  reducing TLB pressure. If in doubt, say "Y".
11459e899816SNick Piggin
1146506f1d07SSam Ravnborg# Common NUMA Features
1147506f1d07SSam Ravnborgconfig NUMA
1148fd51b2d7SKOSAKI Motohiro	bool "Numa Memory Allocation and Scheduler Support"
1149506f1d07SSam Ravnborg	depends on SMP
1150604d2055SRafael J. Wysocki	depends on X86_64 || (X86_32 && HIGHMEM64G && (X86_NUMAQ || X86_BIGSMP || X86_SUMMIT && ACPI) && EXPERIMENTAL)
11510699eae1SYinghai Lu	default y if (X86_NUMAQ || X86_SUMMIT || X86_BIGSMP)
11528f9ca475SIngo Molnar	---help---
1153506f1d07SSam Ravnborg	  Enable NUMA (Non Uniform Memory Access) support.
1154fd51b2d7SKOSAKI Motohiro
1155506f1d07SSam Ravnborg	  The kernel will try to allocate memory used by a CPU on the
1156506f1d07SSam Ravnborg	  local memory controller of the CPU and add some more
1157506f1d07SSam Ravnborg	  NUMA awareness to the kernel.
1158506f1d07SSam Ravnborg
1159c280ea5eSIngo Molnar	  For 64-bit this is recommended if the system is Intel Core i7
1160fd51b2d7SKOSAKI Motohiro	  (or later), AMD Opteron, or EM64T NUMA.
1161fd51b2d7SKOSAKI Motohiro
1162fd51b2d7SKOSAKI Motohiro	  For 32-bit this is only needed on (rare) 32-bit-only platforms
1163fd51b2d7SKOSAKI Motohiro	  that support NUMA topologies, such as NUMAQ / Summit, or if you
1164fd51b2d7SKOSAKI Motohiro	  boot a 32-bit kernel on a 64-bit NUMA platform.
1165fd51b2d7SKOSAKI Motohiro
1166fd51b2d7SKOSAKI Motohiro	  Otherwise, you should say N.
1167506f1d07SSam Ravnborg
1168506f1d07SSam Ravnborgcomment "NUMA (Summit) requires SMP, 64GB highmem support, ACPI"
1169506f1d07SSam Ravnborg	depends on X86_32 && X86_SUMMIT && (!HIGHMEM64G || !ACPI)
1170506f1d07SSam Ravnborg
1171eec1d4faSHans Rosenfeldconfig AMD_NUMA
11723c2362e6SHarvey Harrison	def_bool y
11733c2362e6SHarvey Harrison	prompt "Old style AMD Opteron NUMA detection"
1174506f1d07SSam Ravnborg	depends on X86_64 && NUMA && PCI
11758f9ca475SIngo Molnar	---help---
1176eec1d4faSHans Rosenfeld	  Enable AMD NUMA node topology detection.  You should say Y here if
1177eec1d4faSHans Rosenfeld	  you have a multi processor AMD system. This uses an old method to
1178eec1d4faSHans Rosenfeld	  read the NUMA configuration directly from the builtin Northbridge
1179eec1d4faSHans Rosenfeld	  of Opteron. It is recommended to use X86_64_ACPI_NUMA instead,
1180eec1d4faSHans Rosenfeld	  which also takes priority if both are compiled in.
1181506f1d07SSam Ravnborg
1182506f1d07SSam Ravnborgconfig X86_64_ACPI_NUMA
11833c2362e6SHarvey Harrison	def_bool y
11843c2362e6SHarvey Harrison	prompt "ACPI NUMA detection"
1185506f1d07SSam Ravnborg	depends on X86_64 && NUMA && ACPI && PCI
1186506f1d07SSam Ravnborg	select ACPI_NUMA
11878f9ca475SIngo Molnar	---help---
1188506f1d07SSam Ravnborg	  Enable ACPI SRAT based node topology detection.
1189506f1d07SSam Ravnborg
11906ec6e0d9SSuresh Siddha# Some NUMA nodes have memory ranges that span
11916ec6e0d9SSuresh Siddha# other nodes.  Even though a pfn is valid and
11926ec6e0d9SSuresh Siddha# between a node's start and end pfns, it may not
11936ec6e0d9SSuresh Siddha# reside on that node.  See memmap_init_zone()
11946ec6e0d9SSuresh Siddha# for details.
11956ec6e0d9SSuresh Siddhaconfig NODES_SPAN_OTHER_NODES
11966ec6e0d9SSuresh Siddha	def_bool y
11976ec6e0d9SSuresh Siddha	depends on X86_64_ACPI_NUMA
11986ec6e0d9SSuresh Siddha
1199506f1d07SSam Ravnborgconfig NUMA_EMU
1200506f1d07SSam Ravnborg	bool "NUMA emulation"
1201506f1d07SSam Ravnborg	depends on X86_64 && NUMA
12028f9ca475SIngo Molnar	---help---
1203506f1d07SSam Ravnborg	  Enable NUMA emulation. A flat machine will be split
1204506f1d07SSam Ravnborg	  into virtual nodes when booted with "numa=fake=N", where N is the
1205506f1d07SSam Ravnborg	  number of nodes. This is only useful for debugging.
1206506f1d07SSam Ravnborg
1207506f1d07SSam Ravnborgconfig NODES_SHIFT
1208d25e26b6SLinus Torvalds	int "Maximum NUMA Nodes (as a power of 2)" if !MAXSMP
120951591e31SDavid Rientjes	range 1 10
121051591e31SDavid Rientjes	default "10" if MAXSMP
1211506f1d07SSam Ravnborg	default "6" if X86_64
1212506f1d07SSam Ravnborg	default "4" if X86_NUMAQ
1213506f1d07SSam Ravnborg	default "3"
1214506f1d07SSam Ravnborg	depends on NEED_MULTIPLE_NODES
12158f9ca475SIngo Molnar	---help---
12161184dc2fSMike Travis	  Specify the maximum number of NUMA Nodes available on the target
1217692105b8SMatt LaPlante	  system.  Increases memory reserved to accommodate various tables.
1218506f1d07SSam Ravnborg
1219c1329375STejun Heoconfig HAVE_ARCH_BOOTMEM
12203c2362e6SHarvey Harrison	def_bool y
1221506f1d07SSam Ravnborg	depends on X86_32 && NUMA
1222506f1d07SSam Ravnborg
1223506f1d07SSam Ravnborgconfig ARCH_HAVE_MEMORY_PRESENT
12243c2362e6SHarvey Harrison	def_bool y
1225506f1d07SSam Ravnborg	depends on X86_32 && DISCONTIGMEM
1226506f1d07SSam Ravnborg
1227506f1d07SSam Ravnborgconfig NEED_NODE_MEMMAP_SIZE
12283c2362e6SHarvey Harrison	def_bool y
1229506f1d07SSam Ravnborg	depends on X86_32 && (DISCONTIGMEM || SPARSEMEM)
1230506f1d07SSam Ravnborg
1231506f1d07SSam Ravnborgconfig HAVE_ARCH_ALLOC_REMAP
12323c2362e6SHarvey Harrison	def_bool y
1233506f1d07SSam Ravnborg	depends on X86_32 && NUMA
1234506f1d07SSam Ravnborg
1235506f1d07SSam Ravnborgconfig ARCH_FLATMEM_ENABLE
1236506f1d07SSam Ravnborg	def_bool y
123799809963SJeff Chua	depends on X86_32 && ARCH_SELECT_MEMORY_MODEL && !NUMA
1238506f1d07SSam Ravnborg
1239506f1d07SSam Ravnborgconfig ARCH_DISCONTIGMEM_ENABLE
1240506f1d07SSam Ravnborg	def_bool y
1241b263295dSChristoph Lameter	depends on NUMA && X86_32
1242506f1d07SSam Ravnborg
1243506f1d07SSam Ravnborgconfig ARCH_DISCONTIGMEM_DEFAULT
1244506f1d07SSam Ravnborg	def_bool y
1245b263295dSChristoph Lameter	depends on NUMA && X86_32
1246b263295dSChristoph Lameter
12479492587cSKAMEZAWA Hiroyukiconfig ARCH_PROC_KCORE_TEXT
12489492587cSKAMEZAWA Hiroyuki	def_bool y
12499492587cSKAMEZAWA Hiroyuki	depends on X86_64 && PROC_KCORE
12509492587cSKAMEZAWA Hiroyuki
1251b263295dSChristoph Lameterconfig ARCH_SPARSEMEM_DEFAULT
1252b263295dSChristoph Lameter	def_bool y
1253b263295dSChristoph Lameter	depends on X86_64
1254506f1d07SSam Ravnborg
1255506f1d07SSam Ravnborgconfig ARCH_SPARSEMEM_ENABLE
1256506f1d07SSam Ravnborg	def_bool y
12574272ebfbSYinghai Lu	depends on X86_64 || NUMA || (EXPERIMENTAL && X86_32) || X86_32_NON_STANDARD
1258506f1d07SSam Ravnborg	select SPARSEMEM_STATIC if X86_32
1259506f1d07SSam Ravnborg	select SPARSEMEM_VMEMMAP_ENABLE if X86_64
1260506f1d07SSam Ravnborg
1261506f1d07SSam Ravnborgconfig ARCH_SELECT_MEMORY_MODEL
1262506f1d07SSam Ravnborg	def_bool y
1263b263295dSChristoph Lameter	depends on ARCH_SPARSEMEM_ENABLE
1264506f1d07SSam Ravnborg
1265506f1d07SSam Ravnborgconfig ARCH_MEMORY_PROBE
1266506f1d07SSam Ravnborg	def_bool X86_64
1267506f1d07SSam Ravnborg	depends on MEMORY_HOTPLUG
1268506f1d07SSam Ravnborg
1269a29815a3SAvi Kivityconfig ILLEGAL_POINTER_VALUE
1270a29815a3SAvi Kivity       hex
1271a29815a3SAvi Kivity       default 0 if X86_32
1272a29815a3SAvi Kivity       default 0xdead000000000000 if X86_64
1273a29815a3SAvi Kivity
1274506f1d07SSam Ravnborgsource "mm/Kconfig"
1275506f1d07SSam Ravnborg
1276506f1d07SSam Ravnborgconfig HIGHPTE
1277506f1d07SSam Ravnborg	bool "Allocate 3rd-level pagetables from highmem"
12786fc108a0SJan Beulich	depends on HIGHMEM
12798f9ca475SIngo Molnar	---help---
1280506f1d07SSam Ravnborg	  The VM uses one page table entry for each page of physical memory.
1281506f1d07SSam Ravnborg	  For systems with a lot of RAM, this can be wasteful of precious
1282506f1d07SSam Ravnborg	  low memory.  Setting this option will put user-space page table
1283506f1d07SSam Ravnborg	  entries in high memory.
1284506f1d07SSam Ravnborg
12859f077871SJeremy Fitzhardingeconfig X86_CHECK_BIOS_CORRUPTION
12869f077871SJeremy Fitzhardinge	bool "Check for low memory corruption"
12878f9ca475SIngo Molnar	---help---
12889f077871SJeremy Fitzhardinge	  Periodically check for memory corruption in low memory, which
12899f077871SJeremy Fitzhardinge	  is suspected to be caused by BIOS.  Even when enabled in the
12909f077871SJeremy Fitzhardinge	  configuration, it is disabled at runtime.  Enable it by
12919f077871SJeremy Fitzhardinge	  setting "memory_corruption_check=1" on the kernel command
12929f077871SJeremy Fitzhardinge	  line.  By default it scans the low 64k of memory every 60
12939f077871SJeremy Fitzhardinge	  seconds; see the memory_corruption_check_size and
12949f077871SJeremy Fitzhardinge	  memory_corruption_check_period parameters in
12959f077871SJeremy Fitzhardinge	  Documentation/kernel-parameters.txt to adjust this.
12969f077871SJeremy Fitzhardinge
12979f077871SJeremy Fitzhardinge	  When enabled with the default parameters, this option has
12989f077871SJeremy Fitzhardinge	  almost no overhead, as it reserves a relatively small amount
12999f077871SJeremy Fitzhardinge	  of memory and scans it infrequently.  It both detects corruption
13009f077871SJeremy Fitzhardinge	  and prevents it from affecting the running system.
13019f077871SJeremy Fitzhardinge
13029f077871SJeremy Fitzhardinge	  It is, however, intended as a diagnostic tool; if repeatable
13039f077871SJeremy Fitzhardinge	  BIOS-originated corruption always affects the same memory,
13049f077871SJeremy Fitzhardinge	  you can use memmap= to prevent the kernel from using that
13059f077871SJeremy Fitzhardinge	  memory.
13069f077871SJeremy Fitzhardinge
1307c885df50SJeremy Fitzhardingeconfig X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK
1308c885df50SJeremy Fitzhardinge	bool "Set the default setting of memory_corruption_check"
1309c885df50SJeremy Fitzhardinge	depends on X86_CHECK_BIOS_CORRUPTION
1310c885df50SJeremy Fitzhardinge	default y
13118f9ca475SIngo Molnar	---help---
1312c885df50SJeremy Fitzhardinge	  Set whether the default state of memory_corruption_check is
1313c885df50SJeremy Fitzhardinge	  on or off.
1314c885df50SJeremy Fitzhardinge
13159ea77bdbSH. Peter Anvinconfig X86_RESERVE_LOW
1316d0cd7425SH. Peter Anvin	int "Amount of low memory, in kilobytes, to reserve for the BIOS"
1317d0cd7425SH. Peter Anvin	default 64
1318d0cd7425SH. Peter Anvin	range 4 640
13198f9ca475SIngo Molnar	---help---
1320d0cd7425SH. Peter Anvin	  Specify the amount of low memory to reserve for the BIOS.
1321fc381519SIngo Molnar
1322d0cd7425SH. Peter Anvin	  The first page contains BIOS data structures that the kernel
1323d0cd7425SH. Peter Anvin	  must not use, so that page must always be reserved.
1324fc381519SIngo Molnar
1325d0cd7425SH. Peter Anvin	  By default we reserve the first 64K of physical RAM, as a
1326d0cd7425SH. Peter Anvin	  number of BIOSes are known to corrupt that memory range
1327d0cd7425SH. Peter Anvin	  during events such as suspend/resume or monitor cable
1328d0cd7425SH. Peter Anvin	  insertion, so it must not be used by the kernel.
1329fc381519SIngo Molnar
1330d0cd7425SH. Peter Anvin	  You can set this to 4 if you are absolutely sure that you
1331d0cd7425SH. Peter Anvin	  trust the BIOS to get all its memory reservations and usages
1332d0cd7425SH. Peter Anvin	  right.  If you know your BIOS have problems beyond the
1333d0cd7425SH. Peter Anvin	  default 64K area, you can set this to 640 to avoid using the
1334d0cd7425SH. Peter Anvin	  entire low memory range.
1335d0cd7425SH. Peter Anvin
1336d0cd7425SH. Peter Anvin	  If you have doubts about the BIOS (e.g. suspend/resume does
1337d0cd7425SH. Peter Anvin	  not work or there's kernel crashes after certain hardware
1338d0cd7425SH. Peter Anvin	  hotplug events) then you might want to enable
1339d0cd7425SH. Peter Anvin	  X86_CHECK_BIOS_CORRUPTION=y to allow the kernel to check
1340d0cd7425SH. Peter Anvin	  typical corruption patterns.
1341d0cd7425SH. Peter Anvin
1342d0cd7425SH. Peter Anvin	  Leave this to the default value of 64 if you are unsure.
1343fc381519SIngo Molnar
1344506f1d07SSam Ravnborgconfig MATH_EMULATION
1345506f1d07SSam Ravnborg	bool
1346506f1d07SSam Ravnborg	prompt "Math emulation" if X86_32
1347506f1d07SSam Ravnborg	---help---
1348506f1d07SSam Ravnborg	  Linux can emulate a math coprocessor (used for floating point
1349506f1d07SSam Ravnborg	  operations) if you don't have one. 486DX and Pentium processors have
1350506f1d07SSam Ravnborg	  a math coprocessor built in, 486SX and 386 do not, unless you added
1351506f1d07SSam Ravnborg	  a 487DX or 387, respectively. (The messages during boot time can
1352506f1d07SSam Ravnborg	  give you some hints here ["man dmesg"].) Everyone needs either a
1353506f1d07SSam Ravnborg	  coprocessor or this emulation.
1354506f1d07SSam Ravnborg
1355506f1d07SSam Ravnborg	  If you don't have a math coprocessor, you need to say Y here; if you
1356506f1d07SSam Ravnborg	  say Y here even though you have a coprocessor, the coprocessor will
1357506f1d07SSam Ravnborg	  be used nevertheless. (This behavior can be changed with the kernel
1358506f1d07SSam Ravnborg	  command line option "no387", which comes handy if your coprocessor
1359506f1d07SSam Ravnborg	  is broken. Try "man bootparam" or see the documentation of your boot
1360506f1d07SSam Ravnborg	  loader (lilo or loadlin) about how to pass options to the kernel at
1361506f1d07SSam Ravnborg	  boot time.) This means that it is a good idea to say Y here if you
1362506f1d07SSam Ravnborg	  intend to use this kernel on different machines.
1363506f1d07SSam Ravnborg
1364506f1d07SSam Ravnborg	  More information about the internals of the Linux math coprocessor
1365506f1d07SSam Ravnborg	  emulation can be found in <file:arch/x86/math-emu/README>.
1366506f1d07SSam Ravnborg
1367506f1d07SSam Ravnborg	  If you are not sure, say Y; apart from resulting in a 66 KB bigger
1368506f1d07SSam Ravnborg	  kernel, it won't hurt.
1369506f1d07SSam Ravnborg
1370506f1d07SSam Ravnborgconfig MTRR
13716fc108a0SJan Beulich	def_bool y
1372c03cb314SArjan van de Ven	prompt "MTRR (Memory Type Range Register) support" if EMBEDDED
1373506f1d07SSam Ravnborg	---help---
1374506f1d07SSam Ravnborg	  On Intel P6 family processors (Pentium Pro, Pentium II and later)
1375506f1d07SSam Ravnborg	  the Memory Type Range Registers (MTRRs) may be used to control
1376506f1d07SSam Ravnborg	  processor access to memory ranges. This is most useful if you have
1377506f1d07SSam Ravnborg	  a video (VGA) card on a PCI or AGP bus. Enabling write-combining
1378506f1d07SSam Ravnborg	  allows bus write transfers to be combined into a larger transfer
1379506f1d07SSam Ravnborg	  before bursting over the PCI/AGP bus. This can increase performance
1380506f1d07SSam Ravnborg	  of image write operations 2.5 times or more. Saying Y here creates a
1381506f1d07SSam Ravnborg	  /proc/mtrr file which may be used to manipulate your processor's
1382506f1d07SSam Ravnborg	  MTRRs. Typically the X server should use this.
1383506f1d07SSam Ravnborg
1384506f1d07SSam Ravnborg	  This code has a reasonably generic interface so that similar
1385506f1d07SSam Ravnborg	  control registers on other processors can be easily supported
1386506f1d07SSam Ravnborg	  as well:
1387506f1d07SSam Ravnborg
1388506f1d07SSam Ravnborg	  The Cyrix 6x86, 6x86MX and M II processors have Address Range
1389506f1d07SSam Ravnborg	  Registers (ARRs) which provide a similar functionality to MTRRs. For
1390506f1d07SSam Ravnborg	  these, the ARRs are used to emulate the MTRRs.
1391506f1d07SSam Ravnborg	  The AMD K6-2 (stepping 8 and above) and K6-3 processors have two
1392506f1d07SSam Ravnborg	  MTRRs. The Centaur C6 (WinChip) has 8 MCRs, allowing
1393506f1d07SSam Ravnborg	  write-combining. All of these processors are supported by this code
1394506f1d07SSam Ravnborg	  and it makes sense to say Y here if you have one of them.
1395506f1d07SSam Ravnborg
1396506f1d07SSam Ravnborg	  Saying Y here also fixes a problem with buggy SMP BIOSes which only
1397506f1d07SSam Ravnborg	  set the MTRRs for the boot CPU and not for the secondary CPUs. This
1398506f1d07SSam Ravnborg	  can lead to all sorts of problems, so it's good to say Y here.
1399506f1d07SSam Ravnborg
1400506f1d07SSam Ravnborg	  You can safely say Y even if your machine doesn't have MTRRs, you'll
1401506f1d07SSam Ravnborg	  just add about 9 KB to your kernel.
1402506f1d07SSam Ravnborg
14037225e751SRandy Dunlap	  See <file:Documentation/x86/mtrr.txt> for more information.
1404506f1d07SSam Ravnborg
140595ffa243SYinghai Luconfig MTRR_SANITIZER
14062ffb3501SYinghai Lu	def_bool y
140795ffa243SYinghai Lu	prompt "MTRR cleanup support"
140895ffa243SYinghai Lu	depends on MTRR
14098f9ca475SIngo Molnar	---help---
1410aba3728cSThomas Gleixner	  Convert MTRR layout from continuous to discrete, so X drivers can
1411aba3728cSThomas Gleixner	  add writeback entries.
141295ffa243SYinghai Lu
1413aba3728cSThomas Gleixner	  Can be disabled with disable_mtrr_cleanup on the kernel command line.
1414692105b8SMatt LaPlante	  The largest mtrr entry size for a continuous block can be set with
1415aba3728cSThomas Gleixner	  mtrr_chunk_size.
141695ffa243SYinghai Lu
14172ffb3501SYinghai Lu	  If unsure, say Y.
141895ffa243SYinghai Lu
141995ffa243SYinghai Luconfig MTRR_SANITIZER_ENABLE_DEFAULT
1420f5098d62SYinghai Lu	int "MTRR cleanup enable value (0-1)"
1421f5098d62SYinghai Lu	range 0 1
1422f5098d62SYinghai Lu	default "0"
142395ffa243SYinghai Lu	depends on MTRR_SANITIZER
14248f9ca475SIngo Molnar	---help---
1425f5098d62SYinghai Lu	  Enable mtrr cleanup default value
142695ffa243SYinghai Lu
142712031a62SYinghai Luconfig MTRR_SANITIZER_SPARE_REG_NR_DEFAULT
142812031a62SYinghai Lu	int "MTRR cleanup spare reg num (0-7)"
142912031a62SYinghai Lu	range 0 7
143012031a62SYinghai Lu	default "1"
143112031a62SYinghai Lu	depends on MTRR_SANITIZER
14328f9ca475SIngo Molnar	---help---
143312031a62SYinghai Lu	  mtrr cleanup spare entries default, it can be changed via
1434aba3728cSThomas Gleixner	  mtrr_spare_reg_nr=N on the kernel command line.
143512031a62SYinghai Lu
14362e5d9c85Svenkatesh.pallipadi@intel.comconfig X86_PAT
14376fc108a0SJan Beulich	def_bool y
1438c03cb314SArjan van de Ven	prompt "x86 PAT support" if EMBEDDED
14392a8a2719SIngo Molnar	depends on MTRR
14408f9ca475SIngo Molnar	---help---
14412e5d9c85Svenkatesh.pallipadi@intel.com	  Use PAT attributes to setup page level cache control.
1442042b78e4SVenki Pallipadi
14432e5d9c85Svenkatesh.pallipadi@intel.com	  PATs are the modern equivalents of MTRRs and are much more
14442e5d9c85Svenkatesh.pallipadi@intel.com	  flexible than MTRRs.
14452e5d9c85Svenkatesh.pallipadi@intel.com
14462e5d9c85Svenkatesh.pallipadi@intel.com	  Say N here if you see bootup problems (boot crash, boot hang,
1447042b78e4SVenki Pallipadi	  spontaneous reboots) or a non-working video driver.
14482e5d9c85Svenkatesh.pallipadi@intel.com
14492e5d9c85Svenkatesh.pallipadi@intel.com	  If unsure, say Y.
14502e5d9c85Svenkatesh.pallipadi@intel.com
145146cf98cdSVenkatesh Pallipadiconfig ARCH_USES_PG_UNCACHED
145246cf98cdSVenkatesh Pallipadi	def_bool y
145346cf98cdSVenkatesh Pallipadi	depends on X86_PAT
145446cf98cdSVenkatesh Pallipadi
1455506f1d07SSam Ravnborgconfig EFI
14569ba16087SJan Beulich	bool "EFI runtime service support"
14575b83683fSHuang, Ying	depends on ACPI
1458506f1d07SSam Ravnborg	---help---
14598b2cb7a8SHuang, Ying	  This enables the kernel to use EFI runtime services that are
1460506f1d07SSam Ravnborg	  available (such as the EFI variable services).
1461506f1d07SSam Ravnborg
14628b2cb7a8SHuang, Ying	  This option is only useful on systems that have EFI firmware.
14638b2cb7a8SHuang, Ying	  In addition, you should use the latest ELILO loader available
14648b2cb7a8SHuang, Ying	  at <http://elilo.sourceforge.net> in order to take advantage
14658b2cb7a8SHuang, Ying	  of EFI runtime services. However, even with this option, the
14668b2cb7a8SHuang, Ying	  resultant kernel should continue to boot on existing non-EFI
14678b2cb7a8SHuang, Ying	  platforms.
1468506f1d07SSam Ravnborg
1469506f1d07SSam Ravnborgconfig SECCOMP
14703c2362e6SHarvey Harrison	def_bool y
14713c2362e6SHarvey Harrison	prompt "Enable seccomp to safely compute untrusted bytecode"
14728f9ca475SIngo Molnar	---help---
1473506f1d07SSam Ravnborg	  This kernel feature is useful for number crunching applications
1474506f1d07SSam Ravnborg	  that may need to compute untrusted bytecode during their
1475506f1d07SSam Ravnborg	  execution. By using pipes or other transports made available to
1476506f1d07SSam Ravnborg	  the process as file descriptors supporting the read/write
1477506f1d07SSam Ravnborg	  syscalls, it's possible to isolate those applications in
1478506f1d07SSam Ravnborg	  their own address space using seccomp. Once seccomp is
14799c0bbee8SAlexey Dobriyan	  enabled via prctl(PR_SET_SECCOMP), it cannot be disabled
1480506f1d07SSam Ravnborg	  and the task is only allowed to execute a few safe syscalls
1481506f1d07SSam Ravnborg	  defined by each seccomp mode.
1482506f1d07SSam Ravnborg
1483506f1d07SSam Ravnborg	  If unsure, say Y. Only embedded should say N here.
1484506f1d07SSam Ravnborg
1485506f1d07SSam Ravnborgconfig CC_STACKPROTECTOR
1486506f1d07SSam Ravnborg	bool "Enable -fstack-protector buffer overflow detection (EXPERIMENTAL)"
14878f9ca475SIngo Molnar	---help---
1488506f1d07SSam Ravnborg	  This option turns on the -fstack-protector GCC feature. This
1489113c5413SIngo Molnar	  feature puts, at the beginning of functions, a canary value on
1490113c5413SIngo Molnar	  the stack just before the return address, and validates
1491506f1d07SSam Ravnborg	  the value just before actually returning.  Stack based buffer
1492506f1d07SSam Ravnborg	  overflows (that need to overwrite this return address) now also
1493506f1d07SSam Ravnborg	  overwrite the canary, which gets detected and the attack is then
1494506f1d07SSam Ravnborg	  neutralized via a kernel panic.
1495506f1d07SSam Ravnborg
1496506f1d07SSam Ravnborg	  This feature requires gcc version 4.2 or above, or a distribution
1497506f1d07SSam Ravnborg	  gcc with the feature backported. Older versions are automatically
1498113c5413SIngo Molnar	  detected and for those versions, this configuration option is
1499113c5413SIngo Molnar	  ignored. (and a warning is printed during bootup)
1500506f1d07SSam Ravnborg
1501506f1d07SSam Ravnborgsource kernel/Kconfig.hz
1502506f1d07SSam Ravnborg
1503506f1d07SSam Ravnborgconfig KEXEC
1504506f1d07SSam Ravnborg	bool "kexec system call"
15058f9ca475SIngo Molnar	---help---
1506506f1d07SSam Ravnborg	  kexec is a system call that implements the ability to shutdown your
1507506f1d07SSam Ravnborg	  current kernel, and to start another kernel.  It is like a reboot
1508506f1d07SSam Ravnborg	  but it is independent of the system firmware.   And like a reboot
1509506f1d07SSam Ravnborg	  you can start any kernel with it, not just Linux.
1510506f1d07SSam Ravnborg
1511506f1d07SSam Ravnborg	  The name comes from the similarity to the exec system call.
1512506f1d07SSam Ravnborg
1513506f1d07SSam Ravnborg	  It is an ongoing process to be certain the hardware in a machine
1514506f1d07SSam Ravnborg	  is properly shutdown, so do not be surprised if this code does not
1515506f1d07SSam Ravnborg	  initially work for you.  It may help to enable device hotplugging
1516506f1d07SSam Ravnborg	  support.  As of this writing the exact hardware interface is
1517506f1d07SSam Ravnborg	  strongly in flux, so no good recommendation can be made.
1518506f1d07SSam Ravnborg
1519506f1d07SSam Ravnborgconfig CRASH_DUMP
152004b69447SPavel Machek	bool "kernel crash dumps"
1521506f1d07SSam Ravnborg	depends on X86_64 || (X86_32 && HIGHMEM)
15228f9ca475SIngo Molnar	---help---
1523506f1d07SSam Ravnborg	  Generate crash dump after being started by kexec.
1524506f1d07SSam Ravnborg	  This should be normally only set in special crash dump kernels
1525506f1d07SSam Ravnborg	  which are loaded in the main kernel with kexec-tools into
1526506f1d07SSam Ravnborg	  a specially reserved region and then later executed after
1527506f1d07SSam Ravnborg	  a crash by kdump/kexec. The crash dump kernel must be compiled
1528506f1d07SSam Ravnborg	  to a memory address not used by the main kernel or BIOS using
1529506f1d07SSam Ravnborg	  PHYSICAL_START, or it must be built as a relocatable image
1530506f1d07SSam Ravnborg	  (CONFIG_RELOCATABLE=y).
1531506f1d07SSam Ravnborg	  For more details see Documentation/kdump/kdump.txt
1532506f1d07SSam Ravnborg
15333ab83521SHuang Yingconfig KEXEC_JUMP
15343ab83521SHuang Ying	bool "kexec jump (EXPERIMENTAL)"
15353ab83521SHuang Ying	depends on EXPERIMENTAL
1536fee7b0d8SHuang Ying	depends on KEXEC && HIBERNATION
15378f9ca475SIngo Molnar	---help---
153889081d17SHuang Ying	  Jump between original kernel and kexeced kernel and invoke
153989081d17SHuang Ying	  code in physical address mode via KEXEC
15403ab83521SHuang Ying
1541506f1d07SSam Ravnborgconfig PHYSICAL_START
1542506f1d07SSam Ravnborg	hex "Physical address where the kernel is loaded" if (EMBEDDED || CRASH_DUMP)
1543ceefccc9SH. Peter Anvin	default "0x1000000"
15448f9ca475SIngo Molnar	---help---
1545506f1d07SSam Ravnborg	  This gives the physical address where the kernel is loaded.
1546506f1d07SSam Ravnborg
1547506f1d07SSam Ravnborg	  If kernel is a not relocatable (CONFIG_RELOCATABLE=n) then
1548506f1d07SSam Ravnborg	  bzImage will decompress itself to above physical address and
1549506f1d07SSam Ravnborg	  run from there. Otherwise, bzImage will run from the address where
1550506f1d07SSam Ravnborg	  it has been loaded by the boot loader and will ignore above physical
1551506f1d07SSam Ravnborg	  address.
1552506f1d07SSam Ravnborg
1553506f1d07SSam Ravnborg	  In normal kdump cases one does not have to set/change this option
1554506f1d07SSam Ravnborg	  as now bzImage can be compiled as a completely relocatable image
1555506f1d07SSam Ravnborg	  (CONFIG_RELOCATABLE=y) and be used to load and run from a different
1556506f1d07SSam Ravnborg	  address. This option is mainly useful for the folks who don't want
1557506f1d07SSam Ravnborg	  to use a bzImage for capturing the crash dump and want to use a
1558506f1d07SSam Ravnborg	  vmlinux instead. vmlinux is not relocatable hence a kernel needs
1559506f1d07SSam Ravnborg	  to be specifically compiled to run from a specific memory area
1560506f1d07SSam Ravnborg	  (normally a reserved region) and this option comes handy.
1561506f1d07SSam Ravnborg
1562ceefccc9SH. Peter Anvin	  So if you are using bzImage for capturing the crash dump,
1563ceefccc9SH. Peter Anvin	  leave the value here unchanged to 0x1000000 and set
1564ceefccc9SH. Peter Anvin	  CONFIG_RELOCATABLE=y.  Otherwise if you plan to use vmlinux
1565ceefccc9SH. Peter Anvin	  for capturing the crash dump change this value to start of
1566ceefccc9SH. Peter Anvin	  the reserved region.  In other words, it can be set based on
1567ceefccc9SH. Peter Anvin	  the "X" value as specified in the "crashkernel=YM@XM"
1568ceefccc9SH. Peter Anvin	  command line boot parameter passed to the panic-ed
1569ceefccc9SH. Peter Anvin	  kernel. Please take a look at Documentation/kdump/kdump.txt
1570ceefccc9SH. Peter Anvin	  for more details about crash dumps.
1571506f1d07SSam Ravnborg
1572506f1d07SSam Ravnborg	  Usage of bzImage for capturing the crash dump is recommended as
1573506f1d07SSam Ravnborg	  one does not have to build two kernels. Same kernel can be used
1574506f1d07SSam Ravnborg	  as production kernel and capture kernel. Above option should have
1575506f1d07SSam Ravnborg	  gone away after relocatable bzImage support is introduced. But it
1576506f1d07SSam Ravnborg	  is present because there are users out there who continue to use
1577506f1d07SSam Ravnborg	  vmlinux for dump capture. This option should go away down the
1578506f1d07SSam Ravnborg	  line.
1579506f1d07SSam Ravnborg
1580506f1d07SSam Ravnborg	  Don't change this unless you know what you are doing.
1581506f1d07SSam Ravnborg
1582506f1d07SSam Ravnborgconfig RELOCATABLE
158326717808SH. Peter Anvin	bool "Build a relocatable kernel"
158426717808SH. Peter Anvin	default y
15858f9ca475SIngo Molnar	---help---
1586506f1d07SSam Ravnborg	  This builds a kernel image that retains relocation information
1587506f1d07SSam Ravnborg	  so it can be loaded someplace besides the default 1MB.
1588506f1d07SSam Ravnborg	  The relocations tend to make the kernel binary about 10% larger,
1589506f1d07SSam Ravnborg	  but are discarded at runtime.
1590506f1d07SSam Ravnborg
1591506f1d07SSam Ravnborg	  One use is for the kexec on panic case where the recovery kernel
1592506f1d07SSam Ravnborg	  must live at a different physical address than the primary
1593506f1d07SSam Ravnborg	  kernel.
1594506f1d07SSam Ravnborg
1595506f1d07SSam Ravnborg	  Note: If CONFIG_RELOCATABLE=y, then the kernel runs from the address
1596506f1d07SSam Ravnborg	  it has been loaded at and the compile time physical address
1597506f1d07SSam Ravnborg	  (CONFIG_PHYSICAL_START) is ignored.
1598506f1d07SSam Ravnborg
1599845adf72SH. Peter Anvin# Relocation on x86-32 needs some additional build support
1600845adf72SH. Peter Anvinconfig X86_NEED_RELOCS
1601845adf72SH. Peter Anvin	def_bool y
1602845adf72SH. Peter Anvin	depends on X86_32 && RELOCATABLE
1603845adf72SH. Peter Anvin
1604506f1d07SSam Ravnborgconfig PHYSICAL_ALIGN
16056fc108a0SJan Beulich	hex "Alignment value to which kernel should be aligned" if X86_32
1606ceefccc9SH. Peter Anvin	default "0x1000000"
1607ceefccc9SH. Peter Anvin	range 0x2000 0x1000000
16088f9ca475SIngo Molnar	---help---
1609506f1d07SSam Ravnborg	  This value puts the alignment restrictions on physical address
1610506f1d07SSam Ravnborg	  where kernel is loaded and run from. Kernel is compiled for an
1611506f1d07SSam Ravnborg	  address which meets above alignment restriction.
1612506f1d07SSam Ravnborg
1613506f1d07SSam Ravnborg	  If bootloader loads the kernel at a non-aligned address and
1614506f1d07SSam Ravnborg	  CONFIG_RELOCATABLE is set, kernel will move itself to nearest
1615506f1d07SSam Ravnborg	  address aligned to above value and run from there.
1616506f1d07SSam Ravnborg
1617506f1d07SSam Ravnborg	  If bootloader loads the kernel at a non-aligned address and
1618506f1d07SSam Ravnborg	  CONFIG_RELOCATABLE is not set, kernel will ignore the run time
1619506f1d07SSam Ravnborg	  load address and decompress itself to the address it has been
1620506f1d07SSam Ravnborg	  compiled for and run from there. The address for which kernel is
1621506f1d07SSam Ravnborg	  compiled already meets above alignment restrictions. Hence the
1622506f1d07SSam Ravnborg	  end result is that kernel runs from a physical address meeting
1623506f1d07SSam Ravnborg	  above alignment restrictions.
1624506f1d07SSam Ravnborg
1625506f1d07SSam Ravnborg	  Don't change this unless you know what you are doing.
1626506f1d07SSam Ravnborg
1627506f1d07SSam Ravnborgconfig HOTPLUG_CPU
16287c13e6a3SDimitri Sivanich	bool "Support for hot-pluggable CPUs"
16294b19ed91SIngo Molnar	depends on SMP && HOTPLUG
1630506f1d07SSam Ravnborg	---help---
16317c13e6a3SDimitri Sivanich	  Say Y here to allow turning CPUs off and on. CPUs can be
16327c13e6a3SDimitri Sivanich	  controlled through /sys/devices/system/cpu.
16337c13e6a3SDimitri Sivanich	  ( Note: power management support will enable this option
16347c13e6a3SDimitri Sivanich	    automatically on SMP systems. )
16357c13e6a3SDimitri Sivanich	  Say N if you want to disable CPU hotplug.
1636506f1d07SSam Ravnborg
1637506f1d07SSam Ravnborgconfig COMPAT_VDSO
16383c2362e6SHarvey Harrison	def_bool y
16393c2362e6SHarvey Harrison	prompt "Compat VDSO support"
1640af65d648SRoland McGrath	depends on X86_32 || IA32_EMULATION
16418f9ca475SIngo Molnar	---help---
1642af65d648SRoland McGrath	  Map the 32-bit VDSO to the predictable old-style address too.
1643e84446deSRandy Dunlap
1644506f1d07SSam Ravnborg	  Say N here if you are running a sufficiently recent glibc
1645506f1d07SSam Ravnborg	  version (2.3.3 or later), to remove the high-mapped
1646506f1d07SSam Ravnborg	  VDSO mapping and to exclusively use the randomized VDSO.
1647506f1d07SSam Ravnborg
1648506f1d07SSam Ravnborg	  If unsure, say Y.
1649506f1d07SSam Ravnborg
1650516cbf37STim Birdconfig CMDLINE_BOOL
1651516cbf37STim Bird	bool "Built-in kernel command line"
16528f9ca475SIngo Molnar	---help---
1653516cbf37STim Bird	  Allow for specifying boot arguments to the kernel at
1654516cbf37STim Bird	  build time.  On some systems (e.g. embedded ones), it is
1655516cbf37STim Bird	  necessary or convenient to provide some or all of the
1656516cbf37STim Bird	  kernel boot arguments with the kernel itself (that is,
1657516cbf37STim Bird	  to not rely on the boot loader to provide them.)
1658516cbf37STim Bird
1659516cbf37STim Bird	  To compile command line arguments into the kernel,
1660516cbf37STim Bird	  set this option to 'Y', then fill in the
1661516cbf37STim Bird	  the boot arguments in CONFIG_CMDLINE.
1662516cbf37STim Bird
1663516cbf37STim Bird	  Systems with fully functional boot loaders (i.e. non-embedded)
1664516cbf37STim Bird	  should leave this option set to 'N'.
1665516cbf37STim Bird
1666516cbf37STim Birdconfig CMDLINE
1667516cbf37STim Bird	string "Built-in kernel command string"
1668516cbf37STim Bird	depends on CMDLINE_BOOL
1669516cbf37STim Bird	default ""
16708f9ca475SIngo Molnar	---help---
1671516cbf37STim Bird	  Enter arguments here that should be compiled into the kernel
1672516cbf37STim Bird	  image and used at boot time.  If the boot loader provides a
1673516cbf37STim Bird	  command line at boot time, it is appended to this string to
1674516cbf37STim Bird	  form the full kernel command line, when the system boots.
1675516cbf37STim Bird
1676516cbf37STim Bird	  However, you can use the CONFIG_CMDLINE_OVERRIDE option to
1677516cbf37STim Bird	  change this behavior.
1678516cbf37STim Bird
1679516cbf37STim Bird	  In most cases, the command line (whether built-in or provided
1680516cbf37STim Bird	  by the boot loader) should specify the device for the root
1681516cbf37STim Bird	  file system.
1682516cbf37STim Bird
1683516cbf37STim Birdconfig CMDLINE_OVERRIDE
1684516cbf37STim Bird	bool "Built-in command line overrides boot loader arguments"
1685516cbf37STim Bird	depends on CMDLINE_BOOL
16868f9ca475SIngo Molnar	---help---
1687516cbf37STim Bird	  Set this option to 'Y' to have the kernel ignore the boot loader
1688516cbf37STim Bird	  command line, and use ONLY the built-in command line.
1689516cbf37STim Bird
1690516cbf37STim Bird	  This is used to work around broken boot loaders.  This should
1691516cbf37STim Bird	  be set to 'N' under normal conditions.
1692516cbf37STim Bird
1693506f1d07SSam Ravnborgendmenu
1694506f1d07SSam Ravnborg
1695506f1d07SSam Ravnborgconfig ARCH_ENABLE_MEMORY_HOTPLUG
1696506f1d07SSam Ravnborg	def_bool y
1697506f1d07SSam Ravnborg	depends on X86_64 || (X86_32 && HIGHMEM)
1698506f1d07SSam Ravnborg
169935551053SGary Hadeconfig ARCH_ENABLE_MEMORY_HOTREMOVE
170035551053SGary Hade	def_bool y
170135551053SGary Hade	depends on MEMORY_HOTPLUG
170235551053SGary Hade
1703506f1d07SSam Ravnborgconfig HAVE_ARCH_EARLY_PFN_TO_NID
1704506f1d07SSam Ravnborg	def_bool X86_64
1705506f1d07SSam Ravnborg	depends on NUMA
1706506f1d07SSam Ravnborg
1707e534c7c5SLee Schermerhornconfig USE_PERCPU_NUMA_NODE_ID
1708e534c7c5SLee Schermerhorn	def_bool X86_64
1709e534c7c5SLee Schermerhorn	depends on NUMA
1710e534c7c5SLee Schermerhorn
1711da85f865SBjorn Helgaasmenu "Power management and ACPI options"
1712e279b6c1SSam Ravnborg
1713e279b6c1SSam Ravnborgconfig ARCH_HIBERNATION_HEADER
17143c2362e6SHarvey Harrison	def_bool y
1715e279b6c1SSam Ravnborg	depends on X86_64 && HIBERNATION
1716e279b6c1SSam Ravnborg
1717e279b6c1SSam Ravnborgsource "kernel/power/Kconfig"
1718e279b6c1SSam Ravnborg
1719e279b6c1SSam Ravnborgsource "drivers/acpi/Kconfig"
1720e279b6c1SSam Ravnborg
1721efafc8b2SFeng Tangsource "drivers/sfi/Kconfig"
1722efafc8b2SFeng Tang
1723a6b68076SAndi Kleenconfig X86_APM_BOOT
17246fc108a0SJan Beulich	def_bool y
1725a6b68076SAndi Kleen	depends on APM || APM_MODULE
1726a6b68076SAndi Kleen
1727e279b6c1SSam Ravnborgmenuconfig APM
1728e279b6c1SSam Ravnborg	tristate "APM (Advanced Power Management) BIOS support"
1729efefa6f6SIngo Molnar	depends on X86_32 && PM_SLEEP
1730e279b6c1SSam Ravnborg	---help---
1731e279b6c1SSam Ravnborg	  APM is a BIOS specification for saving power using several different
1732e279b6c1SSam Ravnborg	  techniques. This is mostly useful for battery powered laptops with
1733e279b6c1SSam Ravnborg	  APM compliant BIOSes. If you say Y here, the system time will be
1734e279b6c1SSam Ravnborg	  reset after a RESUME operation, the /proc/apm device will provide
1735e279b6c1SSam Ravnborg	  battery status information, and user-space programs will receive
1736e279b6c1SSam Ravnborg	  notification of APM "events" (e.g. battery status change).
1737e279b6c1SSam Ravnborg
1738e279b6c1SSam Ravnborg	  If you select "Y" here, you can disable actual use of the APM
1739e279b6c1SSam Ravnborg	  BIOS by passing the "apm=off" option to the kernel at boot time.
1740e279b6c1SSam Ravnborg
1741e279b6c1SSam Ravnborg	  Note that the APM support is almost completely disabled for
1742e279b6c1SSam Ravnborg	  machines with more than one CPU.
1743e279b6c1SSam Ravnborg
1744e279b6c1SSam Ravnborg	  In order to use APM, you will need supporting software. For location
174553471121SRandy Dunlap	  and more information, read <file:Documentation/power/pm.txt> and the
1746e279b6c1SSam Ravnborg	  Battery Powered Linux mini-HOWTO, available from
1747e279b6c1SSam Ravnborg	  <http://www.tldp.org/docs.html#howto>.
1748e279b6c1SSam Ravnborg
1749e279b6c1SSam Ravnborg	  This driver does not spin down disk drives (see the hdparm(8)
1750e279b6c1SSam Ravnborg	  manpage ("man 8 hdparm") for that), and it doesn't turn off
1751e279b6c1SSam Ravnborg	  VESA-compliant "green" monitors.
1752e279b6c1SSam Ravnborg
1753e279b6c1SSam Ravnborg	  This driver does not support the TI 4000M TravelMate and the ACER
1754e279b6c1SSam Ravnborg	  486/DX4/75 because they don't have compliant BIOSes. Many "green"
1755e279b6c1SSam Ravnborg	  desktop machines also don't have compliant BIOSes, and this driver
1756e279b6c1SSam Ravnborg	  may cause those machines to panic during the boot phase.
1757e279b6c1SSam Ravnborg
1758e279b6c1SSam Ravnborg	  Generally, if you don't have a battery in your machine, there isn't
1759e279b6c1SSam Ravnborg	  much point in using this driver and you should say N. If you get
1760e279b6c1SSam Ravnborg	  random kernel OOPSes or reboots that don't seem to be related to
1761e279b6c1SSam Ravnborg	  anything, try disabling/enabling this option (or disabling/enabling
1762e279b6c1SSam Ravnborg	  APM in your BIOS).
1763e279b6c1SSam Ravnborg
1764e279b6c1SSam Ravnborg	  Some other things you should try when experiencing seemingly random,
1765e279b6c1SSam Ravnborg	  "weird" problems:
1766e279b6c1SSam Ravnborg
1767e279b6c1SSam Ravnborg	  1) make sure that you have enough swap space and that it is
1768e279b6c1SSam Ravnborg	  enabled.
1769e279b6c1SSam Ravnborg	  2) pass the "no-hlt" option to the kernel
1770e279b6c1SSam Ravnborg	  3) switch on floating point emulation in the kernel and pass
1771e279b6c1SSam Ravnborg	  the "no387" option to the kernel
1772e279b6c1SSam Ravnborg	  4) pass the "floppy=nodma" option to the kernel
1773e279b6c1SSam Ravnborg	  5) pass the "mem=4M" option to the kernel (thereby disabling
1774e279b6c1SSam Ravnborg	  all but the first 4 MB of RAM)
1775e279b6c1SSam Ravnborg	  6) make sure that the CPU is not over clocked.
1776e279b6c1SSam Ravnborg	  7) read the sig11 FAQ at <http://www.bitwizard.nl/sig11/>
1777e279b6c1SSam Ravnborg	  8) disable the cache from your BIOS settings
1778e279b6c1SSam Ravnborg	  9) install a fan for the video card or exchange video RAM
1779e279b6c1SSam Ravnborg	  10) install a better fan for the CPU
1780e279b6c1SSam Ravnborg	  11) exchange RAM chips
1781e279b6c1SSam Ravnborg	  12) exchange the motherboard.
1782e279b6c1SSam Ravnborg
1783e279b6c1SSam Ravnborg	  To compile this driver as a module, choose M here: the
1784e279b6c1SSam Ravnborg	  module will be called apm.
1785e279b6c1SSam Ravnborg
1786e279b6c1SSam Ravnborgif APM
1787e279b6c1SSam Ravnborg
1788e279b6c1SSam Ravnborgconfig APM_IGNORE_USER_SUSPEND
1789e279b6c1SSam Ravnborg	bool "Ignore USER SUSPEND"
17908f9ca475SIngo Molnar	---help---
1791e279b6c1SSam Ravnborg	  This option will ignore USER SUSPEND requests. On machines with a
1792e279b6c1SSam Ravnborg	  compliant APM BIOS, you want to say N. However, on the NEC Versa M
1793e279b6c1SSam Ravnborg	  series notebooks, it is necessary to say Y because of a BIOS bug.
1794e279b6c1SSam Ravnborg
1795e279b6c1SSam Ravnborgconfig APM_DO_ENABLE
1796e279b6c1SSam Ravnborg	bool "Enable PM at boot time"
1797e279b6c1SSam Ravnborg	---help---
1798e279b6c1SSam Ravnborg	  Enable APM features at boot time. From page 36 of the APM BIOS
1799e279b6c1SSam Ravnborg	  specification: "When disabled, the APM BIOS does not automatically
1800e279b6c1SSam Ravnborg	  power manage devices, enter the Standby State, enter the Suspend
1801e279b6c1SSam Ravnborg	  State, or take power saving steps in response to CPU Idle calls."
1802e279b6c1SSam Ravnborg	  This driver will make CPU Idle calls when Linux is idle (unless this
1803e279b6c1SSam Ravnborg	  feature is turned off -- see "Do CPU IDLE calls", below). This
1804e279b6c1SSam Ravnborg	  should always save battery power, but more complicated APM features
1805e279b6c1SSam Ravnborg	  will be dependent on your BIOS implementation. You may need to turn
1806e279b6c1SSam Ravnborg	  this option off if your computer hangs at boot time when using APM
1807e279b6c1SSam Ravnborg	  support, or if it beeps continuously instead of suspending. Turn
1808e279b6c1SSam Ravnborg	  this off if you have a NEC UltraLite Versa 33/C or a Toshiba
1809e279b6c1SSam Ravnborg	  T400CDT. This is off by default since most machines do fine without
1810e279b6c1SSam Ravnborg	  this feature.
1811e279b6c1SSam Ravnborg
1812e279b6c1SSam Ravnborgconfig APM_CPU_IDLE
1813e279b6c1SSam Ravnborg	bool "Make CPU Idle calls when idle"
18148f9ca475SIngo Molnar	---help---
1815e279b6c1SSam Ravnborg	  Enable calls to APM CPU Idle/CPU Busy inside the kernel's idle loop.
1816e279b6c1SSam Ravnborg	  On some machines, this can activate improved power savings, such as
1817e279b6c1SSam Ravnborg	  a slowed CPU clock rate, when the machine is idle. These idle calls
1818e279b6c1SSam Ravnborg	  are made after the idle loop has run for some length of time (e.g.,
1819e279b6c1SSam Ravnborg	  333 mS). On some machines, this will cause a hang at boot time or
1820e279b6c1SSam Ravnborg	  whenever the CPU becomes idle. (On machines with more than one CPU,
1821e279b6c1SSam Ravnborg	  this option does nothing.)
1822e279b6c1SSam Ravnborg
1823e279b6c1SSam Ravnborgconfig APM_DISPLAY_BLANK
1824e279b6c1SSam Ravnborg	bool "Enable console blanking using APM"
18258f9ca475SIngo Molnar	---help---
1826e279b6c1SSam Ravnborg	  Enable console blanking using the APM. Some laptops can use this to
1827e279b6c1SSam Ravnborg	  turn off the LCD backlight when the screen blanker of the Linux
1828e279b6c1SSam Ravnborg	  virtual console blanks the screen. Note that this is only used by
1829e279b6c1SSam Ravnborg	  the virtual console screen blanker, and won't turn off the backlight
1830e279b6c1SSam Ravnborg	  when using the X Window system. This also doesn't have anything to
1831e279b6c1SSam Ravnborg	  do with your VESA-compliant power-saving monitor. Further, this
1832e279b6c1SSam Ravnborg	  option doesn't work for all laptops -- it might not turn off your
1833e279b6c1SSam Ravnborg	  backlight at all, or it might print a lot of errors to the console,
1834e279b6c1SSam Ravnborg	  especially if you are using gpm.
1835e279b6c1SSam Ravnborg
1836e279b6c1SSam Ravnborgconfig APM_ALLOW_INTS
1837e279b6c1SSam Ravnborg	bool "Allow interrupts during APM BIOS calls"
18388f9ca475SIngo Molnar	---help---
1839e279b6c1SSam Ravnborg	  Normally we disable external interrupts while we are making calls to
1840e279b6c1SSam Ravnborg	  the APM BIOS as a measure to lessen the effects of a badly behaving
1841e279b6c1SSam Ravnborg	  BIOS implementation.  The BIOS should reenable interrupts if it
1842e279b6c1SSam Ravnborg	  needs to.  Unfortunately, some BIOSes do not -- especially those in
1843e279b6c1SSam Ravnborg	  many of the newer IBM Thinkpads.  If you experience hangs when you
1844e279b6c1SSam Ravnborg	  suspend, try setting this to Y.  Otherwise, say N.
1845e279b6c1SSam Ravnborg
1846e279b6c1SSam Ravnborgendif # APM
1847e279b6c1SSam Ravnborg
1848e279b6c1SSam Ravnborgsource "arch/x86/kernel/cpu/cpufreq/Kconfig"
1849e279b6c1SSam Ravnborg
1850e279b6c1SSam Ravnborgsource "drivers/cpuidle/Kconfig"
1851e279b6c1SSam Ravnborg
185227471fdbSAndy Henroidsource "drivers/idle/Kconfig"
185327471fdbSAndy Henroid
1854e279b6c1SSam Ravnborgendmenu
1855e279b6c1SSam Ravnborg
1856e279b6c1SSam Ravnborg
1857e279b6c1SSam Ravnborgmenu "Bus options (PCI etc.)"
1858e279b6c1SSam Ravnborg
1859e279b6c1SSam Ravnborgconfig PCI
18601ac97018SIngo Molnar	bool "PCI support"
18611c858087SAdrian Bunk	default y
1862e279b6c1SSam Ravnborg	select ARCH_SUPPORTS_MSI if (X86_LOCAL_APIC && X86_IO_APIC)
18638f9ca475SIngo Molnar	---help---
1864e279b6c1SSam Ravnborg	  Find out whether you have a PCI motherboard. PCI is the name of a
1865e279b6c1SSam Ravnborg	  bus system, i.e. the way the CPU talks to the other stuff inside
1866e279b6c1SSam Ravnborg	  your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or
1867e279b6c1SSam Ravnborg	  VESA. If you have PCI, say Y, otherwise N.
1868e279b6c1SSam Ravnborg
1869e279b6c1SSam Ravnborgchoice
1870e279b6c1SSam Ravnborg	prompt "PCI access mode"
1871efefa6f6SIngo Molnar	depends on X86_32 && PCI
1872e279b6c1SSam Ravnborg	default PCI_GOANY
1873e279b6c1SSam Ravnborg	---help---
1874e279b6c1SSam Ravnborg	  On PCI systems, the BIOS can be used to detect the PCI devices and
1875e279b6c1SSam Ravnborg	  determine their configuration. However, some old PCI motherboards
1876e279b6c1SSam Ravnborg	  have BIOS bugs and may crash if this is done. Also, some embedded
1877e279b6c1SSam Ravnborg	  PCI-based systems don't have any BIOS at all. Linux can also try to
1878e279b6c1SSam Ravnborg	  detect the PCI hardware directly without using the BIOS.
1879e279b6c1SSam Ravnborg
1880e279b6c1SSam Ravnborg	  With this option, you can specify how Linux should detect the
1881e279b6c1SSam Ravnborg	  PCI devices. If you choose "BIOS", the BIOS will be used,
1882e279b6c1SSam Ravnborg	  if you choose "Direct", the BIOS won't be used, and if you
1883e279b6c1SSam Ravnborg	  choose "MMConfig", then PCI Express MMCONFIG will be used.
1884e279b6c1SSam Ravnborg	  If you choose "Any", the kernel will try MMCONFIG, then the
1885e279b6c1SSam Ravnborg	  direct access method and falls back to the BIOS if that doesn't
1886e279b6c1SSam Ravnborg	  work. If unsure, go with the default, which is "Any".
1887e279b6c1SSam Ravnborg
1888e279b6c1SSam Ravnborgconfig PCI_GOBIOS
1889e279b6c1SSam Ravnborg	bool "BIOS"
1890e279b6c1SSam Ravnborg
1891e279b6c1SSam Ravnborgconfig PCI_GOMMCONFIG
1892e279b6c1SSam Ravnborg	bool "MMConfig"
1893e279b6c1SSam Ravnborg
1894e279b6c1SSam Ravnborgconfig PCI_GODIRECT
1895e279b6c1SSam Ravnborg	bool "Direct"
1896e279b6c1SSam Ravnborg
18973ef0e1f8SAndres Salomonconfig PCI_GOOLPC
189876fb6570SDaniel Drake	bool "OLPC XO-1"
18993ef0e1f8SAndres Salomon	depends on OLPC
19003ef0e1f8SAndres Salomon
19012bdd1b03SAndres Salomonconfig PCI_GOANY
19022bdd1b03SAndres Salomon	bool "Any"
19032bdd1b03SAndres Salomon
1904e279b6c1SSam Ravnborgendchoice
1905e279b6c1SSam Ravnborg
1906e279b6c1SSam Ravnborgconfig PCI_BIOS
19073c2362e6SHarvey Harrison	def_bool y
1908efefa6f6SIngo Molnar	depends on X86_32 && PCI && (PCI_GOBIOS || PCI_GOANY)
1909e279b6c1SSam Ravnborg
1910e279b6c1SSam Ravnborg# x86-64 doesn't support PCI BIOS access from long mode so always go direct.
1911e279b6c1SSam Ravnborgconfig PCI_DIRECT
19123c2362e6SHarvey Harrison	def_bool y
1913efefa6f6SIngo Molnar	depends on PCI && (X86_64 || (PCI_GODIRECT || PCI_GOANY || PCI_GOOLPC))
1914e279b6c1SSam Ravnborg
1915e279b6c1SSam Ravnborgconfig PCI_MMCONFIG
19163c2362e6SHarvey Harrison	def_bool y
19175f0db7a2SFeng Tang	depends on X86_32 && PCI && (ACPI || SFI) && (PCI_GOMMCONFIG || PCI_GOANY)
1918e279b6c1SSam Ravnborg
19193ef0e1f8SAndres Salomonconfig PCI_OLPC
19202bdd1b03SAndres Salomon	def_bool y
19212bdd1b03SAndres Salomon	depends on PCI && OLPC && (PCI_GOOLPC || PCI_GOANY)
19223ef0e1f8SAndres Salomon
1923b5401a96SAlex Nixonconfig PCI_XEN
1924b5401a96SAlex Nixon	def_bool y
1925b5401a96SAlex Nixon	depends on PCI && XEN
1926b5401a96SAlex Nixon	select SWIOTLB_XEN
1927b5401a96SAlex Nixon
1928e279b6c1SSam Ravnborgconfig PCI_DOMAINS
19293c2362e6SHarvey Harrison	def_bool y
1930e279b6c1SSam Ravnborg	depends on PCI
1931e279b6c1SSam Ravnborg
1932e279b6c1SSam Ravnborgconfig PCI_MMCONFIG
1933e279b6c1SSam Ravnborg	bool "Support mmconfig PCI config space access"
1934e279b6c1SSam Ravnborg	depends on X86_64 && PCI && ACPI
1935e279b6c1SSam Ravnborg
19363f6ea84aSIra W. Snyderconfig PCI_CNB20LE_QUIRK
19373f6ea84aSIra W. Snyder	bool "Read CNB20LE Host Bridge Windows"
19383f6ea84aSIra W. Snyder	depends on PCI
19393f6ea84aSIra W. Snyder	help
19403f6ea84aSIra W. Snyder	  Read the PCI windows out of the CNB20LE host bridge. This allows
19413f6ea84aSIra W. Snyder	  PCI hotplug to work on systems with the CNB20LE chipset which do
19423f6ea84aSIra W. Snyder	  not have ACPI.
19433f6ea84aSIra W. Snyder
1944e279b6c1SSam Ravnborgconfig DMAR
1945e279b6c1SSam Ravnborg	bool "Support for DMA Remapping Devices (EXPERIMENTAL)"
19464cf2e75dSDavid Woodhouse	depends on PCI_MSI && ACPI && EXPERIMENTAL
1947e279b6c1SSam Ravnborg	help
1948e279b6c1SSam Ravnborg	  DMA remapping (DMAR) devices support enables independent address
1949e279b6c1SSam Ravnborg	  translations for Direct Memory Access (DMA) from devices.
1950e279b6c1SSam Ravnborg	  These DMA remapping devices are reported via ACPI tables
1951e279b6c1SSam Ravnborg	  and include PCI device scope covered by these DMA
1952e279b6c1SSam Ravnborg	  remapping devices.
1953e279b6c1SSam Ravnborg
19540cd5c3c8SKyle McMartinconfig DMAR_DEFAULT_ON
1955f6be37fdSKyle McMartin	def_bool y
19560cd5c3c8SKyle McMartin	prompt "Enable DMA Remapping Devices by default"
19570cd5c3c8SKyle McMartin	depends on DMAR
19580cd5c3c8SKyle McMartin	help
19590cd5c3c8SKyle McMartin	  Selecting this option will enable a DMAR device at boot time if
19600cd5c3c8SKyle McMartin	  one is found. If this option is not selected, DMAR support can
19610cd5c3c8SKyle McMartin	  be enabled by passing intel_iommu=on to the kernel. It is
19620cd5c3c8SKyle McMartin	  recommended you say N here while the DMAR code remains
19630cd5c3c8SKyle McMartin	  experimental.
19640cd5c3c8SKyle McMartin
196562edf5dcSDavid Woodhouseconfig DMAR_BROKEN_GFX_WA
19666fc108a0SJan Beulich	bool "Workaround broken graphics drivers (going away soon)"
19670c02a20fSDavid Woodhouse	depends on DMAR && BROKEN
196862edf5dcSDavid Woodhouse	---help---
196962edf5dcSDavid Woodhouse	  Current Graphics drivers tend to use physical address
197062edf5dcSDavid Woodhouse	  for DMA and avoid using DMA APIs. Setting this config
197162edf5dcSDavid Woodhouse	  option permits the IOMMU driver to set a unity map for
197262edf5dcSDavid Woodhouse	  all the OS-visible memory. Hence the driver can continue
197362edf5dcSDavid Woodhouse	  to use physical addresses for DMA, at least until this
197462edf5dcSDavid Woodhouse	  option is removed in the 2.6.32 kernel.
197562edf5dcSDavid Woodhouse
1976e279b6c1SSam Ravnborgconfig DMAR_FLOPPY_WA
19773c2362e6SHarvey Harrison	def_bool y
1978e279b6c1SSam Ravnborg	depends on DMAR
19798f9ca475SIngo Molnar	---help---
1980c7ab48d2SDavid Woodhouse	  Floppy disk drivers are known to bypass DMA API calls
1981e279b6c1SSam Ravnborg	  thereby failing to work when IOMMU is enabled. This
1982e279b6c1SSam Ravnborg	  workaround will setup a 1:1 mapping for the first
1983c7ab48d2SDavid Woodhouse	  16MiB to make floppy (an ISA device) work.
1984e279b6c1SSam Ravnborg
19859fa8c481SSuresh Siddhaconfig INTR_REMAP
19869fa8c481SSuresh Siddha	bool "Support for Interrupt Remapping (EXPERIMENTAL)"
19879fa8c481SSuresh Siddha	depends on X86_64 && X86_IO_APIC && PCI_MSI && ACPI && EXPERIMENTAL
19888f9ca475SIngo Molnar	---help---
19899fa8c481SSuresh Siddha	  Supports Interrupt remapping for IO-APIC and MSI devices.
19909fa8c481SSuresh Siddha	  To use x2apic mode in the CPU's which support x2APIC enhancements or
19919fa8c481SSuresh Siddha	  to support platforms with CPU's having > 8 bit APIC ID, say Y.
19929fa8c481SSuresh Siddha
1993e279b6c1SSam Ravnborgsource "drivers/pci/pcie/Kconfig"
1994e279b6c1SSam Ravnborg
1995e279b6c1SSam Ravnborgsource "drivers/pci/Kconfig"
1996e279b6c1SSam Ravnborg
1997e279b6c1SSam Ravnborg# x86_64 have no ISA slots, but do have ISA-style DMA.
1998e279b6c1SSam Ravnborgconfig ISA_DMA_API
19993c2362e6SHarvey Harrison	def_bool y
2000e279b6c1SSam Ravnborg
2001e279b6c1SSam Ravnborgif X86_32
2002e279b6c1SSam Ravnborg
2003e279b6c1SSam Ravnborgconfig ISA
2004e279b6c1SSam Ravnborg	bool "ISA support"
20058f9ca475SIngo Molnar	---help---
2006e279b6c1SSam Ravnborg	  Find out whether you have ISA slots on your motherboard.  ISA is the
2007e279b6c1SSam Ravnborg	  name of a bus system, i.e. the way the CPU talks to the other stuff
2008e279b6c1SSam Ravnborg	  inside your box.  Other bus systems are PCI, EISA, MicroChannel
2009e279b6c1SSam Ravnborg	  (MCA) or VESA.  ISA is an older system, now being displaced by PCI;
2010e279b6c1SSam Ravnborg	  newer boards don't support it.  If you have ISA, say Y, otherwise N.
2011e279b6c1SSam Ravnborg
2012e279b6c1SSam Ravnborgconfig EISA
2013e279b6c1SSam Ravnborg	bool "EISA support"
2014e279b6c1SSam Ravnborg	depends on ISA
2015e279b6c1SSam Ravnborg	---help---
2016e279b6c1SSam Ravnborg	  The Extended Industry Standard Architecture (EISA) bus was
2017e279b6c1SSam Ravnborg	  developed as an open alternative to the IBM MicroChannel bus.
2018e279b6c1SSam Ravnborg
2019e279b6c1SSam Ravnborg	  The EISA bus provided some of the features of the IBM MicroChannel
2020e279b6c1SSam Ravnborg	  bus while maintaining backward compatibility with cards made for
2021e279b6c1SSam Ravnborg	  the older ISA bus.  The EISA bus saw limited use between 1988 and
2022e279b6c1SSam Ravnborg	  1995 when it was made obsolete by the PCI bus.
2023e279b6c1SSam Ravnborg
2024e279b6c1SSam Ravnborg	  Say Y here if you are building a kernel for an EISA-based machine.
2025e279b6c1SSam Ravnborg
2026e279b6c1SSam Ravnborg	  Otherwise, say N.
2027e279b6c1SSam Ravnborg
2028e279b6c1SSam Ravnborgsource "drivers/eisa/Kconfig"
2029e279b6c1SSam Ravnborg
2030e279b6c1SSam Ravnborgconfig MCA
203172ee6ebbSIngo Molnar	bool "MCA support"
20328f9ca475SIngo Molnar	---help---
2033e279b6c1SSam Ravnborg	  MicroChannel Architecture is found in some IBM PS/2 machines and
2034e279b6c1SSam Ravnborg	  laptops.  It is a bus system similar to PCI or ISA. See
2035e279b6c1SSam Ravnborg	  <file:Documentation/mca.txt> (and especially the web page given
2036e279b6c1SSam Ravnborg	  there) before attempting to build an MCA bus kernel.
2037e279b6c1SSam Ravnborg
2038e279b6c1SSam Ravnborgsource "drivers/mca/Kconfig"
2039e279b6c1SSam Ravnborg
2040e279b6c1SSam Ravnborgconfig SCx200
2041e279b6c1SSam Ravnborg	tristate "NatSemi SCx200 support"
20428f9ca475SIngo Molnar	---help---
2043e279b6c1SSam Ravnborg	  This provides basic support for National Semiconductor's
2044e279b6c1SSam Ravnborg	  (now AMD's) Geode processors.  The driver probes for the
2045e279b6c1SSam Ravnborg	  PCI-IDs of several on-chip devices, so its a good dependency
2046e279b6c1SSam Ravnborg	  for other scx200_* drivers.
2047e279b6c1SSam Ravnborg
2048e279b6c1SSam Ravnborg	  If compiled as a module, the driver is named scx200.
2049e279b6c1SSam Ravnborg
2050e279b6c1SSam Ravnborgconfig SCx200HR_TIMER
2051e279b6c1SSam Ravnborg	tristate "NatSemi SCx200 27MHz High-Resolution Timer Support"
2052592913ecSJohn Stultz	depends on SCx200
2053e279b6c1SSam Ravnborg	default y
20548f9ca475SIngo Molnar	---help---
2055e279b6c1SSam Ravnborg	  This driver provides a clocksource built upon the on-chip
2056e279b6c1SSam Ravnborg	  27MHz high-resolution timer.  Its also a workaround for
2057e279b6c1SSam Ravnborg	  NSC Geode SC-1100's buggy TSC, which loses time when the
2058e279b6c1SSam Ravnborg	  processor goes idle (as is done by the scheduler).  The
2059e279b6c1SSam Ravnborg	  other workaround is idle=poll boot option.
2060e279b6c1SSam Ravnborg
20613ef0e1f8SAndres Salomonconfig OLPC
20623ef0e1f8SAndres Salomon	bool "One Laptop Per Child support"
20633c554946SAndres Salomon	select GPIOLIB
20643e3c4860SDaniel Drake	select OLPC_OPENFIRMWARE
20658f9ca475SIngo Molnar	---help---
20663ef0e1f8SAndres Salomon	  Add support for detecting the unique features of the OLPC
20673ef0e1f8SAndres Salomon	  XO hardware.
20683ef0e1f8SAndres Salomon
2069bf1ebf00SDaniel Drakeconfig OLPC_XO1
2070bf1ebf00SDaniel Drake	tristate "OLPC XO-1 support"
20719e9006e9SRandy Dunlap	depends on OLPC && PCI
2072bf1ebf00SDaniel Drake	---help---
2073bf1ebf00SDaniel Drake	  Add support for non-essential features of the OLPC XO-1 laptop.
2074bf1ebf00SDaniel Drake
2075fd699c76SAndres Salomonconfig OLPC_OPENFIRMWARE
2076fd699c76SAndres Salomon	bool "Support for OLPC's Open Firmware"
2077fd699c76SAndres Salomon	depends on !X86_64 && !X86_PAE
20783e3c4860SDaniel Drake	default n
2079fd699c76SAndres Salomon	help
2080fd699c76SAndres Salomon	  This option adds support for the implementation of Open Firmware
2081fd699c76SAndres Salomon	  that is used on the OLPC XO-1 Children's Machine.
2082fd699c76SAndres Salomon	  If unsure, say N here.
2083fd699c76SAndres Salomon
2084bc0120fdSSam Ravnborgendif # X86_32
2085bc0120fdSSam Ravnborg
208623ac4ae8SAndreas Herrmannconfig AMD_NB
2087e279b6c1SSam Ravnborg	def_bool y
20880e152cd7SBorislav Petkov	depends on CPU_SUP_AMD && PCI
2089e279b6c1SSam Ravnborg
2090e279b6c1SSam Ravnborgsource "drivers/pcmcia/Kconfig"
2091e279b6c1SSam Ravnborg
2092e279b6c1SSam Ravnborgsource "drivers/pci/hotplug/Kconfig"
2093e279b6c1SSam Ravnborg
2094e279b6c1SSam Ravnborgendmenu
2095e279b6c1SSam Ravnborg
2096e279b6c1SSam Ravnborg
2097e279b6c1SSam Ravnborgmenu "Executable file formats / Emulations"
2098e279b6c1SSam Ravnborg
2099e279b6c1SSam Ravnborgsource "fs/Kconfig.binfmt"
2100e279b6c1SSam Ravnborg
2101e279b6c1SSam Ravnborgconfig IA32_EMULATION
2102e279b6c1SSam Ravnborg	bool "IA32 Emulation"
2103e279b6c1SSam Ravnborg	depends on X86_64
2104a97f52e6SRoland McGrath	select COMPAT_BINFMT_ELF
21058f9ca475SIngo Molnar	---help---
2106e279b6c1SSam Ravnborg	  Include code to run 32-bit programs under a 64-bit kernel. You should
2107e279b6c1SSam Ravnborg	  likely turn this on, unless you're 100% sure that you don't have any
2108e279b6c1SSam Ravnborg	  32-bit programs left.
2109e279b6c1SSam Ravnborg
2110e279b6c1SSam Ravnborgconfig IA32_AOUT
2111e279b6c1SSam Ravnborg	tristate "IA32 a.out support"
21126b213e1bSDavid Woodhouse	depends on IA32_EMULATION
21138f9ca475SIngo Molnar	---help---
2114e279b6c1SSam Ravnborg	  Support old a.out binaries in the 32bit emulation.
2115e279b6c1SSam Ravnborg
2116e279b6c1SSam Ravnborgconfig COMPAT
21173c2362e6SHarvey Harrison	def_bool y
2118e279b6c1SSam Ravnborg	depends on IA32_EMULATION
2119e279b6c1SSam Ravnborg
2120e279b6c1SSam Ravnborgconfig COMPAT_FOR_U64_ALIGNMENT
2121e279b6c1SSam Ravnborg	def_bool COMPAT
2122e279b6c1SSam Ravnborg	depends on X86_64
2123e279b6c1SSam Ravnborg
2124e279b6c1SSam Ravnborgconfig SYSVIPC_COMPAT
21253c2362e6SHarvey Harrison	def_bool y
2126b8992195SAlexey Dobriyan	depends on COMPAT && SYSVIPC
2127e279b6c1SSam Ravnborg
2128e279b6c1SSam Ravnborgendmenu
2129e279b6c1SSam Ravnborg
2130e279b6c1SSam Ravnborg
2131e5beae16SKeith Packardconfig HAVE_ATOMIC_IOMAP
2132e5beae16SKeith Packard	def_bool y
2133e5beae16SKeith Packard	depends on X86_32
2134e5beae16SKeith Packard
21353cba11d3SMasami Hiramatsuconfig HAVE_TEXT_POKE_SMP
21363cba11d3SMasami Hiramatsu	bool
21373cba11d3SMasami Hiramatsu	select STOP_MACHINE if SMP
21383cba11d3SMasami Hiramatsu
2139e279b6c1SSam Ravnborgsource "net/Kconfig"
2140e279b6c1SSam Ravnborg
2141e279b6c1SSam Ravnborgsource "drivers/Kconfig"
2142e279b6c1SSam Ravnborg
2143e279b6c1SSam Ravnborgsource "drivers/firmware/Kconfig"
2144e279b6c1SSam Ravnborg
2145e279b6c1SSam Ravnborgsource "fs/Kconfig"
2146e279b6c1SSam Ravnborg
2147e279b6c1SSam Ravnborgsource "arch/x86/Kconfig.debug"
2148e279b6c1SSam Ravnborg
2149e279b6c1SSam Ravnborgsource "security/Kconfig"
2150e279b6c1SSam Ravnborg
2151e279b6c1SSam Ravnborgsource "crypto/Kconfig"
2152e279b6c1SSam Ravnborg
2153edf88417SAvi Kivitysource "arch/x86/kvm/Kconfig"
2154edf88417SAvi Kivity
2155e279b6c1SSam Ravnborgsource "lib/Kconfig"
2156