Kconfig 65 KB

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