mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00: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>
48 lines
889 B
C
48 lines
889 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2024 SpacemiT Technology Co. Ltd
|
|
* Copyright (c) 2024-2025 Haylen Chu <heylenay@4d2.org>
|
|
*/
|
|
|
|
#ifndef _CCU_COMMON_H_
|
|
#define _CCU_COMMON_H_
|
|
|
|
#include <linux/regmap.h>
|
|
|
|
struct ccu_common {
|
|
struct regmap *regmap;
|
|
struct regmap *lock_regmap;
|
|
|
|
union {
|
|
/* For DDN and MIX */
|
|
struct {
|
|
u32 reg_ctrl;
|
|
u32 reg_fc;
|
|
u32 mask_fc;
|
|
};
|
|
|
|
/* For PLL */
|
|
struct {
|
|
u32 reg_swcr1;
|
|
u32 reg_swcr3;
|
|
};
|
|
};
|
|
|
|
struct clk_hw hw;
|
|
};
|
|
|
|
static inline struct ccu_common *hw_to_ccu_common(struct clk_hw *hw)
|
|
{
|
|
return container_of(hw, struct ccu_common, hw);
|
|
}
|
|
|
|
#define ccu_read(c, reg) \
|
|
({ \
|
|
u32 tmp; \
|
|
regmap_read((c)->regmap, (c)->reg_##reg, &tmp); \
|
|
tmp; \
|
|
})
|
|
#define ccu_update(c, reg, mask, val) \
|
|
regmap_update_bits((c)->regmap, (c)->reg_##reg, mask, val)
|
|
|
|
#endif /* _CCU_COMMON_H_ */
|