Kconfig 862 B

1234567891011121314151617181920212223242526272829303132333435
  1. if ARCH_DAVINCI
  2. menu "TI DaVinci Implementations"
  3. comment "DaVinci Core Type"
  4. config ARCH_DAVINCI644x
  5. default y
  6. bool "DaVinci 644x based system"
  7. comment "DaVinci Board Type"
  8. config MACH_DAVINCI_EVM
  9. bool "TI DaVinci EVM"
  10. default y
  11. depends on ARCH_DAVINCI644x
  12. help
  13. Configure this option to specify the whether the board used
  14. for development is a DaVinci EVM
  15. config DAVINCI_RESET_CLOCKS
  16. bool "Reset unused clocks during boot"
  17. depends on ARCH_DAVINCI
  18. help
  19. Say Y if you want to reset unused clocks during boot.
  20. This option saves power, but assumes all drivers are
  21. using the clock framework. Broken drivers that do not
  22. yet use clock framework may not work with this option.
  23. If you are booting from another operating system, you
  24. probably do not want this option enabled until your
  25. device drivers work properly.
  26. endmenu
  27. endif