Kconfig 38 KB

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