* [PATCH 0/3] Various ARM64 Armada DT warning fixup
@ 2016-11-07 21:41 Gregory CLEMENT
2016-11-07 21:41 ` [PATCH 1/3] arm64: dts: marvell: Fixup internal-regs DT warning for Armada 37xx Gregory CLEMENT
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Gregory CLEMENT @ 2016-11-07 21:41 UTC (permalink / raw)
To: linux-arm-kernel
Following the series sent for Armada 370/XP, this patchset fixes up
various warning from the DT compiler when using the flag W=1 with
make.
Being a fresh new port, the arm64 we did a better job for dt than for
the arm32 so there is only a few patches needed.
Gregory
Gregory CLEMENT (3):
arm64: dts: marvell: Fixup internal-regs DT warning for Armada 37xx
arm64: dts: marvell: Fixup config-space DT warning For Armada 7K/8K
ARM64: dts: marvell: Fixup memory DT warning for Armada 37xx
arch/arm64/boot/dts/marvell/armada-3720-db.dts | 2 +-
arch/arm64/boot/dts/marvell/armada-3720-espressobin.dts | 2 +-
arch/arm64/boot/dts/marvell/armada-37xx.dtsi | 2 +-
arch/arm64/boot/dts/marvell/armada-ap806.dtsi | 2 +-
arch/arm64/boot/dts/marvell/armada-cp110-master.dtsi | 2 +-
arch/arm64/boot/dts/marvell/armada-cp110-slave.dtsi | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
--
2.10.1
^ permalink raw reply [flat|nested] 4+ messages in thread* [PATCH 1/3] arm64: dts: marvell: Fixup internal-regs DT warning for Armada 37xx
2016-11-07 21:41 [PATCH 0/3] Various ARM64 Armada DT warning fixup Gregory CLEMENT
@ 2016-11-07 21:41 ` Gregory CLEMENT
2016-11-07 21:41 ` [PATCH 2/3] arm64: dts: marvell: Fixup config-space DT warning For Armada 7K/8K Gregory CLEMENT
2016-11-07 21:41 ` [PATCH 3/3] ARM64: dts: marvell: Fixup memory DT warning for Armada 37xx Gregory CLEMENT
2 siblings, 0 replies; 4+ messages in thread
From: Gregory CLEMENT @ 2016-11-07 21:41 UTC (permalink / raw)
To: linux-arm-kernel
internal-regs has a ranges property so the unit name should contain an
address.
Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
---
arch/arm64/boot/dts/marvell/armada-37xx.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/marvell/armada-37xx.dtsi b/arch/arm64/boot/dts/marvell/armada-37xx.dtsi
index c4762538ec01..f1596daa2bc7 100644
--- a/arch/arm64/boot/dts/marvell/armada-37xx.dtsi
+++ b/arch/arm64/boot/dts/marvell/armada-37xx.dtsi
@@ -91,7 +91,7 @@
#size-cells = <2>;
ranges;
- internal-regs {
+ internal-regs at d0000000 {
#address-cells = <1>;
#size-cells = <1>;
compatible = "simple-bus";
--
2.10.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* [PATCH 2/3] arm64: dts: marvell: Fixup config-space DT warning For Armada 7K/8K
2016-11-07 21:41 [PATCH 0/3] Various ARM64 Armada DT warning fixup Gregory CLEMENT
2016-11-07 21:41 ` [PATCH 1/3] arm64: dts: marvell: Fixup internal-regs DT warning for Armada 37xx Gregory CLEMENT
@ 2016-11-07 21:41 ` Gregory CLEMENT
2016-11-07 21:41 ` [PATCH 3/3] ARM64: dts: marvell: Fixup memory DT warning for Armada 37xx Gregory CLEMENT
2 siblings, 0 replies; 4+ messages in thread
From: Gregory CLEMENT @ 2016-11-07 21:41 UTC (permalink / raw)
To: linux-arm-kernel
config-space has a ranges property so the unit name should contain an
address.
Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
---
arch/arm64/boot/dts/marvell/armada-ap806.dtsi | 2 +-
arch/arm64/boot/dts/marvell/armada-cp110-master.dtsi | 2 +-
arch/arm64/boot/dts/marvell/armada-cp110-slave.dtsi | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/arch/arm64/boot/dts/marvell/armada-ap806.dtsi b/arch/arm64/boot/dts/marvell/armada-ap806.dtsi
index 7b6136182ad0..a749ba2edec4 100644
--- a/arch/arm64/boot/dts/marvell/armada-ap806.dtsi
+++ b/arch/arm64/boot/dts/marvell/armada-ap806.dtsi
@@ -71,7 +71,7 @@
interrupt-parent = <&gic>;
ranges;
- config-space {
+ config-space at f0000000 {
#address-cells = <1>;
#size-cells = <1>;
compatible = "simple-bus";
diff --git a/arch/arm64/boot/dts/marvell/armada-cp110-master.dtsi b/arch/arm64/boot/dts/marvell/armada-cp110-master.dtsi
index e5e3ed678b6f..607e9a3ef834 100644
--- a/arch/arm64/boot/dts/marvell/armada-cp110-master.dtsi
+++ b/arch/arm64/boot/dts/marvell/armada-cp110-master.dtsi
@@ -52,7 +52,7 @@
interrupt-parent = <&gic>;
ranges;
- config-space {
+ config-space at f2000000 {
#address-cells = <1>;
#size-cells = <1>;
compatible = "simple-bus";
diff --git a/arch/arm64/boot/dts/marvell/armada-cp110-slave.dtsi b/arch/arm64/boot/dts/marvell/armada-cp110-slave.dtsi
index 842fb333285c..88e74069c666 100644
--- a/arch/arm64/boot/dts/marvell/armada-cp110-slave.dtsi
+++ b/arch/arm64/boot/dts/marvell/armada-cp110-slave.dtsi
@@ -52,7 +52,7 @@
interrupt-parent = <&gic>;
ranges;
- config-space {
+ config-space at f4000000 {
#address-cells = <1>;
#size-cells = <1>;
compatible = "simple-bus";
--
2.10.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* [PATCH 3/3] ARM64: dts: marvell: Fixup memory DT warning for Armada 37xx
2016-11-07 21:41 [PATCH 0/3] Various ARM64 Armada DT warning fixup Gregory CLEMENT
2016-11-07 21:41 ` [PATCH 1/3] arm64: dts: marvell: Fixup internal-regs DT warning for Armada 37xx Gregory CLEMENT
2016-11-07 21:41 ` [PATCH 2/3] arm64: dts: marvell: Fixup config-space DT warning For Armada 7K/8K Gregory CLEMENT
@ 2016-11-07 21:41 ` Gregory CLEMENT
2 siblings, 0 replies; 4+ messages in thread
From: Gregory CLEMENT @ 2016-11-07 21:41 UTC (permalink / raw)
To: linux-arm-kernel
memory has a reg property so the unit name should contain an address.
Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
---
arch/arm64/boot/dts/marvell/armada-3720-db.dts | 2 +-
arch/arm64/boot/dts/marvell/armada-3720-espressobin.dts | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm64/boot/dts/marvell/armada-3720-db.dts b/arch/arm64/boot/dts/marvell/armada-3720-db.dts
index 1372e9a6aaa4..a260ae25b658 100644
--- a/arch/arm64/boot/dts/marvell/armada-3720-db.dts
+++ b/arch/arm64/boot/dts/marvell/armada-3720-db.dts
@@ -56,7 +56,7 @@
stdout-path = "serial0:115200n8";
};
- memory {
+ memory at 0 {
device_type = "memory";
reg = <0x00000000 0x00000000 0x00000000 0x20000000>;
};
diff --git a/arch/arm64/boot/dts/marvell/armada-3720-espressobin.dts b/arch/arm64/boot/dts/marvell/armada-3720-espressobin.dts
index eadd5993c7bd..83178d909fc2 100644
--- a/arch/arm64/boot/dts/marvell/armada-3720-espressobin.dts
+++ b/arch/arm64/boot/dts/marvell/armada-3720-espressobin.dts
@@ -55,7 +55,7 @@
stdout-path = "serial0:115200n8";
};
- memory {
+ memory at 0 {
device_type = "memory";
reg = <0x00000000 0x00000000 0x00000000 0x20000000>;
};
--
2.10.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-11-07 21:41 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-07 21:41 [PATCH 0/3] Various ARM64 Armada DT warning fixup Gregory CLEMENT
2016-11-07 21:41 ` [PATCH 1/3] arm64: dts: marvell: Fixup internal-regs DT warning for Armada 37xx Gregory CLEMENT
2016-11-07 21:41 ` [PATCH 2/3] arm64: dts: marvell: Fixup config-space DT warning For Armada 7K/8K Gregory CLEMENT
2016-11-07 21:41 ` [PATCH 3/3] ARM64: dts: marvell: Fixup memory DT warning for Armada 37xx Gregory CLEMENT
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox