* [PATCHv2 1/5] ARM: dts: qcom: ipq4019: use nvmem-layout
2024-10-04 0:00 [PATCHv2 0/5] devicetree: move nvmem-cells users to nvmem-layout Rosen Penev
@ 2024-10-04 0:00 ` Rosen Penev
2024-10-04 0:00 ` [PATCHv2 2/5] arm64: dts: bcm4908: nvmem-layout conversion Rosen Penev
` (4 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Rosen Penev @ 2024-10-04 0:00 UTC (permalink / raw)
To: devicetree
Cc: Miquel Raynal, Richard Weinberger, Vignesh Raghavendra,
Rob Herring, Krzysztof Kozlowski, Conor Dooley, David S. Miller,
Eric Dumazet, Jakub Kicinski, Paolo Abeni, Bjorn Andersson,
Konrad Dybcio, William Zhang, Anand Gore, Kursad Oney,
Florian Fainelli, Rafał Miłecki,
Broadcom internal kernel review list, Andrew Lunn,
Gregory Clement, Sebastian Hesselbarth, Matthias Brugger,
AngeloGioacchino Del Regno, Rosen Penev, Manivannan Sadhasivam,
Christian Marangi, open list:MEMORY TECHNOLOGY DEVICES (MTD),
open list, open list:NETWORKING DRIVERS,
open list:ARM/QUALCOMM MAILING LIST,
moderated list:BROADCOM BCMBCA ARM ARCHITECTURE,
moderated list:ARM/Mediatek SoC support
nvmem-layout is a more flexible replacement for nvmem-cells.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
---
.../boot/dts/qcom/qcom-ipq4018-ap120c-ac.dtsi | 19 +++++++++++--------
1 file changed, 11 insertions(+), 8 deletions(-)
diff --git a/arch/arm/boot/dts/qcom/qcom-ipq4018-ap120c-ac.dtsi b/arch/arm/boot/dts/qcom/qcom-ipq4018-ap120c-ac.dtsi
index 0d23c03fae33..a6d4390efa7c 100644
--- a/arch/arm/boot/dts/qcom/qcom-ipq4018-ap120c-ac.dtsi
+++ b/arch/arm/boot/dts/qcom/qcom-ipq4018-ap120c-ac.dtsi
@@ -166,16 +166,19 @@ partition@170000 {
label = "ART";
reg = <0x00170000 0x00010000>;
read-only;
- compatible = "nvmem-cells";
- #address-cells = <1>;
- #size-cells = <1>;
- precal_art_1000: precal@1000 {
- reg = <0x1000 0x2f20>;
- };
+ nvmem-layout {
+ compatible = "fixed-layout";
+ #address-cells = <1>;
+ #size-cells = <1>;
+
+ precal_art_1000: precal@1000 {
+ reg = <0x1000 0x2f20>;
+ };
- precal_art_5000: precal@5000 {
- reg = <0x5000 0x2f20>;
+ precal_art_5000: precal@5000 {
+ reg = <0x5000 0x2f20>;
+ };
};
};
--
2.46.2
^ permalink raw reply related [flat|nested] 9+ messages in thread* [PATCHv2 2/5] arm64: dts: bcm4908: nvmem-layout conversion
2024-10-04 0:00 [PATCHv2 0/5] devicetree: move nvmem-cells users to nvmem-layout Rosen Penev
2024-10-04 0:00 ` [PATCHv2 1/5] ARM: dts: qcom: ipq4019: use nvmem-layout Rosen Penev
@ 2024-10-04 0:00 ` Rosen Penev
2024-10-04 0:00 ` [PATCHv2 3/5] arm64: dts: armada-3720-gl-mv1000: use nvmem-layout Rosen Penev
` (3 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Rosen Penev @ 2024-10-04 0:00 UTC (permalink / raw)
To: devicetree
Cc: Miquel Raynal, Richard Weinberger, Vignesh Raghavendra,
Rob Herring, Krzysztof Kozlowski, Conor Dooley, David S. Miller,
Eric Dumazet, Jakub Kicinski, Paolo Abeni, Bjorn Andersson,
Konrad Dybcio, William Zhang, Anand Gore, Kursad Oney,
Florian Fainelli, Rafał Miłecki,
Broadcom internal kernel review list, Andrew Lunn,
Gregory Clement, Sebastian Hesselbarth, Matthias Brugger,
AngeloGioacchino Del Regno, Rosen Penev, Manivannan Sadhasivam,
Christian Marangi, open list:MEMORY TECHNOLOGY DEVICES (MTD),
open list, open list:NETWORKING DRIVERS,
open list:ARM/QUALCOMM MAILING LIST,
moderated list:BROADCOM BCMBCA ARM ARCHITECTURE,
moderated list:ARM/Mediatek SoC support
nvmem-layout is a more flexible replacement for nvmem-cells.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
---
.../dts/broadcom/bcmbca/bcm4906-netgear-r8000p.dts | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/arch/arm64/boot/dts/broadcom/bcmbca/bcm4906-netgear-r8000p.dts b/arch/arm64/boot/dts/broadcom/bcmbca/bcm4906-netgear-r8000p.dts
index 999d93730240..df47fc75fa3a 100644
--- a/arch/arm64/boot/dts/broadcom/bcmbca/bcm4906-netgear-r8000p.dts
+++ b/arch/arm64/boot/dts/broadcom/bcmbca/bcm4906-netgear-r8000p.dts
@@ -144,16 +144,18 @@ partitions {
#size-cells = <1>;
partition@0 {
- compatible = "nvmem-cells";
label = "cferom";
reg = <0x0 0x100000>;
-
- #address-cells = <1>;
- #size-cells = <1>;
ranges = <0 0x0 0x100000>;
- base_mac_addr: mac@106a0 {
- reg = <0x106a0 0x6>;
+ nvmem-layout {
+ compatible = "fixed-layout";
+ #address-cells = <1>;
+ #size-cells = <1>;
+
+ base_mac_addr: mac@106a0 {
+ reg = <0x106a0 0x6>;
+ };
};
};
--
2.46.2
^ permalink raw reply related [flat|nested] 9+ messages in thread* [PATCHv2 3/5] arm64: dts: armada-3720-gl-mv1000: use nvmem-layout
2024-10-04 0:00 [PATCHv2 0/5] devicetree: move nvmem-cells users to nvmem-layout Rosen Penev
2024-10-04 0:00 ` [PATCHv2 1/5] ARM: dts: qcom: ipq4019: use nvmem-layout Rosen Penev
2024-10-04 0:00 ` [PATCHv2 2/5] arm64: dts: bcm4908: nvmem-layout conversion Rosen Penev
@ 2024-10-04 0:00 ` Rosen Penev
2024-10-04 0:00 ` [PATCHv2 4/5] arm64: dts: mediatek: 7886cax: " Rosen Penev
` (2 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Rosen Penev @ 2024-10-04 0:00 UTC (permalink / raw)
To: devicetree
Cc: Miquel Raynal, Richard Weinberger, Vignesh Raghavendra,
Rob Herring, Krzysztof Kozlowski, Conor Dooley, David S. Miller,
Eric Dumazet, Jakub Kicinski, Paolo Abeni, Bjorn Andersson,
Konrad Dybcio, William Zhang, Anand Gore, Kursad Oney,
Florian Fainelli, Rafał Miłecki,
Broadcom internal kernel review list, Andrew Lunn,
Gregory Clement, Sebastian Hesselbarth, Matthias Brugger,
AngeloGioacchino Del Regno, Rosen Penev, Manivannan Sadhasivam,
Christian Marangi, open list:MEMORY TECHNOLOGY DEVICES (MTD),
open list, open list:NETWORKING DRIVERS,
open list:ARM/QUALCOMM MAILING LIST,
moderated list:BROADCOM BCMBCA ARM ARCHITECTURE,
moderated list:ARM/Mediatek SoC support
nvmem-layout is a more flexible replacement for nvmem-cells.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
---
.../dts/marvell/armada-3720-gl-mv1000.dts | 30 +++++++++----------
1 file changed, 15 insertions(+), 15 deletions(-)
diff --git a/arch/arm64/boot/dts/marvell/armada-3720-gl-mv1000.dts b/arch/arm64/boot/dts/marvell/armada-3720-gl-mv1000.dts
index 56930f2ce481..7b801b60862d 100644
--- a/arch/arm64/boot/dts/marvell/armada-3720-gl-mv1000.dts
+++ b/arch/arm64/boot/dts/marvell/armada-3720-gl-mv1000.dts
@@ -98,10 +98,24 @@ partition@f0000 {
reg = <0xf0000 0x8000>;
};
- factory: partition@f8000 {
+ partition@f8000 {
label = "factory";
reg = <0xf8000 0x8000>;
read-only;
+
+ nvmem-layout {
+ compatible = "fixed-layout";
+ #address-cells = <1>;
+ #size-cells = <1>;
+
+ macaddr_factory_0: macaddr@0 {
+ reg = <0x0 0x6>;
+ };
+
+ macaddr_factory_6: macaddr@6 {
+ reg = <0x6 0x6>;
+ };
+ };
};
partition@100000 {
@@ -221,17 +235,3 @@ fixed-link {
full-duplex;
};
};
-
-&factory {
- compatible = "nvmem-cells";
- #address-cells = <1>;
- #size-cells = <1>;
-
- macaddr_factory_0: macaddr@0 {
- reg = <0x0 0x6>;
- };
-
- macaddr_factory_6: macaddr@6 {
- reg = <0x6 0x6>;
- };
-};
--
2.46.2
^ permalink raw reply related [flat|nested] 9+ messages in thread* [PATCHv2 4/5] arm64: dts: mediatek: 7886cax: use nvmem-layout
2024-10-04 0:00 [PATCHv2 0/5] devicetree: move nvmem-cells users to nvmem-layout Rosen Penev
` (2 preceding siblings ...)
2024-10-04 0:00 ` [PATCHv2 3/5] arm64: dts: armada-3720-gl-mv1000: use nvmem-layout Rosen Penev
@ 2024-10-04 0:00 ` Rosen Penev
2024-10-04 0:00 ` [PATCHv2 5/5] documentation: use nvmem-layout in examples Rosen Penev
2024-10-05 0:45 ` [PATCHv2 0/5] devicetree: move nvmem-cells users to nvmem-layout Rob Herring (Arm)
5 siblings, 0 replies; 9+ messages in thread
From: Rosen Penev @ 2024-10-04 0:00 UTC (permalink / raw)
To: devicetree
Cc: Miquel Raynal, Richard Weinberger, Vignesh Raghavendra,
Rob Herring, Krzysztof Kozlowski, Conor Dooley, David S. Miller,
Eric Dumazet, Jakub Kicinski, Paolo Abeni, Bjorn Andersson,
Konrad Dybcio, William Zhang, Anand Gore, Kursad Oney,
Florian Fainelli, Rafał Miłecki,
Broadcom internal kernel review list, Andrew Lunn,
Gregory Clement, Sebastian Hesselbarth, Matthias Brugger,
AngeloGioacchino Del Regno, Rosen Penev, Manivannan Sadhasivam,
Christian Marangi, open list:MEMORY TECHNOLOGY DEVICES (MTD),
open list, open list:NETWORKING DRIVERS,
open list:ARM/QUALCOMM MAILING LIST,
moderated list:BROADCOM BCMBCA ARM ARCHITECTURE,
moderated list:ARM/Mediatek SoC support
nvmem-layout is a more flexible replacement for nvmem-cells.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
---
arch/arm64/boot/dts/mediatek/mt7986a-acelink-ew-7886cax.dts | 1 -
1 file changed, 1 deletion(-)
diff --git a/arch/arm64/boot/dts/mediatek/mt7986a-acelink-ew-7886cax.dts b/arch/arm64/boot/dts/mediatek/mt7986a-acelink-ew-7886cax.dts
index 08b3b0827436..9a6625d8660f 100644
--- a/arch/arm64/boot/dts/mediatek/mt7986a-acelink-ew-7886cax.dts
+++ b/arch/arm64/boot/dts/mediatek/mt7986a-acelink-ew-7886cax.dts
@@ -121,7 +121,6 @@ partition@100000 {
};
partition@180000 {
- compatible = "nvmem-cells";
reg = <0x180000 0x200000>;
label = "factory";
read-only;
--
2.46.2
^ permalink raw reply related [flat|nested] 9+ messages in thread* [PATCHv2 5/5] documentation: use nvmem-layout in examples
2024-10-04 0:00 [PATCHv2 0/5] devicetree: move nvmem-cells users to nvmem-layout Rosen Penev
` (3 preceding siblings ...)
2024-10-04 0:00 ` [PATCHv2 4/5] arm64: dts: mediatek: 7886cax: " Rosen Penev
@ 2024-10-04 0:00 ` Rosen Penev
2024-10-04 6:24 ` Krzysztof Kozlowski
2024-10-05 0:45 ` [PATCHv2 0/5] devicetree: move nvmem-cells users to nvmem-layout Rob Herring (Arm)
5 siblings, 1 reply; 9+ messages in thread
From: Rosen Penev @ 2024-10-04 0:00 UTC (permalink / raw)
To: devicetree
Cc: Miquel Raynal, Richard Weinberger, Vignesh Raghavendra,
Rob Herring, Krzysztof Kozlowski, Conor Dooley, David S. Miller,
Eric Dumazet, Jakub Kicinski, Paolo Abeni, Bjorn Andersson,
Konrad Dybcio, William Zhang, Anand Gore, Kursad Oney,
Florian Fainelli, Rafał Miłecki,
Broadcom internal kernel review list, Andrew Lunn,
Gregory Clement, Sebastian Hesselbarth, Matthias Brugger,
AngeloGioacchino Del Regno, Rosen Penev, Manivannan Sadhasivam,
Christian Marangi, open list:MEMORY TECHNOLOGY DEVICES (MTD),
open list, open list:NETWORKING DRIVERS,
open list:ARM/QUALCOMM MAILING LIST,
moderated list:BROADCOM BCMBCA ARM ARCHITECTURE,
moderated list:ARM/Mediatek SoC support
nvmem-cells are deprecated and replaced with nvmem-layout. For these
examples, replace. They're not relevant to the main point of the
document anyway.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
---
.../mtd/partitions/qcom,smem-part.yaml | 19 +++++++++++--------
.../bindings/net/marvell,aquantia.yaml | 13 ++++++++-----
2 files changed, 19 insertions(+), 13 deletions(-)
diff --git a/Documentation/devicetree/bindings/mtd/partitions/qcom,smem-part.yaml b/Documentation/devicetree/bindings/mtd/partitions/qcom,smem-part.yaml
index 1c2b4e780ca9..8ae149534b23 100644
--- a/Documentation/devicetree/bindings/mtd/partitions/qcom,smem-part.yaml
+++ b/Documentation/devicetree/bindings/mtd/partitions/qcom,smem-part.yaml
@@ -45,17 +45,20 @@ examples:
compatible = "qcom,smem-part";
partition-art {
- compatible = "nvmem-cells";
- #address-cells = <1>;
- #size-cells = <1>;
label = "0:art";
- macaddr_art_0: macaddr@0 {
- reg = <0x0 0x6>;
- };
+ nvmem-layout {
+ compatible = "fixed-layout";
+ #address-cells = <1>;
+ #size-cells = <1>;
+
+ macaddr_art_0: macaddr@0 {
+ reg = <0x0 0x6>;
+ };
- macaddr_art_6: macaddr@6 {
- reg = <0x6 0x6>;
+ macaddr_art_6: macaddr@6 {
+ reg = <0x6 0x6>;
+ };
};
};
};
diff --git a/Documentation/devicetree/bindings/net/marvell,aquantia.yaml b/Documentation/devicetree/bindings/net/marvell,aquantia.yaml
index 9854fab4c4db..5d118553228b 100644
--- a/Documentation/devicetree/bindings/net/marvell,aquantia.yaml
+++ b/Documentation/devicetree/bindings/net/marvell,aquantia.yaml
@@ -98,15 +98,18 @@ examples:
/* ... */
partition@650000 {
- compatible = "nvmem-cells";
label = "0:ethphyfw";
reg = <0x650000 0x80000>;
read-only;
- #address-cells = <1>;
- #size-cells = <1>;
- aqr_fw: aqr_fw@0 {
- reg = <0x0 0x5f42a>;
+ nvmem-layout {
+ compatible = "fixed-layout";
+ #address-cells = <1>;
+ #size-cells = <1>;
+
+ aqr_fw: aqr_fw@0 {
+ reg = <0x0 0x5f42a>;
+ };
};
};
--
2.46.2
^ permalink raw reply related [flat|nested] 9+ messages in thread* Re: [PATCHv2 5/5] documentation: use nvmem-layout in examples
2024-10-04 0:00 ` [PATCHv2 5/5] documentation: use nvmem-layout in examples Rosen Penev
@ 2024-10-04 6:24 ` Krzysztof Kozlowski
2024-10-04 19:04 ` Rosen Penev
0 siblings, 1 reply; 9+ messages in thread
From: Krzysztof Kozlowski @ 2024-10-04 6:24 UTC (permalink / raw)
To: Rosen Penev, devicetree
Cc: Miquel Raynal, Richard Weinberger, Vignesh Raghavendra,
Rob Herring, Krzysztof Kozlowski, Conor Dooley, David S. Miller,
Eric Dumazet, Jakub Kicinski, Paolo Abeni, Bjorn Andersson,
Konrad Dybcio, William Zhang, Anand Gore, Kursad Oney,
Florian Fainelli, Rafał Miłecki,
Broadcom internal kernel review list, Andrew Lunn,
Gregory Clement, Sebastian Hesselbarth, Matthias Brugger,
AngeloGioacchino Del Regno, Manivannan Sadhasivam,
Christian Marangi, open list:MEMORY TECHNOLOGY DEVICES (MTD),
open list, open list:NETWORKING DRIVERS,
open list:ARM/QUALCOMM MAILING LIST,
moderated list:BROADCOM BCMBCA ARM ARCHITECTURE,
moderated list:ARM/Mediatek SoC support
On 04/10/2024 02:00, Rosen Penev wrote:
> nvmem-cells are deprecated and replaced with nvmem-layout. For these
> examples, replace. They're not relevant to the main point of the
> document anyway.
Please use subject prefixes matching the subsystem. You can get them for
example with `git log --oneline -- DIRECTORY_OR_FILE` on the directory
your patch is touching. For bindings, the preferred subjects are
explained here:
https://www.kernel.org/doc/html/latest/devicetree/bindings/submitting-patches.html#i-for-patch-submitters
>
> Signed-off-by: Rosen Penev <rosenp@gmail.com>
> ---
> .../mtd/partitions/qcom,smem-part.yaml | 19 +++++++++++--------
> .../bindings/net/marvell,aquantia.yaml | 13 ++++++++-----
> 2 files changed, 19 insertions(+), 13 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/mtd/partitions/qcom,smem-part.yaml b/Documentation/devicetree/bindings/mtd/partitions/qcom,smem-part.yaml
> index 1c2b4e780ca9..8ae149534b23 100644
> --- a/Documentation/devicetree/bindings/mtd/partitions/qcom,smem-part.yaml
> +++ b/Documentation/devicetree/bindings/mtd/partitions/qcom,smem-part.yaml
> @@ -45,17 +45,20 @@ examples:
> compatible = "qcom,smem-part";
>
> partition-art {
> - compatible = "nvmem-cells";
> - #address-cells = <1>;
> - #size-cells = <1>;
> label = "0:art";
>
> - macaddr_art_0: macaddr@0 {
> - reg = <0x0 0x6>;
> - };
> + nvmem-layout {
> + compatible = "fixed-layout";
This does not look right - the binding still expects nvmem-cells. I
wonder how does the nvmem-cells.yaml work if the compatible is being
removed so it is not being selected.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [PATCHv2 5/5] documentation: use nvmem-layout in examples
2024-10-04 6:24 ` Krzysztof Kozlowski
@ 2024-10-04 19:04 ` Rosen Penev
0 siblings, 0 replies; 9+ messages in thread
From: Rosen Penev @ 2024-10-04 19:04 UTC (permalink / raw)
To: Krzysztof Kozlowski
Cc: devicetree, Miquel Raynal, Richard Weinberger,
Vignesh Raghavendra, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, Bjorn Andersson, Konrad Dybcio, William Zhang,
Anand Gore, Kursad Oney, Florian Fainelli,
Rafał Miłecki, Broadcom internal kernel review list,
Andrew Lunn, Gregory Clement, Sebastian Hesselbarth,
Matthias Brugger, AngeloGioacchino Del Regno,
Manivannan Sadhasivam, Christian Marangi,
open list:MEMORY TECHNOLOGY DEVICES (MTD), open list,
open list:NETWORKING DRIVERS, open list:ARM/QUALCOMM MAILING LIST,
moderated list:BROADCOM BCMBCA ARM ARCHITECTURE,
moderated list:ARM/Mediatek SoC support
On Thu, Oct 3, 2024 at 11:25 PM Krzysztof Kozlowski <krzk@kernel.org> wrote:
>
> On 04/10/2024 02:00, Rosen Penev wrote:
> > nvmem-cells are deprecated and replaced with nvmem-layout. For these
> > examples, replace. They're not relevant to the main point of the
> > document anyway.
>
> Please use subject prefixes matching the subsystem. You can get them for
> example with `git log --oneline -- DIRECTORY_OR_FILE` on the directory
> your patch is touching. For bindings, the preferred subjects are
> explained here:
> https://www.kernel.org/doc/html/latest/devicetree/bindings/submitting-patches.html#i-for-patch-submitters
>
>
> >
> > Signed-off-by: Rosen Penev <rosenp@gmail.com>
> > ---
> > .../mtd/partitions/qcom,smem-part.yaml | 19 +++++++++++--------
> > .../bindings/net/marvell,aquantia.yaml | 13 ++++++++-----
> > 2 files changed, 19 insertions(+), 13 deletions(-)
> >
> > diff --git a/Documentation/devicetree/bindings/mtd/partitions/qcom,smem-part.yaml b/Documentation/devicetree/bindings/mtd/partitions/qcom,smem-part.yaml
> > index 1c2b4e780ca9..8ae149534b23 100644
> > --- a/Documentation/devicetree/bindings/mtd/partitions/qcom,smem-part.yaml
> > +++ b/Documentation/devicetree/bindings/mtd/partitions/qcom,smem-part.yaml
> > @@ -45,17 +45,20 @@ examples:
> > compatible = "qcom,smem-part";
> >
> > partition-art {
> > - compatible = "nvmem-cells";
> > - #address-cells = <1>;
> > - #size-cells = <1>;
> > label = "0:art";
> >
> > - macaddr_art_0: macaddr@0 {
> > - reg = <0x0 0x6>;
> > - };
> > + nvmem-layout {
> > + compatible = "fixed-layout";
>
> This does not look right - the binding still expects nvmem-cells. I
> wonder how does the nvmem-cells.yaml work if the compatible is being
> removed so it is not being selected.
Not sure I follow here. You mean replace nvmem-cells.yaml with
nvmem-layout.yaml ?
>
>
> Best regards,
> Krzysztof
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCHv2 0/5] devicetree: move nvmem-cells users to nvmem-layout
2024-10-04 0:00 [PATCHv2 0/5] devicetree: move nvmem-cells users to nvmem-layout Rosen Penev
` (4 preceding siblings ...)
2024-10-04 0:00 ` [PATCHv2 5/5] documentation: use nvmem-layout in examples Rosen Penev
@ 2024-10-05 0:45 ` Rob Herring (Arm)
5 siblings, 0 replies; 9+ messages in thread
From: Rob Herring (Arm) @ 2024-10-05 0:45 UTC (permalink / raw)
To: Rosen Penev
Cc: devicetree, Eric Dumazet, Florian Fainelli, Christian Marangi,
Rafał Miłecki, David S. Miller, Conor Dooley,
Matthias Brugger, linux-mediatek, Sebastian Hesselbarth,
linux-arm-kernel, Bjorn Andersson, Miquel Raynal, netdev,
Andrew Lunn, Vignesh Raghavendra, AngeloGioacchino Del Regno,
Krzysztof Kozlowski, Gregory Clement, Anand Gore,
Manivannan Sadhasivam, Jakub Kicinski, linux-mtd,
Richard Weinberger, William Zhang, linux-arm-msm, linux-kernel,
Paolo Abeni, Konrad Dybcio, Broadcom internal kernel review list,
Kursad Oney
On Thu, 03 Oct 2024 17:00:10 -0700, Rosen Penev wrote:
> The former has been soft deprecated by the latter. Move all users to the
> latter to avoid having nvmem-cells as an example.
>
> v2: add missing semicolon to fix dt_binding_check
>
> Rosen Penev (5):
> ARM: dts: qcom: ipq4019: use nvmem-layout
> arm64: dts: bcm4908: nvmem-layout conversion
> arm64: dts: armada-3720-gl-mv1000: use nvmem-layout
> arm64: dts: mediatek: 7886cax: use nvmem-layout
> documentation: use nvmem-layout in examples
>
> .../mtd/partitions/qcom,smem-part.yaml | 19 +++++++-----
> .../bindings/net/marvell,aquantia.yaml | 13 ++++----
> .../boot/dts/qcom/qcom-ipq4018-ap120c-ac.dtsi | 19 +++++++-----
> .../bcmbca/bcm4906-netgear-r8000p.dts | 14 +++++----
> .../dts/marvell/armada-3720-gl-mv1000.dts | 30 +++++++++----------
> .../mediatek/mt7986a-acelink-ew-7886cax.dts | 1 -
> 6 files changed, 53 insertions(+), 43 deletions(-)
>
> --
> 2.46.2
>
>
>
My bot found new DTB warnings on the .dts files added or changed in this
series.
Some warnings may be from an existing SoC .dtsi. Or perhaps the warnings
are fixed by another series. Ultimately, it is up to the platform
maintainer whether these warnings are acceptable or not. No need to reply
unless the platform maintainer has comments.
If you already ran DT checks and didn't see these error(s), then
make sure dt-schema is up to date:
pip3 install dtschema --upgrade
New warnings running 'make CHECK_DTBS=y broadcom/bcmbca/bcm4906-netgear-r8000p.dtb marvell/armada-3720-gl-mv1000.dtb mediatek/mt7986a-acelink-ew-7886cax.dtb' for 20241004000015.544297-1-rosenp@gmail.com:
arch/arm64/boot/dts/broadcom/bcmbca/bcm4906-netgear-r8000p.dts:149.4-30: Warning (ranges_format): /bus@ff800000/nand-controller@1800/nand@0/partitions/partition@0:ranges: "ranges" property has invalid length (12 bytes) (parent #address-cells == 1, child #address-cells == 2, #size-cells == 1)
^ permalink raw reply [flat|nested] 9+ messages in thread