blob: ae08761ffff179f892a83357cbbe8ff17790017f [file] [log] [blame]
Jon Loeliger707ba162006-08-03 16:27:57 -05001/*
2 * MPC8641 HPCN 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
Jon Loeliger6e050d42008-01-25 16:31:01 -060012/dts-v1/;
Jon Loeliger707ba162006-08-03 16:27:57 -050013
14/ {
15 model = "MPC8641HPCN";
Paul Gortmaker06f35b42008-04-16 13:53:06 -040016 compatible = "fsl,mpc8641hpcn";
Jon Loeliger707ba162006-08-03 16:27:57 -050017 #address-cells = <1>;
18 #size-cells = <1>;
19
Jon Loeliger1c1d1672007-12-05 11:32:50 -060020 aliases {
21 ethernet0 = &enet0;
22 ethernet1 = &enet1;
23 ethernet2 = &enet2;
24 ethernet3 = &enet3;
25 serial0 = &serial0;
26 serial1 = &serial1;
27 pci0 = &pci0;
28 pci1 = &pci1;
Zhang Wei56fde1f2008-04-18 13:33:42 -070029 rapidio0 = &rapidio0;
Jon Loeliger1c1d1672007-12-05 11:32:50 -060030 };
31
Jon Loeliger707ba162006-08-03 16:27:57 -050032 cpus {
Jon Loeliger707ba162006-08-03 16:27:57 -050033 #address-cells = <1>;
34 #size-cells = <0>;
35
36 PowerPC,8641@0 {
37 device_type = "cpu";
38 reg = <0>;
Jon Loeliger6e050d42008-01-25 16:31:01 -060039 d-cache-line-size = <32>;
40 i-cache-line-size = <32>;
41 d-cache-size = <32768>; // L1
42 i-cache-size = <32768>; // L1
43 timebase-frequency = <0>; // From uboot
Jon Loeliger707ba162006-08-03 16:27:57 -050044 bus-frequency = <0>; // From uboot
45 clock-frequency = <0>; // From uboot
Jon Loeliger707ba162006-08-03 16:27:57 -050046 };
47 PowerPC,8641@1 {
48 device_type = "cpu";
49 reg = <1>;
Jon Loeliger6e050d42008-01-25 16:31:01 -060050 d-cache-line-size = <32>;
51 i-cache-line-size = <32>;
52 d-cache-size = <32768>;
53 i-cache-size = <32768>;
54 timebase-frequency = <0>; // From uboot
Jon Loeliger707ba162006-08-03 16:27:57 -050055 bus-frequency = <0>; // From uboot
56 clock-frequency = <0>; // From uboot
Jon Loeliger707ba162006-08-03 16:27:57 -050057 };
58 };
59
60 memory {
61 device_type = "memory";
Jon Loeliger6e050d42008-01-25 16:31:01 -060062 reg = <0x00000000 0x40000000>; // 1G at 0x0
Jon Loeliger707ba162006-08-03 16:27:57 -050063 };
64
Wade Farnsworth0ac247d2008-01-22 13:13:39 -070065 localbus@f8005000 {
66 #address-cells = <2>;
67 #size-cells = <1>;
68 compatible = "fsl,mpc8641-localbus", "simple-bus";
Jon Loeliger6e050d42008-01-25 16:31:01 -060069 reg = <0xf8005000 0x1000>;
70 interrupts = <19 2>;
Wade Farnsworth0ac247d2008-01-22 13:13:39 -070071 interrupt-parent = <&mpic>;
72
Jon Loeliger6e050d42008-01-25 16:31:01 -060073 ranges = <0 0 0xff800000 0x00800000
74 1 0 0xfe000000 0x01000000
75 2 0 0xf8200000 0x00100000
76 3 0 0xf8100000 0x00100000>;
Wade Farnsworth0ac247d2008-01-22 13:13:39 -070077
78 flash@0,0 {
79 compatible = "cfi-flash";
Jon Loeliger6e050d42008-01-25 16:31:01 -060080 reg = <0 0 0x00800000>;
Wade Farnsworth0ac247d2008-01-22 13:13:39 -070081 bank-width = <2>;
82 device-width = <2>;
83 #address-cells = <1>;
84 #size-cells = <1>;
85 partition@0 {
86 label = "kernel";
Jon Loeliger6e050d42008-01-25 16:31:01 -060087 reg = <0x00000000 0x00300000>;
Wade Farnsworth0ac247d2008-01-22 13:13:39 -070088 };
89 partition@300000 {
90 label = "firmware b";
Jon Loeliger6e050d42008-01-25 16:31:01 -060091 reg = <0x00300000 0x00100000>;
Wade Farnsworth0ac247d2008-01-22 13:13:39 -070092 read-only;
93 };
94 partition@400000 {
95 label = "fs";
Jon Loeliger6e050d42008-01-25 16:31:01 -060096 reg = <0x00400000 0x00300000>;
Wade Farnsworth0ac247d2008-01-22 13:13:39 -070097 };
98 partition@700000 {
99 label = "firmware a";
Jon Loeliger6e050d42008-01-25 16:31:01 -0600100 reg = <0x00700000 0x00100000>;
Wade Farnsworth0ac247d2008-01-22 13:13:39 -0700101 read-only;
102 };
103 };
104 };
105
Jon Loeliger707ba162006-08-03 16:27:57 -0500106 soc8641@f8000000 {
107 #address-cells = <1>;
108 #size-cells = <1>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500109 device_type = "soc";
Wade Farnsworth0ac247d2008-01-22 13:13:39 -0700110 compatible = "simple-bus";
Jon Loeliger6e050d42008-01-25 16:31:01 -0600111 ranges = <0x00000000 0xf8000000 0x00100000>;
112 reg = <0xf8000000 0x00001000>; // CCSRBAR
Jon Loeliger707ba162006-08-03 16:27:57 -0500113 bus-frequency = <0>;
114
115 i2c@3000 {
Kumar Galaec9686c2007-12-11 23:17:24 -0600116 #address-cells = <1>;
117 #size-cells = <0>;
118 cell-index = <0>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500119 compatible = "fsl-i2c";
Jon Loeliger6e050d42008-01-25 16:31:01 -0600120 reg = <0x3000 0x100>;
121 interrupts = <43 2>;
Kumar Gala6d9065d2007-02-17 16:09:56 -0600122 interrupt-parent = <&mpic>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500123 dfsrr;
124 };
125
126 i2c@3100 {
Kumar Galaec9686c2007-12-11 23:17:24 -0600127 #address-cells = <1>;
128 #size-cells = <0>;
129 cell-index = <1>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500130 compatible = "fsl-i2c";
Jon Loeliger6e050d42008-01-25 16:31:01 -0600131 reg = <0x3100 0x100>;
132 interrupts = <43 2>;
Kumar Gala6d9065d2007-02-17 16:09:56 -0600133 interrupt-parent = <&mpic>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500134 dfsrr;
135 };
136
Kumar Galadee80552008-06-27 13:45:19 -0500137 dma@21300 {
138 #address-cells = <1>;
139 #size-cells = <1>;
140 compatible = "fsl,mpc8641-dma", "fsl,eloplus-dma";
141 reg = <0x21300 0x4>;
142 ranges = <0x0 0x21100 0x200>;
143 cell-index = <0>;
144 dma-channel@0 {
145 compatible = "fsl,mpc8641-dma-channel",
146 "fsl,eloplus-dma-channel";
147 reg = <0x0 0x80>;
148 cell-index = <0>;
149 interrupt-parent = <&mpic>;
150 interrupts = <20 2>;
151 };
152 dma-channel@80 {
153 compatible = "fsl,mpc8641-dma-channel",
154 "fsl,eloplus-dma-channel";
155 reg = <0x80 0x80>;
156 cell-index = <1>;
157 interrupt-parent = <&mpic>;
158 interrupts = <21 2>;
159 };
160 dma-channel@100 {
161 compatible = "fsl,mpc8641-dma-channel",
162 "fsl,eloplus-dma-channel";
163 reg = <0x100 0x80>;
164 cell-index = <2>;
165 interrupt-parent = <&mpic>;
166 interrupts = <22 2>;
167 };
168 dma-channel@180 {
169 compatible = "fsl,mpc8641-dma-channel",
170 "fsl,eloplus-dma-channel";
171 reg = <0x180 0x80>;
172 cell-index = <3>;
173 interrupt-parent = <&mpic>;
174 interrupts = <23 2>;
175 };
176 };
177
Jon Loeliger707ba162006-08-03 16:27:57 -0500178 mdio@24520 {
179 #address-cells = <1>;
180 #size-cells = <0>;
Kumar Galae77b28e2007-12-12 00:28:35 -0600181 compatible = "fsl,gianfar-mdio";
Jon Loeliger6e050d42008-01-25 16:31:01 -0600182 reg = <0x24520 0x20>;
Kumar Galae77b28e2007-12-12 00:28:35 -0600183
Kumar Gala6d9065d2007-02-17 16:09:56 -0600184 phy0: ethernet-phy@0 {
185 interrupt-parent = <&mpic>;
Jon Loeliger6e050d42008-01-25 16:31:01 -0600186 interrupts = <10 1>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500187 reg = <0>;
188 device_type = "ethernet-phy";
189 };
Kumar Gala6d9065d2007-02-17 16:09:56 -0600190 phy1: ethernet-phy@1 {
191 interrupt-parent = <&mpic>;
Jon Loeliger6e050d42008-01-25 16:31:01 -0600192 interrupts = <10 1>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500193 reg = <1>;
194 device_type = "ethernet-phy";
195 };
Kumar Gala6d9065d2007-02-17 16:09:56 -0600196 phy2: ethernet-phy@2 {
197 interrupt-parent = <&mpic>;
Jon Loeliger6e050d42008-01-25 16:31:01 -0600198 interrupts = <10 1>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500199 reg = <2>;
200 device_type = "ethernet-phy";
201 };
Kumar Gala6d9065d2007-02-17 16:09:56 -0600202 phy3: ethernet-phy@3 {
203 interrupt-parent = <&mpic>;
Jon Loeliger6e050d42008-01-25 16:31:01 -0600204 interrupts = <10 1>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500205 reg = <3>;
206 device_type = "ethernet-phy";
207 };
208 };
209
Jon Loeliger1c1d1672007-12-05 11:32:50 -0600210 enet0: ethernet@24000 {
Kumar Galae77b28e2007-12-12 00:28:35 -0600211 cell-index = <0>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500212 device_type = "network";
213 model = "TSEC";
214 compatible = "gianfar";
Jon Loeliger6e050d42008-01-25 16:31:01 -0600215 reg = <0x24000 0x1000>;
Timur Tabieae98262007-06-22 14:33:15 -0500216 local-mac-address = [ 00 00 00 00 00 00 ];
Jon Loeliger6e050d42008-01-25 16:31:01 -0600217 interrupts = <29 2 30 2 34 2>;
Kumar Gala6d9065d2007-02-17 16:09:56 -0600218 interrupt-parent = <&mpic>;
219 phy-handle = <&phy0>;
Andy Flemingcc651852007-07-10 17:28:49 -0500220 phy-connection-type = "rgmii-id";
Jon Loeliger707ba162006-08-03 16:27:57 -0500221 };
222
Jon Loeliger1c1d1672007-12-05 11:32:50 -0600223 enet1: ethernet@25000 {
Kumar Galae77b28e2007-12-12 00:28:35 -0600224 cell-index = <1>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500225 device_type = "network";
226 model = "TSEC";
227 compatible = "gianfar";
Jon Loeliger6e050d42008-01-25 16:31:01 -0600228 reg = <0x25000 0x1000>;
Timur Tabieae98262007-06-22 14:33:15 -0500229 local-mac-address = [ 00 00 00 00 00 00 ];
Jon Loeliger6e050d42008-01-25 16:31:01 -0600230 interrupts = <35 2 36 2 40 2>;
Kumar Gala6d9065d2007-02-17 16:09:56 -0600231 interrupt-parent = <&mpic>;
232 phy-handle = <&phy1>;
Andy Flemingcc651852007-07-10 17:28:49 -0500233 phy-connection-type = "rgmii-id";
Jon Loeliger707ba162006-08-03 16:27:57 -0500234 };
235
Jon Loeliger1c1d1672007-12-05 11:32:50 -0600236 enet2: ethernet@26000 {
Kumar Galae77b28e2007-12-12 00:28:35 -0600237 cell-index = <2>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500238 device_type = "network";
239 model = "TSEC";
240 compatible = "gianfar";
Jon Loeliger6e050d42008-01-25 16:31:01 -0600241 reg = <0x26000 0x1000>;
Timur Tabieae98262007-06-22 14:33:15 -0500242 local-mac-address = [ 00 00 00 00 00 00 ];
Jon Loeliger6e050d42008-01-25 16:31:01 -0600243 interrupts = <31 2 32 2 33 2>;
Kumar Gala6d9065d2007-02-17 16:09:56 -0600244 interrupt-parent = <&mpic>;
245 phy-handle = <&phy2>;
Andy Flemingcc651852007-07-10 17:28:49 -0500246 phy-connection-type = "rgmii-id";
Jon Loeliger707ba162006-08-03 16:27:57 -0500247 };
248
Jon Loeliger1c1d1672007-12-05 11:32:50 -0600249 enet3: ethernet@27000 {
Kumar Galae77b28e2007-12-12 00:28:35 -0600250 cell-index = <3>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500251 device_type = "network";
252 model = "TSEC";
253 compatible = "gianfar";
Jon Loeliger6e050d42008-01-25 16:31:01 -0600254 reg = <0x27000 0x1000>;
Timur Tabieae98262007-06-22 14:33:15 -0500255 local-mac-address = [ 00 00 00 00 00 00 ];
Jon Loeliger6e050d42008-01-25 16:31:01 -0600256 interrupts = <37 2 38 2 39 2>;
Kumar Gala6d9065d2007-02-17 16:09:56 -0600257 interrupt-parent = <&mpic>;
258 phy-handle = <&phy3>;
Andy Flemingcc651852007-07-10 17:28:49 -0500259 phy-connection-type = "rgmii-id";
Jon Loeliger707ba162006-08-03 16:27:57 -0500260 };
Jon Loeliger1c1d1672007-12-05 11:32:50 -0600261
262 serial0: serial@4500 {
Kumar Galaea082fa2007-12-12 01:46:12 -0600263 cell-index = <0>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500264 device_type = "serial";
265 compatible = "ns16550";
Jon Loeliger6e050d42008-01-25 16:31:01 -0600266 reg = <0x4500 0x100>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500267 clock-frequency = <0>;
Jon Loeliger6e050d42008-01-25 16:31:01 -0600268 interrupts = <42 2>;
Kumar Gala6d9065d2007-02-17 16:09:56 -0600269 interrupt-parent = <&mpic>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500270 };
271
Jon Loeliger1c1d1672007-12-05 11:32:50 -0600272 serial1: serial@4600 {
Kumar Galaea082fa2007-12-12 01:46:12 -0600273 cell-index = <1>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500274 device_type = "serial";
275 compatible = "ns16550";
Jon Loeliger6e050d42008-01-25 16:31:01 -0600276 reg = <0x4600 0x100>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500277 clock-frequency = <0>;
Jon Loeliger6e050d42008-01-25 16:31:01 -0600278 interrupts = <28 2>;
Kumar Gala6d9065d2007-02-17 16:09:56 -0600279 interrupt-parent = <&mpic>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500280 };
281
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500282 mpic: pic@40000 {
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500283 interrupt-controller;
284 #address-cells = <0>;
285 #interrupt-cells = <2>;
Jon Loeliger6e050d42008-01-25 16:31:01 -0600286 reg = <0x40000 0x40000>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500287 compatible = "chrp,open-pic";
288 device_type = "open-pic";
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500289 };
Kumar Galae1c15752007-10-04 01:04:57 -0500290
291 global-utilities@e0000 {
292 compatible = "fsl,mpc8641-guts";
Jon Loeliger6e050d42008-01-25 16:31:01 -0600293 reg = <0xe0000 0x1000>;
Kumar Galae1c15752007-10-04 01:04:57 -0500294 fsl,has-rstcr;
295 };
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500296 };
297
Jon Loeliger1c1d1672007-12-05 11:32:50 -0600298 pci0: pcie@f8008000 {
Kumar Galaea082fa2007-12-12 01:46:12 -0600299 cell-index = <0>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500300 compatible = "fsl,mpc8641-pcie";
301 device_type = "pci";
302 #interrupt-cells = <1>;
303 #size-cells = <2>;
304 #address-cells = <3>;
Jon Loeliger6e050d42008-01-25 16:31:01 -0600305 reg = <0xf8008000 0x1000>;
306 bus-range = <0x0 0xff>;
307 ranges = <0x02000000 0x0 0x80000000 0x80000000 0x0 0x20000000
308 0x01000000 0x0 0x00000000 0xe2000000 0x0 0x00100000>;
309 clock-frequency = <33333333>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500310 interrupt-parent = <&mpic>;
Jon Loeliger6e050d42008-01-25 16:31:01 -0600311 interrupts = <24 2>;
312 interrupt-map-mask = <0xff00 0 0 7>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500313 interrupt-map = <
Kumar Galabebfa062007-11-19 23:36:23 -0600314 /* IDSEL 0x11 func 0 - PCI slot 1 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600315 0x8800 0 0 1 &mpic 2 1
316 0x8800 0 0 2 &mpic 3 1
317 0x8800 0 0 3 &mpic 4 1
318 0x8800 0 0 4 &mpic 1 1
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500319
Kumar Galabebfa062007-11-19 23:36:23 -0600320 /* IDSEL 0x11 func 1 - PCI slot 1 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600321 0x8900 0 0 1 &mpic 2 1
322 0x8900 0 0 2 &mpic 3 1
323 0x8900 0 0 3 &mpic 4 1
324 0x8900 0 0 4 &mpic 1 1
Kumar Galabebfa062007-11-19 23:36:23 -0600325
326 /* IDSEL 0x11 func 2 - PCI slot 1 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600327 0x8a00 0 0 1 &mpic 2 1
328 0x8a00 0 0 2 &mpic 3 1
329 0x8a00 0 0 3 &mpic 4 1
330 0x8a00 0 0 4 &mpic 1 1
Kumar Galabebfa062007-11-19 23:36:23 -0600331
332 /* IDSEL 0x11 func 3 - PCI slot 1 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600333 0x8b00 0 0 1 &mpic 2 1
334 0x8b00 0 0 2 &mpic 3 1
335 0x8b00 0 0 3 &mpic 4 1
336 0x8b00 0 0 4 &mpic 1 1
Kumar Galabebfa062007-11-19 23:36:23 -0600337
338 /* IDSEL 0x11 func 4 - PCI slot 1 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600339 0x8c00 0 0 1 &mpic 2 1
340 0x8c00 0 0 2 &mpic 3 1
341 0x8c00 0 0 3 &mpic 4 1
342 0x8c00 0 0 4 &mpic 1 1
Kumar Galabebfa062007-11-19 23:36:23 -0600343
344 /* IDSEL 0x11 func 5 - PCI slot 1 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600345 0x8d00 0 0 1 &mpic 2 1
346 0x8d00 0 0 2 &mpic 3 1
347 0x8d00 0 0 3 &mpic 4 1
348 0x8d00 0 0 4 &mpic 1 1
Kumar Galabebfa062007-11-19 23:36:23 -0600349
350 /* IDSEL 0x11 func 6 - PCI slot 1 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600351 0x8e00 0 0 1 &mpic 2 1
352 0x8e00 0 0 2 &mpic 3 1
353 0x8e00 0 0 3 &mpic 4 1
354 0x8e00 0 0 4 &mpic 1 1
Kumar Galabebfa062007-11-19 23:36:23 -0600355
356 /* IDSEL 0x11 func 7 - PCI slot 1 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600357 0x8f00 0 0 1 &mpic 2 1
358 0x8f00 0 0 2 &mpic 3 1
359 0x8f00 0 0 3 &mpic 4 1
360 0x8f00 0 0 4 &mpic 1 1
Kumar Galabebfa062007-11-19 23:36:23 -0600361
362 /* IDSEL 0x12 func 0 - PCI slot 2 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600363 0x9000 0 0 1 &mpic 3 1
364 0x9000 0 0 2 &mpic 4 1
365 0x9000 0 0 3 &mpic 1 1
366 0x9000 0 0 4 &mpic 2 1
Kumar Galabebfa062007-11-19 23:36:23 -0600367
368 /* IDSEL 0x12 func 1 - PCI slot 2 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600369 0x9100 0 0 1 &mpic 3 1
370 0x9100 0 0 2 &mpic 4 1
371 0x9100 0 0 3 &mpic 1 1
372 0x9100 0 0 4 &mpic 2 1
Kumar Galabebfa062007-11-19 23:36:23 -0600373
374 /* IDSEL 0x12 func 2 - PCI slot 2 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600375 0x9200 0 0 1 &mpic 3 1
376 0x9200 0 0 2 &mpic 4 1
377 0x9200 0 0 3 &mpic 1 1
378 0x9200 0 0 4 &mpic 2 1
Kumar Galabebfa062007-11-19 23:36:23 -0600379
380 /* IDSEL 0x12 func 3 - PCI slot 2 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600381 0x9300 0 0 1 &mpic 3 1
382 0x9300 0 0 2 &mpic 4 1
383 0x9300 0 0 3 &mpic 1 1
384 0x9300 0 0 4 &mpic 2 1
Kumar Galabebfa062007-11-19 23:36:23 -0600385
386 /* IDSEL 0x12 func 4 - PCI slot 2 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600387 0x9400 0 0 1 &mpic 3 1
388 0x9400 0 0 2 &mpic 4 1
389 0x9400 0 0 3 &mpic 1 1
390 0x9400 0 0 4 &mpic 2 1
Kumar Galabebfa062007-11-19 23:36:23 -0600391
392 /* IDSEL 0x12 func 5 - PCI slot 2 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600393 0x9500 0 0 1 &mpic 3 1
394 0x9500 0 0 2 &mpic 4 1
395 0x9500 0 0 3 &mpic 1 1
396 0x9500 0 0 4 &mpic 2 1
Kumar Galabebfa062007-11-19 23:36:23 -0600397
398 /* IDSEL 0x12 func 6 - PCI slot 2 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600399 0x9600 0 0 1 &mpic 3 1
400 0x9600 0 0 2 &mpic 4 1
401 0x9600 0 0 3 &mpic 1 1
402 0x9600 0 0 4 &mpic 2 1
Kumar Galabebfa062007-11-19 23:36:23 -0600403
404 /* IDSEL 0x12 func 7 - PCI slot 2 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600405 0x9700 0 0 1 &mpic 3 1
406 0x9700 0 0 2 &mpic 4 1
407 0x9700 0 0 3 &mpic 1 1
408 0x9700 0 0 4 &mpic 2 1
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500409
410 // IDSEL 0x1c USB
Jon Loeliger6e050d42008-01-25 16:31:01 -0600411 0xe000 0 0 1 &i8259 12 2
412 0xe100 0 0 2 &i8259 9 2
413 0xe200 0 0 3 &i8259 10 2
414 0xe300 0 0 4 &i8259 112
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500415
416 // IDSEL 0x1d Audio
Jon Loeliger6e050d42008-01-25 16:31:01 -0600417 0xe800 0 0 1 &i8259 6 2
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500418
419 // IDSEL 0x1e Legacy
Jon Loeliger6e050d42008-01-25 16:31:01 -0600420 0xf000 0 0 1 &i8259 7 2
421 0xf100 0 0 1 &i8259 7 2
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500422
423 // IDSEL 0x1f IDE/SATA
Jon Loeliger6e050d42008-01-25 16:31:01 -0600424 0xf800 0 0 1 &i8259 14 2
425 0xf900 0 0 1 &i8259 5 2
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500426 >;
427
428 pcie@0 {
429 reg = <0 0 0 0 0>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500430 #size-cells = <2>;
431 #address-cells = <3>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500432 device_type = "pci";
Jon Loeliger6e050d42008-01-25 16:31:01 -0600433 ranges = <0x02000000 0x0 0x80000000
434 0x02000000 0x0 0x80000000
435 0x0 0x20000000
Jon Loeliger707ba162006-08-03 16:27:57 -0500436
Jon Loeliger6e050d42008-01-25 16:31:01 -0600437 0x01000000 0x0 0x00000000
438 0x01000000 0x0 0x00000000
439 0x0 0x00100000>;
Wade Farnsworthdfac6fa2007-06-04 13:24:47 -0700440 uli1575@0 {
441 reg = <0 0 0 0 0>;
442 #size-cells = <2>;
443 #address-cells = <3>;
Jon Loeliger6e050d42008-01-25 16:31:01 -0600444 ranges = <0x02000000 0x0 0x80000000
445 0x02000000 0x0 0x80000000
446 0x0 0x20000000
447 0x01000000 0x0 0x00000000
448 0x01000000 0x0 0x00000000
449 0x0 0x00100000>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500450 isa@1e {
451 device_type = "isa";
452 #interrupt-cells = <2>;
453 #size-cells = <1>;
454 #address-cells = <2>;
Jon Loeliger6e050d42008-01-25 16:31:01 -0600455 reg = <0xf000 0 0 0 0>;
456 ranges = <1 0 0x01000000 0 0
457 0x00001000>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500458 interrupt-parent = <&i8259>;
Wade Farnsworthdfac6fa2007-06-04 13:24:47 -0700459
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500460 i8259: interrupt-controller@20 {
Jon Loeliger6e050d42008-01-25 16:31:01 -0600461 reg = <1 0x20 2
462 1 0xa0 2
463 1 0x4d0 2>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500464 interrupt-controller;
465 device_type = "interrupt-controller";
466 #address-cells = <0>;
Wade Farnsworthdfac6fa2007-06-04 13:24:47 -0700467 #interrupt-cells = <2>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500468 compatible = "chrp,iic";
469 interrupts = <9 2>;
470 interrupt-parent = <&mpic>;
471 };
Wade Farnsworthdfac6fa2007-06-04 13:24:47 -0700472
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500473 i8042@60 {
474 #size-cells = <0>;
475 #address-cells = <1>;
Jon Loeliger6e050d42008-01-25 16:31:01 -0600476 reg = <1 0x60 1 1 0x64 1>;
477 interrupts = <1 3 12 3>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500478 interrupt-parent =
479 <&i8259>;
480
481 keyboard@0 {
482 reg = <0>;
483 compatible = "pnpPNP,303";
Wade Farnsworthdfac6fa2007-06-04 13:24:47 -0700484 };
485
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500486 mouse@1 {
487 reg = <1>;
488 compatible = "pnpPNP,f03";
Wade Farnsworthdfac6fa2007-06-04 13:24:47 -0700489 };
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500490 };
Wade Farnsworthdfac6fa2007-06-04 13:24:47 -0700491
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500492 rtc@70 {
493 compatible =
494 "pnpPNP,b00";
Jon Loeliger6e050d42008-01-25 16:31:01 -0600495 reg = <1 0x70 2>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500496 };
Wade Farnsworthdfac6fa2007-06-04 13:24:47 -0700497
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500498 gpio@400 {
Jon Loeliger6e050d42008-01-25 16:31:01 -0600499 reg = <1 0x400 0x80>;
Wade Farnsworthdfac6fa2007-06-04 13:24:47 -0700500 };
501 };
Jon Loeliger707ba162006-08-03 16:27:57 -0500502 };
Jon Loeliger707ba162006-08-03 16:27:57 -0500503 };
Zhang Weie0e3c8d2007-03-07 11:47:41 -0600504
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500505 };
506
Jon Loeliger1c1d1672007-12-05 11:32:50 -0600507 pci1: pcie@f8009000 {
Kumar Galaea082fa2007-12-12 01:46:12 -0600508 cell-index = <1>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500509 compatible = "fsl,mpc8641-pcie";
510 device_type = "pci";
511 #interrupt-cells = <1>;
512 #size-cells = <2>;
513 #address-cells = <3>;
Jon Loeliger6e050d42008-01-25 16:31:01 -0600514 reg = <0xf8009000 0x1000>;
515 bus-range = <0 0xff>;
516 ranges = <0x02000000 0x0 0xa0000000 0xa0000000 0x0 0x20000000
517 0x01000000 0x0 0x00000000 0xe3000000 0x0 0x00100000>;
518 clock-frequency = <33333333>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500519 interrupt-parent = <&mpic>;
Jon Loeliger6e050d42008-01-25 16:31:01 -0600520 interrupts = <25 2>;
521 interrupt-map-mask = <0xf800 0 0 7>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500522 interrupt-map = <
523 /* IDSEL 0x0 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600524 0x0000 0 0 1 &mpic 4 1
525 0x0000 0 0 2 &mpic 5 1
526 0x0000 0 0 3 &mpic 6 1
527 0x0000 0 0 4 &mpic 7 1
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500528 >;
529 pcie@0 {
530 reg = <0 0 0 0 0>;
Zhang Weie0e3c8d2007-03-07 11:47:41 -0600531 #size-cells = <2>;
532 #address-cells = <3>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500533 device_type = "pci";
Jon Loeliger6e050d42008-01-25 16:31:01 -0600534 ranges = <0x02000000 0x0 0xa0000000
535 0x02000000 0x0 0xa0000000
536 0x0 0x20000000
Zhang Weie0e3c8d2007-03-07 11:47:41 -0600537
Jon Loeliger6e050d42008-01-25 16:31:01 -0600538 0x01000000 0x0 0x00000000
539 0x01000000 0x0 0x00000000
540 0x0 0x00100000>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500541 };
542 };
Zhang Wei56fde1f2008-04-18 13:33:42 -0700543 rapidio0: rapidio@f80c0000 {
544 #address-cells = <2>;
545 #size-cells = <2>;
546 compatible = "fsl,rapidio-delta";
547 reg = <0xf80c0000 0x20000>;
548 ranges = <0 0 0xc0000000 0 0x20000000>;
549 interrupt-parent = <&mpic>;
550 /* err_irq bell_outb_irq bell_inb_irq
551 msg1_tx_irq msg1_rx_irq msg2_tx_irq msg2_rx_irq */
552 interrupts = <48 2 49 2 50 2 53 2 54 2 55 2 56 2>;
553 };
Jon Loeliger707ba162006-08-03 16:27:57 -0500554};