Kconfig 1.7 KB

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