mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
fd9ffd8be0
The APBS clock on sun9i is the same as the APB0 clock on sun8i. With sun9i we are supporting the PRCM clocks by using CLK_OF_DECLARE, instead of through a PRCM mfd device and subdevices for each clock and reset control. As such we need a CLK_OF_DECLARE version of the sun8i-a23-apb0-clk driver. Also, build it for sun9i/A80, and not just for configurations with MFD_SUN6I_PRCM enabled. Signed-off-by: Chen-Yu Tsai <wens@csie.org> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
26 lines
597 B
Makefile
26 lines
597 B
Makefile
#
|
|
# Makefile for sunxi specific clk
|
|
#
|
|
|
|
obj-y += clk-sunxi.o clk-factors.o
|
|
obj-y += clk-a10-codec.o
|
|
obj-y += clk-a10-hosc.o
|
|
obj-y += clk-a10-mod1.o
|
|
obj-y += clk-a10-pll2.o
|
|
obj-y += clk-a10-ve.o
|
|
obj-y += clk-a20-gmac.o
|
|
obj-y += clk-mod0.o
|
|
obj-y += clk-simple-gates.o
|
|
obj-y += clk-sun8i-bus-gates.o
|
|
obj-y += clk-sun8i-mbus.o
|
|
obj-y += clk-sun9i-core.o
|
|
obj-y += clk-sun9i-mmc.o
|
|
obj-y += clk-usb.o
|
|
|
|
obj-$(CONFIG_MACH_SUN9I) += clk-sun8i-apb0.o
|
|
obj-$(CONFIG_MACH_SUN9I) += clk-sun9i-cpus.o
|
|
|
|
obj-$(CONFIG_MFD_SUN6I_PRCM) += \
|
|
clk-sun6i-ar100.o clk-sun6i-apb0.o clk-sun6i-apb0-gates.o \
|
|
clk-sun8i-apb0.o
|