mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-17 11:46:51 +07:00
0577e4853b
Add the list of clocks and resets found in the H3 CCU. Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Signed-off-by: Michael Turquette <mturquette@baylibre.com> Link: lkml.kernel.org/r/20160629190535.11855-14-maxime.ripard@free-electrons.com
21 lines
615 B
Makefile
21 lines
615 B
Makefile
# Common objects
|
|
obj-$(CONFIG_SUNXI_CCU) += ccu_common.o
|
|
obj-$(CONFIG_SUNXI_CCU) += ccu_reset.o
|
|
|
|
# Base clock types
|
|
obj-$(CONFIG_SUNXI_CCU_DIV) += ccu_div.o
|
|
obj-$(CONFIG_SUNXI_CCU_FRAC) += ccu_frac.o
|
|
obj-$(CONFIG_SUNXI_CCU_GATE) += ccu_gate.o
|
|
obj-$(CONFIG_SUNXI_CCU_MUX) += ccu_mux.o
|
|
obj-$(CONFIG_SUNXI_CCU_PHASE) += ccu_phase.o
|
|
|
|
# Multi-factor clocks
|
|
obj-$(CONFIG_SUNXI_CCU_NK) += ccu_nk.o
|
|
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
|