Kconfig 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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. config ARCH_DAVINCI_DA8XX
  31. bool
  32. config ARCH_DAVINCI_DM365
  33. bool "DaVinci 365 based system"
  34. select AINTC
  35. select ARCH_DAVINCI_DMx
  36. comment "DaVinci Board Type"
  37. config MACH_DAVINCI_EVM
  38. bool "TI DM644x EVM"
  39. default ARCH_DAVINCI_DM644x
  40. depends on ARCH_DAVINCI_DM644x
  41. help
  42. Configure this option to specify the whether the board used
  43. for development is a DM644x EVM
  44. config MACH_SFFSDR
  45. bool "Lyrtech SFFSDR"
  46. depends on ARCH_DAVINCI_DM644x
  47. help
  48. Say Y here to select the Lyrtech Small Form Factor
  49. Software Defined Radio (SFFSDR) board.
  50. config MACH_DAVINCI_DM355_EVM
  51. bool "TI DM355 EVM"
  52. default ARCH_DAVINCI_DM355
  53. depends on ARCH_DAVINCI_DM355
  54. help
  55. Configure this option to specify the whether the board used
  56. for development is a DM355 EVM
  57. config MACH_DM355_LEOPARD
  58. bool "DM355 Leopard board"
  59. depends on ARCH_DAVINCI_DM355
  60. help
  61. Configure this option to specify the whether the board used
  62. for development is a DM355 Leopard board.
  63. config MACH_DAVINCI_DM6467_EVM
  64. bool "TI DM6467 EVM"
  65. default ARCH_DAVINCI_DM646x
  66. depends on ARCH_DAVINCI_DM646x
  67. help
  68. Configure this option to specify the whether the board used
  69. for development is a DM6467 EVM
  70. config MACH_DAVINCI_DM365_EVM
  71. bool "TI DM365 EVM"
  72. default ARCH_DAVINCI_DM365
  73. depends on ARCH_DAVINCI_DM365
  74. help
  75. Configure this option to specify whether the board used
  76. for development is a DM365 EVM
  77. config MACH_DAVINCI_DA830_EVM
  78. bool "TI DA830/OMAP-L137 Reference Platform"
  79. default ARCH_DAVINCI_DA830
  80. depends on ARCH_DAVINCI_DA830
  81. help
  82. Say Y here to select the TI DA830/OMAP-L137 Evaluation Module.
  83. config MACH_DAVINCI_DA850_EVM
  84. bool "TI DA850/OMAP-L138 Reference Platform"
  85. default ARCH_DAVINCI_DA850
  86. depends on ARCH_DAVINCI_DA850
  87. help
  88. Say Y here to select the TI DA850/OMAP-L138 Evaluation Module.
  89. config DAVINCI_MUX
  90. bool "DAVINCI multiplexing support"
  91. depends on ARCH_DAVINCI
  92. default y
  93. help
  94. Pin multiplexing support for DAVINCI boards. If your bootloader
  95. sets the multiplexing correctly, say N. Otherwise, or if unsure,
  96. say Y.
  97. config DAVINCI_MUX_DEBUG
  98. bool "Multiplexing debug output"
  99. depends on DAVINCI_MUX
  100. help
  101. Makes the multiplexing functions print out a lot of debug info.
  102. This is useful if you want to find out the correct values of the
  103. multiplexing registers.
  104. config DAVINCI_MUX_WARNINGS
  105. bool "Warn about pins the bootloader didn't set up"
  106. depends on DAVINCI_MUX
  107. help
  108. Choose Y here to warn whenever driver initialization logic needs
  109. to change the pin multiplexing setup. When there are no warnings
  110. printed, it's safe to deselect DAVINCI_MUX for your product.
  111. config DAVINCI_RESET_CLOCKS
  112. bool "Reset unused clocks during boot"
  113. depends on ARCH_DAVINCI
  114. help
  115. Say Y if you want to reset unused clocks during boot.
  116. This option saves power, but assumes all drivers are
  117. using the clock framework. Broken drivers that do not
  118. yet use clock framework may not work with this option.
  119. If you are booting from another operating system, you
  120. probably do not want this option enabled until your
  121. device drivers work properly.
  122. endmenu
  123. endif