Kconfig 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193
  1. config ARM
  2. bool
  3. default y
  4. select ARCH_CLOCKSOURCE_DATA
  5. select ARCH_HAS_DEBUG_VIRTUAL
  6. select ARCH_HAS_DEVMEM_IS_ALLOWED
  7. select ARCH_HAS_ELF_RANDOMIZE
  8. select ARCH_HAS_SET_MEMORY
  9. select ARCH_HAS_STRICT_KERNEL_RWX if MMU && !XIP_KERNEL
  10. select ARCH_HAS_STRICT_MODULE_RWX if MMU
  11. select ARCH_HAS_TICK_BROADCAST if GENERIC_CLOCKEVENTS_BROADCAST
  12. select ARCH_HAVE_CUSTOM_GPIO_H
  13. select ARCH_HAS_GCOV_PROFILE_ALL
  14. select ARCH_MIGHT_HAVE_PC_PARPORT
  15. select ARCH_OPTIONAL_KERNEL_RWX if ARCH_HAS_STRICT_KERNEL_RWX
  16. select ARCH_OPTIONAL_KERNEL_RWX_DEFAULT if CPU_V7
  17. select ARCH_SUPPORTS_ATOMIC_RMW
  18. select ARCH_USE_BUILTIN_BSWAP
  19. select ARCH_USE_CMPXCHG_LOCKREF
  20. select ARCH_WANT_IPC_PARSE_VERSION
  21. select BUILDTIME_EXTABLE_SORT if MMU
  22. select CLONE_BACKWARDS
  23. select CPU_PM if (SUSPEND || CPU_IDLE)
  24. select DCACHE_WORD_ACCESS if HAVE_EFFICIENT_UNALIGNED_ACCESS
  25. select EDAC_SUPPORT
  26. select EDAC_ATOMIC_SCRUB
  27. select GENERIC_ALLOCATOR
  28. select GENERIC_ATOMIC64 if (CPU_V7M || CPU_V6 || !CPU_32v6K || !AEABI)
  29. select GENERIC_CLOCKEVENTS_BROADCAST if SMP
  30. select GENERIC_CPU_AUTOPROBE
  31. select GENERIC_EARLY_IOREMAP
  32. select GENERIC_IDLE_POLL_SETUP
  33. select GENERIC_IRQ_PROBE
  34. select GENERIC_IRQ_SHOW
  35. select GENERIC_IRQ_SHOW_LEVEL
  36. select GENERIC_PCI_IOMAP
  37. select GENERIC_SCHED_CLOCK
  38. select GENERIC_SMP_IDLE_THREAD
  39. select GENERIC_STRNCPY_FROM_USER
  40. select GENERIC_STRNLEN_USER
  41. select HANDLE_DOMAIN_IRQ
  42. select HARDIRQS_SW_RESEND
  43. select HAVE_ARCH_AUDITSYSCALL if (AEABI && !OABI_COMPAT)
  44. select HAVE_ARCH_BITREVERSE if (CPU_32v7M || CPU_32v7) && !CPU_32v6
  45. select HAVE_ARCH_JUMP_LABEL if !XIP_KERNEL && !CPU_ENDIAN_BE32 && MMU
  46. select HAVE_ARCH_KGDB if !CPU_ENDIAN_BE32 && MMU
  47. select HAVE_ARCH_MMAP_RND_BITS if MMU
  48. select HAVE_ARCH_SECCOMP_FILTER if (AEABI && !OABI_COMPAT)
  49. select HAVE_ARCH_TRACEHOOK
  50. select HAVE_ARM_SMCCC if CPU_V7
  51. select HAVE_CBPF_JIT
  52. select HAVE_CC_STACKPROTECTOR
  53. select HAVE_CONTEXT_TRACKING
  54. select HAVE_C_RECORDMCOUNT
  55. select HAVE_DEBUG_KMEMLEAK
  56. select HAVE_DMA_API_DEBUG
  57. select HAVE_DMA_CONTIGUOUS if MMU
  58. select HAVE_DYNAMIC_FTRACE if (!XIP_KERNEL) && !CPU_ENDIAN_BE32 && MMU
  59. select HAVE_EFFICIENT_UNALIGNED_ACCESS if (CPU_V6 || CPU_V6K || CPU_V7) && MMU
  60. select HAVE_EXIT_THREAD
  61. select HAVE_FTRACE_MCOUNT_RECORD if (!XIP_KERNEL)
  62. select HAVE_FUNCTION_GRAPH_TRACER if (!THUMB2_KERNEL)
  63. select HAVE_FUNCTION_TRACER if (!XIP_KERNEL)
  64. select HAVE_GCC_PLUGINS
  65. select HAVE_GENERIC_DMA_COHERENT
  66. select HAVE_HW_BREAKPOINT if (PERF_EVENTS && (CPU_V6 || CPU_V6K || CPU_V7))
  67. select HAVE_IDE if PCI || ISA || PCMCIA
  68. select HAVE_IRQ_TIME_ACCOUNTING
  69. select HAVE_KERNEL_GZIP
  70. select HAVE_KERNEL_LZ4
  71. select HAVE_KERNEL_LZMA
  72. select HAVE_KERNEL_LZO
  73. select HAVE_KERNEL_XZ
  74. select HAVE_KPROBES if !XIP_KERNEL && !CPU_ENDIAN_BE32 && !CPU_V7M
  75. select HAVE_KRETPROBES if (HAVE_KPROBES)
  76. select HAVE_MEMBLOCK
  77. select HAVE_MOD_ARCH_SPECIFIC
  78. select HAVE_NMI
  79. select HAVE_OPROFILE if (HAVE_PERF_EVENTS)
  80. select HAVE_OPTPROBES if !THUMB2_KERNEL
  81. select HAVE_PERF_EVENTS
  82. select HAVE_PERF_REGS
  83. select HAVE_PERF_USER_STACK_DUMP
  84. select HAVE_RCU_TABLE_FREE if (SMP && ARM_LPAE)
  85. select HAVE_REGS_AND_STACK_ACCESS_API
  86. select HAVE_SYSCALL_TRACEPOINTS
  87. select HAVE_UID16
  88. select HAVE_VIRT_CPU_ACCOUNTING_GEN
  89. select IRQ_FORCED_THREADING
  90. select MODULES_USE_ELF_REL
  91. select NO_BOOTMEM
  92. select OF_EARLY_FLATTREE if OF
  93. select OF_RESERVED_MEM if OF
  94. select OLD_SIGACTION
  95. select OLD_SIGSUSPEND3
  96. select PERF_USE_VMALLOC
  97. select RTC_LIB
  98. select SYS_SUPPORTS_APM_EMULATION
  99. # Above selects are sorted alphabetically; please add new ones
  100. # according to that. Thanks.
  101. help
  102. The ARM series is a line of low-power-consumption RISC chip designs
  103. licensed by ARM Ltd and targeted at embedded applications and
  104. handhelds such as the Compaq IPAQ. ARM-based PCs are no longer
  105. manufactured, but legacy ARM-based PC hardware remains popular in
  106. Europe. There is an ARM Linux project with a web page at
  107. <http://www.arm.linux.org.uk/>.
  108. config ARM_HAS_SG_CHAIN
  109. select ARCH_HAS_SG_CHAIN
  110. bool
  111. config NEED_SG_DMA_LENGTH
  112. bool
  113. config ARM_DMA_USE_IOMMU
  114. bool
  115. select ARM_HAS_SG_CHAIN
  116. select NEED_SG_DMA_LENGTH
  117. if ARM_DMA_USE_IOMMU
  118. config ARM_DMA_IOMMU_ALIGNMENT
  119. int "Maximum PAGE_SIZE order of alignment for DMA IOMMU buffers"
  120. range 4 9
  121. default 8
  122. help
  123. DMA mapping framework by default aligns all buffers to the smallest
  124. PAGE_SIZE order which is greater than or equal to the requested buffer
  125. size. This works well for buffers up to a few hundreds kilobytes, but
  126. for larger buffers it just a waste of address space. Drivers which has
  127. relatively small addressing window (like 64Mib) might run out of
  128. virtual space with just a few allocations.
  129. With this parameter you can specify the maximum PAGE_SIZE order for
  130. DMA IOMMU buffers. Larger buffers will be aligned only to this
  131. specified order. The order is expressed as a power of two multiplied
  132. by the PAGE_SIZE.
  133. endif
  134. config MIGHT_HAVE_PCI
  135. bool
  136. config SYS_SUPPORTS_APM_EMULATION
  137. bool
  138. config HAVE_TCM
  139. bool
  140. select GENERIC_ALLOCATOR
  141. config HAVE_PROC_CPU
  142. bool
  143. config NO_IOPORT_MAP
  144. bool
  145. config EISA
  146. bool
  147. ---help---
  148. The Extended Industry Standard Architecture (EISA) bus was
  149. developed as an open alternative to the IBM MicroChannel bus.
  150. The EISA bus provided some of the features of the IBM MicroChannel
  151. bus while maintaining backward compatibility with cards made for
  152. the older ISA bus. The EISA bus saw limited use between 1988 and
  153. 1995 when it was made obsolete by the PCI bus.
  154. Say Y here if you are building a kernel for an EISA-based machine.
  155. Otherwise, say N.
  156. config SBUS
  157. bool
  158. config STACKTRACE_SUPPORT
  159. bool
  160. default y
  161. config LOCKDEP_SUPPORT
  162. bool
  163. default y
  164. config TRACE_IRQFLAGS_SUPPORT
  165. bool
  166. default !CPU_V7M
  167. config RWSEM_XCHGADD_ALGORITHM
  168. bool
  169. default y
  170. config ARCH_HAS_ILOG2_U32
  171. bool
  172. config ARCH_HAS_ILOG2_U64
  173. bool
  174. config ARCH_HAS_BANDGAP
  175. bool
  176. config FIX_EARLYCON_MEM
  177. def_bool y if MMU
  178. config GENERIC_HWEIGHT
  179. bool
  180. default y
  181. config GENERIC_CALIBRATE_DELAY
  182. bool
  183. default y
  184. config ARCH_MAY_HAVE_PC_FDC
  185. bool
  186. config ZONE_DMA
  187. bool
  188. config NEED_DMA_MAP_STATE
  189. def_bool y
  190. config ARCH_SUPPORTS_UPROBES
  191. def_bool y
  192. config ARCH_HAS_DMA_SET_COHERENT_MASK
  193. bool
  194. config GENERIC_ISA_DMA
  195. bool
  196. config FIQ
  197. bool
  198. config NEED_RET_TO_USER
  199. bool
  200. config ARCH_MTD_XIP
  201. bool
  202. config VECTORS_BASE
  203. hex
  204. default 0xffff0000 if MMU || CPU_HIGH_VECTOR
  205. default DRAM_BASE if REMAP_VECTORS_TO_RAM
  206. default 0x00000000
  207. help
  208. The base address of exception vectors. This must be two pages
  209. in size.
  210. config ARM_PATCH_PHYS_VIRT
  211. bool "Patch physical to virtual translations at runtime" if EMBEDDED
  212. default y
  213. depends on !XIP_KERNEL && MMU
  214. help
  215. Patch phys-to-virt and virt-to-phys translation functions at
  216. boot and module load time according to the position of the
  217. kernel in system memory.
  218. This can only be used with non-XIP MMU kernels where the base
  219. of physical memory is at a 16MB boundary.
  220. Only disable this option if you know that you do not require
  221. this feature (eg, building a kernel for a single machine) and
  222. you need to shrink the kernel to the minimal size.
  223. config NEED_MACH_IO_H
  224. bool
  225. help
  226. Select this when mach/io.h is required to provide special
  227. definitions for this platform. The need for mach/io.h should
  228. be avoided when possible.
  229. config NEED_MACH_MEMORY_H
  230. bool
  231. help
  232. Select this when mach/memory.h is required to provide special
  233. definitions for this platform. The need for mach/memory.h should
  234. be avoided when possible.
  235. config PHYS_OFFSET
  236. hex "Physical address of main memory" if MMU
  237. depends on !ARM_PATCH_PHYS_VIRT
  238. default DRAM_BASE if !MMU
  239. default 0x00000000 if ARCH_EBSA110 || \
  240. ARCH_FOOTBRIDGE || \
  241. ARCH_INTEGRATOR || \
  242. ARCH_IOP13XX || \
  243. ARCH_KS8695 || \
  244. ARCH_REALVIEW
  245. default 0x10000000 if ARCH_OMAP1 || ARCH_RPC
  246. default 0x20000000 if ARCH_S5PV210
  247. default 0xc0000000 if ARCH_SA1100
  248. help
  249. Please provide the physical address corresponding to the
  250. location of main memory in your system.
  251. config GENERIC_BUG
  252. def_bool y
  253. depends on BUG
  254. config PGTABLE_LEVELS
  255. int
  256. default 3 if ARM_LPAE
  257. default 2
  258. source "init/Kconfig"
  259. source "kernel/Kconfig.freezer"
  260. menu "System Type"
  261. config MMU
  262. bool "MMU-based Paged Memory Management Support"
  263. default y
  264. help
  265. Select if you want MMU-based virtualised addressing space
  266. support by paged memory management. If unsure, say 'Y'.
  267. config ARCH_MMAP_RND_BITS_MIN
  268. default 8
  269. config ARCH_MMAP_RND_BITS_MAX
  270. default 14 if PAGE_OFFSET=0x40000000
  271. default 15 if PAGE_OFFSET=0x80000000
  272. default 16
  273. #
  274. # The "ARM system type" choice list is ordered alphabetically by option
  275. # text. Please add new entries in the option alphabetic order.
  276. #
  277. choice
  278. prompt "ARM system type"
  279. default ARM_SINGLE_ARMV7M if !MMU
  280. default ARCH_MULTIPLATFORM if MMU
  281. config ARCH_MULTIPLATFORM
  282. bool "Allow multiple platforms to be selected"
  283. depends on MMU
  284. select ARM_HAS_SG_CHAIN
  285. select ARM_PATCH_PHYS_VIRT
  286. select AUTO_ZRELADDR
  287. select CLKSRC_OF
  288. select COMMON_CLK
  289. select GENERIC_CLOCKEVENTS
  290. select MIGHT_HAVE_PCI
  291. select MULTI_IRQ_HANDLER
  292. select PCI_DOMAINS if PCI
  293. select SPARSE_IRQ
  294. select USE_OF
  295. config ARM_SINGLE_ARMV7M
  296. bool "ARMv7-M based platforms (Cortex-M0/M3/M4)"
  297. depends on !MMU
  298. select ARM_NVIC
  299. select AUTO_ZRELADDR
  300. select CLKSRC_OF
  301. select COMMON_CLK
  302. select CPU_V7M
  303. select GENERIC_CLOCKEVENTS
  304. select NO_IOPORT_MAP
  305. select SPARSE_IRQ
  306. select USE_OF
  307. config ARCH_EBSA110
  308. bool "EBSA-110"
  309. select ARCH_USES_GETTIMEOFFSET
  310. select CPU_SA110
  311. select ISA
  312. select NEED_MACH_IO_H
  313. select NEED_MACH_MEMORY_H
  314. select NO_IOPORT_MAP
  315. help
  316. This is an evaluation board for the StrongARM processor available
  317. from Digital. It has limited hardware on-board, including an
  318. Ethernet interface, two PCMCIA sockets, two serial ports and a
  319. parallel port.
  320. config ARCH_EP93XX
  321. bool "EP93xx-based"
  322. select ARCH_HAS_HOLES_MEMORYMODEL
  323. select ARM_AMBA
  324. select ARM_PATCH_PHYS_VIRT
  325. select ARM_VIC
  326. select AUTO_ZRELADDR
  327. select CLKDEV_LOOKUP
  328. select CLKSRC_MMIO
  329. select CPU_ARM920T
  330. select GENERIC_CLOCKEVENTS
  331. select GPIOLIB
  332. help
  333. This enables support for the Cirrus EP93xx series of CPUs.
  334. config ARCH_FOOTBRIDGE
  335. bool "FootBridge"
  336. select CPU_SA110
  337. select FOOTBRIDGE
  338. select GENERIC_CLOCKEVENTS
  339. select HAVE_IDE
  340. select NEED_MACH_IO_H if !MMU
  341. select NEED_MACH_MEMORY_H
  342. help
  343. Support for systems based on the DC21285 companion chip
  344. ("FootBridge"), such as the Simtec CATS and the Rebel NetWinder.
  345. config ARCH_NETX
  346. bool "Hilscher NetX based"
  347. select ARM_VIC
  348. select CLKSRC_MMIO
  349. select CPU_ARM926T
  350. select GENERIC_CLOCKEVENTS
  351. help
  352. This enables support for systems based on the Hilscher NetX Soc
  353. config ARCH_IOP13XX
  354. bool "IOP13xx-based"
  355. depends on MMU
  356. select CPU_XSC3
  357. select NEED_MACH_MEMORY_H
  358. select NEED_RET_TO_USER
  359. select PCI
  360. select PLAT_IOP
  361. select VMSPLIT_1G
  362. select SPARSE_IRQ
  363. help
  364. Support for Intel's IOP13XX (XScale) family of processors.
  365. config ARCH_IOP32X
  366. bool "IOP32x-based"
  367. depends on MMU
  368. select CPU_XSCALE
  369. select GPIO_IOP
  370. select GPIOLIB
  371. select NEED_RET_TO_USER
  372. select PCI
  373. select PLAT_IOP
  374. help
  375. Support for Intel's 80219 and IOP32X (XScale) family of
  376. processors.
  377. config ARCH_IOP33X
  378. bool "IOP33x-based"
  379. depends on MMU
  380. select CPU_XSCALE
  381. select GPIO_IOP
  382. select GPIOLIB
  383. select NEED_RET_TO_USER
  384. select PCI
  385. select PLAT_IOP
  386. help
  387. Support for Intel's IOP33X (XScale) family of processors.
  388. config ARCH_IXP4XX
  389. bool "IXP4xx-based"
  390. depends on MMU
  391. select ARCH_HAS_DMA_SET_COHERENT_MASK
  392. select ARCH_SUPPORTS_BIG_ENDIAN
  393. select CLKSRC_MMIO
  394. select CPU_XSCALE
  395. select DMABOUNCE if PCI
  396. select GENERIC_CLOCKEVENTS
  397. select GPIOLIB
  398. select MIGHT_HAVE_PCI
  399. select NEED_MACH_IO_H
  400. select USB_EHCI_BIG_ENDIAN_DESC
  401. select USB_EHCI_BIG_ENDIAN_MMIO
  402. help
  403. Support for Intel's IXP4XX (XScale) family of processors.
  404. config ARCH_DOVE
  405. bool "Marvell Dove"
  406. select CPU_PJ4
  407. select GENERIC_CLOCKEVENTS
  408. select GPIOLIB
  409. select MIGHT_HAVE_PCI
  410. select MULTI_IRQ_HANDLER
  411. select MVEBU_MBUS
  412. select PINCTRL
  413. select PINCTRL_DOVE
  414. select PLAT_ORION_LEGACY
  415. select SPARSE_IRQ
  416. select PM_GENERIC_DOMAINS if PM
  417. help
  418. Support for the Marvell Dove SoC 88AP510
  419. config ARCH_KS8695
  420. bool "Micrel/Kendin KS8695"
  421. select CLKSRC_MMIO
  422. select CPU_ARM922T
  423. select GENERIC_CLOCKEVENTS
  424. select GPIOLIB
  425. select NEED_MACH_MEMORY_H
  426. help
  427. Support for Micrel/Kendin KS8695 "Centaur" (ARM922T) based
  428. System-on-Chip devices.
  429. config ARCH_W90X900
  430. bool "Nuvoton W90X900 CPU"
  431. select CLKDEV_LOOKUP
  432. select CLKSRC_MMIO
  433. select CPU_ARM926T
  434. select GENERIC_CLOCKEVENTS
  435. select GPIOLIB
  436. help
  437. Support for Nuvoton (Winbond logic dept.) ARM9 processor,
  438. At present, the w90x900 has been renamed nuc900, regarding
  439. the ARM series product line, you can login the following
  440. link address to know more.
  441. <http://www.nuvoton.com/hq/enu/ProductAndSales/ProductLines/
  442. ConsumerElectronicsIC/ARMMicrocontroller/ARMMicrocontroller>
  443. config ARCH_LPC32XX
  444. bool "NXP LPC32XX"
  445. select ARM_AMBA
  446. select CLKDEV_LOOKUP
  447. select CLKSRC_LPC32XX
  448. select COMMON_CLK
  449. select CPU_ARM926T
  450. select GENERIC_CLOCKEVENTS
  451. select GPIOLIB
  452. select MULTI_IRQ_HANDLER
  453. select SPARSE_IRQ
  454. select USE_OF
  455. help
  456. Support for the NXP LPC32XX family of processors
  457. config ARCH_PXA
  458. bool "PXA2xx/PXA3xx-based"
  459. depends on MMU
  460. select ARCH_MTD_XIP
  461. select ARM_CPU_SUSPEND if PM
  462. select AUTO_ZRELADDR
  463. select COMMON_CLK
  464. select CLKDEV_LOOKUP
  465. select CLKSRC_PXA
  466. select CLKSRC_MMIO
  467. select CLKSRC_OF
  468. select CPU_XSCALE if !CPU_XSC3
  469. select GENERIC_CLOCKEVENTS
  470. select GPIO_PXA
  471. select GPIOLIB
  472. select HAVE_IDE
  473. select IRQ_DOMAIN
  474. select MULTI_IRQ_HANDLER
  475. select PLAT_PXA
  476. select SPARSE_IRQ
  477. help
  478. Support for Intel/Marvell's PXA2xx/PXA3xx processor line.
  479. config ARCH_RPC
  480. bool "RiscPC"
  481. depends on MMU
  482. select ARCH_ACORN
  483. select ARCH_MAY_HAVE_PC_FDC
  484. select ARCH_SPARSEMEM_ENABLE
  485. select ARCH_USES_GETTIMEOFFSET
  486. select CPU_SA110
  487. select FIQ
  488. select HAVE_IDE
  489. select HAVE_PATA_PLATFORM
  490. select ISA_DMA_API
  491. select NEED_MACH_IO_H
  492. select NEED_MACH_MEMORY_H
  493. select NO_IOPORT_MAP
  494. help
  495. On the Acorn Risc-PC, Linux can support the internal IDE disk and
  496. CD-ROM interface, serial and parallel port, and the floppy drive.
  497. config ARCH_SA1100
  498. bool "SA1100-based"
  499. select ARCH_MTD_XIP
  500. select ARCH_SPARSEMEM_ENABLE
  501. select CLKDEV_LOOKUP
  502. select CLKSRC_MMIO
  503. select CLKSRC_PXA
  504. select CLKSRC_OF if OF
  505. select CPU_FREQ
  506. select CPU_SA1100
  507. select GENERIC_CLOCKEVENTS
  508. select GPIOLIB
  509. select HAVE_IDE
  510. select IRQ_DOMAIN
  511. select ISA
  512. select MULTI_IRQ_HANDLER
  513. select NEED_MACH_MEMORY_H
  514. select SPARSE_IRQ
  515. help
  516. Support for StrongARM 11x0 based boards.
  517. config ARCH_S3C24XX
  518. bool "Samsung S3C24XX SoCs"
  519. select ATAGS
  520. select CLKDEV_LOOKUP
  521. select CLKSRC_SAMSUNG_PWM
  522. select GENERIC_CLOCKEVENTS
  523. select GPIO_SAMSUNG
  524. select GPIOLIB
  525. select HAVE_S3C2410_I2C if I2C
  526. select HAVE_S3C2410_WATCHDOG if WATCHDOG
  527. select HAVE_S3C_RTC if RTC_CLASS
  528. select MULTI_IRQ_HANDLER
  529. select NEED_MACH_IO_H
  530. select SAMSUNG_ATAGS
  531. help
  532. Samsung S3C2410, S3C2412, S3C2413, S3C2416, S3C2440, S3C2442, S3C2443
  533. and S3C2450 SoCs based systems, such as the Simtec Electronics BAST
  534. (<http://www.simtec.co.uk/products/EB110ITX/>), the IPAQ 1940 or the
  535. Samsung SMDK2410 development board (and derivatives).
  536. config ARCH_DAVINCI
  537. bool "TI DaVinci"
  538. select ARCH_HAS_HOLES_MEMORYMODEL
  539. select CLKDEV_LOOKUP
  540. select CPU_ARM926T
  541. select GENERIC_ALLOCATOR
  542. select GENERIC_CLOCKEVENTS
  543. select GENERIC_IRQ_CHIP
  544. select GPIOLIB
  545. select HAVE_IDE
  546. select USE_OF
  547. select ZONE_DMA
  548. help
  549. Support for TI's DaVinci platform.
  550. config ARCH_OMAP1
  551. bool "TI OMAP1"
  552. depends on MMU
  553. select ARCH_HAS_HOLES_MEMORYMODEL
  554. select ARCH_OMAP
  555. select CLKDEV_LOOKUP
  556. select CLKSRC_MMIO
  557. select GENERIC_CLOCKEVENTS
  558. select GENERIC_IRQ_CHIP
  559. select GPIOLIB
  560. select HAVE_IDE
  561. select IRQ_DOMAIN
  562. select MULTI_IRQ_HANDLER
  563. select NEED_MACH_IO_H if PCCARD
  564. select NEED_MACH_MEMORY_H
  565. select SPARSE_IRQ
  566. help
  567. Support for older TI OMAP1 (omap7xx, omap15xx or omap16xx)
  568. endchoice
  569. menu "Multiple platform selection"
  570. depends on ARCH_MULTIPLATFORM
  571. comment "CPU Core family selection"
  572. config ARCH_MULTI_V4
  573. bool "ARMv4 based platforms (FA526)"
  574. depends on !ARCH_MULTI_V6_V7
  575. select ARCH_MULTI_V4_V5
  576. select CPU_FA526
  577. config ARCH_MULTI_V4T
  578. bool "ARMv4T based platforms (ARM720T, ARM920T, ...)"
  579. depends on !ARCH_MULTI_V6_V7
  580. select ARCH_MULTI_V4_V5
  581. select CPU_ARM920T if !(CPU_ARM7TDMI || CPU_ARM720T || \
  582. CPU_ARM740T || CPU_ARM9TDMI || CPU_ARM922T || \
  583. CPU_ARM925T || CPU_ARM940T)
  584. config ARCH_MULTI_V5
  585. bool "ARMv5 based platforms (ARM926T, XSCALE, PJ1, ...)"
  586. depends on !ARCH_MULTI_V6_V7
  587. select ARCH_MULTI_V4_V5
  588. select CPU_ARM926T if !(CPU_ARM946E || CPU_ARM1020 || \
  589. CPU_ARM1020E || CPU_ARM1022 || CPU_ARM1026 || \
  590. CPU_XSCALE || CPU_XSC3 || CPU_MOHAWK || CPU_FEROCEON)
  591. config ARCH_MULTI_V4_V5
  592. bool
  593. config ARCH_MULTI_V6
  594. bool "ARMv6 based platforms (ARM11)"
  595. select ARCH_MULTI_V6_V7
  596. select CPU_V6K
  597. config ARCH_MULTI_V7
  598. bool "ARMv7 based platforms (Cortex-A, PJ4, Scorpion, Krait)"
  599. default y
  600. select ARCH_MULTI_V6_V7
  601. select CPU_V7
  602. select HAVE_SMP
  603. config ARCH_MULTI_V6_V7
  604. bool
  605. select MIGHT_HAVE_CACHE_L2X0
  606. config ARCH_MULTI_CPU_AUTO
  607. def_bool !(ARCH_MULTI_V4 || ARCH_MULTI_V4T || ARCH_MULTI_V6_V7)
  608. select ARCH_MULTI_V5
  609. endmenu
  610. config ARCH_VIRT
  611. bool "Dummy Virtual Machine"
  612. depends on ARCH_MULTI_V7
  613. select ARM_AMBA
  614. select ARM_GIC
  615. select ARM_GIC_V2M if PCI
  616. select ARM_GIC_V3
  617. select ARM_GIC_V3_ITS if PCI
  618. select ARM_PSCI
  619. select HAVE_ARM_ARCH_TIMER
  620. #
  621. # This is sorted alphabetically by mach-* pathname. However, plat-*
  622. # Kconfigs may be included either alphabetically (according to the
  623. # plat- suffix) or along side the corresponding mach-* source.
  624. #
  625. source "arch/arm/mach-mvebu/Kconfig"
  626. source "arch/arm/mach-alpine/Kconfig"
  627. source "arch/arm/mach-artpec/Kconfig"
  628. source "arch/arm/mach-asm9260/Kconfig"
  629. source "arch/arm/mach-at91/Kconfig"
  630. source "arch/arm/mach-axxia/Kconfig"
  631. source "arch/arm/mach-bcm/Kconfig"
  632. source "arch/arm/mach-berlin/Kconfig"
  633. source "arch/arm/mach-clps711x/Kconfig"
  634. source "arch/arm/mach-cns3xxx/Kconfig"
  635. source "arch/arm/mach-davinci/Kconfig"
  636. source "arch/arm/mach-digicolor/Kconfig"
  637. source "arch/arm/mach-dove/Kconfig"
  638. source "arch/arm/mach-ep93xx/Kconfig"
  639. source "arch/arm/mach-footbridge/Kconfig"
  640. source "arch/arm/mach-gemini/Kconfig"
  641. source "arch/arm/mach-highbank/Kconfig"
  642. source "arch/arm/mach-hisi/Kconfig"
  643. source "arch/arm/mach-integrator/Kconfig"
  644. source "arch/arm/mach-iop32x/Kconfig"
  645. source "arch/arm/mach-iop33x/Kconfig"
  646. source "arch/arm/mach-iop13xx/Kconfig"
  647. source "arch/arm/mach-ixp4xx/Kconfig"
  648. source "arch/arm/mach-keystone/Kconfig"
  649. source "arch/arm/mach-ks8695/Kconfig"
  650. source "arch/arm/mach-meson/Kconfig"
  651. source "arch/arm/mach-moxart/Kconfig"
  652. source "arch/arm/mach-aspeed/Kconfig"
  653. source "arch/arm/mach-mv78xx0/Kconfig"
  654. source "arch/arm/mach-imx/Kconfig"
  655. source "arch/arm/mach-mediatek/Kconfig"
  656. source "arch/arm/mach-mxs/Kconfig"
  657. source "arch/arm/mach-netx/Kconfig"
  658. source "arch/arm/mach-nomadik/Kconfig"
  659. source "arch/arm/mach-nspire/Kconfig"
  660. source "arch/arm/plat-omap/Kconfig"
  661. source "arch/arm/mach-omap1/Kconfig"
  662. source "arch/arm/mach-omap2/Kconfig"
  663. source "arch/arm/mach-orion5x/Kconfig"
  664. source "arch/arm/mach-picoxcell/Kconfig"
  665. source "arch/arm/mach-pxa/Kconfig"
  666. source "arch/arm/plat-pxa/Kconfig"
  667. source "arch/arm/mach-mmp/Kconfig"
  668. source "arch/arm/mach-oxnas/Kconfig"
  669. source "arch/arm/mach-qcom/Kconfig"
  670. source "arch/arm/mach-realview/Kconfig"
  671. source "arch/arm/mach-rockchip/Kconfig"
  672. source "arch/arm/mach-sa1100/Kconfig"
  673. source "arch/arm/mach-socfpga/Kconfig"
  674. source "arch/arm/mach-spear/Kconfig"
  675. source "arch/arm/mach-sti/Kconfig"
  676. source "arch/arm/mach-stm32/Kconfig"
  677. source "arch/arm/mach-s3c24xx/Kconfig"
  678. source "arch/arm/mach-s3c64xx/Kconfig"
  679. source "arch/arm/mach-s5pv210/Kconfig"
  680. source "arch/arm/mach-exynos/Kconfig"
  681. source "arch/arm/plat-samsung/Kconfig"
  682. source "arch/arm/mach-shmobile/Kconfig"
  683. source "arch/arm/mach-sunxi/Kconfig"
  684. source "arch/arm/mach-prima2/Kconfig"
  685. source "arch/arm/mach-tango/Kconfig"
  686. source "arch/arm/mach-tegra/Kconfig"
  687. source "arch/arm/mach-u300/Kconfig"
  688. source "arch/arm/mach-uniphier/Kconfig"
  689. source "arch/arm/mach-ux500/Kconfig"
  690. source "arch/arm/mach-versatile/Kconfig"
  691. source "arch/arm/mach-vexpress/Kconfig"
  692. source "arch/arm/plat-versatile/Kconfig"
  693. source "arch/arm/mach-vt8500/Kconfig"
  694. source "arch/arm/mach-w90x900/Kconfig"
  695. source "arch/arm/mach-zx/Kconfig"
  696. source "arch/arm/mach-zynq/Kconfig"
  697. # ARMv7-M architecture
  698. config ARCH_EFM32
  699. bool "Energy Micro efm32"
  700. depends on ARM_SINGLE_ARMV7M
  701. select GPIOLIB
  702. help
  703. Support for Energy Micro's (now Silicon Labs) efm32 Giant Gecko
  704. processors.
  705. config ARCH_LPC18XX
  706. bool "NXP LPC18xx/LPC43xx"
  707. depends on ARM_SINGLE_ARMV7M
  708. select ARCH_HAS_RESET_CONTROLLER
  709. select ARM_AMBA
  710. select CLKSRC_LPC32XX
  711. select PINCTRL
  712. help
  713. Support for NXP's LPC18xx Cortex-M3 and LPC43xx Cortex-M4
  714. high performance microcontrollers.
  715. config ARCH_MPS2
  716. bool "ARM MPS2 platform"
  717. depends on ARM_SINGLE_ARMV7M
  718. select ARM_AMBA
  719. select CLKSRC_MPS2
  720. help
  721. Support for Cortex-M Prototyping System (or V2M-MPS2) which comes
  722. with a range of available cores like Cortex-M3/M4/M7.
  723. Please, note that depends which Application Note is used memory map
  724. for the platform may vary, so adjustment of RAM base might be needed.
  725. # Definitions to make life easier
  726. config ARCH_ACORN
  727. bool
  728. config PLAT_IOP
  729. bool
  730. select GENERIC_CLOCKEVENTS
  731. config PLAT_ORION
  732. bool
  733. select CLKSRC_MMIO
  734. select COMMON_CLK
  735. select GENERIC_IRQ_CHIP
  736. select IRQ_DOMAIN
  737. config PLAT_ORION_LEGACY
  738. bool
  739. select PLAT_ORION
  740. config PLAT_PXA
  741. bool
  742. config PLAT_VERSATILE
  743. bool
  744. source "arch/arm/firmware/Kconfig"
  745. source arch/arm/mm/Kconfig
  746. config IWMMXT
  747. bool "Enable iWMMXt support"
  748. depends on CPU_XSCALE || CPU_XSC3 || CPU_MOHAWK || CPU_PJ4 || CPU_PJ4B
  749. default y if PXA27x || PXA3xx || ARCH_MMP || CPU_PJ4 || CPU_PJ4B
  750. help
  751. Enable support for iWMMXt context switching at run time if
  752. running on a CPU that supports it.
  753. config MULTI_IRQ_HANDLER
  754. bool
  755. help
  756. Allow each machine to specify it's own IRQ handler at run time.
  757. if !MMU
  758. source "arch/arm/Kconfig-nommu"
  759. endif
  760. config PJ4B_ERRATA_4742
  761. bool "PJ4B Errata 4742: IDLE Wake Up Commands can Cause the CPU Core to Cease Operation"
  762. depends on CPU_PJ4B && MACH_ARMADA_370
  763. default y
  764. help
  765. When coming out of either a Wait for Interrupt (WFI) or a Wait for
  766. Event (WFE) IDLE states, a specific timing sensitivity exists between
  767. the retiring WFI/WFE instructions and the newly issued subsequent
  768. instructions. This sensitivity can result in a CPU hang scenario.
  769. Workaround:
  770. The software must insert either a Data Synchronization Barrier (DSB)
  771. or Data Memory Barrier (DMB) command immediately after the WFI/WFE
  772. instruction
  773. config ARM_ERRATA_326103
  774. bool "ARM errata: FSR write bit incorrect on a SWP to read-only memory"
  775. depends on CPU_V6
  776. help
  777. Executing a SWP instruction to read-only memory does not set bit 11
  778. of the FSR on the ARM 1136 prior to r1p0. This causes the kernel to
  779. treat the access as a read, preventing a COW from occurring and
  780. causing the faulting task to livelock.
  781. config ARM_ERRATA_411920
  782. bool "ARM errata: Invalidation of the Instruction Cache operation can fail"
  783. depends on CPU_V6 || CPU_V6K
  784. help
  785. Invalidation of the Instruction Cache operation can
  786. fail. This erratum is present in 1136 (before r1p4), 1156 and 1176.
  787. It does not affect the MPCore. This option enables the ARM Ltd.
  788. recommended workaround.
  789. config ARM_ERRATA_430973
  790. bool "ARM errata: Stale prediction on replaced interworking branch"
  791. depends on CPU_V7
  792. help
  793. This option enables the workaround for the 430973 Cortex-A8
  794. r1p* erratum. If a code sequence containing an ARM/Thumb
  795. interworking branch is replaced with another code sequence at the
  796. same virtual address, whether due to self-modifying code or virtual
  797. to physical address re-mapping, Cortex-A8 does not recover from the
  798. stale interworking branch prediction. This results in Cortex-A8
  799. executing the new code sequence in the incorrect ARM or Thumb state.
  800. The workaround enables the BTB/BTAC operations by setting ACTLR.IBE
  801. and also flushes the branch target cache at every context switch.
  802. Note that setting specific bits in the ACTLR register may not be
  803. available in non-secure mode.
  804. config ARM_ERRATA_458693
  805. bool "ARM errata: Processor deadlock when a false hazard is created"
  806. depends on CPU_V7
  807. depends on !ARCH_MULTIPLATFORM
  808. help
  809. This option enables the workaround for the 458693 Cortex-A8 (r2p0)
  810. erratum. For very specific sequences of memory operations, it is
  811. possible for a hazard condition intended for a cache line to instead
  812. be incorrectly associated with a different cache line. This false
  813. hazard might then cause a processor deadlock. The workaround enables
  814. the L1 caching of the NEON accesses and disables the PLD instruction
  815. in the ACTLR register. Note that setting specific bits in the ACTLR
  816. register may not be available in non-secure mode.
  817. config ARM_ERRATA_460075
  818. bool "ARM errata: Data written to the L2 cache can be overwritten with stale data"
  819. depends on CPU_V7
  820. depends on !ARCH_MULTIPLATFORM
  821. help
  822. This option enables the workaround for the 460075 Cortex-A8 (r2p0)
  823. erratum. Any asynchronous access to the L2 cache may encounter a
  824. situation in which recent store transactions to the L2 cache are lost
  825. and overwritten with stale memory contents from external memory. The
  826. workaround disables the write-allocate mode for the L2 cache via the
  827. ACTLR register. Note that setting specific bits in the ACTLR register
  828. may not be available in non-secure mode.
  829. config ARM_ERRATA_742230
  830. bool "ARM errata: DMB operation may be faulty"
  831. depends on CPU_V7 && SMP
  832. depends on !ARCH_MULTIPLATFORM
  833. help
  834. This option enables the workaround for the 742230 Cortex-A9
  835. (r1p0..r2p2) erratum. Under rare circumstances, a DMB instruction
  836. between two write operations may not ensure the correct visibility
  837. ordering of the two writes. This workaround sets a specific bit in
  838. the diagnostic register of the Cortex-A9 which causes the DMB
  839. instruction to behave as a DSB, ensuring the correct behaviour of
  840. the two writes.
  841. config ARM_ERRATA_742231
  842. bool "ARM errata: Incorrect hazard handling in the SCU may lead to data corruption"
  843. depends on CPU_V7 && SMP
  844. depends on !ARCH_MULTIPLATFORM
  845. help
  846. This option enables the workaround for the 742231 Cortex-A9
  847. (r2p0..r2p2) erratum. Under certain conditions, specific to the
  848. Cortex-A9 MPCore micro-architecture, two CPUs working in SMP mode,
  849. accessing some data located in the same cache line, may get corrupted
  850. data due to bad handling of the address hazard when the line gets
  851. replaced from one of the CPUs at the same time as another CPU is
  852. accessing it. This workaround sets specific bits in the diagnostic
  853. register of the Cortex-A9 which reduces the linefill issuing
  854. capabilities of the processor.
  855. config ARM_ERRATA_643719
  856. bool "ARM errata: LoUIS bit field in CLIDR register is incorrect"
  857. depends on CPU_V7 && SMP
  858. default y
  859. help
  860. This option enables the workaround for the 643719 Cortex-A9 (prior to
  861. r1p0) erratum. On affected cores the LoUIS bit field of the CLIDR
  862. register returns zero when it should return one. The workaround
  863. corrects this value, ensuring cache maintenance operations which use
  864. it behave as intended and avoiding data corruption.
  865. config ARM_ERRATA_720789
  866. bool "ARM errata: TLBIASIDIS and TLBIMVAIS operations can broadcast a faulty ASID"
  867. depends on CPU_V7
  868. help
  869. This option enables the workaround for the 720789 Cortex-A9 (prior to
  870. r2p0) erratum. A faulty ASID can be sent to the other CPUs for the
  871. broadcasted CP15 TLB maintenance operations TLBIASIDIS and TLBIMVAIS.
  872. As a consequence of this erratum, some TLB entries which should be
  873. invalidated are not, resulting in an incoherency in the system page
  874. tables. The workaround changes the TLB flushing routines to invalidate
  875. entries regardless of the ASID.
  876. config ARM_ERRATA_743622
  877. bool "ARM errata: Faulty hazard checking in the Store Buffer may lead to data corruption"
  878. depends on CPU_V7
  879. depends on !ARCH_MULTIPLATFORM
  880. help
  881. This option enables the workaround for the 743622 Cortex-A9
  882. (r2p*) erratum. Under very rare conditions, a faulty
  883. optimisation in the Cortex-A9 Store Buffer may lead to data
  884. corruption. This workaround sets a specific bit in the diagnostic
  885. register of the Cortex-A9 which disables the Store Buffer
  886. optimisation, preventing the defect from occurring. This has no
  887. visible impact on the overall performance or power consumption of the
  888. processor.
  889. config ARM_ERRATA_751472
  890. bool "ARM errata: Interrupted ICIALLUIS may prevent completion of broadcasted operation"
  891. depends on CPU_V7
  892. depends on !ARCH_MULTIPLATFORM
  893. help
  894. This option enables the workaround for the 751472 Cortex-A9 (prior
  895. to r3p0) erratum. An interrupted ICIALLUIS operation may prevent the
  896. completion of a following broadcasted operation if the second
  897. operation is received by a CPU before the ICIALLUIS has completed,
  898. potentially leading to corrupted entries in the cache or TLB.
  899. config ARM_ERRATA_754322
  900. bool "ARM errata: possible faulty MMU translations following an ASID switch"
  901. depends on CPU_V7
  902. help
  903. This option enables the workaround for the 754322 Cortex-A9 (r2p*,
  904. r3p*) erratum. A speculative memory access may cause a page table walk
  905. which starts prior to an ASID switch but completes afterwards. This
  906. can populate the micro-TLB with a stale entry which may be hit with
  907. the new ASID. This workaround places two dsb instructions in the mm
  908. switching code so that no page table walks can cross the ASID switch.
  909. config ARM_ERRATA_754327
  910. bool "ARM errata: no automatic Store Buffer drain"
  911. depends on CPU_V7 && SMP
  912. help
  913. This option enables the workaround for the 754327 Cortex-A9 (prior to
  914. r2p0) erratum. The Store Buffer does not have any automatic draining
  915. mechanism and therefore a livelock may occur if an external agent
  916. continuously polls a memory location waiting to observe an update.
  917. This workaround defines cpu_relax() as smp_mb(), preventing correctly
  918. written polling loops from denying visibility of updates to memory.
  919. config ARM_ERRATA_364296
  920. bool "ARM errata: Possible cache data corruption with hit-under-miss enabled"
  921. depends on CPU_V6
  922. help
  923. This options enables the workaround for the 364296 ARM1136
  924. r0p2 erratum (possible cache data corruption with
  925. hit-under-miss enabled). It sets the undocumented bit 31 in
  926. the auxiliary control register and the FI bit in the control
  927. register, thus disabling hit-under-miss without putting the
  928. processor into full low interrupt latency mode. ARM11MPCore
  929. is not affected.
  930. config ARM_ERRATA_764369
  931. bool "ARM errata: Data cache line maintenance operation by MVA may not succeed"
  932. depends on CPU_V7 && SMP
  933. help
  934. This option enables the workaround for erratum 764369
  935. affecting Cortex-A9 MPCore with two or more processors (all
  936. current revisions). Under certain timing circumstances, a data
  937. cache line maintenance operation by MVA targeting an Inner
  938. Shareable memory region may fail to proceed up to either the
  939. Point of Coherency or to the Point of Unification of the
  940. system. This workaround adds a DSB instruction before the
  941. relevant cache maintenance functions and sets a specific bit
  942. in the diagnostic control register of the SCU.
  943. config ARM_ERRATA_775420
  944. bool "ARM errata: A data cache maintenance operation which aborts, might lead to deadlock"
  945. depends on CPU_V7
  946. help
  947. This option enables the workaround for the 775420 Cortex-A9 (r2p2,
  948. r2p6,r2p8,r2p10,r3p0) erratum. In case a date cache maintenance
  949. operation aborts with MMU exception, it might cause the processor
  950. to deadlock. This workaround puts DSB before executing ISB if
  951. an abort may occur on cache maintenance.
  952. config ARM_ERRATA_798181
  953. bool "ARM errata: TLBI/DSB failure on Cortex-A15"
  954. depends on CPU_V7 && SMP
  955. help
  956. On Cortex-A15 (r0p0..r3p2) the TLBI*IS/DSB operations are not
  957. adequately shooting down all use of the old entries. This
  958. option enables the Linux kernel workaround for this erratum
  959. which sends an IPI to the CPUs that are running the same ASID
  960. as the one being invalidated.
  961. config ARM_ERRATA_773022
  962. bool "ARM errata: incorrect instructions may be executed from loop buffer"
  963. depends on CPU_V7
  964. help
  965. This option enables the workaround for the 773022 Cortex-A15
  966. (up to r0p4) erratum. In certain rare sequences of code, the
  967. loop buffer may deliver incorrect instructions. This
  968. workaround disables the loop buffer to avoid the erratum.
  969. config ARM_ERRATA_818325_852422
  970. bool "ARM errata: A12: some seqs of opposed cond code instrs => deadlock or corruption"
  971. depends on CPU_V7
  972. help
  973. This option enables the workaround for:
  974. - Cortex-A12 818325: Execution of an UNPREDICTABLE STR or STM
  975. instruction might deadlock. Fixed in r0p1.
  976. - Cortex-A12 852422: Execution of a sequence of instructions might
  977. lead to either a data corruption or a CPU deadlock. Not fixed in
  978. any Cortex-A12 cores yet.
  979. This workaround for all both errata involves setting bit[12] of the
  980. Feature Register. This bit disables an optimisation applied to a
  981. sequence of 2 instructions that use opposing condition codes.
  982. config ARM_ERRATA_821420
  983. bool "ARM errata: A12: sequence of VMOV to core registers might lead to a dead lock"
  984. depends on CPU_V7
  985. help
  986. This option enables the workaround for the 821420 Cortex-A12
  987. (all revs) erratum. In very rare timing conditions, a sequence
  988. of VMOV to Core registers instructions, for which the second
  989. one is in the shadow of a branch or abort, can lead to a
  990. deadlock when the VMOV instructions are issued out-of-order.
  991. config ARM_ERRATA_825619
  992. bool "ARM errata: A12: DMB NSHST/ISHST mixed ... might cause deadlock"
  993. depends on CPU_V7
  994. help
  995. This option enables the workaround for the 825619 Cortex-A12
  996. (all revs) erratum. Within rare timing constraints, executing a
  997. DMB NSHST or DMB ISHST instruction followed by a mix of Cacheable
  998. and Device/Strongly-Ordered loads and stores might cause deadlock
  999. config ARM_ERRATA_852421
  1000. bool "ARM errata: A17: DMB ST might fail to create order between stores"
  1001. depends on CPU_V7
  1002. help
  1003. This option enables the workaround for the 852421 Cortex-A17
  1004. (r1p0, r1p1, r1p2) erratum. Under very rare timing conditions,
  1005. execution of a DMB ST instruction might fail to properly order
  1006. stores from GroupA and stores from GroupB.
  1007. config ARM_ERRATA_852423
  1008. bool "ARM errata: A17: some seqs of opposed cond code instrs => deadlock or corruption"
  1009. depends on CPU_V7
  1010. help
  1011. This option enables the workaround for:
  1012. - Cortex-A17 852423: Execution of a sequence of instructions might
  1013. lead to either a data corruption or a CPU deadlock. Not fixed in
  1014. any Cortex-A17 cores yet.
  1015. This is identical to Cortex-A12 erratum 852422. It is a separate
  1016. config option from the A12 erratum due to the way errata are checked
  1017. for and handled.
  1018. endmenu
  1019. source "arch/arm/common/Kconfig"
  1020. menu "Bus support"
  1021. config ISA
  1022. bool
  1023. help
  1024. Find out whether you have ISA slots on your motherboard. ISA is the
  1025. name of a bus system, i.e. the way the CPU talks to the other stuff
  1026. inside your box. Other bus systems are PCI, EISA, MicroChannel
  1027. (MCA) or VESA. ISA is an older system, now being displaced by PCI;
  1028. newer boards don't support it. If you have ISA, say Y, otherwise N.
  1029. # Select ISA DMA controller support
  1030. config ISA_DMA
  1031. bool
  1032. select ISA_DMA_API
  1033. # Select ISA DMA interface
  1034. config ISA_DMA_API
  1035. bool
  1036. config PCI
  1037. bool "PCI support" if MIGHT_HAVE_PCI
  1038. help
  1039. Find out whether you have a PCI motherboard. PCI is the name of a
  1040. bus system, i.e. the way the CPU talks to the other stuff inside
  1041. your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or
  1042. VESA. If you have PCI, say Y, otherwise N.
  1043. config PCI_DOMAINS
  1044. bool
  1045. depends on PCI
  1046. config PCI_DOMAINS_GENERIC
  1047. def_bool PCI_DOMAINS
  1048. config PCI_NANOENGINE
  1049. bool "BSE nanoEngine PCI support"
  1050. depends on SA1100_NANOENGINE
  1051. help
  1052. Enable PCI on the BSE nanoEngine board.
  1053. config PCI_SYSCALL
  1054. def_bool PCI
  1055. config PCI_HOST_ITE8152
  1056. bool
  1057. depends on PCI && MACH_ARMCORE
  1058. default y
  1059. select DMABOUNCE
  1060. source "drivers/pci/Kconfig"
  1061. source "drivers/pcmcia/Kconfig"
  1062. endmenu
  1063. menu "Kernel Features"
  1064. config HAVE_SMP
  1065. bool
  1066. help
  1067. This option should be selected by machines which have an SMP-
  1068. capable CPU.
  1069. The only effect of this option is to make the SMP-related
  1070. options available to the user for configuration.
  1071. config SMP
  1072. bool "Symmetric Multi-Processing"
  1073. depends on CPU_V6K || CPU_V7
  1074. depends on GENERIC_CLOCKEVENTS
  1075. depends on HAVE_SMP
  1076. depends on MMU || ARM_MPU
  1077. select IRQ_WORK
  1078. help
  1079. This enables support for systems with more than one CPU. If you have
  1080. a system with only one CPU, say N. If you have a system with more
  1081. than one CPU, say Y.
  1082. If you say N here, the kernel will run on uni- and multiprocessor
  1083. machines, but will use only one CPU of a multiprocessor machine. If
  1084. you say Y here, the kernel will run on many, but not all,
  1085. uniprocessor machines. On a uniprocessor machine, the kernel
  1086. will run faster if you say N here.
  1087. See also <file:Documentation/x86/i386/IO-APIC.txt>,
  1088. <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available at
  1089. <http://tldp.org/HOWTO/SMP-HOWTO.html>.
  1090. If you don't know what to do here, say N.
  1091. config SMP_ON_UP
  1092. bool "Allow booting SMP kernel on uniprocessor systems"
  1093. depends on SMP && !XIP_KERNEL && MMU
  1094. default y
  1095. help
  1096. SMP kernels contain instructions which fail on non-SMP processors.
  1097. Enabling this option allows the kernel to modify itself to make
  1098. these instructions safe. Disabling it allows about 1K of space
  1099. savings.
  1100. If you don't know what to do here, say Y.
  1101. config ARM_CPU_TOPOLOGY
  1102. bool "Support cpu topology definition"
  1103. depends on SMP && CPU_V7
  1104. default y
  1105. help
  1106. Support ARM cpu topology definition. The MPIDR register defines
  1107. affinity between processors which is then used to describe the cpu
  1108. topology of an ARM System.
  1109. config SCHED_MC
  1110. bool "Multi-core scheduler support"
  1111. depends on ARM_CPU_TOPOLOGY
  1112. help
  1113. Multi-core scheduler support improves the CPU scheduler's decision
  1114. making when dealing with multi-core CPU chips at a cost of slightly
  1115. increased overhead in some places. If unsure say N here.
  1116. config SCHED_SMT
  1117. bool "SMT scheduler support"
  1118. depends on ARM_CPU_TOPOLOGY
  1119. help
  1120. Improves the CPU scheduler's decision making when dealing with
  1121. MultiThreading at a cost of slightly increased overhead in some
  1122. places. If unsure say N here.
  1123. config HAVE_ARM_SCU
  1124. bool
  1125. help
  1126. This option enables support for the ARM system coherency unit
  1127. config HAVE_ARM_ARCH_TIMER
  1128. bool "Architected timer support"
  1129. depends on CPU_V7
  1130. select ARM_ARCH_TIMER
  1131. select GENERIC_CLOCKEVENTS
  1132. help
  1133. This option enables support for the ARM architected timer
  1134. config HAVE_ARM_TWD
  1135. bool
  1136. select CLKSRC_OF if OF
  1137. help
  1138. This options enables support for the ARM timer and watchdog unit
  1139. config MCPM
  1140. bool "Multi-Cluster Power Management"
  1141. depends on CPU_V7 && SMP
  1142. help
  1143. This option provides the common power management infrastructure
  1144. for (multi-)cluster based systems, such as big.LITTLE based
  1145. systems.
  1146. config MCPM_QUAD_CLUSTER
  1147. bool
  1148. depends on MCPM
  1149. help
  1150. To avoid wasting resources unnecessarily, MCPM only supports up
  1151. to 2 clusters by default.
  1152. Platforms with 3 or 4 clusters that use MCPM must select this
  1153. option to allow the additional clusters to be managed.
  1154. config BIG_LITTLE
  1155. bool "big.LITTLE support (Experimental)"
  1156. depends on CPU_V7 && SMP
  1157. select MCPM
  1158. help
  1159. This option enables support selections for the big.LITTLE
  1160. system architecture.
  1161. config BL_SWITCHER
  1162. bool "big.LITTLE switcher support"
  1163. depends on BIG_LITTLE && MCPM && HOTPLUG_CPU && ARM_GIC
  1164. select CPU_PM
  1165. help
  1166. The big.LITTLE "switcher" provides the core functionality to
  1167. transparently handle transition between a cluster of A15's
  1168. and a cluster of A7's in a big.LITTLE system.
  1169. config BL_SWITCHER_DUMMY_IF
  1170. tristate "Simple big.LITTLE switcher user interface"
  1171. depends on BL_SWITCHER && DEBUG_KERNEL
  1172. help
  1173. This is a simple and dummy char dev interface to control
  1174. the big.LITTLE switcher core code. It is meant for
  1175. debugging purposes only.
  1176. choice
  1177. prompt "Memory split"
  1178. depends on MMU
  1179. default VMSPLIT_3G
  1180. help
  1181. Select the desired split between kernel and user memory.
  1182. If you are not absolutely sure what you are doing, leave this
  1183. option alone!
  1184. config VMSPLIT_3G
  1185. bool "3G/1G user/kernel split"
  1186. config VMSPLIT_3G_OPT
  1187. bool "3G/1G user/kernel split (for full 1G low memory)"
  1188. config VMSPLIT_2G
  1189. bool "2G/2G user/kernel split"
  1190. config VMSPLIT_1G
  1191. bool "1G/3G user/kernel split"
  1192. endchoice
  1193. config PAGE_OFFSET
  1194. hex
  1195. default PHYS_OFFSET if !MMU
  1196. default 0x40000000 if VMSPLIT_1G
  1197. default 0x80000000 if VMSPLIT_2G
  1198. default 0xB0000000 if VMSPLIT_3G_OPT
  1199. default 0xC0000000
  1200. config NR_CPUS
  1201. int "Maximum number of CPUs (2-32)"
  1202. range 2 32
  1203. depends on SMP
  1204. default "4"
  1205. config HOTPLUG_CPU
  1206. bool "Support for hot-pluggable CPUs"
  1207. depends on SMP
  1208. help
  1209. Say Y here to experiment with turning CPUs off and on. CPUs
  1210. can be controlled through /sys/devices/system/cpu.
  1211. config ARM_PSCI
  1212. bool "Support for the ARM Power State Coordination Interface (PSCI)"
  1213. depends on HAVE_ARM_SMCCC
  1214. select ARM_PSCI_FW
  1215. help
  1216. Say Y here if you want Linux to communicate with system firmware
  1217. implementing the PSCI specification for CPU-centric power
  1218. management operations described in ARM document number ARM DEN
  1219. 0022A ("Power State Coordination Interface System Software on
  1220. ARM processors").
  1221. # The GPIO number here must be sorted by descending number. In case of
  1222. # a multiplatform kernel, we just want the highest value required by the
  1223. # selected platforms.
  1224. config ARCH_NR_GPIO
  1225. int
  1226. default 1024 if ARCH_BRCMSTB || ARCH_SHMOBILE || ARCH_TEGRA || \
  1227. ARCH_ZYNQ
  1228. default 512 if ARCH_EXYNOS || ARCH_KEYSTONE || SOC_OMAP5 || \
  1229. SOC_DRA7XX || ARCH_S3C24XX || ARCH_S3C64XX || ARCH_S5PV210
  1230. default 416 if ARCH_SUNXI
  1231. default 392 if ARCH_U8500
  1232. default 352 if ARCH_VT8500
  1233. default 288 if ARCH_ROCKCHIP
  1234. default 264 if MACH_H4700
  1235. default 0
  1236. help
  1237. Maximum number of GPIOs in the system.
  1238. If unsure, leave the default value.
  1239. source kernel/Kconfig.preempt
  1240. config HZ_FIXED
  1241. int
  1242. default 200 if ARCH_EBSA110
  1243. default 128 if SOC_AT91RM9200
  1244. default 0
  1245. choice
  1246. depends on HZ_FIXED = 0
  1247. prompt "Timer frequency"
  1248. config HZ_100
  1249. bool "100 Hz"
  1250. config HZ_200
  1251. bool "200 Hz"
  1252. config HZ_250
  1253. bool "250 Hz"
  1254. config HZ_300
  1255. bool "300 Hz"
  1256. config HZ_500
  1257. bool "500 Hz"
  1258. config HZ_1000
  1259. bool "1000 Hz"
  1260. endchoice
  1261. config HZ
  1262. int
  1263. default HZ_FIXED if HZ_FIXED != 0
  1264. default 100 if HZ_100
  1265. default 200 if HZ_200
  1266. default 250 if HZ_250
  1267. default 300 if HZ_300
  1268. default 500 if HZ_500
  1269. default 1000
  1270. config SCHED_HRTICK
  1271. def_bool HIGH_RES_TIMERS
  1272. config THUMB2_KERNEL
  1273. bool "Compile the kernel in Thumb-2 mode" if !CPU_THUMBONLY
  1274. depends on (CPU_V7 || CPU_V7M) && !CPU_V6 && !CPU_V6K
  1275. default y if CPU_THUMBONLY
  1276. select AEABI
  1277. select ARM_ASM_UNIFIED
  1278. select ARM_UNWIND
  1279. help
  1280. By enabling this option, the kernel will be compiled in
  1281. Thumb-2 mode. A compiler/assembler that understand the unified
  1282. ARM-Thumb syntax is needed.
  1283. If unsure, say N.
  1284. config THUMB2_AVOID_R_ARM_THM_JUMP11
  1285. bool "Work around buggy Thumb-2 short branch relocations in gas"
  1286. depends on THUMB2_KERNEL && MODULES
  1287. default y
  1288. help
  1289. Various binutils versions can resolve Thumb-2 branches to
  1290. locally-defined, preemptible global symbols as short-range "b.n"
  1291. branch instructions.
  1292. This is a problem, because there's no guarantee the final
  1293. destination of the symbol, or any candidate locations for a
  1294. trampoline, are within range of the branch. For this reason, the
  1295. kernel does not support fixing up the R_ARM_THM_JUMP11 (102)
  1296. relocation in modules at all, and it makes little sense to add
  1297. support.
  1298. The symptom is that the kernel fails with an "unsupported
  1299. relocation" error when loading some modules.
  1300. Until fixed tools are available, passing
  1301. -fno-optimize-sibling-calls to gcc should prevent gcc generating
  1302. code which hits this problem, at the cost of a bit of extra runtime
  1303. stack usage in some cases.
  1304. The problem is described in more detail at:
  1305. https://bugs.launchpad.net/binutils-linaro/+bug/725126
  1306. Only Thumb-2 kernels are affected.
  1307. Unless you are sure your tools don't have this problem, say Y.
  1308. config ARM_ASM_UNIFIED
  1309. bool
  1310. config ARM_PATCH_IDIV
  1311. bool "Runtime patch udiv/sdiv instructions into __aeabi_{u}idiv()"
  1312. depends on CPU_32v7 && !XIP_KERNEL
  1313. default y
  1314. help
  1315. The ARM compiler inserts calls to __aeabi_idiv() and
  1316. __aeabi_uidiv() when it needs to perform division on signed
  1317. and unsigned integers. Some v7 CPUs have support for the sdiv
  1318. and udiv instructions that can be used to implement those
  1319. functions.
  1320. Enabling this option allows the kernel to modify itself to
  1321. replace the first two instructions of these library functions
  1322. with the sdiv or udiv plus "bx lr" instructions when the CPU
  1323. it is running on supports them. Typically this will be faster
  1324. and less power intensive than running the original library
  1325. code to do integer division.
  1326. config AEABI
  1327. bool "Use the ARM EABI to compile the kernel"
  1328. help
  1329. This option allows for the kernel to be compiled using the latest
  1330. ARM ABI (aka EABI). This is only useful if you are using a user
  1331. space environment that is also compiled with EABI.
  1332. Since there are major incompatibilities between the legacy ABI and
  1333. EABI, especially with regard to structure member alignment, this
  1334. option also changes the kernel syscall calling convention to
  1335. disambiguate both ABIs and allow for backward compatibility support
  1336. (selected with CONFIG_OABI_COMPAT).
  1337. To use this you need GCC version 4.0.0 or later.
  1338. config OABI_COMPAT
  1339. bool "Allow old ABI binaries to run with this kernel (EXPERIMENTAL)"
  1340. depends on AEABI && !THUMB2_KERNEL
  1341. help
  1342. This option preserves the old syscall interface along with the
  1343. new (ARM EABI) one. It also provides a compatibility layer to
  1344. intercept syscalls that have structure arguments which layout
  1345. in memory differs between the legacy ABI and the new ARM EABI
  1346. (only for non "thumb" binaries). This option adds a tiny
  1347. overhead to all syscalls and produces a slightly larger kernel.
  1348. The seccomp filter system will not be available when this is
  1349. selected, since there is no way yet to sensibly distinguish
  1350. between calling conventions during filtering.
  1351. If you know you'll be using only pure EABI user space then you
  1352. can say N here. If this option is not selected and you attempt
  1353. to execute a legacy ABI binary then the result will be
  1354. UNPREDICTABLE (in fact it can be predicted that it won't work
  1355. at all). If in doubt say N.
  1356. config ARCH_HAS_HOLES_MEMORYMODEL
  1357. bool
  1358. config ARCH_SPARSEMEM_ENABLE
  1359. bool
  1360. config ARCH_SPARSEMEM_DEFAULT
  1361. def_bool ARCH_SPARSEMEM_ENABLE
  1362. config ARCH_SELECT_MEMORY_MODEL
  1363. def_bool ARCH_SPARSEMEM_ENABLE
  1364. config HAVE_ARCH_PFN_VALID
  1365. def_bool ARCH_HAS_HOLES_MEMORYMODEL || !SPARSEMEM
  1366. config HAVE_GENERIC_RCU_GUP
  1367. def_bool y
  1368. depends on ARM_LPAE
  1369. config HIGHMEM
  1370. bool "High Memory Support"
  1371. depends on MMU
  1372. help
  1373. The address space of ARM processors is only 4 Gigabytes large
  1374. and it has to accommodate user address space, kernel address
  1375. space as well as some memory mapped IO. That means that, if you
  1376. have a large amount of physical memory and/or IO, not all of the
  1377. memory can be "permanently mapped" by the kernel. The physical
  1378. memory that is not permanently mapped is called "high memory".
  1379. Depending on the selected kernel/user memory split, minimum
  1380. vmalloc space and actual amount of RAM, you may not need this
  1381. option which should result in a slightly faster kernel.
  1382. If unsure, say n.
  1383. config HIGHPTE
  1384. bool "Allocate 2nd-level pagetables from highmem" if EXPERT
  1385. depends on HIGHMEM
  1386. default y
  1387. help
  1388. The VM uses one page of physical memory for each page table.
  1389. For systems with a lot of processes, this can use a lot of
  1390. precious low memory, eventually leading to low memory being
  1391. consumed by page tables. Setting this option will allow
  1392. user-space 2nd level page tables to reside in high memory.
  1393. config CPU_SW_DOMAIN_PAN
  1394. bool "Enable use of CPU domains to implement privileged no-access"
  1395. depends on MMU && !ARM_LPAE
  1396. default y
  1397. help
  1398. Increase kernel security by ensuring that normal kernel accesses
  1399. are unable to access userspace addresses. This can help prevent
  1400. use-after-free bugs becoming an exploitable privilege escalation
  1401. by ensuring that magic values (such as LIST_POISON) will always
  1402. fault when dereferenced.
  1403. CPUs with low-vector mappings use a best-efforts implementation.
  1404. Their lower 1MB needs to remain accessible for the vectors, but
  1405. the remainder of userspace will become appropriately inaccessible.
  1406. config HW_PERF_EVENTS
  1407. def_bool y
  1408. depends on ARM_PMU
  1409. config SYS_SUPPORTS_HUGETLBFS
  1410. def_bool y
  1411. depends on ARM_LPAE
  1412. config HAVE_ARCH_TRANSPARENT_HUGEPAGE
  1413. def_bool y
  1414. depends on ARM_LPAE
  1415. config ARCH_WANT_GENERAL_HUGETLB
  1416. def_bool y
  1417. config ARM_MODULE_PLTS
  1418. bool "Use PLTs to allow module memory to spill over into vmalloc area"
  1419. depends on MODULES
  1420. help
  1421. Allocate PLTs when loading modules so that jumps and calls whose
  1422. targets are too far away for their relative offsets to be encoded
  1423. in the instructions themselves can be bounced via veneers in the
  1424. module's PLT. This allows modules to be allocated in the generic
  1425. vmalloc area after the dedicated module memory area has been
  1426. exhausted. The modules will use slightly more memory, but after
  1427. rounding up to page size, the actual memory footprint is usually
  1428. the same.
  1429. Say y if you are getting out of memory errors while loading modules
  1430. source "mm/Kconfig"
  1431. config FORCE_MAX_ZONEORDER
  1432. int "Maximum zone order"
  1433. default "12" if SOC_AM33XX
  1434. default "9" if SA1111 || ARCH_EFM32
  1435. default "11"
  1436. help
  1437. The kernel memory allocator divides physically contiguous memory
  1438. blocks into "zones", where each zone is a power of two number of
  1439. pages. This option selects the largest power of two that the kernel
  1440. keeps in the memory allocator. If you need to allocate very large
  1441. blocks of physically contiguous memory, then you may need to
  1442. increase this value.
  1443. This config option is actually maximum order plus one. For example,
  1444. a value of 11 means that the largest free memory block is 2^10 pages.
  1445. config ALIGNMENT_TRAP
  1446. bool
  1447. depends on CPU_CP15_MMU
  1448. default y if !ARCH_EBSA110
  1449. select HAVE_PROC_CPU if PROC_FS
  1450. help
  1451. ARM processors cannot fetch/store information which is not
  1452. naturally aligned on the bus, i.e., a 4 byte fetch must start at an
  1453. address divisible by 4. On 32-bit ARM processors, these non-aligned
  1454. fetch/store instructions will be emulated in software if you say
  1455. here, which has a severe performance impact. This is necessary for
  1456. correct operation of some network protocols. With an IP-only
  1457. configuration it is safe to say N, otherwise say Y.
  1458. config UACCESS_WITH_MEMCPY
  1459. bool "Use kernel mem{cpy,set}() for {copy_to,clear}_user()"
  1460. depends on MMU
  1461. default y if CPU_FEROCEON
  1462. help
  1463. Implement faster copy_to_user and clear_user methods for CPU
  1464. cores where a 8-word STM instruction give significantly higher
  1465. memory write throughput than a sequence of individual 32bit stores.
  1466. A possible side effect is a slight increase in scheduling latency
  1467. between threads sharing the same address space if they invoke
  1468. such copy operations with large buffers.
  1469. However, if the CPU data cache is using a write-allocate mode,
  1470. this option is unlikely to provide any performance gain.
  1471. config SECCOMP
  1472. bool
  1473. prompt "Enable seccomp to safely compute untrusted bytecode"
  1474. ---help---
  1475. This kernel feature is useful for number crunching applications
  1476. that may need to compute untrusted bytecode during their
  1477. execution. By using pipes or other transports made available to
  1478. the process as file descriptors supporting the read/write
  1479. syscalls, it's possible to isolate those applications in
  1480. their own address space using seccomp. Once seccomp is
  1481. enabled via prctl(PR_SET_SECCOMP), it cannot be disabled
  1482. and the task is only allowed to execute a few safe syscalls
  1483. defined by each seccomp mode.
  1484. config SWIOTLB
  1485. def_bool y
  1486. config IOMMU_HELPER
  1487. def_bool SWIOTLB
  1488. config PARAVIRT
  1489. bool "Enable paravirtualization code"
  1490. help
  1491. This changes the kernel so it can modify itself when it is run
  1492. under a hypervisor, potentially improving performance significantly
  1493. over full virtualization.
  1494. config PARAVIRT_TIME_ACCOUNTING
  1495. bool "Paravirtual steal time accounting"
  1496. select PARAVIRT
  1497. default n
  1498. help
  1499. Select this option to enable fine granularity task steal time
  1500. accounting. Time spent executing other tasks in parallel with
  1501. the current vCPU is discounted from the vCPU power. To account for
  1502. that, there can be a small performance impact.
  1503. If in doubt, say N here.
  1504. config XEN_DOM0
  1505. def_bool y
  1506. depends on XEN
  1507. config XEN
  1508. bool "Xen guest support on ARM"
  1509. depends on ARM && AEABI && OF
  1510. depends on CPU_V7 && !CPU_V6
  1511. depends on !GENERIC_ATOMIC64
  1512. depends on MMU
  1513. select ARCH_DMA_ADDR_T_64BIT
  1514. select ARM_PSCI
  1515. select SWIOTLB_XEN
  1516. select PARAVIRT
  1517. help
  1518. Say Y if you want to run Linux in a Virtual Machine on Xen on ARM.
  1519. endmenu
  1520. menu "Boot options"
  1521. config USE_OF
  1522. bool "Flattened Device Tree support"
  1523. select IRQ_DOMAIN
  1524. select OF
  1525. help
  1526. Include support for flattened device tree machine descriptions.
  1527. config ATAGS
  1528. bool "Support for the traditional ATAGS boot data passing" if USE_OF
  1529. default y
  1530. help
  1531. This is the traditional way of passing data to the kernel at boot
  1532. time. If you are solely relying on the flattened device tree (or
  1533. the ARM_ATAG_DTB_COMPAT option) then you may unselect this option
  1534. to remove ATAGS support from your kernel binary. If unsure,
  1535. leave this to y.
  1536. config DEPRECATED_PARAM_STRUCT
  1537. bool "Provide old way to pass kernel parameters"
  1538. depends on ATAGS
  1539. help
  1540. This was deprecated in 2001 and announced to live on for 5 years.
  1541. Some old boot loaders still use this way.
  1542. # Compressed boot loader in ROM. Yes, we really want to ask about
  1543. # TEXT and BSS so we preserve their values in the config files.
  1544. config ZBOOT_ROM_TEXT
  1545. hex "Compressed ROM boot loader base address"
  1546. default "0"
  1547. help
  1548. The physical address at which the ROM-able zImage is to be
  1549. placed in the target. Platforms which normally make use of
  1550. ROM-able zImage formats normally set this to a suitable
  1551. value in their defconfig file.
  1552. If ZBOOT_ROM is not enabled, this has no effect.
  1553. config ZBOOT_ROM_BSS
  1554. hex "Compressed ROM boot loader BSS address"
  1555. default "0"
  1556. help
  1557. The base address of an area of read/write memory in the target
  1558. for the ROM-able zImage which must be available while the
  1559. decompressor is running. It must be large enough to hold the
  1560. entire decompressed kernel plus an additional 128 KiB.
  1561. Platforms which normally make use of ROM-able zImage formats
  1562. normally set this to a suitable value in their defconfig file.
  1563. If ZBOOT_ROM is not enabled, this has no effect.
  1564. config ZBOOT_ROM
  1565. bool "Compressed boot loader in ROM/flash"
  1566. depends on ZBOOT_ROM_TEXT != ZBOOT_ROM_BSS
  1567. depends on !ARM_APPENDED_DTB && !XIP_KERNEL && !AUTO_ZRELADDR
  1568. help
  1569. Say Y here if you intend to execute your compressed kernel image
  1570. (zImage) directly from ROM or flash. If unsure, say N.
  1571. config ARM_APPENDED_DTB
  1572. bool "Use appended device tree blob to zImage (EXPERIMENTAL)"
  1573. depends on OF
  1574. help
  1575. With this option, the boot code will look for a device tree binary
  1576. (DTB) appended to zImage
  1577. (e.g. cat zImage <filename>.dtb > zImage_w_dtb).
  1578. This is meant as a backward compatibility convenience for those
  1579. systems with a bootloader that can't be upgraded to accommodate
  1580. the documented boot protocol using a device tree.
  1581. Beware that there is very little in terms of protection against
  1582. this option being confused by leftover garbage in memory that might
  1583. look like a DTB header after a reboot if no actual DTB is appended
  1584. to zImage. Do not leave this option active in a production kernel
  1585. if you don't intend to always append a DTB. Proper passing of the
  1586. location into r2 of a bootloader provided DTB is always preferable
  1587. to this option.
  1588. config ARM_ATAG_DTB_COMPAT
  1589. bool "Supplement the appended DTB with traditional ATAG information"
  1590. depends on ARM_APPENDED_DTB
  1591. help
  1592. Some old bootloaders can't be updated to a DTB capable one, yet
  1593. they provide ATAGs with memory configuration, the ramdisk address,
  1594. the kernel cmdline string, etc. Such information is dynamically
  1595. provided by the bootloader and can't always be stored in a static
  1596. DTB. To allow a device tree enabled kernel to be used with such
  1597. bootloaders, this option allows zImage to extract the information
  1598. from the ATAG list and store it at run time into the appended DTB.
  1599. choice
  1600. prompt "Kernel command line type" if ARM_ATAG_DTB_COMPAT
  1601. default ARM_ATAG_DTB_COMPAT_CMDLINE_FROM_BOOTLOADER
  1602. config ARM_ATAG_DTB_COMPAT_CMDLINE_FROM_BOOTLOADER
  1603. bool "Use bootloader kernel arguments if available"
  1604. help
  1605. Uses the command-line options passed by the boot loader instead of
  1606. the device tree bootargs property. If the boot loader doesn't provide
  1607. any, the device tree bootargs property will be used.
  1608. config ARM_ATAG_DTB_COMPAT_CMDLINE_EXTEND
  1609. bool "Extend with bootloader kernel arguments"
  1610. help
  1611. The command-line arguments provided by the boot loader will be
  1612. appended to the the device tree bootargs property.
  1613. endchoice
  1614. config CMDLINE
  1615. string "Default kernel command string"
  1616. default ""
  1617. help
  1618. On some architectures (EBSA110 and CATS), there is currently no way
  1619. for the boot loader to pass arguments to the kernel. For these
  1620. architectures, you should supply some command-line options at build
  1621. time by entering them here. As a minimum, you should specify the
  1622. memory size and the root device (e.g., mem=64M root=/dev/nfs).
  1623. choice
  1624. prompt "Kernel command line type" if CMDLINE != ""
  1625. default CMDLINE_FROM_BOOTLOADER
  1626. depends on ATAGS
  1627. config CMDLINE_FROM_BOOTLOADER
  1628. bool "Use bootloader kernel arguments if available"
  1629. help
  1630. Uses the command-line options passed by the boot loader. If
  1631. the boot loader doesn't provide any, the default kernel command
  1632. string provided in CMDLINE will be used.
  1633. config CMDLINE_EXTEND
  1634. bool "Extend bootloader kernel arguments"
  1635. help
  1636. The command-line arguments provided by the boot loader will be
  1637. appended to the default kernel command string.
  1638. config CMDLINE_FORCE
  1639. bool "Always use the default kernel command string"
  1640. help
  1641. Always use the default kernel command string, even if the boot
  1642. loader passes other arguments to the kernel.
  1643. This is useful if you cannot or don't want to change the
  1644. command-line options your boot loader passes to the kernel.
  1645. endchoice
  1646. config XIP_KERNEL
  1647. bool "Kernel Execute-In-Place from ROM"
  1648. depends on !ARM_LPAE && !ARCH_MULTIPLATFORM
  1649. help
  1650. Execute-In-Place allows the kernel to run from non-volatile storage
  1651. directly addressable by the CPU, such as NOR flash. This saves RAM
  1652. space since the text section of the kernel is not loaded from flash
  1653. to RAM. Read-write sections, such as the data section and stack,
  1654. are still copied to RAM. The XIP kernel is not compressed since
  1655. it has to run directly from flash, so it will take more space to
  1656. store it. The flash address used to link the kernel object files,
  1657. and for storing it, is configuration dependent. Therefore, if you
  1658. say Y here, you must know the proper physical address where to
  1659. store the kernel image depending on your own flash memory usage.
  1660. Also note that the make target becomes "make xipImage" rather than
  1661. "make zImage" or "make Image". The final kernel binary to put in
  1662. ROM memory will be arch/arm/boot/xipImage.
  1663. If unsure, say N.
  1664. config XIP_PHYS_ADDR
  1665. hex "XIP Kernel Physical Location"
  1666. depends on XIP_KERNEL
  1667. default "0x00080000"
  1668. help
  1669. This is the physical address in your flash memory the kernel will
  1670. be linked for and stored to. This address is dependent on your
  1671. own flash usage.
  1672. config KEXEC
  1673. bool "Kexec system call (EXPERIMENTAL)"
  1674. depends on (!SMP || PM_SLEEP_SMP)
  1675. depends on !CPU_V7M
  1676. select KEXEC_CORE
  1677. help
  1678. kexec is a system call that implements the ability to shutdown your
  1679. current kernel, and to start another kernel. It is like a reboot
  1680. but it is independent of the system firmware. And like a reboot
  1681. you can start any kernel with it, not just Linux.
  1682. It is an ongoing process to be certain the hardware in a machine
  1683. is properly shutdown, so do not be surprised if this code does not
  1684. initially work for you.
  1685. config ATAGS_PROC
  1686. bool "Export atags in procfs"
  1687. depends on ATAGS && KEXEC
  1688. default y
  1689. help
  1690. Should the atags used to boot the kernel be exported in an "atags"
  1691. file in procfs. Useful with kexec.
  1692. config CRASH_DUMP
  1693. bool "Build kdump crash kernel (EXPERIMENTAL)"
  1694. help
  1695. Generate crash dump after being started by kexec. This should
  1696. be normally only set in special crash dump kernels which are
  1697. loaded in the main kernel with kexec-tools into a specially
  1698. reserved region and then later executed after a crash by
  1699. kdump/kexec. The crash dump kernel must be compiled to a
  1700. memory address not used by the main kernel
  1701. For more details see Documentation/kdump/kdump.txt
  1702. config AUTO_ZRELADDR
  1703. bool "Auto calculation of the decompressed kernel image address"
  1704. help
  1705. ZRELADDR is the physical address where the decompressed kernel
  1706. image will be placed. If AUTO_ZRELADDR is selected, the address
  1707. will be determined at run-time by masking the current IP with
  1708. 0xf8000000. This assumes the zImage being placed in the first 128MB
  1709. from start of memory.
  1710. config EFI_STUB
  1711. bool
  1712. config EFI
  1713. bool "UEFI runtime support"
  1714. depends on OF && !CPU_BIG_ENDIAN && MMU && AUTO_ZRELADDR && !XIP_KERNEL
  1715. select UCS2_STRING
  1716. select EFI_PARAMS_FROM_FDT
  1717. select EFI_STUB
  1718. select EFI_ARMSTUB
  1719. select EFI_RUNTIME_WRAPPERS
  1720. ---help---
  1721. This option provides support for runtime services provided
  1722. by UEFI firmware (such as non-volatile variables, realtime
  1723. clock, and platform reset). A UEFI stub is also provided to
  1724. allow the kernel to be booted as an EFI application. This
  1725. is only useful for kernels that may run on systems that have
  1726. UEFI firmware.
  1727. endmenu
  1728. menu "CPU Power Management"
  1729. source "drivers/cpufreq/Kconfig"
  1730. source "drivers/cpuidle/Kconfig"
  1731. endmenu
  1732. menu "Floating point emulation"
  1733. comment "At least one emulation must be selected"
  1734. config FPE_NWFPE
  1735. bool "NWFPE math emulation"
  1736. depends on (!AEABI || OABI_COMPAT) && !THUMB2_KERNEL
  1737. ---help---
  1738. Say Y to include the NWFPE floating point emulator in the kernel.
  1739. This is necessary to run most binaries. Linux does not currently
  1740. support floating point hardware so you need to say Y here even if
  1741. your machine has an FPA or floating point co-processor podule.
  1742. You may say N here if you are going to load the Acorn FPEmulator
  1743. early in the bootup.
  1744. config FPE_NWFPE_XP
  1745. bool "Support extended precision"
  1746. depends on FPE_NWFPE
  1747. help
  1748. Say Y to include 80-bit support in the kernel floating-point
  1749. emulator. Otherwise, only 32 and 64-bit support is compiled in.
  1750. Note that gcc does not generate 80-bit operations by default,
  1751. so in most cases this option only enlarges the size of the
  1752. floating point emulator without any good reason.
  1753. You almost surely want to say N here.
  1754. config FPE_FASTFPE
  1755. bool "FastFPE math emulation (EXPERIMENTAL)"
  1756. depends on (!AEABI || OABI_COMPAT) && !CPU_32v3
  1757. ---help---
  1758. Say Y here to include the FAST floating point emulator in the kernel.
  1759. This is an experimental much faster emulator which now also has full
  1760. precision for the mantissa. It does not support any exceptions.
  1761. It is very simple, and approximately 3-6 times faster than NWFPE.
  1762. It should be sufficient for most programs. It may be not suitable
  1763. for scientific calculations, but you have to check this for yourself.
  1764. If you do not feel you need a faster FP emulation you should better
  1765. choose NWFPE.
  1766. config VFP
  1767. bool "VFP-format floating point maths"
  1768. depends on CPU_V6 || CPU_V6K || CPU_ARM926T || CPU_V7 || CPU_FEROCEON
  1769. help
  1770. Say Y to include VFP support code in the kernel. This is needed
  1771. if your hardware includes a VFP unit.
  1772. Please see <file:Documentation/arm/VFP/release-notes.txt> for
  1773. release notes and additional status information.
  1774. Say N if your target does not have VFP hardware.
  1775. config VFPv3
  1776. bool
  1777. depends on VFP
  1778. default y if CPU_V7
  1779. config NEON
  1780. bool "Advanced SIMD (NEON) Extension support"
  1781. depends on VFPv3 && CPU_V7
  1782. help
  1783. Say Y to include support code for NEON, the ARMv7 Advanced SIMD
  1784. Extension.
  1785. config KERNEL_MODE_NEON
  1786. bool "Support for NEON in kernel mode"
  1787. depends on NEON && AEABI
  1788. help
  1789. Say Y to include support for NEON in kernel mode.
  1790. endmenu
  1791. menu "Userspace binary formats"
  1792. source "fs/Kconfig.binfmt"
  1793. endmenu
  1794. menu "Power management options"
  1795. source "kernel/power/Kconfig"
  1796. config ARCH_SUSPEND_POSSIBLE
  1797. depends on CPU_ARM920T || CPU_ARM926T || CPU_FEROCEON || CPU_SA1100 || \
  1798. CPU_V6 || CPU_V6K || CPU_V7 || CPU_V7M || CPU_XSC3 || CPU_XSCALE || CPU_MOHAWK
  1799. def_bool y
  1800. config ARM_CPU_SUSPEND
  1801. def_bool PM_SLEEP || BL_SWITCHER || ARM_PSCI_FW
  1802. depends on ARCH_SUSPEND_POSSIBLE
  1803. config ARCH_HIBERNATION_POSSIBLE
  1804. bool
  1805. depends on MMU
  1806. default y if ARCH_SUSPEND_POSSIBLE
  1807. endmenu
  1808. source "net/Kconfig"
  1809. source "drivers/Kconfig"
  1810. source "drivers/firmware/Kconfig"
  1811. source "fs/Kconfig"
  1812. source "arch/arm/Kconfig.debug"
  1813. source "security/Kconfig"
  1814. source "crypto/Kconfig"
  1815. if CRYPTO
  1816. source "arch/arm/crypto/Kconfig"
  1817. endif
  1818. source "lib/Kconfig"
  1819. source "arch/arm/kvm/Kconfig"