mirror of
https://github.com/torvalds/linux.git
synced 2026-04-21 16:23:59 -04:00
The clock tree of K1 SoC contains three main types of clock hardware (PLL/DDN/MIX) and has control registers split into several multifunction devices: APBS (PLLs), MPMU, APBC and APMU. All register operations are done through regmap to ensure atomicity between concurrent operations of clock driver and reset, power-domain driver that will be introduced in the future. Signed-off-by: Haylen Chu <heylenay@4d2.org> Reviewed-by: Alex Elder <elder@riscstar.com> Reviewed-by: Inochi Amaoto <inochiama@outlook.com> Reviewed-by: Yixun Lan <dlan@gentoo.org> Link: https://lore.kernel.org/r/20250416135406.16284-4-heylenay@4d2.org Signed-off-by: Yixun Lan <dlan@gentoo.org>
19 lines
433 B
Plaintext
19 lines
433 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
config SPACEMIT_CCU
|
|
tristate "Clock support for SpacemiT SoCs"
|
|
depends on ARCH_SPACEMIT || COMPILE_TEST
|
|
select MFD_SYSCON
|
|
help
|
|
Say Y to enable clock controller unit support for SpacemiT SoCs.
|
|
|
|
if SPACEMIT_CCU
|
|
|
|
config SPACEMIT_K1_CCU
|
|
tristate "Support for SpacemiT K1 SoC"
|
|
depends on ARCH_SPACEMIT || COMPILE_TEST
|
|
help
|
|
Support for clock controller unit in SpacemiT K1 SoC.
|
|
|
|
endif
|