Kconfig 2.6 KB

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