* [PATCH 1/2] dt-bindings: remoteproc: qcom,adsp: Add SM6375 ADSP and CDSP
@ 2022-11-09 17:08 Konrad Dybcio
2022-11-09 17:08 ` [PATCH 2/2] remoteproc: qcom: pas: Add SM6375 ADSP & CDSP Konrad Dybcio
2022-11-10 9:32 ` [PATCH 1/2] dt-bindings: remoteproc: qcom,adsp: Add SM6375 ADSP and CDSP Krzysztof Kozlowski
0 siblings, 2 replies; 4+ messages in thread
From: Konrad Dybcio @ 2022-11-09 17:08 UTC (permalink / raw)
To: linux-arm-msm, andersson, agross, krzysztof.kozlowski
Cc: patches, Konrad Dybcio, Konrad Dybcio, Mathieu Poirier,
Rob Herring, Krzysztof Kozlowski, Manivannan Sadhasivam,
linux-remoteproc, devicetree, linux-kernel
Add entries for SM6375 ADSP and CDSP. They are effectively the same
as SM6350 ADSP and SM8150 CDSP respectively.
Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org>
---
.../devicetree/bindings/remoteproc/qcom,adsp.yaml | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/Documentation/devicetree/bindings/remoteproc/qcom,adsp.yaml b/Documentation/devicetree/bindings/remoteproc/qcom,adsp.yaml
index db9e0f0c2bea..a9219c7c8349 100644
--- a/Documentation/devicetree/bindings/remoteproc/qcom,adsp.yaml
+++ b/Documentation/devicetree/bindings/remoteproc/qcom,adsp.yaml
@@ -40,6 +40,8 @@ properties:
- qcom,sm6350-adsp-pas
- qcom,sm6350-cdsp-pas
- qcom,sm6350-mpss-pas
+ - qcom,sm6375-adsp-pas
+ - qcom,sm6375-cdsp-pas
- qcom,sm8150-adsp-pas
- qcom,sm8150-cdsp-pas
- qcom,sm8150-mpss-pas
@@ -197,6 +199,8 @@ allOf:
- qcom,sm6350-adsp-pas
- qcom,sm6350-cdsp-pas
- qcom,sm6350-mpss-pas
+ - qcom,sm6375-adsp-pas
+ - qcom,sm6375-cdsp-pas
- qcom,sm8150-adsp-pas
- qcom,sm8150-cdsp-pas
- qcom,sm8150-mpss-pas
@@ -315,6 +319,8 @@ allOf:
- qcom,sdm845-cdsp-pas
- qcom,sm6350-adsp-pas
- qcom,sm6350-cdsp-pas
+ - qcom,sm6375-adsp-pas
+ - qcom,sm6375-cdsp-pas
- qcom,sm8150-adsp-pas
- qcom,sm8150-cdsp-pas
- qcom,sm8150-slpi-pas
@@ -372,6 +378,7 @@ allOf:
- qcom,msm8226-adsp-pil
- qcom,msm8996-adsp-pil
- qcom,msm8998-adsp-pas
+ - qcom,sm6375-cdsp-pas
- qcom,sm8150-adsp-pas
- qcom,sm8150-cdsp-pas
then:
@@ -468,6 +475,7 @@ allOf:
- qcom,sc8180x-cdsp-pas
- qcom,sc8280xp-adsp-pas
- qcom,sm6350-adsp-pas
+ - qcom,sm6375-adsp-pas
- qcom,sm8150-slpi-pas
- qcom,sm8250-adsp-pas
- qcom,sm8250-slpi-pas
--
2.38.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] remoteproc: qcom: pas: Add SM6375 ADSP & CDSP
2022-11-09 17:08 [PATCH 1/2] dt-bindings: remoteproc: qcom,adsp: Add SM6375 ADSP and CDSP Konrad Dybcio
@ 2022-11-09 17:08 ` Konrad Dybcio
2022-11-10 9:32 ` [PATCH 1/2] dt-bindings: remoteproc: qcom,adsp: Add SM6375 ADSP and CDSP Krzysztof Kozlowski
1 sibling, 0 replies; 4+ messages in thread
From: Konrad Dybcio @ 2022-11-09 17:08 UTC (permalink / raw)
To: linux-arm-msm, andersson, agross, krzysztof.kozlowski
Cc: patches, Konrad Dybcio, Konrad Dybcio, Mathieu Poirier,
Rob Herring, Krzysztof Kozlowski, Manivannan Sadhasivam,
linux-remoteproc, devicetree, linux-kernel
Add a config for the ADSP&CDSP present on SM6375.
Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org>
---
drivers/remoteproc/qcom_q6v5_pas.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/remoteproc/qcom_q6v5_pas.c b/drivers/remoteproc/qcom_q6v5_pas.c
index 6afd0941e552..80151101376e 100644
--- a/drivers/remoteproc/qcom_q6v5_pas.c
+++ b/drivers/remoteproc/qcom_q6v5_pas.c
@@ -971,6 +971,8 @@ static const struct of_device_id adsp_of_match[] = {
{ .compatible = "qcom,sm6350-adsp-pas", .data = &sm6350_adsp_resource},
{ .compatible = "qcom,sm6350-cdsp-pas", .data = &sm6350_cdsp_resource},
{ .compatible = "qcom,sm6350-mpss-pas", .data = &mpss_resource_init},
+ { .compatible = "qcom,sm6375-adsp-pas", .data = &sm6350_adsp_resource},
+ { .compatible = "qcom,sm6375-cdsp-pas", .data = &sm8150_cdsp_resource},
{ .compatible = "qcom,sm8150-adsp-pas", .data = &sm8150_adsp_resource},
{ .compatible = "qcom,sm8150-cdsp-pas", .data = &sm8150_cdsp_resource},
{ .compatible = "qcom,sm8150-mpss-pas", .data = &mpss_resource_init},
--
2.38.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] dt-bindings: remoteproc: qcom,adsp: Add SM6375 ADSP and CDSP
2022-11-09 17:08 [PATCH 1/2] dt-bindings: remoteproc: qcom,adsp: Add SM6375 ADSP and CDSP Konrad Dybcio
2022-11-09 17:08 ` [PATCH 2/2] remoteproc: qcom: pas: Add SM6375 ADSP & CDSP Konrad Dybcio
@ 2022-11-10 9:32 ` Krzysztof Kozlowski
2022-12-12 9:16 ` Krzysztof Kozlowski
1 sibling, 1 reply; 4+ messages in thread
From: Krzysztof Kozlowski @ 2022-11-10 9:32 UTC (permalink / raw)
To: Konrad Dybcio, linux-arm-msm, andersson, agross
Cc: patches, Konrad Dybcio, Mathieu Poirier, Rob Herring,
Krzysztof Kozlowski, Manivannan Sadhasivam, linux-remoteproc,
devicetree, linux-kernel
On 09/11/2022 18:08, Konrad Dybcio wrote:
> Add entries for SM6375 ADSP and CDSP. They are effectively the same
> as SM6350 ADSP and SM8150 CDSP respectively.
>
> Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org>
> ---
> .../devicetree/bindings/remoteproc/qcom,adsp.yaml | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] dt-bindings: remoteproc: qcom,adsp: Add SM6375 ADSP and CDSP
2022-11-10 9:32 ` [PATCH 1/2] dt-bindings: remoteproc: qcom,adsp: Add SM6375 ADSP and CDSP Krzysztof Kozlowski
@ 2022-12-12 9:16 ` Krzysztof Kozlowski
0 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2022-12-12 9:16 UTC (permalink / raw)
To: Konrad Dybcio, linux-arm-msm, andersson, agross
Cc: patches, Konrad Dybcio, Mathieu Poirier, Rob Herring,
Krzysztof Kozlowski, Manivannan Sadhasivam, linux-remoteproc,
devicetree, linux-kernel
On 10/11/2022 10:32, Krzysztof Kozlowski wrote:
> On 09/11/2022 18:08, Konrad Dybcio wrote:
>> Add entries for SM6375 ADSP and CDSP. They are effectively the same
>> as SM6350 ADSP and SM8150 CDSP respectively.
>>
>> Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org>
>> ---
>> .../devicetree/bindings/remoteproc/qcom,adsp.yaml | 8 ++++++++
>> 1 file changed, 8 insertions(+)
>>
>
>
> Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Although change looks ok, but I missed that it will conflict with my
series here:
https://lore.kernel.org/all/20221124184333.133911-1-krzysztof.kozlowski@linaro.org/
This should be moved to a new tile or merged with one of device-specific
bindings I added.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-12-12 9:17 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-09 17:08 [PATCH 1/2] dt-bindings: remoteproc: qcom,adsp: Add SM6375 ADSP and CDSP Konrad Dybcio
2022-11-09 17:08 ` [PATCH 2/2] remoteproc: qcom: pas: Add SM6375 ADSP & CDSP Konrad Dybcio
2022-11-10 9:32 ` [PATCH 1/2] dt-bindings: remoteproc: qcom,adsp: Add SM6375 ADSP and CDSP Krzysztof Kozlowski
2022-12-12 9:16 ` Krzysztof Kozlowski
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).