Commit 71f130c9 authored by Satya Priya Kakitapalli's avatar Satya Priya Kakitapalli Committed by Bjorn Andersson

clk: qcom: videocc-sm8150: Add missing PLL config property

When the driver was ported upstream, PLL test_ctl_hi1 register value
was omitted. Add it to ensure the PLLs are fully configured.

Fixes: 5658e8cf ("clk: qcom: add video clock controller driver for SM8150")
Signed-off-by: default avatarSatya Priya Kakitapalli <quic_skakitap@quicinc.com>
Reviewed-by: default avatarKonrad Dybcio <konrad.dybcio@linaro.org>
Link: https://lore.kernel.org/r/20231201-videocc-8150-v3-3-56bec3a5e443@quicinc.comSigned-off-by: default avatarBjorn Andersson <andersson@kernel.org>
parent 1fd9a939
...@@ -33,6 +33,7 @@ static struct alpha_pll_config video_pll0_config = { ...@@ -33,6 +33,7 @@ static struct alpha_pll_config video_pll0_config = {
.config_ctl_val = 0x20485699, .config_ctl_val = 0x20485699,
.config_ctl_hi_val = 0x00002267, .config_ctl_hi_val = 0x00002267,
.config_ctl_hi1_val = 0x00000024, .config_ctl_hi1_val = 0x00000024,
.test_ctl_hi1_val = 0x00000020,
.user_ctl_val = 0x00000000, .user_ctl_val = 0x00000000,
.user_ctl_hi_val = 0x00000805, .user_ctl_hi_val = 0x00000805,
.user_ctl_hi1_val = 0x000000D0, .user_ctl_hi1_val = 0x000000D0,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment