clk: exynos: add support for PLL1417X
authorKaustabh Chakraborty <kauschluss@disroot.org>
Fri, 17 Oct 2025 15:21:31 +0000 (20:51 +0530)
committerMinkyu Kang <mk7.kang@samsung.com>
Wed, 12 Nov 2025 04:56:12 +0000 (13:56 +0900)
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@disroot.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
drivers/clk/exynos/clk-pll.c
drivers/clk/exynos/clk-pll.h

index fc7e638..4b67591 100644 (file)
@@ -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:
index 22cc15a..d5dfc89 100644 (file)
@@ -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,