Kconfig 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see Documentation/kbuild/kconfig-language.txt.
  4. #
  5. config ALPHA
  6. bool
  7. default y
  8. select HAVE_AOUT
  9. select HAVE_IDE
  10. select HAVE_OPROFILE
  11. select HAVE_SYSCALL_WRAPPERS
  12. select HAVE_IRQ_WORK
  13. select HAVE_PERF_EVENTS
  14. select HAVE_DMA_ATTRS
  15. help
  16. The Alpha is a 64-bit general-purpose processor designed and
  17. marketed by the Digital Equipment Corporation of blessed memory,
  18. now Hewlett-Packard. The Alpha Linux project has a home page at
  19. <http://www.alphalinux.org/>.
  20. config 64BIT
  21. def_bool y
  22. config MMU
  23. bool
  24. default y
  25. config RWSEM_GENERIC_SPINLOCK
  26. bool
  27. config RWSEM_XCHGADD_ALGORITHM
  28. bool
  29. default y
  30. config ARCH_HAS_ILOG2_U32
  31. bool
  32. default n
  33. config ARCH_HAS_ILOG2_U64
  34. bool
  35. default n
  36. config GENERIC_FIND_NEXT_BIT
  37. bool
  38. default y
  39. config GENERIC_CALIBRATE_DELAY
  40. bool
  41. default y
  42. config GENERIC_CMOS_UPDATE
  43. def_bool y
  44. config ZONE_DMA
  45. bool
  46. default y
  47. config NEED_DMA_MAP_STATE
  48. def_bool y
  49. config NEED_SG_DMA_LENGTH
  50. def_bool y
  51. config GENERIC_ISA_DMA
  52. bool
  53. default y
  54. config GENERIC_IOMAP
  55. bool
  56. default n
  57. config GENERIC_HARDIRQS
  58. bool
  59. default y
  60. config GENERIC_IRQ_PROBE
  61. bool
  62. default y
  63. config AUTO_IRQ_AFFINITY
  64. bool
  65. depends on SMP
  66. default y
  67. source "init/Kconfig"
  68. source "kernel/Kconfig.freezer"
  69. menu "System setup"
  70. choice
  71. prompt "Alpha system type"
  72. default ALPHA_GENERIC
  73. ---help---
  74. This is the system type of your hardware. A "generic" kernel will
  75. run on any supported Alpha system. However, if you configure a
  76. kernel for your specific system, it will be faster and smaller.
  77. To find out what type of Alpha system you have, you may want to
  78. check out the Linux/Alpha FAQ, accessible on the WWW from
  79. <http://www.alphalinux.org/>. In summary:
  80. Alcor/Alpha-XLT AS 600, AS 500, XL-300, XL-366
  81. Alpha-XL XL-233, XL-266
  82. AlphaBook1 Alpha laptop
  83. Avanti AS 200, AS 205, AS 250, AS 255, AS 300, AS 400
  84. Cabriolet AlphaPC64, AlphaPCI64
  85. DP264 DP264 / DS20 / ES40 / DS10 / DS10L
  86. EB164 EB164 21164 evaluation board
  87. EB64+ EB64+ 21064 evaluation board
  88. EB66 EB66 21066 evaluation board
  89. EB66+ EB66+ 21066 evaluation board
  90. Jensen DECpc 150, DEC 2000 models 300, 500
  91. LX164 AlphaPC164-LX
  92. Lynx AS 2100A
  93. Miata Personal Workstation 433/500/600 a/au
  94. Marvel AlphaServer ES47 / ES80 / GS1280
  95. Mikasa AS 1000
  96. Noname AXPpci33, UDB (Multia)
  97. Noritake AS 1000A, AS 600A, AS 800
  98. PC164 AlphaPC164
  99. Rawhide AS 1200, AS 4000, AS 4100
  100. Ruffian RPX164-2, AlphaPC164-UX, AlphaPC164-BX
  101. SX164 AlphaPC164-SX
  102. Sable AS 2000, AS 2100
  103. Shark DS 20L
  104. Takara Takara (OEM)
  105. Titan AlphaServer ES45 / DS25 / DS15
  106. Wildfire AlphaServer GS 40/80/160/320
  107. If you don't know what to do, choose "generic".
  108. config ALPHA_GENERIC
  109. bool "Generic"
  110. help
  111. A generic kernel will run on all supported Alpha hardware.
  112. config ALPHA_ALCOR
  113. bool "Alcor/Alpha-XLT"
  114. help
  115. For systems using the Digital ALCOR chipset: 5 chips (4, 64-bit data
  116. slices (Data Switch, DSW) - 208-pin PQFP and 1 control (Control, I/O
  117. Address, CIA) - a 383 pin plastic PGA). It provides a DRAM
  118. controller (256-bit memory bus) and a PCI interface. It also does
  119. all the work required to support an external Bcache and to maintain
  120. memory coherence when a PCI device DMAs into (or out of) memory.
  121. config ALPHA_XL
  122. bool "Alpha-XL"
  123. help
  124. XL-233 and XL-266-based Alpha systems.
  125. config ALPHA_BOOK1
  126. bool "AlphaBook1"
  127. help
  128. Dec AlphaBook1/Burns Alpha-based laptops.
  129. config ALPHA_AVANTI_CH
  130. bool "Avanti"
  131. config ALPHA_CABRIOLET
  132. bool "Cabriolet"
  133. help
  134. Cabriolet AlphaPC64, AlphaPCI64 systems. Derived from EB64+ but now
  135. baby-AT with Flash boot ROM, no on-board SCSI or Ethernet. 3 ISA
  136. slots, 4 PCI slots (one pair are on a shared slot), uses plug-in
  137. Bcache SIMMs. Requires power supply with 3.3V output.
  138. config ALPHA_DP264
  139. bool "DP264"
  140. help
  141. Various 21264 systems with the tsunami core logic chipset.
  142. API Networks: 264DP, UP2000(+), CS20;
  143. Compaq: DS10(E,L), XP900, XP1000, DS20(E), ES40.
  144. config ALPHA_EB164
  145. bool "EB164"
  146. help
  147. EB164 21164 evaluation board from DEC. Uses 21164 and ALCOR. Has
  148. ISA and PCI expansion (3 ISA slots, 2 64-bit PCI slots (one is
  149. shared with an ISA slot) and 2 32-bit PCI slots. Uses plus-in
  150. Bcache SIMMs. I/O sub-system provides SuperI/O (2S, 1P, FD), KBD,
  151. MOUSE (PS2 style), RTC/NVRAM. Boot ROM is Flash. PC-AT-sized
  152. motherboard. Requires power supply with 3.3V output.
  153. config ALPHA_EB64P_CH
  154. bool "EB64+"
  155. config ALPHA_EB66
  156. bool "EB66"
  157. help
  158. A Digital DS group board. Uses 21066 or 21066A. I/O sub-system is
  159. identical to EB64+. Baby PC-AT size. Runs from standard PC power
  160. supply. The EB66 schematic was published as a marketing poster
  161. advertising the 21066 as "the first microprocessor in the world with
  162. embedded PCI".
  163. config ALPHA_EB66P
  164. bool "EB66+"
  165. help
  166. Later variant of the EB66 board.
  167. config ALPHA_EIGER
  168. bool "Eiger"
  169. help
  170. Apparently an obscure OEM single-board computer based on the
  171. Typhoon/Tsunami chipset family. Information on it is scanty.
  172. config ALPHA_JENSEN
  173. bool "Jensen"
  174. help
  175. DEC PC 150 AXP (aka Jensen): This is a very old Digital system - one
  176. of the first-generation Alpha systems. A number of these systems
  177. seem to be available on the second- hand market. The Jensen is a
  178. floor-standing tower system which originally used a 150MHz 21064 It
  179. used programmable logic to interface a 486 EISA I/O bridge to the
  180. CPU.
  181. config ALPHA_LX164
  182. bool "LX164"
  183. help
  184. A technical overview of this board is available at
  185. <http://www.unix-ag.org/Linux-Alpha/Architectures/LX164.html>.
  186. config ALPHA_LYNX
  187. bool "Lynx"
  188. help
  189. AlphaServer 2100A-based systems.
  190. config ALPHA_MARVEL
  191. bool "Marvel"
  192. help
  193. AlphaServer ES47 / ES80 / GS1280 based on EV7.
  194. config ALPHA_MIATA
  195. bool "Miata"
  196. help
  197. The Digital PersonalWorkStation (PWS 433a, 433au, 500a, 500au, 600a,
  198. or 600au).
  199. config ALPHA_MIKASA
  200. bool "Mikasa"
  201. help
  202. AlphaServer 1000-based Alpha systems.
  203. config ALPHA_NAUTILUS
  204. bool "Nautilus"
  205. help
  206. Alpha systems based on the AMD 751 & ALI 1543C chipsets.
  207. config ALPHA_NONAME_CH
  208. bool "Noname"
  209. config ALPHA_NORITAKE
  210. bool "Noritake"
  211. help
  212. AlphaServer 1000A, AlphaServer 600A, and AlphaServer 800-based
  213. systems.
  214. config ALPHA_PC164
  215. bool "PC164"
  216. config ALPHA_P2K
  217. bool "Platform2000"
  218. config ALPHA_RAWHIDE
  219. bool "Rawhide"
  220. help
  221. AlphaServer 1200, AlphaServer 4000 and AlphaServer 4100 machines.
  222. See HOWTO at
  223. <http://www.alphalinux.org/docs/rawhide/4100_install.shtml>.
  224. config ALPHA_RUFFIAN
  225. bool "Ruffian"
  226. help
  227. Samsung APC164UX. There is a page on known problems and workarounds
  228. at <http://www.alphalinux.org/faq/FAQ-11.html>.
  229. config ALPHA_RX164
  230. bool "RX164"
  231. config ALPHA_SX164
  232. bool "SX164"
  233. config ALPHA_SABLE
  234. bool "Sable"
  235. help
  236. Digital AlphaServer 2000 and 2100-based systems.
  237. config ALPHA_SHARK
  238. bool "Shark"
  239. config ALPHA_TAKARA
  240. bool "Takara"
  241. help
  242. Alpha 11164-based OEM single-board computer.
  243. config ALPHA_TITAN
  244. bool "Titan"
  245. help
  246. AlphaServer ES45/DS25 SMP based on EV68 and Titan chipset.
  247. config ALPHA_WILDFIRE
  248. bool "Wildfire"
  249. help
  250. AlphaServer GS 40/80/160/320 SMP based on the EV67 core.
  251. endchoice
  252. # clear all implied options (don't want default values for those):
  253. # Most of these machines have ISA slots; not exactly sure which don't,
  254. # and this doesn't activate hordes of code, so do it always.
  255. config ISA
  256. bool
  257. default y
  258. help
  259. Find out whether you have ISA slots on your motherboard. ISA is the
  260. name of a bus system, i.e. the way the CPU talks to the other stuff
  261. inside your box. Other bus systems are PCI, EISA, MicroChannel
  262. (MCA) or VESA. ISA is an older system, now being displaced by PCI;
  263. newer boards don't support it. If you have ISA, say Y, otherwise N.
  264. config ISA_DMA_API
  265. bool
  266. default y
  267. config PCI
  268. bool
  269. depends on !ALPHA_JENSEN
  270. default y
  271. help
  272. Find out whether you have a PCI motherboard. PCI is the name of a
  273. bus system, i.e. the way the CPU talks to the other stuff inside
  274. your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or
  275. VESA. If you have PCI, say Y, otherwise N.
  276. config PCI_DOMAINS
  277. bool
  278. default y
  279. config PCI_SYSCALL
  280. def_bool PCI
  281. config IOMMU_HELPER
  282. def_bool PCI
  283. config ALPHA_NONAME
  284. bool
  285. depends on ALPHA_BOOK1 || ALPHA_NONAME_CH
  286. default y
  287. help
  288. The AXPpci33 (aka NoName), is based on the EB66 (includes the Multia
  289. UDB). This design was produced by Digital's Technical OEM (TOEM)
  290. group. It uses the 21066 processor running at 166MHz or 233MHz. It
  291. is a baby-AT size, and runs from a standard PC power supply. It has
  292. 5 ISA slots and 3 PCI slots (one pair are a shared slot). There are
  293. 2 versions, with either PS/2 or large DIN connectors for the
  294. keyboard.
  295. config ALPHA_EV4
  296. bool
  297. depends on ALPHA_JENSEN || (ALPHA_SABLE && !ALPHA_GAMMA) || ALPHA_LYNX || ALPHA_NORITAKE && !ALPHA_PRIMO || ALPHA_MIKASA && !ALPHA_PRIMO || ALPHA_CABRIOLET || ALPHA_AVANTI_CH || ALPHA_EB64P_CH || ALPHA_XL || ALPHA_NONAME || ALPHA_EB66 || ALPHA_EB66P || ALPHA_P2K
  298. default y if !ALPHA_LYNX
  299. config ALPHA_LCA
  300. bool
  301. depends on ALPHA_NONAME || ALPHA_EB66 || ALPHA_EB66P || ALPHA_P2K
  302. default y
  303. config ALPHA_APECS
  304. bool
  305. depends on !ALPHA_PRIMO && (ALPHA_NORITAKE || ALPHA_MIKASA) || ALPHA_CABRIOLET || ALPHA_AVANTI_CH || ALPHA_EB64P_CH || ALPHA_XL
  306. default y
  307. config ALPHA_EB64P
  308. bool
  309. depends on ALPHA_CABRIOLET || ALPHA_EB64P_CH
  310. default y
  311. help
  312. Uses 21064 or 21064A and APECs. Has ISA and PCI expansion (3 ISA,
  313. 2 PCI, one pair are on a shared slot). Supports 36-bit DRAM SIMs.
  314. ISA bus generated by Intel SaturnI/O PCI-ISA bridge. On-board SCSI
  315. (NCR 810 on PCI) Ethernet (Digital 21040), KBD, MOUSE (PS2 style),
  316. SuperI/O (2S, 1P, FD), RTC/NVRAM. Boot ROM is EPROM. PC-AT size.
  317. Runs from standard PC power supply.
  318. config ALPHA_EV5
  319. bool "EV5 CPU(s) (model 5/xxx)?" if ALPHA_LYNX
  320. default y if ALPHA_RX164 || ALPHA_RAWHIDE || ALPHA_MIATA || ALPHA_LX164 || ALPHA_SX164 || ALPHA_RUFFIAN || ALPHA_SABLE && ALPHA_GAMMA || ALPHA_NORITAKE && ALPHA_PRIMO || ALPHA_MIKASA && ALPHA_PRIMO || ALPHA_PC164 || ALPHA_TAKARA || ALPHA_EB164 || ALPHA_ALCOR
  321. config ALPHA_EV4
  322. bool
  323. default y if ALPHA_LYNX && !ALPHA_EV5
  324. config ALPHA_CIA
  325. bool
  326. depends on ALPHA_MIATA || ALPHA_LX164 || ALPHA_SX164 || ALPHA_RUFFIAN || ALPHA_NORITAKE && ALPHA_PRIMO || ALPHA_MIKASA && ALPHA_PRIMO || ALPHA_PC164 || ALPHA_TAKARA || ALPHA_EB164 || ALPHA_ALCOR
  327. default y
  328. config ALPHA_EV56
  329. bool "EV56 CPU (speed >= 366MHz)?" if ALPHA_ALCOR
  330. default y if ALPHA_RX164 || ALPHA_MIATA || ALPHA_LX164 || ALPHA_SX164 || ALPHA_RUFFIAN || ALPHA_PC164 || ALPHA_TAKARA
  331. config ALPHA_EV56
  332. prompt "EV56 CPU (speed >= 333MHz)?"
  333. depends on ALPHA_NORITAKE || ALPHA_PRIMO
  334. config ALPHA_EV56
  335. prompt "EV56 CPU (speed >= 400MHz)?"
  336. depends on ALPHA_RAWHIDE
  337. config ALPHA_PRIMO
  338. bool "EV5 CPU daughtercard (model 5/xxx)?"
  339. depends on ALPHA_NORITAKE || ALPHA_MIKASA
  340. help
  341. Say Y if you have an AS 1000 5/xxx or an AS 1000A 5/xxx.
  342. config ALPHA_GAMMA
  343. bool "EV5 CPU(s) (model 5/xxx)?"
  344. depends on ALPHA_SABLE
  345. help
  346. Say Y if you have an AS 2000 5/xxx or an AS 2100 5/xxx.
  347. config ALPHA_GAMMA
  348. bool
  349. depends on ALPHA_LYNX
  350. default y
  351. config ALPHA_T2
  352. bool
  353. depends on ALPHA_SABLE || ALPHA_LYNX
  354. default y
  355. config ALPHA_PYXIS
  356. bool
  357. depends on ALPHA_MIATA || ALPHA_LX164 || ALPHA_SX164 || ALPHA_RUFFIAN
  358. default y
  359. config ALPHA_EV6
  360. bool
  361. depends on ALPHA_NAUTILUS || ALPHA_WILDFIRE || ALPHA_TITAN || ALPHA_SHARK || ALPHA_DP264 || ALPHA_EIGER || ALPHA_MARVEL
  362. default y
  363. config ALPHA_TSUNAMI
  364. bool
  365. depends on ALPHA_SHARK || ALPHA_DP264 || ALPHA_EIGER
  366. default y
  367. config ALPHA_EV67
  368. bool "EV67 (or later) CPU (speed > 600MHz)?" if ALPHA_DP264 || ALPHA_EIGER
  369. default y if ALPHA_NAUTILUS || ALPHA_WILDFIRE || ALPHA_TITAN || ALPHA_SHARK || ALPHA_MARVEL
  370. help
  371. Is this a machine based on the EV67 core? If in doubt, select N here
  372. and the machine will be treated as an EV6.
  373. config ALPHA_EV7
  374. bool
  375. depends on ALPHA_MARVEL
  376. default y
  377. config ALPHA_MCPCIA
  378. bool
  379. depends on ALPHA_RAWHIDE
  380. default y
  381. config ALPHA_POLARIS
  382. bool
  383. depends on ALPHA_RX164
  384. default y
  385. config ALPHA_IRONGATE
  386. bool
  387. depends on ALPHA_NAUTILUS
  388. default y
  389. config GENERIC_HWEIGHT
  390. bool
  391. default y if !ALPHA_EV67
  392. config ALPHA_AVANTI
  393. bool
  394. depends on ALPHA_XL || ALPHA_AVANTI_CH
  395. default y
  396. help
  397. Avanti AS 200, AS 205, AS 250, AS 255, AS 300, and AS 400-based
  398. Alphas. Info at
  399. <http://www.unix-ag.org/Linux-Alpha/Architectures/Avanti.html>.
  400. config ALPHA_BROKEN_IRQ_MASK
  401. bool
  402. depends on ALPHA_GENERIC || ALPHA_PC164
  403. default y
  404. config VGA_HOSE
  405. bool
  406. depends on ALPHA_GENERIC || ALPHA_TITAN || ALPHA_MARVEL || ALPHA_TSUNAMI
  407. default y
  408. help
  409. Support VGA on an arbitrary hose; needed for several platforms
  410. which always have multiple hoses, and whose consoles support it.
  411. config ALPHA_SRM
  412. bool "Use SRM as bootloader" if ALPHA_CABRIOLET || ALPHA_AVANTI_CH || ALPHA_EB64P || ALPHA_PC164 || ALPHA_TAKARA || ALPHA_EB164 || ALPHA_ALCOR || ALPHA_MIATA || ALPHA_LX164 || ALPHA_SX164 || ALPHA_NAUTILUS || ALPHA_NONAME
  413. default y if ALPHA_JENSEN || ALPHA_MIKASA || ALPHA_SABLE || ALPHA_LYNX || ALPHA_NORITAKE || ALPHA_DP264 || ALPHA_RAWHIDE || ALPHA_EIGER || ALPHA_WILDFIRE || ALPHA_TITAN || ALPHA_SHARK || ALPHA_MARVEL
  414. ---help---
  415. There are two different types of booting firmware on Alphas: SRM,
  416. which is command line driven, and ARC, which uses menus and arrow
  417. keys. Details about the Linux/Alpha booting process are contained in
  418. the Linux/Alpha FAQ, accessible on the WWW from
  419. <http://www.alphalinux.org/>.
  420. The usual way to load Linux on an Alpha machine is to use MILO
  421. (a bootloader that lets you pass command line parameters to the
  422. kernel just like lilo does for the x86 architecture) which can be
  423. loaded either from ARC or can be installed directly as a permanent
  424. firmware replacement from floppy (which requires changing a certain
  425. jumper on the motherboard). If you want to do either of these, say N
  426. here. If MILO doesn't work on your system (true for Jensen
  427. motherboards), you can bypass it altogether and boot Linux directly
  428. from an SRM console; say Y here in order to do that. Note that you
  429. won't be able to boot from an IDE disk using SRM.
  430. If unsure, say N.
  431. config EISA
  432. bool
  433. depends on ALPHA_GENERIC || ALPHA_JENSEN || ALPHA_ALCOR || ALPHA_MIKASA || ALPHA_SABLE || ALPHA_LYNX || ALPHA_NORITAKE || ALPHA_RAWHIDE
  434. default y
  435. config ARCH_MAY_HAVE_PC_FDC
  436. def_bool y
  437. config SMP
  438. bool "Symmetric multi-processing support"
  439. depends on ALPHA_SABLE || ALPHA_LYNX || ALPHA_RAWHIDE || ALPHA_DP264 || ALPHA_WILDFIRE || ALPHA_TITAN || ALPHA_GENERIC || ALPHA_SHARK || ALPHA_MARVEL
  440. select USE_GENERIC_SMP_HELPERS
  441. ---help---
  442. This enables support for systems with more than one CPU. If you have
  443. a system with only one CPU, like most personal computers, say N. If
  444. you have a system with more than one CPU, say Y.
  445. If you say N here, the kernel will run on single and multiprocessor
  446. machines, but will use only one CPU of a multiprocessor machine. If
  447. you say Y here, the kernel will run on many, but not all,
  448. singleprocessor machines. On a singleprocessor machine, the kernel
  449. will run faster if you say N here.
  450. See also the SMP-HOWTO available at
  451. <http://www.tldp.org/docs.html#howto>.
  452. If you don't know what to do here, say N.
  453. config HAVE_DEC_LOCK
  454. bool
  455. depends on SMP
  456. default y
  457. config NR_CPUS
  458. int "Maximum number of CPUs (2-32)"
  459. range 2 32
  460. depends on SMP
  461. default "32" if ALPHA_GENERIC || ALPHA_MARVEL
  462. default "4" if !ALPHA_GENERIC && !ALPHA_MARVEL
  463. help
  464. MARVEL support can handle a maximum of 32 CPUs, all the others
  465. with working support have a maximum of 4 CPUs.
  466. config ARCH_DISCONTIGMEM_ENABLE
  467. bool "Discontiguous Memory Support (EXPERIMENTAL)"
  468. depends on EXPERIMENTAL
  469. help
  470. Say Y to support efficient handling of discontiguous physical memory,
  471. for architectures which are either NUMA (Non-Uniform Memory Access)
  472. or have huge holes in the physical address space for other reasons.
  473. See <file:Documentation/vm/numa> for more.
  474. source "mm/Kconfig"
  475. config NUMA
  476. bool "NUMA Support (EXPERIMENTAL)"
  477. depends on DISCONTIGMEM && BROKEN
  478. help
  479. Say Y to compile the kernel to support NUMA (Non-Uniform Memory
  480. Access). This option is for configuring high-end multiprocessor
  481. server machines. If in doubt, say N.
  482. config NODES_SHIFT
  483. int
  484. default "7"
  485. depends on NEED_MULTIPLE_NODES
  486. # LARGE_VMALLOC is racy, if you *really* need it then fix it first
  487. config ALPHA_LARGE_VMALLOC
  488. bool
  489. ---help---
  490. Process creation and other aspects of virtual memory management can
  491. be streamlined if we restrict the kernel to one PGD for all vmalloc
  492. allocations. This equates to about 8GB.
  493. Under normal circumstances, this is so far and above what is needed
  494. as to be laughable. However, there are certain applications (such
  495. as benchmark-grade in-kernel web serving) that can make use of as
  496. much vmalloc space as is available.
  497. Say N unless you know you need gobs and gobs of vmalloc space.
  498. config VERBOSE_MCHECK
  499. bool "Verbose Machine Checks"
  500. config VERBOSE_MCHECK_ON
  501. int "Verbose Printing Mode (0=off, 1=on, 2=all)"
  502. depends on VERBOSE_MCHECK
  503. default 1
  504. ---help---
  505. This option allows the default printing mode to be set, and then
  506. possibly overridden by a boot command argument.
  507. For example, if one wanted the option of printing verbose
  508. machine checks, but wanted the default to be as if verbose
  509. machine check printing was turned off, then one would choose
  510. the printing mode to be 0. Then, upon reboot, one could add
  511. the boot command line "verbose_mcheck=1" to get the normal
  512. verbose machine check printing, or "verbose_mcheck=2" to get
  513. the maximum information available.
  514. Take the default (1) unless you want more control or more info.
  515. config HZ
  516. int
  517. default 1200 if ALPHA_RAWHIDE
  518. default 1024
  519. source "drivers/pci/Kconfig"
  520. source "drivers/eisa/Kconfig"
  521. source "drivers/pcmcia/Kconfig"
  522. config SRM_ENV
  523. tristate "SRM environment through procfs"
  524. depends on PROC_FS
  525. ---help---
  526. If you enable this option, a subdirectory inside /proc called
  527. /proc/srm_environment will give you access to the all important
  528. SRM environment variables (those which have a name) and also
  529. to all others (by their internal number).
  530. SRM is something like a BIOS for Alpha machines. There are some
  531. other such BIOSes, like AlphaBIOS, which this driver cannot
  532. support (hey, that's not SRM!).
  533. Despite the fact that this driver doesn't work on all Alphas (but
  534. only on those which have SRM as their firmware), it's save to
  535. build it even if your particular machine doesn't know about SRM
  536. (or if you intend to compile a generic kernel). It will simply
  537. not create those subdirectory in /proc (and give you some warning,
  538. of course).
  539. This driver is also available as a module and will be called
  540. srm_env then.
  541. source "fs/Kconfig.binfmt"
  542. endmenu
  543. source "net/Kconfig"
  544. source "drivers/Kconfig"
  545. source "fs/Kconfig"
  546. source "arch/alpha/Kconfig.debug"
  547. # DUMMY_CONSOLE may be defined in drivers/video/console/Kconfig
  548. # but we also need it if VGA_HOSE is set
  549. config DUMMY_CONSOLE
  550. bool
  551. depends on VGA_HOSE
  552. default y
  553. source "security/Kconfig"
  554. source "crypto/Kconfig"
  555. source "lib/Kconfig"