Kconfig 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917
  1. config ARM
  2. bool
  3. default y
  4. select HAVE_AOUT
  5. select HAVE_DMA_API_DEBUG
  6. select HAVE_IDE
  7. select HAVE_MEMBLOCK
  8. select RTC_LIB
  9. select SYS_SUPPORTS_APM_EMULATION
  10. select GENERIC_ATOMIC64 if (CPU_V6 || !CPU_32v6K || !AEABI)
  11. select HAVE_OPROFILE if (HAVE_PERF_EVENTS)
  12. select HAVE_ARCH_KGDB
  13. select HAVE_KPROBES if (!XIP_KERNEL && !THUMB2_KERNEL)
  14. select HAVE_KRETPROBES if (HAVE_KPROBES)
  15. select HAVE_FUNCTION_TRACER if (!XIP_KERNEL)
  16. select HAVE_FTRACE_MCOUNT_RECORD if (!XIP_KERNEL)
  17. select HAVE_DYNAMIC_FTRACE if (!XIP_KERNEL)
  18. select HAVE_FUNCTION_GRAPH_TRACER if (!THUMB2_KERNEL)
  19. select HAVE_GENERIC_DMA_COHERENT
  20. select HAVE_KERNEL_GZIP
  21. select HAVE_KERNEL_LZO
  22. select HAVE_KERNEL_LZMA
  23. select HAVE_IRQ_WORK
  24. select HAVE_PERF_EVENTS
  25. select PERF_USE_VMALLOC
  26. select HAVE_REGS_AND_STACK_ACCESS_API
  27. select HAVE_HW_BREAKPOINT if (PERF_EVENTS && (CPU_V6 || CPU_V6K || CPU_V7))
  28. select HAVE_C_RECORDMCOUNT
  29. select HAVE_GENERIC_HARDIRQS
  30. select HAVE_SPARSE_IRQ
  31. help
  32. The ARM series is a line of low-power-consumption RISC chip designs
  33. licensed by ARM Ltd and targeted at embedded applications and
  34. handhelds such as the Compaq IPAQ. ARM-based PCs are no longer
  35. manufactured, but legacy ARM-based PC hardware remains popular in
  36. Europe. There is an ARM Linux project with a web page at
  37. <http://www.arm.linux.org.uk/>.
  38. config HAVE_PWM
  39. bool
  40. config MIGHT_HAVE_PCI
  41. bool
  42. config SYS_SUPPORTS_APM_EMULATION
  43. bool
  44. config HAVE_SCHED_CLOCK
  45. bool
  46. config GENERIC_GPIO
  47. bool
  48. config ARCH_USES_GETTIMEOFFSET
  49. bool
  50. default n
  51. config GENERIC_CLOCKEVENTS
  52. bool
  53. config GENERIC_CLOCKEVENTS_BROADCAST
  54. bool
  55. depends on GENERIC_CLOCKEVENTS
  56. default y if SMP
  57. config HAVE_TCM
  58. bool
  59. select GENERIC_ALLOCATOR
  60. config HAVE_PROC_CPU
  61. bool
  62. config NO_IOPORT
  63. bool
  64. config EISA
  65. bool
  66. ---help---
  67. The Extended Industry Standard Architecture (EISA) bus was
  68. developed as an open alternative to the IBM MicroChannel bus.
  69. The EISA bus provided some of the features of the IBM MicroChannel
  70. bus while maintaining backward compatibility with cards made for
  71. the older ISA bus. The EISA bus saw limited use between 1988 and
  72. 1995 when it was made obsolete by the PCI bus.
  73. Say Y here if you are building a kernel for an EISA-based machine.
  74. Otherwise, say N.
  75. config SBUS
  76. bool
  77. config MCA
  78. bool
  79. help
  80. MicroChannel Architecture is found in some IBM PS/2 machines and
  81. laptops. It is a bus system similar to PCI or ISA. See
  82. <file:Documentation/mca.txt> (and especially the web page given
  83. there) before attempting to build an MCA bus kernel.
  84. config STACKTRACE_SUPPORT
  85. bool
  86. default y
  87. config HAVE_LATENCYTOP_SUPPORT
  88. bool
  89. depends on !SMP
  90. default y
  91. config LOCKDEP_SUPPORT
  92. bool
  93. default y
  94. config TRACE_IRQFLAGS_SUPPORT
  95. bool
  96. default y
  97. config HARDIRQS_SW_RESEND
  98. bool
  99. default y
  100. config GENERIC_IRQ_PROBE
  101. bool
  102. default y
  103. config GENERIC_LOCKBREAK
  104. bool
  105. default y
  106. depends on SMP && PREEMPT
  107. config RWSEM_GENERIC_SPINLOCK
  108. bool
  109. default y
  110. config RWSEM_XCHGADD_ALGORITHM
  111. bool
  112. config ARCH_HAS_ILOG2_U32
  113. bool
  114. config ARCH_HAS_ILOG2_U64
  115. bool
  116. config ARCH_HAS_CPUFREQ
  117. bool
  118. help
  119. Internal node to signify that the ARCH has CPUFREQ support
  120. and that the relevant menu configurations are displayed for
  121. it.
  122. config ARCH_HAS_CPU_IDLE_WAIT
  123. def_bool y
  124. config GENERIC_HWEIGHT
  125. bool
  126. default y
  127. config GENERIC_CALIBRATE_DELAY
  128. bool
  129. default y
  130. config ARCH_MAY_HAVE_PC_FDC
  131. bool
  132. config ZONE_DMA
  133. bool
  134. config NEED_DMA_MAP_STATE
  135. def_bool y
  136. config GENERIC_ISA_DMA
  137. bool
  138. config FIQ
  139. bool
  140. config ARCH_MTD_XIP
  141. bool
  142. config ARM_L1_CACHE_SHIFT_6
  143. bool
  144. help
  145. Setting ARM L1 cache line size to 64 Bytes.
  146. config VECTORS_BASE
  147. hex
  148. default 0xffff0000 if MMU || CPU_HIGH_VECTOR
  149. default DRAM_BASE if REMAP_VECTORS_TO_RAM
  150. default 0x00000000
  151. help
  152. The base address of exception vectors.
  153. source "init/Kconfig"
  154. source "kernel/Kconfig.freezer"
  155. menu "System Type"
  156. config MMU
  157. bool "MMU-based Paged Memory Management Support"
  158. default y
  159. help
  160. Select if you want MMU-based virtualised addressing space
  161. support by paged memory management. If unsure, say 'Y'.
  162. #
  163. # The "ARM system type" choice list is ordered alphabetically by option
  164. # text. Please add new entries in the option alphabetic order.
  165. #
  166. choice
  167. prompt "ARM system type"
  168. default ARCH_VERSATILE
  169. config ARCH_AAEC2000
  170. bool "Agilent AAEC-2000 based"
  171. select CPU_ARM920T
  172. select ARM_AMBA
  173. select HAVE_CLK
  174. select ARCH_USES_GETTIMEOFFSET
  175. help
  176. This enables support for systems based on the Agilent AAEC-2000
  177. config ARCH_INTEGRATOR
  178. bool "ARM Ltd. Integrator family"
  179. select ARM_AMBA
  180. select ARCH_HAS_CPUFREQ
  181. select CLKDEV_LOOKUP
  182. select ICST
  183. select GENERIC_CLOCKEVENTS
  184. select PLAT_VERSATILE
  185. help
  186. Support for ARM's Integrator platform.
  187. config ARCH_REALVIEW
  188. bool "ARM Ltd. RealView family"
  189. select ARM_AMBA
  190. select CLKDEV_LOOKUP
  191. select HAVE_SCHED_CLOCK
  192. select ICST
  193. select GENERIC_CLOCKEVENTS
  194. select ARCH_WANT_OPTIONAL_GPIOLIB
  195. select PLAT_VERSATILE
  196. select ARM_TIMER_SP804
  197. select GPIO_PL061 if GPIOLIB
  198. help
  199. This enables support for ARM Ltd RealView boards.
  200. config ARCH_VERSATILE
  201. bool "ARM Ltd. Versatile family"
  202. select ARM_AMBA
  203. select ARM_VIC
  204. select CLKDEV_LOOKUP
  205. select HAVE_SCHED_CLOCK
  206. select ICST
  207. select GENERIC_CLOCKEVENTS
  208. select ARCH_WANT_OPTIONAL_GPIOLIB
  209. select PLAT_VERSATILE
  210. select ARM_TIMER_SP804
  211. help
  212. This enables support for ARM Ltd Versatile board.
  213. config ARCH_VEXPRESS
  214. bool "ARM Ltd. Versatile Express family"
  215. select ARCH_WANT_OPTIONAL_GPIOLIB
  216. select ARM_AMBA
  217. select ARM_TIMER_SP804
  218. select CLKDEV_LOOKUP
  219. select GENERIC_CLOCKEVENTS
  220. select HAVE_CLK
  221. select HAVE_SCHED_CLOCK
  222. select ICST
  223. select PLAT_VERSATILE
  224. help
  225. This enables support for the ARM Ltd Versatile Express boards.
  226. config ARCH_AT91
  227. bool "Atmel AT91"
  228. select ARCH_REQUIRE_GPIOLIB
  229. select HAVE_CLK
  230. help
  231. This enables support for systems based on the Atmel AT91RM9200,
  232. AT91SAM9 and AT91CAP9 processors.
  233. config ARCH_BCMRING
  234. bool "Broadcom BCMRING"
  235. depends on MMU
  236. select CPU_V6
  237. select ARM_AMBA
  238. select CLKDEV_LOOKUP
  239. select GENERIC_CLOCKEVENTS
  240. select ARCH_WANT_OPTIONAL_GPIOLIB
  241. help
  242. Support for Broadcom's BCMRing platform.
  243. config ARCH_CLPS711X
  244. bool "Cirrus Logic CLPS711x/EP721x-based"
  245. select CPU_ARM720T
  246. select ARCH_USES_GETTIMEOFFSET
  247. help
  248. Support for Cirrus Logic 711x/721x based boards.
  249. config ARCH_CNS3XXX
  250. bool "Cavium Networks CNS3XXX family"
  251. select CPU_V6
  252. select GENERIC_CLOCKEVENTS
  253. select ARM_GIC
  254. select MIGHT_HAVE_PCI
  255. select PCI_DOMAINS if PCI
  256. help
  257. Support for Cavium Networks CNS3XXX platform.
  258. config ARCH_GEMINI
  259. bool "Cortina Systems Gemini"
  260. select CPU_FA526
  261. select ARCH_REQUIRE_GPIOLIB
  262. select ARCH_USES_GETTIMEOFFSET
  263. help
  264. Support for the Cortina Systems Gemini family SoCs
  265. config ARCH_EBSA110
  266. bool "EBSA-110"
  267. select CPU_SA110
  268. select ISA
  269. select NO_IOPORT
  270. select ARCH_USES_GETTIMEOFFSET
  271. help
  272. This is an evaluation board for the StrongARM processor available
  273. from Digital. It has limited hardware on-board, including an
  274. Ethernet interface, two PCMCIA sockets, two serial ports and a
  275. parallel port.
  276. config ARCH_EP93XX
  277. bool "EP93xx-based"
  278. select CPU_ARM920T
  279. select ARM_AMBA
  280. select ARM_VIC
  281. select CLKDEV_LOOKUP
  282. select ARCH_REQUIRE_GPIOLIB
  283. select ARCH_HAS_HOLES_MEMORYMODEL
  284. select ARCH_USES_GETTIMEOFFSET
  285. help
  286. This enables support for the Cirrus EP93xx series of CPUs.
  287. config ARCH_FOOTBRIDGE
  288. bool "FootBridge"
  289. select CPU_SA110
  290. select FOOTBRIDGE
  291. select ARCH_USES_GETTIMEOFFSET
  292. help
  293. Support for systems based on the DC21285 companion chip
  294. ("FootBridge"), such as the Simtec CATS and the Rebel NetWinder.
  295. config ARCH_MXC
  296. bool "Freescale MXC/iMX-based"
  297. select GENERIC_CLOCKEVENTS
  298. select ARCH_REQUIRE_GPIOLIB
  299. select CLKDEV_LOOKUP
  300. help
  301. Support for Freescale MXC/iMX-based family of processors
  302. config ARCH_MXS
  303. bool "Freescale MXS-based"
  304. select GENERIC_CLOCKEVENTS
  305. select ARCH_REQUIRE_GPIOLIB
  306. select CLKDEV_LOOKUP
  307. help
  308. Support for Freescale MXS-based family of processors
  309. config ARCH_STMP3XXX
  310. bool "Freescale STMP3xxx"
  311. select CPU_ARM926T
  312. select CLKDEV_LOOKUP
  313. select ARCH_REQUIRE_GPIOLIB
  314. select GENERIC_CLOCKEVENTS
  315. select USB_ARCH_HAS_EHCI
  316. help
  317. Support for systems based on the Freescale 3xxx CPUs.
  318. config ARCH_NETX
  319. bool "Hilscher NetX based"
  320. select CPU_ARM926T
  321. select ARM_VIC
  322. select GENERIC_CLOCKEVENTS
  323. help
  324. This enables support for systems based on the Hilscher NetX Soc
  325. config ARCH_H720X
  326. bool "Hynix HMS720x-based"
  327. select CPU_ARM720T
  328. select ISA_DMA_API
  329. select ARCH_USES_GETTIMEOFFSET
  330. help
  331. This enables support for systems based on the Hynix HMS720x
  332. config ARCH_IOP13XX
  333. bool "IOP13xx-based"
  334. depends on MMU
  335. select CPU_XSC3
  336. select PLAT_IOP
  337. select PCI
  338. select ARCH_SUPPORTS_MSI
  339. select VMSPLIT_1G
  340. help
  341. Support for Intel's IOP13XX (XScale) family of processors.
  342. config ARCH_IOP32X
  343. bool "IOP32x-based"
  344. depends on MMU
  345. select CPU_XSCALE
  346. select PLAT_IOP
  347. select PCI
  348. select ARCH_REQUIRE_GPIOLIB
  349. help
  350. Support for Intel's 80219 and IOP32X (XScale) family of
  351. processors.
  352. config ARCH_IOP33X
  353. bool "IOP33x-based"
  354. depends on MMU
  355. select CPU_XSCALE
  356. select PLAT_IOP
  357. select PCI
  358. select ARCH_REQUIRE_GPIOLIB
  359. help
  360. Support for Intel's IOP33X (XScale) family of processors.
  361. config ARCH_IXP23XX
  362. bool "IXP23XX-based"
  363. depends on MMU
  364. select CPU_XSC3
  365. select PCI
  366. select ARCH_USES_GETTIMEOFFSET
  367. help
  368. Support for Intel's IXP23xx (XScale) family of processors.
  369. config ARCH_IXP2000
  370. bool "IXP2400/2800-based"
  371. depends on MMU
  372. select CPU_XSCALE
  373. select PCI
  374. select ARCH_USES_GETTIMEOFFSET
  375. help
  376. Support for Intel's IXP2400/2800 (XScale) family of processors.
  377. config ARCH_IXP4XX
  378. bool "IXP4xx-based"
  379. depends on MMU
  380. select CPU_XSCALE
  381. select GENERIC_GPIO
  382. select GENERIC_CLOCKEVENTS
  383. select HAVE_SCHED_CLOCK
  384. select MIGHT_HAVE_PCI
  385. select DMABOUNCE if PCI
  386. help
  387. Support for Intel's IXP4XX (XScale) family of processors.
  388. config ARCH_DOVE
  389. bool "Marvell Dove"
  390. select CPU_V6K
  391. select PCI
  392. select ARCH_REQUIRE_GPIOLIB
  393. select GENERIC_CLOCKEVENTS
  394. select PLAT_ORION
  395. help
  396. Support for the Marvell Dove SoC 88AP510
  397. config ARCH_KIRKWOOD
  398. bool "Marvell Kirkwood"
  399. select CPU_FEROCEON
  400. select PCI
  401. select ARCH_REQUIRE_GPIOLIB
  402. select GENERIC_CLOCKEVENTS
  403. select PLAT_ORION
  404. help
  405. Support for the following Marvell Kirkwood series SoCs:
  406. 88F6180, 88F6192 and 88F6281.
  407. config ARCH_LOKI
  408. bool "Marvell Loki (88RC8480)"
  409. select CPU_FEROCEON
  410. select GENERIC_CLOCKEVENTS
  411. select PLAT_ORION
  412. help
  413. Support for the Marvell Loki (88RC8480) SoC.
  414. config ARCH_LPC32XX
  415. bool "NXP LPC32XX"
  416. select CPU_ARM926T
  417. select ARCH_REQUIRE_GPIOLIB
  418. select HAVE_IDE
  419. select ARM_AMBA
  420. select USB_ARCH_HAS_OHCI
  421. select CLKDEV_LOOKUP
  422. select GENERIC_TIME
  423. select GENERIC_CLOCKEVENTS
  424. help
  425. Support for the NXP LPC32XX family of processors
  426. config ARCH_MV78XX0
  427. bool "Marvell MV78xx0"
  428. select CPU_FEROCEON
  429. select PCI
  430. select ARCH_REQUIRE_GPIOLIB
  431. select GENERIC_CLOCKEVENTS
  432. select PLAT_ORION
  433. help
  434. Support for the following Marvell MV78xx0 series SoCs:
  435. MV781x0, MV782x0.
  436. config ARCH_ORION5X
  437. bool "Marvell Orion"
  438. depends on MMU
  439. select CPU_FEROCEON
  440. select PCI
  441. select ARCH_REQUIRE_GPIOLIB
  442. select GENERIC_CLOCKEVENTS
  443. select PLAT_ORION
  444. help
  445. Support for the following Marvell Orion 5x series SoCs:
  446. Orion-1 (5181), Orion-VoIP (5181L), Orion-NAS (5182),
  447. Orion-2 (5281), Orion-1-90 (6183).
  448. config ARCH_MMP
  449. bool "Marvell PXA168/910/MMP2"
  450. depends on MMU
  451. select ARCH_REQUIRE_GPIOLIB
  452. select CLKDEV_LOOKUP
  453. select GENERIC_CLOCKEVENTS
  454. select HAVE_SCHED_CLOCK
  455. select TICK_ONESHOT
  456. select PLAT_PXA
  457. select SPARSE_IRQ
  458. help
  459. Support for Marvell's PXA168/PXA910(MMP) and MMP2 processor line.
  460. config ARCH_KS8695
  461. bool "Micrel/Kendin KS8695"
  462. select CPU_ARM922T
  463. select ARCH_REQUIRE_GPIOLIB
  464. select ARCH_USES_GETTIMEOFFSET
  465. help
  466. Support for Micrel/Kendin KS8695 "Centaur" (ARM922T) based
  467. System-on-Chip devices.
  468. config ARCH_NS9XXX
  469. bool "NetSilicon NS9xxx"
  470. select CPU_ARM926T
  471. select GENERIC_GPIO
  472. select GENERIC_CLOCKEVENTS
  473. select HAVE_CLK
  474. help
  475. Say Y here if you intend to run this kernel on a NetSilicon NS9xxx
  476. System.
  477. <http://www.digi.com/products/microprocessors/index.jsp>
  478. config ARCH_W90X900
  479. bool "Nuvoton W90X900 CPU"
  480. select CPU_ARM926T
  481. select ARCH_REQUIRE_GPIOLIB
  482. select CLKDEV_LOOKUP
  483. select GENERIC_CLOCKEVENTS
  484. help
  485. Support for Nuvoton (Winbond logic dept.) ARM9 processor,
  486. At present, the w90x900 has been renamed nuc900, regarding
  487. the ARM series product line, you can login the following
  488. link address to know more.
  489. <http://www.nuvoton.com/hq/enu/ProductAndSales/ProductLines/
  490. ConsumerElectronicsIC/ARMMicrocontroller/ARMMicrocontroller>
  491. config ARCH_NUC93X
  492. bool "Nuvoton NUC93X CPU"
  493. select CPU_ARM926T
  494. select CLKDEV_LOOKUP
  495. help
  496. Support for Nuvoton (Winbond logic dept.) NUC93X MCU,The NUC93X is a
  497. low-power and high performance MPEG-4/JPEG multimedia controller chip.
  498. config ARCH_TEGRA
  499. bool "NVIDIA Tegra"
  500. select CLKDEV_LOOKUP
  501. select GENERIC_TIME
  502. select GENERIC_CLOCKEVENTS
  503. select GENERIC_GPIO
  504. select HAVE_CLK
  505. select HAVE_SCHED_CLOCK
  506. select ARCH_HAS_BARRIERS if CACHE_L2X0
  507. select ARCH_HAS_CPUFREQ
  508. help
  509. This enables support for NVIDIA Tegra based systems (Tegra APX,
  510. Tegra 6xx and Tegra 2 series).
  511. config ARCH_PNX4008
  512. bool "Philips Nexperia PNX4008 Mobile"
  513. select CPU_ARM926T
  514. select CLKDEV_LOOKUP
  515. select ARCH_USES_GETTIMEOFFSET
  516. help
  517. This enables support for Philips PNX4008 mobile platform.
  518. config ARCH_PXA
  519. bool "PXA2xx/PXA3xx-based"
  520. depends on MMU
  521. select ARCH_MTD_XIP
  522. select ARCH_HAS_CPUFREQ
  523. select CLKDEV_LOOKUP
  524. select ARCH_REQUIRE_GPIOLIB
  525. select GENERIC_CLOCKEVENTS
  526. select HAVE_SCHED_CLOCK
  527. select TICK_ONESHOT
  528. select PLAT_PXA
  529. select SPARSE_IRQ
  530. help
  531. Support for Intel/Marvell's PXA2xx/PXA3xx processor line.
  532. config ARCH_MSM
  533. bool "Qualcomm MSM"
  534. select HAVE_CLK
  535. select GENERIC_CLOCKEVENTS
  536. select ARCH_REQUIRE_GPIOLIB
  537. help
  538. Support for Qualcomm MSM/QSD based systems. This runs on the
  539. apps processor of the MSM/QSD and depends on a shared memory
  540. interface to the modem processor which runs the baseband
  541. stack and controls some vital subsystems
  542. (clock and power control, etc).
  543. config ARCH_SHMOBILE
  544. bool "Renesas SH-Mobile / R-Mobile"
  545. select HAVE_CLK
  546. select CLKDEV_LOOKUP
  547. select GENERIC_CLOCKEVENTS
  548. select NO_IOPORT
  549. select SPARSE_IRQ
  550. select MULTI_IRQ_HANDLER
  551. help
  552. Support for Renesas's SH-Mobile and R-Mobile ARM platforms.
  553. config ARCH_RPC
  554. bool "RiscPC"
  555. select ARCH_ACORN
  556. select FIQ
  557. select TIMER_ACORN
  558. select ARCH_MAY_HAVE_PC_FDC
  559. select HAVE_PATA_PLATFORM
  560. select ISA_DMA_API
  561. select NO_IOPORT
  562. select ARCH_SPARSEMEM_ENABLE
  563. select ARCH_USES_GETTIMEOFFSET
  564. help
  565. On the Acorn Risc-PC, Linux can support the internal IDE disk and
  566. CD-ROM interface, serial and parallel port, and the floppy drive.
  567. config ARCH_SA1100
  568. bool "SA1100-based"
  569. select CPU_SA1100
  570. select ISA
  571. select ARCH_SPARSEMEM_ENABLE
  572. select ARCH_MTD_XIP
  573. select ARCH_HAS_CPUFREQ
  574. select CPU_FREQ
  575. select GENERIC_CLOCKEVENTS
  576. select HAVE_CLK
  577. select HAVE_SCHED_CLOCK
  578. select TICK_ONESHOT
  579. select ARCH_REQUIRE_GPIOLIB
  580. help
  581. Support for StrongARM 11x0 based boards.
  582. config ARCH_S3C2410
  583. bool "Samsung S3C2410, S3C2412, S3C2413, S3C2416, S3C2440, S3C2442, S3C2443, S3C2450"
  584. select GENERIC_GPIO
  585. select ARCH_HAS_CPUFREQ
  586. select HAVE_CLK
  587. select ARCH_USES_GETTIMEOFFSET
  588. select HAVE_S3C2410_I2C if I2C
  589. help
  590. Samsung S3C2410X CPU based systems, such as the Simtec Electronics
  591. BAST (<http://www.simtec.co.uk/products/EB110ITX/>), the IPAQ 1940 or
  592. the Samsung SMDK2410 development board (and derivatives).
  593. Note, the S3C2416 and the S3C2450 are so close that they even share
  594. the same SoC ID code. This means that there is no seperate machine
  595. directory (no arch/arm/mach-s3c2450) as the S3C2416 was first.
  596. config ARCH_S3C64XX
  597. bool "Samsung S3C64XX"
  598. select PLAT_SAMSUNG
  599. select CPU_V6
  600. select ARM_VIC
  601. select HAVE_CLK
  602. select NO_IOPORT
  603. select ARCH_USES_GETTIMEOFFSET
  604. select ARCH_HAS_CPUFREQ
  605. select ARCH_REQUIRE_GPIOLIB
  606. select SAMSUNG_CLKSRC
  607. select SAMSUNG_IRQ_VIC_TIMER
  608. select SAMSUNG_IRQ_UART
  609. select S3C_GPIO_TRACK
  610. select S3C_GPIO_PULL_UPDOWN
  611. select S3C_GPIO_CFG_S3C24XX
  612. select S3C_GPIO_CFG_S3C64XX
  613. select S3C_DEV_NAND
  614. select USB_ARCH_HAS_OHCI
  615. select SAMSUNG_GPIOLIB_4BIT
  616. select HAVE_S3C2410_I2C if I2C
  617. select HAVE_S3C2410_WATCHDOG if WATCHDOG
  618. help
  619. Samsung S3C64XX series based systems
  620. config ARCH_S5P64X0
  621. bool "Samsung S5P6440 S5P6450"
  622. select CPU_V6
  623. select GENERIC_GPIO
  624. select HAVE_CLK
  625. select HAVE_S3C2410_WATCHDOG if WATCHDOG
  626. select ARCH_USES_GETTIMEOFFSET
  627. select HAVE_S3C2410_I2C if I2C
  628. select HAVE_S3C_RTC if RTC_CLASS
  629. help
  630. Samsung S5P64X0 CPU based systems, such as the Samsung SMDK6440,
  631. SMDK6450.
  632. config ARCH_S5P6442
  633. bool "Samsung S5P6442"
  634. select CPU_V6
  635. select GENERIC_GPIO
  636. select HAVE_CLK
  637. select ARCH_USES_GETTIMEOFFSET
  638. select HAVE_S3C2410_WATCHDOG if WATCHDOG
  639. help
  640. Samsung S5P6442 CPU based systems
  641. config ARCH_S5PC100
  642. bool "Samsung S5PC100"
  643. select GENERIC_GPIO
  644. select HAVE_CLK
  645. select CPU_V7
  646. select ARM_L1_CACHE_SHIFT_6
  647. select ARCH_USES_GETTIMEOFFSET
  648. select HAVE_S3C2410_I2C if I2C
  649. select HAVE_S3C_RTC if RTC_CLASS
  650. select HAVE_S3C2410_WATCHDOG if WATCHDOG
  651. help
  652. Samsung S5PC100 series based systems
  653. config ARCH_S5PV210
  654. bool "Samsung S5PV210/S5PC110"
  655. select CPU_V7
  656. select ARCH_SPARSEMEM_ENABLE
  657. select GENERIC_GPIO
  658. select HAVE_CLK
  659. select ARM_L1_CACHE_SHIFT_6
  660. select ARCH_HAS_CPUFREQ
  661. select ARCH_USES_GETTIMEOFFSET
  662. select HAVE_S3C2410_I2C if I2C
  663. select HAVE_S3C_RTC if RTC_CLASS
  664. select HAVE_S3C2410_WATCHDOG if WATCHDOG
  665. help
  666. Samsung S5PV210/S5PC110 series based systems
  667. config ARCH_S5PV310
  668. bool "Samsung S5PV310/S5PC210"
  669. select CPU_V7
  670. select ARCH_SPARSEMEM_ENABLE
  671. select GENERIC_GPIO
  672. select HAVE_CLK
  673. select ARCH_HAS_CPUFREQ
  674. select GENERIC_CLOCKEVENTS
  675. select HAVE_S3C_RTC if RTC_CLASS
  676. select HAVE_S3C2410_I2C if I2C
  677. select HAVE_S3C2410_WATCHDOG if WATCHDOG
  678. help
  679. Samsung S5PV310 series based systems
  680. config ARCH_SHARK
  681. bool "Shark"
  682. select CPU_SA110
  683. select ISA
  684. select ISA_DMA
  685. select ZONE_DMA
  686. select PCI
  687. select ARCH_USES_GETTIMEOFFSET
  688. help
  689. Support for the StrongARM based Digital DNARD machine, also known
  690. as "Shark" (<http://www.shark-linux.de/shark.html>).
  691. config ARCH_TCC_926
  692. bool "Telechips TCC ARM926-based systems"
  693. select CPU_ARM926T
  694. select HAVE_CLK
  695. select CLKDEV_LOOKUP
  696. select GENERIC_CLOCKEVENTS
  697. help
  698. Support for Telechips TCC ARM926-based systems.
  699. config ARCH_LH7A40X
  700. bool "Sharp LH7A40X"
  701. select CPU_ARM922T
  702. select ARCH_SPARSEMEM_ENABLE if !LH7A40X_CONTIGMEM
  703. select ARCH_USES_GETTIMEOFFSET
  704. help
  705. Say Y here for systems based on one of the Sharp LH7A40X
  706. System on a Chip processors. These CPUs include an ARM922T
  707. core with a wide array of integrated devices for
  708. hand-held and low-power applications.
  709. config ARCH_U300
  710. bool "ST-Ericsson U300 Series"
  711. depends on MMU
  712. select CPU_ARM926T
  713. select HAVE_SCHED_CLOCK
  714. select HAVE_TCM
  715. select ARM_AMBA
  716. select ARM_VIC
  717. select GENERIC_CLOCKEVENTS
  718. select CLKDEV_LOOKUP
  719. select GENERIC_GPIO
  720. help
  721. Support for ST-Ericsson U300 series mobile platforms.
  722. config ARCH_U8500
  723. bool "ST-Ericsson U8500 Series"
  724. select CPU_V7
  725. select ARM_AMBA
  726. select GENERIC_CLOCKEVENTS
  727. select CLKDEV_LOOKUP
  728. select ARCH_REQUIRE_GPIOLIB
  729. select ARCH_HAS_CPUFREQ
  730. help
  731. Support for ST-Ericsson's Ux500 architecture
  732. config ARCH_NOMADIK
  733. bool "STMicroelectronics Nomadik"
  734. select ARM_AMBA
  735. select ARM_VIC
  736. select CPU_ARM926T
  737. select CLKDEV_LOOKUP
  738. select GENERIC_CLOCKEVENTS
  739. select ARCH_REQUIRE_GPIOLIB
  740. help
  741. Support for the Nomadik platform by ST-Ericsson
  742. config ARCH_DAVINCI
  743. bool "TI DaVinci"
  744. select GENERIC_CLOCKEVENTS
  745. select ARCH_REQUIRE_GPIOLIB
  746. select ZONE_DMA
  747. select HAVE_IDE
  748. select CLKDEV_LOOKUP
  749. select GENERIC_ALLOCATOR
  750. select ARCH_HAS_HOLES_MEMORYMODEL
  751. help
  752. Support for TI's DaVinci platform.
  753. config ARCH_OMAP
  754. bool "TI OMAP"
  755. select HAVE_CLK
  756. select ARCH_REQUIRE_GPIOLIB
  757. select ARCH_HAS_CPUFREQ
  758. select GENERIC_CLOCKEVENTS
  759. select HAVE_SCHED_CLOCK
  760. select ARCH_HAS_HOLES_MEMORYMODEL
  761. help
  762. Support for TI's OMAP platform (OMAP1/2/3/4).
  763. config PLAT_SPEAR
  764. bool "ST SPEAr"
  765. select ARM_AMBA
  766. select ARCH_REQUIRE_GPIOLIB
  767. select CLKDEV_LOOKUP
  768. select GENERIC_CLOCKEVENTS
  769. select HAVE_CLK
  770. help
  771. Support for ST's SPEAr platform (SPEAr3xx, SPEAr6xx and SPEAr13xx).
  772. endchoice
  773. #
  774. # This is sorted alphabetically by mach-* pathname. However, plat-*
  775. # Kconfigs may be included either alphabetically (according to the
  776. # plat- suffix) or along side the corresponding mach-* source.
  777. #
  778. source "arch/arm/mach-aaec2000/Kconfig"
  779. source "arch/arm/mach-at91/Kconfig"
  780. source "arch/arm/mach-bcmring/Kconfig"
  781. source "arch/arm/mach-clps711x/Kconfig"
  782. source "arch/arm/mach-cns3xxx/Kconfig"
  783. source "arch/arm/mach-davinci/Kconfig"
  784. source "arch/arm/mach-dove/Kconfig"
  785. source "arch/arm/mach-ep93xx/Kconfig"
  786. source "arch/arm/mach-footbridge/Kconfig"
  787. source "arch/arm/mach-gemini/Kconfig"
  788. source "arch/arm/mach-h720x/Kconfig"
  789. source "arch/arm/mach-integrator/Kconfig"
  790. source "arch/arm/mach-iop32x/Kconfig"
  791. source "arch/arm/mach-iop33x/Kconfig"
  792. source "arch/arm/mach-iop13xx/Kconfig"
  793. source "arch/arm/mach-ixp4xx/Kconfig"
  794. source "arch/arm/mach-ixp2000/Kconfig"
  795. source "arch/arm/mach-ixp23xx/Kconfig"
  796. source "arch/arm/mach-kirkwood/Kconfig"
  797. source "arch/arm/mach-ks8695/Kconfig"
  798. source "arch/arm/mach-lh7a40x/Kconfig"
  799. source "arch/arm/mach-loki/Kconfig"
  800. source "arch/arm/mach-lpc32xx/Kconfig"
  801. source "arch/arm/mach-msm/Kconfig"
  802. source "arch/arm/mach-mv78xx0/Kconfig"
  803. source "arch/arm/plat-mxc/Kconfig"
  804. source "arch/arm/mach-mxs/Kconfig"
  805. source "arch/arm/mach-netx/Kconfig"
  806. source "arch/arm/mach-nomadik/Kconfig"
  807. source "arch/arm/plat-nomadik/Kconfig"
  808. source "arch/arm/mach-ns9xxx/Kconfig"
  809. source "arch/arm/mach-nuc93x/Kconfig"
  810. source "arch/arm/plat-omap/Kconfig"
  811. source "arch/arm/mach-omap1/Kconfig"
  812. source "arch/arm/mach-omap2/Kconfig"
  813. source "arch/arm/mach-orion5x/Kconfig"
  814. source "arch/arm/mach-pxa/Kconfig"
  815. source "arch/arm/plat-pxa/Kconfig"
  816. source "arch/arm/mach-mmp/Kconfig"
  817. source "arch/arm/mach-realview/Kconfig"
  818. source "arch/arm/mach-sa1100/Kconfig"
  819. source "arch/arm/plat-samsung/Kconfig"
  820. source "arch/arm/plat-s3c24xx/Kconfig"
  821. source "arch/arm/plat-s5p/Kconfig"
  822. source "arch/arm/plat-spear/Kconfig"
  823. source "arch/arm/plat-tcc/Kconfig"
  824. if ARCH_S3C2410
  825. source "arch/arm/mach-s3c2400/Kconfig"
  826. source "arch/arm/mach-s3c2410/Kconfig"
  827. source "arch/arm/mach-s3c2412/Kconfig"
  828. source "arch/arm/mach-s3c2416/Kconfig"
  829. source "arch/arm/mach-s3c2440/Kconfig"
  830. source "arch/arm/mach-s3c2443/Kconfig"
  831. endif
  832. if ARCH_S3C64XX
  833. source "arch/arm/mach-s3c64xx/Kconfig"
  834. endif
  835. source "arch/arm/mach-s5p64x0/Kconfig"
  836. source "arch/arm/mach-s5p6442/Kconfig"
  837. source "arch/arm/mach-s5pc100/Kconfig"
  838. source "arch/arm/mach-s5pv210/Kconfig"
  839. source "arch/arm/mach-s5pv310/Kconfig"
  840. source "arch/arm/mach-shmobile/Kconfig"
  841. source "arch/arm/plat-stmp3xxx/Kconfig"
  842. source "arch/arm/mach-tegra/Kconfig"
  843. source "arch/arm/mach-u300/Kconfig"
  844. source "arch/arm/mach-ux500/Kconfig"
  845. source "arch/arm/mach-versatile/Kconfig"
  846. source "arch/arm/mach-vexpress/Kconfig"
  847. source "arch/arm/mach-w90x900/Kconfig"
  848. # Definitions to make life easier
  849. config ARCH_ACORN
  850. bool
  851. config PLAT_IOP
  852. bool
  853. select GENERIC_CLOCKEVENTS
  854. select HAVE_SCHED_CLOCK
  855. config PLAT_ORION
  856. bool
  857. select HAVE_SCHED_CLOCK
  858. config PLAT_PXA
  859. bool
  860. config PLAT_VERSATILE
  861. bool
  862. config ARM_TIMER_SP804
  863. bool
  864. source arch/arm/mm/Kconfig
  865. config IWMMXT
  866. bool "Enable iWMMXt support"
  867. depends on CPU_XSCALE || CPU_XSC3 || CPU_MOHAWK || CPU_PJ4
  868. default y if PXA27x || PXA3xx || PXA95x || ARCH_MMP
  869. help
  870. Enable support for iWMMXt context switching at run time if
  871. running on a CPU that supports it.
  872. # bool 'Use XScale PMU as timer source' CONFIG_XSCALE_PMU_TIMER
  873. config XSCALE_PMU
  874. bool
  875. depends on CPU_XSCALE && !XSCALE_PMU_TIMER
  876. default y
  877. config CPU_HAS_PMU
  878. depends on (CPU_V6 || CPU_V6K || CPU_V7 || XSCALE_PMU) && \
  879. (!ARCH_OMAP3 || OMAP3_EMU)
  880. default y
  881. bool
  882. config MULTI_IRQ_HANDLER
  883. bool
  884. help
  885. Allow each machine to specify it's own IRQ handler at run time.
  886. if !MMU
  887. source "arch/arm/Kconfig-nommu"
  888. endif
  889. config ARM_ERRATA_411920
  890. bool "ARM errata: Invalidation of the Instruction Cache operation can fail"
  891. depends on CPU_V6 || CPU_V6K
  892. help
  893. Invalidation of the Instruction Cache operation can
  894. fail. This erratum is present in 1136 (before r1p4), 1156 and 1176.
  895. It does not affect the MPCore. This option enables the ARM Ltd.
  896. recommended workaround.
  897. config ARM_ERRATA_430973
  898. bool "ARM errata: Stale prediction on replaced interworking branch"
  899. depends on CPU_V7
  900. help
  901. This option enables the workaround for the 430973 Cortex-A8
  902. (r1p0..r1p2) erratum. If a code sequence containing an ARM/Thumb
  903. interworking branch is replaced with another code sequence at the
  904. same virtual address, whether due to self-modifying code or virtual
  905. to physical address re-mapping, Cortex-A8 does not recover from the
  906. stale interworking branch prediction. This results in Cortex-A8
  907. executing the new code sequence in the incorrect ARM or Thumb state.
  908. The workaround enables the BTB/BTAC operations by setting ACTLR.IBE
  909. and also flushes the branch target cache at every context switch.
  910. Note that setting specific bits in the ACTLR register may not be
  911. available in non-secure mode.
  912. config ARM_ERRATA_458693
  913. bool "ARM errata: Processor deadlock when a false hazard is created"
  914. depends on CPU_V7
  915. help
  916. This option enables the workaround for the 458693 Cortex-A8 (r2p0)
  917. erratum. For very specific sequences of memory operations, it is
  918. possible for a hazard condition intended for a cache line to instead
  919. be incorrectly associated with a different cache line. This false
  920. hazard might then cause a processor deadlock. The workaround enables
  921. the L1 caching of the NEON accesses and disables the PLD instruction
  922. in the ACTLR register. Note that setting specific bits in the ACTLR
  923. register may not be available in non-secure mode.
  924. config ARM_ERRATA_460075
  925. bool "ARM errata: Data written to the L2 cache can be overwritten with stale data"
  926. depends on CPU_V7
  927. help
  928. This option enables the workaround for the 460075 Cortex-A8 (r2p0)
  929. erratum. Any asynchronous access to the L2 cache may encounter a
  930. situation in which recent store transactions to the L2 cache are lost
  931. and overwritten with stale memory contents from external memory. The
  932. workaround disables the write-allocate mode for the L2 cache via the
  933. ACTLR register. Note that setting specific bits in the ACTLR register
  934. may not be available in non-secure mode.
  935. config ARM_ERRATA_742230
  936. bool "ARM errata: DMB operation may be faulty"
  937. depends on CPU_V7 && SMP
  938. help
  939. This option enables the workaround for the 742230 Cortex-A9
  940. (r1p0..r2p2) erratum. Under rare circumstances, a DMB instruction
  941. between two write operations may not ensure the correct visibility
  942. ordering of the two writes. This workaround sets a specific bit in
  943. the diagnostic register of the Cortex-A9 which causes the DMB
  944. instruction to behave as a DSB, ensuring the correct behaviour of
  945. the two writes.
  946. config ARM_ERRATA_742231
  947. bool "ARM errata: Incorrect hazard handling in the SCU may lead to data corruption"
  948. depends on CPU_V7 && SMP
  949. help
  950. This option enables the workaround for the 742231 Cortex-A9
  951. (r2p0..r2p2) erratum. Under certain conditions, specific to the
  952. Cortex-A9 MPCore micro-architecture, two CPUs working in SMP mode,
  953. accessing some data located in the same cache line, may get corrupted
  954. data due to bad handling of the address hazard when the line gets
  955. replaced from one of the CPUs at the same time as another CPU is
  956. accessing it. This workaround sets specific bits in the diagnostic
  957. register of the Cortex-A9 which reduces the linefill issuing
  958. capabilities of the processor.
  959. config PL310_ERRATA_588369
  960. bool "Clean & Invalidate maintenance operations do not invalidate clean lines"
  961. depends on CACHE_L2X0 && ARCH_OMAP4
  962. help
  963. The PL310 L2 cache controller implements three types of Clean &
  964. Invalidate maintenance operations: by Physical Address
  965. (offset 0x7F0), by Index/Way (0x7F8) and by Way (0x7FC).
  966. They are architecturally defined to behave as the execution of a
  967. clean operation followed immediately by an invalidate operation,
  968. both performing to the same memory location. This functionality
  969. is not correctly implemented in PL310 as clean lines are not
  970. invalidated as a result of these operations. Note that this errata
  971. uses Texas Instrument's secure monitor api.
  972. config ARM_ERRATA_720789
  973. bool "ARM errata: TLBIASIDIS and TLBIMVAIS operations can broadcast a faulty ASID"
  974. depends on CPU_V7 && SMP
  975. help
  976. This option enables the workaround for the 720789 Cortex-A9 (prior to
  977. r2p0) erratum. A faulty ASID can be sent to the other CPUs for the
  978. broadcasted CP15 TLB maintenance operations TLBIASIDIS and TLBIMVAIS.
  979. As a consequence of this erratum, some TLB entries which should be
  980. invalidated are not, resulting in an incoherency in the system page
  981. tables. The workaround changes the TLB flushing routines to invalidate
  982. entries regardless of the ASID.
  983. config ARM_ERRATA_743622
  984. bool "ARM errata: Faulty hazard checking in the Store Buffer may lead to data corruption"
  985. depends on CPU_V7
  986. help
  987. This option enables the workaround for the 743622 Cortex-A9
  988. (r2p0..r2p2) erratum. Under very rare conditions, a faulty
  989. optimisation in the Cortex-A9 Store Buffer may lead to data
  990. corruption. This workaround sets a specific bit in the diagnostic
  991. register of the Cortex-A9 which disables the Store Buffer
  992. optimisation, preventing the defect from occurring. This has no
  993. visible impact on the overall performance or power consumption of the
  994. processor.
  995. endmenu
  996. source "arch/arm/common/Kconfig"
  997. menu "Bus support"
  998. config ARM_AMBA
  999. bool
  1000. config ISA
  1001. bool
  1002. help
  1003. Find out whether you have ISA slots on your motherboard. ISA is the
  1004. name of a bus system, i.e. the way the CPU talks to the other stuff
  1005. inside your box. Other bus systems are PCI, EISA, MicroChannel
  1006. (MCA) or VESA. ISA is an older system, now being displaced by PCI;
  1007. newer boards don't support it. If you have ISA, say Y, otherwise N.
  1008. # Select ISA DMA controller support
  1009. config ISA_DMA
  1010. bool
  1011. select ISA_DMA_API
  1012. # Select ISA DMA interface
  1013. config ISA_DMA_API
  1014. bool
  1015. config PCI
  1016. bool "PCI support" if MIGHT_HAVE_PCI
  1017. help
  1018. Find out whether you have a PCI motherboard. PCI is the name of a
  1019. bus system, i.e. the way the CPU talks to the other stuff inside
  1020. your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or
  1021. VESA. If you have PCI, say Y, otherwise N.
  1022. config PCI_DOMAINS
  1023. bool
  1024. depends on PCI
  1025. config PCI_NANOENGINE
  1026. bool "BSE nanoEngine PCI support"
  1027. depends on SA1100_NANOENGINE
  1028. help
  1029. Enable PCI on the BSE nanoEngine board.
  1030. config PCI_SYSCALL
  1031. def_bool PCI
  1032. # Select the host bridge type
  1033. config PCI_HOST_VIA82C505
  1034. bool
  1035. depends on PCI && ARCH_SHARK
  1036. default y
  1037. config PCI_HOST_ITE8152
  1038. bool
  1039. depends on PCI && MACH_ARMCORE
  1040. default y
  1041. select DMABOUNCE
  1042. source "drivers/pci/Kconfig"
  1043. source "drivers/pcmcia/Kconfig"
  1044. endmenu
  1045. menu "Kernel Features"
  1046. source "kernel/time/Kconfig"
  1047. config SMP
  1048. bool "Symmetric Multi-Processing (EXPERIMENTAL)"
  1049. depends on EXPERIMENTAL
  1050. depends on GENERIC_CLOCKEVENTS
  1051. depends on REALVIEW_EB_ARM11MP || REALVIEW_EB_A9MP || \
  1052. MACH_REALVIEW_PB11MP || MACH_REALVIEW_PBX || ARCH_OMAP4 || \
  1053. ARCH_S5PV310 || ARCH_TEGRA || ARCH_U8500 || ARCH_VEXPRESS_CA9X4 || \
  1054. ARCH_MSM_SCORPIONMP || ARCH_SHMOBILE
  1055. select USE_GENERIC_SMP_HELPERS
  1056. select HAVE_ARM_SCU if !ARCH_MSM_SCORPIONMP
  1057. help
  1058. This enables support for systems with more than one CPU. If you have
  1059. a system with only one CPU, like most personal computers, say N. If
  1060. you have a system with more than one CPU, say Y.
  1061. If you say N here, the kernel will run on single and multiprocessor
  1062. machines, but will use only one CPU of a multiprocessor machine. If
  1063. you say Y here, the kernel will run on many, but not all, single
  1064. processor machines. On a single processor machine, the kernel will
  1065. run faster if you say N here.
  1066. See also <file:Documentation/i386/IO-APIC.txt>,
  1067. <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available at
  1068. <http://tldp.org/HOWTO/SMP-HOWTO.html>.
  1069. If you don't know what to do here, say N.
  1070. config SMP_ON_UP
  1071. bool "Allow booting SMP kernel on uniprocessor systems (EXPERIMENTAL)"
  1072. depends on EXPERIMENTAL
  1073. depends on SMP && !XIP_KERNEL
  1074. default y
  1075. help
  1076. SMP kernels contain instructions which fail on non-SMP processors.
  1077. Enabling this option allows the kernel to modify itself to make
  1078. these instructions safe. Disabling it allows about 1K of space
  1079. savings.
  1080. If you don't know what to do here, say Y.
  1081. config HAVE_ARM_SCU
  1082. bool
  1083. depends on SMP
  1084. help
  1085. This option enables support for the ARM system coherency unit
  1086. config HAVE_ARM_TWD
  1087. bool
  1088. depends on SMP
  1089. select TICK_ONESHOT
  1090. help
  1091. This options enables support for the ARM timer and watchdog unit
  1092. choice
  1093. prompt "Memory split"
  1094. default VMSPLIT_3G
  1095. help
  1096. Select the desired split between kernel and user memory.
  1097. If you are not absolutely sure what you are doing, leave this
  1098. option alone!
  1099. config VMSPLIT_3G
  1100. bool "3G/1G user/kernel split"
  1101. config VMSPLIT_2G
  1102. bool "2G/2G user/kernel split"
  1103. config VMSPLIT_1G
  1104. bool "1G/3G user/kernel split"
  1105. endchoice
  1106. config PAGE_OFFSET
  1107. hex
  1108. default 0x40000000 if VMSPLIT_1G
  1109. default 0x80000000 if VMSPLIT_2G
  1110. default 0xC0000000
  1111. config NR_CPUS
  1112. int "Maximum number of CPUs (2-32)"
  1113. range 2 32
  1114. depends on SMP
  1115. default "4"
  1116. config HOTPLUG_CPU
  1117. bool "Support for hot-pluggable CPUs (EXPERIMENTAL)"
  1118. depends on SMP && HOTPLUG && EXPERIMENTAL
  1119. depends on !ARCH_MSM
  1120. help
  1121. Say Y here to experiment with turning CPUs off and on. CPUs
  1122. can be controlled through /sys/devices/system/cpu.
  1123. config LOCAL_TIMERS
  1124. bool "Use local timer interrupts"
  1125. depends on SMP
  1126. default y
  1127. select HAVE_ARM_TWD if !ARCH_MSM_SCORPIONMP
  1128. help
  1129. Enable support for local timers on SMP platforms, rather then the
  1130. legacy IPI broadcast method. Local timers allows the system
  1131. accounting to be spread across the timer interval, preventing a
  1132. "thundering herd" at every timer tick.
  1133. source kernel/Kconfig.preempt
  1134. config HZ
  1135. int
  1136. default 200 if ARCH_EBSA110 || ARCH_S3C2410 || ARCH_S5P64X0 || \
  1137. ARCH_S5P6442 || ARCH_S5PV210 || ARCH_S5PV310
  1138. default OMAP_32K_TIMER_HZ if ARCH_OMAP && OMAP_32K_TIMER
  1139. default AT91_TIMER_HZ if ARCH_AT91
  1140. default SHMOBILE_TIMER_HZ if ARCH_SHMOBILE
  1141. default 100
  1142. config THUMB2_KERNEL
  1143. bool "Compile the kernel in Thumb-2 mode (EXPERIMENTAL)"
  1144. depends on CPU_V7 && !CPU_V6 && !CPU_V6K && EXPERIMENTAL
  1145. select AEABI
  1146. select ARM_ASM_UNIFIED
  1147. help
  1148. By enabling this option, the kernel will be compiled in
  1149. Thumb-2 mode. A compiler/assembler that understand the unified
  1150. ARM-Thumb syntax is needed.
  1151. If unsure, say N.
  1152. config ARM_ASM_UNIFIED
  1153. bool
  1154. config AEABI
  1155. bool "Use the ARM EABI to compile the kernel"
  1156. help
  1157. This option allows for the kernel to be compiled using the latest
  1158. ARM ABI (aka EABI). This is only useful if you are using a user
  1159. space environment that is also compiled with EABI.
  1160. Since there are major incompatibilities between the legacy ABI and
  1161. EABI, especially with regard to structure member alignment, this
  1162. option also changes the kernel syscall calling convention to
  1163. disambiguate both ABIs and allow for backward compatibility support
  1164. (selected with CONFIG_OABI_COMPAT).
  1165. To use this you need GCC version 4.0.0 or later.
  1166. config OABI_COMPAT
  1167. bool "Allow old ABI binaries to run with this kernel (EXPERIMENTAL)"
  1168. depends on AEABI && EXPERIMENTAL
  1169. default y
  1170. help
  1171. This option preserves the old syscall interface along with the
  1172. new (ARM EABI) one. It also provides a compatibility layer to
  1173. intercept syscalls that have structure arguments which layout
  1174. in memory differs between the legacy ABI and the new ARM EABI
  1175. (only for non "thumb" binaries). This option adds a tiny
  1176. overhead to all syscalls and produces a slightly larger kernel.
  1177. If you know you'll be using only pure EABI user space then you
  1178. can say N here. If this option is not selected and you attempt
  1179. to execute a legacy ABI binary then the result will be
  1180. UNPREDICTABLE (in fact it can be predicted that it won't work
  1181. at all). If in doubt say Y.
  1182. config ARCH_HAS_HOLES_MEMORYMODEL
  1183. bool
  1184. config ARCH_SPARSEMEM_ENABLE
  1185. bool
  1186. config ARCH_SPARSEMEM_DEFAULT
  1187. def_bool ARCH_SPARSEMEM_ENABLE
  1188. config ARCH_SELECT_MEMORY_MODEL
  1189. def_bool ARCH_SPARSEMEM_ENABLE
  1190. config HIGHMEM
  1191. bool "High Memory Support (EXPERIMENTAL)"
  1192. depends on MMU && EXPERIMENTAL
  1193. help
  1194. The address space of ARM processors is only 4 Gigabytes large
  1195. and it has to accommodate user address space, kernel address
  1196. space as well as some memory mapped IO. That means that, if you
  1197. have a large amount of physical memory and/or IO, not all of the
  1198. memory can be "permanently mapped" by the kernel. The physical
  1199. memory that is not permanently mapped is called "high memory".
  1200. Depending on the selected kernel/user memory split, minimum
  1201. vmalloc space and actual amount of RAM, you may not need this
  1202. option which should result in a slightly faster kernel.
  1203. If unsure, say n.
  1204. config HIGHPTE
  1205. bool "Allocate 2nd-level pagetables from highmem"
  1206. depends on HIGHMEM
  1207. depends on !OUTER_CACHE
  1208. config HW_PERF_EVENTS
  1209. bool "Enable hardware performance counter support for perf events"
  1210. depends on PERF_EVENTS && CPU_HAS_PMU
  1211. default y
  1212. help
  1213. Enable hardware performance counter support for perf events. If
  1214. disabled, perf events will use software events only.
  1215. source "mm/Kconfig"
  1216. config FORCE_MAX_ZONEORDER
  1217. int "Maximum zone order" if ARCH_SHMOBILE
  1218. range 11 64 if ARCH_SHMOBILE
  1219. default "9" if SA1111
  1220. default "11"
  1221. help
  1222. The kernel memory allocator divides physically contiguous memory
  1223. blocks into "zones", where each zone is a power of two number of
  1224. pages. This option selects the largest power of two that the kernel
  1225. keeps in the memory allocator. If you need to allocate very large
  1226. blocks of physically contiguous memory, then you may need to
  1227. increase this value.
  1228. This config option is actually maximum order plus one. For example,
  1229. a value of 11 means that the largest free memory block is 2^10 pages.
  1230. config LEDS
  1231. bool "Timer and CPU usage LEDs"
  1232. depends on ARCH_CDB89712 || ARCH_EBSA110 || \
  1233. ARCH_EBSA285 || ARCH_INTEGRATOR || \
  1234. ARCH_LUBBOCK || MACH_MAINSTONE || ARCH_NETWINDER || \
  1235. ARCH_OMAP || ARCH_P720T || ARCH_PXA_IDP || \
  1236. ARCH_SA1100 || ARCH_SHARK || ARCH_VERSATILE || \
  1237. ARCH_AT91 || ARCH_DAVINCI || \
  1238. ARCH_KS8695 || MACH_RD88F5182 || ARCH_REALVIEW
  1239. help
  1240. If you say Y here, the LEDs on your machine will be used
  1241. to provide useful information about your current system status.
  1242. If you are compiling a kernel for a NetWinder or EBSA-285, you will
  1243. be able to select which LEDs are active using the options below. If
  1244. you are compiling a kernel for the EBSA-110 or the LART however, the
  1245. red LED will simply flash regularly to indicate that the system is
  1246. still functional. It is safe to say Y here if you have a CATS
  1247. system, but the driver will do nothing.
  1248. config LEDS_TIMER
  1249. bool "Timer LED" if (!ARCH_CDB89712 && !ARCH_OMAP) || \
  1250. OMAP_OSK_MISTRAL || MACH_OMAP_H2 \
  1251. || MACH_OMAP_PERSEUS2
  1252. depends on LEDS
  1253. depends on !GENERIC_CLOCKEVENTS
  1254. default y if ARCH_EBSA110
  1255. help
  1256. If you say Y here, one of the system LEDs (the green one on the
  1257. NetWinder, the amber one on the EBSA285, or the red one on the LART)
  1258. will flash regularly to indicate that the system is still
  1259. operational. This is mainly useful to kernel hackers who are
  1260. debugging unstable kernels.
  1261. The LART uses the same LED for both Timer LED and CPU usage LED
  1262. functions. You may choose to use both, but the Timer LED function
  1263. will overrule the CPU usage LED.
  1264. config LEDS_CPU
  1265. bool "CPU usage LED" if (!ARCH_CDB89712 && !ARCH_EBSA110 && \
  1266. !ARCH_OMAP) \
  1267. || OMAP_OSK_MISTRAL || MACH_OMAP_H2 \
  1268. || MACH_OMAP_PERSEUS2
  1269. depends on LEDS
  1270. help
  1271. If you say Y here, the red LED will be used to give a good real
  1272. time indication of CPU usage, by lighting whenever the idle task
  1273. is not currently executing.
  1274. The LART uses the same LED for both Timer LED and CPU usage LED
  1275. functions. You may choose to use both, but the Timer LED function
  1276. will overrule the CPU usage LED.
  1277. config ALIGNMENT_TRAP
  1278. bool
  1279. depends on CPU_CP15_MMU
  1280. default y if !ARCH_EBSA110
  1281. select HAVE_PROC_CPU if PROC_FS
  1282. help
  1283. ARM processors cannot fetch/store information which is not
  1284. naturally aligned on the bus, i.e., a 4 byte fetch must start at an
  1285. address divisible by 4. On 32-bit ARM processors, these non-aligned
  1286. fetch/store instructions will be emulated in software if you say
  1287. here, which has a severe performance impact. This is necessary for
  1288. correct operation of some network protocols. With an IP-only
  1289. configuration it is safe to say N, otherwise say Y.
  1290. config UACCESS_WITH_MEMCPY
  1291. bool "Use kernel mem{cpy,set}() for {copy_to,clear}_user() (EXPERIMENTAL)"
  1292. depends on MMU && EXPERIMENTAL
  1293. default y if CPU_FEROCEON
  1294. help
  1295. Implement faster copy_to_user and clear_user methods for CPU
  1296. cores where a 8-word STM instruction give significantly higher
  1297. memory write throughput than a sequence of individual 32bit stores.
  1298. A possible side effect is a slight increase in scheduling latency
  1299. between threads sharing the same address space if they invoke
  1300. such copy operations with large buffers.
  1301. However, if the CPU data cache is using a write-allocate mode,
  1302. this option is unlikely to provide any performance gain.
  1303. config SECCOMP
  1304. bool
  1305. prompt "Enable seccomp to safely compute untrusted bytecode"
  1306. ---help---
  1307. This kernel feature is useful for number crunching applications
  1308. that may need to compute untrusted bytecode during their
  1309. execution. By using pipes or other transports made available to
  1310. the process as file descriptors supporting the read/write
  1311. syscalls, it's possible to isolate those applications in
  1312. their own address space using seccomp. Once seccomp is
  1313. enabled via prctl(PR_SET_SECCOMP), it cannot be disabled
  1314. and the task is only allowed to execute a few safe syscalls
  1315. defined by each seccomp mode.
  1316. config CC_STACKPROTECTOR
  1317. bool "Enable -fstack-protector buffer overflow detection (EXPERIMENTAL)"
  1318. depends on EXPERIMENTAL
  1319. help
  1320. This option turns on the -fstack-protector GCC feature. This
  1321. feature puts, at the beginning of functions, a canary value on
  1322. the stack just before the return address, and validates
  1323. the value just before actually returning. Stack based buffer
  1324. overflows (that need to overwrite this return address) now also
  1325. overwrite the canary, which gets detected and the attack is then
  1326. neutralized via a kernel panic.
  1327. This feature requires gcc version 4.2 or above.
  1328. config DEPRECATED_PARAM_STRUCT
  1329. bool "Provide old way to pass kernel parameters"
  1330. help
  1331. This was deprecated in 2001 and announced to live on for 5 years.
  1332. Some old boot loaders still use this way.
  1333. endmenu
  1334. menu "Boot options"
  1335. # Compressed boot loader in ROM. Yes, we really want to ask about
  1336. # TEXT and BSS so we preserve their values in the config files.
  1337. config ZBOOT_ROM_TEXT
  1338. hex "Compressed ROM boot loader base address"
  1339. default "0"
  1340. help
  1341. The physical address at which the ROM-able zImage is to be
  1342. placed in the target. Platforms which normally make use of
  1343. ROM-able zImage formats normally set this to a suitable
  1344. value in their defconfig file.
  1345. If ZBOOT_ROM is not enabled, this has no effect.
  1346. config ZBOOT_ROM_BSS
  1347. hex "Compressed ROM boot loader BSS address"
  1348. default "0"
  1349. help
  1350. The base address of an area of read/write memory in the target
  1351. for the ROM-able zImage which must be available while the
  1352. decompressor is running. It must be large enough to hold the
  1353. entire decompressed kernel plus an additional 128 KiB.
  1354. Platforms which normally make use of ROM-able zImage formats
  1355. normally set this to a suitable value in their defconfig file.
  1356. If ZBOOT_ROM is not enabled, this has no effect.
  1357. config ZBOOT_ROM
  1358. bool "Compressed boot loader in ROM/flash"
  1359. depends on ZBOOT_ROM_TEXT != ZBOOT_ROM_BSS
  1360. help
  1361. Say Y here if you intend to execute your compressed kernel image
  1362. (zImage) directly from ROM or flash. If unsure, say N.
  1363. config CMDLINE
  1364. string "Default kernel command string"
  1365. default ""
  1366. help
  1367. On some architectures (EBSA110 and CATS), there is currently no way
  1368. for the boot loader to pass arguments to the kernel. For these
  1369. architectures, you should supply some command-line options at build
  1370. time by entering them here. As a minimum, you should specify the
  1371. memory size and the root device (e.g., mem=64M root=/dev/nfs).
  1372. config CMDLINE_FORCE
  1373. bool "Always use the default kernel command string"
  1374. depends on CMDLINE != ""
  1375. help
  1376. Always use the default kernel command string, even if the boot
  1377. loader passes other arguments to the kernel.
  1378. This is useful if you cannot or don't want to change the
  1379. command-line options your boot loader passes to the kernel.
  1380. If unsure, say N.
  1381. config XIP_KERNEL
  1382. bool "Kernel Execute-In-Place from ROM"
  1383. depends on !ZBOOT_ROM
  1384. help
  1385. Execute-In-Place allows the kernel to run from non-volatile storage
  1386. directly addressable by the CPU, such as NOR flash. This saves RAM
  1387. space since the text section of the kernel is not loaded from flash
  1388. to RAM. Read-write sections, such as the data section and stack,
  1389. are still copied to RAM. The XIP kernel is not compressed since
  1390. it has to run directly from flash, so it will take more space to
  1391. store it. The flash address used to link the kernel object files,
  1392. and for storing it, is configuration dependent. Therefore, if you
  1393. say Y here, you must know the proper physical address where to
  1394. store the kernel image depending on your own flash memory usage.
  1395. Also note that the make target becomes "make xipImage" rather than
  1396. "make zImage" or "make Image". The final kernel binary to put in
  1397. ROM memory will be arch/arm/boot/xipImage.
  1398. If unsure, say N.
  1399. config XIP_PHYS_ADDR
  1400. hex "XIP Kernel Physical Location"
  1401. depends on XIP_KERNEL
  1402. default "0x00080000"
  1403. help
  1404. This is the physical address in your flash memory the kernel will
  1405. be linked for and stored to. This address is dependent on your
  1406. own flash usage.
  1407. config KEXEC
  1408. bool "Kexec system call (EXPERIMENTAL)"
  1409. depends on EXPERIMENTAL
  1410. help
  1411. kexec is a system call that implements the ability to shutdown your
  1412. current kernel, and to start another kernel. It is like a reboot
  1413. but it is independent of the system firmware. And like a reboot
  1414. you can start any kernel with it, not just Linux.
  1415. It is an ongoing process to be certain the hardware in a machine
  1416. is properly shutdown, so do not be surprised if this code does not
  1417. initially work for you. It may help to enable device hotplugging
  1418. support.
  1419. config ATAGS_PROC
  1420. bool "Export atags in procfs"
  1421. depends on KEXEC
  1422. default y
  1423. help
  1424. Should the atags used to boot the kernel be exported in an "atags"
  1425. file in procfs. Useful with kexec.
  1426. config CRASH_DUMP
  1427. bool "Build kdump crash kernel (EXPERIMENTAL)"
  1428. depends on EXPERIMENTAL
  1429. help
  1430. Generate crash dump after being started by kexec. This should
  1431. be normally only set in special crash dump kernels which are
  1432. loaded in the main kernel with kexec-tools into a specially
  1433. reserved region and then later executed after a crash by
  1434. kdump/kexec. The crash dump kernel must be compiled to a
  1435. memory address not used by the main kernel
  1436. For more details see Documentation/kdump/kdump.txt
  1437. config AUTO_ZRELADDR
  1438. bool "Auto calculation of the decompressed kernel image address"
  1439. depends on !ZBOOT_ROM && !ARCH_U300
  1440. help
  1441. ZRELADDR is the physical address where the decompressed kernel
  1442. image will be placed. If AUTO_ZRELADDR is selected, the address
  1443. will be determined at run-time by masking the current IP with
  1444. 0xf8000000. This assumes the zImage being placed in the first 128MB
  1445. from start of memory.
  1446. endmenu
  1447. menu "CPU Power Management"
  1448. if ARCH_HAS_CPUFREQ
  1449. source "drivers/cpufreq/Kconfig"
  1450. config CPU_FREQ_IMX
  1451. tristate "CPUfreq driver for i.MX CPUs"
  1452. depends on ARCH_MXC && CPU_FREQ
  1453. help
  1454. This enables the CPUfreq driver for i.MX CPUs.
  1455. config CPU_FREQ_SA1100
  1456. bool
  1457. config CPU_FREQ_SA1110
  1458. bool
  1459. config CPU_FREQ_INTEGRATOR
  1460. tristate "CPUfreq driver for ARM Integrator CPUs"
  1461. depends on ARCH_INTEGRATOR && CPU_FREQ
  1462. default y
  1463. help
  1464. This enables the CPUfreq driver for ARM Integrator CPUs.
  1465. For details, take a look at <file:Documentation/cpu-freq>.
  1466. If in doubt, say Y.
  1467. config CPU_FREQ_PXA
  1468. bool
  1469. depends on CPU_FREQ && ARCH_PXA && PXA25x
  1470. default y
  1471. select CPU_FREQ_DEFAULT_GOV_USERSPACE
  1472. config CPU_FREQ_S3C64XX
  1473. bool "CPUfreq support for Samsung S3C64XX CPUs"
  1474. depends on CPU_FREQ && CPU_S3C6410
  1475. config CPU_FREQ_S3C
  1476. bool
  1477. help
  1478. Internal configuration node for common cpufreq on Samsung SoC
  1479. config CPU_FREQ_S3C24XX
  1480. bool "CPUfreq driver for Samsung S3C24XX series CPUs (EXPERIMENTAL)"
  1481. depends on ARCH_S3C2410 && CPU_FREQ && EXPERIMENTAL
  1482. select CPU_FREQ_S3C
  1483. help
  1484. This enables the CPUfreq driver for the Samsung S3C24XX family
  1485. of CPUs.
  1486. For details, take a look at <file:Documentation/cpu-freq>.
  1487. If in doubt, say N.
  1488. config CPU_FREQ_S3C24XX_PLL
  1489. bool "Support CPUfreq changing of PLL frequency (EXPERIMENTAL)"
  1490. depends on CPU_FREQ_S3C24XX && EXPERIMENTAL
  1491. help
  1492. Compile in support for changing the PLL frequency from the
  1493. S3C24XX series CPUfreq driver. The PLL takes time to settle
  1494. after a frequency change, so by default it is not enabled.
  1495. This also means that the PLL tables for the selected CPU(s) will
  1496. be built which may increase the size of the kernel image.
  1497. config CPU_FREQ_S3C24XX_DEBUG
  1498. bool "Debug CPUfreq Samsung driver core"
  1499. depends on CPU_FREQ_S3C24XX
  1500. help
  1501. Enable s3c_freq_dbg for the Samsung S3C CPUfreq core
  1502. config CPU_FREQ_S3C24XX_IODEBUG
  1503. bool "Debug CPUfreq Samsung driver IO timing"
  1504. depends on CPU_FREQ_S3C24XX
  1505. help
  1506. Enable s3c_freq_iodbg for the Samsung S3C CPUfreq core
  1507. config CPU_FREQ_S3C24XX_DEBUGFS
  1508. bool "Export debugfs for CPUFreq"
  1509. depends on CPU_FREQ_S3C24XX && DEBUG_FS
  1510. help
  1511. Export status information via debugfs.
  1512. endif
  1513. source "drivers/cpuidle/Kconfig"
  1514. endmenu
  1515. menu "Floating point emulation"
  1516. comment "At least one emulation must be selected"
  1517. config FPE_NWFPE
  1518. bool "NWFPE math emulation"
  1519. depends on (!AEABI || OABI_COMPAT) && !THUMB2_KERNEL
  1520. ---help---
  1521. Say Y to include the NWFPE floating point emulator in the kernel.
  1522. This is necessary to run most binaries. Linux does not currently
  1523. support floating point hardware so you need to say Y here even if
  1524. your machine has an FPA or floating point co-processor podule.
  1525. You may say N here if you are going to load the Acorn FPEmulator
  1526. early in the bootup.
  1527. config FPE_NWFPE_XP
  1528. bool "Support extended precision"
  1529. depends on FPE_NWFPE
  1530. help
  1531. Say Y to include 80-bit support in the kernel floating-point
  1532. emulator. Otherwise, only 32 and 64-bit support is compiled in.
  1533. Note that gcc does not generate 80-bit operations by default,
  1534. so in most cases this option only enlarges the size of the
  1535. floating point emulator without any good reason.
  1536. You almost surely want to say N here.
  1537. config FPE_FASTFPE
  1538. bool "FastFPE math emulation (EXPERIMENTAL)"
  1539. depends on (!AEABI || OABI_COMPAT) && !CPU_32v3 && EXPERIMENTAL
  1540. ---help---
  1541. Say Y here to include the FAST floating point emulator in the kernel.
  1542. This is an experimental much faster emulator which now also has full
  1543. precision for the mantissa. It does not support any exceptions.
  1544. It is very simple, and approximately 3-6 times faster than NWFPE.
  1545. It should be sufficient for most programs. It may be not suitable
  1546. for scientific calculations, but you have to check this for yourself.
  1547. If you do not feel you need a faster FP emulation you should better
  1548. choose NWFPE.
  1549. config VFP
  1550. bool "VFP-format floating point maths"
  1551. depends on CPU_V6 || CPU_V6K || CPU_ARM926T || CPU_V7 || CPU_FEROCEON
  1552. help
  1553. Say Y to include VFP support code in the kernel. This is needed
  1554. if your hardware includes a VFP unit.
  1555. Please see <file:Documentation/arm/VFP/release-notes.txt> for
  1556. release notes and additional status information.
  1557. Say N if your target does not have VFP hardware.
  1558. config VFPv3
  1559. bool
  1560. depends on VFP
  1561. default y if CPU_V7
  1562. config NEON
  1563. bool "Advanced SIMD (NEON) Extension support"
  1564. depends on VFPv3 && CPU_V7
  1565. help
  1566. Say Y to include support code for NEON, the ARMv7 Advanced SIMD
  1567. Extension.
  1568. endmenu
  1569. menu "Userspace binary formats"
  1570. source "fs/Kconfig.binfmt"
  1571. config ARTHUR
  1572. tristate "RISC OS personality"
  1573. depends on !AEABI
  1574. help
  1575. Say Y here to include the kernel code necessary if you want to run
  1576. Acorn RISC OS/Arthur binaries under Linux. This code is still very
  1577. experimental; if this sounds frightening, say N and sleep in peace.
  1578. You can also say M here to compile this support as a module (which
  1579. will be called arthur).
  1580. endmenu
  1581. menu "Power management options"
  1582. source "kernel/power/Kconfig"
  1583. config ARCH_SUSPEND_POSSIBLE
  1584. def_bool y
  1585. endmenu
  1586. source "net/Kconfig"
  1587. source "drivers/Kconfig"
  1588. source "fs/Kconfig"
  1589. source "arch/arm/Kconfig.debug"
  1590. source "security/Kconfig"
  1591. source "crypto/Kconfig"
  1592. source "lib/Kconfig"