blob: 98e94b465662c4dfef1b8a8805721251eb157078 [file] [log] [blame]
Jon Loeligerd93daf82007-03-20 11:19:10 -05001/*
2 * MPC8544 DS Device Tree Source
3 *
Kumar Gala32f960e2008-04-17 01:28:15 -05004 * Copyright 2007, 2008 Freescale Semiconductor Inc.
Jon Loeligerd93daf82007-03-20 11:19:10 -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/;
Jon Loeligerd93daf82007-03-20 11:19:10 -050013/ {
14 model = "MPC8544DS";
15 compatible = "MPC8544DS", "MPC85xxDS";
16 #address-cells = <1>;
17 #size-cells = <1>;
18
Kumar Galaea082fa2007-12-12 01:46:12 -060019 aliases {
20 ethernet0 = &enet0;
21 ethernet1 = &enet1;
22 serial0 = &serial0;
23 serial1 = &serial1;
24 pci0 = &pci0;
25 pci1 = &pci1;
26 pci2 = &pci2;
27 pci3 = &pci3;
28 };
29
Jon Loeligerd93daf82007-03-20 11:19:10 -050030 cpus {
Jon Loeligerd93daf82007-03-20 11:19:10 -050031 #address-cells = <1>;
32 #size-cells = <0>;
33
34 PowerPC,8544@0 {
35 device_type = "cpu";
Kumar Gala32f960e2008-04-17 01:28:15 -050036 reg = <0x0>;
37 d-cache-line-size = <32>; // 32 bytes
38 i-cache-line-size = <32>; // 32 bytes
39 d-cache-size = <0x8000>; // L1, 32K
40 i-cache-size = <0x8000>; // L1, 32K
Jon Loeligerd93daf82007-03-20 11:19:10 -050041 timebase-frequency = <0>;
42 bus-frequency = <0>;
43 clock-frequency = <0>;
Kumar Galac0540652008-05-30 13:43:43 -050044 next-level-cache = <&L2>;
Jon Loeligerd93daf82007-03-20 11:19:10 -050045 };
46 };
47
48 memory {
49 device_type = "memory";
Kumar Gala32f960e2008-04-17 01:28:15 -050050 reg = <0x0 0x0>; // Filled by U-Boot
Jon Loeligerd93daf82007-03-20 11:19:10 -050051 };
52
53 soc8544@e0000000 {
54 #address-cells = <1>;
55 #size-cells = <1>;
Jon Loeligerd93daf82007-03-20 11:19:10 -050056 device_type = "soc";
Kim Phillipscf0d19f2008-07-29 15:29:24 -050057 compatible = "simple-bus";
Kumar Galab66510c2007-08-16 23:55:55 -050058
Kumar Gala32f960e2008-04-17 01:28:15 -050059 ranges = <0x0 0xe0000000 0x100000>;
Jon Loeligerd93daf82007-03-20 11:19:10 -050060 bus-frequency = <0>; // Filled out by uboot.
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 = <10>;
66 };
67
68 ecm@1000 {
69 compatible = "fsl,mpc8544-ecm", "fsl,ecm";
70 reg = <0x1000 0x1000>;
71 interrupts = <17 2>;
72 interrupt-parent = <&mpic>;
73 };
74
Kumar Gala4da421d2007-05-15 13:20:05 -050075 memory-controller@2000 {
76 compatible = "fsl,8544-memory-controller";
Kumar Gala32f960e2008-04-17 01:28:15 -050077 reg = <0x2000 0x1000>;
Kumar Gala4da421d2007-05-15 13:20:05 -050078 interrupt-parent = <&mpic>;
Kumar Gala32f960e2008-04-17 01:28:15 -050079 interrupts = <18 2>;
Kumar Gala4da421d2007-05-15 13:20:05 -050080 };
81
Kumar Galac0540652008-05-30 13:43:43 -050082 L2: l2-cache-controller@20000 {
Kumar Gala4da421d2007-05-15 13:20:05 -050083 compatible = "fsl,8544-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
Kumar Gala4da421d2007-05-15 13:20:05 -050087 interrupt-parent = <&mpic>;
Kumar Gala32f960e2008-04-17 01:28:15 -050088 interrupts = <16 2>;
Kumar Gala4da421d2007-05-15 13:20:05 -050089 };
90
Jon Loeligerd93daf82007-03-20 11:19:10 -050091 i2c@3000 {
Kumar Galaec9686c2007-12-11 23:17:24 -060092 #address-cells = <1>;
93 #size-cells = <0>;
94 cell-index = <0>;
Jon Loeligerd93daf82007-03-20 11:19:10 -050095 compatible = "fsl-i2c";
Kumar Gala32f960e2008-04-17 01:28:15 -050096 reg = <0x3000 0x100>;
97 interrupts = <43 2>;
Jon Loeligerd93daf82007-03-20 11:19:10 -050098 interrupt-parent = <&mpic>;
99 dfsrr;
100 };
101
Kumar Galaec9686c2007-12-11 23:17:24 -0600102 i2c@3100 {
103 #address-cells = <1>;
104 #size-cells = <0>;
105 cell-index = <1>;
106 compatible = "fsl-i2c";
Kumar Gala32f960e2008-04-17 01:28:15 -0500107 reg = <0x3100 0x100>;
108 interrupts = <43 2>;
Kumar Galaec9686c2007-12-11 23:17:24 -0600109 interrupt-parent = <&mpic>;
110 dfsrr;
111 };
112
Sebastian Siewior1028d4f2008-03-15 00:01:30 +0100113 dma@21300 {
114 #address-cells = <1>;
115 #size-cells = <1>;
116 compatible = "fsl,mpc8544-dma", "fsl,eloplus-dma";
Kumar Gala32f960e2008-04-17 01:28:15 -0500117 reg = <0x21300 0x4>;
118 ranges = <0x0 0x21100 0x200>;
Sebastian Siewior1028d4f2008-03-15 00:01:30 +0100119 cell-index = <0>;
120 dma-channel@0 {
121 compatible = "fsl,mpc8544-dma-channel",
122 "fsl,eloplus-dma-channel";
Kumar Gala32f960e2008-04-17 01:28:15 -0500123 reg = <0x0 0x80>;
Sebastian Siewior1028d4f2008-03-15 00:01:30 +0100124 cell-index = <0>;
125 interrupt-parent = <&mpic>;
Kumar Gala32f960e2008-04-17 01:28:15 -0500126 interrupts = <20 2>;
Sebastian Siewior1028d4f2008-03-15 00:01:30 +0100127 };
128 dma-channel@80 {
129 compatible = "fsl,mpc8544-dma-channel",
130 "fsl,eloplus-dma-channel";
Kumar Gala32f960e2008-04-17 01:28:15 -0500131 reg = <0x80 0x80>;
Sebastian Siewior1028d4f2008-03-15 00:01:30 +0100132 cell-index = <1>;
133 interrupt-parent = <&mpic>;
Kumar Gala32f960e2008-04-17 01:28:15 -0500134 interrupts = <21 2>;
Sebastian Siewior1028d4f2008-03-15 00:01:30 +0100135 };
136 dma-channel@100 {
137 compatible = "fsl,mpc8544-dma-channel",
138 "fsl,eloplus-dma-channel";
Kumar Gala32f960e2008-04-17 01:28:15 -0500139 reg = <0x100 0x80>;
Sebastian Siewior1028d4f2008-03-15 00:01:30 +0100140 cell-index = <2>;
141 interrupt-parent = <&mpic>;
Kumar Gala32f960e2008-04-17 01:28:15 -0500142 interrupts = <22 2>;
Sebastian Siewior1028d4f2008-03-15 00:01:30 +0100143 };
144 dma-channel@180 {
145 compatible = "fsl,mpc8544-dma-channel",
146 "fsl,eloplus-dma-channel";
Kumar Gala32f960e2008-04-17 01:28:15 -0500147 reg = <0x180 0x80>;
Sebastian Siewior1028d4f2008-03-15 00:01:30 +0100148 cell-index = <3>;
149 interrupt-parent = <&mpic>;
Kumar Gala32f960e2008-04-17 01:28:15 -0500150 interrupts = <23 2>;
Sebastian Siewior1028d4f2008-03-15 00:01:30 +0100151 };
152 };
153
Kumar Galae77b28e2007-12-12 00:28:35 -0600154 enet0: ethernet@24000 {
Anton Vorontsov84ba4a52009-03-19 21:01:48 +0300155 #address-cells = <1>;
156 #size-cells = <1>;
Kumar Galae77b28e2007-12-12 00:28:35 -0600157 cell-index = <0>;
Jon Loeligerd93daf82007-03-20 11:19:10 -0500158 device_type = "network";
159 model = "TSEC";
160 compatible = "gianfar";
Kumar Gala32f960e2008-04-17 01:28:15 -0500161 reg = <0x24000 0x1000>;
Anton Vorontsov84ba4a52009-03-19 21:01:48 +0300162 ranges = <0x0 0x24000 0x1000>;
Jon Loeligerd93daf82007-03-20 11:19:10 -0500163 local-mac-address = [ 00 00 00 00 00 00 ];
Kumar Gala32f960e2008-04-17 01:28:15 -0500164 interrupts = <29 2 30 2 34 2>;
Jon Loeligerd93daf82007-03-20 11:19:10 -0500165 interrupt-parent = <&mpic>;
166 phy-handle = <&phy0>;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800167 tbi-handle = <&tbi0>;
Kumar Gala9a9bcf42007-07-26 00:07:36 -0500168 phy-connection-type = "rgmii-id";
Anton Vorontsov84ba4a52009-03-19 21:01:48 +0300169
170 mdio@520 {
171 #address-cells = <1>;
172 #size-cells = <0>;
173 compatible = "fsl,gianfar-mdio";
174 reg = <0x520 0x20>;
175
176 phy0: ethernet-phy@0 {
177 interrupt-parent = <&mpic>;
178 interrupts = <10 1>;
179 reg = <0x0>;
180 device_type = "ethernet-phy";
181 };
182 phy1: ethernet-phy@1 {
183 interrupt-parent = <&mpic>;
184 interrupts = <10 1>;
185 reg = <0x1>;
186 device_type = "ethernet-phy";
187 };
188
189 tbi0: tbi-phy@11 {
190 reg = <0x11>;
191 device_type = "tbi-phy";
192 };
193 };
Jon Loeligerd93daf82007-03-20 11:19:10 -0500194 };
195
Kumar Galae77b28e2007-12-12 00:28:35 -0600196 enet1: ethernet@26000 {
Anton Vorontsov84ba4a52009-03-19 21:01:48 +0300197 #address-cells = <1>;
198 #size-cells = <1>;
Kumar Galae77b28e2007-12-12 00:28:35 -0600199 cell-index = <1>;
Jon Loeligerd93daf82007-03-20 11:19:10 -0500200 device_type = "network";
201 model = "TSEC";
202 compatible = "gianfar";
Kumar Gala32f960e2008-04-17 01:28:15 -0500203 reg = <0x26000 0x1000>;
Anton Vorontsov84ba4a52009-03-19 21:01:48 +0300204 ranges = <0x0 0x26000 0x1000>;
Jon Loeligerd93daf82007-03-20 11:19:10 -0500205 local-mac-address = [ 00 00 00 00 00 00 ];
Kumar Gala32f960e2008-04-17 01:28:15 -0500206 interrupts = <31 2 32 2 33 2>;
Jon Loeligerd93daf82007-03-20 11:19:10 -0500207 interrupt-parent = <&mpic>;
208 phy-handle = <&phy1>;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800209 tbi-handle = <&tbi1>;
Kumar Gala9a9bcf42007-07-26 00:07:36 -0500210 phy-connection-type = "rgmii-id";
Anton Vorontsov84ba4a52009-03-19 21:01:48 +0300211
212 mdio@520 {
213 #address-cells = <1>;
214 #size-cells = <0>;
215 compatible = "fsl,gianfar-tbi";
216 reg = <0x520 0x20>;
217
218 tbi1: tbi-phy@11 {
219 reg = <0x11>;
220 device_type = "tbi-phy";
221 };
222 };
Jon Loeligerd93daf82007-03-20 11:19:10 -0500223 };
224
Kumar Galaea082fa2007-12-12 01:46:12 -0600225 serial0: serial@4500 {
226 cell-index = <0>;
Jon Loeligerd93daf82007-03-20 11:19:10 -0500227 device_type = "serial";
228 compatible = "ns16550";
Kumar Gala32f960e2008-04-17 01:28:15 -0500229 reg = <0x4500 0x100>;
Jon Loeligerd93daf82007-03-20 11:19:10 -0500230 clock-frequency = <0>;
Kumar Gala32f960e2008-04-17 01:28:15 -0500231 interrupts = <42 2>;
Jon Loeligerd93daf82007-03-20 11:19:10 -0500232 interrupt-parent = <&mpic>;
233 };
234
Kumar Galaea082fa2007-12-12 01:46:12 -0600235 serial1: serial@4600 {
236 cell-index = <1>;
Jon Loeligerd93daf82007-03-20 11:19:10 -0500237 device_type = "serial";
238 compatible = "ns16550";
Kumar Gala32f960e2008-04-17 01:28:15 -0500239 reg = <0x4600 0x100>;
Jon Loeligerd93daf82007-03-20 11:19:10 -0500240 clock-frequency = <0>;
Kumar Gala32f960e2008-04-17 01:28:15 -0500241 interrupts = <42 2>;
Jon Loeligerd93daf82007-03-20 11:19:10 -0500242 interrupt-parent = <&mpic>;
243 };
244
Roy Zang10ce8c62007-07-13 17:35:33 +0800245 global-utilities@e0000 { //global utilities block
246 compatible = "fsl,mpc8548-guts";
Kumar Gala32f960e2008-04-17 01:28:15 -0500247 reg = <0xe0000 0x1000>;
Roy Zang10ce8c62007-07-13 17:35:33 +0800248 fsl,has-rstcr;
249 };
250
Kim Phillips3fd44732008-07-08 19:13:33 -0500251 crypto@30000 {
252 compatible = "fsl,sec2.1", "fsl,sec2.0";
253 reg = <0x30000 0x10000>;
254 interrupts = <45 2>;
255 interrupt-parent = <&mpic>;
256 fsl,num-channels = <4>;
257 fsl,channel-fifo-len = <24>;
258 fsl,exec-units-mask = <0xfe>;
259 fsl,descriptor-types-mask = <0x12b0ebf>;
260 };
261
Jon Loeligerd93daf82007-03-20 11:19:10 -0500262 mpic: pic@40000 {
Jon Loeligerd93daf82007-03-20 11:19:10 -0500263 interrupt-controller;
264 #address-cells = <0>;
265 #interrupt-cells = <2>;
Kumar Gala32f960e2008-04-17 01:28:15 -0500266 reg = <0x40000 0x40000>;
Jon Loeligerd93daf82007-03-20 11:19:10 -0500267 compatible = "chrp,open-pic";
268 device_type = "open-pic";
Jon Loeligerd93daf82007-03-20 11:19:10 -0500269 };
Jason Jin741edc42008-05-23 16:32:48 +0800270
271 msi@41600 {
272 compatible = "fsl,mpc8544-msi", "fsl,mpic-msi";
273 reg = <0x41600 0x80>;
274 msi-available-ranges = <0 0x100>;
275 interrupts = <
276 0xe0 0
277 0xe1 0
278 0xe2 0
279 0xe3 0
280 0xe4 0
281 0xe5 0
282 0xe6 0
283 0xe7 0>;
284 interrupt-parent = <&mpic>;
285 };
Jon Loeligerd93daf82007-03-20 11:19:10 -0500286 };
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500287
Kumar Galaea082fa2007-12-12 01:46:12 -0600288 pci0: pci@e0008000 {
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500289 compatible = "fsl,mpc8540-pci";
290 device_type = "pci";
Kumar Gala32f960e2008-04-17 01:28:15 -0500291 interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500292 interrupt-map = <
293
294 /* IDSEL 0x11 J17 Slot 1 */
Kumar Gala32f960e2008-04-17 01:28:15 -0500295 0x8800 0x0 0x0 0x1 &mpic 0x2 0x1
296 0x8800 0x0 0x0 0x2 &mpic 0x3 0x1
297 0x8800 0x0 0x0 0x3 &mpic 0x4 0x1
298 0x8800 0x0 0x0 0x4 &mpic 0x1 0x1
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500299
300 /* IDSEL 0x12 J16 Slot 2 */
301
Kumar Gala32f960e2008-04-17 01:28:15 -0500302 0x9000 0x0 0x0 0x1 &mpic 0x3 0x1
303 0x9000 0x0 0x0 0x2 &mpic 0x4 0x1
304 0x9000 0x0 0x0 0x3 &mpic 0x2 0x1
305 0x9000 0x0 0x0 0x4 &mpic 0x1 0x1>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500306
307 interrupt-parent = <&mpic>;
Kumar Gala32f960e2008-04-17 01:28:15 -0500308 interrupts = <24 2>;
309 bus-range = <0 255>;
310 ranges = <0x2000000 0x0 0xc0000000 0xc0000000 0x0 0x20000000
311 0x1000000 0x0 0x0 0xe1000000 0x0 0x10000>;
312 clock-frequency = <66666666>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500313 #interrupt-cells = <1>;
314 #size-cells = <2>;
315 #address-cells = <3>;
Kumar Gala32f960e2008-04-17 01:28:15 -0500316 reg = <0xe0008000 0x1000>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500317 };
318
Kumar Galaea082fa2007-12-12 01:46:12 -0600319 pci1: pcie@e0009000 {
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500320 compatible = "fsl,mpc8548-pcie";
321 device_type = "pci";
322 #interrupt-cells = <1>;
323 #size-cells = <2>;
324 #address-cells = <3>;
Kumar Gala32f960e2008-04-17 01:28:15 -0500325 reg = <0xe0009000 0x1000>;
326 bus-range = <0 255>;
327 ranges = <0x2000000 0x0 0x80000000 0x80000000 0x0 0x20000000
328 0x1000000 0x0 0x0 0xe1010000 0x0 0x10000>;
329 clock-frequency = <33333333>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500330 interrupt-parent = <&mpic>;
Kumar Galabe122d6d2009-01-06 10:23:37 -0600331 interrupts = <25 2>;
Kumar Gala32f960e2008-04-17 01:28:15 -0500332 interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500333 interrupt-map = <
334 /* IDSEL 0x0 */
Kumar Gala32f960e2008-04-17 01:28:15 -0500335 0000 0x0 0x0 0x1 &mpic 0x4 0x1
336 0000 0x0 0x0 0x2 &mpic 0x5 0x1
337 0000 0x0 0x0 0x3 &mpic 0x6 0x1
338 0000 0x0 0x0 0x4 &mpic 0x7 0x1
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500339 >;
340 pcie@0 {
Kumar Gala32f960e2008-04-17 01:28:15 -0500341 reg = <0x0 0x0 0x0 0x0 0x0>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500342 #size-cells = <2>;
343 #address-cells = <3>;
344 device_type = "pci";
Kumar Gala32f960e2008-04-17 01:28:15 -0500345 ranges = <0x2000000 0x0 0x80000000
346 0x2000000 0x0 0x80000000
347 0x0 0x20000000
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500348
Kumar Gala32f960e2008-04-17 01:28:15 -0500349 0x1000000 0x0 0x0
350 0x1000000 0x0 0x0
351 0x0 0x10000>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500352 };
353 };
354
Kumar Galaea082fa2007-12-12 01:46:12 -0600355 pci2: pcie@e000a000 {
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500356 compatible = "fsl,mpc8548-pcie";
357 device_type = "pci";
358 #interrupt-cells = <1>;
359 #size-cells = <2>;
360 #address-cells = <3>;
Kumar Gala32f960e2008-04-17 01:28:15 -0500361 reg = <0xe000a000 0x1000>;
362 bus-range = <0 255>;
363 ranges = <0x2000000 0x0 0xa0000000 0xa0000000 0x0 0x10000000
364 0x1000000 0x0 0x0 0xe1020000 0x0 0x10000>;
365 clock-frequency = <33333333>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500366 interrupt-parent = <&mpic>;
Kumar Galabe122d6d2009-01-06 10:23:37 -0600367 interrupts = <26 2>;
Kumar Gala32f960e2008-04-17 01:28:15 -0500368 interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500369 interrupt-map = <
370 /* IDSEL 0x0 */
Kumar Gala32f960e2008-04-17 01:28:15 -0500371 0000 0x0 0x0 0x1 &mpic 0x0 0x1
372 0000 0x0 0x0 0x2 &mpic 0x1 0x1
373 0000 0x0 0x0 0x3 &mpic 0x2 0x1
374 0000 0x0 0x0 0x4 &mpic 0x3 0x1
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500375 >;
376 pcie@0 {
Kumar Gala32f960e2008-04-17 01:28:15 -0500377 reg = <0x0 0x0 0x0 0x0 0x0>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500378 #size-cells = <2>;
379 #address-cells = <3>;
380 device_type = "pci";
Kumar Gala32f960e2008-04-17 01:28:15 -0500381 ranges = <0x2000000 0x0 0xa0000000
382 0x2000000 0x0 0xa0000000
383 0x0 0x10000000
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500384
Kumar Gala32f960e2008-04-17 01:28:15 -0500385 0x1000000 0x0 0x0
386 0x1000000 0x0 0x0
387 0x0 0x10000>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500388 };
389 };
390
Kumar Galaea082fa2007-12-12 01:46:12 -0600391 pci3: pcie@e000b000 {
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500392 compatible = "fsl,mpc8548-pcie";
393 device_type = "pci";
394 #interrupt-cells = <1>;
395 #size-cells = <2>;
396 #address-cells = <3>;
Kumar Gala32f960e2008-04-17 01:28:15 -0500397 reg = <0xe000b000 0x1000>;
398 bus-range = <0 255>;
399 ranges = <0x2000000 0x0 0xb0000000 0xb0000000 0x0 0x100000
400 0x1000000 0x0 0x0 0xb0100000 0x0 0x100000>;
401 clock-frequency = <33333333>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500402 interrupt-parent = <&mpic>;
Kumar Gala32f960e2008-04-17 01:28:15 -0500403 interrupts = <27 2>;
404 interrupt-map-mask = <0xff00 0x0 0x0 0x1>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500405 interrupt-map = <
406 // IDSEL 0x1c USB
Kumar Gala32f960e2008-04-17 01:28:15 -0500407 0xe000 0x0 0x0 0x1 &i8259 0xc 0x2
408 0xe100 0x0 0x0 0x2 &i8259 0x9 0x2
409 0xe200 0x0 0x0 0x3 &i8259 0xa 0x2
410 0xe300 0x0 0x0 0x4 &i8259 0xb 0x2
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500411
412 // IDSEL 0x1d Audio
Kumar Gala32f960e2008-04-17 01:28:15 -0500413 0xe800 0x0 0x0 0x1 &i8259 0x6 0x2
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500414
415 // IDSEL 0x1e Legacy
Kumar Gala32f960e2008-04-17 01:28:15 -0500416 0xf000 0x0 0x0 0x1 &i8259 0x7 0x2
417 0xf100 0x0 0x0 0x1 &i8259 0x7 0x2
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500418
419 // IDSEL 0x1f IDE/SATA
Kumar Gala32f960e2008-04-17 01:28:15 -0500420 0xf800 0x0 0x0 0x1 &i8259 0xe 0x2
421 0xf900 0x0 0x0 0x1 &i8259 0x5 0x2
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500422 >;
423
424 pcie@0 {
Kumar Gala32f960e2008-04-17 01:28:15 -0500425 reg = <0x0 0x0 0x0 0x0 0x0>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500426 #size-cells = <2>;
427 #address-cells = <3>;
428 device_type = "pci";
Kumar Gala32f960e2008-04-17 01:28:15 -0500429 ranges = <0x2000000 0x0 0xb0000000
430 0x2000000 0x0 0xb0000000
431 0x0 0x100000
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500432
Kumar Gala32f960e2008-04-17 01:28:15 -0500433 0x1000000 0x0 0x0
434 0x1000000 0x0 0x0
435 0x0 0x100000>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500436
437 uli1575@0 {
Kumar Gala32f960e2008-04-17 01:28:15 -0500438 reg = <0x0 0x0 0x0 0x0 0x0>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500439 #size-cells = <2>;
440 #address-cells = <3>;
Kumar Gala32f960e2008-04-17 01:28:15 -0500441 ranges = <0x2000000 0x0 0xb0000000
442 0x2000000 0x0 0xb0000000
443 0x0 0x100000
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500444
Kumar Gala32f960e2008-04-17 01:28:15 -0500445 0x1000000 0x0 0x0
446 0x1000000 0x0 0x0
447 0x0 0x100000>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500448 isa@1e {
449 device_type = "isa";
450 #interrupt-cells = <2>;
451 #size-cells = <1>;
452 #address-cells = <2>;
Kumar Gala32f960e2008-04-17 01:28:15 -0500453 reg = <0xf000 0x0 0x0 0x0 0x0>;
454 ranges = <0x1 0x0
455 0x1000000 0x0 0x0
456 0x1000>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500457 interrupt-parent = <&i8259>;
458
459 i8259: interrupt-controller@20 {
Kumar Gala32f960e2008-04-17 01:28:15 -0500460 reg = <0x1 0x20 0x2
461 0x1 0xa0 0x2
462 0x1 0x4d0 0x2>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500463 interrupt-controller;
464 device_type = "interrupt-controller";
465 #address-cells = <0>;
466 #interrupt-cells = <2>;
467 compatible = "chrp,iic";
468 interrupts = <9 2>;
469 interrupt-parent = <&mpic>;
470 };
471
472 i8042@60 {
473 #size-cells = <0>;
474 #address-cells = <1>;
Kumar Gala32f960e2008-04-17 01:28:15 -0500475 reg = <0x1 0x60 0x1 0x1 0x64 0x1>;
476 interrupts = <1 3 12 3>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500477 interrupt-parent = <&i8259>;
478
479 keyboard@0 {
Kumar Gala32f960e2008-04-17 01:28:15 -0500480 reg = <0x0>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500481 compatible = "pnpPNP,303";
482 };
483
484 mouse@1 {
Kumar Gala32f960e2008-04-17 01:28:15 -0500485 reg = <0x1>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500486 compatible = "pnpPNP,f03";
487 };
488 };
489
490 rtc@70 {
491 compatible = "pnpPNP,b00";
Kumar Gala32f960e2008-04-17 01:28:15 -0500492 reg = <0x1 0x70 0x2>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500493 };
494
495 gpio@400 {
Kumar Gala32f960e2008-04-17 01:28:15 -0500496 reg = <0x1 0x400 0x80>;
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500497 };
498 };
499 };
500 };
Kumar Gala1b3c5cda2007-09-12 18:23:46 -0500501 };
Jon Loeligerd93daf82007-03-20 11:19:10 -0500502};