linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4 0/2] remoteproc: qcom: Add support for MSM8953 ADSP
@ 2022-10-13  4:27 Sireesh Kodali
  2022-10-13  4:27 ` [PATCH v4 1/2] remoteproc: qcom: pas: Add MSM8953 ADSP PIL support Sireesh Kodali
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Sireesh Kodali @ 2022-10-13  4:27 UTC (permalink / raw)
  To: devicetree, linux-arm-msm, linux-remoteproc,
	~postmarketos/upstreaming, linux-kernel
  Cc: andersson, krzysztof.kozlowski+dt, dmitry.baryshkov, Sireesh Kodali

This patch series adds support for the ADSP PIL as found on the MSM8953
platform. It is a subset of a previous patch series.

Changes since v3:
 * Made ordering of compatible strings lexical in driver patch

Link to v3: https://lkml.org/lkml/2022/10/8/204

Sireesh Kodali (2):
  remoteproc: qcom: pas: Add MSM8953 ADSP PIL support
  dt-bindings: remoteproc: qcom: adsp: Add ADSP on MSM8953

 Documentation/devicetree/bindings/remoteproc/qcom,adsp.yaml | 5 +++++
 drivers/remoteproc/qcom_q6v5_pas.c                          | 1 +
 2 files changed, 6 insertions(+)

-- 
2.38.0


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH v4 1/2] remoteproc: qcom: pas: Add MSM8953 ADSP PIL support
  2022-10-13  4:27 [PATCH v4 0/2] remoteproc: qcom: Add support for MSM8953 ADSP Sireesh Kodali
@ 2022-10-13  4:27 ` Sireesh Kodali
  2022-10-13  6:44   ` Neil Armstrong
  2022-10-13 13:39   ` Krzysztof Kozlowski
  2022-10-13  4:27 ` [PATCH v4 2/2] dt-bindings: remoteproc: qcom: adsp: Add ADSP on MSM8953 Sireesh Kodali
  2022-12-28 18:18 ` [PATCH v4 0/2] remoteproc: qcom: Add support for MSM8953 ADSP Bjorn Andersson
  2 siblings, 2 replies; 6+ messages in thread
From: Sireesh Kodali @ 2022-10-13  4:27 UTC (permalink / raw)
  To: devicetree, linux-arm-msm, linux-remoteproc,
	~postmarketos/upstreaming, linux-kernel
  Cc: andersson, krzysztof.kozlowski+dt, dmitry.baryshkov,
	Sireesh Kodali, Andy Gross, Konrad Dybcio, Mathieu Poirier

Add support for the Audio DSP PIL found on the Qualcomm MSM8953
platform. The same configuration is used on all SoCs based on the
MSM8953 platform (SDM450, SDA450, SDM625, SDM632, APQ8053).

Signed-off-by: Sireesh Kodali <sireeshkodali1@gmail.com>
---
 drivers/remoteproc/qcom_q6v5_pas.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/remoteproc/qcom_q6v5_pas.c b/drivers/remoteproc/qcom_q6v5_pas.c
index 6afd0941e552..eff8d34d7f4b 100644
--- a/drivers/remoteproc/qcom_q6v5_pas.c
+++ b/drivers/remoteproc/qcom_q6v5_pas.c
@@ -948,6 +948,7 @@ static const struct adsp_data sm8450_mpss_resource = {
 
 static const struct of_device_id adsp_of_match[] = {
 	{ .compatible = "qcom,msm8226-adsp-pil", .data = &adsp_resource_init},
+	{ .compatible = "qcom,msm8953-adsp-pil", .data = &msm8996_adsp_resource},
 	{ .compatible = "qcom,msm8974-adsp-pil", .data = &adsp_resource_init},
 	{ .compatible = "qcom,msm8996-adsp-pil", .data = &msm8996_adsp_resource},
 	{ .compatible = "qcom,msm8996-slpi-pil", .data = &slpi_resource_init},
-- 
2.38.0


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH v4 2/2] dt-bindings: remoteproc: qcom: adsp: Add ADSP on MSM8953
  2022-10-13  4:27 [PATCH v4 0/2] remoteproc: qcom: Add support for MSM8953 ADSP Sireesh Kodali
  2022-10-13  4:27 ` [PATCH v4 1/2] remoteproc: qcom: pas: Add MSM8953 ADSP PIL support Sireesh Kodali
@ 2022-10-13  4:27 ` Sireesh Kodali
  2022-12-28 18:18 ` [PATCH v4 0/2] remoteproc: qcom: Add support for MSM8953 ADSP Bjorn Andersson
  2 siblings, 0 replies; 6+ messages in thread
From: Sireesh Kodali @ 2022-10-13  4:27 UTC (permalink / raw)
  To: devicetree, linux-arm-msm, linux-remoteproc,
	~postmarketos/upstreaming, linux-kernel
  Cc: andersson, krzysztof.kozlowski+dt, dmitry.baryshkov,
	Sireesh Kodali, Krzysztof Kozlowski, Andy Gross, Konrad Dybcio,
	Mathieu Poirier, Rob Herring, Manivannan Sadhasivam

Add support for booting the Audio DSP on the MSM8953 platform. This is
used by SoCs like SDM450, SDM625, SDM626, APQ8053, etc. Since the
configuration is the same on all SoCs, a single compatible string is
used.

Signed-off-by: Sireesh Kodali <sireeshkodali1@gmail.com>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 Documentation/devicetree/bindings/remoteproc/qcom,adsp.yaml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/Documentation/devicetree/bindings/remoteproc/qcom,adsp.yaml b/Documentation/devicetree/bindings/remoteproc/qcom,adsp.yaml
index db9e0f0c2bea..b1127bc0f01a 100644
--- a/Documentation/devicetree/bindings/remoteproc/qcom,adsp.yaml
+++ b/Documentation/devicetree/bindings/remoteproc/qcom,adsp.yaml
@@ -17,6 +17,7 @@ properties:
   compatible:
     enum:
       - qcom,msm8226-adsp-pil
+      - qcom,msm8953-adsp-pil
       - qcom,msm8974-adsp-pil
       - qcom,msm8996-adsp-pil
       - qcom,msm8996-slpi-pil
@@ -179,6 +180,7 @@ allOf:
           contains:
             enum:
               - qcom,msm8226-adsp-pil
+              - qcom,msm8953-adsp-pil
               - qcom,msm8974-adsp-pil
               - qcom,msm8996-adsp-pil
               - qcom,msm8996-slpi-pil
@@ -298,6 +300,7 @@ allOf:
           contains:
             enum:
               - qcom,msm8226-adsp-pil
+              - qcom,msm8953-adsp-pil
               - qcom,msm8974-adsp-pil
               - qcom,msm8996-adsp-pil
               - qcom,msm8996-slpi-pil
@@ -370,6 +373,7 @@ allOf:
           contains:
             enum:
               - qcom,msm8226-adsp-pil
+              - qcom,msm8953-adsp-pil
               - qcom,msm8996-adsp-pil
               - qcom,msm8998-adsp-pas
               - qcom,sm8150-adsp-pas
@@ -559,6 +563,7 @@ allOf:
           contains:
             enum:
               - qcom,msm8226-adsp-pil
+              - qcom,msm8953-adsp-pil
               - qcom,msm8974-adsp-pil
               - qcom,msm8996-adsp-pil
               - qcom,msm8996-slpi-pil
-- 
2.38.0


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH v4 1/2] remoteproc: qcom: pas: Add MSM8953 ADSP PIL support
  2022-10-13  4:27 ` [PATCH v4 1/2] remoteproc: qcom: pas: Add MSM8953 ADSP PIL support Sireesh Kodali
@ 2022-10-13  6:44   ` Neil Armstrong
  2022-10-13 13:39   ` Krzysztof Kozlowski
  1 sibling, 0 replies; 6+ messages in thread
From: Neil Armstrong @ 2022-10-13  6:44 UTC (permalink / raw)
  To: Sireesh Kodali, devicetree, linux-arm-msm, linux-remoteproc,
	~postmarketos/upstreaming, linux-kernel
  Cc: andersson, krzysztof.kozlowski+dt, dmitry.baryshkov, Andy Gross,
	Konrad Dybcio, Mathieu Poirier

On 13/10/2022 06:27, Sireesh Kodali wrote:
> Add support for the Audio DSP PIL found on the Qualcomm MSM8953
> platform. The same configuration is used on all SoCs based on the
> MSM8953 platform (SDM450, SDA450, SDM625, SDM632, APQ8053).
> 
> Signed-off-by: Sireesh Kodali <sireeshkodali1@gmail.com>
> ---
>   drivers/remoteproc/qcom_q6v5_pas.c | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/remoteproc/qcom_q6v5_pas.c b/drivers/remoteproc/qcom_q6v5_pas.c
> index 6afd0941e552..eff8d34d7f4b 100644
> --- a/drivers/remoteproc/qcom_q6v5_pas.c
> +++ b/drivers/remoteproc/qcom_q6v5_pas.c
> @@ -948,6 +948,7 @@ static const struct adsp_data sm8450_mpss_resource = {
>   
>   static const struct of_device_id adsp_of_match[] = {
>   	{ .compatible = "qcom,msm8226-adsp-pil", .data = &adsp_resource_init},
> +	{ .compatible = "qcom,msm8953-adsp-pil", .data = &msm8996_adsp_resource},
>   	{ .compatible = "qcom,msm8974-adsp-pil", .data = &adsp_resource_init},
>   	{ .compatible = "qcom,msm8996-adsp-pil", .data = &msm8996_adsp_resource},
>   	{ .compatible = "qcom,msm8996-slpi-pil", .data = &slpi_resource_init},

Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v4 1/2] remoteproc: qcom: pas: Add MSM8953 ADSP PIL support
  2022-10-13  4:27 ` [PATCH v4 1/2] remoteproc: qcom: pas: Add MSM8953 ADSP PIL support Sireesh Kodali
  2022-10-13  6:44   ` Neil Armstrong
@ 2022-10-13 13:39   ` Krzysztof Kozlowski
  1 sibling, 0 replies; 6+ messages in thread
From: Krzysztof Kozlowski @ 2022-10-13 13:39 UTC (permalink / raw)
  To: Sireesh Kodali, devicetree, linux-arm-msm, linux-remoteproc,
	~postmarketos/upstreaming, linux-kernel
  Cc: andersson, krzysztof.kozlowski+dt, dmitry.baryshkov, Andy Gross,
	Konrad Dybcio, Mathieu Poirier

On 13/10/2022 00:27, Sireesh Kodali wrote:
> Add support for the Audio DSP PIL found on the Qualcomm MSM8953
> platform. The same configuration is used on all SoCs based on the
> MSM8953 platform (SDM450, SDA450, SDM625, SDM632, APQ8053).
> 
> Signed-off-by: Sireesh Kodali <sireeshkodali1@gmail.com>
> ---


Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Best regards,
Krzysztof


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v4 0/2] remoteproc: qcom: Add support for MSM8953 ADSP
  2022-10-13  4:27 [PATCH v4 0/2] remoteproc: qcom: Add support for MSM8953 ADSP Sireesh Kodali
  2022-10-13  4:27 ` [PATCH v4 1/2] remoteproc: qcom: pas: Add MSM8953 ADSP PIL support Sireesh Kodali
  2022-10-13  4:27 ` [PATCH v4 2/2] dt-bindings: remoteproc: qcom: adsp: Add ADSP on MSM8953 Sireesh Kodali
@ 2022-12-28 18:18 ` Bjorn Andersson
  2 siblings, 0 replies; 6+ messages in thread
From: Bjorn Andersson @ 2022-12-28 18:18 UTC (permalink / raw)
  To: sireeshkodali1, ~postmarketos/upstreaming, devicetree,
	linux-arm-msm, linux-remoteproc, linux-kernel
  Cc: dmitry.baryshkov, krzysztof.kozlowski+dt

On Thu, 13 Oct 2022 09:57:47 +0530, Sireesh Kodali wrote:
> This patch series adds support for the ADSP PIL as found on the MSM8953
> platform. It is a subset of a previous patch series.
> 
> Changes since v3:
>  * Made ordering of compatible strings lexical in driver patch
> 
> Link to v3: https://lkml.org/lkml/2022/10/8/204
> 
> [...]

Applied, thanks!

[1/2] remoteproc: qcom: pas: Add MSM8953 ADSP PIL support
      commit: 1cfaa13b82c73977e8ddaca63c791203addc39c1
[2/2] dt-bindings: remoteproc: qcom: adsp: Add ADSP on MSM8953
      commit: 4a0510a46c4447ad3e807a1e4d6cf195fd604c1d

Best regards,
-- 
Bjorn Andersson <andersson@kernel.org>

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-12-28 18:19 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-13  4:27 [PATCH v4 0/2] remoteproc: qcom: Add support for MSM8953 ADSP Sireesh Kodali
2022-10-13  4:27 ` [PATCH v4 1/2] remoteproc: qcom: pas: Add MSM8953 ADSP PIL support Sireesh Kodali
2022-10-13  6:44   ` Neil Armstrong
2022-10-13 13:39   ` Krzysztof Kozlowski
2022-10-13  4:27 ` [PATCH v4 2/2] dt-bindings: remoteproc: qcom: adsp: Add ADSP on MSM8953 Sireesh Kodali
2022-12-28 18:18 ` [PATCH v4 0/2] remoteproc: qcom: Add support for MSM8953 ADSP Bjorn Andersson

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).