Kconfig 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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 MACH_SFFSDR
  17. bool "Lyrtech SFFSDR"
  18. default n
  19. depends on ARCH_DAVINCI_DM644x
  20. help
  21. Say Y here to select the Lyrtech Small Form Factor
  22. Software Defined Radio (SFFSDR) board.
  23. config DAVINCI_MUX
  24. bool "DAVINCI multiplexing support"
  25. depends on ARCH_DAVINCI
  26. default y
  27. help
  28. Pin multiplexing support for DAVINCI boards. If your bootloader
  29. sets the multiplexing correctly, say N. Otherwise, or if unsure,
  30. say Y.
  31. config DAVINCI_MUX_DEBUG
  32. bool "Multiplexing debug output"
  33. depends on DAVINCI_MUX
  34. help
  35. Makes the multiplexing functions print out a lot of debug info.
  36. This is useful if you want to find out the correct values of the
  37. multiplexing registers.
  38. config DAVINCI_MUX_WARNINGS
  39. bool "Warn about pins the bootloader didn't set up"
  40. depends on DAVINCI_MUX
  41. help
  42. Choose Y here to warn whenever driver initialization logic needs
  43. to change the pin multiplexing setup. When there are no warnings
  44. printed, it's safe to deselect DAVINCI_MUX for your product.
  45. config DAVINCI_RESET_CLOCKS
  46. bool "Reset unused clocks during boot"
  47. depends on ARCH_DAVINCI
  48. help
  49. Say Y if you want to reset unused clocks during boot.
  50. This option saves power, but assumes all drivers are
  51. using the clock framework. Broken drivers that do not
  52. yet use clock framework may not work with this option.
  53. If you are booting from another operating system, you
  54. probably do not want this option enabled until your
  55. device drivers work properly.
  56. endmenu
  57. endif