Kconfig 9.2 KB

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