blob: 73c0bda73fcdc02e0ae7756901e5814521115f85 [file] [log] [blame]
Sam Ravnborg1032c0b2007-11-06 21:35:08 +01001# x86 configuration
Sam Ravnborgdaa93fa2007-11-12 20:54:30 +01002mainmenu "Linux Kernel Configuration for x86"
3
4# Select 32 or 64 bit
5config 64BIT
Sam Ravnborg68409992007-11-17 15:37:31 +01006 bool "64-bit kernel" if ARCH = "x86"
7 default ARCH = "x86_64"
Ingo Molnar8f9ca472009-02-05 16:21:53 +01008 ---help---
Sam Ravnborgdaa93fa2007-11-12 20:54:30 +01009 Say yes to build a 64-bit kernel - formerly known as x86_64
10 Say no to build a 32-bit kernel - formerly known as i386
11
12config X86_32
13 def_bool !64BIT
14
15config X86_64
16 def_bool 64BIT
Sam Ravnborg1032c0b2007-11-06 21:35:08 +010017
18### Arch settings
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +010019config X86
Harvey Harrison3c2362e2008-01-30 13:31:03 +010020 def_bool y
David Woodhousee17c6d52008-06-17 12:19:34 +010021 select HAVE_AOUT if X86_32
Hitoshi Mitake2c5643b2008-11-30 17:16:04 +090022 select HAVE_READQ
23 select HAVE_WRITEQ
Ingo Molnara5574cf2008-05-05 23:19:50 +020024 select HAVE_UNSTABLE_SCHED_CLOCK
Sam Ravnborgec7748b2008-02-09 10:46:40 +010025 select HAVE_IDE
Mathieu Desnoyers42d4b832008-02-02 15:10:34 -050026 select HAVE_OPROFILE
Rik van Riel28b2ee22008-07-23 21:27:05 -070027 select HAVE_IOREMAP_PROT
Mathieu Desnoyers3f550092008-02-02 15:10:35 -050028 select HAVE_KPROBES
Ingo Molnar1f972762008-07-26 13:52:50 +020029 select ARCH_WANT_OPTIONAL_GPIOLIB
Ingo Molnarda4276b2009-01-07 11:05:10 +010030 select ARCH_WANT_FRAME_POINTERS
FUJITA Tomonori7c095e42009-06-17 16:28:12 -070031 select HAVE_DMA_ATTRS
Ananth N Mavinakayanahalli9edddaa2008-03-04 14:28:37 -080032 select HAVE_KRETPROBES
Steven Rostedte4b2b882008-08-14 15:45:11 -040033 select HAVE_FTRACE_MCOUNT_RECORD
Steven Rostedt677aa9f2008-05-17 00:01:36 -040034 select HAVE_DYNAMIC_FTRACE
Steven Rostedt606576c2008-10-06 19:06:12 -040035 select HAVE_FUNCTION_TRACER
Frederic Weisbecker48d68b22008-12-02 00:20:39 +010036 select HAVE_FUNCTION_GRAPH_TRACER
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050037 select HAVE_FUNCTION_TRACE_MCOUNT_TEST
Steven Rostedt9a5fd902009-02-06 01:14:26 -050038 select HAVE_FTRACE_NMI_ENTER if DYNAMIC_FTRACE
Frederic Weisbecker1b3fa2ce2009-03-07 05:53:00 +010039 select HAVE_FTRACE_SYSCALLS
Ingo Molnare0ec9482009-01-27 17:01:14 +010040 select HAVE_KVM
Ingo Molnar49793b02009-01-27 17:02:29 +010041 select HAVE_ARCH_KGDB
Roland McGrath99bbc4b2008-04-20 14:35:12 -070042 select HAVE_ARCH_TRACEHOOK
Dmitry Baryshkov323ec002008-06-29 14:19:31 +040043 select HAVE_GENERIC_DMA_COHERENT if X86_32
Johannes Berg58340a02008-07-25 01:45:33 -070044 select HAVE_EFFICIENT_UNALIGNED_ACCESS
Török Edwin8d264872008-11-23 12:39:08 +020045 select USER_STACKTRACE_SUPPORT
Joerg Roedel2118d0c2009-01-09 15:13:15 +010046 select HAVE_DMA_API_DEBUG
H. Peter Anvin2e9f3bd2009-01-04 15:41:25 -080047 select HAVE_KERNEL_GZIP
48 select HAVE_KERNEL_BZIP2
49 select HAVE_KERNEL_LZMA
Pekka Enberg0a4af3b2009-02-26 21:38:56 +020050 select HAVE_ARCH_KMEMCHECK
Balbir Singh7d8330a2008-02-10 12:46:28 +053051
Linus Torvalds51b26ad2009-04-26 10:12:47 -070052config OUTPUT_FORMAT
53 string
54 default "elf32-i386" if X86_32
55 default "elf64-x86-64" if X86_64
56
Sam Ravnborg73531902008-05-25 23:03:18 +020057config ARCH_DEFCONFIG
Sam Ravnborgb9b39bf2008-04-29 12:48:15 +020058 string
Sam Ravnborg73531902008-05-25 23:03:18 +020059 default "arch/x86/configs/i386_defconfig" if X86_32
60 default "arch/x86/configs/x86_64_defconfig" if X86_64
Sam Ravnborgb9b39bf2008-04-29 12:48:15 +020061
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +010062config GENERIC_TIME
Harvey Harrison3c2362e2008-01-30 13:31:03 +010063 def_bool y
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +010064
65config GENERIC_CMOS_UPDATE
Harvey Harrison3c2362e2008-01-30 13:31:03 +010066 def_bool y
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +010067
68config CLOCKSOURCE_WATCHDOG
Harvey Harrison3c2362e2008-01-30 13:31:03 +010069 def_bool y
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +010070
71config GENERIC_CLOCKEVENTS
Harvey Harrison3c2362e2008-01-30 13:31:03 +010072 def_bool y
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +010073
74config GENERIC_CLOCKEVENTS_BROADCAST
Harvey Harrison3c2362e2008-01-30 13:31:03 +010075 def_bool y
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +010076 depends on X86_64 || (X86_32 && X86_LOCAL_APIC)
77
78config LOCKDEP_SUPPORT
Harvey Harrison3c2362e2008-01-30 13:31:03 +010079 def_bool y
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +010080
81config STACKTRACE_SUPPORT
Harvey Harrison3c2362e2008-01-30 13:31:03 +010082 def_bool y
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +010083
Heiko Carstensaa7d9352008-02-01 17:45:14 +010084config HAVE_LATENCYTOP_SUPPORT
85 def_bool y
86
Christoph Lameter1f842602008-01-07 23:20:30 -080087config FAST_CMPXCHG_LOCAL
88 bool
89 default y
90
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +010091config MMU
Harvey Harrison3c2362e2008-01-30 13:31:03 +010092 def_bool y
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +010093
94config ZONE_DMA
Harvey Harrison3c2362e2008-01-30 13:31:03 +010095 def_bool y
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +010096
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +010097config SBUS
98 bool
99
100config GENERIC_ISA_DMA
Harvey Harrison3c2362e2008-01-30 13:31:03 +0100101 def_bool y
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +0100102
103config GENERIC_IOMAP
Harvey Harrison3c2362e2008-01-30 13:31:03 +0100104 def_bool y
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +0100105
106config GENERIC_BUG
Harvey Harrison3c2362e2008-01-30 13:31:03 +0100107 def_bool y
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +0100108 depends on BUG
Jan Beulichb93a5312008-12-16 11:40:27 +0000109 select GENERIC_BUG_RELATIVE_POINTERS if X86_64
110
111config GENERIC_BUG_RELATIVE_POINTERS
112 bool
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +0100113
114config GENERIC_HWEIGHT
Harvey Harrison3c2362e2008-01-30 13:31:03 +0100115 def_bool y
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +0100116
Florian Fainellia6082952008-01-30 13:33:35 +0100117config GENERIC_GPIO
Jan Beulich9ba16082008-10-15 22:01:38 -0700118 bool
Florian Fainellia6082952008-01-30 13:33:35 +0100119
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +0100120config ARCH_MAY_HAVE_PC_FDC
Harvey Harrison3c2362e2008-01-30 13:31:03 +0100121 def_bool y
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +0100122
Sam Ravnborg1032c0b2007-11-06 21:35:08 +0100123config RWSEM_GENERIC_SPINLOCK
124 def_bool !X86_XADD
125
126config RWSEM_XCHGADD_ALGORITHM
127 def_bool X86_XADD
128
Venki Pallipadia6869cc2008-02-08 17:05:44 -0800129config ARCH_HAS_CPU_IDLE_WAIT
130 def_bool y
131
Sam Ravnborg1032c0b2007-11-06 21:35:08 +0100132config GENERIC_CALIBRATE_DELAY
133 def_bool y
134
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +0100135config GENERIC_TIME_VSYSCALL
136 bool
137 default X86_64
138
venkatesh.pallipadi@intel.com9a0b8412008-01-31 17:35:06 -0800139config ARCH_HAS_CPU_RELAX
140 def_bool y
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +0100141
Venkatesh Pallipadi89cedfe2008-10-16 19:00:08 -0400142config ARCH_HAS_DEFAULT_IDLE
143 def_bool y
144
Pekka Enberg1b27d052008-04-28 02:12:22 -0700145config ARCH_HAS_CACHE_LINE_SIZE
146 def_bool y
147
Mike Travisdd5af902008-01-30 13:33:32 +0100148config HAVE_SETUP_PER_CPU_AREA
Brian Gerst89c9c4c2009-01-27 12:56:48 +0900149 def_bool y
travis@sgi.comb32ef632008-01-30 13:32:51 +0100150
Tejun Heo11124412009-02-20 16:29:09 +0900151config HAVE_DYNAMIC_PER_CPU_AREA
152 def_bool y
153
Mike Travis9f0e8d02008-04-04 18:11:01 -0700154config HAVE_CPUMASK_OF_CPU_MAP
155 def_bool X86_64_SMP
156
Johannes Berg801e4062007-12-08 02:12:39 +0100157config ARCH_HIBERNATION_POSSIBLE
158 def_bool y
Johannes Berg801e4062007-12-08 02:12:39 +0100159
Johannes Bergf4cb5702007-12-08 02:14:00 +0100160config ARCH_SUSPEND_POSSIBLE
161 def_bool y
Johannes Bergf4cb5702007-12-08 02:14:00 +0100162
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +0100163config ZONE_DMA32
164 bool
165 default X86_64
166
167config ARCH_POPULATES_NODE_MAP
168 def_bool y
169
170config AUDIT_ARCH
171 bool
172 default X86_64
173
Ingo Molnar765c68b2008-04-09 11:03:37 +0200174config ARCH_SUPPORTS_OPTIMIZED_INLINING
175 def_bool y
176
Akinobu Mita6a11f752009-03-31 15:23:17 -0700177config ARCH_SUPPORTS_DEBUG_PAGEALLOC
178 def_bool y
179
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +0100180# Use the generic interrupt handling code in kernel/irq/:
181config GENERIC_HARDIRQS
182 bool
183 default y
184
Thomas Gleixnerf9a36fa2009-03-13 16:37:48 +0100185config GENERIC_HARDIRQS_NO__DO_IRQ
186 def_bool y
187
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +0100188config GENERIC_IRQ_PROBE
189 bool
190 default y
191
192config GENERIC_PENDING_IRQ
193 bool
194 depends on GENERIC_HARDIRQS && SMP
195 default y
196
James Bottomley6cd10f82008-11-09 11:53:14 -0600197config USE_GENERIC_SMP_HELPERS
198 def_bool y
199 depends on SMP
200
Sam Ravnborg6b0c3d42008-01-30 13:32:27 +0100201config X86_32_SMP
202 def_bool y
203 depends on X86_32 && SMP
204
205config X86_64_SMP
206 def_bool y
207 depends on X86_64 && SMP
208
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +0100209config X86_HT
210 bool
Adrian Bunkee0011a2007-12-04 17:19:07 +0100211 depends on SMP
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +0100212 default y
213
214config X86_TRAMPOLINE
215 bool
Ingo Molnar3e5095d2009-01-27 17:07:08 +0100216 depends on SMP || (64BIT && ACPI_SLEEP)
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +0100217 default y
218
Tejun Heoccbeed32009-02-09 22:17:40 +0900219config X86_32_LAZY_GS
220 def_bool y
Tejun Heo60a53172009-02-09 22:17:40 +0900221 depends on X86_32 && !CC_STACKPROTECTOR
Tejun Heoccbeed32009-02-09 22:17:40 +0900222
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +0100223config KTIME_SCALAR
224 def_bool X86_32
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100225source "init/Kconfig"
Matt Helsleydc52ddc2008-10-18 20:27:21 -0700226source "kernel/Kconfig.freezer"
Sam Ravnborg8d5fffb2007-11-06 23:30:30 +0100227
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100228menu "Processor type and features"
229
230source "kernel/time/Kconfig"
231
232config SMP
233 bool "Symmetric multi-processing support"
234 ---help---
235 This enables support for systems with more than one CPU. If you have
236 a system with only one CPU, like most personal computers, say N. If
237 you have a system with more than one CPU, say Y.
238
239 If you say N here, the kernel will run on single and multiprocessor
240 machines, but will use only one CPU of a multiprocessor machine. If
241 you say Y here, the kernel will run on many, but not all,
242 singleprocessor machines. On a singleprocessor machine, the kernel
243 will run faster if you say N here.
244
245 Note that if you say Y here and choose architecture "586" or
246 "Pentium" under "Processor family", the kernel will not work on 486
247 architectures. Similarly, multiprocessor kernels for the "PPro"
248 architecture may not work on all Pentium based boards.
249
250 People using multiprocessor machines who say Y here should also say
251 Y to "Enhanced Real Time Clock Support", below. The "Advanced Power
252 Management" code will be disabled if you say Y here.
253
Adrian Bunk03502fa2008-02-03 15:50:21 +0200254 See also <file:Documentation/i386/IO-APIC.txt>,
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100255 <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available at
256 <http://www.tldp.org/docs.html#howto>.
257
258 If you don't know what to do here, say N.
259
Yinghai Lu06cd9a72009-02-16 17:29:58 -0800260config X86_X2APIC
261 bool "Support x2apic"
David Woodhousef7d7f862009-04-06 23:04:40 -0700262 depends on X86_LOCAL_APIC && X86_64 && INTR_REMAP
Yinghai Lu06cd9a72009-02-16 17:29:58 -0800263 ---help---
264 This enables x2apic support on CPUs that have this feature.
265
266 This allows 32-bit apic IDs (so it can support very large systems),
267 and accesses the local apic via MSRs not via mmio.
268
Yinghai Lu06cd9a72009-02-16 17:29:58 -0800269 If you don't know what to do here, say N.
270
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800271config SPARSE_IRQ
272 bool "Support sparse irq numbering"
Yinghai Lu17483a12008-12-12 13:14:18 -0800273 depends on PCI_MSI || HT_IRQ
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100274 ---help---
Ingo Molnar973656f2008-12-25 16:26:47 +0100275 This enables support for sparse irqs. This is useful for distro
276 kernels that want to define a high CONFIG_NR_CPUS value but still
277 want to have low kernel memory footprint on smaller machines.
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800278
Ingo Molnar973656f2008-12-25 16:26:47 +0100279 ( Sparse IRQs can also be beneficial on NUMA boxes, as they spread
280 out the irq_desc[] array in a more NUMA-friendly way. )
281
282 If you don't know what to do here, say N.
Yinghai Lu0b8f1ef2008-12-05 18:58:31 -0800283
Yinghai Lu15e957d2009-04-30 01:17:50 -0700284config NUMA_IRQ_DESC
285 def_bool y
Yinghai Lub9098952008-12-19 13:48:34 -0800286 depends on SPARSE_IRQ && NUMA
Yinghai Lu48a1b102008-12-11 00:15:01 -0800287
Yinghai Lu6695c852008-06-19 12:13:09 -0700288config X86_MPPARSE
Jan Beulich7a527682008-10-30 10:38:24 +0000289 bool "Enable MPS table" if ACPI
290 default y
Ingo Molnar5ab74722008-07-10 14:42:03 +0200291 depends on X86_LOCAL_APIC
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100292 ---help---
Yinghai Lu6695c852008-06-19 12:13:09 -0700293 For old smp systems that do not have proper acpi support. Newer systems
294 (esp with 64bit cpus) with acpi support, MADT and DSDT will override it
Yinghai Lu6695c852008-06-19 12:13:09 -0700295
Yinghai Lu26f7ef12009-01-29 14:19:22 -0800296config X86_BIGSMP
297 bool "Support for big SMP systems with more than 8 CPUs"
298 depends on X86_32 && SMP
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100299 ---help---
Yinghai Lu26f7ef12009-01-29 14:19:22 -0800300 This option is needed for the systems that have more than 8 CPUs
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100301
Ravikiran G Thirumalai84250912009-02-20 16:59:11 -0800302if X86_32
Ravikiran G Thirumalaic5c606d2009-02-09 18:18:14 -0800303config X86_EXTENDED_PLATFORM
304 bool "Support for extended (non-PC) x86 platforms"
305 default y
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100306 ---help---
Ingo Molnar06ac8342009-01-27 18:11:43 +0100307 If you disable this option then the kernel will only support
308 standard PC platforms. (which covers the vast majority of
309 systems out there.)
310
Ravikiran G Thirumalai84250912009-02-20 16:59:11 -0800311 If you enable this option then you'll be able to select support
312 for the following (non-PC) 32 bit x86 platforms:
313 AMD Elan
314 NUMAQ (IBM/Sequent)
315 RDC R-321x SoC
316 SGI 320/540 (Visual Workstation)
317 Summit/EXA (IBM x440)
318 Unisys ES7000 IA32 series
Ingo Molnar06ac8342009-01-27 18:11:43 +0100319
320 If you have one of these systems, or if you want to build a
321 generic distribution kernel, say Y here - otherwise say N.
Ravikiran G Thirumalai84250912009-02-20 16:59:11 -0800322endif
Ingo Molnar06ac8342009-01-27 18:11:43 +0100323
Ravikiran G Thirumalai84250912009-02-20 16:59:11 -0800324if X86_64
325config X86_EXTENDED_PLATFORM
326 bool "Support for extended (non-PC) x86 platforms"
327 default y
328 ---help---
329 If you disable this option then the kernel will only support
330 standard PC platforms. (which covers the vast majority of
331 systems out there.)
332
333 If you enable this option then you'll be able to select support
334 for the following (non-PC) 64 bit x86 platforms:
335 ScaleMP vSMP
336 SGI Ultraviolet
337
338 If you have one of these systems, or if you want to build a
339 generic distribution kernel, say Y here - otherwise say N.
340endif
Ravikiran G Thirumalaic5c606d2009-02-09 18:18:14 -0800341# This is an alphabetically sorted list of 64 bit extended platforms
342# Please maintain the alphabetic order if and when there are additions
Nick Piggin03b48632009-01-20 04:36:04 +0100343
Ingo Molnar6a485652009-01-27 18:29:13 +0100344config X86_VSMP
Ravikiran G Thirumalaic5c606d2009-02-09 18:18:14 -0800345 bool "ScaleMP vSMP"
Ingo Molnar6a485652009-01-27 18:29:13 +0100346 select PARAVIRT
347 depends on X86_64 && PCI
Ravikiran G Thirumalaic5c606d2009-02-09 18:18:14 -0800348 depends on X86_EXTENDED_PLATFORM
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100349 ---help---
Ingo Molnar6a485652009-01-27 18:29:13 +0100350 Support for ScaleMP vSMP systems. Say 'Y' here if this kernel is
351 supposed to run on these EM64T-based machines. Only choose this option
352 if you have one of these machines.
353
Ravikiran G Thirumalaic5c606d2009-02-09 18:18:14 -0800354config X86_UV
355 bool "SGI Ultraviolet"
356 depends on X86_64
357 depends on X86_EXTENDED_PLATFORM
Jack Steiner54c28d22009-04-03 15:39:42 -0500358 depends on NUMA
Suresh Siddha9d6c26e2009-04-20 13:02:31 -0700359 depends on X86_X2APIC
Ravikiran G Thirumalaic5c606d2009-02-09 18:18:14 -0800360 ---help---
361 This option is needed in order to support SGI Ultraviolet systems.
362 If you don't have one of these, you should say N here.
363
364# Following is an alphabetically sorted list of 32 bit extended platforms
365# Please maintain the alphabetic order if and when there are additions
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100366
367config X86_ELAN
368 bool "AMD Elan"
369 depends on X86_32
Ravikiran G Thirumalaic5c606d2009-02-09 18:18:14 -0800370 depends on X86_EXTENDED_PLATFORM
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100371 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100372 Select this for an AMD Elan processor.
373
374 Do not use this option for K6/Athlon/Opteron processors!
375
376 If unsure, choose "PC-compatible" instead.
377
Ravikiran G Thirumalaic5c606d2009-02-09 18:18:14 -0800378config X86_RDC321X
379 bool "RDC R-321x SoC"
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100380 depends on X86_32
Ravikiran G Thirumalaic5c606d2009-02-09 18:18:14 -0800381 depends on X86_EXTENDED_PLATFORM
382 select M486
383 select X86_REBOOTFIXUPS
384 ---help---
385 This option is needed for RDC R-321x system-on-chip, also known
386 as R-8610-(G).
387 If you don't have one of these chips, you should say N here.
388
Ingo Molnare0c7ae32009-01-27 18:43:09 +0100389config X86_32_NON_STANDARD
Ingo Molnar9c398012009-01-27 18:24:57 +0100390 bool "Support non-standard 32-bit SMP architectures"
391 depends on X86_32 && SMP
Ravikiran G Thirumalaic5c606d2009-02-09 18:18:14 -0800392 depends on X86_EXTENDED_PLATFORM
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100393 ---help---
394 This option compiles in the NUMAQ, Summit, bigsmp, ES7000, default
Yinghai Lud49c4282008-06-08 18:31:54 -0700395 subarchitectures. It is intended for a generic binary kernel.
396 if you select them all, kernel will probe it one by one. and will
397 fallback to default.
398
Ravikiran G Thirumalaic5c606d2009-02-09 18:18:14 -0800399# Alphabetically sorted list of Non standard 32 bit platforms
Yinghai Lud49c4282008-06-08 18:31:54 -0700400
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100401config X86_NUMAQ
402 bool "NUMAQ (IBM/Sequent)"
Ingo Molnare0c7ae32009-01-27 18:43:09 +0100403 depends on X86_32_NON_STANDARD
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100404 select NUMA
Ingo Molnar9c398012009-01-27 18:24:57 +0100405 select X86_MPPARSE
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100406 ---help---
Yinghai Lud49c4282008-06-08 18:31:54 -0700407 This option is used for getting Linux to run on a NUMAQ (IBM/Sequent)
408 NUMA multiquad box. This changes the way that processors are
409 bootstrapped, and uses Clustered Logical APIC addressing mode instead
410 of Flat Logical. You will need a new lynxer.elf file to flash your
411 firmware with - send email to <Martin.Bligh@us.ibm.com>.
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100412
Ingo Molnar1b84e1c2008-07-10 15:55:27 +0200413config X86_VISWS
414 bool "SGI 320/540 (Visual Workstation)"
Ravikiran G Thirumalaic5c606d2009-02-09 18:18:14 -0800415 depends on X86_32 && PCI && X86_MPPARSE && PCI_GODIRECT
416 depends on X86_32_NON_STANDARD
417 ---help---
Ingo Molnar1b84e1c2008-07-10 15:55:27 +0200418 The SGI Visual Workstation series is an IA32-based workstation
419 based on SGI systems chips with some legacy PC hardware attached.
420
421 Say Y here to create a kernel to run on the SGI 320 or 540.
422
423 A kernel compiled for the Visual Workstation will run on general
424 PCs as well. See <file:Documentation/sgi-visws.txt> for details.
425
Ingo Molnar9c398012009-01-27 18:24:57 +0100426config X86_SUMMIT
427 bool "Summit/EXA (IBM x440)"
Ingo Molnare0c7ae32009-01-27 18:43:09 +0100428 depends on X86_32_NON_STANDARD
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100429 ---help---
Ingo Molnar9c398012009-01-27 18:24:57 +0100430 This option is needed for IBM systems that use the Summit/EXA chipset.
431 In particular, it is needed for the x440.
Ingo Molnar1f972762008-07-26 13:52:50 +0200432
Ingo Molnar9c398012009-01-27 18:24:57 +0100433config X86_ES7000
Ravikiran G Thirumalaic5c606d2009-02-09 18:18:14 -0800434 bool "Unisys ES7000 IA32 series"
Yinghai Lu26f7ef12009-01-29 14:19:22 -0800435 depends on X86_32_NON_STANDARD && X86_BIGSMP
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100436 ---help---
Ingo Molnar9c398012009-01-27 18:24:57 +0100437 Support for Unisys ES7000 systems. Say 'Y' here if this kernel is
438 supposed to run on an IA32-based Unisys ES7000 system.
439
Ingo Molnarae1e9132008-11-11 09:05:16 +0100440config SCHED_OMIT_FRAME_POINTER
Harvey Harrison3c2362e2008-01-30 13:31:03 +0100441 def_bool y
442 prompt "Single-depth WCHAN output"
Ken Chena87d0912008-11-06 11:10:49 -0800443 depends on X86
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100444 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100445 Calculate simpler /proc/<PID>/wchan values. If this option
446 is disabled then wchan values will recurse back to the
447 caller function. This provides more accurate wchan values,
448 at the expense of slightly more scheduling overhead.
449
450 If in doubt, say "Y".
451
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100452menuconfig PARAVIRT_GUEST
453 bool "Paravirtualized guest support"
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100454 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100455 Say Y here to get to see options related to running Linux under
456 various hypervisors. This option alone does not add any kernel code.
457
458 If you say N, all options in this submenu will be skipped and disabled.
459
460if PARAVIRT_GUEST
461
462source "arch/x86/xen/Kconfig"
463
464config VMI
465 bool "VMI Guest support"
466 select PARAVIRT
Eduardo Pereira Habkost42d545c2008-01-30 13:33:32 +0100467 depends on X86_32
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100468 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100469 VMI provides a paravirtualized interface to the VMware ESX server
470 (it could be used by other hypervisors in theory too, but is not
471 at the moment), by linking the kernel to a GPL-ed ROM module
472 provided by the hypervisor.
473
Glauber de Oliveira Costa790c73f2008-02-15 17:52:48 -0200474config KVM_CLOCK
475 bool "KVM paravirtualized clock"
476 select PARAVIRT
Gerd Hoffmannf6e16d52008-06-03 16:17:32 +0200477 select PARAVIRT_CLOCK
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100478 ---help---
Glauber de Oliveira Costa790c73f2008-02-15 17:52:48 -0200479 Turning on this option will allow you to run a paravirtualized clock
480 when running over the KVM hypervisor. Instead of relying on a PIT
481 (or probably other) emulation by the underlying device model, the host
482 provides the guest with timing infrastructure such as time of day, and
483 system time
484
Marcelo Tosatti0cf1bfd2008-02-22 12:21:36 -0500485config KVM_GUEST
486 bool "KVM Guest support"
487 select PARAVIRT
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100488 ---help---
489 This option enables various optimizations for running under the KVM
490 hypervisor.
Marcelo Tosatti0cf1bfd2008-02-22 12:21:36 -0500491
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100492source "arch/x86/lguest/Kconfig"
493
Eduardo Pereira Habkoste61bd942008-01-30 13:33:32 +0100494config PARAVIRT
495 bool "Enable paravirtualization code"
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100496 ---help---
Eduardo Pereira Habkoste61bd942008-01-30 13:33:32 +0100497 This changes the kernel so it can modify itself when it is run
498 under a hypervisor, potentially improving performance significantly
499 over full virtualization. However, when run without a hypervisor
500 the kernel is theoretically slower and slightly larger.
501
Jeremy Fitzhardingeb4ecc122009-05-13 17:16:55 -0700502config PARAVIRT_SPINLOCKS
503 bool "Paravirtualization layer for spinlocks"
504 depends on PARAVIRT && SMP && EXPERIMENTAL
505 ---help---
506 Paravirtualized spinlocks allow a pvops backend to replace the
507 spinlock implementation with something virtualization-friendly
508 (for example, block the virtual CPU rather than spinning).
509
510 Unfortunately the downside is an up to 5% performance hit on
511 native kernels, with various workloads.
512
513 If you are unsure how to answer this question, answer N.
514
Gerd Hoffmann7af192c2008-06-03 16:17:29 +0200515config PARAVIRT_CLOCK
516 bool
517 default n
518
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100519endif
520
Jeremy Fitzhardinge97349132008-06-25 00:19:14 -0400521config PARAVIRT_DEBUG
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100522 bool "paravirt-ops debugging"
523 depends on PARAVIRT && DEBUG_KERNEL
524 ---help---
525 Enable to debug paravirt_ops internals. Specifically, BUG if
526 a paravirt_op is missing when it is called.
Jeremy Fitzhardinge97349132008-06-25 00:19:14 -0400527
Yinghai Lu03273182008-04-18 17:49:15 -0700528config MEMTEST
529 bool "Memtest"
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100530 ---help---
Yinghai Luc64df702008-03-21 18:56:19 -0700531 This option adds a kernel parameter 'memtest', which allows memtest
Yinghai Lu03273182008-04-18 17:49:15 -0700532 to be set.
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100533 memtest=0, mean disabled; -- default
534 memtest=1, mean do 1 test pattern;
535 ...
536 memtest=4, mean do 4 test patterns.
Thomas Gleixneraba37282008-07-15 14:48:48 +0200537 If you are unsure how to answer this question, answer N.
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100538
539config X86_SUMMIT_NUMA
Harvey Harrison3c2362e2008-01-30 13:31:03 +0100540 def_bool y
Ingo Molnare0c7ae32009-01-27 18:43:09 +0100541 depends on X86_32 && NUMA && X86_32_NON_STANDARD
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100542
543config X86_CYCLONE_TIMER
Harvey Harrison3c2362e2008-01-30 13:31:03 +0100544 def_bool y
Ingo Molnare0c7ae32009-01-27 18:43:09 +0100545 depends on X86_32_NON_STANDARD
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100546
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100547source "arch/x86/Kconfig.cpu"
548
549config HPET_TIMER
Harvey Harrison3c2362e2008-01-30 13:31:03 +0100550 def_bool X86_64
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100551 prompt "HPET Timer Support" if X86_32
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100552 ---help---
553 Use the IA-PC HPET (High Precision Event Timer) to manage
554 time in preference to the PIT and RTC, if a HPET is
555 present.
556 HPET is the next generation timer replacing legacy 8254s.
557 The HPET provides a stable time base on SMP
558 systems, unlike the TSC, but it is more expensive to access,
559 as it is off-chip. You can find the HPET spec at
560 <http://www.intel.com/hardwaredesign/hpetspec_1.pdf>.
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100561
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100562 You can safely choose Y here. However, HPET will only be
563 activated if the platform and the BIOS support this feature.
564 Otherwise the 8254 will be used for timing services.
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100565
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100566 Choose N to continue using the legacy 8254 timer.
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100567
568config HPET_EMULATE_RTC
Harvey Harrison3c2362e2008-01-30 13:31:03 +0100569 def_bool y
Bernhard Walle9d8af782008-02-06 01:38:52 -0800570 depends on HPET_TIMER && (RTC=y || RTC=m || RTC_DRV_CMOS=m || RTC_DRV_CMOS=y)
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100571
572# Mark as embedded because too many people got it wrong.
573# The code disables itself when not needed.
Thomas Petazzoni7ae93922008-04-28 02:14:14 -0700574config DMI
575 default y
576 bool "Enable DMI scanning" if EMBEDDED
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100577 ---help---
Thomas Petazzoni7ae93922008-04-28 02:14:14 -0700578 Enabled scanning of DMI to identify machine quirks. Say Y
579 here unless you have verified that your setup is not
580 affected by entries in the DMI blacklist. Required by PNP
581 BIOS code.
582
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100583config GART_IOMMU
584 bool "GART IOMMU support" if EMBEDDED
585 default y
586 select SWIOTLB
587 select AGP
588 depends on X86_64 && PCI
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100589 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100590 Support for full DMA access of devices with 32bit memory access only
591 on systems with more than 3GB. This is usually needed for USB,
592 sound, many IDE/SATA chipsets and some other devices.
593 Provides a driver for the AMD Athlon64/Opteron/Turion/Sempron GART
594 based hardware IOMMU and a software bounce buffer based IOMMU used
595 on Intel systems and as fallback.
596 The code is only active when needed (enough memory and limited
597 device) unless CONFIG_IOMMU_DEBUG or iommu=force is specified
598 too.
599
600config CALGARY_IOMMU
601 bool "IBM Calgary IOMMU support"
602 select SWIOTLB
603 depends on X86_64 && PCI && EXPERIMENTAL
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100604 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100605 Support for hardware IOMMUs in IBM's xSeries x366 and x460
606 systems. Needed to run systems with more than 3GB of memory
607 properly with 32-bit PCI devices that do not support DAC
608 (Double Address Cycle). Calgary also supports bus level
609 isolation, where all DMAs pass through the IOMMU. This
610 prevents them from going anywhere except their intended
611 destination. This catches hard-to-find kernel bugs and
612 mis-behaving drivers and devices that do not use the DMA-API
613 properly to set up their DMA buffers. The IOMMU can be
614 turned off at boot time with the iommu=off parameter.
615 Normally the kernel will make the right choice by itself.
616 If unsure, say Y.
617
618config CALGARY_IOMMU_ENABLED_BY_DEFAULT
Harvey Harrison3c2362e2008-01-30 13:31:03 +0100619 def_bool y
620 prompt "Should Calgary be enabled by default?"
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100621 depends on CALGARY_IOMMU
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100622 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100623 Should Calgary be enabled by default? if you choose 'y', Calgary
624 will be used (if it exists). If you choose 'n', Calgary will not be
625 used even if it exists. If you choose 'n' and would like to use
626 Calgary anyway, pass 'iommu=calgary' on the kernel command line.
627 If unsure, say Y.
628
Joerg Roedel2b188722008-06-26 21:27:37 +0200629config AMD_IOMMU
630 bool "AMD IOMMU support"
Ingo Molnar07c40e82008-06-27 11:31:28 +0200631 select SWIOTLB
Joerg Roedela80dc3e2008-09-11 16:51:41 +0200632 select PCI_MSI
Ingo Molnar24d2ba02008-06-27 10:37:03 +0200633 depends on X86_64 && PCI && ACPI
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100634 ---help---
Joerg Roedel18d22202008-07-03 19:35:06 +0200635 With this option you can enable support for AMD IOMMU hardware in
636 your system. An IOMMU is a hardware component which provides
637 remapping of DMA memory accesses from devices. With an AMD IOMMU you
638 can isolate the the DMA memory of different devices and protect the
639 system from misbehaving device drivers or hardware.
640
641 You can find out if your system has an AMD IOMMU if you look into
642 your BIOS for an option to enable it or if you have an IVRS ACPI
643 table.
Joerg Roedel2b188722008-06-26 21:27:37 +0200644
Joerg Roedel2e117602008-12-11 19:00:12 +0100645config AMD_IOMMU_STATS
646 bool "Export AMD IOMMU statistics to debugfs"
647 depends on AMD_IOMMU
648 select DEBUG_FS
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100649 ---help---
Joerg Roedel2e117602008-12-11 19:00:12 +0100650 This option enables code in the AMD IOMMU driver to collect various
651 statistics about whats happening in the driver and exports that
652 information to userspace via debugfs.
653 If unsure, say N.
654
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100655# need this always selected by IOMMU for the VIA workaround
656config SWIOTLB
Joerg Roedela1afd012008-11-18 12:44:21 +0100657 def_bool y if X86_64
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100658 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100659 Support for software bounce buffers used on x86-64 systems
660 which don't have a hardware IOMMU (e.g. the current generation
661 of Intel's x86-64 CPUs). Using this PCI devices which can only
662 access 32-bits of memory can be used on systems with more than
663 3 GB of memory. If unsure, say Y.
664
FUJITA Tomonoria8522502008-04-29 00:59:36 -0700665config IOMMU_HELPER
FUJITA Tomonori18b743d2008-07-10 09:50:50 +0900666 def_bool (CALGARY_IOMMU || GART_IOMMU || SWIOTLB || AMD_IOMMU)
Linus Torvaldsd25e26b2008-08-25 14:15:38 -0700667
Joerg Roedel1aaf1182008-11-26 17:25:13 +0100668config IOMMU_API
669 def_bool (AMD_IOMMU || DMAR)
670
Mike Travis1184dc22008-05-12 21:21:12 +0200671config MAXSMP
672 bool "Configure Maximum number of SMP Processors and NUMA Nodes"
Mike Travis36f51012008-12-16 17:33:51 -0800673 depends on X86_64 && SMP && DEBUG_KERNEL && EXPERIMENTAL
674 select CPUMASK_OFFSTACK
Mike Travis1184dc22008-05-12 21:21:12 +0200675 default n
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100676 ---help---
Mike Travis1184dc22008-05-12 21:21:12 +0200677 Configure maximum number of CPUS and NUMA Nodes for this architecture.
678 If unsure, say N.
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100679
680config NR_CPUS
Mike Travis36f51012008-12-16 17:33:51 -0800681 int "Maximum number of CPUs" if SMP && !MAXSMP
Michael K. Johnson2a3313f2009-04-21 21:44:48 -0400682 range 2 8 if SMP && X86_32 && !X86_BIGSMP
Mike Travis36f51012008-12-16 17:33:51 -0800683 range 2 512 if SMP && !MAXSMP
Mike Travis78637a972008-12-16 17:34:00 -0800684 default "1" if !SMP
Linus Torvaldsd25e26b2008-08-25 14:15:38 -0700685 default "4096" if MAXSMP
Mike Travis78637a972008-12-16 17:34:00 -0800686 default "32" if SMP && (X86_NUMAQ || X86_SUMMIT || X86_BIGSMP || X86_ES7000)
687 default "8" if SMP
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100688 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100689 This allows you to specify the maximum number of CPUs which this
Linus Torvaldsd25e26b2008-08-25 14:15:38 -0700690 kernel will support. The maximum supported value is 512 and the
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100691 minimum value which makes sense is 2.
692
693 This is purely to save memory - each supported CPU adds
694 approximately eight kilobytes to the kernel image.
695
696config SCHED_SMT
697 bool "SMT (Hyperthreading) scheduler support"
Hiroshi Shimamotob089c122008-02-27 13:16:30 -0800698 depends on X86_HT
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100699 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100700 SMT scheduler support improves the CPU scheduler's decision making
701 when dealing with Intel Pentium 4 chips with HyperThreading at a
702 cost of slightly increased overhead in some places. If unsure say
703 N here.
704
705config SCHED_MC
Harvey Harrison3c2362e2008-01-30 13:31:03 +0100706 def_bool y
707 prompt "Multi-core scheduler support"
Hiroshi Shimamotob089c122008-02-27 13:16:30 -0800708 depends on X86_HT
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100709 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100710 Multi-core scheduler support improves the CPU scheduler's decision
711 making when dealing with multi-core CPU chips at a cost of slightly
712 increased overhead in some places. If unsure say N here.
713
714source "kernel/Kconfig.preempt"
715
716config X86_UP_APIC
717 bool "Local APIC support on uniprocessors"
Ingo Molnare0c7ae32009-01-27 18:43:09 +0100718 depends on X86_32 && !SMP && !X86_32_NON_STANDARD
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100719 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100720 A local APIC (Advanced Programmable Interrupt Controller) is an
721 integrated interrupt controller in the CPU. If you have a single-CPU
722 system which has a processor with a local APIC, you can say Y here to
723 enable and use it. If you say Y here even though your machine doesn't
724 have a local APIC, then the kernel will still run with no slowdown at
725 all. The local APIC supports CPU-generated self-interrupts (timer,
726 performance counters), and the NMI watchdog which detects hard
727 lockups.
728
729config X86_UP_IOAPIC
730 bool "IO-APIC support on uniprocessors"
731 depends on X86_UP_APIC
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100732 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100733 An IO-APIC (I/O Advanced Programmable Interrupt Controller) is an
734 SMP-capable replacement for PC-style interrupt controllers. Most
735 SMP systems and many recent uniprocessor systems have one.
736
737 If you have a single-CPU system with an IO-APIC, you can say Y here
738 to use it. If you say Y here even though your machine doesn't have
739 an IO-APIC, then the kernel will still run with no slowdown at all.
740
741config X86_LOCAL_APIC
Harvey Harrison3c2362e2008-01-30 13:31:03 +0100742 def_bool y
Ingo Molnare0c7ae32009-01-27 18:43:09 +0100743 depends on X86_64 || SMP || X86_32_NON_STANDARD || X86_UP_APIC
Ingo Molnaree060942008-12-13 09:00:03 +0100744 select HAVE_PERF_COUNTERS if (!M386 && !M486)
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100745
746config X86_IO_APIC
Harvey Harrison3c2362e2008-01-30 13:31:03 +0100747 def_bool y
Ingo Molnare0c7ae32009-01-27 18:43:09 +0100748 depends on X86_64 || SMP || X86_32_NON_STANDARD || X86_UP_APIC
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100749
750config X86_VISWS_APIC
Harvey Harrison3c2362e2008-01-30 13:31:03 +0100751 def_bool y
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100752 depends on X86_32 && X86_VISWS
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100753
Stefan Assmann41b9eb22008-07-15 13:48:55 +0200754config X86_REROUTE_FOR_BROKEN_BOOT_IRQS
755 bool "Reroute for broken boot IRQs"
756 default n
757 depends on X86_IO_APIC
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100758 ---help---
Stefan Assmann41b9eb22008-07-15 13:48:55 +0200759 This option enables a workaround that fixes a source of
760 spurious interrupts. This is recommended when threaded
761 interrupt handling is used on systems where the generation of
762 superfluous "boot interrupts" cannot be disabled.
763
764 Some chipsets generate a legacy INTx "boot IRQ" when the IRQ
765 entry in the chipset's IO-APIC is masked (as, e.g. the RT
766 kernel does during interrupt handling). On chipsets where this
767 boot IRQ generation cannot be disabled, this workaround keeps
768 the original IRQ line masked so that only the equivalent "boot
769 IRQ" is delivered to the CPUs. The workaround also tells the
770 kernel to set up the IRQ handler on the boot IRQ line. In this
771 way only one interrupt is delivered to the kernel. Otherwise
772 the spurious second interrupt may cause the kernel to bring
773 down (vital) interrupt lines.
774
775 Only affects "broken" chipsets. Interrupt sharing may be
776 increased on these systems.
777
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100778config X86_MCE
779 bool "Machine Check Exception"
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100780 ---help---
781 Machine Check Exception support allows the processor to notify the
782 kernel if it detects a problem (e.g. overheating, component failure).
783 The action the kernel takes depends on the severity of the problem,
784 ranging from a warning message on the console, to halting the machine.
785 Your processor must be a Pentium or newer to support this - check the
786 flags in /proc/cpuinfo for mce. Note that some older Pentium systems
787 have a design flaw which leads to false MCE events - hence MCE is
788 disabled on all P5 processors, unless explicitly enabled with "mce"
789 as a boot argument. Similarly, if MCE is built in and creates a
790 problem on some new non-standard machine, you can boot with "nomce"
791 to disable it. MCE support simply ignores non-MCE processors like
792 the 386 and 486, so nearly everyone can say Y here.
793
Andi Kleen4efc0672009-04-28 19:07:31 +0200794config X86_OLD_MCE
795 depends on X86_32 && X86_MCE
796 bool "Use legacy machine check code (will go away)"
797 default n
798 select X86_ANCIENT_MCE
799 ---help---
800 Use the old i386 machine check code. This is merely intended for
801 testing in a transition period. Try this if you run into any machine
802 check related software problems, but report the problem to
803 linux-kernel. When in doubt say no.
804
805config X86_NEW_MCE
806 depends on X86_MCE
807 bool
808 default y if (!X86_OLD_MCE && X86_32) || X86_64
809
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100810config X86_MCE_INTEL
Harvey Harrison3c2362e2008-01-30 13:31:03 +0100811 def_bool y
812 prompt "Intel MCE features"
Andi Kleen7856f6c2009-04-28 23:32:56 +0200813 depends on X86_NEW_MCE && X86_LOCAL_APIC
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100814 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100815 Additional support for intel specific MCE features such as
816 the thermal monitor.
817
818config X86_MCE_AMD
Harvey Harrison3c2362e2008-01-30 13:31:03 +0100819 def_bool y
820 prompt "AMD MCE features"
Andi Kleende5619d2009-04-28 23:34:40 +0200821 depends on X86_NEW_MCE && X86_LOCAL_APIC
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100822 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100823 Additional support for AMD specific MCE features such as
824 the DRAM Error Threshold.
825
Andi Kleen4efc0672009-04-28 19:07:31 +0200826config X86_ANCIENT_MCE
Hidetoshi Setocd13adcc2009-05-27 16:57:31 +0900827 def_bool n
828 depends on X86_32
829 prompt "Support for old Pentium 5 / WinChip machine checks"
830 ---help---
831 Include support for machine check handling on old Pentium 5 or WinChip
832 systems. These typically need to be enabled explicitely on the command
833 line.
Andi Kleen4efc0672009-04-28 19:07:31 +0200834
Andi Kleenb2762682009-02-12 13:49:31 +0100835config X86_MCE_THRESHOLD
836 depends on X86_MCE_AMD || X86_MCE_INTEL
837 bool
838 default y
839
Andi Kleenea149b32009-04-29 19:31:00 +0200840config X86_MCE_INJECT
841 depends on X86_NEW_MCE
842 tristate "Machine check injector support"
843 ---help---
844 Provide support for injecting machine checks for testing purposes.
845 If you don't know what a machine check is and you don't do kernel
846 QA it is safe to say n.
847
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100848config X86_MCE_NONFATAL
849 tristate "Check for non-fatal errors on AMD Athlon/Duron / Intel Pentium 4"
Andi Kleen4efc0672009-04-28 19:07:31 +0200850 depends on X86_OLD_MCE
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100851 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100852 Enabling this feature starts a timer that triggers every 5 seconds which
853 will look at the machine check registers to see if anything happened.
854 Non-fatal problems automatically get corrected (but still logged).
855 Disable this if you don't want to see these messages.
856 Seeing the messages this option prints out may be indicative of dying
857 or out-of-spec (ie, overclocked) hardware.
858 This option only does something on certain CPUs.
859 (AMD Athlon/Duron and Intel Pentium 4)
860
861config X86_MCE_P4THERMAL
862 bool "check for P4 thermal throttling interrupt."
Andi Kleen4efc0672009-04-28 19:07:31 +0200863 depends on X86_OLD_MCE && X86_MCE && (X86_UP_APIC || SMP)
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100864 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100865 Enabling this feature will cause a message to be printed when the P4
866 enters thermal throttling.
867
Andi Kleen4efc0672009-04-28 19:07:31 +0200868config X86_THERMAL_VECTOR
869 def_bool y
870 depends on X86_MCE_P4THERMAL || X86_MCE_INTEL
871
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100872config VM86
873 bool "Enable VM86 support" if EMBEDDED
874 default y
875 depends on X86_32
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100876 ---help---
877 This option is required by programs like DOSEMU to run 16-bit legacy
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100878 code on X86 processors. It also may be needed by software like
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100879 XFree86 to initialize some video cards via BIOS. Disabling this
880 option saves about 6k.
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100881
882config TOSHIBA
883 tristate "Toshiba Laptop support"
884 depends on X86_32
885 ---help---
886 This adds a driver to safely access the System Management Mode of
887 the CPU on Toshiba portables with a genuine Toshiba BIOS. It does
888 not work on models with a Phoenix BIOS. The System Management Mode
889 is used to set the BIOS and power saving options on Toshiba portables.
890
891 For information on utilities to make use of this driver see the
892 Toshiba Linux utilities web site at:
893 <http://www.buzzard.org.uk/toshiba/>.
894
895 Say Y if you intend to run this kernel on a Toshiba portable.
896 Say N otherwise.
897
898config I8K
899 tristate "Dell laptop support"
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100900 ---help---
901 This adds a driver to safely access the System Management Mode
902 of the CPU on the Dell Inspiron 8000. The System Management Mode
903 is used to read cpu temperature and cooling fan status and to
904 control the fans on the I8K portables.
905
906 This driver has been tested only on the Inspiron 8000 but it may
907 also work with other Dell laptops. You can force loading on other
908 models by passing the parameter `force=1' to the module. Use at
909 your own risk.
910
911 For information on utilities to make use of this driver see the
912 I8K Linux utilities web site at:
913 <http://people.debian.org/~dz/i8k/>
914
915 Say Y if you intend to run this kernel on a Dell Inspiron 8000.
916 Say N otherwise.
917
918config X86_REBOOTFIXUPS
Jan Beulich9ba16082008-10-15 22:01:38 -0700919 bool "Enable X86 board specific fixups for reboot"
920 depends on X86_32
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100921 ---help---
922 This enables chipset and/or board specific fixups to be done
923 in order to get reboot to work correctly. This is only needed on
924 some combinations of hardware and BIOS. The symptom, for which
925 this config is intended, is when reboot ends with a stalled/hung
926 system.
927
928 Currently, the only fixup is for the Geode machines using
Florian Fainelli5e3a77e2008-01-30 13:33:36 +0100929 CS5530A and CS5536 chipsets and the RDC R-321x SoC.
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100930
931 Say Y if you want to enable the fixup. Currently, it's safe to
932 enable this option even if you don't need it.
933 Say N otherwise.
934
935config MICROCODE
Peter Oruba8d86f392008-07-28 18:44:21 +0200936 tristate "/dev/cpu/microcode - microcode support"
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100937 select FW_LOADER
938 ---help---
939 If you say Y here, you will be able to update the microcode on
Peter Oruba80cc9f12008-07-28 18:44:22 +0200940 certain Intel and AMD processors. The Intel support is for the
941 IA32 family, e.g. Pentium Pro, Pentium II, Pentium III,
942 Pentium 4, Xeon etc. The AMD support is for family 0x10 and
943 0x11 processors, e.g. Opteron, Phenom and Turion 64 Ultra.
944 You will obviously need the actual microcode binary data itself
945 which is not shipped with the Linux kernel.
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100946
Peter Oruba8d86f392008-07-28 18:44:21 +0200947 This option selects the general module only, you need to select
948 at least one vendor specific module as well.
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100949
950 To compile this driver as a module, choose M here: the
951 module will be called microcode.
952
Peter Oruba8d86f392008-07-28 18:44:21 +0200953config MICROCODE_INTEL
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100954 bool "Intel microcode patch loading support"
955 depends on MICROCODE
956 default MICROCODE
957 select FW_LOADER
958 ---help---
959 This options enables microcode patch loading support for Intel
960 processors.
Peter Oruba8d86f392008-07-28 18:44:21 +0200961
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100962 For latest news and information on obtaining all the required
963 Intel ingredients for this driver, check:
964 <http://www.urbanmyth.org/microcode/>.
Peter Oruba8d86f392008-07-28 18:44:21 +0200965
Peter Oruba80cc9f12008-07-28 18:44:22 +0200966config MICROCODE_AMD
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100967 bool "AMD microcode patch loading support"
968 depends on MICROCODE
969 select FW_LOADER
970 ---help---
971 If you select this option, microcode patch loading support for AMD
972 processors will be enabled.
Peter Oruba80cc9f12008-07-28 18:44:22 +0200973
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100974config MICROCODE_OLD_INTERFACE
Harvey Harrison3c2362e2008-01-30 13:31:03 +0100975 def_bool y
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100976 depends on MICROCODE
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100977
978config X86_MSR
979 tristate "/dev/cpu/*/msr - Model-specific register support"
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100980 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100981 This device gives privileged processes access to the x86
982 Model-Specific Registers (MSRs). It is a character device with
983 major 202 and minors 0 to 31 for /dev/cpu/0/msr to /dev/cpu/31/msr.
984 MSR accesses are directed to a specific CPU on multi-processor
985 systems.
986
987config X86_CPUID
988 tristate "/dev/cpu/*/cpuid - CPU information support"
Ingo Molnar8f9ca472009-02-05 16:21:53 +0100989 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +0100990 This device gives processes access to the x86 CPUID instruction to
991 be executed on a specific processor. It is a character device
992 with major 203 and minors 0 to 31 for /dev/cpu/0/cpuid to
993 /dev/cpu/31/cpuid.
994
Jaswinder Singh Rajput9b779ed2009-03-10 15:37:51 +0530995config X86_CPU_DEBUG
996 tristate "/sys/kernel/debug/x86/cpu/* - CPU Debug support"
997 ---help---
998 If you select this option, this will provide various x86 CPUs
999 information through debugfs.
1000
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001001choice
1002 prompt "High Memory Support"
1003 default HIGHMEM4G if !X86_NUMAQ
1004 default HIGHMEM64G if X86_NUMAQ
1005 depends on X86_32
1006
1007config NOHIGHMEM
1008 bool "off"
1009 depends on !X86_NUMAQ
1010 ---help---
1011 Linux can use up to 64 Gigabytes of physical memory on x86 systems.
1012 However, the address space of 32-bit x86 processors is only 4
1013 Gigabytes large. That means that, if you have a large amount of
1014 physical memory, not all of it can be "permanently mapped" by the
1015 kernel. The physical memory that's not permanently mapped is called
1016 "high memory".
1017
1018 If you are compiling a kernel which will never run on a machine with
1019 more than 1 Gigabyte total physical RAM, answer "off" here (default
1020 choice and suitable for most users). This will result in a "3GB/1GB"
1021 split: 3GB are mapped so that each process sees a 3GB virtual memory
1022 space and the remaining part of the 4GB virtual memory space is used
1023 by the kernel to permanently map as much physical memory as
1024 possible.
1025
1026 If the machine has between 1 and 4 Gigabytes physical RAM, then
1027 answer "4GB" here.
1028
1029 If more than 4 Gigabytes is used then answer "64GB" here. This
1030 selection turns Intel PAE (Physical Address Extension) mode on.
1031 PAE implements 3-level paging on IA32 processors. PAE is fully
1032 supported by Linux, PAE mode is implemented on all recent Intel
1033 processors (Pentium Pro and better). NOTE: If you say "64GB" here,
1034 then the kernel will not boot on CPUs that don't support PAE!
1035
1036 The actual amount of total physical memory will either be
1037 auto detected or can be forced by using a kernel command line option
1038 such as "mem=256M". (Try "man bootparam" or see the documentation of
1039 your boot loader (lilo or loadlin) about how to pass options to the
1040 kernel at boot time.)
1041
1042 If unsure, say "off".
1043
1044config HIGHMEM4G
1045 bool "4GB"
1046 depends on !X86_NUMAQ
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001047 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001048 Select this if you have a 32-bit processor and between 1 and 4
1049 gigabytes of physical RAM.
1050
1051config HIGHMEM64G
1052 bool "64GB"
1053 depends on !M386 && !M486
1054 select X86_PAE
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001055 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001056 Select this if you have a 32-bit processor and more than 4
1057 gigabytes of physical RAM.
1058
1059endchoice
1060
1061choice
1062 depends on EXPERIMENTAL
1063 prompt "Memory split" if EMBEDDED
1064 default VMSPLIT_3G
1065 depends on X86_32
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001066 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001067 Select the desired split between kernel and user memory.
1068
1069 If the address range available to the kernel is less than the
1070 physical memory installed, the remaining memory will be available
1071 as "high memory". Accessing high memory is a little more costly
1072 than low memory, as it needs to be mapped into the kernel first.
1073 Note that increasing the kernel address space limits the range
1074 available to user programs, making the address space there
1075 tighter. Selecting anything other than the default 3G/1G split
1076 will also likely make your kernel incompatible with binary-only
1077 kernel modules.
1078
1079 If you are not absolutely sure what you are doing, leave this
1080 option alone!
1081
1082 config VMSPLIT_3G
1083 bool "3G/1G user/kernel split"
1084 config VMSPLIT_3G_OPT
1085 depends on !X86_PAE
1086 bool "3G/1G user/kernel split (for full 1G low memory)"
1087 config VMSPLIT_2G
1088 bool "2G/2G user/kernel split"
1089 config VMSPLIT_2G_OPT
1090 depends on !X86_PAE
1091 bool "2G/2G user/kernel split (for full 2G low memory)"
1092 config VMSPLIT_1G
1093 bool "1G/3G user/kernel split"
1094endchoice
1095
1096config PAGE_OFFSET
1097 hex
1098 default 0xB0000000 if VMSPLIT_3G_OPT
1099 default 0x80000000 if VMSPLIT_2G
1100 default 0x78000000 if VMSPLIT_2G_OPT
1101 default 0x40000000 if VMSPLIT_1G
1102 default 0xC0000000
1103 depends on X86_32
1104
1105config HIGHMEM
Harvey Harrison3c2362e2008-01-30 13:31:03 +01001106 def_bool y
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001107 depends on X86_32 && (HIGHMEM64G || HIGHMEM4G)
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001108
1109config X86_PAE
Jan Beulich9ba16082008-10-15 22:01:38 -07001110 bool "PAE (Physical Address Extension) Support"
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001111 depends on X86_32 && !HIGHMEM4G
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001112 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001113 PAE is required for NX support, and furthermore enables
1114 larger swapspace support for non-overcommit purposes. It
1115 has the cost of more pagetable lookup overhead, and also
1116 consumes more pagetable space per process.
1117
Jeremy Fitzhardinge600715d2008-09-11 01:31:45 -07001118config ARCH_PHYS_ADDR_T_64BIT
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001119 def_bool X86_64 || X86_PAE
Jeremy Fitzhardinge600715d2008-09-11 01:31:45 -07001120
Nick Piggin9e899812008-10-22 12:33:16 +02001121config DIRECT_GBPAGES
1122 bool "Enable 1GB pages for kernel pagetables" if EMBEDDED
1123 default y
1124 depends on X86_64
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001125 ---help---
Nick Piggin9e899812008-10-22 12:33:16 +02001126 Allow the kernel linear mapping to use 1GB pages on CPUs that
1127 support it. This can improve the kernel's performance a tiny bit by
1128 reducing TLB pressure. If in doubt, say "Y".
1129
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001130# Common NUMA Features
1131config NUMA
KOSAKI Motohirofd51b2d2008-11-05 02:27:19 +09001132 bool "Numa Memory Allocation and Scheduler Support"
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001133 depends on SMP
Rafael J. Wysocki604d2052008-11-12 23:26:14 +01001134 depends on X86_64 || (X86_32 && HIGHMEM64G && (X86_NUMAQ || X86_BIGSMP || X86_SUMMIT && ACPI) && EXPERIMENTAL)
Yinghai Lu0699eae2008-06-17 15:39:01 -07001135 default y if (X86_NUMAQ || X86_SUMMIT || X86_BIGSMP)
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001136 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001137 Enable NUMA (Non Uniform Memory Access) support.
KOSAKI Motohirofd51b2d2008-11-05 02:27:19 +09001138
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001139 The kernel will try to allocate memory used by a CPU on the
1140 local memory controller of the CPU and add some more
1141 NUMA awareness to the kernel.
1142
Ingo Molnarc280ea52008-11-08 13:29:45 +01001143 For 64-bit this is recommended if the system is Intel Core i7
KOSAKI Motohirofd51b2d2008-11-05 02:27:19 +09001144 (or later), AMD Opteron, or EM64T NUMA.
1145
1146 For 32-bit this is only needed on (rare) 32-bit-only platforms
1147 that support NUMA topologies, such as NUMAQ / Summit, or if you
1148 boot a 32-bit kernel on a 64-bit NUMA platform.
1149
1150 Otherwise, you should say N.
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001151
1152comment "NUMA (Summit) requires SMP, 64GB highmem support, ACPI"
1153 depends on X86_32 && X86_SUMMIT && (!HIGHMEM64G || !ACPI)
1154
1155config K8_NUMA
Harvey Harrison3c2362e2008-01-30 13:31:03 +01001156 def_bool y
1157 prompt "Old style AMD Opteron NUMA detection"
1158 depends on X86_64 && NUMA && PCI
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001159 ---help---
1160 Enable K8 NUMA node topology detection. You should say Y here if
1161 you have a multi processor AMD K8 system. This uses an old
1162 method to read the NUMA configuration directly from the builtin
1163 Northbridge of Opteron. It is recommended to use X86_64_ACPI_NUMA
1164 instead, which also takes priority if both are compiled in.
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001165
1166config X86_64_ACPI_NUMA
Harvey Harrison3c2362e2008-01-30 13:31:03 +01001167 def_bool y
1168 prompt "ACPI NUMA detection"
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001169 depends on X86_64 && NUMA && ACPI && PCI
1170 select ACPI_NUMA
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001171 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001172 Enable ACPI SRAT based node topology detection.
1173
Suresh Siddha6ec6e0d2008-03-25 10:14:35 -07001174# Some NUMA nodes have memory ranges that span
1175# other nodes. Even though a pfn is valid and
1176# between a node's start and end pfns, it may not
1177# reside on that node. See memmap_init_zone()
1178# for details.
1179config NODES_SPAN_OTHER_NODES
1180 def_bool y
1181 depends on X86_64_ACPI_NUMA
1182
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001183config NUMA_EMU
1184 bool "NUMA emulation"
1185 depends on X86_64 && NUMA
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001186 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001187 Enable NUMA emulation. A flat machine will be split
1188 into virtual nodes when booted with "numa=fake=N", where N is the
1189 number of nodes. This is only useful for debugging.
1190
1191config NODES_SHIFT
Linus Torvaldsd25e26b2008-08-25 14:15:38 -07001192 int "Maximum NUMA Nodes (as a power of 2)" if !MAXSMP
Jan Beulich46d50c92009-03-12 12:33:06 +00001193 range 1 9
Linus Torvaldsd25e26b2008-08-25 14:15:38 -07001194 default "9" if MAXSMP
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001195 default "6" if X86_64
1196 default "4" if X86_NUMAQ
1197 default "3"
1198 depends on NEED_MULTIPLE_NODES
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001199 ---help---
Mike Travis1184dc22008-05-12 21:21:12 +02001200 Specify the maximum number of NUMA Nodes available on the target
Matt LaPlante692105b2009-01-26 11:12:25 +01001201 system. Increases memory reserved to accommodate various tables.
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001202
Tejun Heoc1329372009-02-24 11:57:20 +09001203config HAVE_ARCH_BOOTMEM
Harvey Harrison3c2362e2008-01-30 13:31:03 +01001204 def_bool y
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001205 depends on X86_32 && NUMA
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001206
1207config ARCH_HAVE_MEMORY_PRESENT
Harvey Harrison3c2362e2008-01-30 13:31:03 +01001208 def_bool y
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001209 depends on X86_32 && DISCONTIGMEM
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001210
1211config NEED_NODE_MEMMAP_SIZE
Harvey Harrison3c2362e2008-01-30 13:31:03 +01001212 def_bool y
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001213 depends on X86_32 && (DISCONTIGMEM || SPARSEMEM)
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001214
1215config HAVE_ARCH_ALLOC_REMAP
Harvey Harrison3c2362e2008-01-30 13:31:03 +01001216 def_bool y
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001217 depends on X86_32 && NUMA
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001218
1219config ARCH_FLATMEM_ENABLE
1220 def_bool y
Jeff Chua99809962008-08-06 19:09:53 +08001221 depends on X86_32 && ARCH_SELECT_MEMORY_MODEL && !NUMA
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001222
1223config ARCH_DISCONTIGMEM_ENABLE
1224 def_bool y
Christoph Lameterb2632952008-01-30 13:30:47 +01001225 depends on NUMA && X86_32
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001226
1227config ARCH_DISCONTIGMEM_DEFAULT
1228 def_bool y
Christoph Lameterb2632952008-01-30 13:30:47 +01001229 depends on NUMA && X86_32
1230
1231config ARCH_SPARSEMEM_DEFAULT
1232 def_bool y
1233 depends on X86_64
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001234
1235config ARCH_SPARSEMEM_ENABLE
1236 def_bool y
Yinghai Lu4272ebf2009-01-29 15:14:46 -08001237 depends on X86_64 || NUMA || (EXPERIMENTAL && X86_32) || X86_32_NON_STANDARD
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001238 select SPARSEMEM_STATIC if X86_32
1239 select SPARSEMEM_VMEMMAP_ENABLE if X86_64
1240
1241config ARCH_SELECT_MEMORY_MODEL
1242 def_bool y
Christoph Lameterb2632952008-01-30 13:30:47 +01001243 depends on ARCH_SPARSEMEM_ENABLE
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001244
1245config ARCH_MEMORY_PROBE
1246 def_bool X86_64
1247 depends on MEMORY_HOTPLUG
1248
1249source "mm/Kconfig"
1250
1251config HIGHPTE
1252 bool "Allocate 3rd-level pagetables from highmem"
1253 depends on X86_32 && (HIGHMEM4G || HIGHMEM64G)
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001254 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001255 The VM uses one page table entry for each page of physical memory.
1256 For systems with a lot of RAM, this can be wasteful of precious
1257 low memory. Setting this option will put user-space page table
1258 entries in high memory.
1259
Jeremy Fitzhardinge9f077872008-09-07 01:51:34 -07001260config X86_CHECK_BIOS_CORRUPTION
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001261 bool "Check for low memory corruption"
1262 ---help---
1263 Periodically check for memory corruption in low memory, which
1264 is suspected to be caused by BIOS. Even when enabled in the
1265 configuration, it is disabled at runtime. Enable it by
1266 setting "memory_corruption_check=1" on the kernel command
1267 line. By default it scans the low 64k of memory every 60
1268 seconds; see the memory_corruption_check_size and
1269 memory_corruption_check_period parameters in
1270 Documentation/kernel-parameters.txt to adjust this.
Jeremy Fitzhardinge9f077872008-09-07 01:51:34 -07001271
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001272 When enabled with the default parameters, this option has
1273 almost no overhead, as it reserves a relatively small amount
1274 of memory and scans it infrequently. It both detects corruption
1275 and prevents it from affecting the running system.
Jeremy Fitzhardinge9f077872008-09-07 01:51:34 -07001276
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001277 It is, however, intended as a diagnostic tool; if repeatable
1278 BIOS-originated corruption always affects the same memory,
1279 you can use memmap= to prevent the kernel from using that
1280 memory.
Jeremy Fitzhardinge9f077872008-09-07 01:51:34 -07001281
Jeremy Fitzhardingec885df52008-09-07 02:37:32 -07001282config X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001283 bool "Set the default setting of memory_corruption_check"
Jeremy Fitzhardingec885df52008-09-07 02:37:32 -07001284 depends on X86_CHECK_BIOS_CORRUPTION
1285 default y
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001286 ---help---
1287 Set whether the default state of memory_corruption_check is
1288 on or off.
Jeremy Fitzhardingec885df52008-09-07 02:37:32 -07001289
Ingo Molnarfc381512008-09-16 10:07:34 +02001290config X86_RESERVE_LOW_64K
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001291 bool "Reserve low 64K of RAM on AMI/Phoenix BIOSen"
Ingo Molnarfc381512008-09-16 10:07:34 +02001292 default y
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001293 ---help---
1294 Reserve the first 64K of physical RAM on BIOSes that are known
1295 to potentially corrupt that memory range. A numbers of BIOSes are
1296 known to utilize this area during suspend/resume, so it must not
1297 be used by the kernel.
Ingo Molnarfc381512008-09-16 10:07:34 +02001298
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001299 Set this to N if you are absolutely sure that you trust the BIOS
1300 to get all its memory reservations and usages right.
Ingo Molnarfc381512008-09-16 10:07:34 +02001301
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001302 If you have doubts about the BIOS (e.g. suspend/resume does not
1303 work or there's kernel crashes after certain hardware hotplug
1304 events) and it's not AMI or Phoenix, then you might want to enable
1305 X86_CHECK_BIOS_CORRUPTION=y to allow the kernel to check typical
1306 corruption patterns.
Ingo Molnarfc381512008-09-16 10:07:34 +02001307
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001308 Say Y if unsure.
Ingo Molnarfc381512008-09-16 10:07:34 +02001309
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001310config MATH_EMULATION
1311 bool
1312 prompt "Math emulation" if X86_32
1313 ---help---
1314 Linux can emulate a math coprocessor (used for floating point
1315 operations) if you don't have one. 486DX and Pentium processors have
1316 a math coprocessor built in, 486SX and 386 do not, unless you added
1317 a 487DX or 387, respectively. (The messages during boot time can
1318 give you some hints here ["man dmesg"].) Everyone needs either a
1319 coprocessor or this emulation.
1320
1321 If you don't have a math coprocessor, you need to say Y here; if you
1322 say Y here even though you have a coprocessor, the coprocessor will
1323 be used nevertheless. (This behavior can be changed with the kernel
1324 command line option "no387", which comes handy if your coprocessor
1325 is broken. Try "man bootparam" or see the documentation of your boot
1326 loader (lilo or loadlin) about how to pass options to the kernel at
1327 boot time.) This means that it is a good idea to say Y here if you
1328 intend to use this kernel on different machines.
1329
1330 More information about the internals of the Linux math coprocessor
1331 emulation can be found in <file:arch/x86/math-emu/README>.
1332
1333 If you are not sure, say Y; apart from resulting in a 66 KB bigger
1334 kernel, it won't hurt.
1335
1336config MTRR
1337 bool "MTRR (Memory Type Range Register) support"
1338 ---help---
1339 On Intel P6 family processors (Pentium Pro, Pentium II and later)
1340 the Memory Type Range Registers (MTRRs) may be used to control
1341 processor access to memory ranges. This is most useful if you have
1342 a video (VGA) card on a PCI or AGP bus. Enabling write-combining
1343 allows bus write transfers to be combined into a larger transfer
1344 before bursting over the PCI/AGP bus. This can increase performance
1345 of image write operations 2.5 times or more. Saying Y here creates a
1346 /proc/mtrr file which may be used to manipulate your processor's
1347 MTRRs. Typically the X server should use this.
1348
1349 This code has a reasonably generic interface so that similar
1350 control registers on other processors can be easily supported
1351 as well:
1352
1353 The Cyrix 6x86, 6x86MX and M II processors have Address Range
1354 Registers (ARRs) which provide a similar functionality to MTRRs. For
1355 these, the ARRs are used to emulate the MTRRs.
1356 The AMD K6-2 (stepping 8 and above) and K6-3 processors have two
1357 MTRRs. The Centaur C6 (WinChip) has 8 MCRs, allowing
1358 write-combining. All of these processors are supported by this code
1359 and it makes sense to say Y here if you have one of them.
1360
1361 Saying Y here also fixes a problem with buggy SMP BIOSes which only
1362 set the MTRRs for the boot CPU and not for the secondary CPUs. This
1363 can lead to all sorts of problems, so it's good to say Y here.
1364
1365 You can safely say Y even if your machine doesn't have MTRRs, you'll
1366 just add about 9 KB to your kernel.
1367
Randy Dunlap7225e752008-07-26 17:54:22 -07001368 See <file:Documentation/x86/mtrr.txt> for more information.
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001369
Yinghai Lu95ffa242008-04-29 03:52:33 -07001370config MTRR_SANITIZER
Yinghai Lu2ffb3502008-09-30 16:29:40 -07001371 def_bool y
Yinghai Lu95ffa242008-04-29 03:52:33 -07001372 prompt "MTRR cleanup support"
1373 depends on MTRR
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001374 ---help---
Thomas Gleixneraba37282008-07-15 14:48:48 +02001375 Convert MTRR layout from continuous to discrete, so X drivers can
1376 add writeback entries.
Yinghai Lu95ffa242008-04-29 03:52:33 -07001377
Thomas Gleixneraba37282008-07-15 14:48:48 +02001378 Can be disabled with disable_mtrr_cleanup on the kernel command line.
Matt LaPlante692105b2009-01-26 11:12:25 +01001379 The largest mtrr entry size for a continuous block can be set with
Thomas Gleixneraba37282008-07-15 14:48:48 +02001380 mtrr_chunk_size.
Yinghai Lu95ffa242008-04-29 03:52:33 -07001381
Yinghai Lu2ffb3502008-09-30 16:29:40 -07001382 If unsure, say Y.
Yinghai Lu95ffa242008-04-29 03:52:33 -07001383
1384config MTRR_SANITIZER_ENABLE_DEFAULT
Yinghai Luf5098d62008-04-29 20:25:58 -07001385 int "MTRR cleanup enable value (0-1)"
1386 range 0 1
1387 default "0"
Yinghai Lu95ffa242008-04-29 03:52:33 -07001388 depends on MTRR_SANITIZER
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001389 ---help---
Yinghai Luf5098d62008-04-29 20:25:58 -07001390 Enable mtrr cleanup default value
Yinghai Lu95ffa242008-04-29 03:52:33 -07001391
Yinghai Lu12031a62008-05-02 02:40:22 -07001392config MTRR_SANITIZER_SPARE_REG_NR_DEFAULT
1393 int "MTRR cleanup spare reg num (0-7)"
1394 range 0 7
1395 default "1"
1396 depends on MTRR_SANITIZER
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001397 ---help---
Yinghai Lu12031a62008-05-02 02:40:22 -07001398 mtrr cleanup spare entries default, it can be changed via
Thomas Gleixneraba37282008-07-15 14:48:48 +02001399 mtrr_spare_reg_nr=N on the kernel command line.
Yinghai Lu12031a62008-05-02 02:40:22 -07001400
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -07001401config X86_PAT
Ingo Molnar2a8a2712008-04-26 10:26:52 +02001402 bool
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -07001403 prompt "x86 PAT support"
Ingo Molnar2a8a2712008-04-26 10:26:52 +02001404 depends on MTRR
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001405 ---help---
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -07001406 Use PAT attributes to setup page level cache control.
Venki Pallipadi042b78e2008-03-24 14:22:35 -07001407
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -07001408 PATs are the modern equivalents of MTRRs and are much more
1409 flexible than MTRRs.
1410
1411 Say N here if you see bootup problems (boot crash, boot hang,
Venki Pallipadi042b78e2008-03-24 14:22:35 -07001412 spontaneous reboots) or a non-working video driver.
venkatesh.pallipadi@intel.com2e5d9c82008-03-18 17:00:14 -07001413
1414 If unsure, say Y.
1415
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001416config EFI
Jan Beulich9ba16082008-10-15 22:01:38 -07001417 bool "EFI runtime service support"
Huang, Ying5b836832008-01-30 13:31:19 +01001418 depends on ACPI
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001419 ---help---
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001420 This enables the kernel to use EFI runtime services that are
1421 available (such as the EFI variable services).
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001422
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001423 This option is only useful on systems that have EFI firmware.
1424 In addition, you should use the latest ELILO loader available
1425 at <http://elilo.sourceforge.net> in order to take advantage
1426 of EFI runtime services. However, even with this option, the
1427 resultant kernel should continue to boot on existing non-EFI
1428 platforms.
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001429
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001430config SECCOMP
Harvey Harrison3c2362e2008-01-30 13:31:03 +01001431 def_bool y
1432 prompt "Enable seccomp to safely compute untrusted bytecode"
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001433 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001434 This kernel feature is useful for number crunching applications
1435 that may need to compute untrusted bytecode during their
1436 execution. By using pipes or other transports made available to
1437 the process as file descriptors supporting the read/write
1438 syscalls, it's possible to isolate those applications in
1439 their own address space using seccomp. Once seccomp is
Alexey Dobriyan9c0bbee2008-09-09 11:01:31 +04001440 enabled via prctl(PR_SET_SECCOMP), it cannot be disabled
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001441 and the task is only allowed to execute a few safe syscalls
1442 defined by each seccomp mode.
1443
1444 If unsure, say Y. Only embedded should say N here.
1445
Ingo Molnar113c5412008-02-14 10:36:03 +01001446config CC_STACKPROTECTOR_ALL
1447 bool
1448
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001449config CC_STACKPROTECTOR
1450 bool "Enable -fstack-protector buffer overflow detection (EXPERIMENTAL)"
Ingo Molnar113c5412008-02-14 10:36:03 +01001451 select CC_STACKPROTECTOR_ALL
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001452 ---help---
1453 This option turns on the -fstack-protector GCC feature. This
Ingo Molnar113c5412008-02-14 10:36:03 +01001454 feature puts, at the beginning of functions, a canary value on
1455 the stack just before the return address, and validates
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001456 the value just before actually returning. Stack based buffer
1457 overflows (that need to overwrite this return address) now also
1458 overwrite the canary, which gets detected and the attack is then
1459 neutralized via a kernel panic.
1460
1461 This feature requires gcc version 4.2 or above, or a distribution
1462 gcc with the feature backported. Older versions are automatically
Ingo Molnar113c5412008-02-14 10:36:03 +01001463 detected and for those versions, this configuration option is
1464 ignored. (and a warning is printed during bootup)
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001465
1466source kernel/Kconfig.hz
1467
1468config KEXEC
1469 bool "kexec system call"
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001470 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001471 kexec is a system call that implements the ability to shutdown your
1472 current kernel, and to start another kernel. It is like a reboot
1473 but it is independent of the system firmware. And like a reboot
1474 you can start any kernel with it, not just Linux.
1475
1476 The name comes from the similarity to the exec system call.
1477
1478 It is an ongoing process to be certain the hardware in a machine
1479 is properly shutdown, so do not be surprised if this code does not
1480 initially work for you. It may help to enable device hotplugging
1481 support. As of this writing the exact hardware interface is
1482 strongly in flux, so no good recommendation can be made.
1483
1484config CRASH_DUMP
Pavel Machek04b69442008-08-14 17:16:50 +02001485 bool "kernel crash dumps"
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001486 depends on X86_64 || (X86_32 && HIGHMEM)
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001487 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001488 Generate crash dump after being started by kexec.
1489 This should be normally only set in special crash dump kernels
1490 which are loaded in the main kernel with kexec-tools into
1491 a specially reserved region and then later executed after
1492 a crash by kdump/kexec. The crash dump kernel must be compiled
1493 to a memory address not used by the main kernel or BIOS using
1494 PHYSICAL_START, or it must be built as a relocatable image
1495 (CONFIG_RELOCATABLE=y).
1496 For more details see Documentation/kdump/kdump.txt
1497
Huang Ying3ab83522008-07-25 19:45:07 -07001498config KEXEC_JUMP
1499 bool "kexec jump (EXPERIMENTAL)"
1500 depends on EXPERIMENTAL
Huang Yingfee7b0d2009-03-10 10:57:16 +08001501 depends on KEXEC && HIBERNATION
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001502 ---help---
Huang Ying89081d12008-07-25 19:45:10 -07001503 Jump between original kernel and kexeced kernel and invoke
1504 code in physical address mode via KEXEC
Huang Ying3ab83522008-07-25 19:45:07 -07001505
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001506config PHYSICAL_START
1507 hex "Physical address where the kernel is loaded" if (EMBEDDED || CRASH_DUMP)
H. Peter Anvinceefccc2009-05-11 16:12:16 -07001508 default "0x1000000"
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001509 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001510 This gives the physical address where the kernel is loaded.
1511
1512 If kernel is a not relocatable (CONFIG_RELOCATABLE=n) then
1513 bzImage will decompress itself to above physical address and
1514 run from there. Otherwise, bzImage will run from the address where
1515 it has been loaded by the boot loader and will ignore above physical
1516 address.
1517
1518 In normal kdump cases one does not have to set/change this option
1519 as now bzImage can be compiled as a completely relocatable image
1520 (CONFIG_RELOCATABLE=y) and be used to load and run from a different
1521 address. This option is mainly useful for the folks who don't want
1522 to use a bzImage for capturing the crash dump and want to use a
1523 vmlinux instead. vmlinux is not relocatable hence a kernel needs
1524 to be specifically compiled to run from a specific memory area
1525 (normally a reserved region) and this option comes handy.
1526
H. Peter Anvinceefccc2009-05-11 16:12:16 -07001527 So if you are using bzImage for capturing the crash dump,
1528 leave the value here unchanged to 0x1000000 and set
1529 CONFIG_RELOCATABLE=y. Otherwise if you plan to use vmlinux
1530 for capturing the crash dump change this value to start of
1531 the reserved region. In other words, it can be set based on
1532 the "X" value as specified in the "crashkernel=YM@XM"
1533 command line boot parameter passed to the panic-ed
1534 kernel. Please take a look at Documentation/kdump/kdump.txt
1535 for more details about crash dumps.
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001536
1537 Usage of bzImage for capturing the crash dump is recommended as
1538 one does not have to build two kernels. Same kernel can be used
1539 as production kernel and capture kernel. Above option should have
1540 gone away after relocatable bzImage support is introduced. But it
1541 is present because there are users out there who continue to use
1542 vmlinux for dump capture. This option should go away down the
1543 line.
1544
1545 Don't change this unless you know what you are doing.
1546
1547config RELOCATABLE
H. Peter Anvin26717802009-05-07 14:19:34 -07001548 bool "Build a relocatable kernel"
1549 default y
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001550 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001551 This builds a kernel image that retains relocation information
1552 so it can be loaded someplace besides the default 1MB.
1553 The relocations tend to make the kernel binary about 10% larger,
1554 but are discarded at runtime.
1555
1556 One use is for the kexec on panic case where the recovery kernel
1557 must live at a different physical address than the primary
1558 kernel.
1559
1560 Note: If CONFIG_RELOCATABLE=y, then the kernel runs from the address
1561 it has been loaded at and the compile time physical address
1562 (CONFIG_PHYSICAL_START) is ignored.
1563
H. Peter Anvin845adf72009-05-05 21:20:51 -07001564# Relocation on x86-32 needs some additional build support
1565config X86_NEED_RELOCS
1566 def_bool y
1567 depends on X86_32 && RELOCATABLE
1568
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001569config PHYSICAL_ALIGN
1570 hex
1571 prompt "Alignment value to which kernel should be aligned" if X86_32
H. Peter Anvinceefccc2009-05-11 16:12:16 -07001572 default "0x1000000"
1573 range 0x2000 0x1000000
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001574 ---help---
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001575 This value puts the alignment restrictions on physical address
1576 where kernel is loaded and run from. Kernel is compiled for an
1577 address which meets above alignment restriction.
1578
1579 If bootloader loads the kernel at a non-aligned address and
1580 CONFIG_RELOCATABLE is set, kernel will move itself to nearest
1581 address aligned to above value and run from there.
1582
1583 If bootloader loads the kernel at a non-aligned address and
1584 CONFIG_RELOCATABLE is not set, kernel will ignore the run time
1585 load address and decompress itself to the address it has been
1586 compiled for and run from there. The address for which kernel is
1587 compiled already meets above alignment restrictions. Hence the
1588 end result is that kernel runs from a physical address meeting
1589 above alignment restrictions.
1590
1591 Don't change this unless you know what you are doing.
1592
1593config HOTPLUG_CPU
Dimitri Sivanich7c13e6a2008-08-11 10:46:46 -05001594 bool "Support for hot-pluggable CPUs"
Ingo Molnar4b19ed912009-01-27 17:47:24 +01001595 depends on SMP && HOTPLUG
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001596 ---help---
Dimitri Sivanich7c13e6a2008-08-11 10:46:46 -05001597 Say Y here to allow turning CPUs off and on. CPUs can be
1598 controlled through /sys/devices/system/cpu.
1599 ( Note: power management support will enable this option
1600 automatically on SMP systems. )
1601 Say N if you want to disable CPU hotplug.
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001602
1603config COMPAT_VDSO
Harvey Harrison3c2362e2008-01-30 13:31:03 +01001604 def_bool y
1605 prompt "Compat VDSO support"
Roland McGrathaf65d642008-01-30 13:30:43 +01001606 depends on X86_32 || IA32_EMULATION
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001607 ---help---
Roland McGrathaf65d642008-01-30 13:30:43 +01001608 Map the 32-bit VDSO to the predictable old-style address too.
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001609 ---help---
1610 Say N here if you are running a sufficiently recent glibc
1611 version (2.3.3 or later), to remove the high-mapped
1612 VDSO mapping and to exclusively use the randomized VDSO.
1613
1614 If unsure, say Y.
1615
Tim Bird516cbf32008-08-12 12:52:36 -07001616config CMDLINE_BOOL
1617 bool "Built-in kernel command line"
1618 default n
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001619 ---help---
Tim Bird516cbf32008-08-12 12:52:36 -07001620 Allow for specifying boot arguments to the kernel at
1621 build time. On some systems (e.g. embedded ones), it is
1622 necessary or convenient to provide some or all of the
1623 kernel boot arguments with the kernel itself (that is,
1624 to not rely on the boot loader to provide them.)
1625
1626 To compile command line arguments into the kernel,
1627 set this option to 'Y', then fill in the
1628 the boot arguments in CONFIG_CMDLINE.
1629
1630 Systems with fully functional boot loaders (i.e. non-embedded)
1631 should leave this option set to 'N'.
1632
1633config CMDLINE
1634 string "Built-in kernel command string"
1635 depends on CMDLINE_BOOL
1636 default ""
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001637 ---help---
Tim Bird516cbf32008-08-12 12:52:36 -07001638 Enter arguments here that should be compiled into the kernel
1639 image and used at boot time. If the boot loader provides a
1640 command line at boot time, it is appended to this string to
1641 form the full kernel command line, when the system boots.
1642
1643 However, you can use the CONFIG_CMDLINE_OVERRIDE option to
1644 change this behavior.
1645
1646 In most cases, the command line (whether built-in or provided
1647 by the boot loader) should specify the device for the root
1648 file system.
1649
1650config CMDLINE_OVERRIDE
1651 bool "Built-in command line overrides boot loader arguments"
1652 default n
1653 depends on CMDLINE_BOOL
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001654 ---help---
Tim Bird516cbf32008-08-12 12:52:36 -07001655 Set this option to 'Y' to have the kernel ignore the boot loader
1656 command line, and use ONLY the built-in command line.
1657
1658 This is used to work around broken boot loaders. This should
1659 be set to 'N' under normal conditions.
1660
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001661endmenu
1662
1663config ARCH_ENABLE_MEMORY_HOTPLUG
1664 def_bool y
1665 depends on X86_64 || (X86_32 && HIGHMEM)
1666
Gary Hade35551052008-10-31 10:52:03 -07001667config ARCH_ENABLE_MEMORY_HOTREMOVE
1668 def_bool y
1669 depends on MEMORY_HOTPLUG
1670
Sam Ravnborg506f1d02007-11-09 21:56:54 +01001671config HAVE_ARCH_EARLY_PFN_TO_NID
1672 def_bool X86_64
1673 depends on NUMA
1674
Bjorn Helgaasda85f862008-11-05 13:37:27 -06001675menu "Power management and ACPI options"
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001676
1677config ARCH_HIBERNATION_HEADER
Harvey Harrison3c2362e2008-01-30 13:31:03 +01001678 def_bool y
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001679 depends on X86_64 && HIBERNATION
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001680
1681source "kernel/power/Kconfig"
1682
1683source "drivers/acpi/Kconfig"
1684
Andi Kleena6b68072008-01-30 13:32:49 +01001685config X86_APM_BOOT
1686 bool
1687 default y
1688 depends on APM || APM_MODULE
1689
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001690menuconfig APM
1691 tristate "APM (Advanced Power Management) BIOS support"
Ingo Molnarefefa6f2008-07-10 16:09:50 +02001692 depends on X86_32 && PM_SLEEP
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001693 ---help---
1694 APM is a BIOS specification for saving power using several different
1695 techniques. This is mostly useful for battery powered laptops with
1696 APM compliant BIOSes. If you say Y here, the system time will be
1697 reset after a RESUME operation, the /proc/apm device will provide
1698 battery status information, and user-space programs will receive
1699 notification of APM "events" (e.g. battery status change).
1700
1701 If you select "Y" here, you can disable actual use of the APM
1702 BIOS by passing the "apm=off" option to the kernel at boot time.
1703
1704 Note that the APM support is almost completely disabled for
1705 machines with more than one CPU.
1706
1707 In order to use APM, you will need supporting software. For location
Randy Dunlap53471122008-03-12 18:10:51 -04001708 and more information, read <file:Documentation/power/pm.txt> and the
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001709 Battery Powered Linux mini-HOWTO, available from
1710 <http://www.tldp.org/docs.html#howto>.
1711
1712 This driver does not spin down disk drives (see the hdparm(8)
1713 manpage ("man 8 hdparm") for that), and it doesn't turn off
1714 VESA-compliant "green" monitors.
1715
1716 This driver does not support the TI 4000M TravelMate and the ACER
1717 486/DX4/75 because they don't have compliant BIOSes. Many "green"
1718 desktop machines also don't have compliant BIOSes, and this driver
1719 may cause those machines to panic during the boot phase.
1720
1721 Generally, if you don't have a battery in your machine, there isn't
1722 much point in using this driver and you should say N. If you get
1723 random kernel OOPSes or reboots that don't seem to be related to
1724 anything, try disabling/enabling this option (or disabling/enabling
1725 APM in your BIOS).
1726
1727 Some other things you should try when experiencing seemingly random,
1728 "weird" problems:
1729
1730 1) make sure that you have enough swap space and that it is
1731 enabled.
1732 2) pass the "no-hlt" option to the kernel
1733 3) switch on floating point emulation in the kernel and pass
1734 the "no387" option to the kernel
1735 4) pass the "floppy=nodma" option to the kernel
1736 5) pass the "mem=4M" option to the kernel (thereby disabling
1737 all but the first 4 MB of RAM)
1738 6) make sure that the CPU is not over clocked.
1739 7) read the sig11 FAQ at <http://www.bitwizard.nl/sig11/>
1740 8) disable the cache from your BIOS settings
1741 9) install a fan for the video card or exchange video RAM
1742 10) install a better fan for the CPU
1743 11) exchange RAM chips
1744 12) exchange the motherboard.
1745
1746 To compile this driver as a module, choose M here: the
1747 module will be called apm.
1748
1749if APM
1750
1751config APM_IGNORE_USER_SUSPEND
1752 bool "Ignore USER SUSPEND"
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001753 ---help---
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001754 This option will ignore USER SUSPEND requests. On machines with a
1755 compliant APM BIOS, you want to say N. However, on the NEC Versa M
1756 series notebooks, it is necessary to say Y because of a BIOS bug.
1757
1758config APM_DO_ENABLE
1759 bool "Enable PM at boot time"
1760 ---help---
1761 Enable APM features at boot time. From page 36 of the APM BIOS
1762 specification: "When disabled, the APM BIOS does not automatically
1763 power manage devices, enter the Standby State, enter the Suspend
1764 State, or take power saving steps in response to CPU Idle calls."
1765 This driver will make CPU Idle calls when Linux is idle (unless this
1766 feature is turned off -- see "Do CPU IDLE calls", below). This
1767 should always save battery power, but more complicated APM features
1768 will be dependent on your BIOS implementation. You may need to turn
1769 this option off if your computer hangs at boot time when using APM
1770 support, or if it beeps continuously instead of suspending. Turn
1771 this off if you have a NEC UltraLite Versa 33/C or a Toshiba
1772 T400CDT. This is off by default since most machines do fine without
1773 this feature.
1774
1775config APM_CPU_IDLE
1776 bool "Make CPU Idle calls when idle"
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001777 ---help---
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001778 Enable calls to APM CPU Idle/CPU Busy inside the kernel's idle loop.
1779 On some machines, this can activate improved power savings, such as
1780 a slowed CPU clock rate, when the machine is idle. These idle calls
1781 are made after the idle loop has run for some length of time (e.g.,
1782 333 mS). On some machines, this will cause a hang at boot time or
1783 whenever the CPU becomes idle. (On machines with more than one CPU,
1784 this option does nothing.)
1785
1786config APM_DISPLAY_BLANK
1787 bool "Enable console blanking using APM"
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001788 ---help---
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001789 Enable console blanking using the APM. Some laptops can use this to
1790 turn off the LCD backlight when the screen blanker of the Linux
1791 virtual console blanks the screen. Note that this is only used by
1792 the virtual console screen blanker, and won't turn off the backlight
1793 when using the X Window system. This also doesn't have anything to
1794 do with your VESA-compliant power-saving monitor. Further, this
1795 option doesn't work for all laptops -- it might not turn off your
1796 backlight at all, or it might print a lot of errors to the console,
1797 especially if you are using gpm.
1798
1799config APM_ALLOW_INTS
1800 bool "Allow interrupts during APM BIOS calls"
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001801 ---help---
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001802 Normally we disable external interrupts while we are making calls to
1803 the APM BIOS as a measure to lessen the effects of a badly behaving
1804 BIOS implementation. The BIOS should reenable interrupts if it
1805 needs to. Unfortunately, some BIOSes do not -- especially those in
1806 many of the newer IBM Thinkpads. If you experience hangs when you
1807 suspend, try setting this to Y. Otherwise, say N.
1808
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001809endif # APM
1810
1811source "arch/x86/kernel/cpu/cpufreq/Kconfig"
1812
1813source "drivers/cpuidle/Kconfig"
1814
Andy Henroid27471fd2008-10-09 11:45:22 -07001815source "drivers/idle/Kconfig"
1816
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001817endmenu
1818
1819
1820menu "Bus options (PCI etc.)"
1821
1822config PCI
Ingo Molnar1ac97012008-05-19 14:10:14 +02001823 bool "PCI support"
Adrian Bunk1c858082008-01-30 13:32:32 +01001824 default y
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001825 select ARCH_SUPPORTS_MSI if (X86_LOCAL_APIC && X86_IO_APIC)
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001826 ---help---
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001827 Find out whether you have a PCI motherboard. PCI is the name of a
1828 bus system, i.e. the way the CPU talks to the other stuff inside
1829 your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or
1830 VESA. If you have PCI, say Y, otherwise N.
1831
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001832choice
1833 prompt "PCI access mode"
Ingo Molnarefefa6f2008-07-10 16:09:50 +02001834 depends on X86_32 && PCI
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001835 default PCI_GOANY
1836 ---help---
1837 On PCI systems, the BIOS can be used to detect the PCI devices and
1838 determine their configuration. However, some old PCI motherboards
1839 have BIOS bugs and may crash if this is done. Also, some embedded
1840 PCI-based systems don't have any BIOS at all. Linux can also try to
1841 detect the PCI hardware directly without using the BIOS.
1842
1843 With this option, you can specify how Linux should detect the
1844 PCI devices. If you choose "BIOS", the BIOS will be used,
1845 if you choose "Direct", the BIOS won't be used, and if you
1846 choose "MMConfig", then PCI Express MMCONFIG will be used.
1847 If you choose "Any", the kernel will try MMCONFIG, then the
1848 direct access method and falls back to the BIOS if that doesn't
1849 work. If unsure, go with the default, which is "Any".
1850
1851config PCI_GOBIOS
1852 bool "BIOS"
1853
1854config PCI_GOMMCONFIG
1855 bool "MMConfig"
1856
1857config PCI_GODIRECT
1858 bool "Direct"
1859
Andres Salomon3ef0e1f2008-04-29 00:59:53 -07001860config PCI_GOOLPC
1861 bool "OLPC"
1862 depends on OLPC
1863
Andres Salomon2bdd1b02008-06-05 14:14:41 -07001864config PCI_GOANY
1865 bool "Any"
1866
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001867endchoice
1868
1869config PCI_BIOS
Harvey Harrison3c2362e2008-01-30 13:31:03 +01001870 def_bool y
Ingo Molnarefefa6f2008-07-10 16:09:50 +02001871 depends on X86_32 && PCI && (PCI_GOBIOS || PCI_GOANY)
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001872
1873# x86-64 doesn't support PCI BIOS access from long mode so always go direct.
1874config PCI_DIRECT
Harvey Harrison3c2362e2008-01-30 13:31:03 +01001875 def_bool y
Ingo Molnarefefa6f2008-07-10 16:09:50 +02001876 depends on PCI && (X86_64 || (PCI_GODIRECT || PCI_GOANY || PCI_GOOLPC))
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001877
1878config PCI_MMCONFIG
Harvey Harrison3c2362e2008-01-30 13:31:03 +01001879 def_bool y
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001880 depends on X86_32 && PCI && ACPI && (PCI_GOMMCONFIG || PCI_GOANY)
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001881
Andres Salomon3ef0e1f2008-04-29 00:59:53 -07001882config PCI_OLPC
Andres Salomon2bdd1b02008-06-05 14:14:41 -07001883 def_bool y
1884 depends on PCI && OLPC && (PCI_GOOLPC || PCI_GOANY)
Andres Salomon3ef0e1f2008-04-29 00:59:53 -07001885
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001886config PCI_DOMAINS
Harvey Harrison3c2362e2008-01-30 13:31:03 +01001887 def_bool y
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001888 depends on PCI
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001889
1890config PCI_MMCONFIG
1891 bool "Support mmconfig PCI config space access"
1892 depends on X86_64 && PCI && ACPI
1893
1894config DMAR
1895 bool "Support for DMA Remapping Devices (EXPERIMENTAL)"
David Woodhouse4cf2e752009-02-11 17:23:43 +00001896 depends on PCI_MSI && ACPI && EXPERIMENTAL
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001897 help
1898 DMA remapping (DMAR) devices support enables independent address
1899 translations for Direct Memory Access (DMA) from devices.
1900 These DMA remapping devices are reported via ACPI tables
1901 and include PCI device scope covered by these DMA
1902 remapping devices.
1903
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -08001904config DMAR_DEFAULT_ON
Kyle McMartinf6be37f2009-02-26 12:57:56 -05001905 def_bool y
Kyle McMartin0cd5c3c2009-02-04 14:29:19 -08001906 prompt "Enable DMA Remapping Devices by default"
1907 depends on DMAR
1908 help
1909 Selecting this option will enable a DMAR device at boot time if
1910 one is found. If this option is not selected, DMAR support can
1911 be enabled by passing intel_iommu=on to the kernel. It is
1912 recommended you say N here while the DMAR code remains
1913 experimental.
1914
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001915config DMAR_GFX_WA
Harvey Harrison3c2362e2008-01-30 13:31:03 +01001916 def_bool y
1917 prompt "Support for Graphics workaround"
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001918 depends on DMAR
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001919 ---help---
1920 Current Graphics drivers tend to use physical address
1921 for DMA and avoid using DMA APIs. Setting this config
1922 option permits the IOMMU driver to set a unity map for
1923 all the OS-visible memory. Hence the driver can continue
1924 to use physical addresses for DMA.
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001925
1926config DMAR_FLOPPY_WA
Harvey Harrison3c2362e2008-01-30 13:31:03 +01001927 def_bool y
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001928 depends on DMAR
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001929 ---help---
1930 Floppy disk drivers are know to bypass DMA API calls
1931 thereby failing to work when IOMMU is enabled. This
1932 workaround will setup a 1:1 mapping for the first
1933 16M to make floppy (an ISA device) work.
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001934
Suresh Siddha9fa8c482008-07-10 11:17:00 -07001935config INTR_REMAP
1936 bool "Support for Interrupt Remapping (EXPERIMENTAL)"
1937 depends on X86_64 && X86_IO_APIC && PCI_MSI && ACPI && EXPERIMENTAL
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001938 ---help---
1939 Supports Interrupt remapping for IO-APIC and MSI devices.
1940 To use x2apic mode in the CPU's which support x2APIC enhancements or
1941 to support platforms with CPU's having > 8 bit APIC ID, say Y.
Suresh Siddha9fa8c482008-07-10 11:17:00 -07001942
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001943source "drivers/pci/pcie/Kconfig"
1944
1945source "drivers/pci/Kconfig"
1946
1947# x86_64 have no ISA slots, but do have ISA-style DMA.
1948config ISA_DMA_API
Harvey Harrison3c2362e2008-01-30 13:31:03 +01001949 def_bool y
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001950
1951if X86_32
1952
1953config ISA
1954 bool "ISA support"
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001955 ---help---
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001956 Find out whether you have ISA slots on your motherboard. ISA is the
1957 name of a bus system, i.e. the way the CPU talks to the other stuff
1958 inside your box. Other bus systems are PCI, EISA, MicroChannel
1959 (MCA) or VESA. ISA is an older system, now being displaced by PCI;
1960 newer boards don't support it. If you have ISA, say Y, otherwise N.
1961
1962config EISA
1963 bool "EISA support"
1964 depends on ISA
1965 ---help---
1966 The Extended Industry Standard Architecture (EISA) bus was
1967 developed as an open alternative to the IBM MicroChannel bus.
1968
1969 The EISA bus provided some of the features of the IBM MicroChannel
1970 bus while maintaining backward compatibility with cards made for
1971 the older ISA bus. The EISA bus saw limited use between 1988 and
1972 1995 when it was made obsolete by the PCI bus.
1973
1974 Say Y here if you are building a kernel for an EISA-based machine.
1975
1976 Otherwise, say N.
1977
1978source "drivers/eisa/Kconfig"
1979
1980config MCA
Ingo Molnar72ee6eb2009-01-27 16:57:49 +01001981 bool "MCA support"
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001982 ---help---
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001983 MicroChannel Architecture is found in some IBM PS/2 machines and
1984 laptops. It is a bus system similar to PCI or ISA. See
1985 <file:Documentation/mca.txt> (and especially the web page given
1986 there) before attempting to build an MCA bus kernel.
1987
1988source "drivers/mca/Kconfig"
1989
1990config SCx200
1991 tristate "NatSemi SCx200 support"
Ingo Molnar8f9ca472009-02-05 16:21:53 +01001992 ---help---
Sam Ravnborge279b6c2007-11-06 20:41:05 +01001993 This provides basic support for National Semiconductor's
1994 (now AMD's) Geode processors. The driver probes for the
1995 PCI-IDs of several on-chip devices, so its a good dependency
1996 for other scx200_* drivers.
1997
1998 If compiled as a module, the driver is named scx200.
1999
2000config SCx200HR_TIMER
2001 tristate "NatSemi SCx200 27MHz High-Resolution Timer Support"
2002 depends on SCx200 && GENERIC_TIME
2003 default y
Ingo Molnar8f9ca472009-02-05 16:21:53 +01002004 ---help---
Sam Ravnborge279b6c2007-11-06 20:41:05 +01002005 This driver provides a clocksource built upon the on-chip
2006 27MHz high-resolution timer. Its also a workaround for
2007 NSC Geode SC-1100's buggy TSC, which loses time when the
2008 processor goes idle (as is done by the scheduler). The
2009 other workaround is idle=poll boot option.
2010
2011config GEODE_MFGPT_TIMER
Harvey Harrison3c2362e2008-01-30 13:31:03 +01002012 def_bool y
2013 prompt "Geode Multi-Function General Purpose Timer (MFGPT) events"
Sam Ravnborge279b6c2007-11-06 20:41:05 +01002014 depends on MGEODE_LX && GENERIC_TIME && GENERIC_CLOCKEVENTS
Ingo Molnar8f9ca472009-02-05 16:21:53 +01002015 ---help---
Sam Ravnborge279b6c2007-11-06 20:41:05 +01002016 This driver provides a clock event source based on the MFGPT
2017 timer(s) in the CS5535 and CS5536 companion chip for the geode.
2018 MFGPTs have a better resolution and max interval than the
2019 generic PIT, and are suitable for use as high-res timers.
2020
Andres Salomon3ef0e1f2008-04-29 00:59:53 -07002021config OLPC
2022 bool "One Laptop Per Child support"
2023 default n
Ingo Molnar8f9ca472009-02-05 16:21:53 +01002024 ---help---
Andres Salomon3ef0e1f2008-04-29 00:59:53 -07002025 Add support for detecting the unique features of the OLPC
2026 XO hardware.
2027
Sam Ravnborgbc0120f2007-11-06 23:10:39 +01002028endif # X86_32
2029
Sam Ravnborge279b6c2007-11-06 20:41:05 +01002030config K8_NB
2031 def_bool y
Sam Ravnborgbc0120f2007-11-06 23:10:39 +01002032 depends on AGP_AMD64 || (X86_64 && (GART_IOMMU || (PCI && NUMA)))
Sam Ravnborge279b6c2007-11-06 20:41:05 +01002033
2034source "drivers/pcmcia/Kconfig"
2035
2036source "drivers/pci/hotplug/Kconfig"
2037
2038endmenu
2039
2040
2041menu "Executable file formats / Emulations"
2042
2043source "fs/Kconfig.binfmt"
2044
2045config IA32_EMULATION
2046 bool "IA32 Emulation"
2047 depends on X86_64
Roland McGratha97f52e2008-01-30 13:31:55 +01002048 select COMPAT_BINFMT_ELF
Ingo Molnar8f9ca472009-02-05 16:21:53 +01002049 ---help---
Sam Ravnborge279b6c2007-11-06 20:41:05 +01002050 Include code to run 32-bit programs under a 64-bit kernel. You should
2051 likely turn this on, unless you're 100% sure that you don't have any
2052 32-bit programs left.
2053
2054config IA32_AOUT
Ingo Molnar8f9ca472009-02-05 16:21:53 +01002055 tristate "IA32 a.out support"
2056 depends on IA32_EMULATION
2057 ---help---
2058 Support old a.out binaries in the 32bit emulation.
Sam Ravnborge279b6c2007-11-06 20:41:05 +01002059
2060config COMPAT
Harvey Harrison3c2362e2008-01-30 13:31:03 +01002061 def_bool y
Sam Ravnborge279b6c2007-11-06 20:41:05 +01002062 depends on IA32_EMULATION
Sam Ravnborge279b6c2007-11-06 20:41:05 +01002063
2064config COMPAT_FOR_U64_ALIGNMENT
2065 def_bool COMPAT
2066 depends on X86_64
2067
2068config SYSVIPC_COMPAT
Harvey Harrison3c2362e2008-01-30 13:31:03 +01002069 def_bool y
Alexey Dobriyanb8992192008-09-14 13:44:41 +04002070 depends on COMPAT && SYSVIPC
Sam Ravnborge279b6c2007-11-06 20:41:05 +01002071
2072endmenu
2073
2074
Keith Packarde5beae12008-11-03 18:21:45 +01002075config HAVE_ATOMIC_IOMAP
2076 def_bool y
2077 depends on X86_32
2078
Sam Ravnborge279b6c2007-11-06 20:41:05 +01002079source "net/Kconfig"
2080
2081source "drivers/Kconfig"
2082
2083source "drivers/firmware/Kconfig"
2084
2085source "fs/Kconfig"
2086
Sam Ravnborge279b6c2007-11-06 20:41:05 +01002087source "arch/x86/Kconfig.debug"
2088
2089source "security/Kconfig"
2090
2091source "crypto/Kconfig"
2092
Avi Kivityedf88412007-12-16 11:02:48 +02002093source "arch/x86/kvm/Kconfig"
2094
Sam Ravnborge279b6c2007-11-06 20:41:05 +01002095source "lib/Kconfig"