1*c66ec88fSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0-or-later
2*c66ec88fSEmmanuel Vadot/*
3*c66ec88fSEmmanuel Vadot * P1021 MDS Device Tree Source
4*c66ec88fSEmmanuel Vadot *
5*c66ec88fSEmmanuel Vadot * Copyright 2010,2012 Freescale Semiconductor Inc.
6*c66ec88fSEmmanuel Vadot */
7*c66ec88fSEmmanuel Vadot
8*c66ec88fSEmmanuel Vadot/include/ "p1021si-pre.dtsi"
9*c66ec88fSEmmanuel Vadot/ {
10*c66ec88fSEmmanuel Vadot	model = "fsl,P1021";
11*c66ec88fSEmmanuel Vadot	compatible = "fsl,P1021MDS";
12*c66ec88fSEmmanuel Vadot
13*c66ec88fSEmmanuel Vadot	aliases {
14*c66ec88fSEmmanuel Vadot		ethernet3 = &enet3;
15*c66ec88fSEmmanuel Vadot		ethernet4 = &enet4;
16*c66ec88fSEmmanuel Vadot	};
17*c66ec88fSEmmanuel Vadot
18*c66ec88fSEmmanuel Vadot	memory {
19*c66ec88fSEmmanuel Vadot		device_type = "memory";
20*c66ec88fSEmmanuel Vadot	};
21*c66ec88fSEmmanuel Vadot
22*c66ec88fSEmmanuel Vadot	lbc: localbus@ffe05000 {
23*c66ec88fSEmmanuel Vadot		reg = <0x0 0xffe05000 0x0 0x1000>;
24*c66ec88fSEmmanuel Vadot
25*c66ec88fSEmmanuel Vadot		/* NAND Flash, BCSR, PMC0/1*/
26*c66ec88fSEmmanuel Vadot		ranges = <0x0 0x0 0x0 0xfc000000 0x02000000
27*c66ec88fSEmmanuel Vadot			  0x1 0x0 0x0 0xf8000000 0x00008000
28*c66ec88fSEmmanuel Vadot			  0x2 0x0 0x0 0xf8010000 0x00020000
29*c66ec88fSEmmanuel Vadot			  0x3 0x0 0x0 0xf8020000 0x00020000>;
30*c66ec88fSEmmanuel Vadot
31*c66ec88fSEmmanuel Vadot		nand@0,0 {
32*c66ec88fSEmmanuel Vadot			#address-cells = <1>;
33*c66ec88fSEmmanuel Vadot			#size-cells = <1>;
34*c66ec88fSEmmanuel Vadot			compatible = "fsl,p1021-fcm-nand",
35*c66ec88fSEmmanuel Vadot				     "fsl,elbc-fcm-nand";
36*c66ec88fSEmmanuel Vadot			reg = <0x0 0x0 0x40000>;
37*c66ec88fSEmmanuel Vadot
38*c66ec88fSEmmanuel Vadot			partition@0 {
39*c66ec88fSEmmanuel Vadot				/* This location must not be altered  */
40*c66ec88fSEmmanuel Vadot				/* 1MB for u-boot Bootloader Image */
41*c66ec88fSEmmanuel Vadot				reg = <0x0 0x00100000>;
42*c66ec88fSEmmanuel Vadot				label = "NAND (RO) U-Boot Image";
43*c66ec88fSEmmanuel Vadot				read-only;
44*c66ec88fSEmmanuel Vadot			};
45*c66ec88fSEmmanuel Vadot
46*c66ec88fSEmmanuel Vadot			partition@100000 {
47*c66ec88fSEmmanuel Vadot				/* 1MB for DTB Image */
48*c66ec88fSEmmanuel Vadot				reg = <0x00100000 0x00100000>;
49*c66ec88fSEmmanuel Vadot				label = "NAND (RO) DTB Image";
50*c66ec88fSEmmanuel Vadot				read-only;
51*c66ec88fSEmmanuel Vadot			};
52*c66ec88fSEmmanuel Vadot
53*c66ec88fSEmmanuel Vadot			partition@200000 {
54*c66ec88fSEmmanuel Vadot				/* 4MB for Linux Kernel Image */
55*c66ec88fSEmmanuel Vadot				reg = <0x00200000 0x00400000>;
56*c66ec88fSEmmanuel Vadot				label = "NAND (RO) Linux Kernel Image";
57*c66ec88fSEmmanuel Vadot				read-only;
58*c66ec88fSEmmanuel Vadot			};
59*c66ec88fSEmmanuel Vadot
60*c66ec88fSEmmanuel Vadot			partition@600000 {
61*c66ec88fSEmmanuel Vadot				/* 5MB for Compressed Root file System Image */
62*c66ec88fSEmmanuel Vadot				reg = <0x00600000 0x00500000>;
63*c66ec88fSEmmanuel Vadot				label = "NAND (RO) Compressed RFS Image";
64*c66ec88fSEmmanuel Vadot				read-only;
65*c66ec88fSEmmanuel Vadot			};
66*c66ec88fSEmmanuel Vadot
67*c66ec88fSEmmanuel Vadot			partition@b00000 {
68*c66ec88fSEmmanuel Vadot				/* 6MB for JFFS2 based Root file System */
69*c66ec88fSEmmanuel Vadot				reg = <0x00a00000 0x00600000>;
70*c66ec88fSEmmanuel Vadot				label = "NAND (RW) JFFS2 Root File System";
71*c66ec88fSEmmanuel Vadot			};
72*c66ec88fSEmmanuel Vadot
73*c66ec88fSEmmanuel Vadot			partition@1100000 {
74*c66ec88fSEmmanuel Vadot				/* 14MB for JFFS2 based Root file System */
75*c66ec88fSEmmanuel Vadot				reg = <0x01100000 0x00e00000>;
76*c66ec88fSEmmanuel Vadot				label = "NAND (RW) Writable User area";
77*c66ec88fSEmmanuel Vadot			};
78*c66ec88fSEmmanuel Vadot
79*c66ec88fSEmmanuel Vadot			partition@1f00000 {
80*c66ec88fSEmmanuel Vadot				/* 1MB for microcode */
81*c66ec88fSEmmanuel Vadot				reg = <0x01f00000 0x00100000>;
82*c66ec88fSEmmanuel Vadot				label = "NAND (RO) QE Ucode";
83*c66ec88fSEmmanuel Vadot				read-only;
84*c66ec88fSEmmanuel Vadot			};
85*c66ec88fSEmmanuel Vadot		};
86*c66ec88fSEmmanuel Vadot
87*c66ec88fSEmmanuel Vadot		bcsr@1,0 {
88*c66ec88fSEmmanuel Vadot			#address-cells = <1>;
89*c66ec88fSEmmanuel Vadot			#size-cells = <1>;
90*c66ec88fSEmmanuel Vadot			compatible = "fsl,p1021mds-bcsr";
91*c66ec88fSEmmanuel Vadot			reg = <1 0 0x8000>;
92*c66ec88fSEmmanuel Vadot			ranges = <0 1 0 0x8000>;
93*c66ec88fSEmmanuel Vadot		};
94*c66ec88fSEmmanuel Vadot
95*c66ec88fSEmmanuel Vadot		pib@2,0 {
96*c66ec88fSEmmanuel Vadot			compatible = "fsl,p1021mds-pib";
97*c66ec88fSEmmanuel Vadot			reg = <2 0 0x10000>;
98*c66ec88fSEmmanuel Vadot		};
99*c66ec88fSEmmanuel Vadot
100*c66ec88fSEmmanuel Vadot		pib@3,0 {
101*c66ec88fSEmmanuel Vadot			compatible = "fsl,p1021mds-pib";
102*c66ec88fSEmmanuel Vadot			reg = <3 0 0x10000>;
103*c66ec88fSEmmanuel Vadot		};
104*c66ec88fSEmmanuel Vadot	};
105*c66ec88fSEmmanuel Vadot
106*c66ec88fSEmmanuel Vadot	soc: soc@ffe00000 {
107*c66ec88fSEmmanuel Vadot		compatible = "fsl,p1021-immr", "simple-bus";
108*c66ec88fSEmmanuel Vadot		ranges = <0x0 0x0 0xffe00000 0x100000>;
109*c66ec88fSEmmanuel Vadot
110*c66ec88fSEmmanuel Vadot		i2c@3000 {
111*c66ec88fSEmmanuel Vadot			rtc@68 {
112*c66ec88fSEmmanuel Vadot				compatible = "dallas,ds1374";
113*c66ec88fSEmmanuel Vadot				reg = <0x68>;
114*c66ec88fSEmmanuel Vadot			};
115*c66ec88fSEmmanuel Vadot		};
116*c66ec88fSEmmanuel Vadot
117*c66ec88fSEmmanuel Vadot		spi@7000 {
118*c66ec88fSEmmanuel Vadot
119*c66ec88fSEmmanuel Vadot			flash@0 {
120*c66ec88fSEmmanuel Vadot				#address-cells = <1>;
121*c66ec88fSEmmanuel Vadot				#size-cells = <1>;
122*c66ec88fSEmmanuel Vadot				compatible = "spansion,s25sl12801", "jedec,spi-nor";
123*c66ec88fSEmmanuel Vadot				reg = <0>;
124*c66ec88fSEmmanuel Vadot				spi-max-frequency = <40000000>; /* input clock */
125*c66ec88fSEmmanuel Vadot
126*c66ec88fSEmmanuel Vadot				partition@u-boot {
127*c66ec88fSEmmanuel Vadot					label = "u-boot-spi";
128*c66ec88fSEmmanuel Vadot					reg = <0x00000000 0x00100000>;
129*c66ec88fSEmmanuel Vadot					read-only;
130*c66ec88fSEmmanuel Vadot				};
131*c66ec88fSEmmanuel Vadot				partition@kernel {
132*c66ec88fSEmmanuel Vadot					label = "kernel-spi";
133*c66ec88fSEmmanuel Vadot					reg = <0x00100000 0x00500000>;
134*c66ec88fSEmmanuel Vadot					read-only;
135*c66ec88fSEmmanuel Vadot				};
136*c66ec88fSEmmanuel Vadot				partition@dtb {
137*c66ec88fSEmmanuel Vadot					label = "dtb-spi";
138*c66ec88fSEmmanuel Vadot					reg = <0x00600000 0x00100000>;
139*c66ec88fSEmmanuel Vadot					read-only;
140*c66ec88fSEmmanuel Vadot				};
141*c66ec88fSEmmanuel Vadot				partition@fs {
142*c66ec88fSEmmanuel Vadot					label = "file system-spi";
143*c66ec88fSEmmanuel Vadot					reg = <0x00700000 0x00900000>;
144*c66ec88fSEmmanuel Vadot				};
145*c66ec88fSEmmanuel Vadot			};
146*c66ec88fSEmmanuel Vadot		};
147*c66ec88fSEmmanuel Vadot
148*c66ec88fSEmmanuel Vadot		usb@22000 {
149*c66ec88fSEmmanuel Vadot			phy_type = "ulpi";
150*c66ec88fSEmmanuel Vadot			dr_mode = "host";
151*c66ec88fSEmmanuel Vadot		};
152*c66ec88fSEmmanuel Vadot
153*c66ec88fSEmmanuel Vadot		mdio@24000 {
154*c66ec88fSEmmanuel Vadot			phy0: ethernet-phy@0 {
155*c66ec88fSEmmanuel Vadot				interrupts = <1 1 0 0>;
156*c66ec88fSEmmanuel Vadot				reg = <0x0>;
157*c66ec88fSEmmanuel Vadot			};
158*c66ec88fSEmmanuel Vadot			phy1: ethernet-phy@1 {
159*c66ec88fSEmmanuel Vadot				interrupts = <2 1 0 0>;
160*c66ec88fSEmmanuel Vadot				reg = <0x1>;
161*c66ec88fSEmmanuel Vadot			};
162*c66ec88fSEmmanuel Vadot			phy4: ethernet-phy@4 {
163*c66ec88fSEmmanuel Vadot				reg = <0x4>;
164*c66ec88fSEmmanuel Vadot			};
165*c66ec88fSEmmanuel Vadot			tbi-phy@5 {
166*c66ec88fSEmmanuel Vadot				device_type = "tbi-phy";
167*c66ec88fSEmmanuel Vadot				reg = <0x5>;
168*c66ec88fSEmmanuel Vadot			};
169*c66ec88fSEmmanuel Vadot		};
170*c66ec88fSEmmanuel Vadot
171*c66ec88fSEmmanuel Vadot		mdio@25000 {
172*c66ec88fSEmmanuel Vadot			tbi0: tbi-phy@11 {
173*c66ec88fSEmmanuel Vadot				reg = <0x11>;
174*c66ec88fSEmmanuel Vadot				device_type = "tbi-phy";
175*c66ec88fSEmmanuel Vadot			};
176*c66ec88fSEmmanuel Vadot		};
177*c66ec88fSEmmanuel Vadot
178*c66ec88fSEmmanuel Vadot		ethernet@b0000 {
179*c66ec88fSEmmanuel Vadot			phy-handle = <&phy0>;
180*c66ec88fSEmmanuel Vadot			phy-connection-type = "rgmii-id";
181*c66ec88fSEmmanuel Vadot		};
182*c66ec88fSEmmanuel Vadot
183*c66ec88fSEmmanuel Vadot		ethernet@b1000 {
184*c66ec88fSEmmanuel Vadot			phy-handle = <&phy4>;
185*c66ec88fSEmmanuel Vadot			tbi-handle = <&tbi0>;
186*c66ec88fSEmmanuel Vadot			phy-connection-type = "sgmii";
187*c66ec88fSEmmanuel Vadot		};
188*c66ec88fSEmmanuel Vadot
189*c66ec88fSEmmanuel Vadot		ethernet@b2000 {
190*c66ec88fSEmmanuel Vadot			phy-handle = <&phy1>;
191*c66ec88fSEmmanuel Vadot			phy-connection-type = "rgmii-id";
192*c66ec88fSEmmanuel Vadot		};
193*c66ec88fSEmmanuel Vadot
194*c66ec88fSEmmanuel Vadot		par_io@e0100 {
195*c66ec88fSEmmanuel Vadot			#address-cells = <1>;
196*c66ec88fSEmmanuel Vadot			#size-cells = <1>;
197*c66ec88fSEmmanuel Vadot			reg = <0xe0100 0x60>;
198*c66ec88fSEmmanuel Vadot			ranges = <0x0 0xe0100 0x60>;
199*c66ec88fSEmmanuel Vadot			device_type = "par_io";
200*c66ec88fSEmmanuel Vadot			num-ports = <3>;
201*c66ec88fSEmmanuel Vadot			pio1: ucc_pin@1 {
202*c66ec88fSEmmanuel Vadot				pio-map = <
203*c66ec88fSEmmanuel Vadot			/* port  pin  dir  open_drain  assignment  has_irq */
204*c66ec88fSEmmanuel Vadot					0x1  0x13 0x1  0x0  0x1  0x0    /* QE_MUX_MDC */
205*c66ec88fSEmmanuel Vadot					0x1  0x14 0x3  0x0  0x1  0x0    /* QE_MUX_MDIO */
206*c66ec88fSEmmanuel Vadot					0x0  0x17 0x2  0x0  0x2  0x0    /* CLK12 */
207*c66ec88fSEmmanuel Vadot					0x0  0x18 0x2  0x0  0x1  0x0    /* CLK9 */
208*c66ec88fSEmmanuel Vadot					0x0  0x7  0x1  0x0  0x2  0x0    /* ENET1_TXD0_SER1_TXD0 */
209*c66ec88fSEmmanuel Vadot					0x0  0x9  0x1  0x0  0x2  0x0    /* ENET1_TXD1_SER1_TXD1 */
210*c66ec88fSEmmanuel Vadot					0x0  0xb  0x1  0x0  0x2  0x0    /* ENET1_TXD2_SER1_TXD2 */
211*c66ec88fSEmmanuel Vadot					0x0  0xc  0x1  0x0  0x2  0x0    /* ENET1_TXD3_SER1_TXD3 */
212*c66ec88fSEmmanuel Vadot					0x0  0x6  0x2  0x0  0x2  0x0    /* ENET1_RXD0_SER1_RXD0 */
213*c66ec88fSEmmanuel Vadot					0x0  0xa  0x2  0x0  0x2  0x0    /* ENET1_RXD1_SER1_RXD1 */
214*c66ec88fSEmmanuel Vadot					0x0  0xe  0x2  0x0  0x2  0x0    /* ENET1_RXD2_SER1_RXD2 */
215*c66ec88fSEmmanuel Vadot					0x0  0xf  0x2  0x0  0x2  0x0    /* ENET1_RXD3_SER1_RXD3 */
216*c66ec88fSEmmanuel Vadot					0x0  0x5  0x1  0x0  0x2  0x0    /* ENET1_TX_EN_SER1_RTS_B */
217*c66ec88fSEmmanuel Vadot					0x0  0xd  0x1  0x0  0x2  0x0    /* ENET1_TX_ER */
218*c66ec88fSEmmanuel Vadot					0x0  0x4  0x2  0x0  0x2  0x0    /* ENET1_RX_DV_SER1_CTS_B */
219*c66ec88fSEmmanuel Vadot					0x0  0x8  0x2  0x0  0x2  0x0    /* ENET1_RX_ER_SER1_CD_B */
220*c66ec88fSEmmanuel Vadot					0x0  0x11 0x2  0x0  0x2  0x0    /* ENET1_CRS */
221*c66ec88fSEmmanuel Vadot					0x0  0x10 0x2  0x0  0x2  0x0>;    /* ENET1_COL */
222*c66ec88fSEmmanuel Vadot			};
223*c66ec88fSEmmanuel Vadot
224*c66ec88fSEmmanuel Vadot			pio2: ucc_pin@2 {
225*c66ec88fSEmmanuel Vadot				pio-map = <
226*c66ec88fSEmmanuel Vadot			/* port  pin  dir  open_drain  assignment  has_irq */
227*c66ec88fSEmmanuel Vadot					0x1  0x13 0x1  0x0  0x1  0x0    /* QE_MUX_MDC */
228*c66ec88fSEmmanuel Vadot					0x1  0x14 0x3  0x0  0x1  0x0    /* QE_MUX_MDIO */
229*c66ec88fSEmmanuel Vadot					0x1  0xb  0x2  0x0  0x1  0x0    /* CLK13 */
230*c66ec88fSEmmanuel Vadot					0x1  0x7  0x1  0x0  0x2  0x0    /* ENET5_TXD0_SER5_TXD0 */
231*c66ec88fSEmmanuel Vadot					0x1  0xa  0x1  0x0  0x2  0x0    /* ENET5_TXD1_SER5_TXD1 */
232*c66ec88fSEmmanuel Vadot					0x1  0x6  0x2  0x0  0x2  0x0    /* ENET5_RXD0_SER5_RXD0 */
233*c66ec88fSEmmanuel Vadot					0x1  0x9  0x2  0x0  0x2  0x0    /* ENET5_RXD1_SER5_RXD1 */
234*c66ec88fSEmmanuel Vadot					0x1  0x5  0x1  0x0  0x2  0x0    /* ENET5_TX_EN_SER5_RTS_B */
235*c66ec88fSEmmanuel Vadot					0x1  0x4  0x2  0x0  0x2  0x0    /* ENET5_RX_DV_SER5_CTS_B */
236*c66ec88fSEmmanuel Vadot					0x1  0x8  0x2  0x0  0x2  0x0>;    /* ENET5_RX_ER_SER5_CD_B */
237*c66ec88fSEmmanuel Vadot			};
238*c66ec88fSEmmanuel Vadot		};
239*c66ec88fSEmmanuel Vadot	};
240*c66ec88fSEmmanuel Vadot
241*c66ec88fSEmmanuel Vadot	pci0: pcie@ffe09000 {
242*c66ec88fSEmmanuel Vadot		reg = <0 0xffe09000 0 0x1000>;
243*c66ec88fSEmmanuel Vadot		ranges = <0x2000000 0x0 0xa0000000 0 0xa0000000 0x0 0x20000000
244*c66ec88fSEmmanuel Vadot			  0x1000000 0x0 0x00000000 0 0xffc10000 0x0 0x10000>;
245*c66ec88fSEmmanuel Vadot		pcie@0 {
246*c66ec88fSEmmanuel Vadot			ranges = <0x2000000 0x0 0xa0000000
247*c66ec88fSEmmanuel Vadot				  0x2000000 0x0 0xa0000000
248*c66ec88fSEmmanuel Vadot				  0x0 0x20000000
249*c66ec88fSEmmanuel Vadot
250*c66ec88fSEmmanuel Vadot				  0x1000000 0x0 0x0
251*c66ec88fSEmmanuel Vadot				  0x1000000 0x0 0x0
252*c66ec88fSEmmanuel Vadot				  0x0 0x100000>;
253*c66ec88fSEmmanuel Vadot		};
254*c66ec88fSEmmanuel Vadot	};
255*c66ec88fSEmmanuel Vadot
256*c66ec88fSEmmanuel Vadot	pci1: pcie@ffe0a000 {
257*c66ec88fSEmmanuel Vadot		reg = <0 0xffe0a000 0 0x1000>;
258*c66ec88fSEmmanuel Vadot		ranges = <0x2000000 0x0 0xc0000000 0 0xc0000000 0x0 0x20000000
259*c66ec88fSEmmanuel Vadot			  0x1000000 0x0 0x00000000 0 0xffc20000 0x0 0x10000>;
260*c66ec88fSEmmanuel Vadot		pcie@0 {
261*c66ec88fSEmmanuel Vadot			ranges = <0x2000000 0x0 0xc0000000
262*c66ec88fSEmmanuel Vadot				  0x2000000 0x0 0xc0000000
263*c66ec88fSEmmanuel Vadot				  0x0 0x20000000
264*c66ec88fSEmmanuel Vadot
265*c66ec88fSEmmanuel Vadot				  0x1000000 0x0 0x0
266*c66ec88fSEmmanuel Vadot				  0x1000000 0x0 0x0
267*c66ec88fSEmmanuel Vadot				  0x0 0x100000>;
268*c66ec88fSEmmanuel Vadot		};
269*c66ec88fSEmmanuel Vadot	};
270*c66ec88fSEmmanuel Vadot
271*c66ec88fSEmmanuel Vadot	qe: qe@ffe80000 {
272*c66ec88fSEmmanuel Vadot		ranges = <0x0 0x0 0xffe80000 0x40000>;
273*c66ec88fSEmmanuel Vadot		reg = <0 0xffe80000 0 0x480>;
274*c66ec88fSEmmanuel Vadot		brg-frequency = <0>;
275*c66ec88fSEmmanuel Vadot		bus-frequency = <0>;
276*c66ec88fSEmmanuel Vadot		status = "disabled"; /* no firmware loaded */
277*c66ec88fSEmmanuel Vadot
278*c66ec88fSEmmanuel Vadot		enet3: ucc@2000 {
279*c66ec88fSEmmanuel Vadot			device_type = "network";
280*c66ec88fSEmmanuel Vadot			compatible = "ucc_geth";
281*c66ec88fSEmmanuel Vadot			local-mac-address = [ 00 00 00 00 00 00 ];
282*c66ec88fSEmmanuel Vadot			rx-clock-name = "clk12";
283*c66ec88fSEmmanuel Vadot			tx-clock-name = "clk9";
284*c66ec88fSEmmanuel Vadot			pio-handle = <&pio1>;
285*c66ec88fSEmmanuel Vadot			phy-handle = <&qe_phy0>;
286*c66ec88fSEmmanuel Vadot			phy-connection-type = "mii";
287*c66ec88fSEmmanuel Vadot		};
288*c66ec88fSEmmanuel Vadot
289*c66ec88fSEmmanuel Vadot		mdio@2120 {
290*c66ec88fSEmmanuel Vadot			qe_phy0: ethernet-phy@0 {
291*c66ec88fSEmmanuel Vadot				interrupt-parent = <&mpic>;
292*c66ec88fSEmmanuel Vadot				interrupts = <4 1 0 0>;
293*c66ec88fSEmmanuel Vadot				reg = <0x0>;
294*c66ec88fSEmmanuel Vadot			};
295*c66ec88fSEmmanuel Vadot			qe_phy1: ethernet-phy@3 {
296*c66ec88fSEmmanuel Vadot				interrupt-parent = <&mpic>;
297*c66ec88fSEmmanuel Vadot				interrupts = <5 1 0 0>;
298*c66ec88fSEmmanuel Vadot				reg = <0x3>;
299*c66ec88fSEmmanuel Vadot			};
300*c66ec88fSEmmanuel Vadot			tbi-phy@11 {
301*c66ec88fSEmmanuel Vadot				reg = <0x11>;
302*c66ec88fSEmmanuel Vadot				device_type = "tbi-phy";
303*c66ec88fSEmmanuel Vadot			};
304*c66ec88fSEmmanuel Vadot		};
305*c66ec88fSEmmanuel Vadot
306*c66ec88fSEmmanuel Vadot		enet4: ucc@2400 {
307*c66ec88fSEmmanuel Vadot			device_type = "network";
308*c66ec88fSEmmanuel Vadot			compatible = "ucc_geth";
309*c66ec88fSEmmanuel Vadot			local-mac-address = [ 00 00 00 00 00 00 ];
310*c66ec88fSEmmanuel Vadot			rx-clock-name = "none";
311*c66ec88fSEmmanuel Vadot			tx-clock-name = "clk13";
312*c66ec88fSEmmanuel Vadot			pio-handle = <&pio2>;
313*c66ec88fSEmmanuel Vadot			phy-handle = <&qe_phy1>;
314*c66ec88fSEmmanuel Vadot			phy-connection-type = "rmii";
315*c66ec88fSEmmanuel Vadot		};
316*c66ec88fSEmmanuel Vadot	};
317*c66ec88fSEmmanuel Vadot};
318*c66ec88fSEmmanuel Vadot
319*c66ec88fSEmmanuel Vadot/include/ "p1021si-post.dtsi"
320