From: Geert Uytterhoeven <geert+renesas@glider.be>
To: Simon Horman <horms@verge.net.au>,
Magnus Damm <magnus.damm@gmail.com>,
Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>,
Rob Herring <robh+dt@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>,
Ian Campbell <ijc+devicetree@hellion.org.uk>,
Kumar Gala <galak@codeaurora.org>,
Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>,
devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-renesas-soc@vger.kernel.org,
Geert Uytterhoeven <geert+renesas@glider.be>
Subject: [PATCH v2 02/23] ARM: dts: r8a73a4: Fix W=1 dtc warnings
Date: Fri, 20 May 2016 09:09:53 +0200 [thread overview]
Message-ID: <1463728214-13838-3-git-send-email-geert+renesas@glider.be> (raw)
In-Reply-To: <1463728214-13838-1-git-send-email-geert+renesas@glider.be>
Warning (unit_address_vs_reg): Node /cache-controller@0 has a unit name, but no reg property
Warning (unit_address_vs_reg): Node /cache-controller@1 has a unit name, but no reg property
Move the cache-controller nodes under the cpus node, and make their
unit names and reg properties match the MPIDR values.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
v2:
- Add missing 0x-prefix to cache-controller reg property.
---
arch/arm/boot/dts/r8a73a4.dtsi | 34 ++++++++++++++++++----------------
1 file changed, 18 insertions(+), 16 deletions(-)
diff --git a/arch/arm/boot/dts/r8a73a4.dtsi b/arch/arm/boot/dts/r8a73a4.dtsi
index 6954912a37537939..ca8672778fe067e1 100644
--- a/arch/arm/boot/dts/r8a73a4.dtsi
+++ b/arch/arm/boot/dts/r8a73a4.dtsi
@@ -31,6 +31,24 @@
power-domains = <&pd_a2sl>;
next-level-cache = <&L2_CA15>;
};
+
+ L2_CA15: cache-controller@0 {
+ compatible = "cache";
+ reg = <0>;
+ clocks = <&cpg_clocks R8A73A4_CLK_Z>;
+ power-domains = <&pd_a3sm>;
+ cache-unified;
+ cache-level = <2>;
+ };
+
+ L2_CA7: cache-controller@100 {
+ compatible = "cache";
+ reg = <0x100>;
+ clocks = <&cpg_clocks R8A73A4_CLK_Z2>;
+ power-domains = <&pd_a3km>;
+ cache-unified;
+ cache-level = <2>;
+ };
};
ptm {
@@ -46,22 +64,6 @@
<GIC_PPI 10 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>;
};
- L2_CA15: cache-controller@0 {
- compatible = "cache";
- clocks = <&cpg_clocks R8A73A4_CLK_Z>;
- power-domains = <&pd_a3sm>;
- cache-unified;
- cache-level = <2>;
- };
-
- L2_CA7: cache-controller@1 {
- compatible = "cache";
- clocks = <&cpg_clocks R8A73A4_CLK_Z2>;
- power-domains = <&pd_a3km>;
- cache-unified;
- cache-level = <2>;
- };
-
dbsc1: memory-controller@e6790000 {
compatible = "renesas,dbsc-r8a73a4";
reg = <0 0xe6790000 0 0x10000>;
--
1.9.1
next prev parent reply other threads:[~2016-05-20 7:09 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-20 7:09 [PATCH v2 00/23] ARM/arm64: dts: renesas: Fix W=1 dtc warnings Geert Uytterhoeven
2016-05-20 7:09 ` Geert Uytterhoeven [this message]
[not found] ` <1463728214-13838-1-git-send-email-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
2016-05-20 7:09 ` [PATCH v2 01/23] ARM: dts: emev2: " Geert Uytterhoeven
2016-05-20 7:09 ` [PATCH v2 03/23] ARM: dts: r8a7740: " Geert Uytterhoeven
2016-05-20 7:09 ` [PATCH v2 05/23] ARM: dts: r8a7790: " Geert Uytterhoeven
2016-05-20 7:09 ` [PATCH v2 06/23] ARM: dts: r8a7791: " Geert Uytterhoeven
2016-05-20 7:09 ` [PATCH v2 08/23] ARM: dts: r8a7794: " Geert Uytterhoeven
2016-05-20 7:10 ` [PATCH v2 10/23] ARM: dts: ape6evm: " Geert Uytterhoeven
2016-05-20 7:10 ` [PATCH v2 11/23] ARM: dts: armadillo800eva: " Geert Uytterhoeven
[not found] ` <1463728214-13838-12-git-send-email-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
2016-05-20 15:38 ` Sergei Shtylyov
[not found] ` <e0a1fbc1-ac95-2c79-65ed-d0328679bb8a-M4DtvfQ/ZS1MRgGoP+s0PdBPR1lH4CV8@public.gmane.org>
2016-05-23 12:52 ` Geert Uytterhoeven
2016-05-24 0:13 ` Simon Horman
2016-05-24 0:33 ` Simon Horman
2016-05-24 7:37 ` Geert Uytterhoeven
2016-05-20 7:10 ` [PATCH v2 16/23] ARM: dts: kzm9d: " Geert Uytterhoeven
2016-05-20 7:10 ` [PATCH v2 19/23] ARM: dts: marzen: " Geert Uytterhoeven
2016-05-20 7:10 ` [PATCH v2 20/23] ARM: dts: porter: " Geert Uytterhoeven
2016-05-20 7:10 ` [PATCH v2 22/23] arm64: dts: r8a7795: " Geert Uytterhoeven
2016-05-20 7:09 ` [PATCH v2 04/23] ARM: dts: r8a7778: " Geert Uytterhoeven
2016-05-20 7:09 ` [PATCH v2 07/23] ARM: dts: r8a7793: " Geert Uytterhoeven
2016-05-20 7:10 ` [PATCH v2 09/23] ARM: dts: sh73a0: " Geert Uytterhoeven
2016-05-20 7:10 ` [PATCH v2 12/23] ARM: dts: bockw: " Geert Uytterhoeven
2016-05-20 7:10 ` [PATCH v2 13/23] ARM: dts: genmai: " Geert Uytterhoeven
2016-05-20 7:10 ` [PATCH v2 14/23] ARM: dts: gose: " Geert Uytterhoeven
2016-05-20 7:10 ` [PATCH v2 15/23] ARM: dts: koelsch: " Geert Uytterhoeven
2016-05-20 7:10 ` [PATCH v2 17/23] ARM: dts: kzm9g: " Geert Uytterhoeven
2016-05-20 7:10 ` [PATCH v2 18/23] ARM: dts: lager: " Geert Uytterhoeven
2016-05-20 7:10 ` [PATCH v2 21/23] ARM: dts: silk: " Geert Uytterhoeven
2016-05-20 7:10 ` [PATCH v2 23/23] arm64: dts: salvator-x: " Geert Uytterhoeven
2016-05-24 0:34 ` [PATCH v2 00/23] ARM/arm64: dts: renesas: " Simon Horman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1463728214-13838-3-git-send-email-geert+renesas@glider.be \
--to=geert+renesas@glider.be \
--cc=devicetree@vger.kernel.org \
--cc=galak@codeaurora.org \
--cc=horms@verge.net.au \
--cc=ijc+devicetree@hellion.org.uk \
--cc=kuninori.morimoto.gx@renesas.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=magnus.damm@gmail.com \
--cc=mark.rutland@arm.com \
--cc=robh+dt@kernel.org \
--cc=sergei.shtylyov@cogentembedded.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).