Kconfig 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  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
  9. select PM_RUNTIME
  10. select VFP
  11. select NEON if ARCH_OMAP3 || ARCH_OMAP4
  12. select SERIAL_OMAP
  13. select SERIAL_OMAP_CONSOLE
  14. select I2C
  15. select I2C_OMAP
  16. select MFD
  17. select MENELAUS if ARCH_OMAP2
  18. select TWL4030_CORE if ARCH_OMAP3 || ARCH_OMAP4
  19. select TWL4030_POWER if ARCH_OMAP3 || ARCH_OMAP4
  20. help
  21. Compile a kernel suitable for booting most boards
  22. config ARCH_OMAP2
  23. bool "TI OMAP2"
  24. depends on ARCH_OMAP2PLUS
  25. default y
  26. select CPU_V6
  27. config ARCH_OMAP3
  28. bool "TI OMAP3"
  29. depends on ARCH_OMAP2PLUS
  30. default y
  31. select CPU_V7
  32. select USB_ARCH_HAS_EHCI
  33. select ARM_L1_CACHE_SHIFT_6 if !ARCH_OMAP4
  34. config ARCH_OMAP4
  35. bool "TI OMAP4"
  36. default y
  37. depends on ARCH_OMAP2PLUS
  38. select CPU_V7
  39. select ARM_GIC
  40. select PL310_ERRATA_588369
  41. select ARM_ERRATA_720789
  42. comment "OMAP Core Type"
  43. depends on ARCH_OMAP2
  44. config ARCH_OMAP2420
  45. bool "OMAP2420 support"
  46. depends on ARCH_OMAP2
  47. default y
  48. select OMAP_DM_TIMER
  49. select ARCH_OMAP_OTG
  50. config ARCH_OMAP2430
  51. bool "OMAP2430 support"
  52. depends on ARCH_OMAP2
  53. default y
  54. select ARCH_OMAP_OTG
  55. config ARCH_OMAP3430
  56. bool "OMAP3430 support"
  57. depends on ARCH_OMAP3
  58. default y
  59. select ARCH_OMAP_OTG
  60. config OMAP_PACKAGE_ZAF
  61. bool
  62. config OMAP_PACKAGE_ZAC
  63. bool
  64. config OMAP_PACKAGE_CBC
  65. bool
  66. config OMAP_PACKAGE_CBB
  67. bool
  68. config OMAP_PACKAGE_CUS
  69. bool
  70. config OMAP_PACKAGE_CBP
  71. bool
  72. config OMAP_PACKAGE_CBL
  73. bool
  74. comment "OMAP Board Type"
  75. depends on ARCH_OMAP2PLUS
  76. config MACH_OMAP_GENERIC
  77. bool "Generic OMAP board"
  78. depends on ARCH_OMAP2
  79. default y
  80. config MACH_OMAP2_TUSB6010
  81. bool
  82. depends on ARCH_OMAP2 && ARCH_OMAP2420
  83. default y if MACH_NOKIA_N8X0
  84. config MACH_OMAP_H4
  85. bool "OMAP 2420 H4 board"
  86. depends on ARCH_OMAP2420
  87. default y
  88. select OMAP_PACKAGE_ZAF
  89. select OMAP_DEBUG_DEVICES
  90. config MACH_OMAP_APOLLON
  91. bool "OMAP 2420 Apollon board"
  92. depends on ARCH_OMAP2420
  93. default y
  94. select OMAP_PACKAGE_ZAC
  95. config MACH_OMAP_2430SDP
  96. bool "OMAP 2430 SDP board"
  97. depends on ARCH_OMAP2430
  98. default y
  99. select OMAP_PACKAGE_ZAC
  100. config MACH_OMAP3_BEAGLE
  101. bool "OMAP3 BEAGLE board"
  102. depends on ARCH_OMAP3
  103. default y
  104. select OMAP_PACKAGE_CBB
  105. config MACH_DEVKIT8000
  106. bool "DEVKIT8000 board"
  107. depends on ARCH_OMAP3
  108. default y
  109. select OMAP_PACKAGE_CUS
  110. select OMAP_MUX
  111. config MACH_OMAP_LDP
  112. bool "OMAP3 LDP board"
  113. depends on ARCH_OMAP3
  114. default y
  115. select OMAP_PACKAGE_CBB
  116. config MACH_OMAP3530_LV_SOM
  117. bool "OMAP3 Logic 3530 LV SOM board"
  118. depends on ARCH_OMAP3
  119. select OMAP_PACKAGE_CBB
  120. default y
  121. help
  122. Support for the LogicPD OMAP3530 SOM Development kit
  123. for full description please see the products webpage at
  124. http://www.logicpd.com/products/development-kits/texas-instruments-zoom%E2%84%A2-omap35x-development-kit
  125. config MACH_OMAP3_TORPEDO
  126. bool "OMAP3 Logic 35x Torpedo board"
  127. depends on ARCH_OMAP3
  128. select OMAP_PACKAGE_CBB
  129. default y
  130. help
  131. Support for the LogicPD OMAP35x Torpedo Development kit
  132. for full description please see the products webpage at
  133. http://www.logicpd.com/products/development-kits/zoom-omap35x-torpedo-development-kit
  134. config MACH_OVERO
  135. bool "Gumstix Overo board"
  136. depends on ARCH_OMAP3
  137. default y
  138. select OMAP_PACKAGE_CBB
  139. config MACH_OMAP3EVM
  140. bool "OMAP 3530 EVM board"
  141. depends on ARCH_OMAP3
  142. default y
  143. select OMAP_PACKAGE_CBB
  144. config MACH_OMAP3517EVM
  145. bool "OMAP3517/ AM3517 EVM board"
  146. depends on ARCH_OMAP3
  147. default y
  148. select OMAP_PACKAGE_CBB
  149. config MACH_OMAP3_PANDORA
  150. bool "OMAP3 Pandora"
  151. depends on ARCH_OMAP3
  152. default y
  153. select OMAP_PACKAGE_CBB
  154. config MACH_OMAP3_TOUCHBOOK
  155. bool "OMAP3 Touch Book"
  156. depends on ARCH_OMAP3
  157. default y
  158. select BACKLIGHT_CLASS_DEVICE
  159. config MACH_OMAP_3430SDP
  160. bool "OMAP 3430 SDP board"
  161. depends on ARCH_OMAP3
  162. default y
  163. select OMAP_PACKAGE_CBB
  164. config MACH_NOKIA_N800
  165. bool
  166. config MACH_NOKIA_N810
  167. bool
  168. config MACH_NOKIA_N810_WIMAX
  169. bool
  170. config MACH_NOKIA_N8X0
  171. bool "Nokia N800/N810"
  172. depends on ARCH_OMAP2420
  173. default y
  174. select OMAP_PACKAGE_ZAC
  175. select MACH_NOKIA_N800
  176. select MACH_NOKIA_N810
  177. select MACH_NOKIA_N810_WIMAX
  178. config MACH_NOKIA_RX51
  179. bool "Nokia RX-51 board"
  180. depends on ARCH_OMAP3
  181. default y
  182. select OMAP_PACKAGE_CBB
  183. config MACH_OMAP_ZOOM2
  184. bool "OMAP3 Zoom2 board"
  185. depends on ARCH_OMAP3
  186. default y
  187. select OMAP_PACKAGE_CBB
  188. select SERIAL_8250
  189. select SERIAL_CORE_CONSOLE
  190. select SERIAL_8250_CONSOLE
  191. config MACH_OMAP_ZOOM3
  192. bool "OMAP3630 Zoom3 board"
  193. depends on ARCH_OMAP3
  194. default y
  195. select OMAP_PACKAGE_CBP
  196. select SERIAL_8250
  197. select SERIAL_CORE_CONSOLE
  198. select SERIAL_8250_CONSOLE
  199. config MACH_CM_T35
  200. bool "CompuLab CM-T35 module"
  201. depends on ARCH_OMAP3
  202. default y
  203. select OMAP_PACKAGE_CUS
  204. select OMAP_MUX
  205. config MACH_CM_T3517
  206. bool "CompuLab CM-T3517 module"
  207. depends on ARCH_OMAP3
  208. default y
  209. select OMAP_PACKAGE_CBB
  210. select OMAP_MUX
  211. config MACH_IGEP0020
  212. bool "IGEP v2 board"
  213. depends on ARCH_OMAP3
  214. default y
  215. select OMAP_PACKAGE_CBB
  216. config MACH_IGEP0030
  217. bool "IGEP OMAP3 module"
  218. depends on ARCH_OMAP3
  219. default y
  220. select OMAP_PACKAGE_CBB
  221. config MACH_SBC3530
  222. bool "OMAP3 SBC STALKER board"
  223. depends on ARCH_OMAP3
  224. default y
  225. select OMAP_PACKAGE_CUS
  226. select OMAP_MUX
  227. config MACH_OMAP_3630SDP
  228. bool "OMAP3630 SDP board"
  229. depends on ARCH_OMAP3
  230. default y
  231. select OMAP_PACKAGE_CBP
  232. config MACH_OMAP_4430SDP
  233. bool "OMAP 4430 SDP board"
  234. default y
  235. depends on ARCH_OMAP4
  236. select OMAP_PACKAGE_CBL
  237. config MACH_OMAP4_PANDA
  238. bool "OMAP4 Panda Board"
  239. default y
  240. depends on ARCH_OMAP4
  241. config OMAP3_EMU
  242. bool "OMAP3 debugging peripherals"
  243. depends on ARCH_OMAP3
  244. select OC_ETM
  245. help
  246. Say Y here to enable debugging hardware of omap3
  247. config OMAP3_SDRC_AC_TIMING
  248. bool "Enable SDRC AC timing register changes"
  249. depends on ARCH_OMAP3
  250. default n
  251. help
  252. If you know that none of your system initiators will attempt to
  253. access SDRAM during CORE DVFS, select Y here. This should boost
  254. SDRAM performance at lower CORE OPPs. There are relatively few
  255. users who will wish to say yes at this point - almost everyone will
  256. wish to say no. Selecting yes without understanding what is
  257. going on could result in system crashes;
  258. endmenu
  259. endif