forked from OERV-BSP/u-boot
Add a clock driver for the PRCM clock controller on the Allwinner A523 family of SoCs, often also used with an "r" prefix or suffix. This just describes the clock gates and reset lines for the few devices that we would need, most prominently the R_I2C device for the PMIC. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
30 lines
983 B
Makefile
30 lines
983 B
Makefile
#
|
|
# Copyright (C) 2018 Amarula Solutions.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_CLK_SUNXI) += clk_sunxi.o
|
|
|
|
obj-$(CONFIG_CLK_SUNXI) += clk_sun6i_rtc.o
|
|
|
|
obj-$(CONFIG_CLK_SUNIV_F1C100S) += clk_f1c100s.o
|
|
obj-$(CONFIG_CLK_SUN4I_A10) += clk_a10.o
|
|
obj-$(CONFIG_CLK_SUN5I_A10S) += clk_a10s.o
|
|
obj-$(CONFIG_CLK_SUN6I_A31) += clk_a31.o
|
|
obj-$(CONFIG_CLK_SUN6I_A31_R) += clk_a31_r.o
|
|
obj-$(CONFIG_CLK_SUN8I_A23) += clk_a23.o
|
|
obj-$(CONFIG_CLK_SUN8I_A83T) += clk_a83t.o
|
|
obj-$(CONFIG_CLK_SUN8I_R40) += clk_r40.o
|
|
obj-$(CONFIG_CLK_SUN8I_V3S) += clk_v3s.o
|
|
obj-$(CONFIG_CLK_SUN9I_A80) += clk_a80.o
|
|
obj-$(CONFIG_CLK_SUN8I_H3) += clk_h3.o
|
|
obj-$(CONFIG_CLK_SUN20I_D1) += clk_d1.o
|
|
obj-$(CONFIG_CLK_SUN50I_H6) += clk_h6.o
|
|
obj-$(CONFIG_CLK_SUN50I_H6_R) += clk_h6_r.o
|
|
obj-$(CONFIG_CLK_SUN50I_H616) += clk_h616.o
|
|
obj-$(CONFIG_CLK_SUN50I_A64) += clk_a64.o
|
|
obj-$(CONFIG_CLK_SUN50I_A100) += clk_a100.o
|
|
obj-$(CONFIG_CLK_SUN55I_A523) += clk_a523.o
|
|
obj-$(CONFIG_CLK_SUN55I_A523_R) += clk_a523_r.o
|