xref: /openbmc/linux/drivers/clk/sunxi-ng/Makefile (revision c8c525b0)
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)	+= suniv-f1c100s-ccu.o
25obj-$(CONFIG_SUN50I_A64_CCU)	+= sun50i-a64-ccu.o
26obj-$(CONFIG_SUN50I_A100_CCU)	+= sun50i-a100-ccu.o
27obj-$(CONFIG_SUN50I_A100_R_CCU)	+= sun50i-a100-r-ccu.o
28obj-$(CONFIG_SUN50I_H6_CCU)	+= sun50i-h6-ccu.o
29obj-$(CONFIG_SUN50I_H6_R_CCU)	+= sun50i-h6-r-ccu.o
30obj-$(CONFIG_SUN50I_H616_CCU)	+= sun50i-h616-ccu.o
31obj-$(CONFIG_SUN4I_A10_CCU)	+= sun4i-a10-ccu.o
32obj-$(CONFIG_SUN5I_CCU)		+= sun5i-ccu.o
33obj-$(CONFIG_SUN6I_A31_CCU)	+= sun6i-a31-ccu.o
34obj-$(CONFIG_SUN8I_A23_CCU)	+= sun8i-a23-ccu.o
35obj-$(CONFIG_SUN8I_A33_CCU)	+= sun8i-a33-ccu.o
36obj-$(CONFIG_SUN8I_A83T_CCU)	+= sun8i-a83t-ccu.o
37obj-$(CONFIG_SUN8I_H3_CCU)	+= sun8i-h3-ccu.o
38obj-$(CONFIG_SUN8I_R40_CCU)	+= sun8i-r40-ccu.o
39obj-$(CONFIG_SUN8I_V3S_CCU)	+= sun8i-v3s-ccu.o
40obj-$(CONFIG_SUN8I_DE2_CCU)	+= sun8i-de2-ccu.o
41obj-$(CONFIG_SUN8I_R_CCU)	+= sun8i-r-ccu.o
42obj-$(CONFIG_SUN9I_A80_CCU)	+= sun9i-a80-ccu.o
43obj-$(CONFIG_SUN9I_A80_CCU)	+= sun9i-a80-de-ccu.o
44obj-$(CONFIG_SUN9I_A80_CCU)	+= sun9i-a80-usb-ccu.o
45
46suniv-f1c100s-ccu-y		+= ccu-suniv-f1c100s.o
47sun50i-a64-ccu-y		+= ccu-sun50i-a64.o
48sun50i-a100-ccu-y		+= ccu-sun50i-a100.o
49sun50i-a100-r-ccu-y		+= ccu-sun50i-a100-r.o
50sun50i-h6-ccu-y			+= ccu-sun50i-h6.o
51sun50i-h6-r-ccu-y		+= ccu-sun50i-h6-r.o
52sun50i-h616-ccu-y		+= ccu-sun50i-h616.o
53sun4i-a10-ccu-y			+= ccu-sun4i-a10.o
54sun5i-ccu-y			+= ccu-sun5i.o
55sun6i-a31-ccu-y			+= ccu-sun6i-a31.o
56sun8i-a23-ccu-y			+= ccu-sun8i-a23.o
57sun8i-a33-ccu-y			+= ccu-sun8i-a33.o
58sun8i-a83t-ccu-y		+= ccu-sun8i-a83t.o
59sun8i-h3-ccu-y			+= ccu-sun8i-h3.o
60sun8i-r40-ccu-y			+= ccu-sun8i-r40.o
61sun8i-v3s-ccu-y			+= ccu-sun8i-v3s.o
62sun8i-de2-ccu-y			+= ccu-sun8i-de2.o
63sun8i-r-ccu-y			+= ccu-sun8i-r.o
64sun9i-a80-ccu-y			+= ccu-sun9i-a80.o
65sun9i-a80-de-ccu-y		+= ccu-sun9i-a80-de.o
66sun9i-a80-usb-ccu-y		+= ccu-sun9i-a80-usb.o
67