Kconfig 8.5 KB

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