Kconfig 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548
  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. mainmenu "Linux Kernel Configuration"
  10. config X86_64
  11. bool
  12. default y
  13. help
  14. Port to the x86-64 architecture. x86-64 is a 64-bit extension to the
  15. classical 32-bit x86 architecture. For details see
  16. <http://www.x86-64.org/>.
  17. config 64BIT
  18. def_bool y
  19. config X86
  20. bool
  21. default y
  22. config SEMAPHORE_SLEEPERS
  23. bool
  24. default y
  25. config MMU
  26. bool
  27. default y
  28. config ISA
  29. bool
  30. config SBUS
  31. bool
  32. config RWSEM_GENERIC_SPINLOCK
  33. bool
  34. default y
  35. config RWSEM_XCHGADD_ALGORITHM
  36. bool
  37. config GENERIC_CALIBRATE_DELAY
  38. bool
  39. default y
  40. config X86_CMPXCHG
  41. bool
  42. default y
  43. config EARLY_PRINTK
  44. bool
  45. default y
  46. config GENERIC_ISA_DMA
  47. bool
  48. default y
  49. config GENERIC_IOMAP
  50. bool
  51. default y
  52. config ARCH_MAY_HAVE_PC_FDC
  53. bool
  54. default y
  55. source "init/Kconfig"
  56. menu "Processor type and features"
  57. choice
  58. prompt "Processor family"
  59. default MK8
  60. config MK8
  61. bool "AMD-Opteron/Athlon64"
  62. help
  63. Optimize for AMD Opteron/Athlon64/Hammer/K8 CPUs.
  64. config MPSC
  65. bool "Intel EM64T"
  66. help
  67. Optimize for Intel Pentium 4 and Xeon CPUs with Intel
  68. Extended Memory 64 Technology(EM64T). For details see
  69. <http://www.intel.com/technology/64bitextensions/>.
  70. config GENERIC_CPU
  71. bool "Generic-x86-64"
  72. help
  73. Generic x86-64 CPU.
  74. endchoice
  75. #
  76. # Define implied options from the CPU selection here
  77. #
  78. config X86_L1_CACHE_BYTES
  79. int
  80. default "128" if GENERIC_CPU || MPSC
  81. default "64" if MK8
  82. config X86_L1_CACHE_SHIFT
  83. int
  84. default "7" if GENERIC_CPU || MPSC
  85. default "6" if MK8
  86. config X86_TSC
  87. bool
  88. default y
  89. config X86_GOOD_APIC
  90. bool
  91. default y
  92. config MICROCODE
  93. tristate "/dev/cpu/microcode - Intel CPU microcode support"
  94. ---help---
  95. If you say Y here the 'File systems' section, you will be
  96. able to update the microcode on Intel processors. You will
  97. obviously need the actual microcode binary data itself which is
  98. not shipped with the Linux kernel.
  99. For latest news and information on obtaining all the required
  100. ingredients for this driver, check:
  101. <http://www.urbanmyth.org/microcode/>.
  102. To compile this driver as a module, choose M here: the
  103. module will be called microcode.
  104. If you use modprobe or kmod you may also want to add the line
  105. 'alias char-major-10-184 microcode' to your /etc/modules.conf file.
  106. config X86_MSR
  107. tristate "/dev/cpu/*/msr - Model-specific register support"
  108. help
  109. This device gives privileged processes access to the x86
  110. Model-Specific Registers (MSRs). It is a character device with
  111. major 202 and minors 0 to 31 for /dev/cpu/0/msr to /dev/cpu/31/msr.
  112. MSR accesses are directed to a specific CPU on multi-processor
  113. systems.
  114. config X86_CPUID
  115. tristate "/dev/cpu/*/cpuid - CPU information support"
  116. help
  117. This device gives processes access to the x86 CPUID instruction to
  118. be executed on a specific processor. It is a character device
  119. with major 203 and minors 0 to 31 for /dev/cpu/0/cpuid to
  120. /dev/cpu/31/cpuid.
  121. config X86_HT
  122. bool
  123. depends on SMP && !MK8
  124. default y
  125. config MATH_EMULATION
  126. bool
  127. config MCA
  128. bool
  129. config EISA
  130. bool
  131. config X86_IO_APIC
  132. bool
  133. default y
  134. config X86_LOCAL_APIC
  135. bool
  136. default y
  137. config MTRR
  138. bool "MTRR (Memory Type Range Register) support"
  139. ---help---
  140. On Intel P6 family processors (Pentium Pro, Pentium II and later)
  141. the Memory Type Range Registers (MTRRs) may be used to control
  142. processor access to memory ranges. This is most useful if you have
  143. a video (VGA) card on a PCI or AGP bus. Enabling write-combining
  144. allows bus write transfers to be combined into a larger transfer
  145. before bursting over the PCI/AGP bus. This can increase performance
  146. of image write operations 2.5 times or more. Saying Y here creates a
  147. /proc/mtrr file which may be used to manipulate your processor's
  148. MTRRs. Typically the X server should use this.
  149. This code has a reasonably generic interface so that similar
  150. control registers on other processors can be easily supported
  151. as well.
  152. Saying Y here also fixes a problem with buggy SMP BIOSes which only
  153. set the MTRRs for the boot CPU and not for the secondary CPUs. This
  154. can lead to all sorts of problems, so it's good to say Y here.
  155. Just say Y here, all x86-64 machines support MTRRs.
  156. See <file:Documentation/mtrr.txt> for more information.
  157. config SMP
  158. bool "Symmetric multi-processing support"
  159. ---help---
  160. This enables support for systems with more than one CPU. If you have
  161. a system with only one CPU, like most personal computers, say N. If
  162. you have a system with more than one CPU, say Y.
  163. If you say N here, the kernel will run on single and multiprocessor
  164. machines, but will use only one CPU of a multiprocessor machine. If
  165. you say Y here, the kernel will run on many, but not all,
  166. singleprocessor machines. On a singleprocessor machine, the kernel
  167. will run faster if you say N here.
  168. If you don't know what to do here, say N.
  169. config SCHED_SMT
  170. bool "SMT (Hyperthreading) scheduler support"
  171. depends on SMP
  172. default n
  173. help
  174. SMT scheduler support improves the CPU scheduler's decision making
  175. when dealing with Intel Pentium 4 chips with HyperThreading at a
  176. cost of slightly increased overhead in some places. If unsure say
  177. N here.
  178. source "kernel/Kconfig.preempt"
  179. config K8_NUMA
  180. bool "K8 NUMA support"
  181. select NUMA
  182. depends on SMP
  183. help
  184. Enable NUMA (Non Unified Memory Architecture) support for
  185. AMD Opteron Multiprocessor systems. The kernel will try to allocate
  186. memory used by a CPU on the local memory controller of the CPU
  187. and add some more NUMA awareness to the kernel.
  188. This code is recommended on all multiprocessor Opteron systems
  189. and normally doesn't hurt on others.
  190. config NUMA_EMU
  191. bool "NUMA emulation support"
  192. select NUMA
  193. depends on SMP
  194. help
  195. Enable NUMA emulation. A flat machine will be split
  196. into virtual nodes when booted with "numa=fake=N", where N is the
  197. number of nodes. This is only useful for debugging.
  198. config ARCH_DISCONTIGMEM_ENABLE
  199. bool
  200. depends on NUMA
  201. default y
  202. config NUMA
  203. bool
  204. default n
  205. config ARCH_DISCONTIGMEM_ENABLE
  206. def_bool y
  207. depends on NUMA
  208. config ARCH_DISCONTIGMEM_DEFAULT
  209. def_bool y
  210. depends on NUMA
  211. config ARCH_SPARSEMEM_ENABLE
  212. def_bool y
  213. depends on NUMA
  214. config ARCH_FLATMEM_ENABLE
  215. def_bool y
  216. depends on !NUMA
  217. source "mm/Kconfig"
  218. config HAVE_ARCH_EARLY_PFN_TO_NID
  219. def_bool y
  220. config HAVE_DEC_LOCK
  221. bool
  222. depends on SMP
  223. default y
  224. config NR_CPUS
  225. int "Maximum number of CPUs (2-256)"
  226. range 2 256
  227. depends on SMP
  228. default "8"
  229. help
  230. This allows you to specify the maximum number of CPUs which this
  231. kernel will support. Current maximum is 256 CPUs due to
  232. APIC addressing limits. Less depending on the hardware.
  233. This is purely to save memory - each supported CPU requires
  234. memory in the static kernel configuration.
  235. config HOTPLUG_CPU
  236. bool "Support for hot-pluggable CPUs (EXPERIMENTAL)"
  237. depends on SMP && HOTPLUG && EXPERIMENTAL
  238. help
  239. Say Y here to experiment with turning CPUs off and on. CPUs
  240. can be controlled through /sys/devices/system/cpu/cpu#.
  241. Say N if you want to disable CPU hotplug.
  242. config HPET_TIMER
  243. bool
  244. default y
  245. help
  246. Use the IA-PC HPET (High Precision Event Timer) to manage
  247. time in preference to the PIT and RTC, if a HPET is
  248. present. The HPET provides a stable time base on SMP
  249. systems, unlike the TSC, but it is more expensive to access,
  250. as it is off-chip. You can find the HPET spec at
  251. <http://www.intel.com/labs/platcomp/hpet/hpetspec.htm>.
  252. config X86_PM_TIMER
  253. bool "PM timer"
  254. depends on ACPI
  255. default y
  256. help
  257. Support the ACPI PM timer for time keeping. This is slow,
  258. but is useful on some chipsets without HPET on systems with more
  259. than one CPU. On a single processor or single socket multi core
  260. system it is normally not required.
  261. When the PM timer is active 64bit vsyscalls are disabled
  262. and should not be enabled (/proc/sys/kernel/vsyscall64 should
  263. not be changed).
  264. The kernel selects the PM timer only as a last resort, so it is
  265. useful to enable just in case.
  266. config HPET_EMULATE_RTC
  267. bool "Provide RTC interrupt"
  268. depends on HPET_TIMER && RTC=y
  269. config GART_IOMMU
  270. bool "IOMMU support"
  271. default y
  272. depends on PCI
  273. help
  274. Support the IOMMU. Needed to run systems with more than 3GB of memory
  275. properly with 32-bit PCI devices that do not support DAC (Double Address
  276. Cycle). The IOMMU can be turned off at runtime with the iommu=off parameter.
  277. Normally the kernel will take the right choice by itself.
  278. This option includes a driver for the AMD Opteron/Athlon64 IOMMU
  279. and a software emulation used on some other systems.
  280. If unsure, say Y.
  281. # need this always enabled with GART_IOMMU for the VIA workaround
  282. config SWIOTLB
  283. bool
  284. depends on GART_IOMMU
  285. default y
  286. config DUMMY_IOMMU
  287. bool
  288. depends on !GART_IOMMU && !SWIOTLB
  289. default y
  290. help
  291. Don't use IOMMU code. This will cause problems when you have more than 4GB
  292. of memory and any 32-bit devices. Don't turn on unless you know what you
  293. are doing.
  294. config X86_MCE
  295. bool "Machine check support" if EMBEDDED
  296. default y
  297. help
  298. Include a machine check error handler to report hardware errors.
  299. This version will require the mcelog utility to decode some
  300. machine check error logs. See
  301. ftp://ftp.x86-64.org/pub/linux/tools/mcelog
  302. config X86_MCE_INTEL
  303. bool "Intel MCE features"
  304. depends on X86_MCE && X86_LOCAL_APIC
  305. default y
  306. help
  307. Additional support for intel specific MCE features such as
  308. the thermal monitor.
  309. config PHYSICAL_START
  310. hex "Physical address where the kernel is loaded" if EMBEDDED
  311. default "0x100000"
  312. help
  313. This gives the physical address where the kernel is loaded.
  314. Primarily used in the case of kexec on panic where the
  315. fail safe kernel needs to run at a different address than
  316. the panic-ed kernel.
  317. Don't change this unless you know what you are doing.
  318. config KEXEC
  319. bool "kexec system call (EXPERIMENTAL)"
  320. depends on EXPERIMENTAL
  321. help
  322. kexec is a system call that implements the ability to shutdown your
  323. current kernel, and to start another kernel. It is like a reboot
  324. but it is indepedent of the system firmware. And like a reboot
  325. you can start any kernel with it, not just Linux.
  326. The name comes from the similiarity to the exec system call.
  327. It is an ongoing process to be certain the hardware in a machine
  328. is properly shutdown, so do not be surprised if this code does not
  329. initially work for you. It may help to enable device hotplugging
  330. support. As of this writing the exact hardware interface is
  331. strongly in flux, so no good recommendation can be made.
  332. config SECCOMP
  333. bool "Enable seccomp to safely compute untrusted bytecode"
  334. depends on PROC_FS
  335. default y
  336. help
  337. This kernel feature is useful for number crunching applications
  338. that may need to compute untrusted bytecode during their
  339. execution. By using pipes or other transports made available to
  340. the process as file descriptors supporting the read/write
  341. syscalls, it's possible to isolate those applications in
  342. their own address space using seccomp. Once seccomp is
  343. enabled via /proc/<pid>/seccomp, it cannot be disabled
  344. and the task is only allowed to execute a few safe syscalls
  345. defined by each seccomp mode.
  346. If unsure, say Y. Only embedded should say N here.
  347. source kernel/Kconfig.hz
  348. endmenu
  349. #
  350. # Use the generic interrupt handling code in kernel/irq/:
  351. #
  352. config GENERIC_HARDIRQS
  353. bool
  354. default y
  355. config GENERIC_IRQ_PROBE
  356. bool
  357. default y
  358. # we have no ISA slots, but we do have ISA-style DMA.
  359. config ISA_DMA_API
  360. bool
  361. default y
  362. config GENERIC_PENDING_IRQ
  363. bool
  364. depends on GENERIC_HARDIRQS && SMP
  365. default y
  366. menu "Power management options"
  367. source kernel/power/Kconfig
  368. source "drivers/acpi/Kconfig"
  369. source "arch/x86_64/kernel/cpufreq/Kconfig"
  370. endmenu
  371. menu "Bus options (PCI etc.)"
  372. config PCI
  373. bool "PCI support"
  374. # x86-64 doesn't support PCI BIOS access from long mode so always go direct.
  375. config PCI_DIRECT
  376. bool
  377. depends on PCI
  378. default y
  379. config PCI_MMCONFIG
  380. bool "Support mmconfig PCI config space access"
  381. depends on PCI && ACPI
  382. config UNORDERED_IO
  383. bool "Unordered IO mapping access"
  384. depends on EXPERIMENTAL
  385. help
  386. Use unordered stores to access IO memory mappings in device drivers.
  387. Still very experimental. When a driver works on IA64/ppc64/pa-risc it should
  388. work with this option, but it makes the drivers behave differently
  389. from i386. Requires that the driver writer used memory barriers
  390. properly.
  391. source "drivers/pci/pcie/Kconfig"
  392. source "drivers/pci/Kconfig"
  393. source "drivers/pcmcia/Kconfig"
  394. source "drivers/pci/hotplug/Kconfig"
  395. endmenu
  396. menu "Executable file formats / Emulations"
  397. source "fs/Kconfig.binfmt"
  398. config IA32_EMULATION
  399. bool "IA32 Emulation"
  400. help
  401. Include code to run 32-bit programs under a 64-bit kernel. You should likely
  402. turn this on, unless you're 100% sure that you don't have any 32-bit programs
  403. left.
  404. config IA32_AOUT
  405. bool "IA32 a.out support"
  406. depends on IA32_EMULATION
  407. help
  408. Support old a.out binaries in the 32bit emulation.
  409. config COMPAT
  410. bool
  411. depends on IA32_EMULATION
  412. default y
  413. config SYSVIPC_COMPAT
  414. bool
  415. depends on COMPAT && SYSVIPC
  416. default y
  417. config UID16
  418. bool
  419. depends on IA32_EMULATION
  420. default y
  421. endmenu
  422. source "net/Kconfig"
  423. source drivers/Kconfig
  424. source "drivers/firmware/Kconfig"
  425. source fs/Kconfig
  426. source "arch/x86_64/oprofile/Kconfig"
  427. source "arch/x86_64/Kconfig.debug"
  428. source "security/Kconfig"
  429. source "crypto/Kconfig"
  430. source "lib/Kconfig"