Kconfig 2.7 KB

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