diff options
author | 2024-09-09 18:08:57 +0800 | |
---|---|---|
committer | 2024-09-30 11:27:42 +0200 | |
commit | 6e442c2d7825a0758f00610d94822cfa82a258b9 (patch) | |
tree | 80f0f520374d72059cc90f762938e81b7b0a9975 | |
parent | clk: meson: Support PLL with fixed fractional denominators (diff) | |
download | wireguard-linux-6e442c2d7825a0758f00610d94822cfa82a258b9.tar.xz wireguard-linux-6e442c2d7825a0758f00610d94822cfa82a258b9.zip |
clk: meson: c3: pll: fix frac maximum value for hifi_pll
The fractional denominator of C3's hifi_pll fractional multiplier is
fixed to 100000.
Fixes: 8a9a129dc565 ("clk: meson: c3: add support for the C3 SoC PLL clock")
Signed-off-by: Chuan Liu <chuan.liu@amlogic.com>
Link: https://lore.kernel.org/r/20240909-fix_clk-v3-2-a6d8f6333c04@amlogic.com
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
-rw-r--r-- | drivers/clk/meson/c3-pll.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/meson/c3-pll.c b/drivers/clk/meson/c3-pll.c index 32bd2ed9d304..35fda31a19e2 100644 --- a/drivers/clk/meson/c3-pll.c +++ b/drivers/clk/meson/c3-pll.c @@ -361,6 +361,7 @@ static struct clk_regmap hifi_pll_dco = { .range = &c3_gp0_pll_mult_range, .init_regs = c3_hifi_init_regs, .init_count = ARRAY_SIZE(c3_hifi_init_regs), + .frac_max = 100000, }, .hw.init = &(struct clk_init_data) { .name = "hifi_pll_dco", |