blob: a3b76a709951bce3ffee81bc1b2f19204108eee1 [file] [log] [blame]
Li Yang7a234d02006-10-02 20:10:10 -05001/*
2 * MPC8360E EMDS Device Tree Source
3 *
4 * Copyright 2006 Freescale Semiconductor Inc.
5 *
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
12
13/*
14/memreserve/ 00000000 1000000;
15*/
16
Paul Gortmakercda13dd2008-01-28 16:09:36 -050017/dts-v1/;
18
Li Yang7a234d02006-10-02 20:10:10 -050019/ {
Kumar Galad71a1dc2007-02-16 09:57:22 -060020 model = "MPC8360MDS";
21 compatible = "MPC8360EMDS", "MPC836xMDS", "MPC83xxMDS";
Li Yang7a234d02006-10-02 20:10:10 -050022 #address-cells = <1>;
23 #size-cells = <1>;
Li Yang7a234d02006-10-02 20:10:10 -050024
Kumar Galaea082fa2007-12-12 01:46:12 -060025 aliases {
26 ethernet0 = &enet0;
27 ethernet1 = &enet1;
28 serial0 = &serial0;
29 serial1 = &serial1;
30 pci0 = &pci0;
31 };
32
Li Yang7a234d02006-10-02 20:10:10 -050033 cpus {
Li Yang7a234d02006-10-02 20:10:10 -050034 #address-cells = <1>;
35 #size-cells = <0>;
Li Yang7a234d02006-10-02 20:10:10 -050036
37 PowerPC,8360@0 {
38 device_type = "cpu";
Paul Gortmakercda13dd2008-01-28 16:09:36 -050039 reg = <0x0>;
40 d-cache-line-size = <32>; // 32 bytes
41 i-cache-line-size = <32>; // 32 bytes
42 d-cache-size = <32768>; // L1, 32K
43 i-cache-size = <32768>; // L1, 32K
44 timebase-frequency = <66000000>;
45 bus-frequency = <264000000>;
46 clock-frequency = <528000000>;
Li Yang7a234d02006-10-02 20:10:10 -050047 };
48 };
49
50 memory {
51 device_type = "memory";
Paul Gortmakercda13dd2008-01-28 16:09:36 -050052 reg = <0x00000000 0x10000000>;
Li Yang7a234d02006-10-02 20:10:10 -050053 };
54
55 bcsr@f8000000 {
56 device_type = "board-control";
Paul Gortmakercda13dd2008-01-28 16:09:36 -050057 reg = <0xf8000000 0x8000>;
Li Yang7a234d02006-10-02 20:10:10 -050058 };
59
60 soc8360@e0000000 {
61 #address-cells = <1>;
62 #size-cells = <1>;
Li Yang7a234d02006-10-02 20:10:10 -050063 device_type = "soc";
Kim Phillipscf0d19f2008-07-29 15:29:24 -050064 compatible = "simple-bus";
Paul Gortmakercda13dd2008-01-28 16:09:36 -050065 ranges = <0x0 0xe0000000 0x00100000>;
66 reg = <0xe0000000 0x00000200>;
67 bus-frequency = <264000000>;
Li Yang7a234d02006-10-02 20:10:10 -050068
69 wdt@200 {
70 device_type = "watchdog";
71 compatible = "mpc83xx_wdt";
Paul Gortmakercda13dd2008-01-28 16:09:36 -050072 reg = <0x200 0x100>;
Li Yang7a234d02006-10-02 20:10:10 -050073 };
74
75 i2c@3000 {
Kim Phillips27f49802007-11-08 13:37:06 -060076 #address-cells = <1>;
77 #size-cells = <0>;
Kumar Galaec9686c2007-12-11 23:17:24 -060078 cell-index = <0>;
Li Yang7a234d02006-10-02 20:10:10 -050079 compatible = "fsl-i2c";
Paul Gortmakercda13dd2008-01-28 16:09:36 -050080 reg = <0x3000 0x100>;
81 interrupts = <14 0x8>;
82 interrupt-parent = <&ipic>;
Li Yang7a234d02006-10-02 20:10:10 -050083 dfsrr;
Kim Phillips27f49802007-11-08 13:37:06 -060084
85 rtc@68 {
86 compatible = "dallas,ds1374";
Paul Gortmakercda13dd2008-01-28 16:09:36 -050087 reg = <0x68>;
Kim Phillips27f49802007-11-08 13:37:06 -060088 };
Li Yang7a234d02006-10-02 20:10:10 -050089 };
90
91 i2c@3100 {
Kim Phillips27f49802007-11-08 13:37:06 -060092 #address-cells = <1>;
93 #size-cells = <0>;
Kumar Galaec9686c2007-12-11 23:17:24 -060094 cell-index = <1>;
Li Yang7a234d02006-10-02 20:10:10 -050095 compatible = "fsl-i2c";
Paul Gortmakercda13dd2008-01-28 16:09:36 -050096 reg = <0x3100 0x100>;
97 interrupts = <15 0x8>;
98 interrupt-parent = <&ipic>;
Li Yang7a234d02006-10-02 20:10:10 -050099 dfsrr;
100 };
101
Kumar Galaea082fa2007-12-12 01:46:12 -0600102 serial0: serial@4500 {
103 cell-index = <0>;
Li Yang7a234d02006-10-02 20:10:10 -0500104 device_type = "serial";
105 compatible = "ns16550";
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500106 reg = <0x4500 0x100>;
107 clock-frequency = <264000000>;
108 interrupts = <9 0x8>;
109 interrupt-parent = <&ipic>;
Li Yang7a234d02006-10-02 20:10:10 -0500110 };
111
Kumar Galaea082fa2007-12-12 01:46:12 -0600112 serial1: serial@4600 {
113 cell-index = <1>;
Li Yang7a234d02006-10-02 20:10:10 -0500114 device_type = "serial";
115 compatible = "ns16550";
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500116 reg = <0x4600 0x100>;
117 clock-frequency = <264000000>;
118 interrupts = <10 0x8>;
119 interrupt-parent = <&ipic>;
Li Yang7a234d02006-10-02 20:10:10 -0500120 };
121
Kumar Galadee80552008-06-27 13:45:19 -0500122 dma@82a8 {
123 #address-cells = <1>;
124 #size-cells = <1>;
125 compatible = "fsl,mpc8360-dma", "fsl,elo-dma";
126 reg = <0x82a8 4>;
127 ranges = <0 0x8100 0x1a8>;
128 interrupt-parent = <&ipic>;
129 interrupts = <71 8>;
130 cell-index = <0>;
131 dma-channel@0 {
132 compatible = "fsl,mpc8360-dma-channel", "fsl,elo-dma-channel";
133 reg = <0 0x80>;
134 interrupt-parent = <&ipic>;
135 interrupts = <71 8>;
136 };
137 dma-channel@80 {
138 compatible = "fsl,mpc8360-dma-channel", "fsl,elo-dma-channel";
139 reg = <0x80 0x80>;
140 interrupt-parent = <&ipic>;
141 interrupts = <71 8>;
142 };
143 dma-channel@100 {
144 compatible = "fsl,mpc8360-dma-channel", "fsl,elo-dma-channel";
145 reg = <0x100 0x80>;
146 interrupt-parent = <&ipic>;
147 interrupts = <71 8>;
148 };
149 dma-channel@180 {
150 compatible = "fsl,mpc8360-dma-channel", "fsl,elo-dma-channel";
151 reg = <0x180 0x28>;
152 interrupt-parent = <&ipic>;
153 interrupts = <71 8>;
154 };
155 };
156
Li Yang7a234d02006-10-02 20:10:10 -0500157 crypto@30000 {
Kim Phillips3fd44732008-07-08 19:13:33 -0500158 compatible = "fsl,sec2.0";
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500159 reg = <0x30000 0x10000>;
160 interrupts = <11 0x8>;
161 interrupt-parent = <&ipic>;
Kim Phillips3fd44732008-07-08 19:13:33 -0500162 fsl,num-channels = <4>;
163 fsl,channel-fifo-len = <24>;
164 fsl,exec-units-mask = <0x7e>;
165 fsl,descriptor-types-mask = <0x01010ebf>;
Li Yang7a234d02006-10-02 20:10:10 -0500166 };
167
Kumar Galad71a1dc2007-02-16 09:57:22 -0600168 ipic: pic@700 {
Li Yang7a234d02006-10-02 20:10:10 -0500169 interrupt-controller;
170 #address-cells = <0>;
171 #interrupt-cells = <2>;
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500172 reg = <0x700 0x100>;
Li Yang7a234d02006-10-02 20:10:10 -0500173 device_type = "ipic";
174 };
175
176 par_io@1400 {
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500177 reg = <0x1400 0x100>;
Li Yang7a234d02006-10-02 20:10:10 -0500178 device_type = "par_io";
179 num-ports = <7>;
180
Kumar Galad71a1dc2007-02-16 09:57:22 -0600181 pio1: ucc_pin@01 {
Li Yang7a234d02006-10-02 20:10:10 -0500182 pio-map = <
183 /* port pin dir open_drain assignment has_irq */
184 0 3 1 0 1 0 /* TxD0 */
185 0 4 1 0 1 0 /* TxD1 */
186 0 5 1 0 1 0 /* TxD2 */
187 0 6 1 0 1 0 /* TxD3 */
188 1 6 1 0 3 0 /* TxD4 */
189 1 7 1 0 1 0 /* TxD5 */
190 1 9 1 0 2 0 /* TxD6 */
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500191 1 10 1 0 2 0 /* TxD7 */
Li Yang7a234d02006-10-02 20:10:10 -0500192 0 9 2 0 1 0 /* RxD0 */
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500193 0 10 2 0 1 0 /* RxD1 */
194 0 11 2 0 1 0 /* RxD2 */
195 0 12 2 0 1 0 /* RxD3 */
196 0 13 2 0 1 0 /* RxD4 */
Li Yang7a234d02006-10-02 20:10:10 -0500197 1 1 2 0 2 0 /* RxD5 */
198 1 0 2 0 2 0 /* RxD6 */
199 1 4 2 0 2 0 /* RxD7 */
200 0 7 1 0 1 0 /* TX_EN */
201 0 8 1 0 1 0 /* TX_ER */
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500202 0 15 2 0 1 0 /* RX_DV */
203 0 16 2 0 1 0 /* RX_ER */
Li Yang7a234d02006-10-02 20:10:10 -0500204 0 0 2 0 1 0 /* RX_CLK */
205 2 9 1 0 3 0 /* GTX_CLK - CLK10 */
206 2 8 2 0 1 0>; /* GTX125 - CLK9 */
207 };
Kumar Galad71a1dc2007-02-16 09:57:22 -0600208 pio2: ucc_pin@02 {
Li Yang7a234d02006-10-02 20:10:10 -0500209 pio-map = <
210 /* port pin dir open_drain assignment has_irq */
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500211 0 17 1 0 1 0 /* TxD0 */
212 0 18 1 0 1 0 /* TxD1 */
213 0 19 1 0 1 0 /* TxD2 */
214 0 20 1 0 1 0 /* TxD3 */
Li Yang7a234d02006-10-02 20:10:10 -0500215 1 2 1 0 1 0 /* TxD4 */
216 1 3 1 0 2 0 /* TxD5 */
217 1 5 1 0 3 0 /* TxD6 */
218 1 8 1 0 3 0 /* TxD7 */
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500219 0 23 2 0 1 0 /* RxD0 */
220 0 24 2 0 1 0 /* RxD1 */
221 0 25 2 0 1 0 /* RxD2 */
222 0 26 2 0 1 0 /* RxD3 */
223 0 27 2 0 1 0 /* RxD4 */
224 1 12 2 0 2 0 /* RxD5 */
225 1 13 2 0 3 0 /* RxD6 */
226 1 11 2 0 2 0 /* RxD7 */
227 0 21 1 0 1 0 /* TX_EN */
228 0 22 1 0 1 0 /* TX_ER */
229 0 29 2 0 1 0 /* RX_DV */
230 0 30 2 0 1 0 /* RX_ER */
231 0 31 2 0 1 0 /* RX_CLK */
Li Yang7a234d02006-10-02 20:10:10 -0500232 2 2 1 0 2 0 /* GTX_CLK - CLK10 */
233 2 3 2 0 1 0 /* GTX125 - CLK4 */
234 0 1 3 0 2 0 /* MDIO */
235 0 2 1 0 1 0>; /* MDC */
236 };
237
238 };
239 };
240
241 qe@e0100000 {
242 #address-cells = <1>;
243 #size-cells = <1>;
244 device_type = "qe";
Anton Vorontsova2dd70a2008-01-24 18:39:59 +0300245 compatible = "fsl,qe";
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500246 ranges = <0x0 0xe0100000 0x00100000>;
247 reg = <0xe0100000 0x480>;
Li Yang7a234d02006-10-02 20:10:10 -0500248 brg-frequency = <0>;
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500249 bus-frequency = <396000000>;
Li Yang7a234d02006-10-02 20:10:10 -0500250
251 muram@10000 {
Paul Gortmaker390167e2008-01-28 02:27:51 -0500252 #address-cells = <1>;
253 #size-cells = <1>;
Anton Vorontsova2dd70a2008-01-24 18:39:59 +0300254 compatible = "fsl,qe-muram", "fsl,cpm-muram";
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500255 ranges = <0x0 0x00010000 0x0000c000>;
Li Yang7a234d02006-10-02 20:10:10 -0500256
Paul Gortmaker390167e2008-01-28 02:27:51 -0500257 data-only@0 {
Anton Vorontsova2dd70a2008-01-24 18:39:59 +0300258 compatible = "fsl,qe-muram-data",
259 "fsl,cpm-muram-data";
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500260 reg = <0x0 0xc000>;
Li Yang7a234d02006-10-02 20:10:10 -0500261 };
262 };
263
264 spi@4c0 {
Anton Vorontsovf3a2b292008-01-24 18:40:07 +0300265 cell-index = <0>;
266 compatible = "fsl,spi";
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500267 reg = <0x4c0 0x40>;
Li Yang7a234d02006-10-02 20:10:10 -0500268 interrupts = <2>;
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500269 interrupt-parent = <&qeic>;
Li Yang7a234d02006-10-02 20:10:10 -0500270 mode = "cpu";
271 };
272
273 spi@500 {
Anton Vorontsovf3a2b292008-01-24 18:40:07 +0300274 cell-index = <1>;
275 compatible = "fsl,spi";
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500276 reg = <0x500 0x40>;
Li Yang7a234d02006-10-02 20:10:10 -0500277 interrupts = <1>;
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500278 interrupt-parent = <&qeic>;
Li Yang7a234d02006-10-02 20:10:10 -0500279 mode = "cpu";
280 };
281
282 usb@6c0 {
Li Yang7a234d02006-10-02 20:10:10 -0500283 compatible = "qe_udc";
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500284 reg = <0x6c0 0x40 0x8b00 0x100>;
285 interrupts = <11>;
286 interrupt-parent = <&qeic>;
Li Yang7a234d02006-10-02 20:10:10 -0500287 mode = "slave";
288 };
289
Kumar Galae77b28e2007-12-12 00:28:35 -0600290 enet0: ucc@2000 {
Li Yang7a234d02006-10-02 20:10:10 -0500291 device_type = "network";
292 compatible = "ucc_geth";
Kumar Galae77b28e2007-12-12 00:28:35 -0600293 cell-index = <1>;
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500294 reg = <0x2000 0x200>;
295 interrupts = <32>;
296 interrupt-parent = <&qeic>;
Timur Tabieae98262007-06-22 14:33:15 -0500297 local-mac-address = [ 00 00 00 00 00 00 ];
Timur Tabi9fb1e352007-12-03 15:17:59 -0600298 rx-clock-name = "none";
299 tx-clock-name = "clk9";
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500300 phy-handle = <&phy0>;
Kim Phillips0fd8c472007-04-24 07:26:14 +1000301 phy-connection-type = "rgmii-id";
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500302 pio-handle = <&pio1>;
Li Yang7a234d02006-10-02 20:10:10 -0500303 };
304
Kumar Galae77b28e2007-12-12 00:28:35 -0600305 enet1: ucc@3000 {
Li Yang7a234d02006-10-02 20:10:10 -0500306 device_type = "network";
307 compatible = "ucc_geth";
Kumar Galae77b28e2007-12-12 00:28:35 -0600308 cell-index = <2>;
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500309 reg = <0x3000 0x200>;
310 interrupts = <33>;
311 interrupt-parent = <&qeic>;
Timur Tabieae98262007-06-22 14:33:15 -0500312 local-mac-address = [ 00 00 00 00 00 00 ];
Timur Tabi9fb1e352007-12-03 15:17:59 -0600313 rx-clock-name = "none";
314 tx-clock-name = "clk4";
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500315 phy-handle = <&phy1>;
Kim Phillips0fd8c472007-04-24 07:26:14 +1000316 phy-connection-type = "rgmii-id";
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500317 pio-handle = <&pio2>;
Li Yang7a234d02006-10-02 20:10:10 -0500318 };
319
320 mdio@2120 {
321 #address-cells = <1>;
322 #size-cells = <0>;
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500323 reg = <0x2120 0x18>;
Anton Vorontsovd0a2f822008-01-24 18:40:01 +0300324 compatible = "fsl,ucc-mdio";
Li Yang7a234d02006-10-02 20:10:10 -0500325
Kumar Galad71a1dc2007-02-16 09:57:22 -0600326 phy0: ethernet-phy@00 {
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500327 interrupt-parent = <&ipic>;
328 interrupts = <17 0x8>;
329 reg = <0x0>;
Li Yang7a234d02006-10-02 20:10:10 -0500330 device_type = "ethernet-phy";
Li Yang7a234d02006-10-02 20:10:10 -0500331 };
Kumar Galad71a1dc2007-02-16 09:57:22 -0600332 phy1: ethernet-phy@01 {
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500333 interrupt-parent = <&ipic>;
334 interrupts = <18 0x8>;
335 reg = <0x1>;
Li Yang7a234d02006-10-02 20:10:10 -0500336 device_type = "ethernet-phy";
Li Yang7a234d02006-10-02 20:10:10 -0500337 };
338 };
339
Anton Vorontsova2dd70a2008-01-24 18:39:59 +0300340 qeic: interrupt-controller@80 {
Li Yang7a234d02006-10-02 20:10:10 -0500341 interrupt-controller;
Anton Vorontsova2dd70a2008-01-24 18:39:59 +0300342 compatible = "fsl,qe-ic";
Li Yang7a234d02006-10-02 20:10:10 -0500343 #address-cells = <0>;
344 #interrupt-cells = <1>;
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500345 reg = <0x80 0x80>;
Li Yang7a234d02006-10-02 20:10:10 -0500346 big-endian;
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500347 interrupts = <32 0x8 33 0x8>; // high:32 low:33
348 interrupt-parent = <&ipic>;
Li Yang7a234d02006-10-02 20:10:10 -0500349 };
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500350 };
Li Yang7a234d02006-10-02 20:10:10 -0500351
Kumar Galaea082fa2007-12-12 01:46:12 -0600352 pci0: pci@e0008500 {
353 cell-index = <1>;
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500354 interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500355 interrupt-map = <
356
357 /* IDSEL 0x11 AD17 */
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500358 0x8800 0x0 0x0 0x1 &ipic 20 0x8
359 0x8800 0x0 0x0 0x2 &ipic 21 0x8
360 0x8800 0x0 0x0 0x3 &ipic 22 0x8
361 0x8800 0x0 0x0 0x4 &ipic 23 0x8
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500362
363 /* IDSEL 0x12 AD18 */
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500364 0x9000 0x0 0x0 0x1 &ipic 22 0x8
365 0x9000 0x0 0x0 0x2 &ipic 23 0x8
366 0x9000 0x0 0x0 0x3 &ipic 20 0x8
367 0x9000 0x0 0x0 0x4 &ipic 21 0x8
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500368
369 /* IDSEL 0x13 AD19 */
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500370 0x9800 0x0 0x0 0x1 &ipic 23 0x8
371 0x9800 0x0 0x0 0x2 &ipic 20 0x8
372 0x9800 0x0 0x0 0x3 &ipic 21 0x8
373 0x9800 0x0 0x0 0x4 &ipic 22 0x8
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500374
375 /* IDSEL 0x15 AD21*/
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500376 0xa800 0x0 0x0 0x1 &ipic 20 0x8
377 0xa800 0x0 0x0 0x2 &ipic 21 0x8
378 0xa800 0x0 0x0 0x3 &ipic 22 0x8
379 0xa800 0x0 0x0 0x4 &ipic 23 0x8
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500380
381 /* IDSEL 0x16 AD22*/
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500382 0xb000 0x0 0x0 0x1 &ipic 23 0x8
383 0xb000 0x0 0x0 0x2 &ipic 20 0x8
384 0xb000 0x0 0x0 0x3 &ipic 21 0x8
385 0xb000 0x0 0x0 0x4 &ipic 22 0x8
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500386
387 /* IDSEL 0x17 AD23*/
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500388 0xb800 0x0 0x0 0x1 &ipic 22 0x8
389 0xb800 0x0 0x0 0x2 &ipic 23 0x8
390 0xb800 0x0 0x0 0x3 &ipic 20 0x8
391 0xb800 0x0 0x0 0x4 &ipic 21 0x8
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500392
393 /* IDSEL 0x18 AD24*/
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500394 0xc000 0x0 0x0 0x1 &ipic 21 0x8
395 0xc000 0x0 0x0 0x2 &ipic 22 0x8
396 0xc000 0x0 0x0 0x3 &ipic 23 0x8
397 0xc000 0x0 0x0 0x4 &ipic 20 0x8>;
398 interrupt-parent = <&ipic>;
399 interrupts = <66 0x8>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500400 bus-range = <0 0>;
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500401 ranges = <0x02000000 0x0 0xa0000000 0xa0000000 0x0 0x10000000
402 0x42000000 0x0 0x80000000 0x80000000 0x0 0x10000000
403 0x01000000 0x0 0x00000000 0xe2000000 0x0 0x00100000>;
404 clock-frequency = <66666666>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500405 #interrupt-cells = <1>;
406 #size-cells = <2>;
407 #address-cells = <3>;
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500408 reg = <0xe0008500 0x100>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500409 compatible = "fsl,mpc8349-pci";
410 device_type = "pci";
Li Yang7a234d02006-10-02 20:10:10 -0500411 };
412};