xref: /freebsd-src/sys/contrib/device-tree/src/powerpc/fsl/mpc8641_hpcn_36b.dts (revision c66ec88fed842fbaad62c30d510644ceb7bd2d71)
1*c66ec88fSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0-or-later
2*c66ec88fSEmmanuel Vadot/*
3*c66ec88fSEmmanuel Vadot * MPC8641 HPCN Device Tree Source
4*c66ec88fSEmmanuel Vadot *
5*c66ec88fSEmmanuel Vadot * Copyright 2008-2009 Freescale Semiconductor Inc.
6*c66ec88fSEmmanuel Vadot */
7*c66ec88fSEmmanuel Vadot
8*c66ec88fSEmmanuel Vadot/include/ "mpc8641si-pre.dtsi"
9*c66ec88fSEmmanuel Vadot
10*c66ec88fSEmmanuel Vadot/ {
11*c66ec88fSEmmanuel Vadot	model = "MPC8641HPCN";
12*c66ec88fSEmmanuel Vadot	compatible = "fsl,mpc8641hpcn";
13*c66ec88fSEmmanuel Vadot	#address-cells = <2>;
14*c66ec88fSEmmanuel Vadot	#size-cells = <2>;
15*c66ec88fSEmmanuel Vadot
16*c66ec88fSEmmanuel Vadot	memory {
17*c66ec88fSEmmanuel Vadot		device_type = "memory";
18*c66ec88fSEmmanuel Vadot		reg = <0x0 0x00000000 0x0 0x40000000>;	// 1G at 0x0
19*c66ec88fSEmmanuel Vadot	};
20*c66ec88fSEmmanuel Vadot
21*c66ec88fSEmmanuel Vadot	lbc: localbus@fffe05000 {
22*c66ec88fSEmmanuel Vadot		reg = <0x0f 0xffe05000 0x0 0x1000>;
23*c66ec88fSEmmanuel Vadot
24*c66ec88fSEmmanuel Vadot		ranges = <0 0 0xf 0xef800000 0x00800000
25*c66ec88fSEmmanuel Vadot			  2 0 0xf 0xffdf8000 0x00008000
26*c66ec88fSEmmanuel Vadot			  3 0 0xf 0xffdf0000 0x00008000>;
27*c66ec88fSEmmanuel Vadot
28*c66ec88fSEmmanuel Vadot		flash@0,0 {
29*c66ec88fSEmmanuel Vadot			compatible = "cfi-flash";
30*c66ec88fSEmmanuel Vadot			reg = <0 0 0x00800000>;
31*c66ec88fSEmmanuel Vadot			bank-width = <2>;
32*c66ec88fSEmmanuel Vadot			device-width = <2>;
33*c66ec88fSEmmanuel Vadot			#address-cells = <1>;
34*c66ec88fSEmmanuel Vadot			#size-cells = <1>;
35*c66ec88fSEmmanuel Vadot			partition@0 {
36*c66ec88fSEmmanuel Vadot				label = "kernel";
37*c66ec88fSEmmanuel Vadot				reg = <0x00000000 0x00300000>;
38*c66ec88fSEmmanuel Vadot			};
39*c66ec88fSEmmanuel Vadot			partition@300000 {
40*c66ec88fSEmmanuel Vadot				label = "firmware b";
41*c66ec88fSEmmanuel Vadot				reg = <0x00300000 0x00100000>;
42*c66ec88fSEmmanuel Vadot				read-only;
43*c66ec88fSEmmanuel Vadot			};
44*c66ec88fSEmmanuel Vadot			partition@400000 {
45*c66ec88fSEmmanuel Vadot				label = "fs";
46*c66ec88fSEmmanuel Vadot				reg = <0x00400000 0x00300000>;
47*c66ec88fSEmmanuel Vadot			};
48*c66ec88fSEmmanuel Vadot			partition@700000 {
49*c66ec88fSEmmanuel Vadot				label = "firmware a";
50*c66ec88fSEmmanuel Vadot				reg = <0x00700000 0x00100000>;
51*c66ec88fSEmmanuel Vadot				read-only;
52*c66ec88fSEmmanuel Vadot			};
53*c66ec88fSEmmanuel Vadot		};
54*c66ec88fSEmmanuel Vadot	};
55*c66ec88fSEmmanuel Vadot
56*c66ec88fSEmmanuel Vadot	soc: soc8641@fffe00000 {
57*c66ec88fSEmmanuel Vadot		ranges = <0x00000000 0x0f 0xffe00000 0x00100000>;
58*c66ec88fSEmmanuel Vadot
59*c66ec88fSEmmanuel Vadot		enet0: ethernet@24000 {
60*c66ec88fSEmmanuel Vadot			tbi-handle = <&tbi0>;
61*c66ec88fSEmmanuel Vadot			phy-handle = <&phy0>;
62*c66ec88fSEmmanuel Vadot			phy-connection-type = "rgmii-id";
63*c66ec88fSEmmanuel Vadot		};
64*c66ec88fSEmmanuel Vadot
65*c66ec88fSEmmanuel Vadot		mdio@24520 {
66*c66ec88fSEmmanuel Vadot			phy0: ethernet-phy@0 {
67*c66ec88fSEmmanuel Vadot				interrupts = <10 1 0 0>;
68*c66ec88fSEmmanuel Vadot				reg = <0>;
69*c66ec88fSEmmanuel Vadot			};
70*c66ec88fSEmmanuel Vadot			phy1: ethernet-phy@1 {
71*c66ec88fSEmmanuel Vadot				interrupts = <10 1 0 0>;
72*c66ec88fSEmmanuel Vadot				reg = <1>;
73*c66ec88fSEmmanuel Vadot			};
74*c66ec88fSEmmanuel Vadot			phy2: ethernet-phy@2 {
75*c66ec88fSEmmanuel Vadot				interrupts = <10 1 0 0>;
76*c66ec88fSEmmanuel Vadot				reg = <2>;
77*c66ec88fSEmmanuel Vadot			};
78*c66ec88fSEmmanuel Vadot			phy3: ethernet-phy@3 {
79*c66ec88fSEmmanuel Vadot				interrupts = <10 1 0 0>;
80*c66ec88fSEmmanuel Vadot				reg = <3>;
81*c66ec88fSEmmanuel Vadot			};
82*c66ec88fSEmmanuel Vadot			tbi0: tbi-phy@11 {
83*c66ec88fSEmmanuel Vadot				reg = <0x11>;
84*c66ec88fSEmmanuel Vadot				device_type = "tbi-phy";
85*c66ec88fSEmmanuel Vadot			};
86*c66ec88fSEmmanuel Vadot		};
87*c66ec88fSEmmanuel Vadot
88*c66ec88fSEmmanuel Vadot		enet1: ethernet@25000 {
89*c66ec88fSEmmanuel Vadot			tbi-handle = <&tbi1>;
90*c66ec88fSEmmanuel Vadot			phy-handle = <&phy1>;
91*c66ec88fSEmmanuel Vadot			phy-connection-type = "rgmii-id";
92*c66ec88fSEmmanuel Vadot		};
93*c66ec88fSEmmanuel Vadot
94*c66ec88fSEmmanuel Vadot		mdio@25520 {
95*c66ec88fSEmmanuel Vadot			tbi1: tbi-phy@11 {
96*c66ec88fSEmmanuel Vadot				reg = <0x11>;
97*c66ec88fSEmmanuel Vadot				device_type = "tbi-phy";
98*c66ec88fSEmmanuel Vadot			};
99*c66ec88fSEmmanuel Vadot		};
100*c66ec88fSEmmanuel Vadot
101*c66ec88fSEmmanuel Vadot		enet2: ethernet@26000 {
102*c66ec88fSEmmanuel Vadot			tbi-handle = <&tbi2>;
103*c66ec88fSEmmanuel Vadot			phy-handle = <&phy2>;
104*c66ec88fSEmmanuel Vadot			phy-connection-type = "rgmii-id";
105*c66ec88fSEmmanuel Vadot		};
106*c66ec88fSEmmanuel Vadot
107*c66ec88fSEmmanuel Vadot		mdio@26520 {
108*c66ec88fSEmmanuel Vadot			tbi2: tbi-phy@11 {
109*c66ec88fSEmmanuel Vadot				reg = <0x11>;
110*c66ec88fSEmmanuel Vadot				device_type = "tbi-phy";
111*c66ec88fSEmmanuel Vadot			};
112*c66ec88fSEmmanuel Vadot		};
113*c66ec88fSEmmanuel Vadot
114*c66ec88fSEmmanuel Vadot		enet3: ethernet@27000 {
115*c66ec88fSEmmanuel Vadot			tbi-handle = <&tbi3>;
116*c66ec88fSEmmanuel Vadot			phy-handle = <&phy3>;
117*c66ec88fSEmmanuel Vadot			phy-connection-type = "rgmii-id";
118*c66ec88fSEmmanuel Vadot		};
119*c66ec88fSEmmanuel Vadot
120*c66ec88fSEmmanuel Vadot		mdio@27520 {
121*c66ec88fSEmmanuel Vadot			tbi3: tbi-phy@11 {
122*c66ec88fSEmmanuel Vadot				reg = <0x11>;
123*c66ec88fSEmmanuel Vadot				device_type = "tbi-phy";
124*c66ec88fSEmmanuel Vadot			};
125*c66ec88fSEmmanuel Vadot		};
126*c66ec88fSEmmanuel Vadot	};
127*c66ec88fSEmmanuel Vadot
128*c66ec88fSEmmanuel Vadot	pci0: pcie@fffe08000 {
129*c66ec88fSEmmanuel Vadot		reg = <0x0f 0xffe08000 0x0 0x1000>;
130*c66ec88fSEmmanuel Vadot		ranges = <0x02000000 0x0 0xe0000000 0x0c 0x00000000 0x0 0x20000000
131*c66ec88fSEmmanuel Vadot			  0x01000000 0x0 0x00000000 0x0f 0xffc00000 0x0 0x00010000>;
132*c66ec88fSEmmanuel Vadot		interrupt-map-mask = <0xff00 0 0 7>;
133*c66ec88fSEmmanuel Vadot		interrupt-map = <
134*c66ec88fSEmmanuel Vadot			/* IDSEL 0x11 func 0 - PCI slot 1 */
135*c66ec88fSEmmanuel Vadot			0x8800 0 0 1 &mpic 2 1 0 0
136*c66ec88fSEmmanuel Vadot			0x8800 0 0 2 &mpic 3 1 0 0
137*c66ec88fSEmmanuel Vadot			0x8800 0 0 3 &mpic 4 1 0 0
138*c66ec88fSEmmanuel Vadot			0x8800 0 0 4 &mpic 1 1 0 0
139*c66ec88fSEmmanuel Vadot
140*c66ec88fSEmmanuel Vadot			/* IDSEL 0x11 func 1 - PCI slot 1 */
141*c66ec88fSEmmanuel Vadot			0x8900 0 0 1 &mpic 2 1 0 0
142*c66ec88fSEmmanuel Vadot			0x8900 0 0 2 &mpic 3 1 0 0
143*c66ec88fSEmmanuel Vadot			0x8900 0 0 3 &mpic 4 1 0 0
144*c66ec88fSEmmanuel Vadot			0x8900 0 0 4 &mpic 1 1 0 0
145*c66ec88fSEmmanuel Vadot
146*c66ec88fSEmmanuel Vadot			/* IDSEL 0x11 func 2 - PCI slot 1 */
147*c66ec88fSEmmanuel Vadot			0x8a00 0 0 1 &mpic 2 1 0 0
148*c66ec88fSEmmanuel Vadot			0x8a00 0 0 2 &mpic 3 1 0 0
149*c66ec88fSEmmanuel Vadot			0x8a00 0 0 3 &mpic 4 1 0 0
150*c66ec88fSEmmanuel Vadot			0x8a00 0 0 4 &mpic 1 1 0 0
151*c66ec88fSEmmanuel Vadot
152*c66ec88fSEmmanuel Vadot			/* IDSEL 0x11 func 3 - PCI slot 1 */
153*c66ec88fSEmmanuel Vadot			0x8b00 0 0 1 &mpic 2 1 0 0
154*c66ec88fSEmmanuel Vadot			0x8b00 0 0 2 &mpic 3 1 0 0
155*c66ec88fSEmmanuel Vadot			0x8b00 0 0 3 &mpic 4 1 0 0
156*c66ec88fSEmmanuel Vadot			0x8b00 0 0 4 &mpic 1 1 0 0
157*c66ec88fSEmmanuel Vadot
158*c66ec88fSEmmanuel Vadot			/* IDSEL 0x11 func 4 - PCI slot 1 */
159*c66ec88fSEmmanuel Vadot			0x8c00 0 0 1 &mpic 2 1 0 0
160*c66ec88fSEmmanuel Vadot			0x8c00 0 0 2 &mpic 3 1 0 0
161*c66ec88fSEmmanuel Vadot			0x8c00 0 0 3 &mpic 4 1 0 0
162*c66ec88fSEmmanuel Vadot			0x8c00 0 0 4 &mpic 1 1 0 0
163*c66ec88fSEmmanuel Vadot
164*c66ec88fSEmmanuel Vadot			/* IDSEL 0x11 func 5 - PCI slot 1 */
165*c66ec88fSEmmanuel Vadot			0x8d00 0 0 1 &mpic 2 1 0 0
166*c66ec88fSEmmanuel Vadot			0x8d00 0 0 2 &mpic 3 1 0 0
167*c66ec88fSEmmanuel Vadot			0x8d00 0 0 3 &mpic 4 1 0 0
168*c66ec88fSEmmanuel Vadot			0x8d00 0 0 4 &mpic 1 1 0 0
169*c66ec88fSEmmanuel Vadot
170*c66ec88fSEmmanuel Vadot			/* IDSEL 0x11 func 6 - PCI slot 1 */
171*c66ec88fSEmmanuel Vadot			0x8e00 0 0 1 &mpic 2 1 0 0
172*c66ec88fSEmmanuel Vadot			0x8e00 0 0 2 &mpic 3 1 0 0
173*c66ec88fSEmmanuel Vadot			0x8e00 0 0 3 &mpic 4 1 0 0
174*c66ec88fSEmmanuel Vadot			0x8e00 0 0 4 &mpic 1 1 0 0
175*c66ec88fSEmmanuel Vadot
176*c66ec88fSEmmanuel Vadot			/* IDSEL 0x11 func 7 - PCI slot 1 */
177*c66ec88fSEmmanuel Vadot			0x8f00 0 0 1 &mpic 2 1 0 0
178*c66ec88fSEmmanuel Vadot			0x8f00 0 0 2 &mpic 3 1 0 0
179*c66ec88fSEmmanuel Vadot			0x8f00 0 0 3 &mpic 4 1 0 0
180*c66ec88fSEmmanuel Vadot			0x8f00 0 0 4 &mpic 1 1 0 0
181*c66ec88fSEmmanuel Vadot
182*c66ec88fSEmmanuel Vadot			/* IDSEL 0x12 func 0 - PCI slot 2 */
183*c66ec88fSEmmanuel Vadot			0x9000 0 0 1 &mpic 3 1 0 0
184*c66ec88fSEmmanuel Vadot			0x9000 0 0 2 &mpic 4 1 0 0
185*c66ec88fSEmmanuel Vadot			0x9000 0 0 3 &mpic 1 1 0 0
186*c66ec88fSEmmanuel Vadot			0x9000 0 0 4 &mpic 2 1 0 0
187*c66ec88fSEmmanuel Vadot
188*c66ec88fSEmmanuel Vadot			/* IDSEL 0x12 func 1 - PCI slot 2 */
189*c66ec88fSEmmanuel Vadot			0x9100 0 0 1 &mpic 3 1 0 0
190*c66ec88fSEmmanuel Vadot			0x9100 0 0 2 &mpic 4 1 0 0
191*c66ec88fSEmmanuel Vadot			0x9100 0 0 3 &mpic 1 1 0 0
192*c66ec88fSEmmanuel Vadot			0x9100 0 0 4 &mpic 2 1 0 0
193*c66ec88fSEmmanuel Vadot
194*c66ec88fSEmmanuel Vadot			/* IDSEL 0x12 func 2 - PCI slot 2 */
195*c66ec88fSEmmanuel Vadot			0x9200 0 0 1 &mpic 3 1 0 0
196*c66ec88fSEmmanuel Vadot			0x9200 0 0 2 &mpic 4 1 0 0
197*c66ec88fSEmmanuel Vadot			0x9200 0 0 3 &mpic 1 1 0 0
198*c66ec88fSEmmanuel Vadot			0x9200 0 0 4 &mpic 2 1 0 0
199*c66ec88fSEmmanuel Vadot
200*c66ec88fSEmmanuel Vadot			/* IDSEL 0x12 func 3 - PCI slot 2 */
201*c66ec88fSEmmanuel Vadot			0x9300 0 0 1 &mpic 3 1 0 0
202*c66ec88fSEmmanuel Vadot			0x9300 0 0 2 &mpic 4 1 0 0
203*c66ec88fSEmmanuel Vadot			0x9300 0 0 3 &mpic 1 1 0 0
204*c66ec88fSEmmanuel Vadot			0x9300 0 0 4 &mpic 2 1 0 0
205*c66ec88fSEmmanuel Vadot
206*c66ec88fSEmmanuel Vadot			/* IDSEL 0x12 func 4 - PCI slot 2 */
207*c66ec88fSEmmanuel Vadot			0x9400 0 0 1 &mpic 3 1 0 0
208*c66ec88fSEmmanuel Vadot			0x9400 0 0 2 &mpic 4 1 0 0
209*c66ec88fSEmmanuel Vadot			0x9400 0 0 3 &mpic 1 1 0 0
210*c66ec88fSEmmanuel Vadot			0x9400 0 0 4 &mpic 2 1 0 0
211*c66ec88fSEmmanuel Vadot
212*c66ec88fSEmmanuel Vadot			/* IDSEL 0x12 func 5 - PCI slot 2 */
213*c66ec88fSEmmanuel Vadot			0x9500 0 0 1 &mpic 3 1 0 0
214*c66ec88fSEmmanuel Vadot			0x9500 0 0 2 &mpic 4 1 0 0
215*c66ec88fSEmmanuel Vadot			0x9500 0 0 3 &mpic 1 1 0 0
216*c66ec88fSEmmanuel Vadot			0x9500 0 0 4 &mpic 2 1 0 0
217*c66ec88fSEmmanuel Vadot
218*c66ec88fSEmmanuel Vadot			/* IDSEL 0x12 func 6 - PCI slot 2 */
219*c66ec88fSEmmanuel Vadot			0x9600 0 0 1 &mpic 3 1 0 0
220*c66ec88fSEmmanuel Vadot			0x9600 0 0 2 &mpic 4 1 0 0
221*c66ec88fSEmmanuel Vadot			0x9600 0 0 3 &mpic 1 1 0 0
222*c66ec88fSEmmanuel Vadot			0x9600 0 0 4 &mpic 2 1 0 0
223*c66ec88fSEmmanuel Vadot
224*c66ec88fSEmmanuel Vadot			/* IDSEL 0x12 func 7 - PCI slot 2 */
225*c66ec88fSEmmanuel Vadot			0x9700 0 0 1 &mpic 3 1 0 0
226*c66ec88fSEmmanuel Vadot			0x9700 0 0 2 &mpic 4 1 0 0
227*c66ec88fSEmmanuel Vadot			0x9700 0 0 3 &mpic 1 1 0 0
228*c66ec88fSEmmanuel Vadot			0x9700 0 0 4 &mpic 2 1 0 0
229*c66ec88fSEmmanuel Vadot
230*c66ec88fSEmmanuel Vadot			// IDSEL 0x1c  USB
231*c66ec88fSEmmanuel Vadot			0xe000 0 0 1 &i8259 12 2
232*c66ec88fSEmmanuel Vadot			0xe100 0 0 2 &i8259 9 2
233*c66ec88fSEmmanuel Vadot			0xe200 0 0 3 &i8259 10 2
234*c66ec88fSEmmanuel Vadot			0xe300 0 0 4 &i8259 11 2
235*c66ec88fSEmmanuel Vadot
236*c66ec88fSEmmanuel Vadot			// IDSEL 0x1d  Audio
237*c66ec88fSEmmanuel Vadot			0xe800 0 0 1 &i8259 6 2
238*c66ec88fSEmmanuel Vadot
239*c66ec88fSEmmanuel Vadot			// IDSEL 0x1e Legacy
240*c66ec88fSEmmanuel Vadot			0xf000 0 0 1 &i8259 7 2
241*c66ec88fSEmmanuel Vadot			0xf100 0 0 1 &i8259 7 2
242*c66ec88fSEmmanuel Vadot
243*c66ec88fSEmmanuel Vadot			// IDSEL 0x1f IDE/SATA
244*c66ec88fSEmmanuel Vadot			0xf800 0 0 1 &i8259 14 2
245*c66ec88fSEmmanuel Vadot			0xf900 0 0 1 &i8259 5 2
246*c66ec88fSEmmanuel Vadot			>;
247*c66ec88fSEmmanuel Vadot
248*c66ec88fSEmmanuel Vadot		pcie@0 {
249*c66ec88fSEmmanuel Vadot			ranges = <0x02000000 0x0 0xe0000000
250*c66ec88fSEmmanuel Vadot				  0x02000000 0x0 0xe0000000
251*c66ec88fSEmmanuel Vadot				  0x0 0x20000000
252*c66ec88fSEmmanuel Vadot
253*c66ec88fSEmmanuel Vadot				  0x01000000 0x0 0x00000000
254*c66ec88fSEmmanuel Vadot				  0x01000000 0x0 0x00000000
255*c66ec88fSEmmanuel Vadot				  0x0 0x00010000>;
256*c66ec88fSEmmanuel Vadot			uli1575@0 {
257*c66ec88fSEmmanuel Vadot				reg = <0 0 0 0 0>;
258*c66ec88fSEmmanuel Vadot				#size-cells = <2>;
259*c66ec88fSEmmanuel Vadot				#address-cells = <3>;
260*c66ec88fSEmmanuel Vadot				ranges = <0x02000000 0x0 0xe0000000
261*c66ec88fSEmmanuel Vadot					  0x02000000 0x0 0xe0000000
262*c66ec88fSEmmanuel Vadot					  0x0 0x20000000
263*c66ec88fSEmmanuel Vadot					  0x01000000 0x0 0x00000000
264*c66ec88fSEmmanuel Vadot					  0x01000000 0x0 0x00000000
265*c66ec88fSEmmanuel Vadot					  0x0 0x00010000>;
266*c66ec88fSEmmanuel Vadot				isa@1e {
267*c66ec88fSEmmanuel Vadot					device_type = "isa";
268*c66ec88fSEmmanuel Vadot					#size-cells = <1>;
269*c66ec88fSEmmanuel Vadot					#address-cells = <2>;
270*c66ec88fSEmmanuel Vadot					reg = <0xf000 0 0 0 0>;
271*c66ec88fSEmmanuel Vadot					ranges = <1 0 0x01000000 0 0
272*c66ec88fSEmmanuel Vadot						  0x00001000>;
273*c66ec88fSEmmanuel Vadot					interrupt-parent = <&i8259>;
274*c66ec88fSEmmanuel Vadot
275*c66ec88fSEmmanuel Vadot					i8259: interrupt-controller@20 {
276*c66ec88fSEmmanuel Vadot						reg = <1 0x20 2
277*c66ec88fSEmmanuel Vadot						       1 0xa0 2
278*c66ec88fSEmmanuel Vadot						       1 0x4d0 2>;
279*c66ec88fSEmmanuel Vadot						interrupt-controller;
280*c66ec88fSEmmanuel Vadot						device_type = "interrupt-controller";
281*c66ec88fSEmmanuel Vadot						#address-cells = <0>;
282*c66ec88fSEmmanuel Vadot						#interrupt-cells = <2>;
283*c66ec88fSEmmanuel Vadot						compatible = "chrp,iic";
284*c66ec88fSEmmanuel Vadot						interrupts = <9 2 0 0>;
285*c66ec88fSEmmanuel Vadot					};
286*c66ec88fSEmmanuel Vadot
287*c66ec88fSEmmanuel Vadot					i8042@60 {
288*c66ec88fSEmmanuel Vadot						#size-cells = <0>;
289*c66ec88fSEmmanuel Vadot						#address-cells = <1>;
290*c66ec88fSEmmanuel Vadot						reg = <1 0x60 1 1 0x64 1>;
291*c66ec88fSEmmanuel Vadot						interrupts = <1 3 12 3>;
292*c66ec88fSEmmanuel Vadot						interrupt-parent = <&i8259>;
293*c66ec88fSEmmanuel Vadot
294*c66ec88fSEmmanuel Vadot						keyboard@0 {
295*c66ec88fSEmmanuel Vadot							reg = <0>;
296*c66ec88fSEmmanuel Vadot							compatible = "pnpPNP,303";
297*c66ec88fSEmmanuel Vadot						};
298*c66ec88fSEmmanuel Vadot
299*c66ec88fSEmmanuel Vadot						mouse@1 {
300*c66ec88fSEmmanuel Vadot							reg = <1>;
301*c66ec88fSEmmanuel Vadot							compatible = "pnpPNP,f03";
302*c66ec88fSEmmanuel Vadot						};
303*c66ec88fSEmmanuel Vadot					};
304*c66ec88fSEmmanuel Vadot
305*c66ec88fSEmmanuel Vadot					rtc@70 {
306*c66ec88fSEmmanuel Vadot						compatible =
307*c66ec88fSEmmanuel Vadot							"pnpPNP,b00";
308*c66ec88fSEmmanuel Vadot						reg = <1 0x70 2>;
309*c66ec88fSEmmanuel Vadot					};
310*c66ec88fSEmmanuel Vadot
311*c66ec88fSEmmanuel Vadot					gpio@400 {
312*c66ec88fSEmmanuel Vadot						reg = <1 0x400 0x80>;
313*c66ec88fSEmmanuel Vadot					};
314*c66ec88fSEmmanuel Vadot				};
315*c66ec88fSEmmanuel Vadot			};
316*c66ec88fSEmmanuel Vadot		};
317*c66ec88fSEmmanuel Vadot
318*c66ec88fSEmmanuel Vadot	};
319*c66ec88fSEmmanuel Vadot
320*c66ec88fSEmmanuel Vadot	pci1: pcie@fffe09000 {
321*c66ec88fSEmmanuel Vadot		reg = <0x0f 0xffe09000 0x0 0x1000>;
322*c66ec88fSEmmanuel Vadot		ranges = <0x02000000 0x0 0xe0000000 0x0c 0x20000000 0x0 0x20000000
323*c66ec88fSEmmanuel Vadot			  0x01000000 0x0 0x00000000 0x0f 0xffc10000 0x0 0x00010000>;
324*c66ec88fSEmmanuel Vadot
325*c66ec88fSEmmanuel Vadot		pcie@0 {
326*c66ec88fSEmmanuel Vadot			ranges = <0x02000000 0x0 0xe0000000
327*c66ec88fSEmmanuel Vadot				  0x02000000 0x0 0xe0000000
328*c66ec88fSEmmanuel Vadot				  0x0 0x20000000
329*c66ec88fSEmmanuel Vadot
330*c66ec88fSEmmanuel Vadot				  0x01000000 0x0 0x00000000
331*c66ec88fSEmmanuel Vadot				  0x01000000 0x0 0x00000000
332*c66ec88fSEmmanuel Vadot				  0x0 0x00010000>;
333*c66ec88fSEmmanuel Vadot		};
334*c66ec88fSEmmanuel Vadot	};
335*c66ec88fSEmmanuel Vadot};
336*c66ec88fSEmmanuel Vadot
337*c66ec88fSEmmanuel Vadot/include/ "mpc8641si-post.dtsi"
338