Kconfig 2.7 KB

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