Kconfig 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. comment "DaVinci Board Type"
  9. config MACH_DAVINCI_EVM
  10. bool "TI DM644x EVM"
  11. default y
  12. depends on ARCH_DAVINCI_DM644x
  13. help
  14. Configure this option to specify the whether the board used
  15. for development is a DM644x EVM
  16. config DAVINCI_MUX
  17. bool "DAVINCI multiplexing support"
  18. depends on ARCH_DAVINCI
  19. default y
  20. help
  21. Pin multiplexing support for DAVINCI boards. If your bootloader
  22. sets the multiplexing correctly, say N. Otherwise, or if unsure,
  23. say Y.
  24. config DAVINCI_MUX_DEBUG
  25. bool "Multiplexing debug output"
  26. depends on DAVINCI_MUX
  27. help
  28. Makes the multiplexing functions print out a lot of debug info.
  29. This is useful if you want to find out the correct values of the
  30. multiplexing registers.
  31. config DAVINCI_MUX_WARNINGS
  32. bool "Warn about pins the bootloader didn't set up"
  33. depends on DAVINCI_MUX
  34. help
  35. Choose Y here to warn whenever driver initialization logic needs
  36. to change the pin multiplexing setup. When there are no warnings
  37. printed, it's safe to deselect DAVINCI_MUX for your product.
  38. config DAVINCI_RESET_CLOCKS
  39. bool "Reset unused clocks during boot"
  40. depends on ARCH_DAVINCI
  41. help
  42. Say Y if you want to reset unused clocks during boot.
  43. This option saves power, but assumes all drivers are
  44. using the clock framework. Broken drivers that do not
  45. yet use clock framework may not work with this option.
  46. If you are booting from another operating system, you
  47. probably do not want this option enabled until your
  48. device drivers work properly.
  49. endmenu
  50. endif