Kconfig 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. menuconfig CLK_SUNXI
  3. bool "Legacy clock support for Allwinner SoCs"
  4. depends on (ARM && ARCH_SUNXI) || COMPILE_TEST
  5. default y
  6. if CLK_SUNXI
  7. config CLK_SUNXI_CLOCKS
  8. bool "Legacy clock drivers"
  9. default y
  10. help
  11. Legacy clock drivers being used on older (A10, A13, A20,
  12. A23, A31, A80) SoCs. These drivers are kept around for
  13. Device Tree backward compatibility issues, in case one would
  14. still use a Device Tree with one clock provider by
  15. node. Newer Device Trees and newer SoCs use the drivers
  16. controlled by CONFIG_SUNXI_CCU.
  17. config CLK_SUNXI_PRCM_SUN6I
  18. bool "Legacy A31 PRCM driver"
  19. default y
  20. help
  21. Legacy clock driver for the A31 PRCM clocks. Those are
  22. usually needed for the PMIC communication, mostly.
  23. config CLK_SUNXI_PRCM_SUN8I
  24. bool "Legacy sun8i PRCM driver"
  25. default y
  26. help
  27. Legacy clock driver for the sun8i family PRCM clocks.
  28. Those are usually needed for the PMIC communication,
  29. mostly.
  30. config CLK_SUNXI_PRCM_SUN9I
  31. bool "Legacy A80 PRCM driver"
  32. default y
  33. help
  34. Legacy clock driver for the A80 PRCM clocks. Those are
  35. usually needed for the PMIC communication, mostly.
  36. endif