Kconfig 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. if ARCH_DAVINCI
  2. config AINTC
  3. bool
  4. config CP_INTC
  5. select IRQ_DOMAIN
  6. bool
  7. config ARCH_DAVINCI_DMx
  8. select CPU_ARM926T
  9. bool
  10. menu "TI DaVinci Implementations"
  11. comment "DaVinci Core Type"
  12. config ARCH_DAVINCI_DM644x
  13. bool "DaVinci 644x based system"
  14. select AINTC
  15. select ARCH_DAVINCI_DMx
  16. config ARCH_DAVINCI_DM355
  17. bool "DaVinci 355 based system"
  18. select AINTC
  19. select ARCH_DAVINCI_DMx
  20. config ARCH_DAVINCI_DM646x
  21. bool "DaVinci 646x based system"
  22. select AINTC
  23. select ARCH_DAVINCI_DMx
  24. config ARCH_DAVINCI_DA830
  25. bool "DA830/OMAP-L137/AM17x based system"
  26. select CP_INTC
  27. select ARCH_DAVINCI_DA8XX
  28. select CPU_DCACHE_WRITETHROUGH # needed on silicon revs 1.0, 1.1
  29. config ARCH_DAVINCI_DA850
  30. bool "DA850/OMAP-L138/AM18x based system"
  31. select CP_INTC
  32. select ARCH_DAVINCI_DA8XX
  33. select ARCH_HAS_CPUFREQ
  34. config ARCH_DAVINCI_DA8XX
  35. select CPU_ARM926T
  36. bool
  37. config ARCH_DAVINCI_DM365
  38. bool "DaVinci 365 based system"
  39. select AINTC
  40. select ARCH_DAVINCI_DMx
  41. config ARCH_DAVINCI_TNETV107X
  42. select CPU_V6
  43. select CP_INTC
  44. bool "TNETV107X based system"
  45. comment "DaVinci Board Type"
  46. config MACH_DAVINCI_EVM
  47. bool "TI DM644x EVM"
  48. default ARCH_DAVINCI_DM644x
  49. depends on ARCH_DAVINCI_DM644x
  50. select MISC_DEVICES
  51. select EEPROM_AT24
  52. select I2C
  53. help
  54. Configure this option to specify the whether the board used
  55. for development is a DM644x EVM
  56. config MACH_SFFSDR
  57. bool "Lyrtech SFFSDR"
  58. depends on ARCH_DAVINCI_DM644x
  59. select MISC_DEVICES
  60. select EEPROM_AT24
  61. select I2C
  62. help
  63. Say Y here to select the Lyrtech Small Form Factor
  64. Software Defined Radio (SFFSDR) board.
  65. config MACH_NEUROS_OSD2
  66. bool "Neuros OSD2 Open Television Set Top Box"
  67. depends on ARCH_DAVINCI_DM644x
  68. help
  69. Configure this option to specify the whether the board used
  70. for development is a Neuros OSD2 Open Set Top Box.
  71. config MACH_DAVINCI_DM355_EVM
  72. bool "TI DM355 EVM"
  73. default ARCH_DAVINCI_DM355
  74. depends on ARCH_DAVINCI_DM355
  75. help
  76. Configure this option to specify the whether the board used
  77. for development is a DM355 EVM
  78. config MACH_DM355_LEOPARD
  79. bool "DM355 Leopard board"
  80. depends on ARCH_DAVINCI_DM355
  81. help
  82. Configure this option to specify the whether the board used
  83. for development is a DM355 Leopard board.
  84. config MACH_DAVINCI_DM6467_EVM
  85. bool "TI DM6467 EVM"
  86. default ARCH_DAVINCI_DM646x
  87. depends on ARCH_DAVINCI_DM646x
  88. select MACH_DAVINCI_DM6467TEVM
  89. select MISC_DEVICES
  90. select EEPROM_AT24
  91. select I2C
  92. help
  93. Configure this option to specify the whether the board used
  94. for development is a DM6467 EVM
  95. config MACH_DAVINCI_DM6467TEVM
  96. bool
  97. config MACH_DAVINCI_DM365_EVM
  98. bool "TI DM365 EVM"
  99. default ARCH_DAVINCI_DM365
  100. depends on ARCH_DAVINCI_DM365
  101. select MISC_DEVICES
  102. select EEPROM_AT24
  103. select I2C
  104. help
  105. Configure this option to specify whether the board used
  106. for development is a DM365 EVM
  107. config MACH_DAVINCI_DA830_EVM
  108. bool "TI DA830/OMAP-L137/AM17x Reference Platform"
  109. default ARCH_DAVINCI_DA830
  110. depends on ARCH_DAVINCI_DA830
  111. select GPIO_PCF857X
  112. select MISC_DEVICES
  113. select EEPROM_AT24
  114. select I2C
  115. help
  116. Say Y here to select the TI DA830/OMAP-L137/AM17x Evaluation Module.
  117. choice
  118. prompt "Select DA830/OMAP-L137/AM17x UI board peripheral"
  119. depends on MACH_DAVINCI_DA830_EVM
  120. help
  121. The presence of UI card on the DA830/OMAP-L137/AM17x EVM is
  122. detected automatically based on successful probe of the I2C
  123. based GPIO expander on that board. This option selected in this
  124. menu has an effect only in case of a successful UI card detection.
  125. config DA830_UI_LCD
  126. bool "LCD"
  127. help
  128. Say Y here to use the LCD as a framebuffer or simple character
  129. display.
  130. config DA830_UI_NAND
  131. bool "NAND flash"
  132. help
  133. Say Y here to use the NAND flash. Do not forget to setup
  134. the switch correctly.
  135. endchoice
  136. config MACH_DAVINCI_DA850_EVM
  137. bool "TI DA850/OMAP-L138/AM18x Reference Platform"
  138. default ARCH_DAVINCI_DA850
  139. depends on ARCH_DAVINCI_DA850
  140. help
  141. Say Y here to select the TI DA850/OMAP-L138/AM18x Evaluation Module.
  142. choice
  143. prompt "Select peripherals connected to expander on UI board"
  144. depends on MACH_DAVINCI_DA850_EVM
  145. help
  146. The presence of User Interface (UI) card on the DA850/OMAP-L138/AM18x
  147. EVM is detected automatically based on successful probe of the I2C
  148. based GPIO expander on that card. This option selected in this
  149. menu has an effect only in case of a successful UI card detection.
  150. config DA850_UI_NONE
  151. bool "No peripheral is enabled"
  152. help
  153. Say Y if you do not want to enable any of the peripherals connected
  154. to TCA6416 expander on DA850/OMAP-L138/AM18x EVM UI card
  155. config DA850_UI_RMII
  156. bool "RMII Ethernet PHY"
  157. help
  158. Say Y if you want to use the RMII PHY on the DA850/OMAP-L138/AM18x
  159. EVM. This PHY is found on the UI daughter card that is supplied with
  160. the EVM.
  161. NOTE: Please take care while choosing this option, MII PHY will
  162. not be functional if RMII mode is selected.
  163. endchoice
  164. config DA850_WL12XX
  165. bool "AM18x wl1271 daughter board"
  166. depends on MACH_DAVINCI_DA850_EVM
  167. help
  168. The wl1271 daughter card for AM18x EVMs is a combo wireless
  169. connectivity add-on card, based on the LS Research TiWi module with
  170. Texas Instruments' wl1271 solution.
  171. Say Y if you want to use a wl1271 expansion card connected to the
  172. AM18x EVM.
  173. config GPIO_PCA953X
  174. default MACH_DAVINCI_DA850_EVM
  175. config KEYBOARD_GPIO_POLLED
  176. default MACH_DAVINCI_DA850_EVM
  177. config MACH_TNETV107X
  178. bool "TI TNETV107X Reference Platform"
  179. default ARCH_DAVINCI_TNETV107X
  180. depends on ARCH_DAVINCI_TNETV107X
  181. help
  182. Say Y here to select the TI TNETV107X Evaluation Module.
  183. config MACH_MITYOMAPL138
  184. bool "Critical Link MityDSP-L138/MityARM-1808 SoM"
  185. depends on ARCH_DAVINCI_DA850
  186. select MISC_DEVICES
  187. select EEPROM_AT24
  188. select I2C
  189. help
  190. Say Y here to select the Critical Link MityDSP-L138/MityARM-1808
  191. System on Module. Information on this SoM may be found at
  192. http://www.mitydsp.com
  193. config MACH_OMAPL138_HAWKBOARD
  194. bool "TI AM1808 / OMAPL-138 Hawkboard platform"
  195. depends on ARCH_DAVINCI_DA850
  196. help
  197. Say Y here to select the TI AM1808 / OMAPL-138 Hawkboard platform .
  198. Information of this board may be found at
  199. http://www.hawkboard.org/
  200. config DAVINCI_MUX
  201. bool "DAVINCI multiplexing support"
  202. depends on ARCH_DAVINCI
  203. default y
  204. help
  205. Pin multiplexing support for DAVINCI boards. If your bootloader
  206. sets the multiplexing correctly, say N. Otherwise, or if unsure,
  207. say Y.
  208. config DAVINCI_MUX_DEBUG
  209. bool "Multiplexing debug output"
  210. depends on DAVINCI_MUX
  211. help
  212. Makes the multiplexing functions print out a lot of debug info.
  213. This is useful if you want to find out the correct values of the
  214. multiplexing registers.
  215. config DAVINCI_MUX_WARNINGS
  216. bool "Warn about pins the bootloader didn't set up"
  217. depends on DAVINCI_MUX
  218. help
  219. Choose Y here to warn whenever driver initialization logic needs
  220. to change the pin multiplexing setup. When there are no warnings
  221. printed, it's safe to deselect DAVINCI_MUX for your product.
  222. config DAVINCI_RESET_CLOCKS
  223. bool "Reset unused clocks during boot"
  224. depends on ARCH_DAVINCI
  225. help
  226. Say Y if you want to reset unused clocks during boot.
  227. This option saves power, but assumes all drivers are
  228. using the clock framework. Broken drivers that do not
  229. yet use clock framework may not work with this option.
  230. If you are booting from another operating system, you
  231. probably do not want this option enabled until your
  232. device drivers work properly.
  233. endmenu
  234. endif