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>;
109dee80553SKumar Gala				interrupt-parent = <&ipic>;
110dee80553SKumar Gala				interrupts = <71 8>;
111dee80553SKumar Gala			};
112dee80553SKumar Gala			dma-channel@80 {
113dee80553SKumar Gala				compatible = "fsl,mpc8349-dma-channel", "fsl,elo-dma-channel";
114dee80553SKumar Gala				reg = <0x80 0x80>;
115dee80553SKumar Gala				interrupt-parent = <&ipic>;
116dee80553SKumar Gala				interrupts = <71 8>;
117dee80553SKumar Gala			};
118dee80553SKumar Gala			dma-channel@100 {
119dee80553SKumar Gala				compatible = "fsl,mpc8349-dma-channel", "fsl,elo-dma-channel";
120dee80553SKumar Gala				reg = <0x100 0x80>;
121dee80553SKumar Gala				interrupt-parent = <&ipic>;
122dee80553SKumar Gala				interrupts = <71 8>;
123dee80553SKumar Gala			};
124dee80553SKumar Gala			dma-channel@180 {
125dee80553SKumar Gala				compatible = "fsl,mpc8349-dma-channel", "fsl,elo-dma-channel";
126dee80553SKumar Gala				reg = <0x180 0x28>;
127dee80553SKumar Gala				interrupt-parent = <&ipic>;
128dee80553SKumar Gala				interrupts = <71 8>;
129dee80553SKumar Gala			};
130dee80553SKumar Gala		};
131dee80553SKumar Gala
13274c37e8cSTimur Tabi		usb@22000 {
13374c37e8cSTimur Tabi			compatible = "fsl-usb2-mph";
134cda13dd1SPaul Gortmaker			reg = <0x22000 0x1000>;
13574c37e8cSTimur Tabi			#address-cells = <1>;
13674c37e8cSTimur Tabi			#size-cells = <0>;
137d71a1dc6SKumar Gala			interrupt-parent = <&ipic>;
138cda13dd1SPaul Gortmaker			interrupts = <39 0x8>;
13974c37e8cSTimur Tabi			phy_type = "ulpi";
14074c37e8cSTimur Tabi			port1;
14174c37e8cSTimur Tabi		};
14274c37e8cSTimur Tabi
14374c37e8cSTimur Tabi		usb@23000 {
14474c37e8cSTimur Tabi			compatible = "fsl-usb2-dr";
145cda13dd1SPaul Gortmaker			reg = <0x23000 0x1000>;
14674c37e8cSTimur Tabi			#address-cells = <1>;
14774c37e8cSTimur Tabi			#size-cells = <0>;
148d71a1dc6SKumar Gala			interrupt-parent = <&ipic>;
149cda13dd1SPaul Gortmaker			interrupts = <38 0x8>;
150f93c7c5aSjacmet@sunsite.dk			dr_mode = "peripheral";
15174c37e8cSTimur Tabi			phy_type = "ulpi";
15274c37e8cSTimur Tabi		};
15374c37e8cSTimur Tabi
15474c37e8cSTimur Tabi		mdio@24520 {
15574c37e8cSTimur Tabi			#address-cells = <1>;
15674c37e8cSTimur Tabi			#size-cells = <0>;
157e77b28ebSKumar Gala			compatible = "fsl,gianfar-mdio";
158cda13dd1SPaul Gortmaker			reg = <0x24520 0x20>;
15974c37e8cSTimur Tabi
16074c37e8cSTimur Tabi			/* Vitesse 8201 */
161d71a1dc6SKumar Gala			phy1c: ethernet-phy@1c {
162d71a1dc6SKumar Gala				interrupt-parent = <&ipic>;
163cda13dd1SPaul Gortmaker				interrupts = <18 0x8>;
164cda13dd1SPaul Gortmaker				reg = <0x1c>;
16574c37e8cSTimur Tabi				device_type = "ethernet-phy";
16674c37e8cSTimur Tabi			};
16774c37e8cSTimur Tabi		};
16874c37e8cSTimur Tabi
169e77b28ebSKumar Gala		enet0: ethernet@24000 {
170e77b28ebSKumar Gala			cell-index = <0>;
17174c37e8cSTimur Tabi			device_type = "network";
17274c37e8cSTimur Tabi			model = "TSEC";
17374c37e8cSTimur Tabi			compatible = "gianfar";
174cda13dd1SPaul Gortmaker			reg = <0x24000 0x1000>;
17574c37e8cSTimur Tabi			local-mac-address = [ 00 00 00 00 00 00 ];
176cda13dd1SPaul Gortmaker			interrupts = <32 0x8 33 0x8 34 0x8>;
177d71a1dc6SKumar Gala			interrupt-parent = <&ipic>;
178d71a1dc6SKumar Gala			phy-handle = <&phy1c>;
179ad25a4ccSGrant Likely			linux,network-index = <0>;
18074c37e8cSTimur Tabi		};
18174c37e8cSTimur Tabi
182e77b28ebSKumar Gala		enet1: ethernet@25000 {
183e77b28ebSKumar Gala			cell-index = <1>;
18474c37e8cSTimur Tabi			device_type = "network";
18574c37e8cSTimur Tabi			model = "TSEC";
18674c37e8cSTimur Tabi			compatible = "gianfar";
187cda13dd1SPaul Gortmaker			reg = <0x25000 0x1000>;
18874c37e8cSTimur Tabi			local-mac-address = [ 00 00 00 00 00 00 ];
189cda13dd1SPaul Gortmaker			interrupts = <35 0x8 36 0x8 37 0x8>;
190d71a1dc6SKumar Gala			interrupt-parent = <&ipic>;
191e3000765SVitaly Bordug			/* Vitesse 7385 isn't on the MDIO bus */
192cda13dd1SPaul Gortmaker			fixed-link = <1 1 1000 0 0>;
193ad25a4ccSGrant Likely			linux,network-index = <1>;
19474c37e8cSTimur Tabi		};
19574c37e8cSTimur Tabi
196ea082fa9SKumar Gala		serial0: serial@4500 {
197ea082fa9SKumar Gala			cell-index = <0>;
19874c37e8cSTimur Tabi			device_type = "serial";
19974c37e8cSTimur Tabi			compatible = "ns16550";
200cda13dd1SPaul Gortmaker			reg = <0x4500 0x100>;
20174c37e8cSTimur Tabi			clock-frequency = <0>;		// from bootloader
202cda13dd1SPaul Gortmaker			interrupts = <9 0x8>;
203d71a1dc6SKumar Gala			interrupt-parent = <&ipic>;
20474c37e8cSTimur Tabi		};
20574c37e8cSTimur Tabi
206ea082fa9SKumar Gala		serial1: serial@4600 {
207ea082fa9SKumar Gala			cell-index = <1>;
20874c37e8cSTimur Tabi			device_type = "serial";
20974c37e8cSTimur Tabi			compatible = "ns16550";
210cda13dd1SPaul Gortmaker			reg = <0x4600 0x100>;
21174c37e8cSTimur Tabi			clock-frequency = <0>;		// from bootloader
212cda13dd1SPaul Gortmaker			interrupts = <10 0x8>;
213d71a1dc6SKumar Gala			interrupt-parent = <&ipic>;
21474c37e8cSTimur Tabi		};
21574c37e8cSTimur Tabi
21674c37e8cSTimur Tabi		crypto@30000 {
2173fd44736SKim Phillips			compatible = "fsl,sec2.0";
218cda13dd1SPaul Gortmaker			reg = <0x30000 0x10000>;
219cda13dd1SPaul Gortmaker			interrupts = <11 0x8>;
220d71a1dc6SKumar Gala			interrupt-parent = <&ipic>;
2213fd44736SKim Phillips			fsl,num-channels = <4>;
2223fd44736SKim Phillips			fsl,channel-fifo-len = <24>;
2233fd44736SKim Phillips			fsl,exec-units-mask = <0x7e>;
2243fd44736SKim Phillips			fsl,descriptor-types-mask = <0x01010ebf>;
22574c37e8cSTimur Tabi		};
22674c37e8cSTimur Tabi
227d71a1dc6SKumar Gala		ipic: pic@700 {
22874c37e8cSTimur Tabi			interrupt-controller;
22974c37e8cSTimur Tabi			#address-cells = <0>;
23074c37e8cSTimur Tabi			#interrupt-cells = <2>;
231cda13dd1SPaul Gortmaker			reg = <0x700 0x100>;
23274c37e8cSTimur Tabi			device_type = "ipic";
23374c37e8cSTimur Tabi		};
23474c37e8cSTimur Tabi	};
2351b3c5cdaSKumar Gala
236ea082fa9SKumar Gala	pci0: pci@e0008500 {
237ea082fa9SKumar Gala		cell-index = <1>;
238cda13dd1SPaul Gortmaker		interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
2391b3c5cdaSKumar Gala		interrupt-map = <
2401b3c5cdaSKumar Gala				/* IDSEL 0x10 - SATA */
241cda13dd1SPaul Gortmaker				0x8000 0x0 0x0 0x1 &ipic 22 0x8 /* SATA_INTA */
2421b3c5cdaSKumar Gala				>;
2431b3c5cdaSKumar Gala		interrupt-parent = <&ipic>;
244cda13dd1SPaul Gortmaker		interrupts = <66 0x8>;
245cda13dd1SPaul Gortmaker		bus-range = <0x0 0x0>;
246cda13dd1SPaul Gortmaker		ranges = <0x42000000 0x0 0x80000000 0x80000000 0x0 0x10000000
247cda13dd1SPaul Gortmaker			  0x02000000 0x0 0x90000000 0x90000000 0x0 0x10000000
248cda13dd1SPaul Gortmaker			  0x01000000 0x0 0x00000000 0xe2000000 0x0 0x01000000>;
249cda13dd1SPaul Gortmaker		clock-frequency = <66666666>;
2501b3c5cdaSKumar Gala		#interrupt-cells = <1>;
2511b3c5cdaSKumar Gala		#size-cells = <2>;
2521b3c5cdaSKumar Gala		#address-cells = <3>;
253cda13dd1SPaul Gortmaker		reg = <0xe0008500 0x100>;
2541b3c5cdaSKumar Gala		compatible = "fsl,mpc8349-pci";
2551b3c5cdaSKumar Gala		device_type = "pci";
2561b3c5cdaSKumar Gala	};
2571b3c5cdaSKumar Gala
258ea082fa9SKumar Gala	pci1: pci@e0008600 {
259ea082fa9SKumar Gala		cell-index = <2>;
260cda13dd1SPaul Gortmaker		interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
2611b3c5cdaSKumar Gala		interrupt-map = <
2621b3c5cdaSKumar Gala				/* IDSEL 0x0E - MiniPCI Slot */
263cda13dd1SPaul Gortmaker				0x7000 0x0 0x0 0x1 &ipic 21 0x8 /* PCI_INTA */
2641b3c5cdaSKumar Gala
2651b3c5cdaSKumar Gala				/* IDSEL 0x0F - PCI Slot */
266cda13dd1SPaul Gortmaker				0x7800 0x0 0x0 0x1 &ipic 20 0x8 /* PCI_INTA */
267cda13dd1SPaul Gortmaker				0x7800 0x0 0x0 0x2 &ipic 21 0x8 /* PCI_INTB */
2681b3c5cdaSKumar Gala				>;
2691b3c5cdaSKumar Gala		interrupt-parent = <&ipic>;
270cda13dd1SPaul Gortmaker		interrupts = <67 0x8>;
271cda13dd1SPaul Gortmaker		bus-range = <0x0 0x0>;
272cda13dd1SPaul Gortmaker		ranges = <0x42000000 0x0 0xa0000000 0xa0000000 0x0 0x10000000
273cda13dd1SPaul Gortmaker			  0x02000000 0x0 0xb0000000 0xb0000000 0x0 0x10000000
274cda13dd1SPaul Gortmaker			  0x01000000 0x0 0x00000000 0xe3000000 0x0 0x01000000>;
275cda13dd1SPaul Gortmaker		clock-frequency = <66666666>;
2761b3c5cdaSKumar Gala		#interrupt-cells = <1>;
2771b3c5cdaSKumar Gala		#size-cells = <2>;
2781b3c5cdaSKumar Gala		#address-cells = <3>;
279cda13dd1SPaul Gortmaker		reg = <0xe0008600 0x100>;
2801b3c5cdaSKumar Gala		compatible = "fsl,mpc8349-pci";
2811b3c5cdaSKumar Gala		device_type = "pci";
2821b3c5cdaSKumar Gala	};
2831b3c5cdaSKumar Gala
2849b6d19ddSAnton Vorontsov	localbus@e0005000 {
2859b6d19ddSAnton Vorontsov		#address-cells = <2>;
2869b6d19ddSAnton Vorontsov		#size-cells = <1>;
2879b6d19ddSAnton Vorontsov		compatible = "fsl,mpc8349e-localbus",
2889b6d19ddSAnton Vorontsov			     "fsl,pq2pro-localbus";
289cda13dd1SPaul Gortmaker		reg = <0xe0005000 0xd8>;
290cda13dd1SPaul Gortmaker		ranges = <0x3 0x0 0xf0000000 0x210>;
2911b3c5cdaSKumar Gala
2929b6d19ddSAnton Vorontsov		pata@3,0 {
2939b6d19ddSAnton Vorontsov			compatible = "fsl,mpc8349emitx-pata", "ata-generic";
294cda13dd1SPaul Gortmaker			reg = <0x3 0x0 0x10 0x3 0x20c 0x4>;
2959b6d19ddSAnton Vorontsov			reg-shift = <1>;
2969b6d19ddSAnton Vorontsov			pio-mode = <6>;
297cda13dd1SPaul Gortmaker			interrupts = <23 0x8>;
2989b6d19ddSAnton Vorontsov			interrupt-parent = <&ipic>;
2999b6d19ddSAnton Vorontsov		};
3009b6d19ddSAnton Vorontsov	};
30174c37e8cSTimur Tabi};
302