Kconfig 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. if ARCH_DAVINCI
  2. config AINTC
  3. bool
  4. config CP_INTC
  5. bool
  6. menu "TI DaVinci Implementations"
  7. comment "DaVinci Core Type"
  8. config ARCH_DAVINCI_DM644x
  9. bool "DaVinci 644x based system"
  10. select AINTC
  11. config ARCH_DAVINCI_DM355
  12. bool "DaVinci 355 based system"
  13. select AINTC
  14. config ARCH_DAVINCI_DM646x
  15. bool "DaVinci 646x based system"
  16. select AINTC
  17. config ARCH_DAVINCI_DM365
  18. bool "DaVinci 365 based system"
  19. select AINTC
  20. select ARCH_DAVINCI_DMx
  21. comment "DaVinci Board Type"
  22. config MACH_DAVINCI_EVM
  23. bool "TI DM644x EVM"
  24. default ARCH_DAVINCI_DM644x
  25. depends on ARCH_DAVINCI_DM644x
  26. help
  27. Configure this option to specify the whether the board used
  28. for development is a DM644x EVM
  29. config MACH_SFFSDR
  30. bool "Lyrtech SFFSDR"
  31. depends on ARCH_DAVINCI_DM644x
  32. help
  33. Say Y here to select the Lyrtech Small Form Factor
  34. Software Defined Radio (SFFSDR) board.
  35. config MACH_DAVINCI_DM355_EVM
  36. bool "TI DM355 EVM"
  37. default ARCH_DAVINCI_DM355
  38. depends on ARCH_DAVINCI_DM355
  39. help
  40. Configure this option to specify the whether the board used
  41. for development is a DM355 EVM
  42. config MACH_DM355_LEOPARD
  43. bool "DM355 Leopard board"
  44. depends on ARCH_DAVINCI_DM355
  45. help
  46. Configure this option to specify the whether the board used
  47. for development is a DM355 Leopard board.
  48. config MACH_DAVINCI_DM6467_EVM
  49. bool "TI DM6467 EVM"
  50. default ARCH_DAVINCI_DM646x
  51. depends on ARCH_DAVINCI_DM646x
  52. help
  53. Configure this option to specify the whether the board used
  54. for development is a DM6467 EVM
  55. config MACH_DAVINCI_DM365_EVM
  56. bool "TI DM365 EVM"
  57. default ARCH_DAVINCI_DM365
  58. depends on ARCH_DAVINCI_DM365
  59. help
  60. Configure this option to specify whether the board used
  61. for development is a DM365 EVM
  62. config DAVINCI_MUX
  63. bool "DAVINCI multiplexing support"
  64. depends on ARCH_DAVINCI
  65. default y
  66. help
  67. Pin multiplexing support for DAVINCI boards. If your bootloader
  68. sets the multiplexing correctly, say N. Otherwise, or if unsure,
  69. say Y.
  70. config DAVINCI_MUX_DEBUG
  71. bool "Multiplexing debug output"
  72. depends on DAVINCI_MUX
  73. help
  74. Makes the multiplexing functions print out a lot of debug info.
  75. This is useful if you want to find out the correct values of the
  76. multiplexing registers.
  77. config DAVINCI_MUX_WARNINGS
  78. bool "Warn about pins the bootloader didn't set up"
  79. depends on DAVINCI_MUX
  80. help
  81. Choose Y here to warn whenever driver initialization logic needs
  82. to change the pin multiplexing setup. When there are no warnings
  83. printed, it's safe to deselect DAVINCI_MUX for your product.
  84. config DAVINCI_RESET_CLOCKS
  85. bool "Reset unused clocks during boot"
  86. depends on ARCH_DAVINCI
  87. help
  88. Say Y if you want to reset unused clocks during boot.
  89. This option saves power, but assumes all drivers are
  90. using the clock framework. Broken drivers that do not
  91. yet use clock framework may not work with this option.
  92. If you are booting from another operating system, you
  93. probably do not want this option enabled until your
  94. device drivers work properly.
  95. endmenu
  96. endif