Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0577e485 authored by Maxime Ripard's avatar Maxime Ripard Committed by Michael Turquette
Browse files

clk: sunxi-ng: Add H3 clocks



Add the list of clocks and resets found in the H3 CCU.

Signed-off-by: default avatarMaxime Ripard <maxime.ripard@free-electrons.com>
Signed-off-by: default avatarMichael Turquette <mturquette@baylibre.com>
Link: lkml.kernel.org/r/20160629190535.11855-14-maxime.ripard@free-electrons.com
parent 4f728b5d
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
@@ -49,4 +49,17 @@ config SUNXI_CCU_MP
	select SUNXI_CCU_GATE
	select SUNXI_CCU_MUX

# SoC Drivers

config SUN8I_H3_CCU
	bool "Support for the Allwinner H3 CCU"
	select SUNXI_CCU_DIV
	select SUNXI_CCU_NK
	select SUNXI_CCU_NKM
	select SUNXI_CCU_NKMP
	select SUNXI_CCU_NM
	select SUNXI_CCU_MP
	select SUNXI_CCU_PHASE
	default ARCH_SUN8I

endif
+3 −0
Original line number Diff line number Diff line
@@ -15,3 +15,6 @@ obj-$(CONFIG_SUNXI_CCU_NKM) += ccu_nkm.o
obj-$(CONFIG_SUNXI_CCU_NKMP)	+= ccu_nkmp.o
obj-$(CONFIG_SUNXI_CCU_NM)	+= ccu_nm.o
obj-$(CONFIG_SUNXI_CCU_MP)	+= ccu_mp.o

# SoC support
obj-$(CONFIG_SUN8I_H3_CCU)	+= ccu-sun8i-h3.o
Loading