Linux Audio

Check our new training course

Loading...
v6.2
  1// SPDX-License-Identifier: GPL-2.0-or-later
  2/*
  3 * MPC885 ADS Device Tree Source
  4 *
  5 * Copyright 2006 MontaVista Software, Inc.
  6 * Copyright 2007,2008 Freescale Semiconductor, Inc.
 
 
 
 
 
  7 */
  8
  9/dts-v1/;
 10
 11/ {
 12	model = "MPC885ADS";
 13	compatible = "fsl,mpc885ads";
 14	#address-cells = <1>;
 15	#size-cells = <1>;
 16
 17	cpus {
 18		#address-cells = <1>;
 19		#size-cells = <0>;
 20
 21		PowerPC,885@0 {
 22			device_type = "cpu";
 23			reg = <0x0>;
 24			d-cache-line-size = <16>;
 25			i-cache-line-size = <16>;
 26			d-cache-size = <8192>;
 27			i-cache-size = <8192>;
 28			timebase-frequency = <0>;
 29			bus-frequency = <0>;
 30			clock-frequency = <0>;
 31			interrupts = <15 2>;	// decrementer interrupt
 32			interrupt-parent = <&PIC>;
 33		};
 34	};
 35
 36	memory {
 37		device_type = "memory";
 38		reg = <0x0 0x0>;
 39	};
 40
 41	localbus@ff000100 {
 42		compatible = "fsl,mpc885-localbus", "fsl,pq1-localbus";
 43		#address-cells = <2>;
 44		#size-cells = <1>;
 45		reg = <0xff000100 0x40>;
 46
 47		ranges = <
 48			0x0 0x0 0xfe000000 0x800000
 49			0x1 0x0 0xff080000 0x8000
 50			0x5 0x0 0xff0a0000 0x8000
 51		>;
 52
 53		flash@0,0 {
 54			compatible = "jedec-flash";
 55			reg = <0x0 0x0 0x800000>;
 56			bank-width = <4>;
 57			device-width = <1>;
 58		};
 59
 60		board-control@1,0 {
 61			reg = <0x1 0x0 0x20 0x5 0x300 0x4>;
 62			compatible = "fsl,mpc885ads-bcsr";
 63		};
 64	};
 65
 66	soc@ff000000 {
 67		compatible = "fsl,mpc885", "fsl,pq1-soc";
 68		#address-cells = <1>;
 69		#size-cells = <1>;
 70		device_type = "soc";
 71		ranges = <0x0 0xff000000 0x28000>;
 72		bus-frequency = <0>;
 73
 74		// Temporary -- will go away once kernel uses ranges for get_immrbase().
 75		reg = <0xff000000 0x4000>;
 76
 77		mdio@e00 {
 78			compatible = "fsl,mpc885-fec-mdio", "fsl,pq1-fec-mdio";
 79			reg = <0xe00 0x188>;
 80			#address-cells = <1>;
 81			#size-cells = <0>;
 82
 83			PHY0: ethernet-phy@0 {
 84				reg = <0x0>;
 
 85			};
 86
 87			PHY1: ethernet-phy@1 {
 88				reg = <0x1>;
 
 89			};
 90
 91			PHY2: ethernet-phy@2 {
 92				reg = <0x2>;
 
 93			};
 94		};
 95
 96		ethernet@e00 {
 97			device_type = "network";
 98			compatible = "fsl,mpc885-fec-enet",
 99			             "fsl,pq1-fec-enet";
100			reg = <0xe00 0x188>;
101			local-mac-address = [ 00 00 00 00 00 00 ];
102			interrupts = <3 1>;
103			interrupt-parent = <&PIC>;
104			phy-handle = <&PHY0>;
105			linux,network-index = <0>;
106		};
107
108		ethernet@1e00 {
109			device_type = "network";
110			compatible = "fsl,mpc885-fec-enet",
111			             "fsl,pq1-fec-enet";
112			reg = <0x1e00 0x188>;
113			local-mac-address = [ 00 00 00 00 00 00 ];
114			interrupts = <7 1>;
115			interrupt-parent = <&PIC>;
116			phy-handle = <&PHY1>;
117			linux,network-index = <1>;
118		};
119
120		PIC: interrupt-controller@0 {
121			interrupt-controller;
122			#interrupt-cells = <2>;
123			reg = <0x0 0x24>;
124			compatible = "fsl,mpc885-pic", "fsl,pq1-pic";
125		};
126
127		pcmcia@80 {
128			#address-cells = <3>;
129			#interrupt-cells = <1>;
130			#size-cells = <2>;
131			compatible = "fsl,pq-pcmcia";
132			device_type = "pcmcia";
133			reg = <0x80 0x80>;
134			interrupt-parent = <&PIC>;
135			interrupts = <13 1>;
136		};
137
138		cpm@9c0 {
139			#address-cells = <1>;
140			#size-cells = <1>;
141			compatible = "fsl,mpc885-cpm", "fsl,cpm1";
142			command-proc = <0x9c0>;
143			interrupts = <0>;	// cpm error interrupt
144			interrupt-parent = <&CPM_PIC>;
145			reg = <0x9c0 0x40>;
146			ranges;
147
148			muram@2000 {
149				#address-cells = <1>;
150				#size-cells = <1>;
151				ranges = <0x0 0x2000 0x2000>;
152
153				data@0 {
154					compatible = "fsl,cpm-muram-data";
155					reg = <0x0 0x1c00>;
156				};
157			};
158
159			brg@9f0 {
160				compatible = "fsl,mpc885-brg",
161				             "fsl,cpm1-brg",
162				             "fsl,cpm-brg";
163				clock-frequency = <0>;
164				reg = <0x9f0 0x10>;
165			};
166
167			CPM_PIC: interrupt-controller@930 {
168				interrupt-controller;
169				#interrupt-cells = <1>;
170				interrupts = <5 2 0 2>;
171				interrupt-parent = <&PIC>;
172				reg = <0x930 0x20>;
173				compatible = "fsl,mpc885-cpm-pic",
174				             "fsl,cpm1-pic";
175			};
176
177			serial@a80 {
178				device_type = "serial";
179				compatible = "fsl,mpc885-smc-uart",
180				             "fsl,cpm1-smc-uart";
181				reg = <0xa80 0x10 0x3e80 0x40>;
182				interrupts = <4>;
183				interrupt-parent = <&CPM_PIC>;
184				fsl,cpm-brg = <1>;
185				fsl,cpm-command = <0x90>;
186			};
187
188			serial@a90 {
189				device_type = "serial";
190				compatible = "fsl,mpc885-smc-uart",
191				             "fsl,cpm1-smc-uart";
192				reg = <0xa90 0x10 0x3f80 0x40>;
193				interrupts = <3>;
194				interrupt-parent = <&CPM_PIC>;
195				fsl,cpm-brg = <2>;
196				fsl,cpm-command = <0xd0>;
197			};
198
199			ethernet@a40 {
200				device_type = "network";
201				compatible = "fsl,mpc885-scc-enet",
202				             "fsl,cpm1-scc-enet";
203				reg = <0xa40 0x18 0x3e00 0x100>;
204				local-mac-address = [ 00 00 00 00 00 00 ];
205				interrupts = <28>;
206				interrupt-parent = <&CPM_PIC>;
207				phy-handle = <&PHY2>;
208				fsl,cpm-command = <0x80>;
209				linux,network-index = <2>;
210			};
211
212			i2c@860 {
213				compatible = "fsl,mpc885-i2c",
214					     "fsl,cpm1-i2c";
215				reg = <0x860 0x20 0x3c80 0x30>;
216				interrupts = <16>;
217				interrupt-parent = <&CPM_PIC>;
218				fsl,cpm-command = <0x10>;
219				#address-cells = <1>;
220				#size-cells = <0>;
221			};
222		};
223
224		crypto@20000 {
225			compatible = "fsl,sec1.2", "fsl,sec1.0";
226			reg = <0x20000 0x8000>;
227			interrupts = <1 1>;
228			interrupt-parent = <&PIC>;
229			fsl,num-channels = <1>;
230			fsl,channel-fifo-len = <24>;
231			fsl,exec-units-mask = <0x4c>;
232			fsl,descriptor-types-mask = <0x05000154>;
233		};
234	};
235
236	chosen {
237		stdout-path = "/soc/cpm/serial@a80";
238	};
239};
v3.5.6
 
  1/*
  2 * MPC885 ADS Device Tree Source
  3 *
  4 * Copyright 2006 MontaVista Software, Inc.
  5 * Copyright 2007,2008 Freescale Semiconductor, Inc.
  6 *
  7 * This program is free software; you can redistribute  it and/or modify it
  8 * under  the terms of  the GNU General  Public License as published by the
  9 * Free Software Foundation;  either version 2 of the  License, or (at your
 10 * option) any later version.
 11 */
 12
 13/dts-v1/;
 14
 15/ {
 16	model = "MPC885ADS";
 17	compatible = "fsl,mpc885ads";
 18	#address-cells = <1>;
 19	#size-cells = <1>;
 20
 21	cpus {
 22		#address-cells = <1>;
 23		#size-cells = <0>;
 24
 25		PowerPC,885@0 {
 26			device_type = "cpu";
 27			reg = <0x0>;
 28			d-cache-line-size = <16>;
 29			i-cache-line-size = <16>;
 30			d-cache-size = <8192>;
 31			i-cache-size = <8192>;
 32			timebase-frequency = <0>;
 33			bus-frequency = <0>;
 34			clock-frequency = <0>;
 35			interrupts = <15 2>;	// decrementer interrupt
 36			interrupt-parent = <&PIC>;
 37		};
 38	};
 39
 40	memory {
 41		device_type = "memory";
 42		reg = <0x0 0x0>;
 43	};
 44
 45	localbus@ff000100 {
 46		compatible = "fsl,mpc885-localbus", "fsl,pq1-localbus";
 47		#address-cells = <2>;
 48		#size-cells = <1>;
 49		reg = <0xff000100 0x40>;
 50
 51		ranges = <
 52			0x0 0x0 0xfe000000 0x800000
 53			0x1 0x0 0xff080000 0x8000
 54			0x5 0x0 0xff0a0000 0x8000
 55		>;
 56
 57		flash@0,0 {
 58			compatible = "jedec-flash";
 59			reg = <0x0 0x0 0x800000>;
 60			bank-width = <4>;
 61			device-width = <1>;
 62		};
 63
 64		board-control@1,0 {
 65			reg = <0x1 0x0 0x20 0x5 0x300 0x4>;
 66			compatible = "fsl,mpc885ads-bcsr";
 67		};
 68	};
 69
 70	soc@ff000000 {
 71		compatible = "fsl,mpc885", "fsl,pq1-soc";
 72		#address-cells = <1>;
 73		#size-cells = <1>;
 74		device_type = "soc";
 75		ranges = <0x0 0xff000000 0x4000>;
 76		bus-frequency = <0>;
 77
 78		// Temporary -- will go away once kernel uses ranges for get_immrbase().
 79		reg = <0xff000000 0x4000>;
 80
 81		mdio@e00 {
 82			compatible = "fsl,mpc885-fec-mdio", "fsl,pq1-fec-mdio";
 83			reg = <0xe00 0x188>;
 84			#address-cells = <1>;
 85			#size-cells = <0>;
 86
 87			PHY0: ethernet-phy@0 {
 88				reg = <0x0>;
 89				device_type = "ethernet-phy";
 90			};
 91
 92			PHY1: ethernet-phy@1 {
 93				reg = <0x1>;
 94				device_type = "ethernet-phy";
 95			};
 96
 97			PHY2: ethernet-phy@2 {
 98				reg = <0x2>;
 99				device_type = "ethernet-phy";
100			};
101		};
102
103		ethernet@e00 {
104			device_type = "network";
105			compatible = "fsl,mpc885-fec-enet",
106			             "fsl,pq1-fec-enet";
107			reg = <0xe00 0x188>;
108			local-mac-address = [ 00 00 00 00 00 00 ];
109			interrupts = <3 1>;
110			interrupt-parent = <&PIC>;
111			phy-handle = <&PHY0>;
112			linux,network-index = <0>;
113		};
114
115		ethernet@1e00 {
116			device_type = "network";
117			compatible = "fsl,mpc885-fec-enet",
118			             "fsl,pq1-fec-enet";
119			reg = <0x1e00 0x188>;
120			local-mac-address = [ 00 00 00 00 00 00 ];
121			interrupts = <7 1>;
122			interrupt-parent = <&PIC>;
123			phy-handle = <&PHY1>;
124			linux,network-index = <1>;
125		};
126
127		PIC: interrupt-controller@0 {
128			interrupt-controller;
129			#interrupt-cells = <2>;
130			reg = <0x0 0x24>;
131			compatible = "fsl,mpc885-pic", "fsl,pq1-pic";
132		};
133
134		pcmcia@80 {
135			#address-cells = <3>;
136			#interrupt-cells = <1>;
137			#size-cells = <2>;
138			compatible = "fsl,pq-pcmcia";
139			device_type = "pcmcia";
140			reg = <0x80 0x80>;
141			interrupt-parent = <&PIC>;
142			interrupts = <13 1>;
143		};
144
145		cpm@9c0 {
146			#address-cells = <1>;
147			#size-cells = <1>;
148			compatible = "fsl,mpc885-cpm", "fsl,cpm1";
149			command-proc = <0x9c0>;
150			interrupts = <0>;	// cpm error interrupt
151			interrupt-parent = <&CPM_PIC>;
152			reg = <0x9c0 0x40>;
153			ranges;
154
155			muram@2000 {
156				#address-cells = <1>;
157				#size-cells = <1>;
158				ranges = <0x0 0x2000 0x2000>;
159
160				data@0 {
161					compatible = "fsl,cpm-muram-data";
162					reg = <0x0 0x1c00>;
163				};
164			};
165
166			brg@9f0 {
167				compatible = "fsl,mpc885-brg",
168				             "fsl,cpm1-brg",
169				             "fsl,cpm-brg";
170				clock-frequency = <0>;
171				reg = <0x9f0 0x10>;
172			};
173
174			CPM_PIC: interrupt-controller@930 {
175				interrupt-controller;
176				#interrupt-cells = <1>;
177				interrupts = <5 2 0 2>;
178				interrupt-parent = <&PIC>;
179				reg = <0x930 0x20>;
180				compatible = "fsl,mpc885-cpm-pic",
181				             "fsl,cpm1-pic";
182			};
183
184			serial@a80 {
185				device_type = "serial";
186				compatible = "fsl,mpc885-smc-uart",
187				             "fsl,cpm1-smc-uart";
188				reg = <0xa80 0x10 0x3e80 0x40>;
189				interrupts = <4>;
190				interrupt-parent = <&CPM_PIC>;
191				fsl,cpm-brg = <1>;
192				fsl,cpm-command = <0x90>;
193			};
194
195			serial@a90 {
196				device_type = "serial";
197				compatible = "fsl,mpc885-smc-uart",
198				             "fsl,cpm1-smc-uart";
199				reg = <0xa90 0x10 0x3f80 0x40>;
200				interrupts = <3>;
201				interrupt-parent = <&CPM_PIC>;
202				fsl,cpm-brg = <2>;
203				fsl,cpm-command = <0xd0>;
204			};
205
206			ethernet@a40 {
207				device_type = "network";
208				compatible = "fsl,mpc885-scc-enet",
209				             "fsl,cpm1-scc-enet";
210				reg = <0xa40 0x18 0x3e00 0x100>;
211				local-mac-address = [ 00 00 00 00 00 00 ];
212				interrupts = <28>;
213				interrupt-parent = <&CPM_PIC>;
214				phy-handle = <&PHY2>;
215				fsl,cpm-command = <0x80>;
216				linux,network-index = <2>;
217			};
218
219			i2c@860 {
220				compatible = "fsl,mpc885-i2c",
221					     "fsl,cpm1-i2c";
222				reg = <0x860 0x20 0x3c80 0x30>;
223				interrupts = <16>;
224				interrupt-parent = <&CPM_PIC>;
225				fsl,cpm-command = <0x10>;
226				#address-cells = <1>;
227				#size-cells = <0>;
228			};
229		};
 
 
 
 
 
 
 
 
 
 
 
230	};
231
232	chosen {
233		linux,stdout-path = "/soc/cpm/serial@a80";
234	};
235};