Kconfig 31 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see Documentation/kbuild/kconfig-language.txt.
  4. #
  5. mainmenu "Linux Kernel Configuration"
  6. config ARM
  7. bool
  8. default y
  9. select HAVE_AOUT
  10. select HAVE_IDE
  11. select RTC_LIB
  12. select SYS_SUPPORTS_APM_EMULATION
  13. select HAVE_OPROFILE
  14. select HAVE_ARCH_KGDB
  15. select HAVE_KPROBES if (!XIP_KERNEL)
  16. select HAVE_KRETPROBES if (HAVE_KPROBES)
  17. select HAVE_FUNCTION_TRACER if (!XIP_KERNEL)
  18. select HAVE_GENERIC_DMA_COHERENT
  19. help
  20. The ARM series is a line of low-power-consumption RISC chip designs
  21. licensed by ARM Ltd and targeted at embedded applications and
  22. handhelds such as the Compaq IPAQ. ARM-based PCs are no longer
  23. manufactured, but legacy ARM-based PC hardware remains popular in
  24. Europe. There is an ARM Linux project with a web page at
  25. <http://www.arm.linux.org.uk/>.
  26. config HAVE_PWM
  27. bool
  28. config SYS_SUPPORTS_APM_EMULATION
  29. bool
  30. config GENERIC_GPIO
  31. bool
  32. default n
  33. config GENERIC_TIME
  34. bool
  35. default n
  36. config GENERIC_CLOCKEVENTS
  37. bool
  38. default n
  39. config GENERIC_CLOCKEVENTS_BROADCAST
  40. bool
  41. depends on GENERIC_CLOCKEVENTS
  42. default y if SMP && !LOCAL_TIMERS
  43. config MMU
  44. bool
  45. default y
  46. config NO_IOPORT
  47. bool
  48. default n
  49. config EISA
  50. bool
  51. ---help---
  52. The Extended Industry Standard Architecture (EISA) bus was
  53. developed as an open alternative to the IBM MicroChannel bus.
  54. The EISA bus provided some of the features of the IBM MicroChannel
  55. bus while maintaining backward compatibility with cards made for
  56. the older ISA bus. The EISA bus saw limited use between 1988 and
  57. 1995 when it was made obsolete by the PCI bus.
  58. Say Y here if you are building a kernel for an EISA-based machine.
  59. Otherwise, say N.
  60. config SBUS
  61. bool
  62. config MCA
  63. bool
  64. help
  65. MicroChannel Architecture is found in some IBM PS/2 machines and
  66. laptops. It is a bus system similar to PCI or ISA. See
  67. <file:Documentation/mca.txt> (and especially the web page given
  68. there) before attempting to build an MCA bus kernel.
  69. config GENERIC_HARDIRQS
  70. bool
  71. default y
  72. config STACKTRACE_SUPPORT
  73. bool
  74. default y
  75. config HAVE_LATENCYTOP_SUPPORT
  76. bool
  77. depends on !SMP
  78. default y
  79. config LOCKDEP_SUPPORT
  80. bool
  81. default y
  82. config TRACE_IRQFLAGS_SUPPORT
  83. bool
  84. default y
  85. config HARDIRQS_SW_RESEND
  86. bool
  87. default y
  88. config GENERIC_IRQ_PROBE
  89. bool
  90. default y
  91. config GENERIC_LOCKBREAK
  92. bool
  93. default y
  94. depends on SMP && PREEMPT
  95. config RWSEM_GENERIC_SPINLOCK
  96. bool
  97. default y
  98. config RWSEM_XCHGADD_ALGORITHM
  99. bool
  100. config ARCH_HAS_ILOG2_U32
  101. bool
  102. default n
  103. config ARCH_HAS_ILOG2_U64
  104. bool
  105. default n
  106. config GENERIC_HWEIGHT
  107. bool
  108. default y
  109. config GENERIC_CALIBRATE_DELAY
  110. bool
  111. default y
  112. config ARCH_MAY_HAVE_PC_FDC
  113. bool
  114. config ZONE_DMA
  115. bool
  116. config GENERIC_ISA_DMA
  117. bool
  118. config FIQ
  119. bool
  120. config ARCH_MTD_XIP
  121. bool
  122. config GENERIC_HARDIRQS_NO__DO_IRQ
  123. def_bool y
  124. if OPROFILE
  125. config OPROFILE_ARMV6
  126. def_bool y
  127. depends on CPU_V6 && !SMP
  128. select OPROFILE_ARM11_CORE
  129. config OPROFILE_MPCORE
  130. def_bool y
  131. depends on CPU_V6 && SMP
  132. select OPROFILE_ARM11_CORE
  133. config OPROFILE_ARM11_CORE
  134. bool
  135. config OPROFILE_ARMV7
  136. def_bool y
  137. depends on CPU_V7 && !SMP
  138. bool
  139. endif
  140. config VECTORS_BASE
  141. hex
  142. default 0xffff0000 if MMU || CPU_HIGH_VECTOR
  143. default DRAM_BASE if REMAP_VECTORS_TO_RAM
  144. default 0x00000000
  145. help
  146. The base address of exception vectors.
  147. source "init/Kconfig"
  148. source "kernel/Kconfig.freezer"
  149. menu "System Type"
  150. choice
  151. prompt "ARM system type"
  152. default ARCH_VERSATILE
  153. config ARCH_AAEC2000
  154. bool "Agilent AAEC-2000 based"
  155. select ARM_AMBA
  156. select HAVE_CLK
  157. help
  158. This enables support for systems based on the Agilent AAEC-2000
  159. config ARCH_INTEGRATOR
  160. bool "ARM Ltd. Integrator family"
  161. select ARM_AMBA
  162. select HAVE_CLK
  163. select ICST525
  164. help
  165. Support for ARM's Integrator platform.
  166. config ARCH_REALVIEW
  167. bool "ARM Ltd. RealView family"
  168. select ARM_AMBA
  169. select HAVE_CLK
  170. select ICST307
  171. select GENERIC_TIME
  172. select GENERIC_CLOCKEVENTS
  173. help
  174. This enables support for ARM Ltd RealView boards.
  175. config ARCH_VERSATILE
  176. bool "ARM Ltd. Versatile family"
  177. select ARM_AMBA
  178. select ARM_VIC
  179. select HAVE_CLK
  180. select ICST307
  181. select GENERIC_TIME
  182. select GENERIC_CLOCKEVENTS
  183. help
  184. This enables support for ARM Ltd Versatile board.
  185. config ARCH_AT91
  186. bool "Atmel AT91"
  187. select GENERIC_GPIO
  188. select HAVE_CLK
  189. help
  190. This enables support for systems based on the Atmel AT91RM9200,
  191. AT91SAM9 and AT91CAP9 processors.
  192. config ARCH_CLPS7500
  193. bool "Cirrus CL-PS7500FE"
  194. select TIMER_ACORN
  195. select ISA
  196. select NO_IOPORT
  197. select ARCH_SPARSEMEM_ENABLE
  198. help
  199. Support for the Cirrus Logic PS7500FE system-on-a-chip.
  200. config ARCH_CLPS711X
  201. bool "Cirrus Logic CLPS711x/EP721x-based"
  202. help
  203. Support for Cirrus Logic 711x/721x based boards.
  204. config ARCH_EBSA110
  205. bool "EBSA-110"
  206. select ISA
  207. select NO_IOPORT
  208. help
  209. This is an evaluation board for the StrongARM processor available
  210. from Digital. It has limited hardware on-board, including an
  211. Ethernet interface, two PCMCIA sockets, two serial ports and a
  212. parallel port.
  213. config ARCH_EP93XX
  214. bool "EP93xx-based"
  215. select ARM_AMBA
  216. select ARM_VIC
  217. select GENERIC_GPIO
  218. select HAVE_CLK
  219. select ARCH_REQUIRE_GPIOLIB
  220. help
  221. This enables support for the Cirrus EP93xx series of CPUs.
  222. config ARCH_FOOTBRIDGE
  223. bool "FootBridge"
  224. select FOOTBRIDGE
  225. help
  226. Support for systems based on the DC21285 companion chip
  227. ("FootBridge"), such as the Simtec CATS and the Rebel NetWinder.
  228. config ARCH_NETX
  229. bool "Hilscher NetX based"
  230. select ARM_VIC
  231. help
  232. This enables support for systems based on the Hilscher NetX Soc
  233. config ARCH_H720X
  234. bool "Hynix HMS720x-based"
  235. select ISA_DMA_API
  236. help
  237. This enables support for systems based on the Hynix HMS720x
  238. config ARCH_IMX
  239. bool "IMX"
  240. select GENERIC_GPIO
  241. select GENERIC_TIME
  242. select GENERIC_CLOCKEVENTS
  243. help
  244. Support for Motorola's i.MX family of processors (MX1, MXL).
  245. config ARCH_IOP13XX
  246. bool "IOP13xx-based"
  247. depends on MMU
  248. select PLAT_IOP
  249. select PCI
  250. select ARCH_SUPPORTS_MSI
  251. select VMSPLIT_1G
  252. help
  253. Support for Intel's IOP13XX (XScale) family of processors.
  254. config ARCH_IOP32X
  255. bool "IOP32x-based"
  256. depends on MMU
  257. select PLAT_IOP
  258. select PCI
  259. select GENERIC_GPIO
  260. select ARCH_REQUIRE_GPIOLIB
  261. help
  262. Support for Intel's 80219 and IOP32X (XScale) family of
  263. processors.
  264. config ARCH_IOP33X
  265. bool "IOP33x-based"
  266. depends on MMU
  267. select PLAT_IOP
  268. select PCI
  269. select GENERIC_GPIO
  270. select ARCH_REQUIRE_GPIOLIB
  271. help
  272. Support for Intel's IOP33X (XScale) family of processors.
  273. config ARCH_IXP23XX
  274. bool "IXP23XX-based"
  275. depends on MMU
  276. select PCI
  277. help
  278. Support for Intel's IXP23xx (XScale) family of processors.
  279. config ARCH_IXP2000
  280. bool "IXP2400/2800-based"
  281. depends on MMU
  282. select PCI
  283. help
  284. Support for Intel's IXP2400/2800 (XScale) family of processors.
  285. config ARCH_IXP4XX
  286. bool "IXP4xx-based"
  287. depends on MMU
  288. select GENERIC_GPIO
  289. select GENERIC_TIME
  290. select GENERIC_CLOCKEVENTS
  291. select DMABOUNCE if PCI
  292. help
  293. Support for Intel's IXP4XX (XScale) family of processors.
  294. config ARCH_L7200
  295. bool "LinkUp-L7200"
  296. select FIQ
  297. help
  298. Say Y here if you intend to run this kernel on a LinkUp Systems
  299. L7200 Software Development Board which uses an ARM720T processor.
  300. Information on this board can be obtained at:
  301. <http://www.linkupsys.com/>
  302. If you have any questions or comments about the Linux kernel port
  303. to this board, send e-mail to <sjhill@cotw.com>.
  304. config ARCH_KIRKWOOD
  305. bool "Marvell Kirkwood"
  306. select PCI
  307. select GENERIC_TIME
  308. select GENERIC_CLOCKEVENTS
  309. select PLAT_ORION
  310. help
  311. Support for the following Marvell Kirkwood series SoCs:
  312. 88F6180, 88F6192 and 88F6281.
  313. config ARCH_KS8695
  314. bool "Micrel/Kendin KS8695"
  315. select GENERIC_GPIO
  316. help
  317. Support for Micrel/Kendin KS8695 "Centaur" (ARM922T) based
  318. System-on-Chip devices.
  319. config ARCH_NS9XXX
  320. bool "NetSilicon NS9xxx"
  321. select GENERIC_GPIO
  322. select GENERIC_TIME
  323. select GENERIC_CLOCKEVENTS
  324. select HAVE_CLK
  325. help
  326. Say Y here if you intend to run this kernel on a NetSilicon NS9xxx
  327. System.
  328. <http://www.digi.com/products/microprocessors/index.jsp>
  329. config ARCH_LOKI
  330. bool "Marvell Loki (88RC8480)"
  331. select GENERIC_TIME
  332. select GENERIC_CLOCKEVENTS
  333. select PLAT_ORION
  334. help
  335. Support for the Marvell Loki (88RC8480) SoC.
  336. config ARCH_MV78XX0
  337. bool "Marvell MV78xx0"
  338. select PCI
  339. select GENERIC_TIME
  340. select GENERIC_CLOCKEVENTS
  341. select PLAT_ORION
  342. help
  343. Support for the following Marvell MV78xx0 series SoCs:
  344. MV781x0, MV782x0.
  345. config ARCH_MXC
  346. bool "Freescale MXC/iMX-based"
  347. select GENERIC_TIME
  348. select GENERIC_CLOCKEVENTS
  349. select ARCH_MTD_XIP
  350. select GENERIC_GPIO
  351. select ARCH_REQUIRE_GPIOLIB
  352. help
  353. Support for Freescale MXC/iMX-based family of processors
  354. config ARCH_ORION5X
  355. bool "Marvell Orion"
  356. depends on MMU
  357. select PCI
  358. select GENERIC_GPIO
  359. select GENERIC_TIME
  360. select GENERIC_CLOCKEVENTS
  361. select PLAT_ORION
  362. help
  363. Support for the following Marvell Orion 5x series SoCs:
  364. Orion-1 (5181), Orion-VoIP (5181L), Orion-NAS (5182),
  365. Orion-2 (5281), Orion-1-90 (6183).
  366. config ARCH_PNX4008
  367. bool "Philips Nexperia PNX4008 Mobile"
  368. select HAVE_CLK
  369. help
  370. This enables support for Philips PNX4008 mobile platform.
  371. config ARCH_PXA
  372. bool "PXA2xx/PXA3xx-based"
  373. depends on MMU
  374. select ARCH_MTD_XIP
  375. select GENERIC_GPIO
  376. select HAVE_CLK
  377. select ARCH_REQUIRE_GPIOLIB
  378. select GENERIC_TIME
  379. select GENERIC_CLOCKEVENTS
  380. select TICK_ONESHOT
  381. help
  382. Support for Intel/Marvell's PXA2xx/PXA3xx processor line.
  383. config ARCH_RPC
  384. bool "RiscPC"
  385. select ARCH_ACORN
  386. select FIQ
  387. select TIMER_ACORN
  388. select ARCH_MAY_HAVE_PC_FDC
  389. select HAVE_PATA_PLATFORM
  390. select ISA_DMA_API
  391. select NO_IOPORT
  392. select ARCH_SPARSEMEM_ENABLE
  393. help
  394. On the Acorn Risc-PC, Linux can support the internal IDE disk and
  395. CD-ROM interface, serial and parallel port, and the floppy drive.
  396. config ARCH_SA1100
  397. bool "SA1100-based"
  398. select ISA
  399. select ARCH_SPARSEMEM_ENABLE
  400. select ARCH_MTD_XIP
  401. select GENERIC_GPIO
  402. select GENERIC_TIME
  403. select GENERIC_CLOCKEVENTS
  404. select HAVE_CLK
  405. select TICK_ONESHOT
  406. select ARCH_REQUIRE_GPIOLIB
  407. help
  408. Support for StrongARM 11x0 based boards.
  409. config ARCH_S3C2410
  410. bool "Samsung S3C2410, S3C2412, S3C2413, S3C2440, S3C2442, S3C2443"
  411. select GENERIC_GPIO
  412. select HAVE_CLK
  413. help
  414. Samsung S3C2410X CPU based systems, such as the Simtec Electronics
  415. BAST (<http://www.simtec.co.uk/products/EB110ITX/>), the IPAQ 1940 or
  416. the Samsung SMDK2410 development board (and derivatives).
  417. config ARCH_SHARK
  418. bool "Shark"
  419. select ISA
  420. select ISA_DMA
  421. select ZONE_DMA
  422. select PCI
  423. help
  424. Support for the StrongARM based Digital DNARD machine, also known
  425. as "Shark" (<http://www.shark-linux.de/shark.html>).
  426. config ARCH_LH7A40X
  427. bool "Sharp LH7A40X"
  428. select ARCH_DISCONTIGMEM_ENABLE if !LH7A40X_CONTIGMEM
  429. select ARCH_SPARSEMEM_ENABLE if !LH7A40X_CONTIGMEM
  430. help
  431. Say Y here for systems based on one of the Sharp LH7A40X
  432. System on a Chip processors. These CPUs include an ARM922T
  433. core with a wide array of integrated devices for
  434. hand-held and low-power applications.
  435. config ARCH_DAVINCI
  436. bool "TI DaVinci"
  437. select GENERIC_TIME
  438. select GENERIC_CLOCKEVENTS
  439. select GENERIC_GPIO
  440. select ARCH_REQUIRE_GPIOLIB
  441. select HAVE_CLK
  442. select ZONE_DMA
  443. help
  444. Support for TI's DaVinci platform.
  445. config ARCH_OMAP
  446. bool "TI OMAP"
  447. select GENERIC_GPIO
  448. select HAVE_CLK
  449. select ARCH_REQUIRE_GPIOLIB
  450. select GENERIC_TIME
  451. select GENERIC_CLOCKEVENTS
  452. help
  453. Support for TI's OMAP platform (OMAP1 and OMAP2).
  454. config ARCH_MSM
  455. bool "Qualcomm MSM"
  456. select GENERIC_TIME
  457. select GENERIC_CLOCKEVENTS
  458. help
  459. Support for Qualcomm MSM7K based systems. This runs on the ARM11
  460. apps processor of the MSM7K and depends on a shared memory
  461. interface to the ARM9 modem processor which runs the baseband stack
  462. and controls some vital subsystems (clock and power control, etc).
  463. endchoice
  464. source "arch/arm/mach-clps711x/Kconfig"
  465. source "arch/arm/mach-ep93xx/Kconfig"
  466. source "arch/arm/mach-footbridge/Kconfig"
  467. source "arch/arm/mach-integrator/Kconfig"
  468. source "arch/arm/mach-iop32x/Kconfig"
  469. source "arch/arm/mach-iop33x/Kconfig"
  470. source "arch/arm/mach-iop13xx/Kconfig"
  471. source "arch/arm/mach-ixp4xx/Kconfig"
  472. source "arch/arm/mach-ixp2000/Kconfig"
  473. source "arch/arm/mach-ixp23xx/Kconfig"
  474. source "arch/arm/mach-loki/Kconfig"
  475. source "arch/arm/mach-mv78xx0/Kconfig"
  476. source "arch/arm/mach-pxa/Kconfig"
  477. source "arch/arm/mach-sa1100/Kconfig"
  478. source "arch/arm/plat-omap/Kconfig"
  479. source "arch/arm/mach-omap1/Kconfig"
  480. source "arch/arm/mach-omap2/Kconfig"
  481. source "arch/arm/mach-orion5x/Kconfig"
  482. source "arch/arm/mach-kirkwood/Kconfig"
  483. source "arch/arm/plat-s3c24xx/Kconfig"
  484. source "arch/arm/plat-s3c/Kconfig"
  485. if ARCH_S3C2410
  486. source "arch/arm/mach-s3c2400/Kconfig"
  487. source "arch/arm/mach-s3c2410/Kconfig"
  488. source "arch/arm/mach-s3c2412/Kconfig"
  489. source "arch/arm/mach-s3c2440/Kconfig"
  490. source "arch/arm/mach-s3c2442/Kconfig"
  491. source "arch/arm/mach-s3c2443/Kconfig"
  492. endif
  493. source "arch/arm/mach-lh7a40x/Kconfig"
  494. source "arch/arm/mach-imx/Kconfig"
  495. source "arch/arm/mach-h720x/Kconfig"
  496. source "arch/arm/mach-versatile/Kconfig"
  497. source "arch/arm/mach-aaec2000/Kconfig"
  498. source "arch/arm/mach-realview/Kconfig"
  499. source "arch/arm/mach-at91/Kconfig"
  500. source "arch/arm/plat-mxc/Kconfig"
  501. source "arch/arm/mach-netx/Kconfig"
  502. source "arch/arm/mach-ns9xxx/Kconfig"
  503. source "arch/arm/mach-davinci/Kconfig"
  504. source "arch/arm/mach-ks8695/Kconfig"
  505. source "arch/arm/mach-msm/Kconfig"
  506. # Definitions to make life easier
  507. config ARCH_ACORN
  508. bool
  509. config PLAT_IOP
  510. bool
  511. config PLAT_ORION
  512. bool
  513. source arch/arm/mm/Kconfig
  514. config IWMMXT
  515. bool "Enable iWMMXt support"
  516. depends on CPU_XSCALE || CPU_XSC3
  517. default y if PXA27x || PXA3xx
  518. help
  519. Enable support for iWMMXt context switching at run time if
  520. running on a CPU that supports it.
  521. # bool 'Use XScale PMU as timer source' CONFIG_XSCALE_PMU_TIMER
  522. config XSCALE_PMU
  523. bool
  524. depends on CPU_XSCALE && !XSCALE_PMU_TIMER
  525. default y
  526. if !MMU
  527. source "arch/arm/Kconfig-nommu"
  528. endif
  529. endmenu
  530. source "arch/arm/common/Kconfig"
  531. config FORCE_MAX_ZONEORDER
  532. int
  533. depends on SA1111
  534. default "9"
  535. menu "Bus support"
  536. config ARM_AMBA
  537. bool
  538. config ISA
  539. bool
  540. help
  541. Find out whether you have ISA slots on your motherboard. ISA is the
  542. name of a bus system, i.e. the way the CPU talks to the other stuff
  543. inside your box. Other bus systems are PCI, EISA, MicroChannel
  544. (MCA) or VESA. ISA is an older system, now being displaced by PCI;
  545. newer boards don't support it. If you have ISA, say Y, otherwise N.
  546. # Select ISA DMA controller support
  547. config ISA_DMA
  548. bool
  549. select ISA_DMA_API
  550. # Select ISA DMA interface
  551. config ISA_DMA_API
  552. bool
  553. config PCI
  554. bool "PCI support" if ARCH_INTEGRATOR_AP || ARCH_VERSATILE_PB || ARCH_IXP4XX || ARCH_KS8695 || MACH_ARMCORE
  555. help
  556. Find out whether you have a PCI motherboard. PCI is the name of a
  557. bus system, i.e. the way the CPU talks to the other stuff inside
  558. your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or
  559. VESA. If you have PCI, say Y, otherwise N.
  560. config PCI_SYSCALL
  561. def_bool PCI
  562. # Select the host bridge type
  563. config PCI_HOST_VIA82C505
  564. bool
  565. depends on PCI && ARCH_SHARK
  566. default y
  567. config PCI_HOST_ITE8152
  568. bool
  569. depends on PCI && MACH_ARMCORE
  570. default y
  571. select DMABOUNCE
  572. source "drivers/pci/Kconfig"
  573. source "drivers/pcmcia/Kconfig"
  574. endmenu
  575. menu "Kernel Features"
  576. source "kernel/time/Kconfig"
  577. config SMP
  578. bool "Symmetric Multi-Processing (EXPERIMENTAL)"
  579. depends on EXPERIMENTAL && (REALVIEW_EB_ARM11MP || MACH_REALVIEW_PB11MP)
  580. select USE_GENERIC_SMP_HELPERS
  581. help
  582. This enables support for systems with more than one CPU. If you have
  583. a system with only one CPU, like most personal computers, say N. If
  584. you have a system with more than one CPU, say Y.
  585. If you say N here, the kernel will run on single and multiprocessor
  586. machines, but will use only one CPU of a multiprocessor machine. If
  587. you say Y here, the kernel will run on many, but not all, single
  588. processor machines. On a single processor machine, the kernel will
  589. run faster if you say N here.
  590. See also <file:Documentation/i386/IO-APIC.txt>,
  591. <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available at
  592. <http://www.linuxdoc.org/docs.html#howto>.
  593. If you don't know what to do here, say N.
  594. choice
  595. prompt "Memory split"
  596. default VMSPLIT_3G
  597. help
  598. Select the desired split between kernel and user memory.
  599. If you are not absolutely sure what you are doing, leave this
  600. option alone!
  601. config VMSPLIT_3G
  602. bool "3G/1G user/kernel split"
  603. config VMSPLIT_2G
  604. bool "2G/2G user/kernel split"
  605. config VMSPLIT_1G
  606. bool "1G/3G user/kernel split"
  607. endchoice
  608. config PAGE_OFFSET
  609. hex
  610. default 0x40000000 if VMSPLIT_1G
  611. default 0x80000000 if VMSPLIT_2G
  612. default 0xC0000000
  613. config NR_CPUS
  614. int "Maximum number of CPUs (2-32)"
  615. range 2 32
  616. depends on SMP
  617. default "4"
  618. config HOTPLUG_CPU
  619. bool "Support for hot-pluggable CPUs (EXPERIMENTAL)"
  620. depends on SMP && HOTPLUG && EXPERIMENTAL
  621. help
  622. Say Y here to experiment with turning CPUs off and on. CPUs
  623. can be controlled through /sys/devices/system/cpu.
  624. config LOCAL_TIMERS
  625. bool "Use local timer interrupts"
  626. depends on SMP && (REALVIEW_EB_ARM11MP || MACH_REALVIEW_PB11MP)
  627. default y
  628. help
  629. Enable support for local timers on SMP platforms, rather then the
  630. legacy IPI broadcast method. Local timers allows the system
  631. accounting to be spread across the timer interval, preventing a
  632. "thundering herd" at every timer tick.
  633. config PREEMPT
  634. bool "Preemptible Kernel (EXPERIMENTAL)"
  635. depends on EXPERIMENTAL
  636. help
  637. This option reduces the latency of the kernel when reacting to
  638. real-time or interactive events by allowing a low priority process to
  639. be preempted even if it is in kernel mode executing a system call.
  640. This allows applications to run more reliably even when the system is
  641. under load.
  642. Say Y here if you are building a kernel for a desktop, embedded
  643. or real-time system. Say N if you are unsure.
  644. config HZ
  645. int
  646. default 128 if ARCH_L7200
  647. default 200 if ARCH_EBSA110 || ARCH_S3C2410
  648. default OMAP_32K_TIMER_HZ if ARCH_OMAP && OMAP_32K_TIMER
  649. default AT91_TIMER_HZ if ARCH_AT91
  650. default 100
  651. config AEABI
  652. bool "Use the ARM EABI to compile the kernel"
  653. help
  654. This option allows for the kernel to be compiled using the latest
  655. ARM ABI (aka EABI). This is only useful if you are using a user
  656. space environment that is also compiled with EABI.
  657. Since there are major incompatibilities between the legacy ABI and
  658. EABI, especially with regard to structure member alignment, this
  659. option also changes the kernel syscall calling convention to
  660. disambiguate both ABIs and allow for backward compatibility support
  661. (selected with CONFIG_OABI_COMPAT).
  662. To use this you need GCC version 4.0.0 or later.
  663. config OABI_COMPAT
  664. bool "Allow old ABI binaries to run with this kernel (EXPERIMENTAL)"
  665. depends on AEABI && EXPERIMENTAL
  666. default y
  667. help
  668. This option preserves the old syscall interface along with the
  669. new (ARM EABI) one. It also provides a compatibility layer to
  670. intercept syscalls that have structure arguments which layout
  671. in memory differs between the legacy ABI and the new ARM EABI
  672. (only for non "thumb" binaries). This option adds a tiny
  673. overhead to all syscalls and produces a slightly larger kernel.
  674. If you know you'll be using only pure EABI user space then you
  675. can say N here. If this option is not selected and you attempt
  676. to execute a legacy ABI binary then the result will be
  677. UNPREDICTABLE (in fact it can be predicted that it won't work
  678. at all). If in doubt say Y.
  679. config ARCH_FLATMEM_HAS_HOLES
  680. bool
  681. default y
  682. depends on FLATMEM
  683. # Discontigmem is deprecated
  684. config ARCH_DISCONTIGMEM_ENABLE
  685. bool
  686. config ARCH_SPARSEMEM_ENABLE
  687. bool
  688. config ARCH_SPARSEMEM_DEFAULT
  689. def_bool ARCH_SPARSEMEM_ENABLE
  690. config ARCH_SELECT_MEMORY_MODEL
  691. def_bool ARCH_DISCONTIGMEM_ENABLE && ARCH_SPARSEMEM_ENABLE
  692. config NODES_SHIFT
  693. int
  694. default "4" if ARCH_LH7A40X
  695. default "2"
  696. depends on NEED_MULTIPLE_NODES
  697. source "mm/Kconfig"
  698. config LEDS
  699. bool "Timer and CPU usage LEDs"
  700. depends on ARCH_CDB89712 || ARCH_EBSA110 || \
  701. ARCH_EBSA285 || ARCH_IMX || ARCH_INTEGRATOR || \
  702. ARCH_LUBBOCK || MACH_MAINSTONE || ARCH_NETWINDER || \
  703. ARCH_OMAP || ARCH_P720T || ARCH_PXA_IDP || \
  704. ARCH_SA1100 || ARCH_SHARK || ARCH_VERSATILE || \
  705. ARCH_AT91 || ARCH_DAVINCI || \
  706. ARCH_KS8695 || MACH_RD88F5182
  707. help
  708. If you say Y here, the LEDs on your machine will be used
  709. to provide useful information about your current system status.
  710. If you are compiling a kernel for a NetWinder or EBSA-285, you will
  711. be able to select which LEDs are active using the options below. If
  712. you are compiling a kernel for the EBSA-110 or the LART however, the
  713. red LED will simply flash regularly to indicate that the system is
  714. still functional. It is safe to say Y here if you have a CATS
  715. system, but the driver will do nothing.
  716. config LEDS_TIMER
  717. bool "Timer LED" if (!ARCH_CDB89712 && !ARCH_OMAP) || \
  718. OMAP_OSK_MISTRAL || MACH_OMAP_H2 \
  719. || MACH_OMAP_PERSEUS2
  720. depends on LEDS
  721. depends on !GENERIC_CLOCKEVENTS
  722. default y if ARCH_EBSA110
  723. help
  724. If you say Y here, one of the system LEDs (the green one on the
  725. NetWinder, the amber one on the EBSA285, or the red one on the LART)
  726. will flash regularly to indicate that the system is still
  727. operational. This is mainly useful to kernel hackers who are
  728. debugging unstable kernels.
  729. The LART uses the same LED for both Timer LED and CPU usage LED
  730. functions. You may choose to use both, but the Timer LED function
  731. will overrule the CPU usage LED.
  732. config LEDS_CPU
  733. bool "CPU usage LED" if (!ARCH_CDB89712 && !ARCH_EBSA110 && \
  734. !ARCH_OMAP) \
  735. || OMAP_OSK_MISTRAL || MACH_OMAP_H2 \
  736. || MACH_OMAP_PERSEUS2
  737. depends on LEDS
  738. help
  739. If you say Y here, the red LED will be used to give a good real
  740. time indication of CPU usage, by lighting whenever the idle task
  741. is not currently executing.
  742. The LART uses the same LED for both Timer LED and CPU usage LED
  743. functions. You may choose to use both, but the Timer LED function
  744. will overrule the CPU usage LED.
  745. config ALIGNMENT_TRAP
  746. bool
  747. depends on CPU_CP15_MMU
  748. default y if !ARCH_EBSA110
  749. help
  750. ARM processors cannot fetch/store information which is not
  751. naturally aligned on the bus, i.e., a 4 byte fetch must start at an
  752. address divisible by 4. On 32-bit ARM processors, these non-aligned
  753. fetch/store instructions will be emulated in software if you say
  754. here, which has a severe performance impact. This is necessary for
  755. correct operation of some network protocols. With an IP-only
  756. configuration it is safe to say N, otherwise say Y.
  757. endmenu
  758. menu "Boot options"
  759. # Compressed boot loader in ROM. Yes, we really want to ask about
  760. # TEXT and BSS so we preserve their values in the config files.
  761. config ZBOOT_ROM_TEXT
  762. hex "Compressed ROM boot loader base address"
  763. default "0"
  764. help
  765. The physical address at which the ROM-able zImage is to be
  766. placed in the target. Platforms which normally make use of
  767. ROM-able zImage formats normally set this to a suitable
  768. value in their defconfig file.
  769. If ZBOOT_ROM is not enabled, this has no effect.
  770. config ZBOOT_ROM_BSS
  771. hex "Compressed ROM boot loader BSS address"
  772. default "0"
  773. help
  774. The base address of an area of read/write memory in the target
  775. for the ROM-able zImage which must be available while the
  776. decompressor is running. It must be large enough to hold the
  777. entire decompressed kernel plus an additional 128 KiB.
  778. Platforms which normally make use of ROM-able zImage formats
  779. normally set this to a suitable value in their defconfig file.
  780. If ZBOOT_ROM is not enabled, this has no effect.
  781. config ZBOOT_ROM
  782. bool "Compressed boot loader in ROM/flash"
  783. depends on ZBOOT_ROM_TEXT != ZBOOT_ROM_BSS
  784. help
  785. Say Y here if you intend to execute your compressed kernel image
  786. (zImage) directly from ROM or flash. If unsure, say N.
  787. config CMDLINE
  788. string "Default kernel command string"
  789. default ""
  790. help
  791. On some architectures (EBSA110 and CATS), there is currently no way
  792. for the boot loader to pass arguments to the kernel. For these
  793. architectures, you should supply some command-line options at build
  794. time by entering them here. As a minimum, you should specify the
  795. memory size and the root device (e.g., mem=64M root=/dev/nfs).
  796. config XIP_KERNEL
  797. bool "Kernel Execute-In-Place from ROM"
  798. depends on !ZBOOT_ROM
  799. help
  800. Execute-In-Place allows the kernel to run from non-volatile storage
  801. directly addressable by the CPU, such as NOR flash. This saves RAM
  802. space since the text section of the kernel is not loaded from flash
  803. to RAM. Read-write sections, such as the data section and stack,
  804. are still copied to RAM. The XIP kernel is not compressed since
  805. it has to run directly from flash, so it will take more space to
  806. store it. The flash address used to link the kernel object files,
  807. and for storing it, is configuration dependent. Therefore, if you
  808. say Y here, you must know the proper physical address where to
  809. store the kernel image depending on your own flash memory usage.
  810. Also note that the make target becomes "make xipImage" rather than
  811. "make zImage" or "make Image". The final kernel binary to put in
  812. ROM memory will be arch/arm/boot/xipImage.
  813. If unsure, say N.
  814. config XIP_PHYS_ADDR
  815. hex "XIP Kernel Physical Location"
  816. depends on XIP_KERNEL
  817. default "0x00080000"
  818. help
  819. This is the physical address in your flash memory the kernel will
  820. be linked for and stored to. This address is dependent on your
  821. own flash usage.
  822. config KEXEC
  823. bool "Kexec system call (EXPERIMENTAL)"
  824. depends on EXPERIMENTAL
  825. help
  826. kexec is a system call that implements the ability to shutdown your
  827. current kernel, and to start another kernel. It is like a reboot
  828. but it is independent of the system firmware. And like a reboot
  829. you can start any kernel with it, not just Linux.
  830. It is an ongoing process to be certain the hardware in a machine
  831. is properly shutdown, so do not be surprised if this code does not
  832. initially work for you. It may help to enable device hotplugging
  833. support.
  834. config ATAGS_PROC
  835. bool "Export atags in procfs"
  836. depends on KEXEC
  837. default y
  838. help
  839. Should the atags used to boot the kernel be exported in an "atags"
  840. file in procfs. Useful with kexec.
  841. endmenu
  842. menu "CPU Power Management"
  843. if (ARCH_SA1100 || ARCH_INTEGRATOR || ARCH_OMAP || ARCH_IMX || ARCH_PXA)
  844. source "drivers/cpufreq/Kconfig"
  845. config CPU_FREQ_SA1100
  846. bool
  847. depends on CPU_FREQ && (SA1100_H3100 || SA1100_H3600 || SA1100_H3800 || SA1100_LART || SA1100_PLEB || SA1100_BADGE4 || SA1100_HACKKIT)
  848. default y
  849. config CPU_FREQ_SA1110
  850. bool
  851. depends on CPU_FREQ && (SA1100_ASSABET || SA1100_CERF || SA1100_PT_SYSTEM3)
  852. default y
  853. config CPU_FREQ_INTEGRATOR
  854. tristate "CPUfreq driver for ARM Integrator CPUs"
  855. depends on ARCH_INTEGRATOR && CPU_FREQ
  856. default y
  857. help
  858. This enables the CPUfreq driver for ARM Integrator CPUs.
  859. For details, take a look at <file:Documentation/cpu-freq>.
  860. If in doubt, say Y.
  861. config CPU_FREQ_IMX
  862. tristate "CPUfreq driver for i.MX CPUs"
  863. depends on ARCH_IMX && CPU_FREQ
  864. default n
  865. help
  866. This enables the CPUfreq driver for i.MX CPUs.
  867. If in doubt, say N.
  868. config CPU_FREQ_PXA
  869. bool
  870. depends on CPU_FREQ && ARCH_PXA && PXA25x
  871. default y
  872. select CPU_FREQ_DEFAULT_GOV_USERSPACE
  873. endif
  874. source "drivers/cpuidle/Kconfig"
  875. endmenu
  876. menu "Floating point emulation"
  877. comment "At least one emulation must be selected"
  878. config FPE_NWFPE
  879. bool "NWFPE math emulation"
  880. depends on !AEABI || OABI_COMPAT
  881. ---help---
  882. Say Y to include the NWFPE floating point emulator in the kernel.
  883. This is necessary to run most binaries. Linux does not currently
  884. support floating point hardware so you need to say Y here even if
  885. your machine has an FPA or floating point co-processor podule.
  886. You may say N here if you are going to load the Acorn FPEmulator
  887. early in the bootup.
  888. config FPE_NWFPE_XP
  889. bool "Support extended precision"
  890. depends on FPE_NWFPE
  891. help
  892. Say Y to include 80-bit support in the kernel floating-point
  893. emulator. Otherwise, only 32 and 64-bit support is compiled in.
  894. Note that gcc does not generate 80-bit operations by default,
  895. so in most cases this option only enlarges the size of the
  896. floating point emulator without any good reason.
  897. You almost surely want to say N here.
  898. config FPE_FASTFPE
  899. bool "FastFPE math emulation (EXPERIMENTAL)"
  900. depends on (!AEABI || OABI_COMPAT) && !CPU_32v3 && EXPERIMENTAL
  901. ---help---
  902. Say Y here to include the FAST floating point emulator in the kernel.
  903. This is an experimental much faster emulator which now also has full
  904. precision for the mantissa. It does not support any exceptions.
  905. It is very simple, and approximately 3-6 times faster than NWFPE.
  906. It should be sufficient for most programs. It may be not suitable
  907. for scientific calculations, but you have to check this for yourself.
  908. If you do not feel you need a faster FP emulation you should better
  909. choose NWFPE.
  910. config VFP
  911. bool "VFP-format floating point maths"
  912. depends on CPU_V6 || CPU_ARM926T || CPU_V7 || CPU_FEROCEON
  913. help
  914. Say Y to include VFP support code in the kernel. This is needed
  915. if your hardware includes a VFP unit.
  916. Please see <file:Documentation/arm/VFP/release-notes.txt> for
  917. release notes and additional status information.
  918. Say N if your target does not have VFP hardware.
  919. config VFPv3
  920. bool
  921. depends on VFP
  922. default y if CPU_V7
  923. config NEON
  924. bool "Advanced SIMD (NEON) Extension support"
  925. depends on VFPv3 && CPU_V7
  926. help
  927. Say Y to include support code for NEON, the ARMv7 Advanced SIMD
  928. Extension.
  929. endmenu
  930. menu "Userspace binary formats"
  931. source "fs/Kconfig.binfmt"
  932. config ARTHUR
  933. tristate "RISC OS personality"
  934. depends on !AEABI
  935. help
  936. Say Y here to include the kernel code necessary if you want to run
  937. Acorn RISC OS/Arthur binaries under Linux. This code is still very
  938. experimental; if this sounds frightening, say N and sleep in peace.
  939. You can also say M here to compile this support as a module (which
  940. will be called arthur).
  941. endmenu
  942. menu "Power management options"
  943. source "kernel/power/Kconfig"
  944. config ARCH_SUSPEND_POSSIBLE
  945. def_bool y
  946. endmenu
  947. source "net/Kconfig"
  948. menu "Device Drivers"
  949. source "drivers/base/Kconfig"
  950. source "drivers/connector/Kconfig"
  951. if ALIGNMENT_TRAP || !CPU_CP15_MMU
  952. source "drivers/mtd/Kconfig"
  953. endif
  954. source "drivers/parport/Kconfig"
  955. source "drivers/pnp/Kconfig"
  956. source "drivers/block/Kconfig"
  957. # misc before ide - BLK_DEV_SGIIOC4 depends on SGI_IOC4
  958. source "drivers/misc/Kconfig"
  959. source "drivers/ide/Kconfig"
  960. source "drivers/scsi/Kconfig"
  961. source "drivers/ata/Kconfig"
  962. source "drivers/md/Kconfig"
  963. source "drivers/message/fusion/Kconfig"
  964. source "drivers/ieee1394/Kconfig"
  965. source "drivers/message/i2o/Kconfig"
  966. source "drivers/net/Kconfig"
  967. source "drivers/isdn/Kconfig"
  968. # input before char - char/joystick depends on it. As does USB.
  969. source "drivers/input/Kconfig"
  970. source "drivers/char/Kconfig"
  971. source "drivers/i2c/Kconfig"
  972. source "drivers/spi/Kconfig"
  973. source "drivers/gpio/Kconfig"
  974. source "drivers/w1/Kconfig"
  975. source "drivers/power/Kconfig"
  976. source "drivers/hwmon/Kconfig"
  977. source "drivers/thermal/Kconfig"
  978. source "drivers/watchdog/Kconfig"
  979. source "drivers/ssb/Kconfig"
  980. #source "drivers/l3/Kconfig"
  981. source "drivers/mfd/Kconfig"
  982. source "drivers/media/Kconfig"
  983. source "drivers/video/Kconfig"
  984. source "sound/Kconfig"
  985. source "drivers/hid/Kconfig"
  986. source "drivers/usb/Kconfig"
  987. source "drivers/uwb/Kconfig"
  988. source "drivers/mmc/Kconfig"
  989. source "drivers/memstick/Kconfig"
  990. source "drivers/accessibility/Kconfig"
  991. source "drivers/leds/Kconfig"
  992. source "drivers/rtc/Kconfig"
  993. source "drivers/dma/Kconfig"
  994. source "drivers/dca/Kconfig"
  995. source "drivers/auxdisplay/Kconfig"
  996. source "drivers/regulator/Kconfig"
  997. source "drivers/uio/Kconfig"
  998. endmenu
  999. source "fs/Kconfig"
  1000. source "arch/arm/Kconfig.debug"
  1001. source "security/Kconfig"
  1002. source "crypto/Kconfig"
  1003. source "lib/Kconfig"