xref: /freebsd/sys/contrib/device-tree/src/powerpc/fsl/mpc8572ds.dtsi (revision c66ec88fed842fbaad62c30d510644ceb7bd2d71)
1*c66ec88fSEmmanuel Vadot/*
2*c66ec88fSEmmanuel Vadot * MPC8572DS Device Tree Source stub (no addresses or top-level ranges)
3*c66ec88fSEmmanuel Vadot *
4*c66ec88fSEmmanuel Vadot * Copyright 2011 Freescale Semiconductor Inc.
5*c66ec88fSEmmanuel Vadot *
6*c66ec88fSEmmanuel Vadot * Redistribution and use in source and binary forms, with or without
7*c66ec88fSEmmanuel Vadot * modification, are permitted provided that the following conditions are met:
8*c66ec88fSEmmanuel Vadot *     * Redistributions of source code must retain the above copyright
9*c66ec88fSEmmanuel Vadot *       notice, this list of conditions and the following disclaimer.
10*c66ec88fSEmmanuel Vadot *     * Redistributions in binary form must reproduce the above copyright
11*c66ec88fSEmmanuel Vadot *       notice, this list of conditions and the following disclaimer in the
12*c66ec88fSEmmanuel Vadot *       documentation and/or other materials provided with the distribution.
13*c66ec88fSEmmanuel Vadot *     * Neither the name of Freescale Semiconductor nor the
14*c66ec88fSEmmanuel Vadot *       names of its contributors may be used to endorse or promote products
15*c66ec88fSEmmanuel Vadot *       derived from this software without specific prior written permission.
16*c66ec88fSEmmanuel Vadot *
17*c66ec88fSEmmanuel Vadot *
18*c66ec88fSEmmanuel Vadot * ALTERNATIVELY, this software may be distributed under the terms of the
19*c66ec88fSEmmanuel Vadot * GNU General Public License ("GPL") as published by the Free Software
20*c66ec88fSEmmanuel Vadot * Foundation, either version 2 of that License or (at your option) any
21*c66ec88fSEmmanuel Vadot * later version.
22*c66ec88fSEmmanuel Vadot *
23*c66ec88fSEmmanuel Vadot * THIS SOFTWARE IS PROVIDED BY Freescale Semiconductor ``AS IS'' AND ANY
24*c66ec88fSEmmanuel Vadot * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
25*c66ec88fSEmmanuel Vadot * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
26*c66ec88fSEmmanuel Vadot * DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY
27*c66ec88fSEmmanuel Vadot * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
28*c66ec88fSEmmanuel Vadot * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29*c66ec88fSEmmanuel Vadot * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
30*c66ec88fSEmmanuel Vadot * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31*c66ec88fSEmmanuel Vadot * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
32*c66ec88fSEmmanuel Vadot * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33*c66ec88fSEmmanuel Vadot */
34*c66ec88fSEmmanuel Vadot
35*c66ec88fSEmmanuel Vadot&board_lbc {
36*c66ec88fSEmmanuel Vadot	nor@0,0 {
37*c66ec88fSEmmanuel Vadot		#address-cells = <1>;
38*c66ec88fSEmmanuel Vadot		#size-cells = <1>;
39*c66ec88fSEmmanuel Vadot		compatible = "cfi-flash";
40*c66ec88fSEmmanuel Vadot		reg = <0x0 0x0 0x8000000>;
41*c66ec88fSEmmanuel Vadot		bank-width = <2>;
42*c66ec88fSEmmanuel Vadot		device-width = <1>;
43*c66ec88fSEmmanuel Vadot
44*c66ec88fSEmmanuel Vadot		partition@0 {
45*c66ec88fSEmmanuel Vadot			reg = <0x0 0x03000000>;
46*c66ec88fSEmmanuel Vadot			label = "ramdisk-nor";
47*c66ec88fSEmmanuel Vadot		};
48*c66ec88fSEmmanuel Vadot
49*c66ec88fSEmmanuel Vadot		partition@3000000 {
50*c66ec88fSEmmanuel Vadot			reg = <0x03000000 0x00e00000>;
51*c66ec88fSEmmanuel Vadot			label = "diagnostic-nor";
52*c66ec88fSEmmanuel Vadot			read-only;
53*c66ec88fSEmmanuel Vadot		};
54*c66ec88fSEmmanuel Vadot
55*c66ec88fSEmmanuel Vadot		partition@3e00000 {
56*c66ec88fSEmmanuel Vadot			reg = <0x03e00000 0x00200000>;
57*c66ec88fSEmmanuel Vadot			label = "dink-nor";
58*c66ec88fSEmmanuel Vadot			read-only;
59*c66ec88fSEmmanuel Vadot		};
60*c66ec88fSEmmanuel Vadot
61*c66ec88fSEmmanuel Vadot		partition@4000000 {
62*c66ec88fSEmmanuel Vadot			reg = <0x04000000 0x00400000>;
63*c66ec88fSEmmanuel Vadot			label = "kernel-nor";
64*c66ec88fSEmmanuel Vadot		};
65*c66ec88fSEmmanuel Vadot
66*c66ec88fSEmmanuel Vadot		partition@4400000 {
67*c66ec88fSEmmanuel Vadot			reg = <0x04400000 0x03b00000>;
68*c66ec88fSEmmanuel Vadot			label = "fs-nor";
69*c66ec88fSEmmanuel Vadot		};
70*c66ec88fSEmmanuel Vadot
71*c66ec88fSEmmanuel Vadot		partition@7f00000 {
72*c66ec88fSEmmanuel Vadot			reg = <0x07f00000 0x00060000>;
73*c66ec88fSEmmanuel Vadot			label = "dtb-nor";
74*c66ec88fSEmmanuel Vadot		};
75*c66ec88fSEmmanuel Vadot
76*c66ec88fSEmmanuel Vadot		partition@7f60000 {
77*c66ec88fSEmmanuel Vadot			reg = <0x07f60000 0x00020000>;
78*c66ec88fSEmmanuel Vadot			label = "env-nor";
79*c66ec88fSEmmanuel Vadot			read-only;
80*c66ec88fSEmmanuel Vadot		};
81*c66ec88fSEmmanuel Vadot
82*c66ec88fSEmmanuel Vadot		partition@7f80000 {
83*c66ec88fSEmmanuel Vadot			reg = <0x07f80000 0x00080000>;
84*c66ec88fSEmmanuel Vadot			label = "u-boot-nor";
85*c66ec88fSEmmanuel Vadot			read-only;
86*c66ec88fSEmmanuel Vadot		};
87*c66ec88fSEmmanuel Vadot	};
88*c66ec88fSEmmanuel Vadot
89*c66ec88fSEmmanuel Vadot	nand@2,0 {
90*c66ec88fSEmmanuel Vadot		#address-cells = <1>;
91*c66ec88fSEmmanuel Vadot		#size-cells = <1>;
92*c66ec88fSEmmanuel Vadot		compatible = "fsl,mpc8572-fcm-nand",
93*c66ec88fSEmmanuel Vadot			     "fsl,elbc-fcm-nand";
94*c66ec88fSEmmanuel Vadot		reg = <0x2 0x0 0x40000>;
95*c66ec88fSEmmanuel Vadot
96*c66ec88fSEmmanuel Vadot		partition@0 {
97*c66ec88fSEmmanuel Vadot			reg = <0x0 0x02000000>;
98*c66ec88fSEmmanuel Vadot			label = "u-boot-nand";
99*c66ec88fSEmmanuel Vadot			read-only;
100*c66ec88fSEmmanuel Vadot		};
101*c66ec88fSEmmanuel Vadot
102*c66ec88fSEmmanuel Vadot		partition@2000000 {
103*c66ec88fSEmmanuel Vadot			reg = <0x02000000 0x10000000>;
104*c66ec88fSEmmanuel Vadot			label = "fs-nand";
105*c66ec88fSEmmanuel Vadot		};
106*c66ec88fSEmmanuel Vadot
107*c66ec88fSEmmanuel Vadot		partition@12000000 {
108*c66ec88fSEmmanuel Vadot			reg = <0x12000000 0x08000000>;
109*c66ec88fSEmmanuel Vadot			label = "ramdisk-nand";
110*c66ec88fSEmmanuel Vadot		};
111*c66ec88fSEmmanuel Vadot
112*c66ec88fSEmmanuel Vadot		partition@1a000000 {
113*c66ec88fSEmmanuel Vadot			reg = <0x1a000000 0x04000000>;
114*c66ec88fSEmmanuel Vadot			label = "kernel-nand";
115*c66ec88fSEmmanuel Vadot		};
116*c66ec88fSEmmanuel Vadot
117*c66ec88fSEmmanuel Vadot		partition@1e000000 {
118*c66ec88fSEmmanuel Vadot			reg = <0x1e000000 0x01000000>;
119*c66ec88fSEmmanuel Vadot			label = "dtb-nand";
120*c66ec88fSEmmanuel Vadot		};
121*c66ec88fSEmmanuel Vadot
122*c66ec88fSEmmanuel Vadot		partition@1f000000 {
123*c66ec88fSEmmanuel Vadot			reg = <0x1f000000 0x21000000>;
124*c66ec88fSEmmanuel Vadot			label = "empty-nand";
125*c66ec88fSEmmanuel Vadot		};
126*c66ec88fSEmmanuel Vadot	};
127*c66ec88fSEmmanuel Vadot
128*c66ec88fSEmmanuel Vadot	nand@4,0 {
129*c66ec88fSEmmanuel Vadot		compatible = "fsl,mpc8572-fcm-nand",
130*c66ec88fSEmmanuel Vadot			     "fsl,elbc-fcm-nand";
131*c66ec88fSEmmanuel Vadot		reg = <0x4 0x0 0x40000>;
132*c66ec88fSEmmanuel Vadot	};
133*c66ec88fSEmmanuel Vadot
134*c66ec88fSEmmanuel Vadot	nand@5,0 {
135*c66ec88fSEmmanuel Vadot		compatible = "fsl,mpc8572-fcm-nand",
136*c66ec88fSEmmanuel Vadot			     "fsl,elbc-fcm-nand";
137*c66ec88fSEmmanuel Vadot		reg = <0x5 0x0 0x40000>;
138*c66ec88fSEmmanuel Vadot	};
139*c66ec88fSEmmanuel Vadot
140*c66ec88fSEmmanuel Vadot	nand@6,0 {
141*c66ec88fSEmmanuel Vadot		compatible = "fsl,mpc8572-fcm-nand",
142*c66ec88fSEmmanuel Vadot			     "fsl,elbc-fcm-nand";
143*c66ec88fSEmmanuel Vadot		reg = <0x6 0x0 0x40000>;
144*c66ec88fSEmmanuel Vadot	};
145*c66ec88fSEmmanuel Vadot};
146*c66ec88fSEmmanuel Vadot
147*c66ec88fSEmmanuel Vadot&board_soc {
148*c66ec88fSEmmanuel Vadot	enet0: ethernet@24000 {
149*c66ec88fSEmmanuel Vadot		tbi-handle = <&tbi0>;
150*c66ec88fSEmmanuel Vadot		phy-handle = <&phy0>;
151*c66ec88fSEmmanuel Vadot		phy-connection-type = "rgmii-id";
152*c66ec88fSEmmanuel Vadot	};
153*c66ec88fSEmmanuel Vadot
154*c66ec88fSEmmanuel Vadot	mdio@24520 {
155*c66ec88fSEmmanuel Vadot		phy0: ethernet-phy@0 {
156*c66ec88fSEmmanuel Vadot			interrupts = <10 1 0 0>;
157*c66ec88fSEmmanuel Vadot			reg = <0x0>;
158*c66ec88fSEmmanuel Vadot		};
159*c66ec88fSEmmanuel Vadot		phy1: ethernet-phy@1 {
160*c66ec88fSEmmanuel Vadot			interrupts = <10 1 0 0>;
161*c66ec88fSEmmanuel Vadot			reg = <0x1>;
162*c66ec88fSEmmanuel Vadot		};
163*c66ec88fSEmmanuel Vadot		phy2: ethernet-phy@2 {
164*c66ec88fSEmmanuel Vadot			interrupts = <10 1 0 0>;
165*c66ec88fSEmmanuel Vadot			reg = <0x2>;
166*c66ec88fSEmmanuel Vadot		};
167*c66ec88fSEmmanuel Vadot		phy3: ethernet-phy@3 {
168*c66ec88fSEmmanuel Vadot			interrupts = <10 1 0 0>;
169*c66ec88fSEmmanuel Vadot			reg = <0x3>;
170*c66ec88fSEmmanuel Vadot		};
171*c66ec88fSEmmanuel Vadot
172*c66ec88fSEmmanuel Vadot		sgmii_phy0: sgmii-phy@0 {
173*c66ec88fSEmmanuel Vadot			interrupts = <6 1 0 0>;
174*c66ec88fSEmmanuel Vadot			reg = <0x1c>;
175*c66ec88fSEmmanuel Vadot		};
176*c66ec88fSEmmanuel Vadot		sgmii_phy1: sgmii-phy@1 {
177*c66ec88fSEmmanuel Vadot			interrupts = <6 1 0 0>;
178*c66ec88fSEmmanuel Vadot			reg = <0x1d>;
179*c66ec88fSEmmanuel Vadot		};
180*c66ec88fSEmmanuel Vadot		sgmii_phy2: sgmii-phy@2 {
181*c66ec88fSEmmanuel Vadot			interrupts = <7 1 0 0>;
182*c66ec88fSEmmanuel Vadot			reg = <0x1e>;
183*c66ec88fSEmmanuel Vadot		};
184*c66ec88fSEmmanuel Vadot		sgmii_phy3: sgmii-phy@3 {
185*c66ec88fSEmmanuel Vadot			interrupts = <7 1 0 0>;
186*c66ec88fSEmmanuel Vadot			reg = <0x1f>;
187*c66ec88fSEmmanuel Vadot		};
188*c66ec88fSEmmanuel Vadot
189*c66ec88fSEmmanuel Vadot		tbi0: tbi-phy@11 {
190*c66ec88fSEmmanuel Vadot			reg = <0x11>;
191*c66ec88fSEmmanuel Vadot			device_type = "tbi-phy";
192*c66ec88fSEmmanuel Vadot		};
193*c66ec88fSEmmanuel Vadot	};
194*c66ec88fSEmmanuel Vadot
195*c66ec88fSEmmanuel Vadot	ptp_clock@24e00 {
196*c66ec88fSEmmanuel Vadot		fsl,tclk-period = <5>;
197*c66ec88fSEmmanuel Vadot		fsl,tmr-prsc = <200>;
198*c66ec88fSEmmanuel Vadot		fsl,tmr-add = <0xAAAAAAAB>;
199*c66ec88fSEmmanuel Vadot		fsl,tmr-fiper1 = <0x3B9AC9FB>;
200*c66ec88fSEmmanuel Vadot		fsl,tmr-fiper2 = <0x3B9AC9FB>;
201*c66ec88fSEmmanuel Vadot		fsl,max-adj = <499999999>;
202*c66ec88fSEmmanuel Vadot	};
203*c66ec88fSEmmanuel Vadot
204*c66ec88fSEmmanuel Vadot	enet1: ethernet@25000 {
205*c66ec88fSEmmanuel Vadot		tbi-handle = <&tbi1>;
206*c66ec88fSEmmanuel Vadot		phy-handle = <&phy1>;
207*c66ec88fSEmmanuel Vadot		phy-connection-type = "rgmii-id";
208*c66ec88fSEmmanuel Vadot
209*c66ec88fSEmmanuel Vadot	};
210*c66ec88fSEmmanuel Vadot
211*c66ec88fSEmmanuel Vadot	mdio@25520 {
212*c66ec88fSEmmanuel Vadot		tbi1: tbi-phy@11 {
213*c66ec88fSEmmanuel Vadot			reg = <0x11>;
214*c66ec88fSEmmanuel Vadot			device_type = "tbi-phy";
215*c66ec88fSEmmanuel Vadot		};
216*c66ec88fSEmmanuel Vadot	};
217*c66ec88fSEmmanuel Vadot
218*c66ec88fSEmmanuel Vadot	enet2: ethernet@26000 {
219*c66ec88fSEmmanuel Vadot		tbi-handle = <&tbi2>;
220*c66ec88fSEmmanuel Vadot		phy-handle = <&phy2>;
221*c66ec88fSEmmanuel Vadot		phy-connection-type = "rgmii-id";
222*c66ec88fSEmmanuel Vadot
223*c66ec88fSEmmanuel Vadot	};
224*c66ec88fSEmmanuel Vadot	mdio@26520 {
225*c66ec88fSEmmanuel Vadot		tbi2: tbi-phy@11 {
226*c66ec88fSEmmanuel Vadot			reg = <0x11>;
227*c66ec88fSEmmanuel Vadot			device_type = "tbi-phy";
228*c66ec88fSEmmanuel Vadot		};
229*c66ec88fSEmmanuel Vadot	};
230*c66ec88fSEmmanuel Vadot
231*c66ec88fSEmmanuel Vadot	enet3: ethernet@27000 {
232*c66ec88fSEmmanuel Vadot		tbi-handle = <&tbi3>;
233*c66ec88fSEmmanuel Vadot		phy-handle = <&phy3>;
234*c66ec88fSEmmanuel Vadot		phy-connection-type = "rgmii-id";
235*c66ec88fSEmmanuel Vadot	};
236*c66ec88fSEmmanuel Vadot
237*c66ec88fSEmmanuel Vadot	mdio@27520 {
238*c66ec88fSEmmanuel Vadot		tbi3: tbi-phy@11 {
239*c66ec88fSEmmanuel Vadot			reg = <0x11>;
240*c66ec88fSEmmanuel Vadot			device_type = "tbi-phy";
241*c66ec88fSEmmanuel Vadot		};
242*c66ec88fSEmmanuel Vadot	};
243*c66ec88fSEmmanuel Vadot};
244*c66ec88fSEmmanuel Vadot
245*c66ec88fSEmmanuel Vadot&board_pci0 {
246*c66ec88fSEmmanuel Vadot	pcie@0 {
247*c66ec88fSEmmanuel Vadot		interrupt-map-mask = <0xff00 0x0 0x0 0x7>;
248*c66ec88fSEmmanuel Vadot		interrupt-map = <
249*c66ec88fSEmmanuel Vadot			/* IDSEL 0x11 func 0 - PCI slot 1 */
250*c66ec88fSEmmanuel Vadot			0x8800 0x0 0x0 0x1 &mpic 0x2 0x1 0 0
251*c66ec88fSEmmanuel Vadot			0x8800 0x0 0x0 0x2 &mpic 0x3 0x1 0 0
252*c66ec88fSEmmanuel Vadot			0x8800 0x0 0x0 0x3 &mpic 0x4 0x1 0 0
253*c66ec88fSEmmanuel Vadot			0x8800 0x0 0x0 0x4 &mpic 0x1 0x1 0 0
254*c66ec88fSEmmanuel Vadot
255*c66ec88fSEmmanuel Vadot			/* IDSEL 0x11 func 1 - PCI slot 1 */
256*c66ec88fSEmmanuel Vadot			0x8900 0x0 0x0 0x1 &mpic 0x2 0x1 0 0
257*c66ec88fSEmmanuel Vadot			0x8900 0x0 0x0 0x2 &mpic 0x3 0x1 0 0
258*c66ec88fSEmmanuel Vadot			0x8900 0x0 0x0 0x3 &mpic 0x4 0x1 0 0
259*c66ec88fSEmmanuel Vadot			0x8900 0x0 0x0 0x4 &mpic 0x1 0x1 0 0
260*c66ec88fSEmmanuel Vadot
261*c66ec88fSEmmanuel Vadot			/* IDSEL 0x11 func 2 - PCI slot 1 */
262*c66ec88fSEmmanuel Vadot			0x8a00 0x0 0x0 0x1 &mpic 0x2 0x1 0 0
263*c66ec88fSEmmanuel Vadot			0x8a00 0x0 0x0 0x2 &mpic 0x3 0x1 0 0
264*c66ec88fSEmmanuel Vadot			0x8a00 0x0 0x0 0x3 &mpic 0x4 0x1 0 0
265*c66ec88fSEmmanuel Vadot			0x8a00 0x0 0x0 0x4 &mpic 0x1 0x1 0 0
266*c66ec88fSEmmanuel Vadot
267*c66ec88fSEmmanuel Vadot			/* IDSEL 0x11 func 3 - PCI slot 1 */
268*c66ec88fSEmmanuel Vadot			0x8b00 0x0 0x0 0x1 &mpic 0x2 0x1 0 0
269*c66ec88fSEmmanuel Vadot			0x8b00 0x0 0x0 0x2 &mpic 0x3 0x1 0 0
270*c66ec88fSEmmanuel Vadot			0x8b00 0x0 0x0 0x3 &mpic 0x4 0x1 0 0
271*c66ec88fSEmmanuel Vadot			0x8b00 0x0 0x0 0x4 &mpic 0x1 0x1 0 0
272*c66ec88fSEmmanuel Vadot
273*c66ec88fSEmmanuel Vadot			/* IDSEL 0x11 func 4 - PCI slot 1 */
274*c66ec88fSEmmanuel Vadot			0x8c00 0x0 0x0 0x1 &mpic 0x2 0x1 0 0
275*c66ec88fSEmmanuel Vadot			0x8c00 0x0 0x0 0x2 &mpic 0x3 0x1 0 0
276*c66ec88fSEmmanuel Vadot			0x8c00 0x0 0x0 0x3 &mpic 0x4 0x1 0 0
277*c66ec88fSEmmanuel Vadot			0x8c00 0x0 0x0 0x4 &mpic 0x1 0x1 0 0
278*c66ec88fSEmmanuel Vadot
279*c66ec88fSEmmanuel Vadot			/* IDSEL 0x11 func 5 - PCI slot 1 */
280*c66ec88fSEmmanuel Vadot			0x8d00 0x0 0x0 0x1 &mpic 0x2 0x1 0 0
281*c66ec88fSEmmanuel Vadot			0x8d00 0x0 0x0 0x2 &mpic 0x3 0x1 0 0
282*c66ec88fSEmmanuel Vadot			0x8d00 0x0 0x0 0x3 &mpic 0x4 0x1 0 0
283*c66ec88fSEmmanuel Vadot			0x8d00 0x0 0x0 0x4 &mpic 0x1 0x1 0 0
284*c66ec88fSEmmanuel Vadot
285*c66ec88fSEmmanuel Vadot			/* IDSEL 0x11 func 6 - PCI slot 1 */
286*c66ec88fSEmmanuel Vadot			0x8e00 0x0 0x0 0x1 &mpic 0x2 0x1 0 0
287*c66ec88fSEmmanuel Vadot			0x8e00 0x0 0x0 0x2 &mpic 0x3 0x1 0 0
288*c66ec88fSEmmanuel Vadot			0x8e00 0x0 0x0 0x3 &mpic 0x4 0x1 0 0
289*c66ec88fSEmmanuel Vadot			0x8e00 0x0 0x0 0x4 &mpic 0x1 0x1 0 0
290*c66ec88fSEmmanuel Vadot
291*c66ec88fSEmmanuel Vadot			/* IDSEL 0x11 func 7 - PCI slot 1 */
292*c66ec88fSEmmanuel Vadot			0x8f00 0x0 0x0 0x1 &mpic 0x2 0x1 0 0
293*c66ec88fSEmmanuel Vadot			0x8f00 0x0 0x0 0x2 &mpic 0x3 0x1 0 0
294*c66ec88fSEmmanuel Vadot			0x8f00 0x0 0x0 0x3 &mpic 0x4 0x1 0 0
295*c66ec88fSEmmanuel Vadot			0x8f00 0x0 0x0 0x4 &mpic 0x1 0x1 0 0
296*c66ec88fSEmmanuel Vadot
297*c66ec88fSEmmanuel Vadot			/* IDSEL 0x12 func 0 - PCI slot 2 */
298*c66ec88fSEmmanuel Vadot			0x9000 0x0 0x0 0x1 &mpic 0x3 0x1 0 0
299*c66ec88fSEmmanuel Vadot			0x9000 0x0 0x0 0x2 &mpic 0x4 0x1 0 0
300*c66ec88fSEmmanuel Vadot			0x9000 0x0 0x0 0x3 &mpic 0x1 0x1 0 0
301*c66ec88fSEmmanuel Vadot			0x9000 0x0 0x0 0x4 &mpic 0x2 0x1 0 0
302*c66ec88fSEmmanuel Vadot
303*c66ec88fSEmmanuel Vadot			/* IDSEL 0x12 func 1 - PCI slot 2 */
304*c66ec88fSEmmanuel Vadot			0x9100 0x0 0x0 0x1 &mpic 0x3 0x1 0 0
305*c66ec88fSEmmanuel Vadot			0x9100 0x0 0x0 0x2 &mpic 0x4 0x1 0 0
306*c66ec88fSEmmanuel Vadot			0x9100 0x0 0x0 0x3 &mpic 0x1 0x1 0 0
307*c66ec88fSEmmanuel Vadot			0x9100 0x0 0x0 0x4 &mpic 0x2 0x1 0 0
308*c66ec88fSEmmanuel Vadot
309*c66ec88fSEmmanuel Vadot			/* IDSEL 0x12 func 2 - PCI slot 2 */
310*c66ec88fSEmmanuel Vadot			0x9200 0x0 0x0 0x1 &mpic 0x3 0x1 0 0
311*c66ec88fSEmmanuel Vadot			0x9200 0x0 0x0 0x2 &mpic 0x4 0x1 0 0
312*c66ec88fSEmmanuel Vadot			0x9200 0x0 0x0 0x3 &mpic 0x1 0x1 0 0
313*c66ec88fSEmmanuel Vadot			0x9200 0x0 0x0 0x4 &mpic 0x2 0x1 0 0
314*c66ec88fSEmmanuel Vadot
315*c66ec88fSEmmanuel Vadot			/* IDSEL 0x12 func 3 - PCI slot 2 */
316*c66ec88fSEmmanuel Vadot			0x9300 0x0 0x0 0x1 &mpic 0x3 0x1 0 0
317*c66ec88fSEmmanuel Vadot			0x9300 0x0 0x0 0x2 &mpic 0x4 0x1 0 0
318*c66ec88fSEmmanuel Vadot			0x9300 0x0 0x0 0x3 &mpic 0x1 0x1 0 0
319*c66ec88fSEmmanuel Vadot			0x9300 0x0 0x0 0x4 &mpic 0x2 0x1 0 0
320*c66ec88fSEmmanuel Vadot
321*c66ec88fSEmmanuel Vadot			/* IDSEL 0x12 func 4 - PCI slot 2 */
322*c66ec88fSEmmanuel Vadot			0x9400 0x0 0x0 0x1 &mpic 0x3 0x1 0 0
323*c66ec88fSEmmanuel Vadot			0x9400 0x0 0x0 0x2 &mpic 0x4 0x1 0 0
324*c66ec88fSEmmanuel Vadot			0x9400 0x0 0x0 0x3 &mpic 0x1 0x1 0 0
325*c66ec88fSEmmanuel Vadot			0x9400 0x0 0x0 0x4 &mpic 0x2 0x1 0 0
326*c66ec88fSEmmanuel Vadot
327*c66ec88fSEmmanuel Vadot			/* IDSEL 0x12 func 5 - PCI slot 2 */
328*c66ec88fSEmmanuel Vadot			0x9500 0x0 0x0 0x1 &mpic 0x3 0x1 0 0
329*c66ec88fSEmmanuel Vadot			0x9500 0x0 0x0 0x2 &mpic 0x4 0x1 0 0
330*c66ec88fSEmmanuel Vadot			0x9500 0x0 0x0 0x3 &mpic 0x1 0x1 0 0
331*c66ec88fSEmmanuel Vadot			0x9500 0x0 0x0 0x4 &mpic 0x2 0x1 0 0
332*c66ec88fSEmmanuel Vadot
333*c66ec88fSEmmanuel Vadot			/* IDSEL 0x12 func 6 - PCI slot 2 */
334*c66ec88fSEmmanuel Vadot			0x9600 0x0 0x0 0x1 &mpic 0x3 0x1 0 0
335*c66ec88fSEmmanuel Vadot			0x9600 0x0 0x0 0x2 &mpic 0x4 0x1 0 0
336*c66ec88fSEmmanuel Vadot			0x9600 0x0 0x0 0x3 &mpic 0x1 0x1 0 0
337*c66ec88fSEmmanuel Vadot			0x9600 0x0 0x0 0x4 &mpic 0x2 0x1 0 0
338*c66ec88fSEmmanuel Vadot
339*c66ec88fSEmmanuel Vadot			/* IDSEL 0x12 func 7 - PCI slot 2 */
340*c66ec88fSEmmanuel Vadot			0x9700 0x0 0x0 0x1 &mpic 0x3 0x1 0 0
341*c66ec88fSEmmanuel Vadot			0x9700 0x0 0x0 0x2 &mpic 0x4 0x1 0 0
342*c66ec88fSEmmanuel Vadot			0x9700 0x0 0x0 0x3 &mpic 0x1 0x1 0 0
343*c66ec88fSEmmanuel Vadot			0x9700 0x0 0x0 0x4 &mpic 0x2 0x1 0 0
344*c66ec88fSEmmanuel Vadot
345*c66ec88fSEmmanuel Vadot			// IDSEL 0x1c  USB
346*c66ec88fSEmmanuel Vadot			0xe000 0x0 0x0 0x1 &i8259 0xc 0x2
347*c66ec88fSEmmanuel Vadot			0xe100 0x0 0x0 0x2 &i8259 0x9 0x2
348*c66ec88fSEmmanuel Vadot			0xe200 0x0 0x0 0x3 &i8259 0xa 0x2
349*c66ec88fSEmmanuel Vadot			0xe300 0x0 0x0 0x4 &i8259 0xb 0x2
350*c66ec88fSEmmanuel Vadot
351*c66ec88fSEmmanuel Vadot			// IDSEL 0x1d  Audio
352*c66ec88fSEmmanuel Vadot			0xe800 0x0 0x0 0x1 &i8259 0x6 0x2
353*c66ec88fSEmmanuel Vadot
354*c66ec88fSEmmanuel Vadot			// IDSEL 0x1e Legacy
355*c66ec88fSEmmanuel Vadot			0xf000 0x0 0x0 0x1 &i8259 0x7 0x2
356*c66ec88fSEmmanuel Vadot			0xf100 0x0 0x0 0x1 &i8259 0x7 0x2
357*c66ec88fSEmmanuel Vadot
358*c66ec88fSEmmanuel Vadot			// IDSEL 0x1f IDE/SATA
359*c66ec88fSEmmanuel Vadot			0xf800 0x0 0x0 0x1 &i8259 0xe 0x2
360*c66ec88fSEmmanuel Vadot			0xf900 0x0 0x0 0x1 &i8259 0x5 0x2
361*c66ec88fSEmmanuel Vadot			>;
362*c66ec88fSEmmanuel Vadot
363*c66ec88fSEmmanuel Vadot
364*c66ec88fSEmmanuel Vadot		uli1575@0 {
365*c66ec88fSEmmanuel Vadot			reg = <0x0 0x0 0x0 0x0 0x0>;
366*c66ec88fSEmmanuel Vadot			#size-cells = <2>;
367*c66ec88fSEmmanuel Vadot			#address-cells = <3>;
368*c66ec88fSEmmanuel Vadot			ranges = <0x2000000 0x0 0x80000000
369*c66ec88fSEmmanuel Vadot				  0x2000000 0x0 0x80000000
370*c66ec88fSEmmanuel Vadot				  0x0 0x20000000
371*c66ec88fSEmmanuel Vadot
372*c66ec88fSEmmanuel Vadot				  0x1000000 0x0 0x0
373*c66ec88fSEmmanuel Vadot				  0x1000000 0x0 0x0
374*c66ec88fSEmmanuel Vadot				  0x0 0x10000>;
375*c66ec88fSEmmanuel Vadot			isa@1e {
376*c66ec88fSEmmanuel Vadot				device_type = "isa";
377*c66ec88fSEmmanuel Vadot				#interrupt-cells = <2>;
378*c66ec88fSEmmanuel Vadot				#size-cells = <1>;
379*c66ec88fSEmmanuel Vadot				#address-cells = <2>;
380*c66ec88fSEmmanuel Vadot				reg = <0xf000 0x0 0x0 0x0 0x0>;
381*c66ec88fSEmmanuel Vadot				ranges = <0x1 0x0 0x1000000 0x0 0x0
382*c66ec88fSEmmanuel Vadot					  0x1000>;
383*c66ec88fSEmmanuel Vadot				interrupt-parent = <&i8259>;
384*c66ec88fSEmmanuel Vadot
385*c66ec88fSEmmanuel Vadot				i8259: interrupt-controller@20 {
386*c66ec88fSEmmanuel Vadot					reg = <0x1 0x20 0x2
387*c66ec88fSEmmanuel Vadot					       0x1 0xa0 0x2
388*c66ec88fSEmmanuel Vadot					       0x1 0x4d0 0x2>;
389*c66ec88fSEmmanuel Vadot					interrupt-controller;
390*c66ec88fSEmmanuel Vadot					device_type = "interrupt-controller";
391*c66ec88fSEmmanuel Vadot					#address-cells = <0>;
392*c66ec88fSEmmanuel Vadot					#interrupt-cells = <2>;
393*c66ec88fSEmmanuel Vadot					compatible = "chrp,iic";
394*c66ec88fSEmmanuel Vadot					interrupts = <9 2 0 0>;
395*c66ec88fSEmmanuel Vadot					interrupt-parent = <&mpic>;
396*c66ec88fSEmmanuel Vadot				};
397*c66ec88fSEmmanuel Vadot
398*c66ec88fSEmmanuel Vadot				i8042@60 {
399*c66ec88fSEmmanuel Vadot					#size-cells = <0>;
400*c66ec88fSEmmanuel Vadot					#address-cells = <1>;
401*c66ec88fSEmmanuel Vadot					reg = <0x1 0x60 0x1 0x1 0x64 0x1>;
402*c66ec88fSEmmanuel Vadot					interrupts = <1 3 12 3>;
403*c66ec88fSEmmanuel Vadot					interrupt-parent =
404*c66ec88fSEmmanuel Vadot						<&i8259>;
405*c66ec88fSEmmanuel Vadot
406*c66ec88fSEmmanuel Vadot					keyboard@0 {
407*c66ec88fSEmmanuel Vadot						reg = <0x0>;
408*c66ec88fSEmmanuel Vadot						compatible = "pnpPNP,303";
409*c66ec88fSEmmanuel Vadot					};
410*c66ec88fSEmmanuel Vadot
411*c66ec88fSEmmanuel Vadot					mouse@1 {
412*c66ec88fSEmmanuel Vadot						reg = <0x1>;
413*c66ec88fSEmmanuel Vadot						compatible = "pnpPNP,f03";
414*c66ec88fSEmmanuel Vadot					};
415*c66ec88fSEmmanuel Vadot				};
416*c66ec88fSEmmanuel Vadot
417*c66ec88fSEmmanuel Vadot				rtc@70 {
418*c66ec88fSEmmanuel Vadot					compatible = "pnpPNP,b00";
419*c66ec88fSEmmanuel Vadot					reg = <0x1 0x70 0x2>;
420*c66ec88fSEmmanuel Vadot				};
421*c66ec88fSEmmanuel Vadot
422*c66ec88fSEmmanuel Vadot				gpio@400 {
423*c66ec88fSEmmanuel Vadot					reg = <0x1 0x400 0x80>;
424*c66ec88fSEmmanuel Vadot				};
425*c66ec88fSEmmanuel Vadot			};
426*c66ec88fSEmmanuel Vadot		};
427*c66ec88fSEmmanuel Vadot	};
428*c66ec88fSEmmanuel Vadot};
429