[PATCH 4/5] ARM: zynq: Fix OCM mapping to be aligned with binding on zc702

Michal Simek michal.simek at xilinx.com
Thu Nov 26 08:25:03 EST 2020


The commit f69629919942 ("dt-bindings: sram: Convert SRAM bindings to
json-schema") converted binding to yaml and some missing required
properties started to be reported. Align binding based on it.

The patch is fixing these warnings:
.../zynq-zc702.dt.yaml: sram at fffc0000: '#address-cells' is a required property
.../zynq-zc702.dt.yaml: sram at fffc0000: '#size-cells' is a required property
.../zynq-zc702.dt.yaml: sram at fffc0000: 'ranges' is a required property
>From schema: .../Documentation/devicetree/bindings/sram/sram.yaml

Signed-off-by: Michal Simek <michal.simek at xilinx.com>
---

 arch/arm/boot/dts/zynq-zc702.dts | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/arch/arm/boot/dts/zynq-zc702.dts b/arch/arm/boot/dts/zynq-zc702.dts
index 10a7d0b8cf8b..cf70aff26c66 100644
--- a/arch/arm/boot/dts/zynq-zc702.dts
+++ b/arch/arm/boot/dts/zynq-zc702.dts
@@ -66,6 +66,12 @@ &amba {
 	ocm: sram at fffc0000 {
 		compatible = "mmio-sram";
 		reg = <0xfffc0000 0x10000>;
+		#address-cells = <1>;
+		#size-cells = <1>;
+		ranges = <0 0xfffc0000 0x10000>;
+		ocm-sram at 0 {
+			reg = <0x0 0x10000>;
+		};
 	};
 };
 
-- 
2.29.2




More information about the linux-arm-kernel mailing list