Kconfig 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. if ARCH_DAVINCI
  2. config AINTC
  3. bool
  4. config CP_INTC
  5. bool
  6. config ARCH_DAVINCI_DMx
  7. bool
  8. menu "TI DaVinci Implementations"
  9. comment "DaVinci Core Type"
  10. config ARCH_DAVINCI_DM644x
  11. bool "DaVinci 644x based system"
  12. select AINTC
  13. select ARCH_DAVINCI_DMx
  14. config ARCH_DAVINCI_DM355
  15. bool "DaVinci 355 based system"
  16. select AINTC
  17. select ARCH_DAVINCI_DMx
  18. config ARCH_DAVINCI_DM646x
  19. bool "DaVinci 646x based system"
  20. select AINTC
  21. select ARCH_DAVINCI_DMx
  22. config ARCH_DAVINCI_DA830
  23. bool "DA830/OMAP-L137 based system"
  24. select CP_INTC
  25. select ARCH_DAVINCI_DA8XX
  26. config ARCH_DAVINCI_DA850
  27. bool "DA850/OMAP-L138 based system"
  28. select CP_INTC
  29. select ARCH_DAVINCI_DA8XX
  30. select ARCH_HAS_CPUFREQ
  31. config ARCH_DAVINCI_DA8XX
  32. bool
  33. config ARCH_DAVINCI_DM365
  34. bool "DaVinci 365 based system"
  35. select AINTC
  36. select ARCH_DAVINCI_DMx
  37. comment "DaVinci Board Type"
  38. config MACH_DAVINCI_EVM
  39. bool "TI DM644x EVM"
  40. default ARCH_DAVINCI_DM644x
  41. depends on ARCH_DAVINCI_DM644x
  42. help
  43. Configure this option to specify the whether the board used
  44. for development is a DM644x EVM
  45. config MACH_SFFSDR
  46. bool "Lyrtech SFFSDR"
  47. depends on ARCH_DAVINCI_DM644x
  48. help
  49. Say Y here to select the Lyrtech Small Form Factor
  50. Software Defined Radio (SFFSDR) board.
  51. config MACH_DAVINCI_DM355_EVM
  52. bool "TI DM355 EVM"
  53. default ARCH_DAVINCI_DM355
  54. depends on ARCH_DAVINCI_DM355
  55. help
  56. Configure this option to specify the whether the board used
  57. for development is a DM355 EVM
  58. config MACH_DM355_LEOPARD
  59. bool "DM355 Leopard board"
  60. depends on ARCH_DAVINCI_DM355
  61. help
  62. Configure this option to specify the whether the board used
  63. for development is a DM355 Leopard board.
  64. config MACH_DAVINCI_DM6467_EVM
  65. bool "TI DM6467 EVM"
  66. default ARCH_DAVINCI_DM646x
  67. depends on ARCH_DAVINCI_DM646x
  68. help
  69. Configure this option to specify the whether the board used
  70. for development is a DM6467 EVM
  71. config MACH_DAVINCI_DM365_EVM
  72. bool "TI DM365 EVM"
  73. default ARCH_DAVINCI_DM365
  74. depends on ARCH_DAVINCI_DM365
  75. help
  76. Configure this option to specify whether the board used
  77. for development is a DM365 EVM
  78. config MACH_DAVINCI_DA830_EVM
  79. bool "TI DA830/OMAP-L137 Reference Platform"
  80. default ARCH_DAVINCI_DA830
  81. depends on ARCH_DAVINCI_DA830
  82. help
  83. Say Y here to select the TI DA830/OMAP-L137 Evaluation Module.
  84. config DA830_UI
  85. bool "DA830/OMAP-L137 UI (User Interface) board support"
  86. depends on MACH_DAVINCI_DA830_EVM
  87. help
  88. Say Y here if you have the DA830/OMAP-L137 UI
  89. (User Interface) board installed and you want to
  90. enable the peripherals located on User Interface
  91. board.
  92. choice
  93. prompt "Select DA830/OMAP-L137 UI board peripheral"
  94. depends on DA830_UI
  95. config DA830_UI_LCD
  96. bool "LCD"
  97. help
  98. Say Y here to use the LCD as a framebuffer or simple character
  99. display.
  100. endchoice
  101. config MACH_DAVINCI_DA850_EVM
  102. bool "TI DA850/OMAP-L138 Reference Platform"
  103. default ARCH_DAVINCI_DA850
  104. depends on ARCH_DAVINCI_DA850
  105. help
  106. Say Y here to select the TI DA850/OMAP-L138 Evaluation Module.
  107. config DAVINCI_MUX
  108. bool "DAVINCI multiplexing support"
  109. depends on ARCH_DAVINCI
  110. default y
  111. help
  112. Pin multiplexing support for DAVINCI boards. If your bootloader
  113. sets the multiplexing correctly, say N. Otherwise, or if unsure,
  114. say Y.
  115. config DAVINCI_MUX_DEBUG
  116. bool "Multiplexing debug output"
  117. depends on DAVINCI_MUX
  118. help
  119. Makes the multiplexing functions print out a lot of debug info.
  120. This is useful if you want to find out the correct values of the
  121. multiplexing registers.
  122. config DAVINCI_MUX_WARNINGS
  123. bool "Warn about pins the bootloader didn't set up"
  124. depends on DAVINCI_MUX
  125. help
  126. Choose Y here to warn whenever driver initialization logic needs
  127. to change the pin multiplexing setup. When there are no warnings
  128. printed, it's safe to deselect DAVINCI_MUX for your product.
  129. config DAVINCI_RESET_CLOCKS
  130. bool "Reset unused clocks during boot"
  131. depends on ARCH_DAVINCI
  132. help
  133. Say Y if you want to reset unused clocks during boot.
  134. This option saves power, but assumes all drivers are
  135. using the clock framework. Broken drivers that do not
  136. yet use clock framework may not work with this option.
  137. If you are booting from another operating system, you
  138. probably do not want this option enabled until your
  139. device drivers work properly.
  140. endmenu
  141. endif