Kconfig 16 KB

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