Kconfig 8.5 KB

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