1 From 9408076fd9e4d41876af41523cad9bfa77b3a557 Mon Sep 17 00:00:00 2001
2 From: Christian Marangi <ansuelsmth@gmail.com>
3 Date: Thu, 30 Jan 2025 16:11:14 +0100
4 Subject: [PATCH 2/3] clk: qcom: nsscc: Attach required NSSNOC clock to PM
7 There is currently a problem with ICC clock disabling the NSSNOC clock
8 as there isn't any user for them on calling sync_state.
9 This cause the kernel to stall if NSS is enabled and reboot with the watchdog.
11 This is caused by the fact that the NSSNOC clock nsscc, snoc and snoc_1
12 are actually required to make the NSS work and make the system continue
15 To attach these clock, setup pm-clk in nsscc and setup the correct
18 With this change, the clock gets correctly attached and are not disabled
19 when ICC call the sync_state.
21 Suggested-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
22 Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
24 drivers/clk/qcom/nsscc-ipq9574.c | 49 +++++++++++++++++++++++++++++++-
25 1 file changed, 48 insertions(+), 1 deletion(-)
27 --- a/drivers/clk/qcom/nsscc-ipq9574.c
28 +++ b/drivers/clk/qcom/nsscc-ipq9574.c
30 #include <linux/module.h>
32 #include <linux/of_device.h>
33 +#include <linux/pm_clock.h>
34 +#include <linux/pm_runtime.h>
35 #include <linux/regmap.h>
36 #include <linux/platform_device.h>
38 @@ -41,6 +43,9 @@ enum {
39 DT_UNIPHY1_NSS_TX_CLK,
40 DT_UNIPHY2_NSS_RX_CLK,
41 DT_UNIPHY2_NSS_TX_CLK,
42 + DT_GCC_NSSNOC_NSSCC_CLK,
43 + DT_GCC_NSSNOC_SNOC_CLK,
44 + DT_GCC_NSSNOC_SNOC_1_CLK,
48 @@ -3046,6 +3051,10 @@ static const struct qcom_cc_desc nss_cc_
49 .icc_first_node_id = IPQ_NSSCC_ID,
52 +static const struct dev_pm_ops nsscc_pm_ops = {
53 + SET_RUNTIME_PM_OPS(pm_clk_suspend, pm_clk_resume, NULL)
56 static const struct of_device_id nss_cc_ipq9574_match_table[] = {
57 { .compatible = "qcom,ipq9574-nsscc" },
59 @@ -3054,7 +3063,33 @@ MODULE_DEVICE_TABLE(of, nss_cc_ipq9574_m
61 static int nss_cc_ipq9574_probe(struct platform_device *pdev)
63 + struct device *dev = &pdev->dev;
64 struct regmap *regmap;
67 + ret = devm_pm_runtime_enable(dev);
71 + ret = devm_pm_clk_create(dev);
75 + ret = of_pm_clk_add_clk_index(dev, DT_GCC_NSSNOC_NSSCC_CLK);
77 + return dev_err_probe(dev, ret,"failed to acquire nssnoc clock\n");
79 + ret = of_pm_clk_add_clk_index(dev, DT_GCC_NSSNOC_SNOC_CLK);
81 + return dev_err_probe(dev, ret,"failed to acquire snoc clock\n");
83 + ret = of_pm_clk_add_clk_index(dev, DT_GCC_NSSNOC_SNOC_1_CLK);
85 + return dev_err_probe(dev, ret,"failed to acquire snoc_1 clock\n");
87 + ret = pm_runtime_resume_and_get(dev);
91 regmap = qcom_cc_map(pdev, &nss_cc_ipq9574_desc);
93 @@ -3062,7 +3097,18 @@ static int nss_cc_ipq9574_probe(struct p
95 clk_alpha_pll_configure(&ubi32_pll_main, regmap, &ubi32_pll_config);
97 - return qcom_cc_really_probe(&pdev->dev, &nss_cc_ipq9574_desc, regmap);
98 + ret = qcom_cc_really_probe(dev, &nss_cc_ipq9574_desc, regmap);
102 + pm_runtime_put(dev);
107 + pm_runtime_put_sync(dev);
112 static struct platform_driver nss_cc_ipq9574_driver = {
113 @@ -3071,6 +3117,7 @@ static struct platform_driver nss_cc_ipq
114 .name = "qcom,nsscc-ipq9574",
115 .of_match_table = nss_cc_ipq9574_match_table,
116 .sync_state = icc_sync_state,
117 + .pm = &nsscc_pm_ops,