blob: e6d0b166d68dc919c4b2ec4188ec43223467fbe9 [file] [log] [blame]
Andy Fleming2654d632006-08-18 18:04:34 -05001/*
2 * MPC8540 ADS Device Tree Source
3 *
Kumar Gala32f960e2008-04-17 01:28:15 -05004 * Copyright 2006, 2008 Freescale Semiconductor Inc.
Andy Fleming2654d632006-08-18 18:04:34 -05005 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
10 */
11
Kumar Gala32f960e2008-04-17 01:28:15 -050012/dts-v1/;
Andy Fleming2654d632006-08-18 18:04:34 -050013
Hongtao Jiadc373742015-09-18 12:00:24 +080014/include/ "e500v2_power_isa.dtsi"
Olivia Yin2eb28002012-08-09 15:42:34 +080015
Andy Fleming2654d632006-08-18 18:04:34 -050016/ {
17 model = "MPC8540ADS";
Kumar Gala52094872007-02-17 16:04:23 -060018 compatible = "MPC8540ADS", "MPC85xxADS";
Andy Fleming2654d632006-08-18 18:04:34 -050019 #address-cells = <1>;
20 #size-cells = <1>;
Andy Fleming2654d632006-08-18 18:04:34 -050021
Kumar Galaea082fa2007-12-12 01:46:12 -060022 aliases {
23 ethernet0 = &enet0;
24 ethernet1 = &enet1;
25 ethernet2 = &enet2;
26 serial0 = &serial0;
27 serial1 = &serial1;
28 pci0 = &pci0;
29 };
30
Andy Fleming2654d632006-08-18 18:04:34 -050031 cpus {
Andy Fleming2654d632006-08-18 18:04:34 -050032 #address-cells = <1>;
33 #size-cells = <0>;
Andy Fleming2654d632006-08-18 18:04:34 -050034
35 PowerPC,8540@0 {
36 device_type = "cpu";
Kumar Gala32f960e2008-04-17 01:28:15 -050037 reg = <0x0>;
38 d-cache-line-size = <32>; // 32 bytes
39 i-cache-line-size = <32>; // 32 bytes
40 d-cache-size = <0x8000>; // L1, 32K
41 i-cache-size = <0x8000>; // L1, 32K
Andy Fleming2654d632006-08-18 18:04:34 -050042 timebase-frequency = <0>; // 33 MHz, from uboot
43 bus-frequency = <0>; // 166 MHz
44 clock-frequency = <0>; // 825 MHz, from uboot
Kumar Galac0540652008-05-30 13:43:43 -050045 next-level-cache = <&L2>;
Andy Fleming2654d632006-08-18 18:04:34 -050046 };
47 };
48
49 memory {
50 device_type = "memory";
Kumar Gala32f960e2008-04-17 01:28:15 -050051 reg = <0x0 0x8000000>; // 128M at 0x0
Andy Fleming2654d632006-08-18 18:04:34 -050052 };
53
54 soc8540@e0000000 {
55 #address-cells = <1>;
56 #size-cells = <1>;
Andy Fleming2654d632006-08-18 18:04:34 -050057 device_type = "soc";
Kim Phillipscf0d19f2008-07-29 15:29:24 -050058 compatible = "simple-bus";
Kumar Gala32f960e2008-04-17 01:28:15 -050059 ranges = <0x0 0xe0000000 0x100000>;
Andy Fleming2654d632006-08-18 18:04:34 -050060 bus-frequency = <0>;
61
Kumar Galae1a22892009-04-22 13:17:42 -050062 ecm-law@0 {
63 compatible = "fsl,ecm-law";
64 reg = <0x0 0x1000>;
65 fsl,num-laws = <8>;
66 };
67
68 ecm@1000 {
69 compatible = "fsl,mpc8540-ecm", "fsl,ecm";
70 reg = <0x1000 0x1000>;
71 interrupts = <17 2>;
72 interrupt-parent = <&mpic>;
73 };
74
Dave Jiang50cf6702007-05-10 10:03:05 -070075 memory-controller@2000 {
Bradley Hughes8a4ab212010-07-21 12:04:06 +000076 compatible = "fsl,mpc8540-memory-controller";
Kumar Gala32f960e2008-04-17 01:28:15 -050077 reg = <0x2000 0x1000>;
Dave Jiang50cf6702007-05-10 10:03:05 -070078 interrupt-parent = <&mpic>;
Kumar Gala32f960e2008-04-17 01:28:15 -050079 interrupts = <18 2>;
Dave Jiang50cf6702007-05-10 10:03:05 -070080 };
81
Kumar Galac0540652008-05-30 13:43:43 -050082 L2: l2-cache-controller@20000 {
Bradley Hughes8a4ab212010-07-21 12:04:06 +000083 compatible = "fsl,mpc8540-l2-cache-controller";
Kumar Gala32f960e2008-04-17 01:28:15 -050084 reg = <0x20000 0x1000>;
85 cache-line-size = <32>; // 32 bytes
86 cache-size = <0x40000>; // L2, 256K
Dave Jiang50cf6702007-05-10 10:03:05 -070087 interrupt-parent = <&mpic>;
Kumar Gala32f960e2008-04-17 01:28:15 -050088 interrupts = <16 2>;
Dave Jiang50cf6702007-05-10 10:03:05 -070089 };
90
Andy Fleming2654d632006-08-18 18:04:34 -050091 i2c@3000 {
Kumar Galaec9686c2007-12-11 23:17:24 -060092 #address-cells = <1>;
93 #size-cells = <0>;
94 cell-index = <0>;
Andy Fleming2654d632006-08-18 18:04:34 -050095 compatible = "fsl-i2c";
Kumar Gala32f960e2008-04-17 01:28:15 -050096 reg = <0x3000 0x100>;
97 interrupts = <43 2>;
Kumar Gala52094872007-02-17 16:04:23 -060098 interrupt-parent = <&mpic>;
Andy Fleming2654d632006-08-18 18:04:34 -050099 dfsrr;
100 };
101
Kumar Galadee80552008-06-27 13:45:19 -0500102 dma@21300 {
103 #address-cells = <1>;
104 #size-cells = <1>;
105 compatible = "fsl,mpc8540-dma", "fsl,eloplus-dma";
106 reg = <0x21300 0x4>;
107 ranges = <0x0 0x21100 0x200>;
108 cell-index = <0>;
109 dma-channel@0 {
110 compatible = "fsl,mpc8540-dma-channel",
111 "fsl,eloplus-dma-channel";
112 reg = <0x0 0x80>;
113 cell-index = <0>;
114 interrupt-parent = <&mpic>;
115 interrupts = <20 2>;
116 };
117 dma-channel@80 {
118 compatible = "fsl,mpc8540-dma-channel",
119 "fsl,eloplus-dma-channel";
120 reg = <0x80 0x80>;
121 cell-index = <1>;
122 interrupt-parent = <&mpic>;
123 interrupts = <21 2>;
124 };
125 dma-channel@100 {
126 compatible = "fsl,mpc8540-dma-channel",
127 "fsl,eloplus-dma-channel";
128 reg = <0x100 0x80>;
129 cell-index = <2>;
130 interrupt-parent = <&mpic>;
131 interrupts = <22 2>;
132 };
133 dma-channel@180 {
134 compatible = "fsl,mpc8540-dma-channel",
135 "fsl,eloplus-dma-channel";
136 reg = <0x180 0x80>;
137 cell-index = <3>;
138 interrupt-parent = <&mpic>;
139 interrupts = <23 2>;
140 };
141 };
142
Kumar Galae77b28e2007-12-12 00:28:35 -0600143 enet0: ethernet@24000 {
Anton Vorontsov84ba4a52009-03-19 21:01:48 +0300144 #address-cells = <1>;
145 #size-cells = <1>;
Kumar Galae77b28e2007-12-12 00:28:35 -0600146 cell-index = <0>;
Andy Fleming2654d632006-08-18 18:04:34 -0500147 device_type = "network";
148 model = "TSEC";
149 compatible = "gianfar";
Kumar Gala32f960e2008-04-17 01:28:15 -0500150 reg = <0x24000 0x1000>;
Anton Vorontsov84ba4a52009-03-19 21:01:48 +0300151 ranges = <0x0 0x24000 0x1000>;
Timur Tabieae98262007-06-22 14:33:15 -0500152 local-mac-address = [ 00 00 00 00 00 00 ];
Kumar Gala32f960e2008-04-17 01:28:15 -0500153 interrupts = <29 2 30 2 34 2>;
Kumar Gala52094872007-02-17 16:04:23 -0600154 interrupt-parent = <&mpic>;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800155 tbi-handle = <&tbi0>;
Kumar Gala52094872007-02-17 16:04:23 -0600156 phy-handle = <&phy0>;
Anton Vorontsov84ba4a52009-03-19 21:01:48 +0300157
158 mdio@520 {
159 #address-cells = <1>;
160 #size-cells = <0>;
161 compatible = "fsl,gianfar-mdio";
162 reg = <0x520 0x20>;
163
164 phy0: ethernet-phy@0 {
165 interrupt-parent = <&mpic>;
166 interrupts = <5 1>;
167 reg = <0x0>;
Anton Vorontsov84ba4a52009-03-19 21:01:48 +0300168 };
169 phy1: ethernet-phy@1 {
170 interrupt-parent = <&mpic>;
171 interrupts = <5 1>;
172 reg = <0x1>;
Anton Vorontsov84ba4a52009-03-19 21:01:48 +0300173 };
174 phy3: ethernet-phy@3 {
175 interrupt-parent = <&mpic>;
176 interrupts = <7 1>;
177 reg = <0x3>;
Anton Vorontsov84ba4a52009-03-19 21:01:48 +0300178 };
179 tbi0: tbi-phy@11 {
180 reg = <0x11>;
181 device_type = "tbi-phy";
182 };
183 };
Andy Fleming2654d632006-08-18 18:04:34 -0500184 };
185
Kumar Galae77b28e2007-12-12 00:28:35 -0600186 enet1: ethernet@25000 {
Anton Vorontsov84ba4a52009-03-19 21:01:48 +0300187 #address-cells = <1>;
188 #size-cells = <1>;
Kumar Galae77b28e2007-12-12 00:28:35 -0600189 cell-index = <1>;
Andy Fleming2654d632006-08-18 18:04:34 -0500190 device_type = "network";
191 model = "TSEC";
192 compatible = "gianfar";
Kumar Gala32f960e2008-04-17 01:28:15 -0500193 reg = <0x25000 0x1000>;
Anton Vorontsov84ba4a52009-03-19 21:01:48 +0300194 ranges = <0x0 0x25000 0x1000>;
Timur Tabieae98262007-06-22 14:33:15 -0500195 local-mac-address = [ 00 00 00 00 00 00 ];
Kumar Gala32f960e2008-04-17 01:28:15 -0500196 interrupts = <35 2 36 2 40 2>;
Kumar Gala52094872007-02-17 16:04:23 -0600197 interrupt-parent = <&mpic>;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800198 tbi-handle = <&tbi1>;
Kumar Gala52094872007-02-17 16:04:23 -0600199 phy-handle = <&phy1>;
Anton Vorontsov84ba4a52009-03-19 21:01:48 +0300200
201 mdio@520 {
202 #address-cells = <1>;
203 #size-cells = <0>;
204 compatible = "fsl,gianfar-tbi";
205 reg = <0x520 0x20>;
206
207 tbi1: tbi-phy@11 {
208 reg = <0x11>;
209 device_type = "tbi-phy";
210 };
211 };
Andy Fleming2654d632006-08-18 18:04:34 -0500212 };
213
Kumar Galae77b28e2007-12-12 00:28:35 -0600214 enet2: ethernet@26000 {
Anton Vorontsov84ba4a52009-03-19 21:01:48 +0300215 #address-cells = <1>;
216 #size-cells = <1>;
Kumar Galae77b28e2007-12-12 00:28:35 -0600217 cell-index = <2>;
Andy Fleming2654d632006-08-18 18:04:34 -0500218 device_type = "network";
Andy Flemingaa74a302006-08-21 14:29:28 -0500219 model = "FEC";
Andy Fleming2654d632006-08-18 18:04:34 -0500220 compatible = "gianfar";
Kumar Gala32f960e2008-04-17 01:28:15 -0500221 reg = <0x26000 0x1000>;
Anton Vorontsov84ba4a52009-03-19 21:01:48 +0300222 ranges = <0x0 0x26000 0x1000>;
Timur Tabieae98262007-06-22 14:33:15 -0500223 local-mac-address = [ 00 00 00 00 00 00 ];
Kumar Gala32f960e2008-04-17 01:28:15 -0500224 interrupts = <41 2>;
Kumar Gala52094872007-02-17 16:04:23 -0600225 interrupt-parent = <&mpic>;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800226 tbi-handle = <&tbi2>;
Kumar Gala52094872007-02-17 16:04:23 -0600227 phy-handle = <&phy3>;
Anton Vorontsov84ba4a52009-03-19 21:01:48 +0300228
229 mdio@520 {
230 #address-cells = <1>;
231 #size-cells = <0>;
232 compatible = "fsl,gianfar-tbi";
233 reg = <0x520 0x20>;
234
235 tbi2: tbi-phy@11 {
236 reg = <0x11>;
237 device_type = "tbi-phy";
238 };
239 };
Andy Fleming2654d632006-08-18 18:04:34 -0500240 };
241
Kumar Galaea082fa2007-12-12 01:46:12 -0600242 serial0: serial@4500 {
243 cell-index = <0>;
Andy Fleming2654d632006-08-18 18:04:34 -0500244 device_type = "serial";
Kumar Galaf706bed2011-11-28 13:58:53 -0600245 compatible = "fsl,ns16550", "ns16550";
Kumar Gala32f960e2008-04-17 01:28:15 -0500246 reg = <0x4500 0x100>; // reg base, size
Andy Fleming2654d632006-08-18 18:04:34 -0500247 clock-frequency = <0>; // should we fill in in uboot?
Kumar Gala32f960e2008-04-17 01:28:15 -0500248 interrupts = <42 2>;
Kumar Gala52094872007-02-17 16:04:23 -0600249 interrupt-parent = <&mpic>;
Andy Fleming2654d632006-08-18 18:04:34 -0500250 };
251
Kumar Galaea082fa2007-12-12 01:46:12 -0600252 serial1: serial@4600 {
253 cell-index = <1>;
Andy Fleming2654d632006-08-18 18:04:34 -0500254 device_type = "serial";
Kumar Galaf706bed2011-11-28 13:58:53 -0600255 compatible = "fsl,ns16550", "ns16550";
Kumar Gala32f960e2008-04-17 01:28:15 -0500256 reg = <0x4600 0x100>; // reg base, size
Andy Fleming2654d632006-08-18 18:04:34 -0500257 clock-frequency = <0>; // should we fill in in uboot?
Kumar Gala32f960e2008-04-17 01:28:15 -0500258 interrupts = <42 2>;
Kumar Gala52094872007-02-17 16:04:23 -0600259 interrupt-parent = <&mpic>;
Andy Fleming2654d632006-08-18 18:04:34 -0500260 };
Kumar Gala52094872007-02-17 16:04:23 -0600261 mpic: pic@40000 {
Andy Fleming2654d632006-08-18 18:04:34 -0500262 interrupt-controller;
263 #address-cells = <0>;
264 #interrupt-cells = <2>;
Kumar Gala32f960e2008-04-17 01:28:15 -0500265 reg = <0x40000 0x40000>;
Andy Fleming2654d632006-08-18 18:04:34 -0500266 compatible = "chrp,open-pic";
267 device_type = "open-pic";
Andy Fleming2654d632006-08-18 18:04:34 -0500268 };
269 };
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500270
Kumar Galaea082fa2007-12-12 01:46:12 -0600271 pci0: pci@e0008000 {
Kumar Gala32f960e2008-04-17 01:28:15 -0500272 interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500273 interrupt-map = <
274
275 /* IDSEL 0x02 */
Kumar Gala32f960e2008-04-17 01:28:15 -0500276 0x1000 0x0 0x0 0x1 &mpic 0x1 0x1
277 0x1000 0x0 0x0 0x2 &mpic 0x2 0x1
278 0x1000 0x0 0x0 0x3 &mpic 0x3 0x1
279 0x1000 0x0 0x0 0x4 &mpic 0x4 0x1
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500280
281 /* IDSEL 0x03 */
Kumar Gala32f960e2008-04-17 01:28:15 -0500282 0x1800 0x0 0x0 0x1 &mpic 0x4 0x1
283 0x1800 0x0 0x0 0x2 &mpic 0x1 0x1
284 0x1800 0x0 0x0 0x3 &mpic 0x2 0x1
285 0x1800 0x0 0x0 0x4 &mpic 0x3 0x1
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500286
287 /* IDSEL 0x04 */
Kumar Gala32f960e2008-04-17 01:28:15 -0500288 0x2000 0x0 0x0 0x1 &mpic 0x3 0x1
289 0x2000 0x0 0x0 0x2 &mpic 0x4 0x1
290 0x2000 0x0 0x0 0x3 &mpic 0x1 0x1
291 0x2000 0x0 0x0 0x4 &mpic 0x2 0x1
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500292
293 /* IDSEL 0x05 */
Kumar Gala32f960e2008-04-17 01:28:15 -0500294 0x2800 0x0 0x0 0x1 &mpic 0x2 0x1
295 0x2800 0x0 0x0 0x2 &mpic 0x3 0x1
296 0x2800 0x0 0x0 0x3 &mpic 0x4 0x1
297 0x2800 0x0 0x0 0x4 &mpic 0x1 0x1
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500298
299 /* IDSEL 0x0c */
Kumar Gala32f960e2008-04-17 01:28:15 -0500300 0x6000 0x0 0x0 0x1 &mpic 0x1 0x1
301 0x6000 0x0 0x0 0x2 &mpic 0x2 0x1
302 0x6000 0x0 0x0 0x3 &mpic 0x3 0x1
303 0x6000 0x0 0x0 0x4 &mpic 0x4 0x1
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500304
305 /* IDSEL 0x0d */
Kumar Gala32f960e2008-04-17 01:28:15 -0500306 0x6800 0x0 0x0 0x1 &mpic 0x4 0x1
307 0x6800 0x0 0x0 0x2 &mpic 0x1 0x1
308 0x6800 0x0 0x0 0x3 &mpic 0x2 0x1
309 0x6800 0x0 0x0 0x4 &mpic 0x3 0x1
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500310
311 /* IDSEL 0x0e */
Kumar Gala32f960e2008-04-17 01:28:15 -0500312 0x7000 0x0 0x0 0x1 &mpic 0x3 0x1
313 0x7000 0x0 0x0 0x2 &mpic 0x4 0x1
314 0x7000 0x0 0x0 0x3 &mpic 0x1 0x1
315 0x7000 0x0 0x0 0x4 &mpic 0x2 0x1
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500316
317 /* IDSEL 0x0f */
Kumar Gala32f960e2008-04-17 01:28:15 -0500318 0x7800 0x0 0x0 0x1 &mpic 0x2 0x1
319 0x7800 0x0 0x0 0x2 &mpic 0x3 0x1
320 0x7800 0x0 0x0 0x3 &mpic 0x4 0x1
321 0x7800 0x0 0x0 0x4 &mpic 0x1 0x1
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500322
323 /* IDSEL 0x12 */
Kumar Gala32f960e2008-04-17 01:28:15 -0500324 0x9000 0x0 0x0 0x1 &mpic 0x1 0x1
325 0x9000 0x0 0x0 0x2 &mpic 0x2 0x1
326 0x9000 0x0 0x0 0x3 &mpic 0x3 0x1
327 0x9000 0x0 0x0 0x4 &mpic 0x4 0x1
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500328
329 /* IDSEL 0x13 */
Kumar Gala32f960e2008-04-17 01:28:15 -0500330 0x9800 0x0 0x0 0x1 &mpic 0x4 0x1
331 0x9800 0x0 0x0 0x2 &mpic 0x1 0x1
332 0x9800 0x0 0x0 0x3 &mpic 0x2 0x1
333 0x9800 0x0 0x0 0x4 &mpic 0x3 0x1
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500334
335 /* IDSEL 0x14 */
Kumar Gala32f960e2008-04-17 01:28:15 -0500336 0xa000 0x0 0x0 0x1 &mpic 0x3 0x1
337 0xa000 0x0 0x0 0x2 &mpic 0x4 0x1
338 0xa000 0x0 0x0 0x3 &mpic 0x1 0x1
339 0xa000 0x0 0x0 0x4 &mpic 0x2 0x1
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500340
341 /* IDSEL 0x15 */
Kumar Gala32f960e2008-04-17 01:28:15 -0500342 0xa800 0x0 0x0 0x1 &mpic 0x2 0x1
343 0xa800 0x0 0x0 0x2 &mpic 0x3 0x1
344 0xa800 0x0 0x0 0x3 &mpic 0x4 0x1
345 0xa800 0x0 0x0 0x4 &mpic 0x1 0x1>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500346 interrupt-parent = <&mpic>;
Kumar Gala32f960e2008-04-17 01:28:15 -0500347 interrupts = <24 2>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500348 bus-range = <0 0>;
Kumar Gala32f960e2008-04-17 01:28:15 -0500349 ranges = <0x2000000 0x0 0x80000000 0x80000000 0x0 0x20000000
350 0x1000000 0x0 0x0 0xe2000000 0x0 0x100000>;
351 clock-frequency = <66666666>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500352 #interrupt-cells = <1>;
353 #size-cells = <2>;
354 #address-cells = <3>;
Kumar Gala32f960e2008-04-17 01:28:15 -0500355 reg = <0xe0008000 0x1000>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500356 compatible = "fsl,mpc8540-pcix", "fsl,mpc8540-pci";
357 device_type = "pci";
358 };
Andy Fleming2654d632006-08-18 18:04:34 -0500359};