Kconfig 58 KB

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