174c37e8cSTimur Tabi/*
274c37e8cSTimur Tabi * MPC8349E-mITX Device Tree Source
374c37e8cSTimur Tabi *
474c37e8cSTimur Tabi * Copyright 2006 Freescale Semiconductor Inc.
574c37e8cSTimur Tabi *
674c37e8cSTimur Tabi * This program is free software; you can redistribute it and/or modify it
774c37e8cSTimur Tabi * under the terms of the GNU General Public License as published by the
874c37e8cSTimur Tabi * Free Software Foundation; either version 2 of the License, or (at your
974c37e8cSTimur Tabi * option) any later version.
1074c37e8cSTimur Tabi */
11cda13dd1SPaul Gortmaker
12cda13dd1SPaul Gortmaker/dts-v1/;
13cda13dd1SPaul Gortmaker
1474c37e8cSTimur Tabi/ {
1574c37e8cSTimur Tabi	model = "MPC8349EMITX";
16d71a1dc6SKumar Gala	compatible = "MPC8349EMITX", "MPC834xMITX", "MPC83xxMITX";
1774c37e8cSTimur Tabi	#address-cells = <1>;
1874c37e8cSTimur Tabi	#size-cells = <1>;
1974c37e8cSTimur Tabi
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		pci1 = &pci1;
27ea082fa9SKumar Gala	};
28ea082fa9SKumar Gala
2974c37e8cSTimur Tabi	cpus {
3074c37e8cSTimur Tabi		#address-cells = <1>;
3174c37e8cSTimur Tabi		#size-cells = <0>;
3274c37e8cSTimur Tabi
3374c37e8cSTimur Tabi		PowerPC,8349@0 {
3474c37e8cSTimur Tabi			device_type = "cpu";
35cda13dd1SPaul Gortmaker			reg = <0x0>;
36cda13dd1SPaul Gortmaker			d-cache-line-size = <32>;
37cda13dd1SPaul Gortmaker			i-cache-line-size = <32>;
38cda13dd1SPaul Gortmaker			d-cache-size = <32768>;
39cda13dd1SPaul Gortmaker			i-cache-size = <32768>;
4074c37e8cSTimur Tabi			timebase-frequency = <0>;	// from bootloader
4174c37e8cSTimur Tabi			bus-frequency = <0>;		// from bootloader
4274c37e8cSTimur Tabi			clock-frequency = <0>;		// from bootloader
4374c37e8cSTimur Tabi		};
4474c37e8cSTimur Tabi	};
4574c37e8cSTimur Tabi
4674c37e8cSTimur Tabi	memory {
4774c37e8cSTimur Tabi		device_type = "memory";
48cda13dd1SPaul Gortmaker		reg = <0x00000000 0x10000000>;
4974c37e8cSTimur Tabi	};
5074c37e8cSTimur Tabi
5174c37e8cSTimur Tabi	soc8349@e0000000 {
5274c37e8cSTimur Tabi		#address-cells = <1>;
5374c37e8cSTimur Tabi		#size-cells = <1>;
5474c37e8cSTimur Tabi		device_type = "soc";
55cf0d19fbSKim Phillips		compatible = "simple-bus";
56cda13dd1SPaul Gortmaker		ranges = <0x0 0xe0000000 0x00100000>;
57cda13dd1SPaul Gortmaker		reg = <0xe0000000 0x00000200>;
5874c37e8cSTimur Tabi		bus-frequency = <0>;                    // from bootloader
5974c37e8cSTimur Tabi
6074c37e8cSTimur Tabi		wdt@200 {
6174c37e8cSTimur Tabi			device_type = "watchdog";
6274c37e8cSTimur Tabi			compatible = "mpc83xx_wdt";
63cda13dd1SPaul Gortmaker			reg = <0x200 0x100>;
6474c37e8cSTimur Tabi		};
6574c37e8cSTimur Tabi
6674c37e8cSTimur Tabi		i2c@3000 {
67ec9686c4SKumar Gala			#address-cells = <1>;
68ec9686c4SKumar Gala			#size-cells = <0>;
69ec9686c4SKumar Gala			cell-index = <0>;
7074c37e8cSTimur Tabi			compatible = "fsl-i2c";
71cda13dd1SPaul Gortmaker			reg = <0x3000 0x100>;
72cda13dd1SPaul Gortmaker			interrupts = <14 0x8>;
73d71a1dc6SKumar Gala			interrupt-parent = <&ipic>;
7474c37e8cSTimur Tabi			dfsrr;
7574c37e8cSTimur Tabi		};
7674c37e8cSTimur Tabi
7774c37e8cSTimur Tabi		i2c@3100 {
78ec9686c4SKumar Gala			#address-cells = <1>;
79ec9686c4SKumar Gala			#size-cells = <0>;
80ec9686c4SKumar Gala			cell-index = <1>;
8174c37e8cSTimur Tabi			compatible = "fsl-i2c";
82cda13dd1SPaul Gortmaker			reg = <0x3100 0x100>;
83cda13dd1SPaul Gortmaker			interrupts = <15 0x8>;
84d71a1dc6SKumar Gala			interrupt-parent = <&ipic>;
8574c37e8cSTimur Tabi			dfsrr;
8674c37e8cSTimur Tabi		};
8774c37e8cSTimur Tabi
8874c37e8cSTimur Tabi		spi@7000 {
89f3a2b29dSAnton Vorontsov			cell-index = <0>;
90f3a2b29dSAnton Vorontsov			compatible = "fsl,spi";
91cda13dd1SPaul Gortmaker			reg = <0x7000 0x1000>;
92cda13dd1SPaul Gortmaker			interrupts = <16 0x8>;
93d71a1dc6SKumar Gala			interrupt-parent = <&ipic>;
9433799e33SPeter Korsgaard			mode = "cpu";
9574c37e8cSTimur Tabi		};
9674c37e8cSTimur Tabi
97dee80553SKumar Gala		dma@82a8 {
98dee80553SKumar Gala			#address-cells = <1>;
99dee80553SKumar Gala			#size-cells = <1>;
100dee80553SKumar Gala			compatible = "fsl,mpc8349-dma", "fsl,elo-dma";
101dee80553SKumar Gala			reg = <0x82a8 4>;
102dee80553SKumar Gala			ranges = <0 0x8100 0x1a8>;
103dee80553SKumar Gala			interrupt-parent = <&ipic>;
104dee80553SKumar Gala			interrupts = <71 8>;
105dee80553SKumar Gala			cell-index = <0>;
106dee80553SKumar Gala			dma-channel@0 {
107dee80553SKumar Gala				compatible = "fsl,mpc8349-dma-channel", "fsl,elo-dma-channel";
108dee80553SKumar Gala				reg = <0 0x80>;
109aeb42762SKumar Gala				cell-index = <0>;
110dee80553SKumar Gala				interrupt-parent = <&ipic>;
111dee80553SKumar Gala				interrupts = <71 8>;
112dee80553SKumar Gala			};
113dee80553SKumar Gala			dma-channel@80 {
114dee80553SKumar Gala				compatible = "fsl,mpc8349-dma-channel", "fsl,elo-dma-channel";
115dee80553SKumar Gala				reg = <0x80 0x80>;
116aeb42762SKumar Gala				cell-index = <1>;
117dee80553SKumar Gala				interrupt-parent = <&ipic>;
118dee80553SKumar Gala				interrupts = <71 8>;
119dee80553SKumar Gala			};
120dee80553SKumar Gala			dma-channel@100 {
121dee80553SKumar Gala				compatible = "fsl,mpc8349-dma-channel", "fsl,elo-dma-channel";
122dee80553SKumar Gala				reg = <0x100 0x80>;
123aeb42762SKumar Gala				cell-index = <2>;
124dee80553SKumar Gala				interrupt-parent = <&ipic>;
125dee80553SKumar Gala				interrupts = <71 8>;
126dee80553SKumar Gala			};
127dee80553SKumar Gala			dma-channel@180 {
128dee80553SKumar Gala				compatible = "fsl,mpc8349-dma-channel", "fsl,elo-dma-channel";
129dee80553SKumar Gala				reg = <0x180 0x28>;
130aeb42762SKumar Gala				cell-index = <3>;
131dee80553SKumar Gala				interrupt-parent = <&ipic>;
132dee80553SKumar Gala				interrupts = <71 8>;
133dee80553SKumar Gala			};
134dee80553SKumar Gala		};
135dee80553SKumar Gala
13674c37e8cSTimur Tabi		usb@22000 {
13774c37e8cSTimur Tabi			compatible = "fsl-usb2-mph";
138cda13dd1SPaul Gortmaker			reg = <0x22000 0x1000>;
13974c37e8cSTimur Tabi			#address-cells = <1>;
14074c37e8cSTimur Tabi			#size-cells = <0>;
141d71a1dc6SKumar Gala			interrupt-parent = <&ipic>;
142cda13dd1SPaul Gortmaker			interrupts = <39 0x8>;
14374c37e8cSTimur Tabi			phy_type = "ulpi";
14474c37e8cSTimur Tabi			port1;
14574c37e8cSTimur Tabi		};
14674c37e8cSTimur Tabi
14774c37e8cSTimur Tabi		usb@23000 {
14874c37e8cSTimur Tabi			compatible = "fsl-usb2-dr";
149cda13dd1SPaul Gortmaker			reg = <0x23000 0x1000>;
15074c37e8cSTimur Tabi			#address-cells = <1>;
15174c37e8cSTimur Tabi			#size-cells = <0>;
152d71a1dc6SKumar Gala			interrupt-parent = <&ipic>;
153cda13dd1SPaul Gortmaker			interrupts = <38 0x8>;
154f93c7c5aSjacmet@sunsite.dk			dr_mode = "peripheral";
15574c37e8cSTimur Tabi			phy_type = "ulpi";
15674c37e8cSTimur Tabi		};
15774c37e8cSTimur Tabi
15874c37e8cSTimur Tabi		mdio@24520 {
15974c37e8cSTimur Tabi			#address-cells = <1>;
16074c37e8cSTimur Tabi			#size-cells = <0>;
161e77b28ebSKumar Gala			compatible = "fsl,gianfar-mdio";
162cda13dd1SPaul Gortmaker			reg = <0x24520 0x20>;
16374c37e8cSTimur Tabi
16474c37e8cSTimur Tabi			/* Vitesse 8201 */
165d71a1dc6SKumar Gala			phy1c: ethernet-phy@1c {
166d71a1dc6SKumar Gala				interrupt-parent = <&ipic>;
167cda13dd1SPaul Gortmaker				interrupts = <18 0x8>;
168cda13dd1SPaul Gortmaker				reg = <0x1c>;
16974c37e8cSTimur Tabi				device_type = "ethernet-phy";
17074c37e8cSTimur Tabi			};
17174c37e8cSTimur Tabi		};
17274c37e8cSTimur Tabi
173e77b28ebSKumar Gala		enet0: ethernet@24000 {
174e77b28ebSKumar Gala			cell-index = <0>;
17574c37e8cSTimur Tabi			device_type = "network";
17674c37e8cSTimur Tabi			model = "TSEC";
17774c37e8cSTimur Tabi			compatible = "gianfar";
178cda13dd1SPaul Gortmaker			reg = <0x24000 0x1000>;
17974c37e8cSTimur Tabi			local-mac-address = [ 00 00 00 00 00 00 ];
180cda13dd1SPaul Gortmaker			interrupts = <32 0x8 33 0x8 34 0x8>;
181d71a1dc6SKumar Gala			interrupt-parent = <&ipic>;
182d71a1dc6SKumar Gala			phy-handle = <&phy1c>;
183ad25a4ccSGrant Likely			linux,network-index = <0>;
18474c37e8cSTimur Tabi		};
18574c37e8cSTimur Tabi
186e77b28ebSKumar Gala		enet1: ethernet@25000 {
187e77b28ebSKumar Gala			cell-index = <1>;
18874c37e8cSTimur Tabi			device_type = "network";
18974c37e8cSTimur Tabi			model = "TSEC";
19074c37e8cSTimur Tabi			compatible = "gianfar";
191cda13dd1SPaul Gortmaker			reg = <0x25000 0x1000>;
19274c37e8cSTimur Tabi			local-mac-address = [ 00 00 00 00 00 00 ];
193cda13dd1SPaul Gortmaker			interrupts = <35 0x8 36 0x8 37 0x8>;
194d71a1dc6SKumar Gala			interrupt-parent = <&ipic>;
195e3000765SVitaly Bordug			/* Vitesse 7385 isn't on the MDIO bus */
196cda13dd1SPaul Gortmaker			fixed-link = <1 1 1000 0 0>;
197ad25a4ccSGrant Likely			linux,network-index = <1>;
19874c37e8cSTimur Tabi		};
19974c37e8cSTimur Tabi
200ea082fa9SKumar Gala		serial0: serial@4500 {
201ea082fa9SKumar Gala			cell-index = <0>;
20274c37e8cSTimur Tabi			device_type = "serial";
20374c37e8cSTimur Tabi			compatible = "ns16550";
204cda13dd1SPaul Gortmaker			reg = <0x4500 0x100>;
20574c37e8cSTimur Tabi			clock-frequency = <0>;		// from bootloader
206cda13dd1SPaul Gortmaker			interrupts = <9 0x8>;
207d71a1dc6SKumar Gala			interrupt-parent = <&ipic>;
20874c37e8cSTimur Tabi		};
20974c37e8cSTimur Tabi
210ea082fa9SKumar Gala		serial1: serial@4600 {
211ea082fa9SKumar Gala			cell-index = <1>;
21274c37e8cSTimur Tabi			device_type = "serial";
21374c37e8cSTimur Tabi			compatible = "ns16550";
214cda13dd1SPaul Gortmaker			reg = <0x4600 0x100>;
21574c37e8cSTimur Tabi			clock-frequency = <0>;		// from bootloader
216cda13dd1SPaul Gortmaker			interrupts = <10 0x8>;
217d71a1dc6SKumar Gala			interrupt-parent = <&ipic>;
21874c37e8cSTimur Tabi		};
21974c37e8cSTimur Tabi
22074c37e8cSTimur Tabi		crypto@30000 {
2213fd44736SKim Phillips			compatible = "fsl,sec2.0";
222cda13dd1SPaul Gortmaker			reg = <0x30000 0x10000>;
223cda13dd1SPaul Gortmaker			interrupts = <11 0x8>;
224d71a1dc6SKumar Gala			interrupt-parent = <&ipic>;
2253fd44736SKim Phillips			fsl,num-channels = <4>;
2263fd44736SKim Phillips			fsl,channel-fifo-len = <24>;
2273fd44736SKim Phillips			fsl,exec-units-mask = <0x7e>;
2283fd44736SKim Phillips			fsl,descriptor-types-mask = <0x01010ebf>;
22974c37e8cSTimur Tabi		};
23074c37e8cSTimur Tabi
231d71a1dc6SKumar Gala		ipic: pic@700 {
23274c37e8cSTimur Tabi			interrupt-controller;
23374c37e8cSTimur Tabi			#address-cells = <0>;
23474c37e8cSTimur Tabi			#interrupt-cells = <2>;
235cda13dd1SPaul Gortmaker			reg = <0x700 0x100>;
23674c37e8cSTimur Tabi			device_type = "ipic";
23774c37e8cSTimur Tabi		};
23874c37e8cSTimur Tabi	};
2391b3c5cdaSKumar Gala
240ea082fa9SKumar Gala	pci0: pci@e0008500 {
241ea082fa9SKumar Gala		cell-index = <1>;
242cda13dd1SPaul Gortmaker		interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
2431b3c5cdaSKumar Gala		interrupt-map = <
2441b3c5cdaSKumar Gala				/* IDSEL 0x10 - SATA */
245cda13dd1SPaul Gortmaker				0x8000 0x0 0x0 0x1 &ipic 22 0x8 /* SATA_INTA */
2461b3c5cdaSKumar Gala				>;
2471b3c5cdaSKumar Gala		interrupt-parent = <&ipic>;
248cda13dd1SPaul Gortmaker		interrupts = <66 0x8>;
249cda13dd1SPaul Gortmaker		bus-range = <0x0 0x0>;
250cda13dd1SPaul Gortmaker		ranges = <0x42000000 0x0 0x80000000 0x80000000 0x0 0x10000000
251cda13dd1SPaul Gortmaker			  0x02000000 0x0 0x90000000 0x90000000 0x0 0x10000000
252cda13dd1SPaul Gortmaker			  0x01000000 0x0 0x00000000 0xe2000000 0x0 0x01000000>;
253cda13dd1SPaul Gortmaker		clock-frequency = <66666666>;
2541b3c5cdaSKumar Gala		#interrupt-cells = <1>;
2551b3c5cdaSKumar Gala		#size-cells = <2>;
2561b3c5cdaSKumar Gala		#address-cells = <3>;
257cda13dd1SPaul Gortmaker		reg = <0xe0008500 0x100>;
2581b3c5cdaSKumar Gala		compatible = "fsl,mpc8349-pci";
2591b3c5cdaSKumar Gala		device_type = "pci";
2601b3c5cdaSKumar Gala	};
2611b3c5cdaSKumar Gala
262ea082fa9SKumar Gala	pci1: pci@e0008600 {
263ea082fa9SKumar Gala		cell-index = <2>;
264cda13dd1SPaul Gortmaker		interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
2651b3c5cdaSKumar Gala		interrupt-map = <
2661b3c5cdaSKumar Gala				/* IDSEL 0x0E - MiniPCI Slot */
267cda13dd1SPaul Gortmaker				0x7000 0x0 0x0 0x1 &ipic 21 0x8 /* PCI_INTA */
2681b3c5cdaSKumar Gala
2691b3c5cdaSKumar Gala				/* IDSEL 0x0F - PCI Slot */
270cda13dd1SPaul Gortmaker				0x7800 0x0 0x0 0x1 &ipic 20 0x8 /* PCI_INTA */
271cda13dd1SPaul Gortmaker				0x7800 0x0 0x0 0x2 &ipic 21 0x8 /* PCI_INTB */
2721b3c5cdaSKumar Gala				>;
2731b3c5cdaSKumar Gala		interrupt-parent = <&ipic>;
274cda13dd1SPaul Gortmaker		interrupts = <67 0x8>;
275cda13dd1SPaul Gortmaker		bus-range = <0x0 0x0>;
276cda13dd1SPaul Gortmaker		ranges = <0x42000000 0x0 0xa0000000 0xa0000000 0x0 0x10000000
277cda13dd1SPaul Gortmaker			  0x02000000 0x0 0xb0000000 0xb0000000 0x0 0x10000000
278cda13dd1SPaul Gortmaker			  0x01000000 0x0 0x00000000 0xe3000000 0x0 0x01000000>;
279cda13dd1SPaul Gortmaker		clock-frequency = <66666666>;
2801b3c5cdaSKumar Gala		#interrupt-cells = <1>;
2811b3c5cdaSKumar Gala		#size-cells = <2>;
2821b3c5cdaSKumar Gala		#address-cells = <3>;
283cda13dd1SPaul Gortmaker		reg = <0xe0008600 0x100>;
2841b3c5cdaSKumar Gala		compatible = "fsl,mpc8349-pci";
2851b3c5cdaSKumar Gala		device_type = "pci";
2861b3c5cdaSKumar Gala	};
2871b3c5cdaSKumar Gala
2889b6d19ddSAnton Vorontsov	localbus@e0005000 {
2899b6d19ddSAnton Vorontsov		#address-cells = <2>;
2909b6d19ddSAnton Vorontsov		#size-cells = <1>;
2919b6d19ddSAnton Vorontsov		compatible = "fsl,mpc8349e-localbus",
2929b6d19ddSAnton Vorontsov			     "fsl,pq2pro-localbus";
293cda13dd1SPaul Gortmaker		reg = <0xe0005000 0xd8>;
294cda13dd1SPaul Gortmaker		ranges = <0x3 0x0 0xf0000000 0x210>;
2951b3c5cdaSKumar Gala
2969b6d19ddSAnton Vorontsov		pata@3,0 {
2979b6d19ddSAnton Vorontsov			compatible = "fsl,mpc8349emitx-pata", "ata-generic";
298cda13dd1SPaul Gortmaker			reg = <0x3 0x0 0x10 0x3 0x20c 0x4>;
2999b6d19ddSAnton Vorontsov			reg-shift = <1>;
3009b6d19ddSAnton Vorontsov			pio-mode = <6>;
301cda13dd1SPaul Gortmaker			interrupts = <23 0x8>;
3029b6d19ddSAnton Vorontsov			interrupt-parent = <&ipic>;
3039b6d19ddSAnton Vorontsov		};
3049b6d19ddSAnton Vorontsov	};
30574c37e8cSTimur Tabi};
306