blob: beb9885e6ffca7a521ffb670f44ddd8be639a287 [file] [log] [blame]
Wolfram Sangcdbfaf62018-06-11 23:49:36 +09001// SPDX-License-Identifier: GPL-2.0
Simon Hormanc58a1542013-01-29 14:21:46 +09002/*
Magnus Dammaf69e342018-08-20 23:04:44 +09003 * Device Tree Source for the R-Car H1 (R8A77790) SoC
Simon Hormanc58a1542013-01-29 14:21:46 +09004 *
5 * Copyright (C) 2013 Renesas Solutions Corp.
6 * Copyright (C) 2013 Simon Horman
Simon Hormanc58a1542013-01-29 14:21:46 +09007 */
8
Simon Horman1e851532014-05-15 20:31:57 +09009#include <dt-bindings/clock/r8a7779-clock.h>
Magnus Dammcea80652014-12-16 18:39:41 +090010#include <dt-bindings/interrupt-controller/arm-gic.h>
Laurent Pinchart5f75e732013-11-19 03:18:25 +010011#include <dt-bindings/interrupt-controller/irq.h>
Geert Uytterhoevenb2df3aa2015-06-03 10:14:01 +020012#include <dt-bindings/power/r8a7779-sysc.h>
Laurent Pinchart5f75e732013-11-19 03:18:25 +010013
Simon Hormanc58a1542013-01-29 14:21:46 +090014/ {
15 compatible = "renesas,r8a7779";
Laurent Pinchart9ff254a2014-04-30 02:41:28 +020016 interrupt-parent = <&gic>;
Geert Uytterhoeven1cfc0c02016-10-21 11:16:08 +020017 #address-cells = <1>;
18 #size-cells = <1>;
Simon Hormanc58a1542013-01-29 14:21:46 +090019
20 cpus {
21 #address-cells = <1>;
22 #size-cells = <0>;
23
24 cpu@0 {
25 device_type = "cpu";
26 compatible = "arm,cortex-a9";
27 reg = <0>;
Simon Horman6b060f92014-05-16 13:42:58 +090028 clock-frequency = <1000000000>;
Geert Uytterhoevenfa9f95a2017-10-12 11:35:09 +020029 clocks = <&cpg_clocks R8A7779_CLK_Z>;
Simon Hormanc58a1542013-01-29 14:21:46 +090030 };
31 cpu@1 {
32 device_type = "cpu";
33 compatible = "arm,cortex-a9";
34 reg = <1>;
Simon Horman6b060f92014-05-16 13:42:58 +090035 clock-frequency = <1000000000>;
Geert Uytterhoevenfa9f95a2017-10-12 11:35:09 +020036 clocks = <&cpg_clocks R8A7779_CLK_Z>;
Geert Uytterhoevenb2df3aa2015-06-03 10:14:01 +020037 power-domains = <&sysc R8A7779_PD_ARM1>;
Simon Hormanc58a1542013-01-29 14:21:46 +090038 };
39 cpu@2 {
40 device_type = "cpu";
41 compatible = "arm,cortex-a9";
42 reg = <2>;
Simon Horman6b060f92014-05-16 13:42:58 +090043 clock-frequency = <1000000000>;
Geert Uytterhoevenfa9f95a2017-10-12 11:35:09 +020044 clocks = <&cpg_clocks R8A7779_CLK_Z>;
Geert Uytterhoevenb2df3aa2015-06-03 10:14:01 +020045 power-domains = <&sysc R8A7779_PD_ARM2>;
Simon Hormanc58a1542013-01-29 14:21:46 +090046 };
47 cpu@3 {
48 device_type = "cpu";
49 compatible = "arm,cortex-a9";
50 reg = <3>;
Simon Horman6b060f92014-05-16 13:42:58 +090051 clock-frequency = <1000000000>;
Geert Uytterhoevenfa9f95a2017-10-12 11:35:09 +020052 clocks = <&cpg_clocks R8A7779_CLK_Z>;
Geert Uytterhoevenb2df3aa2015-06-03 10:14:01 +020053 power-domains = <&sysc R8A7779_PD_ARM3>;
Simon Hormanc58a1542013-01-29 14:21:46 +090054 };
55 };
56
Simon Horman3c3f6ad2013-11-26 16:47:11 +090057 aliases {
58 spi0 = &hspi0;
59 spi1 = &hspi1;
60 spi2 = &hspi2;
61 };
62
Simon Hormancc703a52014-07-07 08:47:38 +020063 gic: interrupt-controller@f0001000 {
64 compatible = "arm,cortex-a9-gic";
65 #interrupt-cells = <3>;
66 interrupt-controller;
67 reg = <0xf0001000 0x1000>,
68 <0xf0000100 0x100>;
69 };
Simon Horman10e8d4f2012-11-21 22:00:15 +090070
Geert Uytterhoeven8443ffd2019-12-11 14:52:21 +010071 timer@f0000200 {
72 compatible = "arm,cortex-a9-global-timer";
73 reg = <0xf0000200 0x100>;
74 interrupts = <GIC_PPI 11
75 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_EDGE_RISING)>;
76 clocks = <&cpg_clocks R8A7779_CLK_ZS>;
77 };
78
Magnus Dammcea80652014-12-16 18:39:41 +090079 timer@f0000600 {
80 compatible = "arm,cortex-a9-twd-timer";
81 reg = <0xf0000600 0x20>;
82 interrupts = <GIC_PPI 13
Geert Uytterhoevene6c24882016-03-18 11:19:21 +010083 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_EDGE_RISING)>;
Magnus Dammcea80652014-12-16 18:39:41 +090084 clocks = <&cpg_clocks R8A7779_CLK_ZS>;
85 };
86
Laurent Pinchartf5c771b2013-05-10 15:51:14 +020087 gpio0: gpio@ffc40000 {
Simon Horman88cb1412017-10-13 14:33:03 +020088 compatible = "renesas,gpio-r8a7779", "renesas,rcar-gen1-gpio";
Laurent Pinchartf5c771b2013-05-10 15:51:14 +020089 reg = <0xffc40000 0x2c>;
Simon Horman854b77332016-01-21 13:52:46 +090090 interrupts = <GIC_SPI 141 IRQ_TYPE_LEVEL_HIGH>;
Laurent Pinchartf5c771b2013-05-10 15:51:14 +020091 #gpio-cells = <2>;
92 gpio-controller;
93 gpio-ranges = <&pfc 0 0 32>;
94 #interrupt-cells = <2>;
95 interrupt-controller;
96 };
97
98 gpio1: gpio@ffc41000 {
Simon Horman88cb1412017-10-13 14:33:03 +020099 compatible = "renesas,gpio-r8a7779", "renesas,rcar-gen1-gpio";
Laurent Pinchartf5c771b2013-05-10 15:51:14 +0200100 reg = <0xffc41000 0x2c>;
Simon Horman854b77332016-01-21 13:52:46 +0900101 interrupts = <GIC_SPI 142 IRQ_TYPE_LEVEL_HIGH>;
Laurent Pinchartf5c771b2013-05-10 15:51:14 +0200102 #gpio-cells = <2>;
103 gpio-controller;
104 gpio-ranges = <&pfc 0 32 32>;
105 #interrupt-cells = <2>;
106 interrupt-controller;
107 };
108
109 gpio2: gpio@ffc42000 {
Simon Horman88cb1412017-10-13 14:33:03 +0200110 compatible = "renesas,gpio-r8a7779", "renesas,rcar-gen1-gpio";
Laurent Pinchartf5c771b2013-05-10 15:51:14 +0200111 reg = <0xffc42000 0x2c>;
Simon Horman854b77332016-01-21 13:52:46 +0900112 interrupts = <GIC_SPI 143 IRQ_TYPE_LEVEL_HIGH>;
Laurent Pinchartf5c771b2013-05-10 15:51:14 +0200113 #gpio-cells = <2>;
114 gpio-controller;
115 gpio-ranges = <&pfc 0 64 32>;
116 #interrupt-cells = <2>;
117 interrupt-controller;
118 };
119
120 gpio3: gpio@ffc43000 {
Simon Horman88cb1412017-10-13 14:33:03 +0200121 compatible = "renesas,gpio-r8a7779", "renesas,rcar-gen1-gpio";
Laurent Pinchartf5c771b2013-05-10 15:51:14 +0200122 reg = <0xffc43000 0x2c>;
Simon Horman854b77332016-01-21 13:52:46 +0900123 interrupts = <GIC_SPI 144 IRQ_TYPE_LEVEL_HIGH>;
Laurent Pinchartf5c771b2013-05-10 15:51:14 +0200124 #gpio-cells = <2>;
125 gpio-controller;
126 gpio-ranges = <&pfc 0 96 32>;
127 #interrupt-cells = <2>;
128 interrupt-controller;
129 };
130
131 gpio4: gpio@ffc44000 {
Simon Horman88cb1412017-10-13 14:33:03 +0200132 compatible = "renesas,gpio-r8a7779", "renesas,rcar-gen1-gpio";
Laurent Pinchartf5c771b2013-05-10 15:51:14 +0200133 reg = <0xffc44000 0x2c>;
Simon Horman854b77332016-01-21 13:52:46 +0900134 interrupts = <GIC_SPI 145 IRQ_TYPE_LEVEL_HIGH>;
Laurent Pinchartf5c771b2013-05-10 15:51:14 +0200135 #gpio-cells = <2>;
136 gpio-controller;
137 gpio-ranges = <&pfc 0 128 32>;
138 #interrupt-cells = <2>;
139 interrupt-controller;
140 };
141
142 gpio5: gpio@ffc45000 {
Simon Horman88cb1412017-10-13 14:33:03 +0200143 compatible = "renesas,gpio-r8a7779", "renesas,rcar-gen1-gpio";
Laurent Pinchartf5c771b2013-05-10 15:51:14 +0200144 reg = <0xffc45000 0x2c>;
Simon Horman854b77332016-01-21 13:52:46 +0900145 interrupts = <GIC_SPI 146 IRQ_TYPE_LEVEL_HIGH>;
Laurent Pinchartf5c771b2013-05-10 15:51:14 +0200146 #gpio-cells = <2>;
147 gpio-controller;
148 gpio-ranges = <&pfc 0 160 32>;
149 #interrupt-cells = <2>;
150 interrupt-controller;
151 };
152
153 gpio6: gpio@ffc46000 {
Simon Horman88cb1412017-10-13 14:33:03 +0200154 compatible = "renesas,gpio-r8a7779", "renesas,rcar-gen1-gpio";
Laurent Pinchartf5c771b2013-05-10 15:51:14 +0200155 reg = <0xffc46000 0x2c>;
Simon Horman854b77332016-01-21 13:52:46 +0900156 interrupts = <GIC_SPI 147 IRQ_TYPE_LEVEL_HIGH>;
Laurent Pinchartf5c771b2013-05-10 15:51:14 +0200157 #gpio-cells = <2>;
158 gpio-controller;
159 gpio-ranges = <&pfc 0 192 9>;
160 #interrupt-cells = <2>;
161 interrupt-controller;
162 };
163
Magnus Damm7bf46d02015-06-25 17:57:28 +0900164 irqpin0: interrupt-controller@fe78001c {
Magnus Damm11ef0342013-11-28 08:15:18 +0900165 compatible = "renesas,intc-irqpin-r8a7779", "renesas,intc-irqpin";
Guennadi Liakhovetski24603f32013-04-03 11:19:07 +0200166 #interrupt-cells = <2>;
Kuninori Morimoto84b47df2013-10-02 01:39:13 -0700167 status = "disabled";
Guennadi Liakhovetski24603f32013-04-03 11:19:07 +0200168 interrupt-controller;
169 reg = <0xfe78001c 4>,
170 <0xfe780010 4>,
171 <0xfe780024 4>,
172 <0xfe780044 4>,
Magnus Damm7bf46d02015-06-25 17:57:28 +0900173 <0xfe780064 4>,
174 <0xfe780000 4>;
Geert Uytterhoevenc2e952e2019-12-13 17:41:10 +0100175 interrupts = <GIC_SPI 27 IRQ_TYPE_LEVEL_HIGH>,
176 <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH>,
177 <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>,
178 <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>;
Guennadi Liakhovetski24603f32013-04-03 11:19:07 +0200179 sense-bitfield-width = <2>;
180 };
181
Lee Jones98724b72013-07-22 11:52:38 +0100182 i2c0: i2c@ffc70000 {
Simon Horman10e8d4f2012-11-21 22:00:15 +0900183 #address-cells = <1>;
184 #size-cells = <0>;
Simon Horman137d27f2016-12-13 12:45:47 +0100185 compatible = "renesas,i2c-r8a7779", "renesas,rcar-gen1-i2c";
Simon Horman10e8d4f2012-11-21 22:00:15 +0900186 reg = <0xffc70000 0x1000>;
Simon Horman854b77332016-01-21 13:52:46 +0900187 interrupts = <GIC_SPI 79 IRQ_TYPE_LEVEL_HIGH>;
Simon Horman3325cbe2014-05-15 20:32:00 +0900188 clocks = <&mstp0_clks R8A7779_CLK_I2C0>;
Geert Uytterhoeven751e29b2015-06-03 10:14:01 +0200189 power-domains = <&sysc R8A7779_PD_ALWAYS_ON>;
Guennadi Liakhovetskieda3a4f2013-09-26 13:06:01 +0200190 status = "disabled";
Simon Horman10e8d4f2012-11-21 22:00:15 +0900191 };
192
Lee Jones98724b72013-07-22 11:52:38 +0100193 i2c1: i2c@ffc71000 {
Simon Horman10e8d4f2012-11-21 22:00:15 +0900194 #address-cells = <1>;
195 #size-cells = <0>;
Simon Horman137d27f2016-12-13 12:45:47 +0100196 compatible = "renesas,i2c-r8a7779", "renesas,rcar-gen1-i2c";
Simon Horman10e8d4f2012-11-21 22:00:15 +0900197 reg = <0xffc71000 0x1000>;
Simon Horman854b77332016-01-21 13:52:46 +0900198 interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>;
Simon Horman3325cbe2014-05-15 20:32:00 +0900199 clocks = <&mstp0_clks R8A7779_CLK_I2C1>;
Geert Uytterhoeven751e29b2015-06-03 10:14:01 +0200200 power-domains = <&sysc R8A7779_PD_ALWAYS_ON>;
Guennadi Liakhovetskieda3a4f2013-09-26 13:06:01 +0200201 status = "disabled";
Simon Horman10e8d4f2012-11-21 22:00:15 +0900202 };
203
Lee Jones98724b72013-07-22 11:52:38 +0100204 i2c2: i2c@ffc72000 {
Simon Horman10e8d4f2012-11-21 22:00:15 +0900205 #address-cells = <1>;
206 #size-cells = <0>;
Simon Horman137d27f2016-12-13 12:45:47 +0100207 compatible = "renesas,i2c-r8a7779", "renesas,rcar-gen1-i2c";
Simon Horman10e8d4f2012-11-21 22:00:15 +0900208 reg = <0xffc72000 0x1000>;
Simon Horman854b77332016-01-21 13:52:46 +0900209 interrupts = <GIC_SPI 80 IRQ_TYPE_LEVEL_HIGH>;
Simon Horman3325cbe2014-05-15 20:32:00 +0900210 clocks = <&mstp0_clks R8A7779_CLK_I2C2>;
Geert Uytterhoeven751e29b2015-06-03 10:14:01 +0200211 power-domains = <&sysc R8A7779_PD_ALWAYS_ON>;
Guennadi Liakhovetskieda3a4f2013-09-26 13:06:01 +0200212 status = "disabled";
Simon Horman10e8d4f2012-11-21 22:00:15 +0900213 };
214
Lee Jones98724b72013-07-22 11:52:38 +0100215 i2c3: i2c@ffc73000 {
Simon Horman10e8d4f2012-11-21 22:00:15 +0900216 #address-cells = <1>;
217 #size-cells = <0>;
Simon Horman137d27f2016-12-13 12:45:47 +0100218 compatible = "renesas,i2c-r8a7779", "renesas,rcar-gen1-i2c";
Simon Horman10e8d4f2012-11-21 22:00:15 +0900219 reg = <0xffc73000 0x1000>;
Simon Horman854b77332016-01-21 13:52:46 +0900220 interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH>;
Simon Horman3325cbe2014-05-15 20:32:00 +0900221 clocks = <&mstp0_clks R8A7779_CLK_I2C3>;
Geert Uytterhoeven751e29b2015-06-03 10:14:01 +0200222 power-domains = <&sysc R8A7779_PD_ALWAYS_ON>;
Guennadi Liakhovetskieda3a4f2013-09-26 13:06:01 +0200223 status = "disabled";
Simon Horman10e8d4f2012-11-21 22:00:15 +0900224 };
Kuninori Morimoto25a65972013-03-04 00:32:16 -0800225
Simon Hormanfd953b82014-05-15 20:39:30 +0900226 scif0: serial@ffe40000 {
Geert Uytterhoevenb2ac44f2016-01-29 10:32:03 +0100227 compatible = "renesas,scif-r8a7779", "renesas,rcar-gen1-scif",
228 "renesas,scif";
Simon Hormanfd953b82014-05-15 20:39:30 +0900229 reg = <0xffe40000 0x100>;
Simon Horman854b77332016-01-21 13:52:46 +0900230 interrupts = <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>;
Geert Uytterhoevenf2be5f02016-01-29 11:04:38 +0100231 clocks = <&mstp0_clks R8A7779_CLK_SCIF0>,
232 <&cpg_clocks R8A7779_CLK_S1>, <&scif_clk>;
233 clock-names = "fck", "brg_int", "scif_clk";
Geert Uytterhoeven751e29b2015-06-03 10:14:01 +0200234 power-domains = <&sysc R8A7779_PD_ALWAYS_ON>;
Simon Hormanfd953b82014-05-15 20:39:30 +0900235 status = "disabled";
236 };
237
238 scif1: serial@ffe41000 {
Geert Uytterhoevenb2ac44f2016-01-29 10:32:03 +0100239 compatible = "renesas,scif-r8a7779", "renesas,rcar-gen1-scif",
240 "renesas,scif";
Simon Hormanfd953b82014-05-15 20:39:30 +0900241 reg = <0xffe41000 0x100>;
Simon Horman854b77332016-01-21 13:52:46 +0900242 interrupts = <GIC_SPI 89 IRQ_TYPE_LEVEL_HIGH>;
Geert Uytterhoevenf2be5f02016-01-29 11:04:38 +0100243 clocks = <&mstp0_clks R8A7779_CLK_SCIF1>,
244 <&cpg_clocks R8A7779_CLK_S1>, <&scif_clk>;
245 clock-names = "fck", "brg_int", "scif_clk";
Geert Uytterhoeven751e29b2015-06-03 10:14:01 +0200246 power-domains = <&sysc R8A7779_PD_ALWAYS_ON>;
Simon Hormanfd953b82014-05-15 20:39:30 +0900247 status = "disabled";
248 };
249
250 scif2: serial@ffe42000 {
Geert Uytterhoevenb2ac44f2016-01-29 10:32:03 +0100251 compatible = "renesas,scif-r8a7779", "renesas,rcar-gen1-scif",
252 "renesas,scif";
Simon Hormanfd953b82014-05-15 20:39:30 +0900253 reg = <0xffe42000 0x100>;
Simon Horman854b77332016-01-21 13:52:46 +0900254 interrupts = <GIC_SPI 90 IRQ_TYPE_LEVEL_HIGH>;
Geert Uytterhoevenf2be5f02016-01-29 11:04:38 +0100255 clocks = <&mstp0_clks R8A7779_CLK_SCIF2>,
256 <&cpg_clocks R8A7779_CLK_S1>, <&scif_clk>;
257 clock-names = "fck", "brg_int", "scif_clk";
Geert Uytterhoeven751e29b2015-06-03 10:14:01 +0200258 power-domains = <&sysc R8A7779_PD_ALWAYS_ON>;
Simon Hormanfd953b82014-05-15 20:39:30 +0900259 status = "disabled";
260 };
261
262 scif3: serial@ffe43000 {
Geert Uytterhoevenb2ac44f2016-01-29 10:32:03 +0100263 compatible = "renesas,scif-r8a7779", "renesas,rcar-gen1-scif",
264 "renesas,scif";
Simon Hormanfd953b82014-05-15 20:39:30 +0900265 reg = <0xffe43000 0x100>;
Simon Horman854b77332016-01-21 13:52:46 +0900266 interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>;
Geert Uytterhoevenf2be5f02016-01-29 11:04:38 +0100267 clocks = <&mstp0_clks R8A7779_CLK_SCIF3>,
268 <&cpg_clocks R8A7779_CLK_S1>, <&scif_clk>;
269 clock-names = "fck", "brg_int", "scif_clk";
Geert Uytterhoeven751e29b2015-06-03 10:14:01 +0200270 power-domains = <&sysc R8A7779_PD_ALWAYS_ON>;
Simon Hormanfd953b82014-05-15 20:39:30 +0900271 status = "disabled";
272 };
273
274 scif4: serial@ffe44000 {
Geert Uytterhoevenb2ac44f2016-01-29 10:32:03 +0100275 compatible = "renesas,scif-r8a7779", "renesas,rcar-gen1-scif",
276 "renesas,scif";
Simon Hormanfd953b82014-05-15 20:39:30 +0900277 reg = <0xffe44000 0x100>;
Simon Horman854b77332016-01-21 13:52:46 +0900278 interrupts = <GIC_SPI 92 IRQ_TYPE_LEVEL_HIGH>;
Geert Uytterhoevenf2be5f02016-01-29 11:04:38 +0100279 clocks = <&mstp0_clks R8A7779_CLK_SCIF4>,
280 <&cpg_clocks R8A7779_CLK_S1>, <&scif_clk>;
281 clock-names = "fck", "brg_int", "scif_clk";
Geert Uytterhoeven751e29b2015-06-03 10:14:01 +0200282 power-domains = <&sysc R8A7779_PD_ALWAYS_ON>;
Simon Hormanfd953b82014-05-15 20:39:30 +0900283 status = "disabled";
284 };
285
286 scif5: serial@ffe45000 {
Geert Uytterhoevenb2ac44f2016-01-29 10:32:03 +0100287 compatible = "renesas,scif-r8a7779", "renesas,rcar-gen1-scif",
288 "renesas,scif";
Simon Hormanfd953b82014-05-15 20:39:30 +0900289 reg = <0xffe45000 0x100>;
Simon Horman854b77332016-01-21 13:52:46 +0900290 interrupts = <GIC_SPI 93 IRQ_TYPE_LEVEL_HIGH>;
Geert Uytterhoevenf2be5f02016-01-29 11:04:38 +0100291 clocks = <&mstp0_clks R8A7779_CLK_SCIF5>,
292 <&cpg_clocks R8A7779_CLK_S1>, <&scif_clk>;
293 clock-names = "fck", "brg_int", "scif_clk";
Geert Uytterhoeven751e29b2015-06-03 10:14:01 +0200294 power-domains = <&sysc R8A7779_PD_ALWAYS_ON>;
Simon Hormanfd953b82014-05-15 20:39:30 +0900295 status = "disabled";
296 };
297
Ulrich Hecht055d15a2019-01-18 11:48:15 +0100298 hscif0: serial@ffe48000 {
299 compatible = "renesas,hscif-r8a7779",
300 "renesas,rcar-gen1-hscif", "renesas,hscif";
301 reg = <0xffe48000 96>;
302 interrupts = <GIC_SPI 94 IRQ_TYPE_LEVEL_HIGH>;
303 clocks = <&mstp0_clks R8A7779_CLK_HSCIF0>,
304 <&cpg_clocks R8A7779_CLK_S>,
305 <&scif_clk>;
306 clock-names = "fck", "brg_int", "scif_clk";
Geert Uytterhoevena03fa772019-08-16 10:22:29 +0200307 power-domains = <&sysc R8A7779_PD_ALWAYS_ON>;
Ulrich Hecht055d15a2019-01-18 11:48:15 +0100308 status = "disabled";
309 };
310
311 hscif1: serial@ffe49000 {
312 compatible = "renesas,hscif-r8a7779",
313 "renesas,rcar-gen1-hscif", "renesas,hscif";
314 reg = <0xffe49000 96>;
315 interrupts = <GIC_SPI 95 IRQ_TYPE_LEVEL_HIGH>;
316 clocks = <&mstp0_clks R8A7779_CLK_HSCIF1>,
317 <&cpg_clocks R8A7779_CLK_S>,
318 <&scif_clk>;
319 clock-names = "fck", "brg_int", "scif_clk";
Geert Uytterhoevena03fa772019-08-16 10:22:29 +0200320 power-domains = <&sysc R8A7779_PD_ALWAYS_ON>;
Ulrich Hecht055d15a2019-01-18 11:48:15 +0100321 status = "disabled";
322 };
323
Simon Hormanb07b7632017-04-26 12:05:34 +0200324 pfc: pin-controller@fffc0000 {
Laurent Pinchart3ab03d02013-05-09 15:05:57 +0200325 compatible = "renesas,pfc-r8a7779";
326 reg = <0xfffc0000 0x23c>;
327 };
328
Kuninori Morimoto25a65972013-03-04 00:32:16 -0800329 thermal@ffc48000 {
Geert Uytterhoeven4d50e6d2014-08-28 10:20:40 +0200330 compatible = "renesas,thermal-r8a7779", "renesas,rcar-thermal";
Kuninori Morimoto25a65972013-03-04 00:32:16 -0800331 reg = <0xffc48000 0x38>;
332 };
Vladimir Barinov7840a652013-02-27 23:34:36 +0300333
Laurent Pinchartef890ea2014-07-09 15:12:39 +0200334 tmu0: timer@ffd80000 {
Simon Hormana51b7b32014-09-08 09:27:48 +0900335 compatible = "renesas,tmu-r8a7779", "renesas,tmu";
Laurent Pinchartef890ea2014-07-09 15:12:39 +0200336 reg = <0xffd80000 0x30>;
Simon Horman854b77332016-01-21 13:52:46 +0900337 interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>,
338 <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>,
339 <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>;
Laurent Pinchartef890ea2014-07-09 15:12:39 +0200340 clocks = <&mstp0_clks R8A7779_CLK_TMU0>;
341 clock-names = "fck";
Geert Uytterhoeven751e29b2015-06-03 10:14:01 +0200342 power-domains = <&sysc R8A7779_PD_ALWAYS_ON>;
Laurent Pinchartef890ea2014-07-09 15:12:39 +0200343
344 #renesas,channels = <3>;
345
346 status = "disabled";
347 };
348
349 tmu1: timer@ffd81000 {
Simon Hormana51b7b32014-09-08 09:27:48 +0900350 compatible = "renesas,tmu-r8a7779", "renesas,tmu";
Laurent Pinchartef890ea2014-07-09 15:12:39 +0200351 reg = <0xffd81000 0x30>;
Simon Horman854b77332016-01-21 13:52:46 +0900352 interrupts = <GIC_SPI 36 IRQ_TYPE_LEVEL_HIGH>,
353 <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>,
354 <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>;
Laurent Pinchartef890ea2014-07-09 15:12:39 +0200355 clocks = <&mstp0_clks R8A7779_CLK_TMU1>;
356 clock-names = "fck";
Geert Uytterhoeven751e29b2015-06-03 10:14:01 +0200357 power-domains = <&sysc R8A7779_PD_ALWAYS_ON>;
Laurent Pinchartef890ea2014-07-09 15:12:39 +0200358
359 #renesas,channels = <3>;
360
361 status = "disabled";
362 };
363
364 tmu2: timer@ffd82000 {
Simon Hormana51b7b32014-09-08 09:27:48 +0900365 compatible = "renesas,tmu-r8a7779", "renesas,tmu";
Laurent Pinchartef890ea2014-07-09 15:12:39 +0200366 reg = <0xffd82000 0x30>;
Simon Horman854b77332016-01-21 13:52:46 +0900367 interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>,
368 <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>,
369 <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>;
Laurent Pinchartef890ea2014-07-09 15:12:39 +0200370 clocks = <&mstp0_clks R8A7779_CLK_TMU2>;
371 clock-names = "fck";
Geert Uytterhoeven751e29b2015-06-03 10:14:01 +0200372 power-domains = <&sysc R8A7779_PD_ALWAYS_ON>;
Laurent Pinchartef890ea2014-07-09 15:12:39 +0200373
374 #renesas,channels = <3>;
375
376 status = "disabled";
377 };
378
Vladimir Barinov7840a652013-02-27 23:34:36 +0300379 sata: sata@fc600000 {
Geert Uytterhoeven25af9c82014-10-29 14:58:51 +0100380 compatible = "renesas,sata-r8a7779", "renesas,rcar-sata";
Geert Uytterhoeven441f61e2018-07-20 14:28:57 +0200381 reg = <0xfc600000 0x200000>;
Simon Horman854b77332016-01-21 13:52:46 +0900382 interrupts = <GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>;
Simon Horman3325cbe2014-05-15 20:32:00 +0900383 clocks = <&mstp1_clks R8A7779_CLK_SATA>;
Geert Uytterhoeven751e29b2015-06-03 10:14:01 +0200384 power-domains = <&sysc R8A7779_PD_ALWAYS_ON>;
Geert Uytterhoevene8aa6812017-01-16 17:56:53 +0100385 status = "disabled";
Vladimir Barinov7840a652013-02-27 23:34:36 +0300386 };
Kuninori Morimotoc4866e72013-10-10 23:36:22 -0700387
Kuninori Morimoto26247052013-10-21 19:36:02 -0700388 sdhi0: sd@ffe4c000 {
Simon Horman0863a6e2017-10-17 08:09:54 +0200389 compatible = "renesas,sdhi-r8a7779",
390 "renesas,rcar-gen1-sdhi";
Kuninori Morimotoc4866e72013-10-10 23:36:22 -0700391 reg = <0xffe4c000 0x100>;
Simon Horman854b77332016-01-21 13:52:46 +0900392 interrupts = <GIC_SPI 104 IRQ_TYPE_LEVEL_HIGH>;
Simon Horman3325cbe2014-05-15 20:32:00 +0900393 clocks = <&mstp3_clks R8A7779_CLK_SDHI0>;
Geert Uytterhoeven751e29b2015-06-03 10:14:01 +0200394 power-domains = <&sysc R8A7779_PD_ALWAYS_ON>;
Kuninori Morimotoc4866e72013-10-10 23:36:22 -0700395 status = "disabled";
396 };
397
Kuninori Morimoto26247052013-10-21 19:36:02 -0700398 sdhi1: sd@ffe4d000 {
Simon Horman0863a6e2017-10-17 08:09:54 +0200399 compatible = "renesas,sdhi-r8a7779",
400 "renesas,rcar-gen1-sdhi";
Kuninori Morimotoc4866e72013-10-10 23:36:22 -0700401 reg = <0xffe4d000 0x100>;
Simon Horman854b77332016-01-21 13:52:46 +0900402 interrupts = <GIC_SPI 105 IRQ_TYPE_LEVEL_HIGH>;
Simon Horman3325cbe2014-05-15 20:32:00 +0900403 clocks = <&mstp3_clks R8A7779_CLK_SDHI1>;
Geert Uytterhoeven751e29b2015-06-03 10:14:01 +0200404 power-domains = <&sysc R8A7779_PD_ALWAYS_ON>;
Kuninori Morimotoc4866e72013-10-10 23:36:22 -0700405 status = "disabled";
406 };
407
Kuninori Morimoto26247052013-10-21 19:36:02 -0700408 sdhi2: sd@ffe4e000 {
Simon Horman0863a6e2017-10-17 08:09:54 +0200409 compatible = "renesas,sdhi-r8a7779",
410 "renesas,rcar-gen1-sdhi";
Kuninori Morimotoc4866e72013-10-10 23:36:22 -0700411 reg = <0xffe4e000 0x100>;
Simon Horman854b77332016-01-21 13:52:46 +0900412 interrupts = <GIC_SPI 107 IRQ_TYPE_LEVEL_HIGH>;
Simon Horman3325cbe2014-05-15 20:32:00 +0900413 clocks = <&mstp3_clks R8A7779_CLK_SDHI2>;
Geert Uytterhoeven751e29b2015-06-03 10:14:01 +0200414 power-domains = <&sysc R8A7779_PD_ALWAYS_ON>;
Kuninori Morimotoc4866e72013-10-10 23:36:22 -0700415 status = "disabled";
416 };
417
Kuninori Morimoto26247052013-10-21 19:36:02 -0700418 sdhi3: sd@ffe4f000 {
Simon Horman0863a6e2017-10-17 08:09:54 +0200419 compatible = "renesas,sdhi-r8a7779",
420 "renesas,rcar-gen1-sdhi";
Kuninori Morimotoc4866e72013-10-10 23:36:22 -0700421 reg = <0xffe4f000 0x100>;
Simon Horman854b77332016-01-21 13:52:46 +0900422 interrupts = <GIC_SPI 106 IRQ_TYPE_LEVEL_HIGH>;
Simon Horman3325cbe2014-05-15 20:32:00 +0900423 clocks = <&mstp3_clks R8A7779_CLK_SDHI3>;
Geert Uytterhoeven751e29b2015-06-03 10:14:01 +0200424 power-domains = <&sysc R8A7779_PD_ALWAYS_ON>;
Kuninori Morimotoc4866e72013-10-10 23:36:22 -0700425 status = "disabled";
426 };
Simon Horman3c3f6ad2013-11-26 16:47:11 +0900427
428 hspi0: spi@fffc7000 {
Geert Uytterhoeven7709c332014-03-14 11:06:40 +0100429 compatible = "renesas,hspi-r8a7779", "renesas,hspi";
Simon Horman3c3f6ad2013-11-26 16:47:11 +0900430 reg = <0xfffc7000 0x18>;
Simon Horman854b77332016-01-21 13:52:46 +0900431 interrupts = <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>;
Geert Uytterhoeven7709c332014-03-14 11:06:40 +0100432 #address-cells = <1>;
433 #size-cells = <0>;
Simon Horman3325cbe2014-05-15 20:32:00 +0900434 clocks = <&mstp0_clks R8A7779_CLK_HSPI>;
Geert Uytterhoeven751e29b2015-06-03 10:14:01 +0200435 power-domains = <&sysc R8A7779_PD_ALWAYS_ON>;
Simon Horman3c3f6ad2013-11-26 16:47:11 +0900436 status = "disabled";
437 };
438
439 hspi1: spi@fffc8000 {
Geert Uytterhoeven7709c332014-03-14 11:06:40 +0100440 compatible = "renesas,hspi-r8a7779", "renesas,hspi";
Simon Horman3c3f6ad2013-11-26 16:47:11 +0900441 reg = <0xfffc8000 0x18>;
Simon Horman854b77332016-01-21 13:52:46 +0900442 interrupts = <GIC_SPI 74 IRQ_TYPE_LEVEL_HIGH>;
Geert Uytterhoeven7709c332014-03-14 11:06:40 +0100443 #address-cells = <1>;
444 #size-cells = <0>;
Simon Horman3325cbe2014-05-15 20:32:00 +0900445 clocks = <&mstp0_clks R8A7779_CLK_HSPI>;
Geert Uytterhoeven751e29b2015-06-03 10:14:01 +0200446 power-domains = <&sysc R8A7779_PD_ALWAYS_ON>;
Simon Horman3c3f6ad2013-11-26 16:47:11 +0900447 status = "disabled";
448 };
449
450 hspi2: spi@fffc6000 {
Geert Uytterhoeven7709c332014-03-14 11:06:40 +0100451 compatible = "renesas,hspi-r8a7779", "renesas,hspi";
Simon Horman3c3f6ad2013-11-26 16:47:11 +0900452 reg = <0xfffc6000 0x18>;
Simon Horman854b77332016-01-21 13:52:46 +0900453 interrupts = <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>;
Geert Uytterhoeven7709c332014-03-14 11:06:40 +0100454 #address-cells = <1>;
455 #size-cells = <0>;
Simon Horman3325cbe2014-05-15 20:32:00 +0900456 clocks = <&mstp0_clks R8A7779_CLK_HSPI>;
Geert Uytterhoeven751e29b2015-06-03 10:14:01 +0200457 power-domains = <&sysc R8A7779_PD_ALWAYS_ON>;
Simon Horman3c3f6ad2013-11-26 16:47:11 +0900458 status = "disabled";
459 };
Simon Horman1e851532014-05-15 20:31:57 +0900460
Laurent Pinchart1f08bbe2014-01-21 16:00:46 +0100461 du: display@fff80000 {
462 compatible = "renesas,du-r8a7779";
Laurent Pinchart30524ed2016-10-19 01:23:02 +0300463 reg = <0xfff80000 0x40000>;
Simon Horman854b77332016-01-21 13:52:46 +0900464 interrupts = <GIC_SPI 31 IRQ_TYPE_LEVEL_HIGH>;
Laurent Pinchart1f08bbe2014-01-21 16:00:46 +0100465 clocks = <&mstp1_clks R8A7779_CLK_DU>;
Geert Uytterhoeven751e29b2015-06-03 10:14:01 +0200466 power-domains = <&sysc R8A7779_PD_ALWAYS_ON>;
Laurent Pinchart1f08bbe2014-01-21 16:00:46 +0100467 status = "disabled";
468
469 ports {
470 #address-cells = <1>;
471 #size-cells = <0>;
472
473 port@0 {
474 reg = <0>;
475 du_out_rgb0: endpoint {
476 };
477 };
478 port@1 {
479 reg = <1>;
480 du_out_rgb1: endpoint {
481 };
482 };
483 };
484 };
485
Simon Horman1e851532014-05-15 20:31:57 +0900486 clocks {
Geert Uytterhoeven5cc8afc2014-05-23 09:46:19 +0200487 #address-cells = <1>;
488 #size-cells = <1>;
Simon Horman1e851532014-05-15 20:31:57 +0900489 ranges;
490
491 /* External root clock */
Simon Horman3f6dba72016-03-18 08:15:34 +0900492 extal_clk: extal {
Simon Horman1e851532014-05-15 20:31:57 +0900493 compatible = "fixed-clock";
494 #clock-cells = <0>;
495 /* This value must be overriden by the board. */
496 clock-frequency = <0>;
Simon Horman1e851532014-05-15 20:31:57 +0900497 };
498
Geert Uytterhoevenf2be5f02016-01-29 11:04:38 +0100499 /* External SCIF clock */
500 scif_clk: scif {
501 compatible = "fixed-clock";
502 #clock-cells = <0>;
503 /* This value must be overridden by the board. */
504 clock-frequency = <0>;
Geert Uytterhoevenf2be5f02016-01-29 11:04:38 +0100505 };
506
Simon Horman1e851532014-05-15 20:31:57 +0900507 /* Special CPG clocks */
Geert Uytterhoeven2909b872014-05-23 09:46:20 +0200508 cpg_clocks: clocks@ffc80000 {
Simon Horman1e851532014-05-15 20:31:57 +0900509 compatible = "renesas,r8a7779-cpg-clocks";
Geert Uytterhoeven5cc8afc2014-05-23 09:46:19 +0200510 reg = <0xffc80000 0x30>;
Simon Horman1e851532014-05-15 20:31:57 +0900511 clocks = <&extal_clk>;
512 #clock-cells = <1>;
513 clock-output-names = "plla", "z", "zs", "s",
514 "s1", "p", "b", "out";
Geert Uytterhoeven33c36322015-08-04 14:28:09 +0200515 #power-domain-cells = <0>;
Simon Horman1e851532014-05-15 20:31:57 +0900516 };
517
518 /* Fixed factor clocks */
Simon Horman3f6dba72016-03-18 08:15:34 +0900519 i_clk: i {
Simon Horman1e851532014-05-15 20:31:57 +0900520 compatible = "fixed-factor-clock";
521 clocks = <&cpg_clocks R8A7779_CLK_PLLA>;
522 #clock-cells = <0>;
523 clock-div = <2>;
524 clock-mult = <1>;
Simon Horman1e851532014-05-15 20:31:57 +0900525 };
Simon Horman3f6dba72016-03-18 08:15:34 +0900526 s3_clk: s3 {
Simon Horman1e851532014-05-15 20:31:57 +0900527 compatible = "fixed-factor-clock";
528 clocks = <&cpg_clocks R8A7779_CLK_PLLA>;
529 #clock-cells = <0>;
530 clock-div = <8>;
531 clock-mult = <1>;
Simon Horman1e851532014-05-15 20:31:57 +0900532 };
Simon Horman3f6dba72016-03-18 08:15:34 +0900533 s4_clk: s4 {
Simon Horman1e851532014-05-15 20:31:57 +0900534 compatible = "fixed-factor-clock";
535 clocks = <&cpg_clocks R8A7779_CLK_PLLA>;
536 #clock-cells = <0>;
537 clock-div = <16>;
538 clock-mult = <1>;
Simon Horman1e851532014-05-15 20:31:57 +0900539 };
Simon Horman3f6dba72016-03-18 08:15:34 +0900540 g_clk: g {
Simon Horman1e851532014-05-15 20:31:57 +0900541 compatible = "fixed-factor-clock";
542 clocks = <&cpg_clocks R8A7779_CLK_PLLA>;
543 #clock-cells = <0>;
544 clock-div = <24>;
545 clock-mult = <1>;
Simon Horman1e851532014-05-15 20:31:57 +0900546 };
547
548 /* Gate clocks */
Geert Uytterhoeven2909b872014-05-23 09:46:20 +0200549 mstp0_clks: clocks@ffc80030 {
Simon Horman1e851532014-05-15 20:31:57 +0900550 compatible = "renesas,r8a7779-mstp-clocks",
Geert Uytterhoeven99e544c2014-08-28 10:21:55 +0200551 "renesas,cpg-mstp-clocks";
Geert Uytterhoeven5cc8afc2014-05-23 09:46:19 +0200552 reg = <0xffc80030 4>;
Simon Horman1e851532014-05-15 20:31:57 +0900553 clocks = <&cpg_clocks R8A7779_CLK_S>,
Geert Uytterhoeven99e544c2014-08-28 10:21:55 +0200554 <&cpg_clocks R8A7779_CLK_P>,
Simon Horman1e851532014-05-15 20:31:57 +0900555 <&cpg_clocks R8A7779_CLK_P>,
556 <&cpg_clocks R8A7779_CLK_P>,
557 <&cpg_clocks R8A7779_CLK_S>,
558 <&cpg_clocks R8A7779_CLK_S>,
Magnus Dammc6ce3cd2014-12-15 14:00:34 +0900559 <&cpg_clocks R8A7779_CLK_P>,
560 <&cpg_clocks R8A7779_CLK_P>,
561 <&cpg_clocks R8A7779_CLK_P>,
562 <&cpg_clocks R8A7779_CLK_P>,
563 <&cpg_clocks R8A7779_CLK_P>,
564 <&cpg_clocks R8A7779_CLK_P>,
Simon Horman1e851532014-05-15 20:31:57 +0900565 <&cpg_clocks R8A7779_CLK_P>,
566 <&cpg_clocks R8A7779_CLK_P>,
567 <&cpg_clocks R8A7779_CLK_P>,
568 <&cpg_clocks R8A7779_CLK_P>;
569 #clock-cells = <1>;
Geert Uytterhoeven64530fc2014-11-10 19:49:36 +0100570 clock-indices = <
Simon Horman1e851532014-05-15 20:31:57 +0900571 R8A7779_CLK_HSPI R8A7779_CLK_TMU2
572 R8A7779_CLK_TMU1 R8A7779_CLK_TMU0
573 R8A7779_CLK_HSCIF1 R8A7779_CLK_HSCIF0
574 R8A7779_CLK_SCIF5 R8A7779_CLK_SCIF4
575 R8A7779_CLK_SCIF3 R8A7779_CLK_SCIF2
576 R8A7779_CLK_SCIF1 R8A7779_CLK_SCIF0
577 R8A7779_CLK_I2C3 R8A7779_CLK_I2C2
578 R8A7779_CLK_I2C1 R8A7779_CLK_I2C0
579 >;
580 clock-output-names =
581 "hspi", "tmu2", "tmu1", "tmu0", "hscif1",
582 "hscif0", "scif5", "scif4", "scif3", "scif2",
583 "scif1", "scif0", "i2c3", "i2c2", "i2c1",
584 "i2c0";
585 };
Geert Uytterhoeven2909b872014-05-23 09:46:20 +0200586 mstp1_clks: clocks@ffc80034 {
Simon Horman1e851532014-05-15 20:31:57 +0900587 compatible = "renesas,r8a7779-mstp-clocks",
Geert Uytterhoeven99e544c2014-08-28 10:21:55 +0200588 "renesas,cpg-mstp-clocks";
Geert Uytterhoeven5cc8afc2014-05-23 09:46:19 +0200589 reg = <0xffc80034 4>, <0xffc80044 4>;
Simon Horman1e851532014-05-15 20:31:57 +0900590 clocks = <&cpg_clocks R8A7779_CLK_P>,
591 <&cpg_clocks R8A7779_CLK_P>,
592 <&cpg_clocks R8A7779_CLK_S>,
593 <&cpg_clocks R8A7779_CLK_S>,
594 <&cpg_clocks R8A7779_CLK_S>,
595 <&cpg_clocks R8A7779_CLK_S>,
596 <&cpg_clocks R8A7779_CLK_P>,
597 <&cpg_clocks R8A7779_CLK_P>,
598 <&cpg_clocks R8A7779_CLK_P>,
599 <&cpg_clocks R8A7779_CLK_S>;
600 #clock-cells = <1>;
Geert Uytterhoeven64530fc2014-11-10 19:49:36 +0100601 clock-indices = <
Simon Horman1e851532014-05-15 20:31:57 +0900602 R8A7779_CLK_USB01 R8A7779_CLK_USB2
603 R8A7779_CLK_DU R8A7779_CLK_VIN2
604 R8A7779_CLK_VIN1 R8A7779_CLK_VIN0
605 R8A7779_CLK_ETHER R8A7779_CLK_SATA
606 R8A7779_CLK_PCIE R8A7779_CLK_VIN3
607 >;
608 clock-output-names =
609 "usb01", "usb2",
610 "du", "vin2",
611 "vin1", "vin0",
612 "ether", "sata",
613 "pcie", "vin3";
614 };
Geert Uytterhoeven2909b872014-05-23 09:46:20 +0200615 mstp3_clks: clocks@ffc8003c {
Simon Horman1e851532014-05-15 20:31:57 +0900616 compatible = "renesas,r8a7779-mstp-clocks",
Geert Uytterhoeven99e544c2014-08-28 10:21:55 +0200617 "renesas,cpg-mstp-clocks";
Geert Uytterhoeven5cc8afc2014-05-23 09:46:19 +0200618 reg = <0xffc8003c 4>;
Simon Horman1e851532014-05-15 20:31:57 +0900619 clocks = <&s4_clk>, <&s4_clk>, <&s4_clk>, <&s4_clk>,
620 <&s4_clk>, <&s4_clk>;
621 #clock-cells = <1>;
Geert Uytterhoeven64530fc2014-11-10 19:49:36 +0100622 clock-indices = <
Simon Horman1e851532014-05-15 20:31:57 +0900623 R8A7779_CLK_SDHI3 R8A7779_CLK_SDHI2
624 R8A7779_CLK_SDHI1 R8A7779_CLK_SDHI0
625 R8A7779_CLK_MMC1 R8A7779_CLK_MMC0
626 >;
627 clock-output-names =
628 "sdhi3", "sdhi2", "sdhi1", "sdhi0",
629 "mmc1", "mmc0";
630 };
631 };
Geert Uytterhoevenb2df3aa2015-06-03 10:14:01 +0200632
Geert Uytterhoeven9ba368e2016-11-14 19:37:10 +0100633 prr: chipid@ff000044 {
634 compatible = "renesas,prr";
635 reg = <0xff000044 4>;
636 };
637
Geert Uytterhoevenad401502016-06-01 13:47:30 +0200638 rst: reset-controller@ffcc0000 {
639 compatible = "renesas,r8a7779-reset-wdt";
640 reg = <0xffcc0000 0x48>;
641 };
642
Geert Uytterhoevenb2df3aa2015-06-03 10:14:01 +0200643 sysc: system-controller@ffd85000 {
644 compatible = "renesas,r8a7779-sysc";
645 reg = <0xffd85000 0x0200>;
646 #power-domain-cells = <1>;
647 };
Simon Hormanc58a1542013-01-29 14:21:46 +0900648};