summaryrefslogtreecommitdiff
path: root/arch/arm/include/asm/arch-imx9/clock.h
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2024-12-09 08:46:57 -0600
committerTom Rini <trini@konsulko.com>2024-12-09 08:46:57 -0600
commit9dd0a9ecaa539adb99f74ea5cebcafcdebe93aad (patch)
tree275308e9fd137acde53d74c8d5170a21cbeb9cd4 /arch/arm/include/asm/arch-imx9/clock.h
parent39759bf9fe3a5b6d4788164fc046f5f8aee5cbff (diff)
parent1c9fe756edba755679e8e4dc525d12e7deda3808 (diff)
Merge tag 'u-boot-imx-next-20241209' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx into next
CI: https://source.denx.de/u-boot/custodians/u-boot-imx/-/pipelines/23736 - Add support for the NXP i.MX91 EVK board. - Improve EEPRON suport on i.MX8MP DHCOM board. - Switch phycore_imx8mm to using environment text files and improve environment handling.
Diffstat (limited to 'arch/arm/include/asm/arch-imx9/clock.h')
-rw-r--r--arch/arm/include/asm/arch-imx9/clock.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch-imx9/clock.h b/arch/arm/include/asm/arch-imx9/clock.h
index 76f12118592..60d48b13b11 100644
--- a/arch/arm/include/asm/arch-imx9/clock.h
+++ b/arch/arm/include/asm/arch-imx9/clock.h
@@ -205,10 +205,17 @@ struct clk_root_map {
u32 mux_type;
};
+enum clk_soc {
+ CLK_SOC_ALL = 0,
+ CLK_SOC_IMX93 = 1,
+ CLK_SOC_IMX91 = 2,
+};
+
struct imx_clk_setting {
u32 clk_root;
enum ccm_clk_src src;
u32 div;
+ enum clk_soc soc;
};
int clock_init_early(void);