xref: /freebsd-src/sys/contrib/device-tree/src/powerpc/fsl/mpc8540ads.dts (revision 7ef62cebc2f965b0f640263e179276928885e33d)
1c66ec88fSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0-or-later
2c66ec88fSEmmanuel Vadot/*
3c66ec88fSEmmanuel Vadot * MPC8540 ADS Device Tree Source
4c66ec88fSEmmanuel Vadot *
5c66ec88fSEmmanuel Vadot * Copyright 2006, 2008 Freescale Semiconductor Inc.
6c66ec88fSEmmanuel Vadot */
7c66ec88fSEmmanuel Vadot
8c66ec88fSEmmanuel Vadot/dts-v1/;
9c66ec88fSEmmanuel Vadot
10*7ef62cebSEmmanuel Vadot/include/ "e500v1_power_isa.dtsi"
11c66ec88fSEmmanuel Vadot
12c66ec88fSEmmanuel Vadot/ {
13c66ec88fSEmmanuel Vadot	model = "MPC8540ADS";
14c66ec88fSEmmanuel Vadot	compatible = "MPC8540ADS", "MPC85xxADS";
15c66ec88fSEmmanuel Vadot	#address-cells = <1>;
16c66ec88fSEmmanuel Vadot	#size-cells = <1>;
17c66ec88fSEmmanuel Vadot
18c66ec88fSEmmanuel Vadot	aliases {
19c66ec88fSEmmanuel Vadot		ethernet0 = &enet0;
20c66ec88fSEmmanuel Vadot		ethernet1 = &enet1;
21c66ec88fSEmmanuel Vadot		ethernet2 = &enet2;
22c66ec88fSEmmanuel Vadot		serial0 = &serial0;
23c66ec88fSEmmanuel Vadot		serial1 = &serial1;
24c66ec88fSEmmanuel Vadot		pci0 = &pci0;
25c66ec88fSEmmanuel Vadot	};
26c66ec88fSEmmanuel Vadot
27c66ec88fSEmmanuel Vadot	cpus {
28c66ec88fSEmmanuel Vadot		#address-cells = <1>;
29c66ec88fSEmmanuel Vadot		#size-cells = <0>;
30c66ec88fSEmmanuel Vadot
31c66ec88fSEmmanuel Vadot		PowerPC,8540@0 {
32c66ec88fSEmmanuel Vadot			device_type = "cpu";
33c66ec88fSEmmanuel Vadot			reg = <0x0>;
34c66ec88fSEmmanuel Vadot			d-cache-line-size = <32>;	// 32 bytes
35c66ec88fSEmmanuel Vadot			i-cache-line-size = <32>;	// 32 bytes
36c66ec88fSEmmanuel Vadot			d-cache-size = <0x8000>;		// L1, 32K
37c66ec88fSEmmanuel Vadot			i-cache-size = <0x8000>;		// L1, 32K
38c66ec88fSEmmanuel Vadot			timebase-frequency = <0>;	//  33 MHz, from uboot
39c66ec88fSEmmanuel Vadot			bus-frequency = <0>;	// 166 MHz
40c66ec88fSEmmanuel Vadot			clock-frequency = <0>;	// 825 MHz, from uboot
41c66ec88fSEmmanuel Vadot			next-level-cache = <&L2>;
42c66ec88fSEmmanuel Vadot		};
43c66ec88fSEmmanuel Vadot	};
44c66ec88fSEmmanuel Vadot
45c66ec88fSEmmanuel Vadot	memory {
46c66ec88fSEmmanuel Vadot		device_type = "memory";
47c66ec88fSEmmanuel Vadot		reg = <0x0 0x8000000>;	// 128M at 0x0
48c66ec88fSEmmanuel Vadot	};
49c66ec88fSEmmanuel Vadot
50c66ec88fSEmmanuel Vadot	soc8540@e0000000 {
51c66ec88fSEmmanuel Vadot		#address-cells = <1>;
52c66ec88fSEmmanuel Vadot		#size-cells = <1>;
53c66ec88fSEmmanuel Vadot		device_type = "soc";
54c66ec88fSEmmanuel Vadot		compatible = "simple-bus";
55c66ec88fSEmmanuel Vadot		ranges = <0x0 0xe0000000 0x100000>;
56c66ec88fSEmmanuel Vadot		bus-frequency = <0>;
57c66ec88fSEmmanuel Vadot
58c66ec88fSEmmanuel Vadot		ecm-law@0 {
59c66ec88fSEmmanuel Vadot			compatible = "fsl,ecm-law";
60c66ec88fSEmmanuel Vadot			reg = <0x0 0x1000>;
61c66ec88fSEmmanuel Vadot			fsl,num-laws = <8>;
62c66ec88fSEmmanuel Vadot		};
63c66ec88fSEmmanuel Vadot
64c66ec88fSEmmanuel Vadot		ecm@1000 {
65c66ec88fSEmmanuel Vadot			compatible = "fsl,mpc8540-ecm", "fsl,ecm";
66c66ec88fSEmmanuel Vadot			reg = <0x1000 0x1000>;
67c66ec88fSEmmanuel Vadot			interrupts = <17 2>;
68c66ec88fSEmmanuel Vadot			interrupt-parent = <&mpic>;
69c66ec88fSEmmanuel Vadot		};
70c66ec88fSEmmanuel Vadot
71c66ec88fSEmmanuel Vadot		memory-controller@2000 {
72c66ec88fSEmmanuel Vadot			compatible = "fsl,mpc8540-memory-controller";
73c66ec88fSEmmanuel Vadot			reg = <0x2000 0x1000>;
74c66ec88fSEmmanuel Vadot			interrupt-parent = <&mpic>;
75c66ec88fSEmmanuel Vadot			interrupts = <18 2>;
76c66ec88fSEmmanuel Vadot		};
77c66ec88fSEmmanuel Vadot
78c66ec88fSEmmanuel Vadot		L2: l2-cache-controller@20000 {
79c66ec88fSEmmanuel Vadot			compatible = "fsl,mpc8540-l2-cache-controller";
80c66ec88fSEmmanuel Vadot			reg = <0x20000 0x1000>;
81c66ec88fSEmmanuel Vadot			cache-line-size = <32>;	// 32 bytes
82c66ec88fSEmmanuel Vadot			cache-size = <0x40000>;	// L2, 256K
83c66ec88fSEmmanuel Vadot			interrupt-parent = <&mpic>;
84c66ec88fSEmmanuel Vadot			interrupts = <16 2>;
85c66ec88fSEmmanuel Vadot		};
86c66ec88fSEmmanuel Vadot
87c66ec88fSEmmanuel Vadot		i2c@3000 {
88c66ec88fSEmmanuel Vadot			#address-cells = <1>;
89c66ec88fSEmmanuel Vadot			#size-cells = <0>;
90c66ec88fSEmmanuel Vadot			cell-index = <0>;
91c66ec88fSEmmanuel Vadot			compatible = "fsl-i2c";
92c66ec88fSEmmanuel Vadot			reg = <0x3000 0x100>;
93c66ec88fSEmmanuel Vadot			interrupts = <43 2>;
94c66ec88fSEmmanuel Vadot			interrupt-parent = <&mpic>;
95c66ec88fSEmmanuel Vadot			dfsrr;
96c66ec88fSEmmanuel Vadot		};
97c66ec88fSEmmanuel Vadot
98c66ec88fSEmmanuel Vadot		dma@21300 {
99c66ec88fSEmmanuel Vadot			#address-cells = <1>;
100c66ec88fSEmmanuel Vadot			#size-cells = <1>;
101c66ec88fSEmmanuel Vadot			compatible = "fsl,mpc8540-dma", "fsl,eloplus-dma";
102c66ec88fSEmmanuel Vadot			reg = <0x21300 0x4>;
103c66ec88fSEmmanuel Vadot			ranges = <0x0 0x21100 0x200>;
104c66ec88fSEmmanuel Vadot			cell-index = <0>;
105c66ec88fSEmmanuel Vadot			dma-channel@0 {
106c66ec88fSEmmanuel Vadot				compatible = "fsl,mpc8540-dma-channel",
107c66ec88fSEmmanuel Vadot						"fsl,eloplus-dma-channel";
108c66ec88fSEmmanuel Vadot				reg = <0x0 0x80>;
109c66ec88fSEmmanuel Vadot				cell-index = <0>;
110c66ec88fSEmmanuel Vadot				interrupt-parent = <&mpic>;
111c66ec88fSEmmanuel Vadot				interrupts = <20 2>;
112c66ec88fSEmmanuel Vadot			};
113c66ec88fSEmmanuel Vadot			dma-channel@80 {
114c66ec88fSEmmanuel Vadot				compatible = "fsl,mpc8540-dma-channel",
115c66ec88fSEmmanuel Vadot						"fsl,eloplus-dma-channel";
116c66ec88fSEmmanuel Vadot				reg = <0x80 0x80>;
117c66ec88fSEmmanuel Vadot				cell-index = <1>;
118c66ec88fSEmmanuel Vadot				interrupt-parent = <&mpic>;
119c66ec88fSEmmanuel Vadot				interrupts = <21 2>;
120c66ec88fSEmmanuel Vadot			};
121c66ec88fSEmmanuel Vadot			dma-channel@100 {
122c66ec88fSEmmanuel Vadot				compatible = "fsl,mpc8540-dma-channel",
123c66ec88fSEmmanuel Vadot						"fsl,eloplus-dma-channel";
124c66ec88fSEmmanuel Vadot				reg = <0x100 0x80>;
125c66ec88fSEmmanuel Vadot				cell-index = <2>;
126c66ec88fSEmmanuel Vadot				interrupt-parent = <&mpic>;
127c66ec88fSEmmanuel Vadot				interrupts = <22 2>;
128c66ec88fSEmmanuel Vadot			};
129c66ec88fSEmmanuel Vadot			dma-channel@180 {
130c66ec88fSEmmanuel Vadot				compatible = "fsl,mpc8540-dma-channel",
131c66ec88fSEmmanuel Vadot						"fsl,eloplus-dma-channel";
132c66ec88fSEmmanuel Vadot				reg = <0x180 0x80>;
133c66ec88fSEmmanuel Vadot				cell-index = <3>;
134c66ec88fSEmmanuel Vadot				interrupt-parent = <&mpic>;
135c66ec88fSEmmanuel Vadot				interrupts = <23 2>;
136c66ec88fSEmmanuel Vadot			};
137c66ec88fSEmmanuel Vadot		};
138c66ec88fSEmmanuel Vadot
139c66ec88fSEmmanuel Vadot		enet0: ethernet@24000 {
140c66ec88fSEmmanuel Vadot			#address-cells = <1>;
141c66ec88fSEmmanuel Vadot			#size-cells = <1>;
142c66ec88fSEmmanuel Vadot			cell-index = <0>;
143c66ec88fSEmmanuel Vadot			device_type = "network";
144c66ec88fSEmmanuel Vadot			model = "TSEC";
145c66ec88fSEmmanuel Vadot			compatible = "gianfar";
146c66ec88fSEmmanuel Vadot			reg = <0x24000 0x1000>;
147c66ec88fSEmmanuel Vadot			ranges = <0x0 0x24000 0x1000>;
148c66ec88fSEmmanuel Vadot			local-mac-address = [ 00 00 00 00 00 00 ];
149c66ec88fSEmmanuel Vadot			interrupts = <29 2 30 2 34 2>;
150c66ec88fSEmmanuel Vadot			interrupt-parent = <&mpic>;
151c66ec88fSEmmanuel Vadot			tbi-handle = <&tbi0>;
152c66ec88fSEmmanuel Vadot			phy-handle = <&phy0>;
153c66ec88fSEmmanuel Vadot
154c66ec88fSEmmanuel Vadot			mdio@520 {
155c66ec88fSEmmanuel Vadot				#address-cells = <1>;
156c66ec88fSEmmanuel Vadot				#size-cells = <0>;
157c66ec88fSEmmanuel Vadot				compatible = "fsl,gianfar-mdio";
158c66ec88fSEmmanuel Vadot				reg = <0x520 0x20>;
159c66ec88fSEmmanuel Vadot
160c66ec88fSEmmanuel Vadot				phy0: ethernet-phy@0 {
161c66ec88fSEmmanuel Vadot					interrupt-parent = <&mpic>;
162c66ec88fSEmmanuel Vadot					interrupts = <5 1>;
163c66ec88fSEmmanuel Vadot					reg = <0x0>;
164c66ec88fSEmmanuel Vadot				};
165c66ec88fSEmmanuel Vadot				phy1: ethernet-phy@1 {
166c66ec88fSEmmanuel Vadot					interrupt-parent = <&mpic>;
167c66ec88fSEmmanuel Vadot					interrupts = <5 1>;
168c66ec88fSEmmanuel Vadot					reg = <0x1>;
169c66ec88fSEmmanuel Vadot				};
170c66ec88fSEmmanuel Vadot				phy3: ethernet-phy@3 {
171c66ec88fSEmmanuel Vadot					interrupt-parent = <&mpic>;
172c66ec88fSEmmanuel Vadot					interrupts = <7 1>;
173c66ec88fSEmmanuel Vadot					reg = <0x3>;
174c66ec88fSEmmanuel Vadot				};
175c66ec88fSEmmanuel Vadot				tbi0: tbi-phy@11 {
176c66ec88fSEmmanuel Vadot					reg = <0x11>;
177c66ec88fSEmmanuel Vadot					device_type = "tbi-phy";
178c66ec88fSEmmanuel Vadot				};
179c66ec88fSEmmanuel Vadot			};
180c66ec88fSEmmanuel Vadot		};
181c66ec88fSEmmanuel Vadot
182c66ec88fSEmmanuel Vadot		enet1: ethernet@25000 {
183c66ec88fSEmmanuel Vadot			#address-cells = <1>;
184c66ec88fSEmmanuel Vadot			#size-cells = <1>;
185c66ec88fSEmmanuel Vadot			cell-index = <1>;
186c66ec88fSEmmanuel Vadot			device_type = "network";
187c66ec88fSEmmanuel Vadot			model = "TSEC";
188c66ec88fSEmmanuel Vadot			compatible = "gianfar";
189c66ec88fSEmmanuel Vadot			reg = <0x25000 0x1000>;
190c66ec88fSEmmanuel Vadot			ranges = <0x0 0x25000 0x1000>;
191c66ec88fSEmmanuel Vadot			local-mac-address = [ 00 00 00 00 00 00 ];
192c66ec88fSEmmanuel Vadot			interrupts = <35 2 36 2 40 2>;
193c66ec88fSEmmanuel Vadot			interrupt-parent = <&mpic>;
194c66ec88fSEmmanuel Vadot			tbi-handle = <&tbi1>;
195c66ec88fSEmmanuel Vadot			phy-handle = <&phy1>;
196c66ec88fSEmmanuel Vadot
197c66ec88fSEmmanuel Vadot			mdio@520 {
198c66ec88fSEmmanuel Vadot				#address-cells = <1>;
199c66ec88fSEmmanuel Vadot				#size-cells = <0>;
200c66ec88fSEmmanuel Vadot				compatible = "fsl,gianfar-tbi";
201c66ec88fSEmmanuel Vadot				reg = <0x520 0x20>;
202c66ec88fSEmmanuel Vadot
203c66ec88fSEmmanuel Vadot				tbi1: tbi-phy@11 {
204c66ec88fSEmmanuel Vadot					reg = <0x11>;
205c66ec88fSEmmanuel Vadot					device_type = "tbi-phy";
206c66ec88fSEmmanuel Vadot				};
207c66ec88fSEmmanuel Vadot			};
208c66ec88fSEmmanuel Vadot		};
209c66ec88fSEmmanuel Vadot
210c66ec88fSEmmanuel Vadot		enet2: ethernet@26000 {
211c66ec88fSEmmanuel Vadot			#address-cells = <1>;
212c66ec88fSEmmanuel Vadot			#size-cells = <1>;
213c66ec88fSEmmanuel Vadot			cell-index = <2>;
214c66ec88fSEmmanuel Vadot			device_type = "network";
215c66ec88fSEmmanuel Vadot			model = "FEC";
216c66ec88fSEmmanuel Vadot			compatible = "gianfar";
217c66ec88fSEmmanuel Vadot			reg = <0x26000 0x1000>;
218c66ec88fSEmmanuel Vadot			ranges = <0x0 0x26000 0x1000>;
219c66ec88fSEmmanuel Vadot			local-mac-address = [ 00 00 00 00 00 00 ];
220c66ec88fSEmmanuel Vadot			interrupts = <41 2>;
221c66ec88fSEmmanuel Vadot			interrupt-parent = <&mpic>;
222c66ec88fSEmmanuel Vadot			tbi-handle = <&tbi2>;
223c66ec88fSEmmanuel Vadot			phy-handle = <&phy3>;
224c66ec88fSEmmanuel Vadot
225c66ec88fSEmmanuel Vadot			mdio@520 {
226c66ec88fSEmmanuel Vadot				#address-cells = <1>;
227c66ec88fSEmmanuel Vadot				#size-cells = <0>;
228c66ec88fSEmmanuel Vadot				compatible = "fsl,gianfar-tbi";
229c66ec88fSEmmanuel Vadot				reg = <0x520 0x20>;
230c66ec88fSEmmanuel Vadot
231c66ec88fSEmmanuel Vadot				tbi2: tbi-phy@11 {
232c66ec88fSEmmanuel Vadot					reg = <0x11>;
233c66ec88fSEmmanuel Vadot					device_type = "tbi-phy";
234c66ec88fSEmmanuel Vadot				};
235c66ec88fSEmmanuel Vadot			};
236c66ec88fSEmmanuel Vadot		};
237c66ec88fSEmmanuel Vadot
238c66ec88fSEmmanuel Vadot		serial0: serial@4500 {
239c66ec88fSEmmanuel Vadot			cell-index = <0>;
240c66ec88fSEmmanuel Vadot			device_type = "serial";
241c66ec88fSEmmanuel Vadot			compatible = "fsl,ns16550", "ns16550";
242c66ec88fSEmmanuel Vadot			reg = <0x4500 0x100>; 	// reg base, size
243c66ec88fSEmmanuel Vadot			clock-frequency = <0>; 	// should we fill in in uboot?
244c66ec88fSEmmanuel Vadot			interrupts = <42 2>;
245c66ec88fSEmmanuel Vadot			interrupt-parent = <&mpic>;
246c66ec88fSEmmanuel Vadot		};
247c66ec88fSEmmanuel Vadot
248c66ec88fSEmmanuel Vadot		serial1: serial@4600 {
249c66ec88fSEmmanuel Vadot			cell-index = <1>;
250c66ec88fSEmmanuel Vadot			device_type = "serial";
251c66ec88fSEmmanuel Vadot			compatible = "fsl,ns16550", "ns16550";
252c66ec88fSEmmanuel Vadot			reg = <0x4600 0x100>;	// reg base, size
253c66ec88fSEmmanuel Vadot			clock-frequency = <0>; 	// should we fill in in uboot?
254c66ec88fSEmmanuel Vadot			interrupts = <42 2>;
255c66ec88fSEmmanuel Vadot			interrupt-parent = <&mpic>;
256c66ec88fSEmmanuel Vadot		};
257c66ec88fSEmmanuel Vadot		mpic: pic@40000 {
258c66ec88fSEmmanuel Vadot			interrupt-controller;
259c66ec88fSEmmanuel Vadot			#address-cells = <0>;
260c66ec88fSEmmanuel Vadot			#interrupt-cells = <2>;
261c66ec88fSEmmanuel Vadot			reg = <0x40000 0x40000>;
262c66ec88fSEmmanuel Vadot			compatible = "chrp,open-pic";
263c66ec88fSEmmanuel Vadot			device_type = "open-pic";
264c66ec88fSEmmanuel Vadot		};
265c66ec88fSEmmanuel Vadot	};
266c66ec88fSEmmanuel Vadot
267c66ec88fSEmmanuel Vadot	pci0: pci@e0008000 {
268c66ec88fSEmmanuel Vadot		interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
269c66ec88fSEmmanuel Vadot		interrupt-map = <
270c66ec88fSEmmanuel Vadot
271c66ec88fSEmmanuel Vadot			/* IDSEL 0x02 */
272c66ec88fSEmmanuel Vadot			0x1000 0x0 0x0 0x1 &mpic 0x1 0x1
273c66ec88fSEmmanuel Vadot			0x1000 0x0 0x0 0x2 &mpic 0x2 0x1
274c66ec88fSEmmanuel Vadot			0x1000 0x0 0x0 0x3 &mpic 0x3 0x1
275c66ec88fSEmmanuel Vadot			0x1000 0x0 0x0 0x4 &mpic 0x4 0x1
276c66ec88fSEmmanuel Vadot
277c66ec88fSEmmanuel Vadot			/* IDSEL 0x03 */
278c66ec88fSEmmanuel Vadot			0x1800 0x0 0x0 0x1 &mpic 0x4 0x1
279c66ec88fSEmmanuel Vadot			0x1800 0x0 0x0 0x2 &mpic 0x1 0x1
280c66ec88fSEmmanuel Vadot			0x1800 0x0 0x0 0x3 &mpic 0x2 0x1
281c66ec88fSEmmanuel Vadot			0x1800 0x0 0x0 0x4 &mpic 0x3 0x1
282c66ec88fSEmmanuel Vadot
283c66ec88fSEmmanuel Vadot			/* IDSEL 0x04 */
284c66ec88fSEmmanuel Vadot			0x2000 0x0 0x0 0x1 &mpic 0x3 0x1
285c66ec88fSEmmanuel Vadot			0x2000 0x0 0x0 0x2 &mpic 0x4 0x1
286c66ec88fSEmmanuel Vadot			0x2000 0x0 0x0 0x3 &mpic 0x1 0x1
287c66ec88fSEmmanuel Vadot			0x2000 0x0 0x0 0x4 &mpic 0x2 0x1
288c66ec88fSEmmanuel Vadot
289c66ec88fSEmmanuel Vadot			/* IDSEL 0x05 */
290c66ec88fSEmmanuel Vadot			0x2800 0x0 0x0 0x1 &mpic 0x2 0x1
291c66ec88fSEmmanuel Vadot			0x2800 0x0 0x0 0x2 &mpic 0x3 0x1
292c66ec88fSEmmanuel Vadot			0x2800 0x0 0x0 0x3 &mpic 0x4 0x1
293c66ec88fSEmmanuel Vadot			0x2800 0x0 0x0 0x4 &mpic 0x1 0x1
294c66ec88fSEmmanuel Vadot
295c66ec88fSEmmanuel Vadot			/* IDSEL 0x0c */
296c66ec88fSEmmanuel Vadot			0x6000 0x0 0x0 0x1 &mpic 0x1 0x1
297c66ec88fSEmmanuel Vadot			0x6000 0x0 0x0 0x2 &mpic 0x2 0x1
298c66ec88fSEmmanuel Vadot			0x6000 0x0 0x0 0x3 &mpic 0x3 0x1
299c66ec88fSEmmanuel Vadot			0x6000 0x0 0x0 0x4 &mpic 0x4 0x1
300c66ec88fSEmmanuel Vadot
301c66ec88fSEmmanuel Vadot			/* IDSEL 0x0d */
302c66ec88fSEmmanuel Vadot			0x6800 0x0 0x0 0x1 &mpic 0x4 0x1
303c66ec88fSEmmanuel Vadot			0x6800 0x0 0x0 0x2 &mpic 0x1 0x1
304c66ec88fSEmmanuel Vadot			0x6800 0x0 0x0 0x3 &mpic 0x2 0x1
305c66ec88fSEmmanuel Vadot			0x6800 0x0 0x0 0x4 &mpic 0x3 0x1
306c66ec88fSEmmanuel Vadot
307c66ec88fSEmmanuel Vadot			/* IDSEL 0x0e */
308c66ec88fSEmmanuel Vadot			0x7000 0x0 0x0 0x1 &mpic 0x3 0x1
309c66ec88fSEmmanuel Vadot			0x7000 0x0 0x0 0x2 &mpic 0x4 0x1
310c66ec88fSEmmanuel Vadot			0x7000 0x0 0x0 0x3 &mpic 0x1 0x1
311c66ec88fSEmmanuel Vadot			0x7000 0x0 0x0 0x4 &mpic 0x2 0x1
312c66ec88fSEmmanuel Vadot
313c66ec88fSEmmanuel Vadot			/* IDSEL 0x0f */
314c66ec88fSEmmanuel Vadot			0x7800 0x0 0x0 0x1 &mpic 0x2 0x1
315c66ec88fSEmmanuel Vadot			0x7800 0x0 0x0 0x2 &mpic 0x3 0x1
316c66ec88fSEmmanuel Vadot			0x7800 0x0 0x0 0x3 &mpic 0x4 0x1
317c66ec88fSEmmanuel Vadot			0x7800 0x0 0x0 0x4 &mpic 0x1 0x1
318c66ec88fSEmmanuel Vadot
319c66ec88fSEmmanuel Vadot			/* IDSEL 0x12 */
320c66ec88fSEmmanuel Vadot			0x9000 0x0 0x0 0x1 &mpic 0x1 0x1
321c66ec88fSEmmanuel Vadot			0x9000 0x0 0x0 0x2 &mpic 0x2 0x1
322c66ec88fSEmmanuel Vadot			0x9000 0x0 0x0 0x3 &mpic 0x3 0x1
323c66ec88fSEmmanuel Vadot			0x9000 0x0 0x0 0x4 &mpic 0x4 0x1
324c66ec88fSEmmanuel Vadot
325c66ec88fSEmmanuel Vadot			/* IDSEL 0x13 */
326c66ec88fSEmmanuel Vadot			0x9800 0x0 0x0 0x1 &mpic 0x4 0x1
327c66ec88fSEmmanuel Vadot			0x9800 0x0 0x0 0x2 &mpic 0x1 0x1
328c66ec88fSEmmanuel Vadot			0x9800 0x0 0x0 0x3 &mpic 0x2 0x1
329c66ec88fSEmmanuel Vadot			0x9800 0x0 0x0 0x4 &mpic 0x3 0x1
330c66ec88fSEmmanuel Vadot
331c66ec88fSEmmanuel Vadot			/* IDSEL 0x14 */
332c66ec88fSEmmanuel Vadot			0xa000 0x0 0x0 0x1 &mpic 0x3 0x1
333c66ec88fSEmmanuel Vadot			0xa000 0x0 0x0 0x2 &mpic 0x4 0x1
334c66ec88fSEmmanuel Vadot			0xa000 0x0 0x0 0x3 &mpic 0x1 0x1
335c66ec88fSEmmanuel Vadot			0xa000 0x0 0x0 0x4 &mpic 0x2 0x1
336c66ec88fSEmmanuel Vadot
337c66ec88fSEmmanuel Vadot			/* IDSEL 0x15 */
338c66ec88fSEmmanuel Vadot			0xa800 0x0 0x0 0x1 &mpic 0x2 0x1
339c66ec88fSEmmanuel Vadot			0xa800 0x0 0x0 0x2 &mpic 0x3 0x1
340c66ec88fSEmmanuel Vadot			0xa800 0x0 0x0 0x3 &mpic 0x4 0x1
341c66ec88fSEmmanuel Vadot			0xa800 0x0 0x0 0x4 &mpic 0x1 0x1>;
342c66ec88fSEmmanuel Vadot		interrupt-parent = <&mpic>;
343c66ec88fSEmmanuel Vadot		interrupts = <24 2>;
344c66ec88fSEmmanuel Vadot		bus-range = <0 0>;
345c66ec88fSEmmanuel Vadot		ranges = <0x2000000 0x0 0x80000000 0x80000000 0x0 0x20000000
346c66ec88fSEmmanuel Vadot			  0x1000000 0x0 0x0 0xe2000000 0x0 0x100000>;
347c66ec88fSEmmanuel Vadot		clock-frequency = <66666666>;
348c66ec88fSEmmanuel Vadot		#interrupt-cells = <1>;
349c66ec88fSEmmanuel Vadot		#size-cells = <2>;
350c66ec88fSEmmanuel Vadot		#address-cells = <3>;
351c66ec88fSEmmanuel Vadot		reg = <0xe0008000 0x1000>;
352c66ec88fSEmmanuel Vadot		compatible = "fsl,mpc8540-pcix", "fsl,mpc8540-pci";
353c66ec88fSEmmanuel Vadot		device_type = "pci";
354c66ec88fSEmmanuel Vadot	};
355c66ec88fSEmmanuel Vadot};
356