Kconfig 9.7 KB

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