Kconfig 9.0 KB

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