Skip to content

Commit f2819ea

Browse files
Sam Protsenkokrzk
authored andcommitted
clk: samsung: clk-pll: Implement pll0818x PLL type
pll0818x PLL is used in Exynos850 SoC for CMU_G3D PLL. Operation-wise, pll0818x is the same as pll0822x. The only difference is: - pl0822x is integer PLL with Middle FVCO (950 to 2400 MHz) - pl0818x is integer PLL with Low FVCO (600 to 1200 MHz) Add pll0818x type as an alias to pll0822x. Reviewed-by: Chanho Park <chanho61.park@samsung.com> Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org> Link: https://lore.kernel.org/r/20230223042133.26551-4-semen.protsenko@linaro.org Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
1 parent ac409ad commit f2819ea

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

drivers/clk/samsung/clk-pll.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1314,6 +1314,7 @@ static void __init _samsung_clk_register_pll(struct samsung_clk_provider *ctx,
13141314
init.ops = &samsung_pll35xx_clk_ops;
13151315
break;
13161316
case pll_1417x:
1317+
case pll_0818x:
13171318
case pll_0822x:
13181319
pll->enable_offs = PLL0822X_ENABLE_SHIFT;
13191320
pll->lock_offs = PLL0822X_LOCK_STAT_SHIFT;

drivers/clk/samsung/clk-pll.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ enum samsung_pll_type {
3434
pll_1451x,
3535
pll_1452x,
3636
pll_1460x,
37+
pll_0818x,
3738
pll_0822x,
3839
pll_0831x,
3940
pll_142xx,

0 commit comments

Comments
 (0)