summaryrefslogtreecommitdiff
path: root/drivers/clk/qcom/krait-cc.c
diff options
context:
space:
mode:
authorAnsuel Smith <ansuelsmth@gmail.com>2022-04-30 08:44:58 +0300
committerBjorn Andersson <bjorn.andersson@linaro.org>2022-06-27 23:41:37 +0300
commit898d0d6483a9360f1968e0a900465c1fa152a4a9 (patch)
tree579e7d76756db7919856565faaa52e590e18587d /drivers/clk/qcom/krait-cc.c
parentdf83d2c9e72910416f650ade1e07cc314ff02731 (diff)
downloadlinux-898d0d6483a9360f1968e0a900465c1fa152a4a9.tar.xz
clk: qcom: clk-krait: add apq/ipq8064 errata workaround
Add apq/ipq8064 errata workaround where the sec_src clock gating needs to be disabled during switching. krait-cc compatible is not enough to handle this and limit this workaround to apq/ipq8064. We check machine compatible to handle this. Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com> Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org> Link: https://lore.kernel.org/r/20220430054458.31321-4-ansuelsmth@gmail.com
Diffstat (limited to 'drivers/clk/qcom/krait-cc.c')
-rw-r--r--drivers/clk/qcom/krait-cc.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/clk/qcom/krait-cc.c b/drivers/clk/qcom/krait-cc.c
index 4d4b657d33c3..cfd961d5cc45 100644
--- a/drivers/clk/qcom/krait-cc.c
+++ b/drivers/clk/qcom/krait-cc.c
@@ -139,6 +139,14 @@ krait_add_sec_mux(struct device *dev, int id, const char *s,
mux->hw.init = &init;
mux->safe_sel = 0;
+ /* Checking for qcom,krait-cc-v1 or qcom,krait-cc-v2 is not
+ * enough to limit this to apq/ipq8064. Directly check machine
+ * compatible to correctly handle this errata.
+ */
+ if (of_machine_is_compatible("qcom,ipq8064") ||
+ of_machine_is_compatible("qcom,apq8064"))
+ mux->disable_sec_src_gating = true;
+
init.name = kasprintf(GFP_KERNEL, "krait%s_sec_mux", s);
if (!init.name)
return -ENOMEM;