mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-14 22:44:27 +08:00
cdb8b80b60
SoCs after A31 has a clock controller module in the PRCM part. Support the clock controller module on H3/5 and A64 now. Signed-off-by: Icenowy Zheng <icenowy@aosc.xyz> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
32 lines
1.1 KiB
Makefile
32 lines
1.1 KiB
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_MULT) += ccu_mult.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_SUN50I_A64_CCU) += ccu-sun50i-a64.o
|
|
obj-$(CONFIG_SUN5I_CCU) += ccu-sun5i.o
|
|
obj-$(CONFIG_SUN6I_A31_CCU) += ccu-sun6i-a31.o
|
|
obj-$(CONFIG_SUN8I_A23_CCU) += ccu-sun8i-a23.o
|
|
obj-$(CONFIG_SUN8I_A33_CCU) += ccu-sun8i-a33.o
|
|
obj-$(CONFIG_SUN8I_H3_CCU) += ccu-sun8i-h3.o
|
|
obj-$(CONFIG_SUN8I_V3S_CCU) += ccu-sun8i-v3s.o
|
|
obj-$(CONFIG_SUN8I_R_CCU) += ccu-sun8i-r.o
|
|
obj-$(CONFIG_SUN9I_A80_CCU) += ccu-sun9i-a80.o
|
|
obj-$(CONFIG_SUN9I_A80_CCU) += ccu-sun9i-a80-de.o
|
|
obj-$(CONFIG_SUN9I_A80_CCU) += ccu-sun9i-a80-usb.o
|