mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-16 14:56:43 +07:00
c6e6c96d8f
Add a new style driver for the clock control unit in Allwinner A31/A31s. A few clocks are still missing: - MIPI PLL's HDMI mode support - EMAC clock Signed-off-by: Chen-Yu Tsai <wens@csie.org> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
22 lines
662 B
Makefile
22 lines
662 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_SUN6I_A31_CCU) += ccu-sun6i-a31.o
|
|
obj-$(CONFIG_SUN8I_H3_CCU) += ccu-sun8i-h3.o
|