diff options
author | Konrad Dybcio <konrad.dybcio@linaro.org> | 2023-12-19 19:55:33 +0100 |
---|---|---|
committer | Bjorn Andersson <andersson@kernel.org> | 2023-12-19 21:12:41 +0100 |
commit | 757d1ca14f94e4e00777491dcab0b4abee18f9bf (patch) | |
tree | 858a9b922b8acf8b3293012afdaa09b6ae0e92e2 /drivers/clk/qcom | |
parent | clk: qcom: gpucc-sm8650: Add test_ctl parameters to PLL config (diff) | |
download | linux-757d1ca14f94e4e00777491dcab0b4abee18f9bf.tar.xz linux-757d1ca14f94e4e00777491dcab0b4abee18f9bf.zip |
clk: qcom: dispcc-sm8650: Add test_ctl parameters to PLL config
These values were missing. Add them.
Fixes: 9e939f008338 ("clk: qcom: add the SM8650 Display Clock Controller driver")
Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org>
Link: https://lore.kernel.org/r/20231219-topic-8650_clks-v1-2-5672bfa0eb05@linaro.org
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
Diffstat (limited to 'drivers/clk/qcom')
-rw-r--r-- | drivers/clk/qcom/dispcc-sm8650.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/clk/qcom/dispcc-sm8650.c b/drivers/clk/qcom/dispcc-sm8650.c index 6283099faf57..f3b1d9d16bae 100644 --- a/drivers/clk/qcom/dispcc-sm8650.c +++ b/drivers/clk/qcom/dispcc-sm8650.c @@ -79,6 +79,10 @@ static const struct alpha_pll_config disp_cc_pll0_config = { .config_ctl_val = 0x20485699, .config_ctl_hi_val = 0x00182261, .config_ctl_hi1_val = 0x82aa299c, + .test_ctl_val = 0x00000000, + .test_ctl_hi_val = 0x00000003, + .test_ctl_hi1_val = 0x00009000, + .test_ctl_hi2_val = 0x00000034, .user_ctl_val = 0x00000000, .user_ctl_hi_val = 0x00000005, }; @@ -106,6 +110,10 @@ static const struct alpha_pll_config disp_cc_pll1_config = { .config_ctl_val = 0x20485699, .config_ctl_hi_val = 0x00182261, .config_ctl_hi1_val = 0x82aa299c, + .test_ctl_val = 0x00000000, + .test_ctl_hi_val = 0x00000003, + .test_ctl_hi1_val = 0x00009000, + .test_ctl_hi2_val = 0x00000034, .user_ctl_val = 0x00000000, .user_ctl_hi_val = 0x00000005, }; |