[PATCH 3/6] clk: exynos: add support for PLL1417X
    Kaustabh Chakraborty 
    kauschluss at disroot.org
       
    Fri Oct 17 17:21:31 CEST 2025
    
    
  
PLL1417X seem to be compatible with PLL0822X, as also seen in the
respective Linux kernel driver. Add an enum entry for the type, while
merely being an alias for PLL0822X.
Signed-off-by: Kaustabh Chakraborty <kauschluss at disroot.org>
---
 drivers/clk/exynos/clk-pll.c | 1 +
 drivers/clk/exynos/clk-pll.h | 1 +
 2 files changed, 2 insertions(+)
diff --git a/drivers/clk/exynos/clk-pll.c b/drivers/clk/exynos/clk-pll.c
index fc7e638134a9529edac644d1dfff173adc3e1c5d..4b67591af109ff942e6487907c1e106495868a24 100644
--- a/drivers/clk/exynos/clk-pll.c
+++ b/drivers/clk/exynos/clk-pll.c
@@ -117,6 +117,7 @@ static struct clk *_samsung_clk_register_pll(void __iomem *base,
 
 	switch (pll_clk->type) {
 	case pll_0822x:
+	case pll_1417x:
 		drv_name = UBOOT_DM_CLK_SAMSUNG_PLL0822X;
 		break;
 	case pll_0831x:
diff --git a/drivers/clk/exynos/clk-pll.h b/drivers/clk/exynos/clk-pll.h
index 22cc15a40a4f8933d0e79da864f4f50b732c86a4..d5dfc8934ba90b31c5fa1ab002751f6b3a3819c1 100644
--- a/drivers/clk/exynos/clk-pll.h
+++ b/drivers/clk/exynos/clk-pll.h
@@ -20,6 +20,7 @@ struct samsung_pll_clock;
 enum samsung_pll_type {
 	pll_0822x,
 	pll_0831x,
+	pll_1417x,
 };
 
 void samsung_clk_register_pll(struct udevice *dev, void __iomem *base,
-- 
2.51.0
    
    
More information about the U-Boot
mailing list