mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
439b65c4bb
Add support for the USB clock controls found on the A80. Signed-off-by: Chen-Yu Tsai <wens@csie.org> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
30 lines
1.0 KiB
Makefile
30 lines
1.0 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_SUN9I_A80_CCU) += ccu-sun9i-a80.o
|
|
obj-$(CONFIG_SUN9I_A80_CCU) += ccu-sun9i-a80-usb.o
|