diff options
| author | Frank Oltmanns <[email protected]> | 2023-08-07 14:43:36 +0200 |
|---|---|---|
| committer | Chen-Yu Tsai <[email protected]> | 2023-08-09 23:33:58 +0800 |
| commit | b271fc467acd71630d7a2f0f2fcd2a4dbfc22edf (patch) | |
| tree | 64797d58e2e47e01a2bcbafa0830dcc2a7d3b30f | |
| parent | 3492e4f6db5f6814869a4639d70ea025385f4cb6 (diff) | |
clk: sunxi-ng: a64: allow pll-mipi to set parent's rate
The nkm clock now supports setting the parent's rate. Utilize this
option to find the optimal rate for pll-mipi.
Acked-by: Maxime Ripard <[email protected]>
Reviewed-by: Jernej Skrabec <[email protected]>
Signed-off-by: Frank Oltmanns <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Chen-Yu Tsai <[email protected]>
| -rw-r--r-- | drivers/clk/sunxi-ng/ccu-sun50i-a64.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/clk/sunxi-ng/ccu-sun50i-a64.c b/drivers/clk/sunxi-ng/ccu-sun50i-a64.c index eb36f8f77d55..125ae097d96c 100644 --- a/drivers/clk/sunxi-ng/ccu-sun50i-a64.c +++ b/drivers/clk/sunxi-ng/ccu-sun50i-a64.c @@ -179,7 +179,8 @@ static struct ccu_nkm pll_mipi_clk = { .common = { .reg = 0x040, .hw.init = CLK_HW_INIT("pll-mipi", "pll-video0", - &ccu_nkm_ops, CLK_SET_RATE_UNGATE), + &ccu_nkm_ops, + CLK_SET_RATE_UNGATE | CLK_SET_RATE_PARENT), }, }; |