Kconfig 566 B

123456789101112131415161718192021222324252627
  1. menu "CCMU Devices"
  2. config DRIVERS_CCMU
  3. bool "enable ccmu driver"
  4. default y
  5. config DRIVERS_SUNXI_CLK
  6. bool "enable sunxi ccmu driver"
  7. depends on DRIVERS_CCMU
  8. default y
  9. config DRIVERS_SUNXI_CCU
  10. bool "enable sunxi-ng ccmu driver"
  11. depends on DRIVERS_CCMU
  12. default n
  13. config HAL_TEST_CLK
  14. bool "enable sunxi ccmu hal APIs test command"
  15. depends on DRIVERS_SUNXI_CLK
  16. default n
  17. config HAL_TEST_CCU
  18. bool "enable sunxi-ng ccmu hal APIs test command"
  19. depends on DRIVERS_SUNXI_CCU
  20. default n
  21. endmenu