Skip to content

Commit 2050280

Browse files
committed
clk: sunxi-ng: sun55i-a523-ccu: Lower audio0 pll minimum rate
While the user manual states that the PLL's rate should be between 180 MHz and 3 GHz in the register defninition section, it also says the actual operating frequency is 22.5792*4 MHz in the PLL features table. 22.5792*4 MHz is one of the actual clock rates that we want and is is available in the SDM table. Lower the minimum clock rate to 90 MHz so that both rates in the SDM table can be used. Fixes: 7cae1e2 ("clk: sunxi-ng: Add support for the A523/T527 CCU PLLs") Reviewed-by: Jernej Skrabec <jernej.skrabec@gmail.com> Link: https://patch.msgid.link/20251020171059.2786070-7-wens@kernel.org Signed-off-by: Chen-Yu Tsai <wens@kernel.org>
1 parent 5888533 commit 2050280

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/clk/sunxi-ng/ccu-sun55i-a523.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ static struct ccu_nm pll_audio0_4x_clk = {
300300
.m = _SUNXI_CCU_DIV(16, 6),
301301
.sdm = _SUNXI_CCU_SDM(pll_audio0_sdm_table, BIT(24),
302302
0x178, BIT(31)),
303-
.min_rate = 180000000U,
303+
.min_rate = 90000000U,
304304
.max_rate = 3000000000U,
305305
.common = {
306306
.reg = 0x078,

0 commit comments

Comments
 (0)