Kconfig 2.7 KB

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