aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert+renesas@glider.be>2015-06-02 08:34:35 -0400
committerSimon Horman <horms+renesas@verge.net.au>2016-02-19 00:52:23 -0500
commitd12a384a1b264efd66a50cd5cb311c0d56aff681 (patch)
tree8c3a2dd797cb7d0f249ddd243c57b57da796c198
parentfdd0dbd8a28612195dfbfb08c404ef5bcfa48e43 (diff)
ARM: dts: r8a7794: Add L2 cache-controller node
Add a device node for the L2 cache, and link the CPU nodes to it. The L2 cache for the Cortex-A7 CPU cores is 512 KiB large (organized as 64 KiB x 8 ways). Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
-rw-r--r--arch/arm/boot/dts/r8a7794.dtsi8
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/r8a7794.dtsi b/arch/arm/boot/dts/r8a7794.dtsi
index df0861e84a4b..21a02df3609b 100644
--- a/arch/arm/boot/dts/r8a7794.dtsi
+++ b/arch/arm/boot/dts/r8a7794.dtsi
@@ -40,6 +40,7 @@
40 compatible = "arm,cortex-a7"; 40 compatible = "arm,cortex-a7";
41 reg = <0>; 41 reg = <0>;
42 clock-frequency = <1000000000>; 42 clock-frequency = <1000000000>;
43 next-level-cache = <&L2_CA7>;
43 }; 44 };
44 45
45 cpu1: cpu@1 { 46 cpu1: cpu@1 {
@@ -47,9 +48,16 @@
47 compatible = "arm,cortex-a7"; 48 compatible = "arm,cortex-a7";
48 reg = <1>; 49 reg = <1>;
49 clock-frequency = <1000000000>; 50 clock-frequency = <1000000000>;
51 next-level-cache = <&L2_CA7>;
50 }; 52 };
51 }; 53 };
52 54
55 L2_CA7: cache-controller@1 {
56 compatible = "cache";
57 cache-unified;
58 cache-level = <2>;
59 };
60
53 gic: interrupt-controller@f1001000 { 61 gic: interrupt-controller@f1001000 {
54 compatible = "arm,gic-400"; 62 compatible = "arm,gic-400";
55 #interrupt-cells = <3>; 63 #interrupt-cells = <3>;