Kconfig 8.9 KB

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