Kconfig 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  1. if ARCH_OMAP2PLUS
  2. menu "TI OMAP2/3/4 Specific Features"
  3. config ARCH_OMAP2PLUS_TYPICAL
  4. bool "Typical OMAP configuration"
  5. default y
  6. select AEABI
  7. select REGULATOR
  8. select PM_RUNTIME
  9. select VFP
  10. select NEON if ARCH_OMAP3 || ARCH_OMAP4
  11. select SERIAL_OMAP
  12. select SERIAL_OMAP_CONSOLE
  13. select I2C
  14. select I2C_OMAP
  15. select MENELAUS if ARCH_OMAP2
  16. select TWL4030_CORE if ARCH_OMAP3 || ARCH_OMAP4
  17. select TWL4030_POWER if ARCH_OMAP3 || ARCH_OMAP4
  18. help
  19. Compile a kernel suitable for booting most boards
  20. config ARCH_OMAP2
  21. bool
  22. select CPU_V6
  23. select MULTI_IRQ_HANDLER
  24. config ARCH_OMAP3
  25. bool
  26. select CPU_V7
  27. select USB_ARCH_HAS_EHCI if USB_SUPPORT
  28. select ARCH_HAS_OPP
  29. select PM_OPP if PM
  30. select ARM_CPU_SUSPEND if PM
  31. select MULTI_IRQ_HANDLER
  32. config ARCH_OMAP4
  33. bool
  34. select CACHE_L2X0
  35. select CPU_V7
  36. select ARM_GIC
  37. select HAVE_SMP
  38. select LOCAL_TIMERS if SMP
  39. select PL310_ERRATA_588369
  40. select PL310_ERRATA_727915
  41. select ARM_ERRATA_720789
  42. select ARCH_HAS_OPP
  43. select PM_OPP if PM
  44. select USB_ARCH_HAS_EHCI if USB_SUPPORT
  45. select ARM_CPU_SUSPEND if PM
  46. comment "OMAP Core Type"
  47. config SOC_OMAP
  48. bool
  49. config SOC_OMAP2420
  50. bool "OMAP2420 support"
  51. default y
  52. select SOC_OMAP
  53. select ARCH_OMAP2
  54. select OMAP_DM_TIMER
  55. select ARCH_OMAP_OTG
  56. config SOC_OMAP2430
  57. bool "OMAP2430 support"
  58. default y
  59. select SOC_OMAP
  60. select ARCH_OMAP2
  61. select ARCH_OMAP_OTG
  62. config SOC_OMAP3430
  63. bool "OMAP3430 support"
  64. default y
  65. select SOC_OMAP
  66. select ARCH_OMAP3
  67. select ARCH_OMAP_OTG
  68. config SOC_OMAPTI81XX
  69. bool "TI81XX support"
  70. default y
  71. select SOC_OMAP
  72. select ARCH_OMAP3
  73. config SOC_OMAPAM33XX
  74. bool "AM33XX support"
  75. default y
  76. select SOC_OMAP
  77. select ARCH_OMAP3
  78. config SOC_OMAP44XX
  79. bool "OMAP44XX support"
  80. default y
  81. select SOC_OMAP
  82. select ARCH_OMAP4
  83. config SOC_OMAP_NOOP
  84. bool
  85. depends on !SOC_OMAP
  86. default y
  87. select ARCH_OMAP2
  88. select ARCH_OMAP3
  89. select ARCH_OMAP4
  90. select MACH_OMAP_GENERIC
  91. config OMAP_PACKAGE_ZAF
  92. bool
  93. config OMAP_PACKAGE_ZAC
  94. bool
  95. config OMAP_PACKAGE_CBC
  96. bool
  97. config OMAP_PACKAGE_CBB
  98. bool
  99. config OMAP_PACKAGE_CUS
  100. bool
  101. config OMAP_PACKAGE_CBP
  102. bool
  103. config OMAP_PACKAGE_CBL
  104. bool
  105. config OMAP_PACKAGE_CBS
  106. bool
  107. comment "OMAP Board Type"
  108. config MACH_OMAP_GENERIC
  109. bool "Generic OMAP2+ board"
  110. select USE_OF
  111. default y
  112. help
  113. Support for generic TI OMAP2+ boards using Flattened Device Tree.
  114. More information at Documentation/devicetree
  115. if SOC_OMAP
  116. config MACH_OMAP2_TUSB6010
  117. bool
  118. depends on ARCH_OMAP2 && SOC_OMAP2420
  119. default y if MACH_NOKIA_N8X0
  120. config MACH_OMAP_H4
  121. bool "OMAP 2420 H4 board"
  122. depends on SOC_OMAP2420
  123. default y
  124. select OMAP_PACKAGE_ZAF
  125. select OMAP_DEBUG_DEVICES
  126. config MACH_OMAP_APOLLON
  127. bool "OMAP 2420 Apollon board"
  128. depends on SOC_OMAP2420
  129. default y
  130. select OMAP_PACKAGE_ZAC
  131. config MACH_OMAP_2430SDP
  132. bool "OMAP 2430 SDP board"
  133. depends on SOC_OMAP2430
  134. default y
  135. select OMAP_PACKAGE_ZAC
  136. config MACH_OMAP3_BEAGLE
  137. bool "OMAP3 BEAGLE board"
  138. depends on ARCH_OMAP3
  139. default y
  140. select OMAP_PACKAGE_CBB
  141. config MACH_DEVKIT8000
  142. bool "DEVKIT8000 board"
  143. depends on ARCH_OMAP3
  144. default y
  145. select OMAP_PACKAGE_CUS
  146. config MACH_OMAP_LDP
  147. bool "OMAP3 LDP board"
  148. depends on ARCH_OMAP3
  149. default y
  150. select OMAP_PACKAGE_CBB
  151. config MACH_OMAP3530_LV_SOM
  152. bool "OMAP3 Logic 3530 LV SOM board"
  153. depends on ARCH_OMAP3
  154. select OMAP_PACKAGE_CBB
  155. default y
  156. help
  157. Support for the LogicPD OMAP3530 SOM Development kit
  158. for full description please see the products webpage at
  159. http://www.logicpd.com/products/development-kits/texas-instruments-zoom%E2%84%A2-omap35x-development-kit
  160. config MACH_OMAP3_TORPEDO
  161. bool "OMAP3 Logic 35x Torpedo board"
  162. depends on ARCH_OMAP3
  163. select OMAP_PACKAGE_CBB
  164. default y
  165. help
  166. Support for the LogicPD OMAP35x Torpedo Development kit
  167. for full description please see the products webpage at
  168. http://www.logicpd.com/products/development-kits/zoom-omap35x-torpedo-development-kit
  169. config MACH_OVERO
  170. bool "Gumstix Overo board"
  171. depends on ARCH_OMAP3
  172. default y
  173. select OMAP_PACKAGE_CBB
  174. config MACH_OMAP3EVM
  175. bool "OMAP 3530 EVM board"
  176. depends on ARCH_OMAP3
  177. default y
  178. select OMAP_PACKAGE_CBB
  179. config MACH_OMAP3517EVM
  180. bool "OMAP3517/ AM3517 EVM board"
  181. depends on ARCH_OMAP3
  182. default y
  183. select OMAP_PACKAGE_CBB
  184. config MACH_CRANEBOARD
  185. bool "AM3517/05 CRANE board"
  186. depends on ARCH_OMAP3
  187. select OMAP_PACKAGE_CBB
  188. config MACH_OMAP3_PANDORA
  189. bool "OMAP3 Pandora"
  190. depends on ARCH_OMAP3
  191. default y
  192. select OMAP_PACKAGE_CBB
  193. select REGULATOR_FIXED_VOLTAGE if REGULATOR
  194. config MACH_OMAP3_TOUCHBOOK
  195. bool "OMAP3 Touch Book"
  196. depends on ARCH_OMAP3
  197. default y
  198. config MACH_OMAP_3430SDP
  199. bool "OMAP 3430 SDP board"
  200. depends on ARCH_OMAP3
  201. default y
  202. select OMAP_PACKAGE_CBB
  203. config MACH_NOKIA_N800
  204. bool
  205. config MACH_NOKIA_N810
  206. bool
  207. config MACH_NOKIA_N810_WIMAX
  208. bool
  209. config MACH_NOKIA_N8X0
  210. bool "Nokia N800/N810"
  211. depends on SOC_OMAP2420
  212. default y
  213. select OMAP_PACKAGE_ZAC
  214. select MACH_NOKIA_N800
  215. select MACH_NOKIA_N810
  216. select MACH_NOKIA_N810_WIMAX
  217. config MACH_NOKIA_RM680
  218. bool "Nokia RM-680 board"
  219. depends on ARCH_OMAP3
  220. default y
  221. select OMAP_PACKAGE_CBB
  222. config MACH_NOKIA_RX51
  223. bool "Nokia RX-51 board"
  224. depends on ARCH_OMAP3
  225. default y
  226. select OMAP_PACKAGE_CBB
  227. config MACH_OMAP_ZOOM2
  228. bool "OMAP3 Zoom2 board"
  229. depends on ARCH_OMAP3
  230. default y
  231. select OMAP_PACKAGE_CBB
  232. select SERIAL_8250
  233. select SERIAL_CORE_CONSOLE
  234. select SERIAL_8250_CONSOLE
  235. select REGULATOR_FIXED_VOLTAGE if REGULATOR
  236. config MACH_OMAP_ZOOM3
  237. bool "OMAP3630 Zoom3 board"
  238. depends on ARCH_OMAP3
  239. default y
  240. select OMAP_PACKAGE_CBP
  241. select SERIAL_8250
  242. select SERIAL_CORE_CONSOLE
  243. select SERIAL_8250_CONSOLE
  244. select REGULATOR_FIXED_VOLTAGE if REGULATOR
  245. config MACH_CM_T35
  246. bool "CompuLab CM-T35/CM-T3730 modules"
  247. depends on ARCH_OMAP3
  248. default y
  249. select MACH_CM_T3730
  250. select OMAP_PACKAGE_CUS
  251. config MACH_CM_T3517
  252. bool "CompuLab CM-T3517 module"
  253. depends on ARCH_OMAP3
  254. default y
  255. select OMAP_PACKAGE_CBB
  256. config MACH_CM_T3730
  257. bool
  258. config MACH_IGEP0020
  259. bool "IGEP v2 board"
  260. depends on ARCH_OMAP3
  261. default y
  262. select OMAP_PACKAGE_CBB
  263. config MACH_IGEP0030
  264. bool "IGEP OMAP3 module"
  265. depends on ARCH_OMAP3
  266. default y
  267. select OMAP_PACKAGE_CBB
  268. select MACH_IGEP0020
  269. config MACH_SBC3530
  270. bool "OMAP3 SBC STALKER board"
  271. depends on ARCH_OMAP3
  272. default y
  273. select OMAP_PACKAGE_CUS
  274. config MACH_OMAP_3630SDP
  275. bool "OMAP3630 SDP board"
  276. depends on ARCH_OMAP3
  277. default y
  278. select OMAP_PACKAGE_CBP
  279. config MACH_TI8168EVM
  280. bool "TI8168 Evaluation Module"
  281. depends on SOC_OMAPTI81XX
  282. default y
  283. config MACH_TI8148EVM
  284. bool "TI8148 Evaluation Module"
  285. depends on SOC_OMAPTI81XX
  286. default y
  287. config MACH_OMAP_4430SDP
  288. bool "OMAP 4430 SDP board"
  289. default y
  290. depends on ARCH_OMAP4
  291. select OMAP_PACKAGE_CBL
  292. select OMAP_PACKAGE_CBS
  293. select REGULATOR_FIXED_VOLTAGE if REGULATOR
  294. config MACH_OMAP4_PANDA
  295. bool "OMAP4 Panda Board"
  296. default y
  297. depends on ARCH_OMAP4
  298. select OMAP_PACKAGE_CBL
  299. select OMAP_PACKAGE_CBS
  300. select REGULATOR_FIXED_VOLTAGE if REGULATOR
  301. endif
  302. config OMAP3_EMU
  303. bool "OMAP3 debugging peripherals"
  304. depends on ARCH_OMAP3
  305. select ARM_AMBA
  306. select OC_ETM
  307. help
  308. Say Y here to enable debugging hardware of omap3
  309. config OMAP3_SDRC_AC_TIMING
  310. bool "Enable SDRC AC timing register changes"
  311. depends on ARCH_OMAP3
  312. default n
  313. help
  314. If you know that none of your system initiators will attempt to
  315. access SDRAM during CORE DVFS, select Y here. This should boost
  316. SDRAM performance at lower CORE OPPs. There are relatively few
  317. users who will wish to say yes at this point - almost everyone will
  318. wish to say no. Selecting yes without understanding what is
  319. going on could result in system crashes;
  320. config OMAP4_ERRATA_I688
  321. bool "OMAP4 errata: Async Bridge Corruption (BROKEN)"
  322. depends on ARCH_OMAP4 && BROKEN
  323. select ARCH_HAS_BARRIERS
  324. help
  325. If a data is stalled inside asynchronous bridge because of back
  326. pressure, it may be accepted multiple times, creating pointer
  327. misalignment that will corrupt next transfers on that data path
  328. until next reset of the system (No recovery procedure once the
  329. issue is hit, the path remains consistently broken). Async bridge
  330. can be found on path between MPU to EMIF and MPU to L3 interconnect.
  331. This situation can happen only when the idle is initiated by a
  332. Master Request Disconnection (which is trigged by software when
  333. executing WFI on CPU).
  334. The work-around for this errata needs all the initiators connected
  335. through async bridge must ensure that data path is properly drained
  336. before issuing WFI. This condition will be met if one Strongly ordered
  337. access is performed to the target right before executing the WFI.
  338. In MPU case, L3 T2ASYNC FIFO and DDR T2ASYNC FIFO needs to be drained.
  339. IO barrier ensure that there is no synchronisation loss on initiators
  340. operating on both interconnect port simultaneously.
  341. endmenu
  342. endif