* [RESEND v5 0/6] Add resets for ADSP based audio clock controller driver
@ 2023-01-21 17:32 Srinivasa Rao Mandadapu
2023-01-21 17:32 ` [RESEND v5 1/6] dt-bindings: clock: qcom,sc7280-lpasscc: Add qcom,adsp-pil-mode property Srinivasa Rao Mandadapu
` (6 more replies)
0 siblings, 7 replies; 11+ messages in thread
From: Srinivasa Rao Mandadapu @ 2023-01-21 17:32 UTC (permalink / raw)
To: swboyd, agross, andersson, robh+dt, broonie, quic_plai,
krzysztof.kozlowski+dt, konrad.dybcio, mturquette, sboyd,
linux-arm-msm, linux-clk, linux-kernel, quic_rohkumar
Cc: Srinivasa Rao Mandadapu
Add resets and remove qdsp6ss clcok controller for audioreach based platforms.
Changes since v4:
-- Update Fixes tag in Merge lpasscc into lpass_aon patch.
-- Revert removal of clk_regmap structure in Merge lpasscc into lpass_aon patch.
Changes since v3:
-- Remove duplicate clock resets patch.
-- Add binding headers for q6 clocks.
-- Create new patch for merging lpasscc q6 clocks into lpass_aon.
-- Create new patches for handling conflicts of ADSP and bypass solution.
Changes since v2:
-- Revert removing qdsp6ss clock control.
-- Add Conditional check for qdsp6ss clock registration.
Changes since v1:
-- Update commit message.
-- Remove qdsp6ss clock control.
Srinivasa Rao Mandadapu (6):
dt-bindings: clock: qcom,sc7280-lpasscc: Add qcom,adsp-pil-mode
property
dt-bindings: clock: lpassaudiocc-sc7280: Add binding headers for
lpasscc
clk: qcom: lpasscc-sc7280: Skip qdsp6ss clock registration
clk: qcom: lpasscorecc-sc7280: Skip lpasscorecc registration
clk: qcom: lpassaudiocc-sc7280: Merge lpasscc into lpass_aon
clk: qcom: lpassaudiocc-sc7280: Skip lpass_aon_cc_pll config
.../devicetree/bindings/clock/qcom,sc7280-lpasscc.yaml | 7 +++++++
drivers/clk/qcom/lpassaudiocc-sc7280.c | 16 +++++++++++-----
drivers/clk/qcom/lpasscc-sc7280.c | 12 +++++++-----
drivers/clk/qcom/lpasscorecc-sc7280.c | 3 +++
include/dt-bindings/clock/qcom,lpassaudiocc-sc7280.h | 2 ++
5 files changed, 30 insertions(+), 10 deletions(-)
--
2.7.4
^ permalink raw reply [flat|nested] 11+ messages in thread
* [RESEND v5 1/6] dt-bindings: clock: qcom,sc7280-lpasscc: Add qcom,adsp-pil-mode property
2023-01-21 17:32 [RESEND v5 0/6] Add resets for ADSP based audio clock controller driver Srinivasa Rao Mandadapu
@ 2023-01-21 17:32 ` Srinivasa Rao Mandadapu
2023-01-21 17:32 ` [RESEND v5 2/6] dt-bindings: clock: lpassaudiocc-sc7280: Add binding headers for lpasscc Srinivasa Rao Mandadapu
` (5 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Srinivasa Rao Mandadapu @ 2023-01-21 17:32 UTC (permalink / raw)
To: swboyd, agross, andersson, robh+dt, broonie, quic_plai,
krzysztof.kozlowski+dt, konrad.dybcio, mturquette, sboyd,
linux-arm-msm, linux-clk, linux-kernel, quic_rohkumar
Cc: Srinivasa Rao Mandadapu
When this property is set, the remoteproc is used to boot the
LPASS and therefore qdsp6ss clocks would be used to bring LPASS
out of reset, hence they are directly controlled by the remoteproc.
This is a cleanup done to handle overlap of regmap of lpasscc
and adsp remoteproc blocks.
Signed-off-by: Srinivasa Rao Mandadapu <quic_srivasam@quicinc.com>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Reviewed-by: Stephen Boyd <swboyd@chromium.org>
---
Documentation/devicetree/bindings/clock/qcom,sc7280-lpasscc.yaml | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/Documentation/devicetree/bindings/clock/qcom,sc7280-lpasscc.yaml b/Documentation/devicetree/bindings/clock/qcom,sc7280-lpasscc.yaml
index 6151fde..97c6bd9 100644
--- a/Documentation/devicetree/bindings/clock/qcom,sc7280-lpasscc.yaml
+++ b/Documentation/devicetree/bindings/clock/qcom,sc7280-lpasscc.yaml
@@ -41,6 +41,12 @@ properties:
- const: qdsp6ss
- const: top_cc
+ qcom,adsp-pil-mode:
+ description:
+ Indicates if the LPASS would be brought out of reset using
+ remoteproc peripheral loader.
+ type: boolean
+
required:
- compatible
- reg
@@ -60,6 +66,7 @@ examples:
reg-names = "qdsp6ss", "top_cc";
clocks = <&gcc GCC_CFG_NOC_LPASS_CLK>;
clock-names = "iface";
+ qcom,adsp-pil-mode;
#clock-cells = <1>;
};
...
--
2.7.4
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [RESEND v5 2/6] dt-bindings: clock: lpassaudiocc-sc7280: Add binding headers for lpasscc
2023-01-21 17:32 [RESEND v5 0/6] Add resets for ADSP based audio clock controller driver Srinivasa Rao Mandadapu
2023-01-21 17:32 ` [RESEND v5 1/6] dt-bindings: clock: qcom,sc7280-lpasscc: Add qcom,adsp-pil-mode property Srinivasa Rao Mandadapu
@ 2023-01-21 17:32 ` Srinivasa Rao Mandadapu
2023-01-21 17:32 ` [RESEND v5 3/6] clk: qcom: lpasscc-sc7280: Skip qdsp6ss clock registration Srinivasa Rao Mandadapu
` (4 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Srinivasa Rao Mandadapu @ 2023-01-21 17:32 UTC (permalink / raw)
To: swboyd, agross, andersson, robh+dt, broonie, quic_plai,
krzysztof.kozlowski+dt, konrad.dybcio, mturquette, sboyd,
linux-arm-msm, linux-clk, linux-kernel, quic_rohkumar
Cc: Srinivasa Rao Mandadapu
Add binding headers for lpasscc clocks to merge lpasscc clocks into
lpass_aon clk_regmap structure.
Signed-off-by: Srinivasa Rao Mandadapu <quic_srivasam@quicinc.com>
Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
include/dt-bindings/clock/qcom,lpassaudiocc-sc7280.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/include/dt-bindings/clock/qcom,lpassaudiocc-sc7280.h b/include/dt-bindings/clock/qcom,lpassaudiocc-sc7280.h
index 22dcd47..c72a980 100644
--- a/include/dt-bindings/clock/qcom,lpassaudiocc-sc7280.h
+++ b/include/dt-bindings/clock/qcom,lpassaudiocc-sc7280.h
@@ -41,6 +41,8 @@
#define LPASS_AON_CC_TX_MCLK_CLK 8
#define LPASS_AON_CC_TX_MCLK_RCG_CLK_SRC 9
#define LPASS_AON_CC_VA_MEM0_CLK 10
+#define LPASS_Q6_AHBM_CLK 11
+#define LPASS_Q6_AHBS_CLK 12
/* LPASS_AON_CC power domains */
#define LPASS_AON_CC_LPASS_AUDIO_HM_GDSC 0
--
2.7.4
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [RESEND v5 3/6] clk: qcom: lpasscc-sc7280: Skip qdsp6ss clock registration
2023-01-21 17:32 [RESEND v5 0/6] Add resets for ADSP based audio clock controller driver Srinivasa Rao Mandadapu
2023-01-21 17:32 ` [RESEND v5 1/6] dt-bindings: clock: qcom,sc7280-lpasscc: Add qcom,adsp-pil-mode property Srinivasa Rao Mandadapu
2023-01-21 17:32 ` [RESEND v5 2/6] dt-bindings: clock: lpassaudiocc-sc7280: Add binding headers for lpasscc Srinivasa Rao Mandadapu
@ 2023-01-21 17:32 ` Srinivasa Rao Mandadapu
2023-01-21 17:32 ` [RESEND v5 4/6] clk: qcom: lpasscorecc-sc7280: Skip lpasscorecc registration Srinivasa Rao Mandadapu
` (3 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Srinivasa Rao Mandadapu @ 2023-01-21 17:32 UTC (permalink / raw)
To: swboyd, agross, andersson, robh+dt, broonie, quic_plai,
krzysztof.kozlowski+dt, konrad.dybcio, mturquette, sboyd,
linux-arm-msm, linux-clk, linux-kernel, quic_rohkumar
Cc: Srinivasa Rao Mandadapu
The qdsp6ss memory region is being shared by ADSP remoteproc device and
lpasscc clock device, hence causing memory conflict.
As the qdsp6ss clocks are being enabled in remoteproc driver, skip qdsp6ss
clock registration if "qcom,adsp-pil-mode" is enabled.
Fixes: 4ab43d171181 ("clk: qcom: Add lpass clock controller driver for SC7280")
Signed-off-by: Srinivasa Rao Mandadapu <quic_srivasam@quicinc.com>
Tested-by: Mohammad Rafi Shaik <quic_mohs@quicinc.com>
Reviewed-by: Stephen Boyd <swboyd@chromium.org>
---
drivers/clk/qcom/lpasscc-sc7280.c | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/drivers/clk/qcom/lpasscc-sc7280.c b/drivers/clk/qcom/lpasscc-sc7280.c
index 5c1e17b..85dd5b9 100644
--- a/drivers/clk/qcom/lpasscc-sc7280.c
+++ b/drivers/clk/qcom/lpasscc-sc7280.c
@@ -118,12 +118,14 @@ static int lpass_cc_sc7280_probe(struct platform_device *pdev)
goto destroy_pm_clk;
}
- lpass_regmap_config.name = "qdsp6ss";
- desc = &lpass_qdsp6ss_sc7280_desc;
+ if (!of_property_read_bool(pdev->dev.of_node, "qcom,adsp-pil-mode")) {
+ lpass_regmap_config.name = "qdsp6ss";
+ desc = &lpass_qdsp6ss_sc7280_desc;
- ret = qcom_cc_probe_by_index(pdev, 0, desc);
- if (ret)
- goto destroy_pm_clk;
+ ret = qcom_cc_probe_by_index(pdev, 0, desc);
+ if (ret)
+ goto destroy_pm_clk;
+ }
lpass_regmap_config.name = "top_cc";
desc = &lpass_cc_top_sc7280_desc;
--
2.7.4
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [RESEND v5 4/6] clk: qcom: lpasscorecc-sc7280: Skip lpasscorecc registration
2023-01-21 17:32 [RESEND v5 0/6] Add resets for ADSP based audio clock controller driver Srinivasa Rao Mandadapu
` (2 preceding siblings ...)
2023-01-21 17:32 ` [RESEND v5 3/6] clk: qcom: lpasscc-sc7280: Skip qdsp6ss clock registration Srinivasa Rao Mandadapu
@ 2023-01-21 17:32 ` Srinivasa Rao Mandadapu
2023-01-21 17:32 ` [RESEND v5 5/6] clk: qcom: lpassaudiocc-sc7280: Merge lpasscc into lpass_aon Srinivasa Rao Mandadapu
` (2 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Srinivasa Rao Mandadapu @ 2023-01-21 17:32 UTC (permalink / raw)
To: swboyd, agross, andersson, robh+dt, broonie, quic_plai,
krzysztof.kozlowski+dt, konrad.dybcio, mturquette, sboyd,
linux-arm-msm, linux-clk, linux-kernel, quic_rohkumar
Cc: Srinivasa Rao Mandadapu
Skip lpasscorecc clocks registration for ADSP based platforms
as it's causing NOC errors when ADSP based clocks are enabled.
Signed-off-by: Srinivasa Rao Mandadapu <quic_srivasam@quicinc.com>
Tested-by: Mohammad Rafi Shaik <quic_mohs@quicinc.com>
---
drivers/clk/qcom/lpasscorecc-sc7280.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/clk/qcom/lpasscorecc-sc7280.c b/drivers/clk/qcom/lpasscorecc-sc7280.c
index 6ad19b0..3aa16d8 100644
--- a/drivers/clk/qcom/lpasscorecc-sc7280.c
+++ b/drivers/clk/qcom/lpasscorecc-sc7280.c
@@ -395,6 +395,9 @@ static int lpass_core_cc_sc7280_probe(struct platform_device *pdev)
const struct qcom_cc_desc *desc;
struct regmap *regmap;
+ if (of_property_read_bool(pdev->dev.of_node, "qcom,adsp-pil-mode"))
+ return 0;
+
lpass_core_cc_sc7280_regmap_config.name = "lpass_core_cc";
lpass_core_cc_sc7280_regmap_config.max_register = 0x4f004;
desc = &lpass_core_cc_sc7280_desc;
--
2.7.4
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [RESEND v5 5/6] clk: qcom: lpassaudiocc-sc7280: Merge lpasscc into lpass_aon
2023-01-21 17:32 [RESEND v5 0/6] Add resets for ADSP based audio clock controller driver Srinivasa Rao Mandadapu
` (3 preceding siblings ...)
2023-01-21 17:32 ` [RESEND v5 4/6] clk: qcom: lpasscorecc-sc7280: Skip lpasscorecc registration Srinivasa Rao Mandadapu
@ 2023-01-21 17:32 ` Srinivasa Rao Mandadapu
2023-01-21 17:32 ` [RESEND v5 6/6] clk: qcom: lpassaudiocc-sc7280: Skip lpass_aon_cc_pll config Srinivasa Rao Mandadapu
2023-01-22 13:51 ` [RESEND v5 0/6] Add resets for ADSP based audio clock controller driver Krzysztof Kozlowski
6 siblings, 0 replies; 11+ messages in thread
From: Srinivasa Rao Mandadapu @ 2023-01-21 17:32 UTC (permalink / raw)
To: swboyd, agross, andersson, robh+dt, broonie, quic_plai,
krzysztof.kozlowski+dt, konrad.dybcio, mturquette, sboyd,
linux-arm-msm, linux-clk, linux-kernel, quic_rohkumar
Cc: Srinivasa Rao Mandadapu
Merge lpasscc clocks into lpass_aon clk_regmap structure as they
are using same register space.
Add conditional check for doing lpasscc clock registration only
if regname specified in device tree node.
In existing implementation, lpasscc clocks and lpass_aon clocks are
being registered exclusively and overlapping if both of them are
to be used.
This is required to avoid such overlapping and to register
lpasscc clocks and lpass_aon clocks simultaneously.
Fixes: 4ab43d171181 ("clk: qcom: Add lpass clock controller driver for SC7280")
Signed-off-by: Srinivasa Rao Mandadapu <quic_srivasam@quicinc.com>
Tested-by: Mohammad Rafi Shaik <quic_mohs@quicinc.com>
---
drivers/clk/qcom/lpassaudiocc-sc7280.c | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
diff --git a/drivers/clk/qcom/lpassaudiocc-sc7280.c b/drivers/clk/qcom/lpassaudiocc-sc7280.c
index 1339f92..8e2f433 100644
--- a/drivers/clk/qcom/lpassaudiocc-sc7280.c
+++ b/drivers/clk/qcom/lpassaudiocc-sc7280.c
@@ -660,6 +660,8 @@ static struct clk_regmap *lpass_aon_cc_sc7280_clocks[] = {
[LPASS_AON_CC_TX_MCLK_2X_CLK] = &lpass_aon_cc_tx_mclk_2x_clk.clkr,
[LPASS_AON_CC_TX_MCLK_CLK] = &lpass_aon_cc_tx_mclk_clk.clkr,
[LPASS_AON_CC_TX_MCLK_RCG_CLK_SRC] = &lpass_aon_cc_tx_mclk_rcg_clk_src.clkr,
+ [LPASS_Q6_AHBM_CLK] = &lpass_q6ss_ahbm_clk.clkr,
+ [LPASS_Q6_AHBS_CLK] = &lpass_q6ss_ahbs_clk.clkr,
};
static struct gdsc *lpass_aon_cc_sc7280_gdscs[] = {
@@ -819,6 +821,7 @@ static int lpass_aon_cc_sc7280_probe(struct platform_device *pdev)
{
const struct qcom_cc_desc *desc;
struct regmap *regmap;
+ struct resource *res;
int ret;
ret = lpass_audio_setup_runtime_pm(pdev);
@@ -826,10 +829,12 @@ static int lpass_aon_cc_sc7280_probe(struct platform_device *pdev)
return ret;
if (of_property_read_bool(pdev->dev.of_node, "qcom,adsp-pil-mode")) {
- lpass_audio_cc_sc7280_regmap_config.name = "cc";
- desc = &lpass_cc_sc7280_desc;
- ret = qcom_cc_probe(pdev, desc);
- goto exit;
+ res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "cc");
+ if (res) {
+ lpass_audio_cc_sc7280_regmap_config.name = "cc";
+ desc = &lpass_cc_sc7280_desc;
+ return qcom_cc_probe(pdev, desc);
+ }
}
lpass_audio_cc_sc7280_regmap_config.name = "lpasscc_aon";
--
2.7.4
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [RESEND v5 6/6] clk: qcom: lpassaudiocc-sc7280: Skip lpass_aon_cc_pll config
2023-01-21 17:32 [RESEND v5 0/6] Add resets for ADSP based audio clock controller driver Srinivasa Rao Mandadapu
` (4 preceding siblings ...)
2023-01-21 17:32 ` [RESEND v5 5/6] clk: qcom: lpassaudiocc-sc7280: Merge lpasscc into lpass_aon Srinivasa Rao Mandadapu
@ 2023-01-21 17:32 ` Srinivasa Rao Mandadapu
2023-01-22 13:51 ` [RESEND v5 0/6] Add resets for ADSP based audio clock controller driver Krzysztof Kozlowski
6 siblings, 0 replies; 11+ messages in thread
From: Srinivasa Rao Mandadapu @ 2023-01-21 17:32 UTC (permalink / raw)
To: swboyd, agross, andersson, robh+dt, broonie, quic_plai,
krzysztof.kozlowski+dt, konrad.dybcio, mturquette, sboyd,
linux-arm-msm, linux-clk, linux-kernel, quic_rohkumar
Cc: Srinivasa Rao Mandadapu
Skip lpass_aon_cc_pll configuration for ADSP based platforms
based on qcom,adsp-pil-mode property.
This is to avoid ADSP out of reset fail.
Signed-off-by: Srinivasa Rao Mandadapu <quic_srivasam@quicinc.com>
Tested-by: Mohammad Rafi Shaik <quic_mohs@quicinc.com>
---
drivers/clk/qcom/lpassaudiocc-sc7280.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/clk/qcom/lpassaudiocc-sc7280.c b/drivers/clk/qcom/lpassaudiocc-sc7280.c
index 8e2f433..1511337 100644
--- a/drivers/clk/qcom/lpassaudiocc-sc7280.c
+++ b/drivers/clk/qcom/lpassaudiocc-sc7280.c
@@ -847,7 +847,8 @@ static int lpass_aon_cc_sc7280_probe(struct platform_device *pdev)
goto exit;
}
- clk_lucid_pll_configure(&lpass_aon_cc_pll, regmap, &lpass_aon_cc_pll_config);
+ if (!of_property_read_bool(pdev->dev.of_node, "qcom,adsp-pil-mode"))
+ clk_lucid_pll_configure(&lpass_aon_cc_pll, regmap, &lpass_aon_cc_pll_config);
ret = qcom_cc_really_probe(pdev, &lpass_aon_cc_sc7280_desc, regmap);
if (ret) {
--
2.7.4
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [RESEND v5 0/6] Add resets for ADSP based audio clock controller driver
2023-01-21 17:32 [RESEND v5 0/6] Add resets for ADSP based audio clock controller driver Srinivasa Rao Mandadapu
` (5 preceding siblings ...)
2023-01-21 17:32 ` [RESEND v5 6/6] clk: qcom: lpassaudiocc-sc7280: Skip lpass_aon_cc_pll config Srinivasa Rao Mandadapu
@ 2023-01-22 13:51 ` Krzysztof Kozlowski
2023-01-23 5:13 ` Srinivasa Rao Mandadapu
6 siblings, 1 reply; 11+ messages in thread
From: Krzysztof Kozlowski @ 2023-01-22 13:51 UTC (permalink / raw)
To: Srinivasa Rao Mandadapu, swboyd, agross, andersson, robh+dt,
broonie, quic_plai, krzysztof.kozlowski+dt, konrad.dybcio,
mturquette, sboyd, linux-arm-msm, linux-clk, linux-kernel,
quic_rohkumar
On 21/01/2023 18:32, Srinivasa Rao Mandadapu wrote:
> Add resets and remove qdsp6ss clcok controller for audioreach based platforms.
>
> Changes since v4:
> -- Update Fixes tag in Merge lpasscc into lpass_aon patch.
> -- Revert removal of clk_regmap structure in Merge lpasscc into lpass_aon patch.
>
Your v5 before resend have build issues. Please fix.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [RESEND v5 0/6] Add resets for ADSP based audio clock controller driver
2023-01-22 13:51 ` [RESEND v5 0/6] Add resets for ADSP based audio clock controller driver Krzysztof Kozlowski
@ 2023-01-23 5:13 ` Srinivasa Rao Mandadapu
2023-01-23 8:01 ` Krzysztof Kozlowski
0 siblings, 1 reply; 11+ messages in thread
From: Srinivasa Rao Mandadapu @ 2023-01-23 5:13 UTC (permalink / raw)
To: Krzysztof Kozlowski, swboyd, agross, andersson, robh+dt, broonie,
quic_plai, krzysztof.kozlowski+dt, konrad.dybcio, mturquette,
sboyd, linux-arm-msm, linux-clk, linux-kernel, quic_rohkumar
On 1/22/2023 7:21 PM, Krzysztof Kozlowski wrote:
Thanks for Your time Krzysztof!!!
> On 21/01/2023 18:32, Srinivasa Rao Mandadapu wrote:
>> Add resets and remove qdsp6ss clcok controller for audioreach based platforms.
>>
>> Changes since v4:
>> -- Update Fixes tag in Merge lpasscc into lpass_aon patch.
>> -- Revert removal of clk_regmap structure in Merge lpasscc into lpass_aon patch.
>>
> Your v5 before resend have build issues. Please fix.
In v5, one commit missed to amend local changes.Hence resent it.
on Resent patch series no build issues.
>
> Best regards,
> Krzysztof
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [RESEND v5 0/6] Add resets for ADSP based audio clock controller driver
2023-01-23 5:13 ` Srinivasa Rao Mandadapu
@ 2023-01-23 8:01 ` Krzysztof Kozlowski
2023-01-25 23:05 ` Stephen Boyd
0 siblings, 1 reply; 11+ messages in thread
From: Krzysztof Kozlowski @ 2023-01-23 8:01 UTC (permalink / raw)
To: Srinivasa Rao Mandadapu, swboyd, agross, andersson, robh+dt,
broonie, quic_plai, krzysztof.kozlowski+dt, konrad.dybcio,
mturquette, sboyd, linux-arm-msm, linux-clk, linux-kernel,
quic_rohkumar
On 23/01/2023 06:13, Srinivasa Rao Mandadapu wrote:
>
> On 1/22/2023 7:21 PM, Krzysztof Kozlowski wrote:
> Thanks for Your time Krzysztof!!!
>> On 21/01/2023 18:32, Srinivasa Rao Mandadapu wrote:
>>> Add resets and remove qdsp6ss clcok controller for audioreach based platforms.
>>>
>>> Changes since v4:
>>> -- Update Fixes tag in Merge lpasscc into lpass_aon patch.
>>> -- Revert removal of clk_regmap structure in Merge lpasscc into lpass_aon patch.
>>>
>> Your v5 before resend have build issues. Please fix.
>
> In v5, one commit missed to amend local changes.Hence resent it.
>
> on Resent patch series no build issues.
Resend means you send the same patches. If you change patches, it's not
resend but new version.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [RESEND v5 0/6] Add resets for ADSP based audio clock controller driver
2023-01-23 8:01 ` Krzysztof Kozlowski
@ 2023-01-25 23:05 ` Stephen Boyd
0 siblings, 0 replies; 11+ messages in thread
From: Stephen Boyd @ 2023-01-25 23:05 UTC (permalink / raw)
To: Krzysztof Kozlowski, Srinivasa Rao Mandadapu, agross, andersson,
broonie, konrad.dybcio, krzysztof.kozlowski+dt, linux-arm-msm,
linux-clk, linux-kernel, mturquette, quic_plai, quic_rohkumar,
robh+dt, swboyd
Quoting Krzysztof Kozlowski (2023-01-23 00:01:02)
> On 23/01/2023 06:13, Srinivasa Rao Mandadapu wrote:
> >
> > On 1/22/2023 7:21 PM, Krzysztof Kozlowski wrote:
> > Thanks for Your time Krzysztof!!!
> >> On 21/01/2023 18:32, Srinivasa Rao Mandadapu wrote:
> >>> Add resets and remove qdsp6ss clcok controller for audioreach based platforms.
> >>>
> >>> Changes since v4:
> >>> -- Update Fixes tag in Merge lpasscc into lpass_aon patch.
> >>> -- Revert removal of clk_regmap structure in Merge lpasscc into lpass_aon patch.
> >>>
> >> Your v5 before resend have build issues. Please fix.
> >
> > In v5, one commit missed to amend local changes.Hence resent it.
> >
> > on Resent patch series no build issues.
>
> Resend means you send the same patches. If you change patches, it's not
> resend but new version.
>
I'm waiting for a new version now.
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2023-01-25 23:05 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-21 17:32 [RESEND v5 0/6] Add resets for ADSP based audio clock controller driver Srinivasa Rao Mandadapu
2023-01-21 17:32 ` [RESEND v5 1/6] dt-bindings: clock: qcom,sc7280-lpasscc: Add qcom,adsp-pil-mode property Srinivasa Rao Mandadapu
2023-01-21 17:32 ` [RESEND v5 2/6] dt-bindings: clock: lpassaudiocc-sc7280: Add binding headers for lpasscc Srinivasa Rao Mandadapu
2023-01-21 17:32 ` [RESEND v5 3/6] clk: qcom: lpasscc-sc7280: Skip qdsp6ss clock registration Srinivasa Rao Mandadapu
2023-01-21 17:32 ` [RESEND v5 4/6] clk: qcom: lpasscorecc-sc7280: Skip lpasscorecc registration Srinivasa Rao Mandadapu
2023-01-21 17:32 ` [RESEND v5 5/6] clk: qcom: lpassaudiocc-sc7280: Merge lpasscc into lpass_aon Srinivasa Rao Mandadapu
2023-01-21 17:32 ` [RESEND v5 6/6] clk: qcom: lpassaudiocc-sc7280: Skip lpass_aon_cc_pll config Srinivasa Rao Mandadapu
2023-01-22 13:51 ` [RESEND v5 0/6] Add resets for ADSP based audio clock controller driver Krzysztof Kozlowski
2023-01-23 5:13 ` Srinivasa Rao Mandadapu
2023-01-23 8:01 ` Krzysztof Kozlowski
2023-01-25 23:05 ` Stephen Boyd
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).