Kconfig 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  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 SOC_BUS
  18. select SPARSE_IRQ
  19. select USE_OF
  20. help
  21. Systems based on OMAP2, OMAP3, OMAP4 or OMAP5
  22. if ARCH_OMAP2PLUS
  23. menu "TI OMAP2/3/4 Specific Features"
  24. config ARCH_OMAP2PLUS_TYPICAL
  25. bool "Typical OMAP configuration"
  26. default y
  27. select AEABI
  28. select HIGHMEM
  29. select I2C
  30. select I2C_OMAP
  31. select MENELAUS if ARCH_OMAP2
  32. select NEON if ARCH_OMAP3 || ARCH_OMAP4 || SOC_OMAP5
  33. select PM_RUNTIME
  34. select REGULATOR
  35. select TWL4030_CORE if ARCH_OMAP3 || ARCH_OMAP4
  36. select TWL4030_POWER if ARCH_OMAP3 || ARCH_OMAP4
  37. select VFP
  38. help
  39. Compile a kernel suitable for booting most boards
  40. config SOC_HAS_OMAP2_SDRC
  41. bool "OMAP2 SDRAM Controller support"
  42. config SOC_HAS_REALTIME_COUNTER
  43. bool "Real time free running counter"
  44. depends on SOC_OMAP5
  45. default y
  46. config ARCH_OMAP2
  47. bool "TI OMAP2"
  48. depends on ARCH_OMAP2PLUS
  49. depends on ARCH_MULTI_V6
  50. default y
  51. select CPU_V6
  52. select MULTI_IRQ_HANDLER
  53. select SOC_HAS_OMAP2_SDRC
  54. select COMMON_CLK
  55. config ARCH_OMAP3
  56. bool "TI OMAP3"
  57. depends on ARCH_OMAP2PLUS
  58. depends on ARCH_MULTI_V7
  59. default y
  60. select ARCH_HAS_OPP
  61. select ARM_CPU_SUSPEND if PM
  62. select CPU_V7
  63. select MULTI_IRQ_HANDLER
  64. select OMAP_INTERCONNECT
  65. select PM_OPP if PM
  66. select PM_RUNTIME if CPU_IDLE
  67. select SOC_HAS_OMAP2_SDRC
  68. select COMMON_CLK
  69. select USB_ARCH_HAS_EHCI if USB_SUPPORT
  70. config ARCH_OMAP4
  71. bool "TI OMAP4"
  72. default y
  73. depends on ARCH_OMAP2PLUS
  74. depends on ARCH_MULTI_V7
  75. select ARCH_HAS_OPP
  76. select ARCH_NEEDS_CPU_IDLE_COUPLED if SMP
  77. select ARM_CPU_SUSPEND if PM
  78. select ARM_ERRATA_720789
  79. select ARM_GIC
  80. select CACHE_L2X0
  81. select CPU_V7
  82. select HAVE_ARM_SCU if SMP
  83. select HAVE_ARM_TWD if LOCAL_TIMERS
  84. select HAVE_SMP
  85. select LOCAL_TIMERS if SMP
  86. select OMAP_INTERCONNECT
  87. select PL310_ERRATA_588369
  88. select PL310_ERRATA_727915
  89. select PM_OPP if PM
  90. select PM_RUNTIME if CPU_IDLE
  91. select USB_ARCH_HAS_EHCI if USB_SUPPORT
  92. select COMMON_CLK
  93. select ARM_ERRATA_754322
  94. select ARM_ERRATA_775420
  95. config SOC_OMAP5
  96. bool "TI OMAP5"
  97. depends on ARCH_MULTI_V7
  98. select ARM_CPU_SUSPEND if PM
  99. select ARM_GIC
  100. select CPU_V7
  101. select HAVE_SMP
  102. select COMMON_CLK
  103. select HAVE_ARM_ARCH_TIMER
  104. comment "OMAP Core Type"
  105. depends on ARCH_OMAP2
  106. config SOC_OMAP2420
  107. bool "OMAP2420 support"
  108. depends on ARCH_OMAP2
  109. default y
  110. select OMAP_DM_TIMER
  111. select SOC_HAS_OMAP2_SDRC
  112. config SOC_OMAP2430
  113. bool "OMAP2430 support"
  114. depends on ARCH_OMAP2
  115. default y
  116. select SOC_HAS_OMAP2_SDRC
  117. config SOC_OMAP3430
  118. bool "OMAP3430 support"
  119. depends on ARCH_OMAP3
  120. default y
  121. select SOC_HAS_OMAP2_SDRC
  122. config SOC_TI81XX
  123. bool "TI81XX support"
  124. depends on ARCH_OMAP3
  125. default y
  126. config SOC_AM33XX
  127. bool "AM33XX support"
  128. depends on ARCH_MULTI_V7
  129. default y
  130. select ARM_CPU_SUSPEND if PM
  131. select CPU_V7
  132. select MULTI_IRQ_HANDLER
  133. select COMMON_CLK
  134. config OMAP_PACKAGE_ZAF
  135. bool
  136. config OMAP_PACKAGE_ZAC
  137. bool
  138. config OMAP_PACKAGE_CBC
  139. bool
  140. config OMAP_PACKAGE_CBB
  141. bool
  142. config OMAP_PACKAGE_CUS
  143. bool
  144. config OMAP_PACKAGE_CBP
  145. bool
  146. comment "OMAP Board Type"
  147. depends on ARCH_OMAP2PLUS
  148. config MACH_OMAP_GENERIC
  149. bool "Generic OMAP2+ board"
  150. depends on ARCH_OMAP2PLUS
  151. default y
  152. help
  153. Support for generic TI OMAP2+ boards using Flattened Device Tree.
  154. More information at Documentation/devicetree
  155. config MACH_OMAP2_TUSB6010
  156. bool
  157. depends on ARCH_OMAP2 && SOC_OMAP2420
  158. default y if MACH_NOKIA_N8X0
  159. config MACH_OMAP_H4
  160. bool "OMAP 2420 H4 board"
  161. depends on SOC_OMAP2420
  162. default y
  163. select OMAP_DEBUG_DEVICES
  164. select OMAP_PACKAGE_ZAF
  165. config MACH_OMAP_2430SDP
  166. bool "OMAP 2430 SDP board"
  167. depends on SOC_OMAP2430
  168. default y
  169. select OMAP_PACKAGE_ZAC
  170. config MACH_OMAP3_BEAGLE
  171. bool "OMAP3 BEAGLE board"
  172. depends on ARCH_OMAP3
  173. default y
  174. select OMAP_PACKAGE_CBB
  175. config MACH_DEVKIT8000
  176. bool "DEVKIT8000 board"
  177. depends on ARCH_OMAP3
  178. default y
  179. select OMAP_PACKAGE_CUS
  180. config MACH_OMAP_LDP
  181. bool "OMAP3 LDP board"
  182. depends on ARCH_OMAP3
  183. default y
  184. select OMAP_PACKAGE_CBB
  185. config MACH_OMAP3530_LV_SOM
  186. bool "OMAP3 Logic 3530 LV SOM board"
  187. depends on ARCH_OMAP3
  188. default y
  189. select OMAP_PACKAGE_CBB
  190. help
  191. Support for the LogicPD OMAP3530 SOM Development kit
  192. for full description please see the products webpage at
  193. http://www.logicpd.com/products/development-kits/texas-instruments-zoom%E2%84%A2-omap35x-development-kit
  194. config MACH_OMAP3_TORPEDO
  195. bool "OMAP3 Logic 35x Torpedo board"
  196. depends on ARCH_OMAP3
  197. default y
  198. select OMAP_PACKAGE_CBB
  199. help
  200. Support for the LogicPD OMAP35x Torpedo Development kit
  201. for full description please see the products webpage at
  202. http://www.logicpd.com/products/development-kits/zoom-omap35x-torpedo-development-kit
  203. config MACH_OVERO
  204. bool "Gumstix Overo board"
  205. depends on ARCH_OMAP3
  206. default y
  207. select OMAP_PACKAGE_CBB
  208. config MACH_OMAP3EVM
  209. bool "OMAP 3530 EVM board"
  210. depends on ARCH_OMAP3
  211. default y
  212. select OMAP_PACKAGE_CBB
  213. config MACH_OMAP3517EVM
  214. bool "OMAP3517/ AM3517 EVM board"
  215. depends on ARCH_OMAP3
  216. default y
  217. select OMAP_PACKAGE_CBB
  218. config MACH_CRANEBOARD
  219. bool "AM3517/05 CRANE board"
  220. depends on ARCH_OMAP3
  221. select OMAP_PACKAGE_CBB
  222. config MACH_OMAP3_PANDORA
  223. bool "OMAP3 Pandora"
  224. depends on ARCH_OMAP3
  225. default y
  226. select OMAP_PACKAGE_CBB
  227. select REGULATOR_FIXED_VOLTAGE if REGULATOR
  228. config MACH_TOUCHBOOK
  229. bool "OMAP3 Touch Book"
  230. depends on ARCH_OMAP3
  231. default y
  232. select OMAP_PACKAGE_CBB
  233. config MACH_OMAP_3430SDP
  234. bool "OMAP 3430 SDP board"
  235. depends on ARCH_OMAP3
  236. default y
  237. select OMAP_PACKAGE_CBB
  238. config MACH_NOKIA_N800
  239. bool
  240. config MACH_NOKIA_N810
  241. bool
  242. config MACH_NOKIA_N810_WIMAX
  243. bool
  244. config MACH_NOKIA_N8X0
  245. bool "Nokia N800/N810"
  246. depends on SOC_OMAP2420
  247. default y
  248. select MACH_NOKIA_N800
  249. select MACH_NOKIA_N810
  250. select MACH_NOKIA_N810_WIMAX
  251. select OMAP_PACKAGE_ZAC
  252. config MACH_NOKIA_RM680
  253. bool "Nokia N950 (RM-680) / N9 (RM-696) phones"
  254. depends on ARCH_OMAP3
  255. default y
  256. select MACH_NOKIA_RM696
  257. select OMAP_PACKAGE_CBB
  258. config MACH_NOKIA_RX51
  259. bool "Nokia N900 (RX-51) phone"
  260. depends on ARCH_OMAP3
  261. default y
  262. select OMAP_PACKAGE_CBB
  263. config MACH_OMAP_ZOOM2
  264. bool "OMAP3 Zoom2 board"
  265. depends on ARCH_OMAP3
  266. default y
  267. select OMAP_PACKAGE_CBB
  268. select REGULATOR_FIXED_VOLTAGE if REGULATOR
  269. config MACH_OMAP_ZOOM3
  270. bool "OMAP3630 Zoom3 board"
  271. depends on ARCH_OMAP3
  272. default y
  273. select OMAP_PACKAGE_CBP
  274. select REGULATOR_FIXED_VOLTAGE if REGULATOR
  275. config MACH_CM_T35
  276. bool "CompuLab CM-T35/CM-T3730 modules"
  277. depends on ARCH_OMAP3
  278. default y
  279. select MACH_CM_T3730
  280. select OMAP_PACKAGE_CUS
  281. config MACH_CM_T3517
  282. bool "CompuLab CM-T3517 module"
  283. depends on ARCH_OMAP3
  284. default y
  285. select OMAP_PACKAGE_CBB
  286. config MACH_CM_T3730
  287. bool
  288. config MACH_IGEP0020
  289. bool "IGEP v2 board"
  290. depends on ARCH_OMAP3
  291. default y
  292. select OMAP_PACKAGE_CBB
  293. config MACH_IGEP0030
  294. bool "IGEP OMAP3 module"
  295. depends on ARCH_OMAP3
  296. default y
  297. select MACH_IGEP0020
  298. select OMAP_PACKAGE_CBB
  299. config MACH_SBC3530
  300. bool "OMAP3 SBC STALKER board"
  301. depends on ARCH_OMAP3
  302. default y
  303. select OMAP_PACKAGE_CUS
  304. config MACH_OMAP_3630SDP
  305. bool "OMAP3630 SDP board"
  306. depends on ARCH_OMAP3
  307. default y
  308. select OMAP_PACKAGE_CBP
  309. config MACH_TI8168EVM
  310. bool "TI8168 Evaluation Module"
  311. depends on SOC_TI81XX
  312. default y
  313. config MACH_TI8148EVM
  314. bool "TI8148 Evaluation Module"
  315. depends on SOC_TI81XX
  316. default y
  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 || SOC_OMAP5) && !ARCH_MULTIPLATFORM
  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