mirror of
https://github.com/torvalds/linux.git
synced 2026-04-30 12:32:31 -04:00
Add clock support to SpacemiT K3 SoC, the clock tree consist of several blocks which are APBC, APBS, APMU, DCIU, MPUM. Link: https://lore.kernel.org/r/20260108-k3-clk-v5-5-42a11b74ad58@gentoo.org Signed-off-by: Yixun Lan <dlan@gentoo.org>
14 lines
370 B
Makefile
14 lines
370 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
obj-$(CONFIG_SPACEMIT_CCU) += spacemit-ccu.o
|
|
spacemit-ccu-y += ccu_common.o
|
|
spacemit-ccu-y += ccu_pll.o
|
|
spacemit-ccu-y += ccu_mix.o
|
|
spacemit-ccu-y += ccu_ddn.o
|
|
|
|
obj-$(CONFIG_SPACEMIT_K1_CCU) += spacemit-ccu-k1.o
|
|
spacemit-ccu-k1-y += ccu-k1.o
|
|
|
|
obj-$(CONFIG_SPACEMIT_K3_CCU) += spacemit-ccu-k3.o
|
|
spacemit-ccu-k3-y += ccu-k3.o
|