diff options
author | Jagan Teki <jagan@amarulasolutions.com> | 2018-12-22 21:32:49 +0530 |
---|---|---|
committer | Jagan Teki <jagan@amarulasolutions.com> | 2019-01-18 22:19:08 +0530 |
commit | 0d47bc70565102388c957ead7deac4b2eaa3dfba (patch) | |
tree | fb27c512d1340064464bc6aca8b46c5547b41d2f /drivers/clk/sunxi/Kconfig | |
parent | 7d659573cef7f0333e4cab1916197160abff1455 (diff) | |
download | u-boot-0d47bc70565102388c957ead7deac4b2eaa3dfba.tar.gz u-boot-0d47bc70565102388c957ead7deac4b2eaa3dfba.tar.xz u-boot-0d47bc70565102388c957ead7deac4b2eaa3dfba.zip |
clk: Add Allwinner A64 CLK driver
Add initial clock driver for Allwinner A64.
Implement USB clock enable and disable functions for
OHCI, EHCI, OTG and USBPHY gate and clock registers
via ccu clk gate table.
Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
Acked-by: Maxime Ripard <maxime.ripard@bootlin.com>
Diffstat (limited to 'drivers/clk/sunxi/Kconfig')
-rw-r--r-- | drivers/clk/sunxi/Kconfig | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/drivers/clk/sunxi/Kconfig b/drivers/clk/sunxi/Kconfig new file mode 100644 index 0000000000..bf5ecb3801 --- /dev/null +++ b/drivers/clk/sunxi/Kconfig @@ -0,0 +1,18 @@ +config CLK_SUNXI + bool "Clock support for Allwinner SoCs" + depends on CLK && ARCH_SUNXI + default y + help + This enables support for common clock driver API on Allwinner + SoCs. + +if CLK_SUNXI + +config CLK_SUN50I_A64 + bool "Clock driver for Allwinner A64" + default MACH_SUN50I + help + This enables common clock driver support for platforms based + on Allwinner A64 SoC. + +endif # CLK_SUNXI |