Kconfig 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667
  1. source "init/Kconfig"
  2. source "kernel/Kconfig.freezer"
  3. menu "Processor type and features"
  4. config IA64
  5. bool
  6. select PCI if (!IA64_HP_SIM)
  7. select ACPI if (!IA64_HP_SIM)
  8. select PM if (!IA64_HP_SIM)
  9. select ARCH_SUPPORTS_MSI
  10. select HAVE_UNSTABLE_SCHED_CLOCK
  11. select HAVE_IDE
  12. select HAVE_OPROFILE
  13. select HAVE_KPROBES
  14. select HAVE_KRETPROBES
  15. select HAVE_FTRACE_MCOUNT_RECORD
  16. select HAVE_DYNAMIC_FTRACE if (!ITANIUM)
  17. select HAVE_FUNCTION_TRACER
  18. select HAVE_DMA_ATTRS
  19. select HAVE_KVM
  20. select HAVE_ARCH_TRACEHOOK
  21. select HAVE_DMA_API_DEBUG
  22. select HAVE_GENERIC_HARDIRQS
  23. select HAVE_MEMBLOCK
  24. select HAVE_MEMBLOCK_NODE_MAP
  25. select ARCH_DISCARD_MEMBLOCK
  26. select GENERIC_IRQ_PROBE
  27. select GENERIC_PENDING_IRQ if SMP
  28. select IRQ_PER_CPU
  29. select GENERIC_IRQ_SHOW
  30. select ARCH_WANT_OPTIONAL_GPIOLIB
  31. select ARCH_HAVE_NMI_SAFE_CMPXCHG
  32. select GENERIC_IOMAP
  33. select GENERIC_SMP_IDLE_THREAD
  34. default y
  35. help
  36. The Itanium Processor Family is Intel's 64-bit successor to
  37. the 32-bit X86 line. The IA-64 Linux project has a home
  38. page at <http://www.linuxia64.org/> and a mailing list at
  39. <linux-ia64@vger.kernel.org>.
  40. config 64BIT
  41. bool
  42. select ATA_NONSTANDARD if ATA
  43. default y
  44. config ZONE_DMA
  45. def_bool y
  46. depends on !IA64_SGI_SN2
  47. config QUICKLIST
  48. bool
  49. default y
  50. config MMU
  51. bool
  52. default y
  53. config ARCH_DMA_ADDR_T_64BIT
  54. def_bool y
  55. config NEED_DMA_MAP_STATE
  56. def_bool y
  57. config NEED_SG_DMA_LENGTH
  58. def_bool y
  59. config SWIOTLB
  60. bool
  61. config STACKTRACE_SUPPORT
  62. def_bool y
  63. config GENERIC_LOCKBREAK
  64. def_bool n
  65. config RWSEM_XCHGADD_ALGORITHM
  66. bool
  67. default y
  68. config HUGETLB_PAGE_SIZE_VARIABLE
  69. bool
  70. depends on HUGETLB_PAGE
  71. default y
  72. config GENERIC_CALIBRATE_DELAY
  73. bool
  74. default y
  75. config GENERIC_TIME_VSYSCALL
  76. bool
  77. default y
  78. config HAVE_SETUP_PER_CPU_AREA
  79. def_bool y
  80. config GENERIC_GPIO
  81. bool
  82. config DMI
  83. bool
  84. default y
  85. config EFI
  86. bool
  87. default y
  88. config ARCH_CLOCKSOURCE_DATA
  89. def_bool y
  90. config SCHED_OMIT_FRAME_POINTER
  91. bool
  92. default y
  93. config IA64_UNCACHED_ALLOCATOR
  94. bool
  95. select GENERIC_ALLOCATOR
  96. config ARCH_USES_PG_UNCACHED
  97. def_bool y
  98. depends on IA64_UNCACHED_ALLOCATOR
  99. config AUDIT_ARCH
  100. bool
  101. default y
  102. menuconfig PARAVIRT_GUEST
  103. bool "Paravirtualized guest support"
  104. help
  105. Say Y here to get to see options related to running Linux under
  106. various hypervisors. This option alone does not add any kernel code.
  107. If you say N, all options in this submenu will be skipped and disabled.
  108. if PARAVIRT_GUEST
  109. config PARAVIRT
  110. bool "Enable paravirtualization code"
  111. depends on PARAVIRT_GUEST
  112. default y
  113. bool
  114. default y
  115. help
  116. This changes the kernel so it can modify itself when it is run
  117. under a hypervisor, potentially improving performance significantly
  118. over full virtualization. However, when run without a hypervisor
  119. the kernel is theoretically slower and slightly larger.
  120. source "arch/ia64/xen/Kconfig"
  121. endif
  122. choice
  123. prompt "System type"
  124. default IA64_GENERIC
  125. config IA64_GENERIC
  126. bool "generic"
  127. select NUMA
  128. select ACPI_NUMA
  129. select SWIOTLB
  130. select PCI_MSI
  131. help
  132. This selects the system type of your hardware. A "generic" kernel
  133. will run on any supported IA-64 system. However, if you configure
  134. a kernel for your specific system, it will be faster and smaller.
  135. generic For any supported IA-64 system
  136. DIG-compliant For DIG ("Developer's Interface Guide") compliant systems
  137. DIG+Intel+IOMMU For DIG systems with Intel IOMMU
  138. HP-zx1/sx1000 For HP systems
  139. HP-zx1/sx1000+swiotlb For HP systems with (broken) DMA-constrained devices.
  140. SGI-SN2 For SGI Altix systems
  141. SGI-UV For SGI UV systems
  142. Ski-simulator For the HP simulator <http://www.hpl.hp.com/research/linux/ski/>
  143. Xen-domU For xen domU system
  144. If you don't know what to do, choose "generic".
  145. config IA64_DIG
  146. bool "DIG-compliant"
  147. select SWIOTLB
  148. config IA64_DIG_VTD
  149. bool "DIG+Intel+IOMMU"
  150. select DMAR
  151. select PCI_MSI
  152. config IA64_HP_ZX1
  153. bool "HP-zx1/sx1000"
  154. help
  155. Build a kernel that runs on HP zx1 and sx1000 systems. This adds
  156. support for the HP I/O MMU.
  157. config IA64_HP_ZX1_SWIOTLB
  158. bool "HP-zx1/sx1000 with software I/O TLB"
  159. select SWIOTLB
  160. help
  161. Build a kernel that runs on HP zx1 and sx1000 systems even when they
  162. have broken PCI devices which cannot DMA to full 32 bits. Apart
  163. from support for the HP I/O MMU, this includes support for the software
  164. I/O TLB, which allows supporting the broken devices at the expense of
  165. wasting some kernel memory (about 2MB by default).
  166. config IA64_SGI_SN2
  167. bool "SGI-SN2"
  168. select NUMA
  169. select ACPI_NUMA
  170. help
  171. Selecting this option will optimize the kernel for use on sn2 based
  172. systems, but the resulting kernel binary will not run on other
  173. types of ia64 systems. If you have an SGI Altix system, it's safe
  174. to select this option. If in doubt, select ia64 generic support
  175. instead.
  176. config IA64_SGI_UV
  177. bool "SGI-UV"
  178. select NUMA
  179. select ACPI_NUMA
  180. select SWIOTLB
  181. help
  182. Selecting this option will optimize the kernel for use on UV based
  183. systems, but the resulting kernel binary will not run on other
  184. types of ia64 systems. If you have an SGI UV system, it's safe
  185. to select this option. If in doubt, select ia64 generic support
  186. instead.
  187. config IA64_HP_SIM
  188. bool "Ski-simulator"
  189. select SWIOTLB
  190. config IA64_XEN_GUEST
  191. bool "Xen guest"
  192. select SWIOTLB
  193. depends on XEN
  194. help
  195. Build a kernel that runs on Xen guest domain. At this moment only
  196. 16KB page size in supported.
  197. endchoice
  198. choice
  199. prompt "Processor type"
  200. default ITANIUM
  201. config ITANIUM
  202. bool "Itanium"
  203. help
  204. Select your IA-64 processor type. The default is Itanium.
  205. This choice is safe for all IA-64 systems, but may not perform
  206. optimally on systems with, say, Itanium 2 or newer processors.
  207. config MCKINLEY
  208. bool "Itanium 2"
  209. help
  210. Select this to configure for an Itanium 2 (McKinley) processor.
  211. endchoice
  212. choice
  213. prompt "Kernel page size"
  214. default IA64_PAGE_SIZE_16KB
  215. config IA64_PAGE_SIZE_4KB
  216. bool "4KB"
  217. help
  218. This lets you select the page size of the kernel. For best IA-64
  219. performance, a page size of 8KB or 16KB is recommended. For best
  220. IA-32 compatibility, a page size of 4KB should be selected (the vast
  221. majority of IA-32 binaries work perfectly fine with a larger page
  222. size). For Itanium 2 or newer systems, a page size of 64KB can also
  223. be selected.
  224. 4KB For best IA-32 compatibility
  225. 8KB For best IA-64 performance
  226. 16KB For best IA-64 performance
  227. 64KB Requires Itanium 2 or newer processor.
  228. If you don't know what to do, choose 16KB.
  229. config IA64_PAGE_SIZE_8KB
  230. bool "8KB"
  231. config IA64_PAGE_SIZE_16KB
  232. bool "16KB"
  233. config IA64_PAGE_SIZE_64KB
  234. depends on !ITANIUM
  235. bool "64KB"
  236. endchoice
  237. choice
  238. prompt "Page Table Levels"
  239. default PGTABLE_3
  240. config PGTABLE_3
  241. bool "3 Levels"
  242. config PGTABLE_4
  243. depends on !IA64_PAGE_SIZE_64KB
  244. bool "4 Levels"
  245. endchoice
  246. if IA64_HP_SIM
  247. config HZ
  248. default 32
  249. endif
  250. if !IA64_HP_SIM
  251. source kernel/Kconfig.hz
  252. endif
  253. config IA64_BRL_EMU
  254. bool
  255. depends on ITANIUM
  256. default y
  257. # align cache-sensitive data to 128 bytes
  258. config IA64_L1_CACHE_SHIFT
  259. int
  260. default "7" if MCKINLEY
  261. default "6" if ITANIUM
  262. config IA64_CYCLONE
  263. bool "Cyclone (EXA) Time Source support"
  264. help
  265. Say Y here to enable support for IBM EXA Cyclone time source.
  266. If you're unsure, answer N.
  267. config IOSAPIC
  268. bool
  269. depends on !IA64_HP_SIM
  270. default y
  271. config FORCE_MAX_ZONEORDER
  272. int "MAX_ORDER (11 - 17)" if !HUGETLB_PAGE
  273. range 11 17 if !HUGETLB_PAGE
  274. default "17" if HUGETLB_PAGE
  275. default "11"
  276. config VIRT_CPU_ACCOUNTING
  277. bool "Deterministic task and CPU time accounting"
  278. default n
  279. help
  280. Select this option to enable more accurate task and CPU time
  281. accounting. This is done by reading a CPU counter on each
  282. kernel entry and exit and on transitions within the kernel
  283. between system, softirq and hardirq state, so there is a
  284. small performance impact.
  285. If in doubt, say N here.
  286. config SMP
  287. bool "Symmetric multi-processing support"
  288. select USE_GENERIC_SMP_HELPERS
  289. help
  290. This enables support for systems with more than one CPU. If you have
  291. a system with only one CPU, say N. If you have a system with more
  292. than one CPU, say Y.
  293. If you say N here, the kernel will run on single and multiprocessor
  294. systems, but will use only one CPU of a multiprocessor system. If
  295. you say Y here, the kernel will run on many, but not all,
  296. single processor systems. On a single processor system, the kernel
  297. will run faster if you say N here.
  298. See also the SMP-HOWTO available at
  299. <http://www.tldp.org/docs.html#howto>.
  300. If you don't know what to do here, say N.
  301. config NR_CPUS
  302. int "Maximum number of CPUs (2-4096)"
  303. range 2 4096
  304. depends on SMP
  305. default "4096"
  306. help
  307. You should set this to the number of CPUs in your system, but
  308. keep in mind that a kernel compiled for, e.g., 2 CPUs will boot but
  309. only use 2 CPUs on a >2 CPU system. Setting this to a value larger
  310. than 64 will cause the use of a CPU mask array, causing a small
  311. performance hit.
  312. config HOTPLUG_CPU
  313. bool "Support for hot-pluggable CPUs (EXPERIMENTAL)"
  314. depends on SMP && EXPERIMENTAL
  315. select HOTPLUG
  316. default n
  317. ---help---
  318. Say Y here to experiment with turning CPUs off and on. CPUs
  319. can be controlled through /sys/devices/system/cpu/cpu#.
  320. Say N if you want to disable CPU hotplug.
  321. config ARCH_ENABLE_MEMORY_HOTPLUG
  322. def_bool y
  323. config ARCH_ENABLE_MEMORY_HOTREMOVE
  324. def_bool y
  325. config SCHED_SMT
  326. bool "SMT scheduler support"
  327. depends on SMP
  328. help
  329. Improves the CPU scheduler's decision making when dealing with
  330. Intel IA64 chips with MultiThreading at a cost of slightly increased
  331. overhead in some places. If unsure say N here.
  332. config PERMIT_BSP_REMOVE
  333. bool "Support removal of Bootstrap Processor"
  334. depends on HOTPLUG_CPU
  335. default n
  336. ---help---
  337. Say Y here if your platform SAL will support removal of BSP with HOTPLUG_CPU
  338. support.
  339. config FORCE_CPEI_RETARGET
  340. bool "Force assumption that CPEI can be re-targeted"
  341. depends on PERMIT_BSP_REMOVE
  342. default n
  343. ---help---
  344. Say Y if you need to force the assumption that CPEI can be re-targeted to
  345. any cpu in the system. This hint is available via ACPI 3.0 specifications.
  346. Tiger4 systems are capable of re-directing CPEI to any CPU other than BSP.
  347. This option it useful to enable this feature on older BIOS's as well.
  348. You can also enable this by using boot command line option force_cpei=1.
  349. source "kernel/Kconfig.preempt"
  350. source "mm/Kconfig"
  351. config ARCH_SELECT_MEMORY_MODEL
  352. def_bool y
  353. config ARCH_DISCONTIGMEM_ENABLE
  354. def_bool y
  355. help
  356. Say Y to support efficient handling of discontiguous physical memory,
  357. for architectures which are either NUMA (Non-Uniform Memory Access)
  358. or have huge holes in the physical address space for other reasons.
  359. See <file:Documentation/vm/numa> for more.
  360. config ARCH_FLATMEM_ENABLE
  361. def_bool y
  362. config ARCH_SPARSEMEM_ENABLE
  363. def_bool y
  364. depends on ARCH_DISCONTIGMEM_ENABLE
  365. select SPARSEMEM_VMEMMAP_ENABLE
  366. config ARCH_DISCONTIGMEM_DEFAULT
  367. def_bool y if (IA64_SGI_SN2 || IA64_GENERIC || IA64_HP_ZX1 || IA64_HP_ZX1_SWIOTLB)
  368. depends on ARCH_DISCONTIGMEM_ENABLE
  369. config NUMA
  370. bool "NUMA support"
  371. depends on !IA64_HP_SIM && !FLATMEM
  372. default y if IA64_SGI_SN2
  373. select ACPI_NUMA if ACPI
  374. help
  375. Say Y to compile the kernel to support NUMA (Non-Uniform Memory
  376. Access). This option is for configuring high-end multiprocessor
  377. server systems. If in doubt, say N.
  378. config NODES_SHIFT
  379. int "Max num nodes shift(3-10)"
  380. range 3 10
  381. default "10"
  382. depends on NEED_MULTIPLE_NODES
  383. help
  384. This option specifies the maximum number of nodes in your SSI system.
  385. MAX_NUMNODES will be 2^(This value).
  386. If in doubt, use the default.
  387. # VIRTUAL_MEM_MAP and FLAT_NODE_MEM_MAP are functionally equivalent.
  388. # VIRTUAL_MEM_MAP has been retained for historical reasons.
  389. config VIRTUAL_MEM_MAP
  390. bool "Virtual mem map"
  391. depends on !SPARSEMEM
  392. default y if !IA64_HP_SIM
  393. help
  394. Say Y to compile the kernel with support for a virtual mem map.
  395. This code also only takes effect if a memory hole of greater than
  396. 1 Gb is found during boot. You must turn this option on if you
  397. require the DISCONTIGMEM option for your machine. If you are
  398. unsure, say Y.
  399. config HOLES_IN_ZONE
  400. bool
  401. default y if VIRTUAL_MEM_MAP
  402. config HAVE_ARCH_EARLY_PFN_TO_NID
  403. def_bool NUMA && SPARSEMEM
  404. config HAVE_ARCH_NODEDATA_EXTENSION
  405. def_bool y
  406. depends on NUMA
  407. config USE_PERCPU_NUMA_NODE_ID
  408. def_bool y
  409. depends on NUMA
  410. config HAVE_MEMORYLESS_NODES
  411. def_bool NUMA
  412. config ARCH_PROC_KCORE_TEXT
  413. def_bool y
  414. depends on PROC_KCORE
  415. config IA64_MCA_RECOVERY
  416. tristate "MCA recovery from errors other than TLB."
  417. config PERFMON
  418. bool "Performance monitor support"
  419. help
  420. Selects whether support for the IA-64 performance monitor hardware
  421. is included in the kernel. This makes some kernel data-structures a
  422. little bigger and slows down execution a bit, but it is generally
  423. a good idea to turn this on. If you're unsure, say Y.
  424. config IA64_PALINFO
  425. tristate "/proc/pal support"
  426. help
  427. If you say Y here, you are able to get PAL (Processor Abstraction
  428. Layer) information in /proc/pal. This contains useful information
  429. about the processors in your systems, such as cache and TLB sizes
  430. and the PAL firmware version in use.
  431. To use this option, you have to ensure that the "/proc file system
  432. support" (CONFIG_PROC_FS) is enabled, too.
  433. config IA64_MC_ERR_INJECT
  434. tristate "MC error injection support"
  435. help
  436. Adds support for MC error injection. If enabled, the kernel
  437. will provide a sysfs interface for user applications to
  438. call MC error injection PAL procedures to inject various errors.
  439. This is a useful tool for MCA testing.
  440. If you're unsure, do not select this option.
  441. config SGI_SN
  442. def_bool y if (IA64_SGI_SN2 || IA64_GENERIC)
  443. config IA64_ESI
  444. bool "ESI (Extensible SAL Interface) support"
  445. help
  446. If you say Y here, support is built into the kernel to
  447. make ESI calls. ESI calls are used to support vendor-specific
  448. firmware extensions, such as the ability to inject memory-errors
  449. for test-purposes. If you're unsure, say N.
  450. config IA64_HP_AML_NFW
  451. bool "Support ACPI AML calls to native firmware"
  452. help
  453. This driver installs a global ACPI Operation Region handler for
  454. region 0xA1. AML methods can use this OpRegion to call arbitrary
  455. native firmware functions. The driver installs the OpRegion
  456. handler if there is an HPQ5001 device or if the user supplies
  457. the "force" module parameter, e.g., with the "aml_nfw.force"
  458. kernel command line option.
  459. source "drivers/sn/Kconfig"
  460. config KEXEC
  461. bool "kexec system call (EXPERIMENTAL)"
  462. depends on EXPERIMENTAL && !IA64_HP_SIM && (!SMP || HOTPLUG_CPU)
  463. help
  464. kexec is a system call that implements the ability to shutdown your
  465. current kernel, and to start another kernel. It is like a reboot
  466. but it is independent of the system firmware. And like a reboot
  467. you can start any kernel with it, not just Linux.
  468. The name comes from the similarity to the exec system call.
  469. It is an ongoing process to be certain the hardware in a machine
  470. is properly shutdown, so do not be surprised if this code does not
  471. initially work for you. It may help to enable device hotplugging
  472. support. As of this writing the exact hardware interface is
  473. strongly in flux, so no good recommendation can be made.
  474. config CRASH_DUMP
  475. bool "kernel crash dumps"
  476. depends on IA64_MCA_RECOVERY && !IA64_HP_SIM && (!SMP || HOTPLUG_CPU)
  477. help
  478. Generate crash dump after being started by kexec.
  479. source "drivers/firmware/Kconfig"
  480. source "fs/Kconfig.binfmt"
  481. endmenu
  482. menu "Power management and ACPI options"
  483. source "kernel/power/Kconfig"
  484. source "drivers/acpi/Kconfig"
  485. if PM
  486. source "arch/ia64/kernel/cpufreq/Kconfig"
  487. endif
  488. endmenu
  489. if !IA64_HP_SIM
  490. menu "Bus options (PCI, PCMCIA)"
  491. config PCI
  492. bool "PCI support"
  493. help
  494. Real IA-64 machines all have PCI/PCI-X/PCI Express busses. Say Y
  495. here unless you are using a simulator without PCI support.
  496. config PCI_DOMAINS
  497. def_bool PCI
  498. config PCI_SYSCALL
  499. def_bool PCI
  500. source "drivers/pci/pcie/Kconfig"
  501. source "drivers/pci/Kconfig"
  502. source "drivers/pci/hotplug/Kconfig"
  503. source "drivers/pcmcia/Kconfig"
  504. endmenu
  505. endif
  506. source "net/Kconfig"
  507. source "drivers/Kconfig"
  508. source "arch/ia64/hp/sim/Kconfig"
  509. config MSPEC
  510. tristate "Memory special operations driver"
  511. depends on IA64
  512. select IA64_UNCACHED_ALLOCATOR
  513. help
  514. If you have an ia64 and you want to enable memory special
  515. operations support (formerly known as fetchop), say Y here,
  516. otherwise say N.
  517. source "fs/Kconfig"
  518. source "arch/ia64/Kconfig.debug"
  519. source "security/Kconfig"
  520. source "crypto/Kconfig"
  521. source "arch/ia64/kvm/Kconfig"
  522. source "lib/Kconfig"
  523. config IOMMU_HELPER
  524. def_bool (IA64_HP_ZX1 || IA64_HP_ZX1_SWIOTLB || IA64_GENERIC || SWIOTLB)