Kconfig 36 KB

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