Kconfig 9.6 KB

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