blob: 34a7f2f935e1482d72717d0045fee840a58e69bf [file] [log] [blame]
Kim Phillips23dd1cb2008-01-24 20:47:18 -06001/*
2 * MPC8378E RDB Device Tree Source
3 *
4 * Copyright 2007, 2008 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/dts-v1/;
13
14/ {
Kim Phillips3b29dade2008-01-28 13:00:37 -060015 compatible = "fsl,mpc8378rdb";
Kim Phillips23dd1cb2008-01-24 20:47:18 -060016 #address-cells = <1>;
17 #size-cells = <1>;
18
19 aliases {
20 ethernet0 = &enet0;
21 ethernet1 = &enet1;
22 serial0 = &serial0;
23 serial1 = &serial1;
24 pci0 = &pci0;
25 };
26
27 cpus {
28 #address-cells = <1>;
29 #size-cells = <0>;
30
31 PowerPC,8378@0 {
32 device_type = "cpu";
Paul Gortmakercda13dd2008-01-28 16:09:36 -050033 reg = <0x0>;
Kim Phillips23dd1cb2008-01-24 20:47:18 -060034 d-cache-line-size = <32>;
35 i-cache-line-size = <32>;
36 d-cache-size = <32768>;
37 i-cache-size = <32768>;
38 timebase-frequency = <0>;
39 bus-frequency = <0>;
40 clock-frequency = <0>;
41 };
42 };
43
44 memory {
45 device_type = "memory";
46 reg = <0x00000000 0x10000000>; // 256MB at 0
47 };
48
49 localbus@e0005000 {
50 #address-cells = <2>;
51 #size-cells = <1>;
52 compatible = "fsl,mpc8378-elbc", "fsl,elbc", "simple-bus";
53 reg = <0xe0005000 0x1000>;
Paul Gortmakercda13dd2008-01-28 16:09:36 -050054 interrupts = <77 0x8>;
Kim Phillips23dd1cb2008-01-24 20:47:18 -060055 interrupt-parent = <&ipic>;
56
57 // CS0 and CS1 are swapped when
58 // booting from nand, but the
59 // addresses are the same.
Paul Gortmakercda13dd2008-01-28 16:09:36 -050060 ranges = <0x0 0x0 0xfe000000 0x00800000
61 0x1 0x0 0xe0600000 0x00008000
62 0x2 0x0 0xf0000000 0x00020000
63 0x3 0x0 0xfa000000 0x00008000>;
Kim Phillips23dd1cb2008-01-24 20:47:18 -060064
65 flash@0,0 {
66 #address-cells = <1>;
67 #size-cells = <1>;
68 compatible = "cfi-flash";
Paul Gortmakercda13dd2008-01-28 16:09:36 -050069 reg = <0x0 0x0 0x800000>;
Kim Phillips23dd1cb2008-01-24 20:47:18 -060070 bank-width = <2>;
71 device-width = <1>;
72 };
73
74 nand@1,0 {
75 #address-cells = <1>;
76 #size-cells = <1>;
77 compatible = "fsl,mpc8378-fcm-nand",
78 "fsl,elbc-fcm-nand";
Paul Gortmakercda13dd2008-01-28 16:09:36 -050079 reg = <0x1 0x0 0x8000>;
Kim Phillips23dd1cb2008-01-24 20:47:18 -060080
81 u-boot@0 {
82 reg = <0x0 0x100000>;
83 read-only;
84 };
85
86 kernel@100000 {
87 reg = <0x100000 0x300000>;
88 };
89 fs@400000 {
90 reg = <0x400000 0x1c00000>;
91 };
92 };
93 };
94
95 immr@e0000000 {
96 #address-cells = <1>;
97 #size-cells = <1>;
98 device_type = "soc";
99 compatible = "simple-bus";
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500100 ranges = <0x0 0xe0000000 0x00100000>;
Kim Phillips23dd1cb2008-01-24 20:47:18 -0600101 reg = <0xe0000000 0x00000200>;
102 bus-frequency = <0>;
103
104 wdt@200 {
105 device_type = "watchdog";
106 compatible = "mpc83xx_wdt";
107 reg = <0x200 0x100>;
108 };
109
110 i2c@3000 {
111 #address-cells = <1>;
112 #size-cells = <0>;
113 cell-index = <0>;
114 compatible = "fsl-i2c";
115 reg = <0x3000 0x100>;
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500116 interrupts = <14 0x8>;
117 interrupt-parent = <&ipic>;
Kim Phillips23dd1cb2008-01-24 20:47:18 -0600118 dfsrr;
119 rtc@68 {
120 device_type = "rtc";
121 compatible = "dallas,ds1339";
122 reg = <0x68>;
123 };
124 };
125
126 i2c@3100 {
127 #address-cells = <1>;
128 #size-cells = <0>;
129 cell-index = <1>;
130 compatible = "fsl-i2c";
131 reg = <0x3100 0x100>;
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500132 interrupts = <15 0x8>;
133 interrupt-parent = <&ipic>;
Kim Phillips23dd1cb2008-01-24 20:47:18 -0600134 dfsrr;
135 };
136
137 spi@7000 {
138 cell-index = <0>;
139 compatible = "fsl,spi";
140 reg = <0x7000 0x1000>;
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500141 interrupts = <16 0x8>;
142 interrupt-parent = <&ipic>;
Kim Phillips23dd1cb2008-01-24 20:47:18 -0600143 mode = "cpu";
144 };
145
Kumar Galadee80552008-06-27 13:45:19 -0500146 dma@82a8 {
147 #address-cells = <1>;
148 #size-cells = <1>;
149 compatible = "fsl,mpc8378-dma", "fsl,elo-dma";
150 reg = <0x82a8 4>;
151 ranges = <0 0x8100 0x1a8>;
152 interrupt-parent = <&ipic>;
153 interrupts = <71 8>;
154 cell-index = <0>;
155 dma-channel@0 {
156 compatible = "fsl,mpc8378-dma-channel", "fsl,elo-dma-channel";
157 reg = <0 0x80>;
158 interrupt-parent = <&ipic>;
159 interrupts = <71 8>;
160 };
161 dma-channel@80 {
162 compatible = "fsl,mpc8378-dma-channel", "fsl,elo-dma-channel";
163 reg = <0x80 0x80>;
164 interrupt-parent = <&ipic>;
165 interrupts = <71 8>;
166 };
167 dma-channel@100 {
168 compatible = "fsl,mpc8378-dma-channel", "fsl,elo-dma-channel";
169 reg = <0x100 0x80>;
170 interrupt-parent = <&ipic>;
171 interrupts = <71 8>;
172 };
173 dma-channel@180 {
174 compatible = "fsl,mpc8378-dma-channel", "fsl,elo-dma-channel";
175 reg = <0x180 0x28>;
176 interrupt-parent = <&ipic>;
177 interrupts = <71 8>;
178 };
179 };
180
Kim Phillips23dd1cb2008-01-24 20:47:18 -0600181 usb@23000 {
182 compatible = "fsl-usb2-dr";
183 reg = <0x23000 0x1000>;
184 #address-cells = <1>;
185 #size-cells = <0>;
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500186 interrupt-parent = <&ipic>;
187 interrupts = <38 0x8>;
Anton Vorontsov8e8ff3a2008-03-12 23:02:13 +0300188 phy_type = "ulpi";
Kim Phillips23dd1cb2008-01-24 20:47:18 -0600189 };
190
191 mdio@24520 {
192 #address-cells = <1>;
193 #size-cells = <0>;
194 compatible = "fsl,gianfar-mdio";
195 reg = <0x24520 0x20>;
196 phy2: ethernet-phy@2 {
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500197 interrupt-parent = <&ipic>;
198 interrupts = <17 0x8>;
199 reg = <0x2>;
Kim Phillips23dd1cb2008-01-24 20:47:18 -0600200 device_type = "ethernet-phy";
201 };
Kim Phillips23dd1cb2008-01-24 20:47:18 -0600202 };
203
204 enet0: ethernet@24000 {
205 cell-index = <0>;
206 device_type = "network";
207 model = "eTSEC";
208 compatible = "gianfar";
209 reg = <0x24000 0x1000>;
210 local-mac-address = [ 00 00 00 00 00 00 ];
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500211 interrupts = <32 0x8 33 0x8 34 0x8>;
Kim Phillips23dd1cb2008-01-24 20:47:18 -0600212 phy-connection-type = "mii";
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500213 interrupt-parent = <&ipic>;
214 phy-handle = <&phy2>;
Kim Phillips23dd1cb2008-01-24 20:47:18 -0600215 };
216
217 enet1: ethernet@25000 {
218 cell-index = <1>;
219 device_type = "network";
220 model = "eTSEC";
221 compatible = "gianfar";
222 reg = <0x25000 0x1000>;
223 local-mac-address = [ 00 00 00 00 00 00 ];
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500224 interrupts = <35 0x8 36 0x8 37 0x8>;
Kim Phillips23dd1cb2008-01-24 20:47:18 -0600225 phy-connection-type = "mii";
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500226 interrupt-parent = <&ipic>;
Anton Vorontsovf17c6322008-03-17 20:52:08 +0300227 fixed-link = <1 1 1000 0 0>;
Kim Phillips23dd1cb2008-01-24 20:47:18 -0600228 };
229
230 serial0: serial@4500 {
231 cell-index = <0>;
232 device_type = "serial";
233 compatible = "ns16550";
234 reg = <0x4500 0x100>;
235 clock-frequency = <0>;
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500236 interrupts = <9 0x8>;
237 interrupt-parent = <&ipic>;
Kim Phillips23dd1cb2008-01-24 20:47:18 -0600238 };
239
240 serial1: serial@4600 {
241 cell-index = <1>;
242 device_type = "serial";
243 compatible = "ns16550";
244 reg = <0x4600 0x100>;
245 clock-frequency = <0>;
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500246 interrupts = <10 0x8>;
247 interrupt-parent = <&ipic>;
Kim Phillips23dd1cb2008-01-24 20:47:18 -0600248 };
249
250 crypto@30000 {
Kim Phillips3fd44732008-07-08 19:13:33 -0500251 compatible = "fsl,sec3.0", "fsl,sec2.4", "fsl,sec2.2",
252 "fsl,sec2.1", "fsl,sec2.0";
Kim Phillips23dd1cb2008-01-24 20:47:18 -0600253 reg = <0x30000 0x10000>;
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500254 interrupts = <11 0x8>;
255 interrupt-parent = <&ipic>;
Kim Phillips3fd44732008-07-08 19:13:33 -0500256 fsl,num-channels = <4>;
257 fsl,channel-fifo-len = <24>;
258 fsl,exec-units-mask = <0x9fe>;
259 fsl,descriptor-types-mask = <0x3ab0ebf>;
Kim Phillips23dd1cb2008-01-24 20:47:18 -0600260 };
261
262 /* IPIC
263 * interrupts cell = <intr #, sense>
264 * sense values match linux IORESOURCE_IRQ_* defines:
265 * sense == 8: Level, low assertion
266 * sense == 2: Edge, high-to-low change
267 */
268 ipic: interrupt-controller@700 {
269 compatible = "fsl,ipic";
270 interrupt-controller;
271 #address-cells = <0>;
272 #interrupt-cells = <2>;
273 reg = <0x700 0x100>;
274 };
275 };
276
277 pci0: pci@e0008500 {
278 interrupt-map-mask = <0xf800 0 0 7>;
279 interrupt-map = <
280 /* IRQ5 = 21 = 0x15, IRQ6 = 0x16, IRQ7 = 23 = 0x17 */
281
282 /* IDSEL AD14 IRQ6 inta */
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500283 0x7000 0x0 0x0 0x1 &ipic 22 0x8
Kim Phillips23dd1cb2008-01-24 20:47:18 -0600284
285 /* IDSEL AD15 IRQ5 inta, IRQ6 intb, IRQ7 intd */
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500286 0x7800 0x0 0x0 0x1 &ipic 21 0x8
287 0x7800 0x0 0x0 0x2 &ipic 22 0x8
288 0x7800 0x0 0x0 0x4 &ipic 23 0x8
Kim Phillips23dd1cb2008-01-24 20:47:18 -0600289
290 /* IDSEL AD28 IRQ7 inta, IRQ5 intb IRQ6 intc*/
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500291 0xE000 0x0 0x0 0x1 &ipic 23 0x8
292 0xE000 0x0 0x0 0x2 &ipic 21 0x8
293 0xE000 0x0 0x0 0x3 &ipic 22 0x8>;
294 interrupt-parent = <&ipic>;
295 interrupts = <66 0x8>;
Kim Phillips23dd1cb2008-01-24 20:47:18 -0600296 bus-range = <0 0>;
Paul Gortmakercda13dd2008-01-28 16:09:36 -0500297 ranges = <0x02000000 0x0 0x90000000 0x90000000 0x0 0x10000000
298 0x42000000 0x0 0x80000000 0x80000000 0x0 0x10000000
299 0x01000000 0x0 0x00000000 0xe2000000 0x0 0x00100000>;
Kim Phillips23dd1cb2008-01-24 20:47:18 -0600300 clock-frequency = <66666666>;
301 #interrupt-cells = <1>;
302 #size-cells = <2>;
303 #address-cells = <3>;
304 reg = <0xe0008500 0x100>;
305 compatible = "fsl,mpc8349-pci";
306 device_type = "pci";
307 };
308};