1# SPDX-License-Identifier: GPL-2.0
2# Common objects
3obj-y				+= ccu_common.o
4obj-y				+= ccu_mmc_timing.o
5obj-y				+= ccu_reset.o
6
7# Base clock types
8obj-y				+= ccu_div.o
9obj-y				+= ccu_frac.o
10obj-y				+= ccu_gate.o
11obj-y				+= ccu_mux.o
12obj-y				+= ccu_mult.o
13obj-y				+= ccu_phase.o
14obj-y				+= ccu_sdm.o
15
16# Multi-factor clocks
17obj-y				+= ccu_nk.o
18obj-y				+= ccu_nkm.o
19obj-y				+= ccu_nkmp.o
20obj-y				+= ccu_nm.o
21obj-y				+= ccu_mp.o
22
23# SoC support
24obj-$(CONFIG_SUNIV_F1C100S_CCU)	+= ccu-suniv-f1c100s.o
25obj-$(CONFIG_SUN50I_A64_CCU)	+= ccu-sun50i-a64.o
26obj-$(CONFIG_SUN50I_A100_CCU)	+= ccu-sun50i-a100.o
27obj-$(CONFIG_SUN50I_A100_R_CCU)	+= ccu-sun50i-a100-r.o
28obj-$(CONFIG_SUN50I_H6_CCU)	+= ccu-sun50i-h6.o
29obj-$(CONFIG_SUN50I_H616_CCU)	+= ccu-sun50i-h616.o
30obj-$(CONFIG_SUN50I_H6_R_CCU)	+= ccu-sun50i-h6-r.o
31obj-$(CONFIG_SUN4I_A10_CCU)	+= ccu-sun4i-a10.o
32obj-$(CONFIG_SUN5I_CCU)		+= ccu-sun5i.o
33obj-$(CONFIG_SUN6I_A31_CCU)	+= ccu-sun6i-a31.o
34obj-$(CONFIG_SUN8I_A23_CCU)	+= ccu-sun8i-a23.o
35obj-$(CONFIG_SUN8I_A33_CCU)	+= ccu-sun8i-a33.o
36obj-$(CONFIG_SUN8I_A83T_CCU)	+= ccu-sun8i-a83t.o
37obj-$(CONFIG_SUN8I_H3_CCU)	+= ccu-sun8i-h3.o
38obj-$(CONFIG_SUN8I_V3S_CCU)	+= ccu-sun8i-v3s.o
39obj-$(CONFIG_SUN8I_DE2_CCU)	+= ccu-sun8i-de2.o
40obj-$(CONFIG_SUN8I_R_CCU)	+= ccu-sun8i-r.o
41obj-$(CONFIG_SUN8I_R40_CCU)	+= ccu-sun8i-r40.o
42obj-$(CONFIG_SUN9I_A80_CCU)	+= ccu-sun9i-a80.o
43obj-$(CONFIG_SUN9I_A80_CCU)	+= ccu-sun9i-a80-de.o
44obj-$(CONFIG_SUN9I_A80_CCU)	+= ccu-sun9i-a80-usb.o
45