2020-01-08 05:59:17

by Bjorn Andersson

[permalink] [raw]
Subject: [PATCH] arm64: dts: qcom: db410c: Update firmware-name for wcnss and mpss

Enable the mpss remoteproc node and specify the firmware-name for this
and the wcnss remoteproc on the Dragonboard 410c.

Signed-off-by: Bjorn Andersson <[email protected]>
---
arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi | 6 ++++++
arch/arm64/boot/dts/qcom/msm8916.dtsi | 2 +-
2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi b/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi
index 037e26b3f8d5..298684c62cc1 100644
--- a/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi
+++ b/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi
@@ -494,6 +494,7 @@

wcnss@a21b000 {
status = "okay";
+ firmware-name = "qcom/msm8916/wcnss.mdt";
};
};

@@ -538,6 +539,11 @@
};
};

+&mpss {
+ status = "okay";
+ firmware-name = "qcom/msm8916/mba.mbn", "qcom/msm8916/modem.mdt";
+};
+
&spmi_bus {
pm8916_0: pm8916@0 {
pon@800 {
diff --git a/arch/arm64/boot/dts/qcom/msm8916.dtsi b/arch/arm64/boot/dts/qcom/msm8916.dtsi
index 9c4d89319e7c..1ced09a61531 100644
--- a/arch/arm64/boot/dts/qcom/msm8916.dtsi
+++ b/arch/arm64/boot/dts/qcom/msm8916.dtsi
@@ -1054,7 +1054,7 @@
};


- hexagon@4080000 {
+ mpss: remoteproc@4080000 {
compatible = "qcom,q6v5-pil";
reg = <0x04080000 0x100>,
<0x04020000 0x040>;
--
2.24.0


2021-02-17 22:49:34

by Aníbal Limón

[permalink] [raw]
Subject: [PATCH] arm64: dts: qcom: db410c: Update firmware-name for wcnss and mpss

From: Bjorn Andersson <[email protected]>

Enable the mpss remoteproc node and specify the firmware-name for this
and the wcnss remoteproc on the Dragonboard 410c.

Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Bjorn Andersson <[email protected]>
[rebased and moved to use pronto label]
Signed-off-by: Vinod Koul <[email protected]>
Tested-by: Aníbal Limón <[email protected]>
---
arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi | 6 ++++++
1 file changed, 6 insertions(+)

diff --git a/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi b/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi
index 3c7f97539390..8f1ada75d3ed 100644
--- a/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi
+++ b/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi
@@ -301,6 +301,11 @@ &lpass {
status = "okay";
};

+&mpss {
+ status = "okay";
+ firmware-name = "qcom/msm8916/mba.mbn", "qcom/msm8916/modem.mdt";
+};
+
&pm8916_resin {
status = "okay";
linux,code = <KEY_VOLUMEDOWN>;
@@ -308,6 +313,7 @@ &pm8916_resin {

&pronto {
status = "okay";
+ firmware-name = "qcom/msm8916/wcnss.mdt";
};

&sdhc_1 {
--
2.30.0

2021-02-18 04:24:12

by Vinod Koul

[permalink] [raw]
Subject: Re: [PATCH] arm64: dts: qcom: db410c: Update firmware-name for wcnss and mpss

On 17-02-21, 16:34, An?bal Lim?n wrote:
> From: Bjorn Andersson <[email protected]>
>
> Enable the mpss remoteproc node and specify the firmware-name for this
> and the wcnss remoteproc on the Dragonboard 410c.
>
> Link: https://lore.kernel.org/r/[email protected]
> Signed-off-by: Bjorn Andersson <[email protected]>
> [rebased and moved to use pronto label]
> Signed-off-by: Vinod Koul <[email protected]>
> Tested-by: An?bal Lim?n <[email protected]>
> ---
> arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi b/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi
> index 3c7f97539390..8f1ada75d3ed 100644
> --- a/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi
> +++ b/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi
> @@ -301,6 +301,11 @@ &lpass {
> status = "okay";
> };
>
> +&mpss {
> + status = "okay";
> + firmware-name = "qcom/msm8916/mba.mbn", "qcom/msm8916/modem.mdt";

Shouldn't this one be mba.mdt?

> +};
> +
> &pm8916_resin {
> status = "okay";
> linux,code = <KEY_VOLUMEDOWN>;
> @@ -308,6 +313,7 @@ &pm8916_resin {
>
> &pronto {
> status = "okay";
> + firmware-name = "qcom/msm8916/wcnss.mdt";
> };
>
> &sdhc_1 {
> --
> 2.30.0

--
~Vinod

2021-08-24 12:41:04

by Dmitry Baryshkov

[permalink] [raw]
Subject: Re: [PATCH] arm64: dts: qcom: db410c: Update firmware-name for wcnss and mpss

On Thu, 18 Feb 2021 at 01:38, Aníbal Limón <[email protected]> wrote:
>
> From: Bjorn Andersson <[email protected]>
>
> Enable the mpss remoteproc node and specify the firmware-name for this
> and the wcnss remoteproc on the Dragonboard 410c.
>
> Link: https://lore.kernel.org/r/[email protected]
> Signed-off-by: Bjorn Andersson <[email protected]>
> [rebased and moved to use pronto label]
> Signed-off-by: Vinod Koul <[email protected]>
> Tested-by: Aníbal Limón <[email protected]>

Reviewed-by: Dmitry Baryshkov <[email protected]>

> ---
> arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi b/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi
> index 3c7f97539390..8f1ada75d3ed 100644
> --- a/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi
> +++ b/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi
> @@ -301,6 +301,11 @@ &lpass {
> status = "okay";
> };
>
> +&mpss {
> + status = "okay";
> + firmware-name = "qcom/msm8916/mba.mbn", "qcom/msm8916/modem.mdt";
> +};
> +
> &pm8916_resin {
> status = "okay";
> linux,code = <KEY_VOLUMEDOWN>;
> @@ -308,6 +313,7 @@ &pm8916_resin {
>
> &pronto {
> status = "okay";
> + firmware-name = "qcom/msm8916/wcnss.mdt";
> };
>
> &sdhc_1 {
> --
> 2.30.0
>


--
With best wishes
Dmitry

2021-08-24 12:43:09

by Dmitry Baryshkov

[permalink] [raw]
Subject: Re: [PATCH] arm64: dts: qcom: db410c: Update firmware-name for wcnss and mpss

On Thu, 18 Feb 2021 at 07:20, Vinod Koul <[email protected]> wrote:
>
> On 17-02-21, 16:34, Aníbal Limón wrote:
> > From: Bjorn Andersson <[email protected]>
> >
> > Enable the mpss remoteproc node and specify the firmware-name for this
> > and the wcnss remoteproc on the Dragonboard 410c.
> >
> > Link: https://lore.kernel.org/r/[email protected]
> > Signed-off-by: Bjorn Andersson <[email protected]>
> > [rebased and moved to use pronto label]
> > Signed-off-by: Vinod Koul <[email protected]>
> > Tested-by: Aníbal Limón <[email protected]>
> > ---
> > arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi | 6 ++++++
> > 1 file changed, 6 insertions(+)
> >
> > diff --git a/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi b/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi
> > index 3c7f97539390..8f1ada75d3ed 100644
> > --- a/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi
> > +++ b/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi
> > @@ -301,6 +301,11 @@ &lpass {
> > status = "okay";
> > };
> >
> > +&mpss {
> > + status = "okay";
> > + firmware-name = "qcom/msm8916/mba.mbn", "qcom/msm8916/modem.mdt";
>
> Shouldn't this one be mba.mdt?

No, firmware-qcom-db410c provides mba.mbn rather than mba.mdt

>
> > +};
> > +
> > &pm8916_resin {
> > status = "okay";
> > linux,code = <KEY_VOLUMEDOWN>;
> > @@ -308,6 +313,7 @@ &pm8916_resin {
> >
> > &pronto {
> > status = "okay";
> > + firmware-name = "qcom/msm8916/wcnss.mdt";
> > };
> >
> > &sdhc_1 {
> > --
> > 2.30.0
>
> --
> ~Vinod



--
With best wishes
Dmitry

2021-08-24 14:46:26

by Bjorn Andersson

[permalink] [raw]
Subject: Re: [PATCH] arm64: dts: qcom: db410c: Update firmware-name for wcnss and mpss

On Tue 24 Aug 05:39 PDT 2021, Dmitry Baryshkov wrote:

> On Thu, 18 Feb 2021 at 01:38, An?bal Lim?n <[email protected]> wrote:
> >
> > From: Bjorn Andersson <[email protected]>
> >
> > Enable the mpss remoteproc node and specify the firmware-name for this
> > and the wcnss remoteproc on the Dragonboard 410c.
> >
> > Link: https://lore.kernel.org/r/[email protected]
> > Signed-off-by: Bjorn Andersson <[email protected]>
> > [rebased and moved to use pronto label]
> > Signed-off-by: Vinod Koul <[email protected]>
> > Tested-by: An?bal Lim?n <[email protected]>
>
> Reviewed-by: Dmitry Baryshkov <[email protected]>
>

Thanks Dmitry, not sure why this hasn't been merged yet.

Taking a further look at this I noticed that we never pushed the
firmware to linux-firmware either, which I think was because we where
uncertain of the directory structure at the time - a discussion which
has been settled since.

> > ---
> > arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi | 6 ++++++
> > 1 file changed, 6 insertions(+)
> >
> > diff --git a/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi b/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi
> > index 3c7f97539390..8f1ada75d3ed 100644
> > --- a/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi
> > +++ b/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi
> > @@ -301,6 +301,11 @@ &lpass {
> > status = "okay";
> > };
> >
> > +&mpss {
> > + status = "okay";
> > + firmware-name = "qcom/msm8916/mba.mbn", "qcom/msm8916/modem.mdt";

But if we're pushing things to linux-firmware, does anyone object
against following the existing style and squashing the mdt+bNN files
into .mbn (and thereby making this modem.mbn and below wcnss.mbn)?

Regards,
Bjorn

> > +};
> > +
> > &pm8916_resin {
> > status = "okay";
> > linux,code = <KEY_VOLUMEDOWN>;
> > @@ -308,6 +313,7 @@ &pm8916_resin {
> >
> > &pronto {
> > status = "okay";
> > + firmware-name = "qcom/msm8916/wcnss.mdt";
> > };
> >
> > &sdhc_1 {
> > --
> > 2.30.0
> >
>
>
> --
> With best wishes
> Dmitry

2021-08-24 15:55:06

by Stephan Gerhold

[permalink] [raw]
Subject: Re: [PATCH] arm64: dts: qcom: db410c: Update firmware-name for wcnss and mpss

On Tue, Aug 24, 2021 at 07:46:04AM -0700, Bjorn Andersson wrote:
> On Tue 24 Aug 05:39 PDT 2021, Dmitry Baryshkov wrote:
>
> > On Thu, 18 Feb 2021 at 01:38, An?bal Lim?n <[email protected]> wrote:
> > >
> > > From: Bjorn Andersson <[email protected]>
> > >
> > > Enable the mpss remoteproc node and specify the firmware-name for this
> > > and the wcnss remoteproc on the Dragonboard 410c.
> > >
> > > Link: https://lore.kernel.org/r/[email protected]
> > > Signed-off-by: Bjorn Andersson <[email protected]>
> > > [rebased and moved to use pronto label]
> > > Signed-off-by: Vinod Koul <[email protected]>
> > > Tested-by: An?bal Lim?n <[email protected]>
> >
> > Reviewed-by: Dmitry Baryshkov <[email protected]>
> >
>
> Thanks Dmitry, not sure why this hasn't been merged yet.
>

This patch keeps getting stuck for some reason.
It was sent several times already but always forgotten. :)

> Taking a further look at this I noticed that we never pushed the
> firmware to linux-firmware either, which I think was because we where
> uncertain of the directory structure at the time - a discussion which
> has been settled since.
>
> > > ---
> > > arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi | 6 ++++++
> > > 1 file changed, 6 insertions(+)
> > >
> > > diff --git a/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi b/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi
> > > index 3c7f97539390..8f1ada75d3ed 100644
> > > --- a/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi
> > > +++ b/arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi
> > > @@ -301,6 +301,11 @@ &lpass {
> > > status = "okay";
> > > };
> > >
> > > +&mpss {
> > > + status = "okay";
> > > + firmware-name = "qcom/msm8916/mba.mbn", "qcom/msm8916/modem.mdt";
>
> But if we're pushing things to linux-firmware, does anyone object
> against following the existing style and squashing the mdt+bNN files
> into .mbn (and thereby making this modem.mbn and below wcnss.mbn)?
>

You made this change in some version already :)
https://lore.kernel.org/linux-arm-msm/[email protected]/

I think there was no real objection back then but more confusion about
how to get the squashed .mbn variant. Having it in linux-firmware would
certainly make it a lot easier overall if you can make that happen. :)

The latest version of this patch that I am aware of is the following one:
https://lore.kernel.org/linux-arm-msm/[email protected]/

As I wrote there it's mainly stuck on getting the related wcn36xx patch [1]
merged. Can you resend that one maybe?

Thanks,
Stephan

[1]: https://lore.kernel.org/linux-arm-msm/[email protected]/