blob: 14f718d5e50b5039c2c1fcb8c61b29ac410c2dd0 [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
137 mdio@24520 {
138 #address-cells = <1>;
139 #size-cells = <0>;
Kumar Galae77b28e2007-12-12 00:28:35 -0600140 compatible = "fsl,gianfar-mdio";
Jon Loeliger6e050d42008-01-25 16:31:01 -0600141 reg = <0x24520 0x20>;
Kumar Galae77b28e2007-12-12 00:28:35 -0600142
Kumar Gala6d9065d2007-02-17 16:09:56 -0600143 phy0: ethernet-phy@0 {
144 interrupt-parent = <&mpic>;
Jon Loeliger6e050d42008-01-25 16:31:01 -0600145 interrupts = <10 1>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500146 reg = <0>;
147 device_type = "ethernet-phy";
148 };
Kumar Gala6d9065d2007-02-17 16:09:56 -0600149 phy1: ethernet-phy@1 {
150 interrupt-parent = <&mpic>;
Jon Loeliger6e050d42008-01-25 16:31:01 -0600151 interrupts = <10 1>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500152 reg = <1>;
153 device_type = "ethernet-phy";
154 };
Kumar Gala6d9065d2007-02-17 16:09:56 -0600155 phy2: ethernet-phy@2 {
156 interrupt-parent = <&mpic>;
Jon Loeliger6e050d42008-01-25 16:31:01 -0600157 interrupts = <10 1>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500158 reg = <2>;
159 device_type = "ethernet-phy";
160 };
Kumar Gala6d9065d2007-02-17 16:09:56 -0600161 phy3: ethernet-phy@3 {
162 interrupt-parent = <&mpic>;
Jon Loeliger6e050d42008-01-25 16:31:01 -0600163 interrupts = <10 1>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500164 reg = <3>;
165 device_type = "ethernet-phy";
166 };
167 };
168
Jon Loeliger1c1d1672007-12-05 11:32:50 -0600169 enet0: ethernet@24000 {
Kumar Galae77b28e2007-12-12 00:28:35 -0600170 cell-index = <0>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500171 device_type = "network";
172 model = "TSEC";
173 compatible = "gianfar";
Jon Loeliger6e050d42008-01-25 16:31:01 -0600174 reg = <0x24000 0x1000>;
Timur Tabieae98262007-06-22 14:33:15 -0500175 local-mac-address = [ 00 00 00 00 00 00 ];
Jon Loeliger6e050d42008-01-25 16:31:01 -0600176 interrupts = <29 2 30 2 34 2>;
Kumar Gala6d9065d2007-02-17 16:09:56 -0600177 interrupt-parent = <&mpic>;
178 phy-handle = <&phy0>;
Andy Flemingcc651852007-07-10 17:28:49 -0500179 phy-connection-type = "rgmii-id";
Jon Loeliger707ba162006-08-03 16:27:57 -0500180 };
181
Jon Loeliger1c1d1672007-12-05 11:32:50 -0600182 enet1: ethernet@25000 {
Kumar Galae77b28e2007-12-12 00:28:35 -0600183 cell-index = <1>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500184 device_type = "network";
185 model = "TSEC";
186 compatible = "gianfar";
Jon Loeliger6e050d42008-01-25 16:31:01 -0600187 reg = <0x25000 0x1000>;
Timur Tabieae98262007-06-22 14:33:15 -0500188 local-mac-address = [ 00 00 00 00 00 00 ];
Jon Loeliger6e050d42008-01-25 16:31:01 -0600189 interrupts = <35 2 36 2 40 2>;
Kumar Gala6d9065d2007-02-17 16:09:56 -0600190 interrupt-parent = <&mpic>;
191 phy-handle = <&phy1>;
Andy Flemingcc651852007-07-10 17:28:49 -0500192 phy-connection-type = "rgmii-id";
Jon Loeliger707ba162006-08-03 16:27:57 -0500193 };
194
Jon Loeliger1c1d1672007-12-05 11:32:50 -0600195 enet2: ethernet@26000 {
Kumar Galae77b28e2007-12-12 00:28:35 -0600196 cell-index = <2>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500197 device_type = "network";
198 model = "TSEC";
199 compatible = "gianfar";
Jon Loeliger6e050d42008-01-25 16:31:01 -0600200 reg = <0x26000 0x1000>;
Timur Tabieae98262007-06-22 14:33:15 -0500201 local-mac-address = [ 00 00 00 00 00 00 ];
Jon Loeliger6e050d42008-01-25 16:31:01 -0600202 interrupts = <31 2 32 2 33 2>;
Kumar Gala6d9065d2007-02-17 16:09:56 -0600203 interrupt-parent = <&mpic>;
204 phy-handle = <&phy2>;
Andy Flemingcc651852007-07-10 17:28:49 -0500205 phy-connection-type = "rgmii-id";
Jon Loeliger707ba162006-08-03 16:27:57 -0500206 };
207
Jon Loeliger1c1d1672007-12-05 11:32:50 -0600208 enet3: ethernet@27000 {
Kumar Galae77b28e2007-12-12 00:28:35 -0600209 cell-index = <3>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500210 device_type = "network";
211 model = "TSEC";
212 compatible = "gianfar";
Jon Loeliger6e050d42008-01-25 16:31:01 -0600213 reg = <0x27000 0x1000>;
Timur Tabieae98262007-06-22 14:33:15 -0500214 local-mac-address = [ 00 00 00 00 00 00 ];
Jon Loeliger6e050d42008-01-25 16:31:01 -0600215 interrupts = <37 2 38 2 39 2>;
Kumar Gala6d9065d2007-02-17 16:09:56 -0600216 interrupt-parent = <&mpic>;
217 phy-handle = <&phy3>;
Andy Flemingcc651852007-07-10 17:28:49 -0500218 phy-connection-type = "rgmii-id";
Jon Loeliger707ba162006-08-03 16:27:57 -0500219 };
Jon Loeliger1c1d1672007-12-05 11:32:50 -0600220
221 serial0: serial@4500 {
Kumar Galaea082fa2007-12-12 01:46:12 -0600222 cell-index = <0>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500223 device_type = "serial";
224 compatible = "ns16550";
Jon Loeliger6e050d42008-01-25 16:31:01 -0600225 reg = <0x4500 0x100>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500226 clock-frequency = <0>;
Jon Loeliger6e050d42008-01-25 16:31:01 -0600227 interrupts = <42 2>;
Kumar Gala6d9065d2007-02-17 16:09:56 -0600228 interrupt-parent = <&mpic>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500229 };
230
Jon Loeliger1c1d1672007-12-05 11:32:50 -0600231 serial1: serial@4600 {
Kumar Galaea082fa2007-12-12 01:46:12 -0600232 cell-index = <1>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500233 device_type = "serial";
234 compatible = "ns16550";
Jon Loeliger6e050d42008-01-25 16:31:01 -0600235 reg = <0x4600 0x100>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500236 clock-frequency = <0>;
Jon Loeliger6e050d42008-01-25 16:31:01 -0600237 interrupts = <28 2>;
Kumar Gala6d9065d2007-02-17 16:09:56 -0600238 interrupt-parent = <&mpic>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500239 };
240
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500241 mpic: pic@40000 {
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500242 interrupt-controller;
243 #address-cells = <0>;
244 #interrupt-cells = <2>;
Jon Loeliger6e050d42008-01-25 16:31:01 -0600245 reg = <0x40000 0x40000>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500246 compatible = "chrp,open-pic";
247 device_type = "open-pic";
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500248 };
Kumar Galae1c15752007-10-04 01:04:57 -0500249
250 global-utilities@e0000 {
251 compatible = "fsl,mpc8641-guts";
Jon Loeliger6e050d42008-01-25 16:31:01 -0600252 reg = <0xe0000 0x1000>;
Kumar Galae1c15752007-10-04 01:04:57 -0500253 fsl,has-rstcr;
254 };
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500255 };
256
Jon Loeliger1c1d1672007-12-05 11:32:50 -0600257 pci0: pcie@f8008000 {
Kumar Galaea082fa2007-12-12 01:46:12 -0600258 cell-index = <0>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500259 compatible = "fsl,mpc8641-pcie";
260 device_type = "pci";
261 #interrupt-cells = <1>;
262 #size-cells = <2>;
263 #address-cells = <3>;
Jon Loeliger6e050d42008-01-25 16:31:01 -0600264 reg = <0xf8008000 0x1000>;
265 bus-range = <0x0 0xff>;
266 ranges = <0x02000000 0x0 0x80000000 0x80000000 0x0 0x20000000
267 0x01000000 0x0 0x00000000 0xe2000000 0x0 0x00100000>;
268 clock-frequency = <33333333>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500269 interrupt-parent = <&mpic>;
Jon Loeliger6e050d42008-01-25 16:31:01 -0600270 interrupts = <24 2>;
271 interrupt-map-mask = <0xff00 0 0 7>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500272 interrupt-map = <
Kumar Galabebfa062007-11-19 23:36:23 -0600273 /* IDSEL 0x11 func 0 - PCI slot 1 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600274 0x8800 0 0 1 &mpic 2 1
275 0x8800 0 0 2 &mpic 3 1
276 0x8800 0 0 3 &mpic 4 1
277 0x8800 0 0 4 &mpic 1 1
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500278
Kumar Galabebfa062007-11-19 23:36:23 -0600279 /* IDSEL 0x11 func 1 - PCI slot 1 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600280 0x8900 0 0 1 &mpic 2 1
281 0x8900 0 0 2 &mpic 3 1
282 0x8900 0 0 3 &mpic 4 1
283 0x8900 0 0 4 &mpic 1 1
Kumar Galabebfa062007-11-19 23:36:23 -0600284
285 /* IDSEL 0x11 func 2 - PCI slot 1 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600286 0x8a00 0 0 1 &mpic 2 1
287 0x8a00 0 0 2 &mpic 3 1
288 0x8a00 0 0 3 &mpic 4 1
289 0x8a00 0 0 4 &mpic 1 1
Kumar Galabebfa062007-11-19 23:36:23 -0600290
291 /* IDSEL 0x11 func 3 - PCI slot 1 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600292 0x8b00 0 0 1 &mpic 2 1
293 0x8b00 0 0 2 &mpic 3 1
294 0x8b00 0 0 3 &mpic 4 1
295 0x8b00 0 0 4 &mpic 1 1
Kumar Galabebfa062007-11-19 23:36:23 -0600296
297 /* IDSEL 0x11 func 4 - PCI slot 1 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600298 0x8c00 0 0 1 &mpic 2 1
299 0x8c00 0 0 2 &mpic 3 1
300 0x8c00 0 0 3 &mpic 4 1
301 0x8c00 0 0 4 &mpic 1 1
Kumar Galabebfa062007-11-19 23:36:23 -0600302
303 /* IDSEL 0x11 func 5 - PCI slot 1 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600304 0x8d00 0 0 1 &mpic 2 1
305 0x8d00 0 0 2 &mpic 3 1
306 0x8d00 0 0 3 &mpic 4 1
307 0x8d00 0 0 4 &mpic 1 1
Kumar Galabebfa062007-11-19 23:36:23 -0600308
309 /* IDSEL 0x11 func 6 - PCI slot 1 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600310 0x8e00 0 0 1 &mpic 2 1
311 0x8e00 0 0 2 &mpic 3 1
312 0x8e00 0 0 3 &mpic 4 1
313 0x8e00 0 0 4 &mpic 1 1
Kumar Galabebfa062007-11-19 23:36:23 -0600314
315 /* IDSEL 0x11 func 7 - PCI slot 1 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600316 0x8f00 0 0 1 &mpic 2 1
317 0x8f00 0 0 2 &mpic 3 1
318 0x8f00 0 0 3 &mpic 4 1
319 0x8f00 0 0 4 &mpic 1 1
Kumar Galabebfa062007-11-19 23:36:23 -0600320
321 /* IDSEL 0x12 func 0 - PCI slot 2 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600322 0x9000 0 0 1 &mpic 3 1
323 0x9000 0 0 2 &mpic 4 1
324 0x9000 0 0 3 &mpic 1 1
325 0x9000 0 0 4 &mpic 2 1
Kumar Galabebfa062007-11-19 23:36:23 -0600326
327 /* IDSEL 0x12 func 1 - PCI slot 2 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600328 0x9100 0 0 1 &mpic 3 1
329 0x9100 0 0 2 &mpic 4 1
330 0x9100 0 0 3 &mpic 1 1
331 0x9100 0 0 4 &mpic 2 1
Kumar Galabebfa062007-11-19 23:36:23 -0600332
333 /* IDSEL 0x12 func 2 - PCI slot 2 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600334 0x9200 0 0 1 &mpic 3 1
335 0x9200 0 0 2 &mpic 4 1
336 0x9200 0 0 3 &mpic 1 1
337 0x9200 0 0 4 &mpic 2 1
Kumar Galabebfa062007-11-19 23:36:23 -0600338
339 /* IDSEL 0x12 func 3 - PCI slot 2 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600340 0x9300 0 0 1 &mpic 3 1
341 0x9300 0 0 2 &mpic 4 1
342 0x9300 0 0 3 &mpic 1 1
343 0x9300 0 0 4 &mpic 2 1
Kumar Galabebfa062007-11-19 23:36:23 -0600344
345 /* IDSEL 0x12 func 4 - PCI slot 2 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600346 0x9400 0 0 1 &mpic 3 1
347 0x9400 0 0 2 &mpic 4 1
348 0x9400 0 0 3 &mpic 1 1
349 0x9400 0 0 4 &mpic 2 1
Kumar Galabebfa062007-11-19 23:36:23 -0600350
351 /* IDSEL 0x12 func 5 - PCI slot 2 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600352 0x9500 0 0 1 &mpic 3 1
353 0x9500 0 0 2 &mpic 4 1
354 0x9500 0 0 3 &mpic 1 1
355 0x9500 0 0 4 &mpic 2 1
Kumar Galabebfa062007-11-19 23:36:23 -0600356
357 /* IDSEL 0x12 func 6 - PCI slot 2 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600358 0x9600 0 0 1 &mpic 3 1
359 0x9600 0 0 2 &mpic 4 1
360 0x9600 0 0 3 &mpic 1 1
361 0x9600 0 0 4 &mpic 2 1
Kumar Galabebfa062007-11-19 23:36:23 -0600362
363 /* IDSEL 0x12 func 7 - PCI slot 2 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600364 0x9700 0 0 1 &mpic 3 1
365 0x9700 0 0 2 &mpic 4 1
366 0x9700 0 0 3 &mpic 1 1
367 0x9700 0 0 4 &mpic 2 1
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500368
369 // IDSEL 0x1c USB
Jon Loeliger6e050d42008-01-25 16:31:01 -0600370 0xe000 0 0 1 &i8259 12 2
371 0xe100 0 0 2 &i8259 9 2
372 0xe200 0 0 3 &i8259 10 2
373 0xe300 0 0 4 &i8259 112
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500374
375 // IDSEL 0x1d Audio
Jon Loeliger6e050d42008-01-25 16:31:01 -0600376 0xe800 0 0 1 &i8259 6 2
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500377
378 // IDSEL 0x1e Legacy
Jon Loeliger6e050d42008-01-25 16:31:01 -0600379 0xf000 0 0 1 &i8259 7 2
380 0xf100 0 0 1 &i8259 7 2
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500381
382 // IDSEL 0x1f IDE/SATA
Jon Loeliger6e050d42008-01-25 16:31:01 -0600383 0xf800 0 0 1 &i8259 14 2
384 0xf900 0 0 1 &i8259 5 2
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500385 >;
386
387 pcie@0 {
388 reg = <0 0 0 0 0>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500389 #size-cells = <2>;
390 #address-cells = <3>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500391 device_type = "pci";
Jon Loeliger6e050d42008-01-25 16:31:01 -0600392 ranges = <0x02000000 0x0 0x80000000
393 0x02000000 0x0 0x80000000
394 0x0 0x20000000
Jon Loeliger707ba162006-08-03 16:27:57 -0500395
Jon Loeliger6e050d42008-01-25 16:31:01 -0600396 0x01000000 0x0 0x00000000
397 0x01000000 0x0 0x00000000
398 0x0 0x00100000>;
Wade Farnsworthdfac6fa2007-06-04 13:24:47 -0700399 uli1575@0 {
400 reg = <0 0 0 0 0>;
401 #size-cells = <2>;
402 #address-cells = <3>;
Jon Loeliger6e050d42008-01-25 16:31:01 -0600403 ranges = <0x02000000 0x0 0x80000000
404 0x02000000 0x0 0x80000000
405 0x0 0x20000000
406 0x01000000 0x0 0x00000000
407 0x01000000 0x0 0x00000000
408 0x0 0x00100000>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500409 isa@1e {
410 device_type = "isa";
411 #interrupt-cells = <2>;
412 #size-cells = <1>;
413 #address-cells = <2>;
Jon Loeliger6e050d42008-01-25 16:31:01 -0600414 reg = <0xf000 0 0 0 0>;
415 ranges = <1 0 0x01000000 0 0
416 0x00001000>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500417 interrupt-parent = <&i8259>;
Wade Farnsworthdfac6fa2007-06-04 13:24:47 -0700418
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500419 i8259: interrupt-controller@20 {
Jon Loeliger6e050d42008-01-25 16:31:01 -0600420 reg = <1 0x20 2
421 1 0xa0 2
422 1 0x4d0 2>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500423 interrupt-controller;
424 device_type = "interrupt-controller";
425 #address-cells = <0>;
Wade Farnsworthdfac6fa2007-06-04 13:24:47 -0700426 #interrupt-cells = <2>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500427 compatible = "chrp,iic";
428 interrupts = <9 2>;
429 interrupt-parent = <&mpic>;
430 };
Wade Farnsworthdfac6fa2007-06-04 13:24:47 -0700431
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500432 i8042@60 {
433 #size-cells = <0>;
434 #address-cells = <1>;
Jon Loeliger6e050d42008-01-25 16:31:01 -0600435 reg = <1 0x60 1 1 0x64 1>;
436 interrupts = <1 3 12 3>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500437 interrupt-parent =
438 <&i8259>;
439
440 keyboard@0 {
441 reg = <0>;
442 compatible = "pnpPNP,303";
Wade Farnsworthdfac6fa2007-06-04 13:24:47 -0700443 };
444
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500445 mouse@1 {
446 reg = <1>;
447 compatible = "pnpPNP,f03";
Wade Farnsworthdfac6fa2007-06-04 13:24:47 -0700448 };
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500449 };
Wade Farnsworthdfac6fa2007-06-04 13:24:47 -0700450
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500451 rtc@70 {
452 compatible =
453 "pnpPNP,b00";
Jon Loeliger6e050d42008-01-25 16:31:01 -0600454 reg = <1 0x70 2>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500455 };
Wade Farnsworthdfac6fa2007-06-04 13:24:47 -0700456
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500457 gpio@400 {
Jon Loeliger6e050d42008-01-25 16:31:01 -0600458 reg = <1 0x400 0x80>;
Wade Farnsworthdfac6fa2007-06-04 13:24:47 -0700459 };
460 };
Jon Loeliger707ba162006-08-03 16:27:57 -0500461 };
Jon Loeliger707ba162006-08-03 16:27:57 -0500462 };
Zhang Weie0e3c8d2007-03-07 11:47:41 -0600463
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500464 };
465
Jon Loeliger1c1d1672007-12-05 11:32:50 -0600466 pci1: pcie@f8009000 {
Kumar Galaea082fa2007-12-12 01:46:12 -0600467 cell-index = <1>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500468 compatible = "fsl,mpc8641-pcie";
469 device_type = "pci";
470 #interrupt-cells = <1>;
471 #size-cells = <2>;
472 #address-cells = <3>;
Jon Loeliger6e050d42008-01-25 16:31:01 -0600473 reg = <0xf8009000 0x1000>;
474 bus-range = <0 0xff>;
475 ranges = <0x02000000 0x0 0xa0000000 0xa0000000 0x0 0x20000000
476 0x01000000 0x0 0x00000000 0xe3000000 0x0 0x00100000>;
477 clock-frequency = <33333333>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500478 interrupt-parent = <&mpic>;
Jon Loeliger6e050d42008-01-25 16:31:01 -0600479 interrupts = <25 2>;
480 interrupt-map-mask = <0xf800 0 0 7>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500481 interrupt-map = <
482 /* IDSEL 0x0 */
Jon Loeliger6e050d42008-01-25 16:31:01 -0600483 0x0000 0 0 1 &mpic 4 1
484 0x0000 0 0 2 &mpic 5 1
485 0x0000 0 0 3 &mpic 6 1
486 0x0000 0 0 4 &mpic 7 1
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500487 >;
488 pcie@0 {
489 reg = <0 0 0 0 0>;
Zhang Weie0e3c8d2007-03-07 11:47:41 -0600490 #size-cells = <2>;
491 #address-cells = <3>;
Kumar Gala1b3c5cd2007-09-12 18:23:46 -0500492 device_type = "pci";
Jon Loeliger6e050d42008-01-25 16:31:01 -0600493 ranges = <0x02000000 0x0 0xa0000000
494 0x02000000 0x0 0xa0000000
495 0x0 0x20000000
Zhang Weie0e3c8d2007-03-07 11:47:41 -0600496
Jon Loeliger6e050d42008-01-25 16:31:01 -0600497 0x01000000 0x0 0x00000000
498 0x01000000 0x0 0x00000000
499 0x0 0x00100000>;
Jon Loeliger707ba162006-08-03 16:27:57 -0500500 };
501 };
Zhang Wei56fde1f2008-04-18 13:33:42 -0700502 rapidio0: rapidio@f80c0000 {
503 #address-cells = <2>;
504 #size-cells = <2>;
505 compatible = "fsl,rapidio-delta";
506 reg = <0xf80c0000 0x20000>;
507 ranges = <0 0 0xc0000000 0 0x20000000>;
508 interrupt-parent = <&mpic>;
509 /* err_irq bell_outb_irq bell_inb_irq
510 msg1_tx_irq msg1_rx_irq msg2_tx_irq msg2_rx_irq */
511 interrupts = <48 2 49 2 50 2 53 2 54 2 55 2 56 2>;
512 };
Jon Loeliger707ba162006-08-03 16:27:57 -0500513};