- 2.6.17 port work build breaks, but the patch set is relativly stable
[linux-flexiantxendom0-3.2.10.git] / arch / x86_64 / Kconfig
1 #
2 # For a description of the syntax of this configuration file,
3 # see Documentation/kbuild/kconfig-language.txt.
4 #
5 # Note: ISA is disabled and will hopefully never be enabled.
6 # If you managed to buy an ISA x86-64 box you'll have to fix all the
7 # ISA drivers you need yourself.
8 #
9
10 mainmenu "Linux Kernel Configuration"
11
12 config X86_64
13         bool
14         default y
15         help
16           Port to the x86-64 architecture. x86-64 is a 64-bit extension to the
17           classical 32-bit x86 architecture. For details see
18           <http://www.x86-64.org/>.
19
20 config 64BIT
21         def_bool y
22
23 config X86
24         bool
25         default y
26
27 config SEMAPHORE_SLEEPERS
28         bool
29         default y
30
31 config MMU
32         bool
33         default y
34
35 config ISA
36         bool
37
38 config SBUS
39         bool
40
41 config RWSEM_GENERIC_SPINLOCK
42         bool
43         default y
44
45 config RWSEM_XCHGADD_ALGORITHM
46         bool
47
48 config GENERIC_HWEIGHT
49         bool
50         default y
51
52 config GENERIC_CALIBRATE_DELAY
53         bool
54         default y
55
56 config X86_CMPXCHG
57         bool
58         default y
59
60 config EARLY_PRINTK
61         bool
62         default y
63
64 config GENERIC_ISA_DMA
65         bool
66         default y
67
68 config GENERIC_IOMAP
69         bool
70         default y
71
72 config ARCH_MAY_HAVE_PC_FDC
73         bool
74         default y
75
76 config DMI
77         bool
78         default y
79
80 source "init/Kconfig"
81
82
83 menu "Processor type and features"
84
85 choice
86         prompt "Subarchitecture Type"
87         default X86_PC
88
89 config X86_PC
90         bool "PC-compatible"
91         help
92           Choose this option if your computer is a standard PC or compatible.
93
94 config X86_VSMP
95         bool "Support for ScaleMP vSMP"
96          help
97           Support for ScaleMP vSMP systems.  Say 'Y' here if this kernel is
98           supposed to run on these EM64T-based machines.  Only choose this option
99           if you have one of these machines.
100
101 endchoice
102
103 choice
104         prompt "Processor family"
105         default MK8
106
107 config MK8
108         bool "AMD-Opteron/Athlon64"
109         help
110           Optimize for AMD Opteron/Athlon64/Hammer/K8 CPUs.
111
112 config MPSC
113        bool "Intel EM64T"
114        help
115           Optimize for Intel Pentium 4 and Xeon CPUs with Intel
116           Extended Memory 64 Technology(EM64T). For details see
117           <http://www.intel.com/technology/64bitextensions/>.
118
119 config GENERIC_CPU
120         bool "Generic-x86-64"
121         help
122           Generic x86-64 CPU.
123
124 endchoice
125
126 config X86_64_XEN
127         bool "Enable Xen compatible kernel"
128         select SWIOTLB
129         help
130           This option will compile a kernel compatible with Xen hypervisor
131
132 config X86_NO_TSS
133         bool
134         depends on X86_64_XEN
135         default y
136
137 config X86_NO_IDT
138         bool
139         depends on X86_64_XEN
140         default y
141
142 #
143 # Define implied options from the CPU selection here
144 #
145 config X86_L1_CACHE_BYTES
146         int
147         default "128" if GENERIC_CPU || MPSC
148         default "64" if MK8
149
150 config X86_L1_CACHE_SHIFT
151         int
152         default "7" if GENERIC_CPU || MPSC
153         default "6" if MK8
154
155 config X86_INTERNODE_CACHE_BYTES
156         int
157         default "4096" if X86_VSMP
158         default X86_L1_CACHE_BYTES if !X86_VSMP
159
160 config X86_TSC
161         bool
162         depends on !X86_64_XEN
163         default y
164
165 config X86_GOOD_APIC
166         bool
167         default y
168
169 config MICROCODE
170         tristate "/dev/cpu/microcode - Intel CPU microcode support"
171         ---help---
172           If you say Y here the 'File systems' section, you will be
173           able to update the microcode on Intel processors. You will
174           obviously need the actual microcode binary data itself which is
175           not shipped with the Linux kernel.
176
177           For latest news and information on obtaining all the required
178           ingredients for this driver, check:
179           <http://www.urbanmyth.org/microcode/>.
180
181           To compile this driver as a module, choose M here: the
182           module will be called microcode.
183           If you use modprobe or kmod you may also want to add the line
184           'alias char-major-10-184 microcode' to your /etc/modules.conf file.
185
186 config X86_MSR
187         tristate "/dev/cpu/*/msr - Model-specific register support"
188         help
189           This device gives privileged processes access to the x86
190           Model-Specific Registers (MSRs).  It is a character device with
191           major 202 and minors 0 to 31 for /dev/cpu/0/msr to /dev/cpu/31/msr.
192           MSR accesses are directed to a specific CPU on multi-processor
193           systems.
194
195 config X86_CPUID
196         tristate "/dev/cpu/*/cpuid - CPU information support"
197         help
198           This device gives processes access to the x86 CPUID instruction to
199           be executed on a specific processor.  It is a character device
200           with major 203 and minors 0 to 31 for /dev/cpu/0/cpuid to
201           /dev/cpu/31/cpuid.
202
203 config X86_HT
204         bool
205         depends on SMP && !MK8 && !X86_64_XEN
206         default y
207
208 config MATH_EMULATION
209         bool
210
211 config MCA
212         bool
213
214 config EISA
215         bool
216
217 config X86_IO_APIC
218         bool
219         depends !XEN_UNPRIVILEGED_GUEST
220         default y
221
222 config X86_XEN_GENAPIC
223         bool
224         depends X86_64_XEN
225         default XEN_PRIVILEGED_GUEST || SMP
226
227 config X86_LOCAL_APIC
228         bool
229         depends !XEN_UNPRIVILEGED_GUEST
230         default y
231
232 config MTRR
233         bool "MTRR (Memory Type Range Register) support"
234         depends on !XEN_UNPRIVILEGED_GUEST
235         ---help---
236           On Intel P6 family processors (Pentium Pro, Pentium II and later)
237           the Memory Type Range Registers (MTRRs) may be used to control
238           processor access to memory ranges. This is most useful if you have
239           a video (VGA) card on a PCI or AGP bus. Enabling write-combining
240           allows bus write transfers to be combined into a larger transfer
241           before bursting over the PCI/AGP bus. This can increase performance
242           of image write operations 2.5 times or more. Saying Y here creates a
243           /proc/mtrr file which may be used to manipulate your processor's
244           MTRRs. Typically the X server should use this.
245
246           This code has a reasonably generic interface so that similar
247           control registers on other processors can be easily supported
248           as well.
249
250           Saying Y here also fixes a problem with buggy SMP BIOSes which only
251           set the MTRRs for the boot CPU and not for the secondary CPUs. This
252           can lead to all sorts of problems, so it's good to say Y here.
253
254           Just say Y here, all x86-64 machines support MTRRs.
255
256           See <file:Documentation/mtrr.txt> for more information.
257
258 config SMP
259         bool "Symmetric multi-processing support"
260         ---help---
261           This enables support for systems with more than one CPU. If you have
262           a system with only one CPU, like most personal computers, say N. If
263           you have a system with more than one CPU, say Y.
264
265           If you say N here, the kernel will run on single and multiprocessor
266           machines, but will use only one CPU of a multiprocessor machine. If
267           you say Y here, the kernel will run on many, but not all,
268           singleprocessor machines. On a singleprocessor machine, the kernel
269           will run faster if you say N here.
270
271           If you don't know what to do here, say N.
272
273 config SCHED_SMT
274         bool "SMT (Hyperthreading) scheduler support"
275         depends on SMP && !X86_64_XEN
276         default n
277         help
278           SMT scheduler support improves the CPU scheduler's decision making
279           when dealing with Intel Pentium 4 chips with HyperThreading at a
280           cost of slightly increased overhead in some places. If unsure say
281           N here.
282
283 config SCHED_MC
284         bool "Multi-core scheduler support"
285         depends on SMP
286         default y
287         help
288           Multi-core scheduler support improves the CPU scheduler's decision
289           making when dealing with multi-core CPU chips at a cost of slightly
290           increased overhead in some places. If unsure say N here.
291
292 source "kernel/Kconfig.preempt"
293
294 config NUMA
295        bool "Non Uniform Memory Access (NUMA) Support"
296        depends on SMP && !X86_64_XEN
297        help
298          Enable NUMA (Non Uniform Memory Access) support. The kernel 
299          will try to allocate memory used by a CPU on the local memory 
300          controller of the CPU and add some more NUMA awareness to the kernel.
301          This code is recommended on all multiprocessor Opteron systems.
302          If the system is EM64T, you should say N unless your system is EM64T 
303          NUMA. 
304
305 config K8_NUMA
306        bool "Old style AMD Opteron NUMA detection"
307        depends on NUMA
308        default y
309        help
310          Enable K8 NUMA node topology detection.  You should say Y here if
311          you have a multi processor AMD K8 system. This uses an old
312          method to read the NUMA configurtion directly from the builtin
313          Northbridge of Opteron. It is recommended to use X86_64_ACPI_NUMA
314          instead, which also takes priority if both are compiled in.   
315
316 config NODES_SHIFT
317         int
318         default "6"
319         depends on NEED_MULTIPLE_NODES
320
321 # Dummy CONFIG option to select ACPI_NUMA from drivers/acpi/Kconfig.
322
323 config X86_64_ACPI_NUMA
324        bool "ACPI NUMA detection"
325        depends on NUMA
326        select ACPI 
327        select ACPI_NUMA
328        default y
329        help
330          Enable ACPI SRAT based node topology detection.
331
332 config NUMA_EMU
333         bool "NUMA emulation"
334         depends on NUMA
335         help
336           Enable NUMA emulation. A flat machine will be split
337           into virtual nodes when booted with "numa=fake=N", where N is the
338           number of nodes. This is only useful for debugging.
339
340 config ARCH_DISCONTIGMEM_ENABLE
341        bool
342        depends on NUMA
343        default y
344
345
346 config ARCH_DISCONTIGMEM_ENABLE
347         def_bool y
348         depends on NUMA
349
350 config ARCH_DISCONTIGMEM_DEFAULT
351         def_bool y
352         depends on NUMA
353
354 config ARCH_SPARSEMEM_ENABLE
355         def_bool y
356         depends on (NUMA || EXPERIMENTAL)
357
358 config ARCH_MEMORY_PROBE
359         def_bool y
360         depends on MEMORY_HOTPLUG
361
362 config ARCH_FLATMEM_ENABLE
363         def_bool y
364         depends on !NUMA
365
366 source "mm/Kconfig"
367
368 config HAVE_ARCH_EARLY_PFN_TO_NID
369         def_bool y
370         depends on NUMA
371
372 config OUT_OF_LINE_PFN_TO_PAGE
373         def_bool y
374         depends on DISCONTIGMEM
375
376 config NR_CPUS
377         int "Maximum number of CPUs (2-256)"
378         range 2 255
379         depends on SMP
380         default "16" if X86_64_XEN
381         default "8"
382         help
383           This allows you to specify the maximum number of CPUs which this
384           kernel will support. Current maximum is 256 CPUs due to
385           APIC addressing limits. Less depending on the hardware.
386
387           This is purely to save memory - each supported CPU requires
388           memory in the static kernel configuration.
389
390 config HOTPLUG_CPU
391         bool "Support for hot-pluggable CPUs (EXPERIMENTAL)"
392         depends on SMP && HOTPLUG && EXPERIMENTAL
393         help
394                 Say Y here to experiment with turning CPUs off and on.  CPUs
395                 can be controlled through /sys/devices/system/cpu/cpu#.
396                 Say N if you want to disable CPU hotplug.
397
398
399 config HPET_TIMER
400         bool
401         depends on !X86_64_XEN
402         default y
403         help
404           Use the IA-PC HPET (High Precision Event Timer) to manage
405           time in preference to the PIT and RTC, if a HPET is
406           present.  The HPET provides a stable time base on SMP
407           systems, unlike the TSC, but it is more expensive to access,
408           as it is off-chip.  You can find the HPET spec at
409           <http://www.intel.com/hardwaredesign/hpetspec.htm>.
410
411 config HPET_EMULATE_RTC
412         bool "Provide RTC interrupt"
413         depends on HPET_TIMER && RTC=y
414
415 config GART_IOMMU
416         bool "K8 GART IOMMU support"
417         default y
418         select SWIOTLB
419         depends on PCI && !X86_64_XEN
420         help
421           Support for hardware IOMMU in AMD's Opteron/Athlon64 Processors
422           and for the bounce buffering software IOMMU.
423           Needed to run systems with more than 3GB of memory properly with
424           32-bit PCI devices that do not support DAC (Double Address Cycle).
425           The IOMMU can be turned off at runtime with the iommu=off parameter.
426           Normally the kernel will take the right choice by itself.
427           This option includes a driver for the AMD Opteron/Athlon64 IOMMU
428           northbridge and a software emulation used on other systems without
429           hardware IOMMU.  If unsure, say Y.
430
431 # need this always enabled with GART_IOMMU for the VIA workaround
432 config SWIOTLB
433         bool
434         default y
435         depends on GART_IOMMU
436
437 config X86_MCE
438         bool "Machine check support" if EMBEDDED
439         depends on !X86_64_XEN
440         default y
441         help
442            Include a machine check error handler to report hardware errors.
443            This version will require the mcelog utility to decode some
444            machine check error logs. See
445            ftp://ftp.x86-64.org/pub/linux/tools/mcelog
446
447 config X86_MCE_INTEL
448         bool "Intel MCE features"
449         depends on X86_MCE && X86_LOCAL_APIC
450         default y
451         help
452            Additional support for intel specific MCE features such as
453            the thermal monitor.
454
455 config X86_MCE_AMD
456         bool "AMD MCE features"
457         depends on X86_MCE && X86_LOCAL_APIC
458         default y
459         help
460            Additional support for AMD specific MCE features such as
461            the DRAM Error Threshold.
462
463 config KEXEC
464         bool "kexec system call (EXPERIMENTAL)"
465         depends on EXPERIMENTAL && !X86_64_XEN
466         help
467           kexec is a system call that implements the ability to shutdown your
468           current kernel, and to start another kernel.  It is like a reboot
469           but it is indepedent of the system firmware.   And like a reboot
470           you can start any kernel with it, not just Linux.
471
472           The name comes from the similiarity to the exec system call.
473
474           It is an ongoing process to be certain the hardware in a machine
475           is properly shutdown, so do not be surprised if this code does not
476           initially work for you.  It may help to enable device hotplugging
477           support.  As of this writing the exact hardware interface is
478           strongly in flux, so no good recommendation can be made.
479
480 config CRASH_DUMP
481         bool "kernel crash dumps (EXPERIMENTAL)"
482         depends on EXPERIMENTAL
483         help
484                 Generate crash dump after being started by kexec.
485
486 config PHYSICAL_START
487         hex "Physical address where the kernel is loaded" if (EMBEDDED || CRASH_DUMP)
488         default "0x1000000" if CRASH_DUMP
489         default "0x200000"
490         help
491           This gives the physical address where the kernel is loaded. Normally
492           for regular kernels this value is 0x200000 (2MB). But in the case
493           of kexec on panic the fail safe kernel needs to run at a different
494           address than the panic-ed kernel. This option is used to set the load
495           address for kernels used to capture crash dump on being kexec'ed
496           after panic. The default value for crash dump kernels is
497           0x1000000 (16MB). This can also be set based on the "X" value as
498           specified in the "crashkernel=YM@XM" command line boot parameter
499           passed to the panic-ed kernel. Typically this parameter is set as
500           crashkernel=64M@16M. Please take a look at
501           Documentation/kdump/kdump.txt for more details about crash dumps.
502
503           Don't change this unless you know what you are doing.
504
505 config SECCOMP
506         bool "Enable seccomp to safely compute untrusted bytecode"
507         depends on PROC_FS
508         default y
509         help
510           This kernel feature is useful for number crunching applications
511           that may need to compute untrusted bytecode during their
512           execution. By using pipes or other transports made available to
513           the process as file descriptors supporting the read/write
514           syscalls, it's possible to isolate those applications in
515           their own address space using seccomp. Once seccomp is
516           enabled via /proc/<pid>/seccomp, it cannot be disabled
517           and the task is only allowed to execute a few safe syscalls
518           defined by each seccomp mode.
519
520           If unsure, say Y. Only embedded should say N here.
521
522 source kernel/Kconfig.hz
523
524 config REORDER
525         bool "Function reordering"
526         default n
527         help
528          This option enables the toolchain to reorder functions for a more 
529          optimal TLB usage. If you have pretty much any version of binutils, 
530          this can increase your kernel build time by roughly one minute.
531
532 endmenu
533
534 #
535 # Use the generic interrupt handling code in kernel/irq/:
536 #
537 config GENERIC_HARDIRQS
538         bool
539         default y
540
541 config GENERIC_IRQ_PROBE
542         bool
543         default y
544
545 # we have no ISA slots, but we do have ISA-style DMA.
546 config ISA_DMA_API
547         bool
548         default y
549
550 config GENERIC_PENDING_IRQ
551         bool
552         depends on GENERIC_HARDIRQS && SMP
553         default y
554
555 menu "Power management options"
556         depends on !XEN_UNPRIVILEGED_GUEST
557
558 if !X86_64_XEN
559 source kernel/power/Kconfig
560 endif
561
562 source "drivers/acpi/Kconfig"
563
564 source "arch/x86_64/kernel/cpufreq/Kconfig"
565
566 endmenu
567
568 menu "Bus options (PCI etc.)"
569
570 config PCI
571         bool "PCI support"
572
573 # x86-64 doesn't support PCI BIOS access from long mode so always go direct.
574 config PCI_DIRECT
575         bool
576         depends on PCI
577         default y
578
579 config PCI_MMCONFIG
580         bool "Support mmconfig PCI config space access"
581         depends on PCI && ACPI
582
583 config XEN_PCIDEV_FRONTEND
584         bool "Xen PCI Frontend"
585         depends on PCI && X86_64_XEN
586         default y
587         help
588           The PCI device frontend driver allows the kernel to import arbitrary
589           PCI devices from a PCI backend to support PCI driver domains.
590
591 config XEN_PCIDEV_FE_DEBUG
592         bool "Xen PCI Frontend Debugging"
593         depends on XEN_PCIDEV_FRONTEND
594         default n
595         help
596           Enables some debug statements within the PCI Frontend.
597
598 source "drivers/pci/pcie/Kconfig"
599
600 source "drivers/pci/Kconfig"
601
602 source "drivers/pcmcia/Kconfig"
603
604 source "drivers/pci/hotplug/Kconfig"
605
606 endmenu
607
608
609 menu "Executable file formats / Emulations"
610
611 source "fs/Kconfig.binfmt"
612
613 config IA32_EMULATION
614         bool "IA32 Emulation"
615         help
616           Include code to run 32-bit programs under a 64-bit kernel. You should likely
617           turn this on, unless you're 100% sure that you don't have any 32-bit programs
618           left.
619
620 config IA32_AOUT
621        tristate "IA32 a.out support"
622        depends on IA32_EMULATION
623        help
624          Support old a.out binaries in the 32bit emulation.
625
626 config COMPAT
627         bool
628         depends on IA32_EMULATION
629         default y
630
631 config SYSVIPC_COMPAT
632         bool
633         depends on COMPAT && SYSVIPC
634         default y
635
636 endmenu
637
638 source "net/Kconfig"
639
640 source drivers/Kconfig
641
642 source "drivers/firmware/Kconfig"
643
644 source fs/Kconfig
645
646 menu "Instrumentation Support"
647         depends on EXPERIMENTAL
648
649 source "arch/x86_64/oprofile/Kconfig"
650
651 config KPROBES
652         bool "Kprobes (EXPERIMENTAL)"
653         depends on EXPERIMENTAL && MODULES
654         help
655           Kprobes allows you to trap at almost any kernel address and
656           execute a callback function.  register_kprobe() establishes
657           a probepoint and specifies the callback.  Kprobes is useful
658           for kernel debugging, non-intrusive instrumentation and testing.
659           If in doubt, say "N".
660 endmenu
661
662 source "arch/x86_64/Kconfig.debug"
663
664 source "security/Kconfig"
665
666 source "crypto/Kconfig"
667
668 source "drivers/xen/Kconfig"
669
670 source "lib/Kconfig"