Kconfig 38 KB

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