1b359049fSKim Phillips/*
2b359049fSKim Phillips * MPC8313E RDB Device Tree Source
3b359049fSKim Phillips *
4b359049fSKim Phillips * Copyright 2005, 2006, 2007 Freescale Semiconductor Inc.
5b359049fSKim Phillips *
6b359049fSKim Phillips * This program is free software; you can redistribute  it and/or modify it
7b359049fSKim Phillips * under  the terms of  the GNU General  Public License as published by the
8b359049fSKim Phillips * Free Software Foundation;  either version 2 of the  License, or (at your
9b359049fSKim Phillips * option) any later version.
10b359049fSKim Phillips */
11b359049fSKim Phillips
12cda13dd1SPaul Gortmaker/dts-v1/;
13cda13dd1SPaul Gortmaker
14b359049fSKim Phillips/ {
15b359049fSKim Phillips	model = "MPC8313ERDB";
16d71a1dc6SKumar Gala	compatible = "MPC8313ERDB", "MPC831xRDB", "MPC83xxRDB";
17b359049fSKim Phillips	#address-cells = <1>;
18b359049fSKim Phillips	#size-cells = <1>;
19b359049fSKim Phillips
20ea082fa9SKumar Gala	aliases {
21ea082fa9SKumar Gala		ethernet0 = &enet0;
22ea082fa9SKumar Gala		ethernet1 = &enet1;
23ea082fa9SKumar Gala		serial0 = &serial0;
24ea082fa9SKumar Gala		serial1 = &serial1;
25ea082fa9SKumar Gala		pci0 = &pci0;
26ea082fa9SKumar Gala	};
27ea082fa9SKumar Gala
28b359049fSKim Phillips	cpus {
29b359049fSKim Phillips		#address-cells = <1>;
30b359049fSKim Phillips		#size-cells = <0>;
31b359049fSKim Phillips
32b359049fSKim Phillips		PowerPC,8313@0 {
33b359049fSKim Phillips			device_type = "cpu";
34cda13dd1SPaul Gortmaker			reg = <0x0>;
35cda13dd1SPaul Gortmaker			d-cache-line-size = <32>;
36cda13dd1SPaul Gortmaker			i-cache-line-size = <32>;
37cda13dd1SPaul Gortmaker			d-cache-size = <16384>;
38cda13dd1SPaul Gortmaker			i-cache-size = <16384>;
39b359049fSKim Phillips			timebase-frequency = <0>;	// from bootloader
40b359049fSKim Phillips			bus-frequency = <0>;		// from bootloader
41b359049fSKim Phillips			clock-frequency = <0>;		// from bootloader
42b359049fSKim Phillips		};
43b359049fSKim Phillips	};
44b359049fSKim Phillips
45b359049fSKim Phillips	memory {
46b359049fSKim Phillips		device_type = "memory";
47cda13dd1SPaul Gortmaker		reg = <0x00000000 0x08000000>;	// 128MB at 0
48b359049fSKim Phillips	};
49b359049fSKim Phillips
50ff5ac760SScott Wood	localbus@e0005000 {
51ff5ac760SScott Wood		#address-cells = <2>;
52ff5ac760SScott Wood		#size-cells = <1>;
53ff5ac760SScott Wood		compatible = "fsl,mpc8313-elbc", "fsl,elbc", "simple-bus";
54cda13dd1SPaul Gortmaker		reg = <0xe0005000 0x1000>;
55cda13dd1SPaul Gortmaker		interrupts = <77 0x8>;
56ff5ac760SScott Wood		interrupt-parent = <&ipic>;
57ff5ac760SScott Wood
58ff5ac760SScott Wood		// CS0 and CS1 are swapped when
59ff5ac760SScott Wood		// booting from nand, but the
60ff5ac760SScott Wood		// addresses are the same.
61cda13dd1SPaul Gortmaker		ranges = <0x0 0x0 0xfe000000 0x00800000
62cda13dd1SPaul Gortmaker		          0x1 0x0 0xe2800000 0x00008000
63cda13dd1SPaul Gortmaker		          0x2 0x0 0xf0000000 0x00020000
64cda13dd1SPaul Gortmaker		          0x3 0x0 0xfa000000 0x00008000>;
65ff5ac760SScott Wood
6612600e48SScott Wood		flash@0,0 {
6712600e48SScott Wood			#address-cells = <1>;
6812600e48SScott Wood			#size-cells = <1>;
6912600e48SScott Wood			compatible = "cfi-flash";
70cda13dd1SPaul Gortmaker			reg = <0x0 0x0 0x800000>;
7112600e48SScott Wood			bank-width = <2>;
7212600e48SScott Wood			device-width = <1>;
7312600e48SScott Wood		};
7412600e48SScott Wood
75ff5ac760SScott Wood		nand@1,0 {
76ff5ac760SScott Wood			#address-cells = <1>;
77ff5ac760SScott Wood			#size-cells = <1>;
78ff5ac760SScott Wood			compatible = "fsl,mpc8313-fcm-nand",
79ff5ac760SScott Wood			             "fsl,elbc-fcm-nand";
80cda13dd1SPaul Gortmaker			reg = <0x1 0x0 0x2000>;
81ff5ac760SScott Wood
82ff5ac760SScott Wood			u-boot@0 {
83cda13dd1SPaul Gortmaker				reg = <0x0 0x100000>;
84ff5ac760SScott Wood				read-only;
85ff5ac760SScott Wood			};
86ff5ac760SScott Wood
87ff5ac760SScott Wood			kernel@100000 {
88cda13dd1SPaul Gortmaker				reg = <0x100000 0x300000>;
89ff5ac760SScott Wood			};
90ff5ac760SScott Wood
91ff5ac760SScott Wood			fs@400000 {
92cda13dd1SPaul Gortmaker				reg = <0x400000 0x1c00000>;
93ff5ac760SScott Wood			};
94ff5ac760SScott Wood		};
95ff5ac760SScott Wood	};
96ff5ac760SScott Wood
97b359049fSKim Phillips	soc8313@e0000000 {
98b359049fSKim Phillips		#address-cells = <1>;
99b359049fSKim Phillips		#size-cells = <1>;
100b359049fSKim Phillips		device_type = "soc";
101ff5ac760SScott Wood		compatible = "simple-bus";
102cda13dd1SPaul Gortmaker		ranges = <0x0 0xe0000000 0x00100000>;
103cda13dd1SPaul Gortmaker		reg = <0xe0000000 0x00000200>;
104b359049fSKim Phillips		bus-frequency = <0>;
105b359049fSKim Phillips
106b359049fSKim Phillips		wdt@200 {
107b359049fSKim Phillips			device_type = "watchdog";
108b359049fSKim Phillips			compatible = "mpc83xx_wdt";
109cda13dd1SPaul Gortmaker			reg = <0x200 0x100>;
110b359049fSKim Phillips		};
111b359049fSKim Phillips
11257436612SScott Wood		sleep-nexus {
11357436612SScott Wood			#address-cells = <1>;
11457436612SScott Wood			#size-cells = <1>;
11557436612SScott Wood			compatible = "simple-bus";
11657436612SScott Wood			sleep = <&pmc 0x03000000>;
11757436612SScott Wood			ranges;
11857436612SScott Wood
119b359049fSKim Phillips			i2c@3000 {
120ec9686c4SKumar Gala				#address-cells = <1>;
121ec9686c4SKumar Gala				#size-cells = <0>;
122ec9686c4SKumar Gala				cell-index = <0>;
123b359049fSKim Phillips				compatible = "fsl-i2c";
124cda13dd1SPaul Gortmaker				reg = <0x3000 0x100>;
125cda13dd1SPaul Gortmaker				interrupts = <14 0x8>;
126d71a1dc6SKumar Gala				interrupt-parent = <&ipic>;
127b359049fSKim Phillips				dfsrr;
1285cfade18SKim Phillips				rtc@68 {
1295cfade18SKim Phillips					compatible = "dallas,ds1339";
1305cfade18SKim Phillips					reg = <0x68>;
1315cfade18SKim Phillips				};
132b359049fSKim Phillips			};
133b359049fSKim Phillips
13457436612SScott Wood			crypto@30000 {
13557436612SScott Wood				compatible = "fsl,sec2.2", "fsl,sec2.1",
13657436612SScott Wood				             "fsl,sec2.0";
13757436612SScott Wood				reg = <0x30000 0x10000>;
13857436612SScott Wood				interrupts = <11 0x8>;
13957436612SScott Wood				interrupt-parent = <&ipic>;
14057436612SScott Wood				fsl,num-channels = <1>;
14157436612SScott Wood				fsl,channel-fifo-len = <24>;
14257436612SScott Wood				fsl,exec-units-mask = <0x4c>;
14357436612SScott Wood				fsl,descriptor-types-mask = <0x0122003f>;
14457436612SScott Wood			};
14557436612SScott Wood		};
14657436612SScott Wood
147b359049fSKim Phillips		i2c@3100 {
148ec9686c4SKumar Gala			#address-cells = <1>;
149ec9686c4SKumar Gala			#size-cells = <0>;
150ec9686c4SKumar Gala			cell-index = <1>;
151b359049fSKim Phillips			compatible = "fsl-i2c";
152cda13dd1SPaul Gortmaker			reg = <0x3100 0x100>;
153cda13dd1SPaul Gortmaker			interrupts = <15 0x8>;
154d71a1dc6SKumar Gala			interrupt-parent = <&ipic>;
155b359049fSKim Phillips			dfsrr;
156b359049fSKim Phillips		};
157b359049fSKim Phillips
158b359049fSKim Phillips		spi@7000 {
159f3a2b29dSAnton Vorontsov			cell-index = <0>;
160f3a2b29dSAnton Vorontsov			compatible = "fsl,spi";
161cda13dd1SPaul Gortmaker			reg = <0x7000 0x1000>;
162cda13dd1SPaul Gortmaker			interrupts = <16 0x8>;
163d71a1dc6SKumar Gala			interrupt-parent = <&ipic>;
16433799e33SPeter Korsgaard			mode = "cpu";
165b359049fSKim Phillips		};
166b359049fSKim Phillips
167dee80553SKumar Gala		dma@82a8 {
168dee80553SKumar Gala			#address-cells = <1>;
169dee80553SKumar Gala			#size-cells = <1>;
170dee80553SKumar Gala			compatible = "fsl,mpc8313-dma", "fsl,elo-dma";
171dee80553SKumar Gala			reg = <0x82a8 4>;
172dee80553SKumar Gala			ranges = <0 0x8100 0x1a8>;
173dee80553SKumar Gala			interrupt-parent = <&ipic>;
174dee80553SKumar Gala			interrupts = <71 8>;
175dee80553SKumar Gala			cell-index = <0>;
176dee80553SKumar Gala			dma-channel@0 {
177dee80553SKumar Gala				compatible = "fsl,mpc8313-dma-channel", "fsl,elo-dma-channel";
178dee80553SKumar Gala				reg = <0 0x80>;
179dee80553SKumar Gala				interrupt-parent = <&ipic>;
180dee80553SKumar Gala				interrupts = <71 8>;
181dee80553SKumar Gala			};
182dee80553SKumar Gala			dma-channel@80 {
183dee80553SKumar Gala				compatible = "fsl,mpc8313-dma-channel", "fsl,elo-dma-channel";
184dee80553SKumar Gala				reg = <0x80 0x80>;
185dee80553SKumar Gala				interrupt-parent = <&ipic>;
186dee80553SKumar Gala				interrupts = <71 8>;
187dee80553SKumar Gala			};
188dee80553SKumar Gala			dma-channel@100 {
189dee80553SKumar Gala				compatible = "fsl,mpc8313-dma-channel", "fsl,elo-dma-channel";
190dee80553SKumar Gala				reg = <0x100 0x80>;
191dee80553SKumar Gala				interrupt-parent = <&ipic>;
192dee80553SKumar Gala				interrupts = <71 8>;
193dee80553SKumar Gala			};
194dee80553SKumar Gala			dma-channel@180 {
195dee80553SKumar Gala				compatible = "fsl,mpc8313-dma-channel", "fsl,elo-dma-channel";
196dee80553SKumar Gala				reg = <0x180 0x28>;
197dee80553SKumar Gala				interrupt-parent = <&ipic>;
198dee80553SKumar Gala				interrupts = <71 8>;
199dee80553SKumar Gala			};
200dee80553SKumar Gala		};
201dee80553SKumar Gala
202b359049fSKim Phillips		/* phy type (ULPI, UTMI, UTMI_WIDE, SERIAL) */
203b359049fSKim Phillips		usb@23000 {
204b359049fSKim Phillips			compatible = "fsl-usb2-dr";
205cda13dd1SPaul Gortmaker			reg = <0x23000 0x1000>;
206b359049fSKim Phillips			#address-cells = <1>;
207b359049fSKim Phillips			#size-cells = <0>;
208d71a1dc6SKumar Gala			interrupt-parent = <&ipic>;
209cda13dd1SPaul Gortmaker			interrupts = <38 0x8>;
210b359049fSKim Phillips			phy_type = "utmi_wide";
21157436612SScott Wood			sleep = <&pmc 0x00300000>;
212b359049fSKim Phillips		};
213b359049fSKim Phillips
21457436612SScott Wood		enet0: ethernet@24000 {
21557436612SScott Wood			#address-cells = <1>;
21657436612SScott Wood			#size-cells = <1>;
21757436612SScott Wood			sleep = <&pmc 0x20000000>;
21857436612SScott Wood			ranges;
21957436612SScott Wood
22057436612SScott Wood			cell-index = <0>;
22157436612SScott Wood			device_type = "network";
22257436612SScott Wood			model = "eTSEC";
22357436612SScott Wood			compatible = "gianfar", "simple-bus";
22457436612SScott Wood			reg = <0x24000 0x1000>;
22557436612SScott Wood			local-mac-address = [ 00 00 00 00 00 00 ];
22657436612SScott Wood			interrupts = <37 0x8 36 0x8 35 0x8>;
22757436612SScott Wood			interrupt-parent = <&ipic>;
22857436612SScott Wood			phy-handle = < &phy1 >;
22957436612SScott Wood			fsl,magic-packet;
23057436612SScott Wood
231b359049fSKim Phillips			mdio@24520 {
232b359049fSKim Phillips				#address-cells = <1>;
233b359049fSKim Phillips				#size-cells = <0>;
234e77b28ebSKumar Gala				compatible = "fsl,gianfar-mdio";
235cda13dd1SPaul Gortmaker				reg = <0x24520 0x20>;
236d71a1dc6SKumar Gala				phy1: ethernet-phy@1 {
237d71a1dc6SKumar Gala					interrupt-parent = <&ipic>;
238cda13dd1SPaul Gortmaker					interrupts = <19 0x8>;
239cda13dd1SPaul Gortmaker					reg = <0x1>;
240b359049fSKim Phillips					device_type = "ethernet-phy";
241b359049fSKim Phillips				};
242d71a1dc6SKumar Gala				phy4: ethernet-phy@4 {
243d71a1dc6SKumar Gala					interrupt-parent = <&ipic>;
244cda13dd1SPaul Gortmaker					interrupts = <20 0x8>;
245cda13dd1SPaul Gortmaker					reg = <0x4>;
246b359049fSKim Phillips					device_type = "ethernet-phy";
247b359049fSKim Phillips				};
248b359049fSKim Phillips			};
249b359049fSKim Phillips		};
250b359049fSKim Phillips
251e77b28ebSKumar Gala		enet1: ethernet@25000 {
252e77b28ebSKumar Gala			cell-index = <1>;
253b359049fSKim Phillips			device_type = "network";
254b359049fSKim Phillips			model = "eTSEC";
255b359049fSKim Phillips			compatible = "gianfar";
256cda13dd1SPaul Gortmaker			reg = <0x25000 0x1000>;
257b359049fSKim Phillips			local-mac-address = [ 00 00 00 00 00 00 ];
258cda13dd1SPaul Gortmaker			interrupts = <34 0x8 33 0x8 32 0x8>;
259d71a1dc6SKumar Gala			interrupt-parent = <&ipic>;
260d71a1dc6SKumar Gala			phy-handle = < &phy4 >;
26157436612SScott Wood			sleep = <&pmc 0x10000000>;
26257436612SScott Wood			fsl,magic-packet;
263b359049fSKim Phillips		};
264b359049fSKim Phillips
265ea082fa9SKumar Gala		serial0: serial@4500 {
266ea082fa9SKumar Gala			cell-index = <0>;
267b359049fSKim Phillips			device_type = "serial";
268b359049fSKim Phillips			compatible = "ns16550";
269cda13dd1SPaul Gortmaker			reg = <0x4500 0x100>;
270b359049fSKim Phillips			clock-frequency = <0>;
271cda13dd1SPaul Gortmaker			interrupts = <9 0x8>;
272d71a1dc6SKumar Gala			interrupt-parent = <&ipic>;
273b359049fSKim Phillips		};
274b359049fSKim Phillips
275ea082fa9SKumar Gala		serial1: serial@4600 {
276ea082fa9SKumar Gala			cell-index = <1>;
277b359049fSKim Phillips			device_type = "serial";
278b359049fSKim Phillips			compatible = "ns16550";
279cda13dd1SPaul Gortmaker			reg = <0x4600 0x100>;
280b359049fSKim Phillips			clock-frequency = <0>;
281cda13dd1SPaul Gortmaker			interrupts = <10 0x8>;
282d71a1dc6SKumar Gala			interrupt-parent = <&ipic>;
283b359049fSKim Phillips		};
284b359049fSKim Phillips
285b359049fSKim Phillips		/* IPIC
286b359049fSKim Phillips		 * interrupts cell = <intr #, sense>
287b359049fSKim Phillips		 * sense values match linux IORESOURCE_IRQ_* defines:
288b359049fSKim Phillips		 * sense == 8: Level, low assertion
289b359049fSKim Phillips		 * sense == 2: Edge, high-to-low change
290b359049fSKim Phillips		 */
291d71a1dc6SKumar Gala		ipic: pic@700 {
292b359049fSKim Phillips			interrupt-controller;
293b359049fSKim Phillips			#address-cells = <0>;
294b359049fSKim Phillips			#interrupt-cells = <2>;
295cda13dd1SPaul Gortmaker			reg = <0x700 0x100>;
296b359049fSKim Phillips			device_type = "ipic";
297b359049fSKim Phillips		};
29857436612SScott Wood
29957436612SScott Wood		pmc: power@b00 {
30057436612SScott Wood			compatible = "fsl,mpc8313-pmc", "fsl,mpc8349-pmc";
30157436612SScott Wood			reg = <0xb00 0x100 0xa00 0x100>;
30257436612SScott Wood			interrupts = <80 8>;
30357436612SScott Wood			interrupt-parent = <&ipic>;
30457436612SScott Wood			fsl,mpc8313-wakeup-timer = <&gtm1>;
30557436612SScott Wood
30657436612SScott Wood			/* Remove this (or change to "okay") if you have
30757436612SScott Wood			 * a REVA3 or later board, if you apply one of the
30857436612SScott Wood			 * workarounds listed in section 8.5 of the board
30957436612SScott Wood			 * manual, or if you are adapting this device tree
31057436612SScott Wood			 * to a different board.
31157436612SScott Wood			 */
31257436612SScott Wood			status = "fail";
313b359049fSKim Phillips		};
3141b3c5cdaSKumar Gala
31557436612SScott Wood		gtm1: timer@500 {
31657436612SScott Wood			compatible = "fsl,mpc8313-gtm", "fsl,gtm";
31757436612SScott Wood			reg = <0x500 0x100>;
31857436612SScott Wood			interrupts = <90 8 78 8 84 8 72 8>;
31957436612SScott Wood			interrupt-parent = <&ipic>;
32057436612SScott Wood		};
32157436612SScott Wood
32257436612SScott Wood		timer@600 {
32357436612SScott Wood			compatible = "fsl,mpc8313-gtm", "fsl,gtm";
32457436612SScott Wood			reg = <0x600 0x100>;
32557436612SScott Wood			interrupts = <91 8 79 8 85 8 73 8>;
32657436612SScott Wood			interrupt-parent = <&ipic>;
32757436612SScott Wood		};
32857436612SScott Wood	};
32957436612SScott Wood
33057436612SScott Wood	sleep-nexus {
33157436612SScott Wood		#address-cells = <1>;
33257436612SScott Wood		#size-cells = <1>;
33357436612SScott Wood		compatible = "simple-bus";
33457436612SScott Wood		sleep = <&pmc 0x00010000>;
33557436612SScott Wood		ranges;
33657436612SScott Wood
337ea082fa9SKumar Gala		pci0: pci@e0008500 {
338ea082fa9SKumar Gala			cell-index = <1>;
339cda13dd1SPaul Gortmaker			interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
3401b3c5cdaSKumar Gala			interrupt-map = <
3411b3c5cdaSKumar Gala					/* IDSEL 0x0E -mini PCI */
342cda13dd1SPaul Gortmaker					 0x7000 0x0 0x0 0x1 &ipic 18 0x8
343cda13dd1SPaul Gortmaker					 0x7000 0x0 0x0 0x2 &ipic 18 0x8
344cda13dd1SPaul Gortmaker					 0x7000 0x0 0x0 0x3 &ipic 18 0x8
345cda13dd1SPaul Gortmaker					 0x7000 0x0 0x0 0x4 &ipic 18 0x8
3461b3c5cdaSKumar Gala
3471b3c5cdaSKumar Gala					/* IDSEL 0x0F - PCI slot */
348cda13dd1SPaul Gortmaker					 0x7800 0x0 0x0 0x1 &ipic 17 0x8
349cda13dd1SPaul Gortmaker					 0x7800 0x0 0x0 0x2 &ipic 18 0x8
350cda13dd1SPaul Gortmaker					 0x7800 0x0 0x0 0x3 &ipic 17 0x8
351cda13dd1SPaul Gortmaker					 0x7800 0x0 0x0 0x4 &ipic 18 0x8>;
3521b3c5cdaSKumar Gala			interrupt-parent = <&ipic>;
353cda13dd1SPaul Gortmaker			interrupts = <66 0x8>;
354cda13dd1SPaul Gortmaker			bus-range = <0x0 0x0>;
355cda13dd1SPaul Gortmaker			ranges = <0x02000000 0x0 0x90000000 0x90000000 0x0 0x10000000
356cda13dd1SPaul Gortmaker				  0x42000000 0x0 0x80000000 0x80000000 0x0 0x10000000
357cda13dd1SPaul Gortmaker				  0x01000000 0x0 0x00000000 0xe2000000 0x0 0x00100000>;
358cda13dd1SPaul Gortmaker			clock-frequency = <66666666>;
3591b3c5cdaSKumar Gala			#interrupt-cells = <1>;
3601b3c5cdaSKumar Gala			#size-cells = <2>;
3611b3c5cdaSKumar Gala			#address-cells = <3>;
362cda13dd1SPaul Gortmaker			reg = <0xe0008500 0x100>;
3631b3c5cdaSKumar Gala			compatible = "fsl,mpc8349-pci";
3641b3c5cdaSKumar Gala			device_type = "pci";
3651b3c5cdaSKumar Gala		};
36657436612SScott Wood
36757436612SScott Wood		dma@82a8 {
36857436612SScott Wood			#address-cells = <1>;
36957436612SScott Wood			#size-cells = <1>;
37057436612SScott Wood			compatible = "fsl,mpc8313-dma", "fsl,elo-dma";
37157436612SScott Wood			reg = <0xe00082a8 4>;
37257436612SScott Wood			ranges = <0 0xe0008100 0x1a8>;
37357436612SScott Wood			interrupt-parent = <&ipic>;
37457436612SScott Wood			interrupts = <71 8>;
37557436612SScott Wood
37657436612SScott Wood			dma-channel@0 {
37757436612SScott Wood				compatible = "fsl,mpc8313-dma-channel",
37857436612SScott Wood				             "fsl,elo-dma-channel";
37957436612SScott Wood				reg = <0 0x28>;
38057436612SScott Wood				interrupt-parent = <&ipic>;
38157436612SScott Wood				interrupts = <71 8>;
38257436612SScott Wood				cell-index = <0>;
38357436612SScott Wood			};
38457436612SScott Wood
38557436612SScott Wood			dma-channel@80 {
38657436612SScott Wood				compatible = "fsl,mpc8313-dma-channel",
38757436612SScott Wood				             "fsl,elo-dma-channel";
38857436612SScott Wood				reg = <0x80 0x28>;
38957436612SScott Wood				interrupt-parent = <&ipic>;
39057436612SScott Wood				interrupts = <71 8>;
39157436612SScott Wood				cell-index = <1>;
39257436612SScott Wood			};
39357436612SScott Wood
39457436612SScott Wood			dma-channel@100 {
39557436612SScott Wood				compatible = "fsl,mpc8313-dma-channel",
39657436612SScott Wood				             "fsl,elo-dma-channel";
39757436612SScott Wood				reg = <0x100 0x28>;
39857436612SScott Wood				interrupt-parent = <&ipic>;
39957436612SScott Wood				interrupts = <71 8>;
40057436612SScott Wood				cell-index = <2>;
40157436612SScott Wood			};
40257436612SScott Wood
40357436612SScott Wood			dma-channel@180 {
40457436612SScott Wood				compatible = "fsl,mpc8313-dma-channel",
40557436612SScott Wood				             "fsl,elo-dma-channel";
40657436612SScott Wood				reg = <0x180 0x28>;
40757436612SScott Wood				interrupt-parent = <&ipic>;
40857436612SScott Wood				interrupts = <71 8>;
40957436612SScott Wood				cell-index = <3>;
41057436612SScott Wood			};
41157436612SScott Wood		};
41257436612SScott Wood	};
413b359049fSKim Phillips};
414