mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 18:59:44 +00:00
3ab029368a
Add initial clock driver for Allwinner A23/A33. - Implement USB bus and USB clocks via ccu_clk_gate table for A23/A33, so it can accessed in common clk enable and disable functions from clk_sunxi.c - Implement USB bus and USB resets via ccu_reset table for A23/A33, so it can accessed in common reset deassert and assert functions from reset-sunxi.c Signed-off-by: Jagan Teki <jagan@amarulasolutions.com> Acked-by: Maxime Ripard <maxime.ripard@bootlin.com>
54 lines
1.3 KiB
Text
54 lines
1.3 KiB
Text
config CLK_SUNXI
|
|
bool "Clock support for Allwinner SoCs"
|
|
depends on CLK && ARCH_SUNXI
|
|
select DM_RESET
|
|
default y
|
|
help
|
|
This enables support for common clock driver API on Allwinner
|
|
SoCs.
|
|
|
|
if CLK_SUNXI
|
|
|
|
config CLK_SUN4I_A10
|
|
bool "Clock driver for Allwinner A10/A20"
|
|
default MACH_SUN4I || MACH_SUN7I
|
|
help
|
|
This enables common clock driver support for platforms based
|
|
on Allwinner A10/A20 SoC.
|
|
|
|
config CLK_SUN5I_A10S
|
|
bool "Clock driver for Allwinner A10s/A13"
|
|
default MACH_SUN5I
|
|
help
|
|
This enables common clock driver support for platforms based
|
|
on Allwinner A10s/A13 SoC.
|
|
|
|
config CLK_SUN6I_A31
|
|
bool "Clock driver for Allwinner A31/A31s"
|
|
default MACH_SUN6I
|
|
help
|
|
This enables common clock driver support for platforms based
|
|
on Allwinner A31/A31s SoC.
|
|
|
|
config CLK_SUN8I_A23
|
|
bool "Clock driver for Allwinner A23/A33"
|
|
default MACH_SUN8I_A23 || MACH_SUN8I_A33
|
|
help
|
|
This enables common clock driver support for platforms based
|
|
on Allwinner A23/A33 SoC.
|
|
|
|
config CLK_SUN8I_H3
|
|
bool "Clock driver for Allwinner H3/H5"
|
|
default MACH_SUNXI_H3_H5
|
|
help
|
|
This enables common clock driver support for platforms based
|
|
on Allwinner H3/H5 SoC.
|
|
|
|
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
|