1*c66ec88fSEmmanuel Vadot/*
2*c66ec88fSEmmanuel Vadot * P1025 TWR Device Tree Source stub (no addresses or top-level ranges)
3*c66ec88fSEmmanuel Vadot *
4*c66ec88fSEmmanuel Vadot * Copyright 2013 Freescale Semiconductor Inc.
5*c66ec88fSEmmanuel Vadot *
6*c66ec88fSEmmanuel Vadot * Redistribution and use in source and binary forms, with or without
7*c66ec88fSEmmanuel Vadot * modification, are permitted provided that the following conditions are met:
8*c66ec88fSEmmanuel Vadot *     * Redistributions of source code must retain the above copyright
9*c66ec88fSEmmanuel Vadot *       notice, this list of conditions and the following disclaimer.
10*c66ec88fSEmmanuel Vadot *     * Redistributions in binary form must reproduce the above copyright
11*c66ec88fSEmmanuel Vadot *       notice, this list of conditions and the following disclaimer in the
12*c66ec88fSEmmanuel Vadot *       documentation and/or other materials provided with the distribution.
13*c66ec88fSEmmanuel Vadot *     * Neither the name of Freescale Semiconductor nor the
14*c66ec88fSEmmanuel Vadot *       names of its contributors may be used to endorse or promote products
15*c66ec88fSEmmanuel Vadot *       derived from this software without specific prior written permission.
16*c66ec88fSEmmanuel Vadot *
17*c66ec88fSEmmanuel Vadot *
18*c66ec88fSEmmanuel Vadot * ALTERNATIVELY, this software may be distributed under the terms of the
19*c66ec88fSEmmanuel Vadot * GNU General Public License ("GPL") as published by the Free Software
20*c66ec88fSEmmanuel Vadot * Foundation, either version 2 of that License or (at your option) any
21*c66ec88fSEmmanuel Vadot * later version.
22*c66ec88fSEmmanuel Vadot *
23*c66ec88fSEmmanuel Vadot * THIS SOFTWARE IS PROVIDED BY Freescale Semiconductor ``AS IS'' AND ANY
24*c66ec88fSEmmanuel Vadot * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
25*c66ec88fSEmmanuel Vadot * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
26*c66ec88fSEmmanuel Vadot * DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY
27*c66ec88fSEmmanuel Vadot * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
28*c66ec88fSEmmanuel Vadot * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29*c66ec88fSEmmanuel Vadot * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
30*c66ec88fSEmmanuel Vadot * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31*c66ec88fSEmmanuel Vadot * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
32*c66ec88fSEmmanuel Vadot * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33*c66ec88fSEmmanuel Vadot */
34*c66ec88fSEmmanuel Vadot
35*c66ec88fSEmmanuel Vadot/{
36*c66ec88fSEmmanuel Vadot       aliases {
37*c66ec88fSEmmanuel Vadot		ethernet3 = &enet3;
38*c66ec88fSEmmanuel Vadot		ethernet4 = &enet4;
39*c66ec88fSEmmanuel Vadot       };
40*c66ec88fSEmmanuel Vadot};
41*c66ec88fSEmmanuel Vadot
42*c66ec88fSEmmanuel Vadot&lbc {
43*c66ec88fSEmmanuel Vadot	nor@0,0 {
44*c66ec88fSEmmanuel Vadot		#address-cells = <1>;
45*c66ec88fSEmmanuel Vadot		#size-cells = <1>;
46*c66ec88fSEmmanuel Vadot		compatible = "cfi-flash";
47*c66ec88fSEmmanuel Vadot		reg = <0x0 0x0 0x4000000>;
48*c66ec88fSEmmanuel Vadot		bank-width = <2>;
49*c66ec88fSEmmanuel Vadot		device-width = <1>;
50*c66ec88fSEmmanuel Vadot
51*c66ec88fSEmmanuel Vadot		partition@0 {
52*c66ec88fSEmmanuel Vadot			/* This location must not be altered  */
53*c66ec88fSEmmanuel Vadot			/* 256KB for Vitesse 7385 Switch firmware */
54*c66ec88fSEmmanuel Vadot			reg = <0x0 0x00040000>;
55*c66ec88fSEmmanuel Vadot			label = "NOR Vitesse-7385 Firmware";
56*c66ec88fSEmmanuel Vadot			read-only;
57*c66ec88fSEmmanuel Vadot		};
58*c66ec88fSEmmanuel Vadot
59*c66ec88fSEmmanuel Vadot		partition@40000 {
60*c66ec88fSEmmanuel Vadot			/* 256KB for DTB Image */
61*c66ec88fSEmmanuel Vadot			reg = <0x00040000 0x00040000>;
62*c66ec88fSEmmanuel Vadot			label = "NOR DTB Image";
63*c66ec88fSEmmanuel Vadot		};
64*c66ec88fSEmmanuel Vadot
65*c66ec88fSEmmanuel Vadot		partition@80000 {
66*c66ec88fSEmmanuel Vadot			/* 5.5 MB for Linux Kernel Image */
67*c66ec88fSEmmanuel Vadot			reg = <0x00080000 0x00580000>;
68*c66ec88fSEmmanuel Vadot			label = "NOR Linux Kernel Image";
69*c66ec88fSEmmanuel Vadot		};
70*c66ec88fSEmmanuel Vadot
71*c66ec88fSEmmanuel Vadot		partition@400000 {
72*c66ec88fSEmmanuel Vadot			/* 56.75MB for Root file System */
73*c66ec88fSEmmanuel Vadot			reg = <0x00600000 0x038c0000>;
74*c66ec88fSEmmanuel Vadot			label = "NOR Root File System";
75*c66ec88fSEmmanuel Vadot		};
76*c66ec88fSEmmanuel Vadot
77*c66ec88fSEmmanuel Vadot		partition@ec0000 {
78*c66ec88fSEmmanuel Vadot			/* This location must not be altered  */
79*c66ec88fSEmmanuel Vadot			/* 256KB for QE ucode firmware*/
80*c66ec88fSEmmanuel Vadot			reg = <0x03ec0000 0x00040000>;
81*c66ec88fSEmmanuel Vadot			label = "NOR QE microcode firmware";
82*c66ec88fSEmmanuel Vadot			read-only;
83*c66ec88fSEmmanuel Vadot		};
84*c66ec88fSEmmanuel Vadot
85*c66ec88fSEmmanuel Vadot		partition@f00000 {
86*c66ec88fSEmmanuel Vadot			/* This location must not be altered  */
87*c66ec88fSEmmanuel Vadot			/* 512KB for u-boot Bootloader Image */
88*c66ec88fSEmmanuel Vadot			/* 512KB for u-boot Environment Variables */
89*c66ec88fSEmmanuel Vadot			reg = <0x03f00000 0x00100000>;
90*c66ec88fSEmmanuel Vadot			label = "NOR U-Boot Image";
91*c66ec88fSEmmanuel Vadot			read-only;
92*c66ec88fSEmmanuel Vadot		};
93*c66ec88fSEmmanuel Vadot	};
94*c66ec88fSEmmanuel Vadot
95*c66ec88fSEmmanuel Vadot	/* CS2 for Display */
96*c66ec88fSEmmanuel Vadot	display@2,0 {
97*c66ec88fSEmmanuel Vadot		compatible = "solomon,ssd1289fb";
98*c66ec88fSEmmanuel Vadot		reg = <0x2 0x0000 0x0004>;
99*c66ec88fSEmmanuel Vadot	};
100*c66ec88fSEmmanuel Vadot
101*c66ec88fSEmmanuel Vadot};
102*c66ec88fSEmmanuel Vadot
103*c66ec88fSEmmanuel Vadot&soc {
104*c66ec88fSEmmanuel Vadot	usb@22000 {
105*c66ec88fSEmmanuel Vadot		phy_type = "ulpi";
106*c66ec88fSEmmanuel Vadot	};
107*c66ec88fSEmmanuel Vadot
108*c66ec88fSEmmanuel Vadot	mdio@24000 {
109*c66ec88fSEmmanuel Vadot		phy0: ethernet-phy@2 {
110*c66ec88fSEmmanuel Vadot			interrupt-parent = <&mpic>;
111*c66ec88fSEmmanuel Vadot			interrupts = <1 1 0 0>;
112*c66ec88fSEmmanuel Vadot			reg = <0x2>;
113*c66ec88fSEmmanuel Vadot		};
114*c66ec88fSEmmanuel Vadot
115*c66ec88fSEmmanuel Vadot		phy1: ethernet-phy@1 {
116*c66ec88fSEmmanuel Vadot			interrupt-parent = <&mpic>;
117*c66ec88fSEmmanuel Vadot			interrupts = <2 1 0 0>;
118*c66ec88fSEmmanuel Vadot			reg = <0x1>;
119*c66ec88fSEmmanuel Vadot		};
120*c66ec88fSEmmanuel Vadot
121*c66ec88fSEmmanuel Vadot		tbi0: tbi-phy@11 {
122*c66ec88fSEmmanuel Vadot			reg = <0x11>;
123*c66ec88fSEmmanuel Vadot			device_type = "tbi-phy";
124*c66ec88fSEmmanuel Vadot		};
125*c66ec88fSEmmanuel Vadot	};
126*c66ec88fSEmmanuel Vadot
127*c66ec88fSEmmanuel Vadot	mdio@25000 {
128*c66ec88fSEmmanuel Vadot		tbi1: tbi-phy@11 {
129*c66ec88fSEmmanuel Vadot			reg = <0x11>;
130*c66ec88fSEmmanuel Vadot			device_type = "tbi-phy";
131*c66ec88fSEmmanuel Vadot		};
132*c66ec88fSEmmanuel Vadot	};
133*c66ec88fSEmmanuel Vadot
134*c66ec88fSEmmanuel Vadot	mdio@26000 {
135*c66ec88fSEmmanuel Vadot		tbi2: tbi-phy@11 {
136*c66ec88fSEmmanuel Vadot			reg = <0x11>;
137*c66ec88fSEmmanuel Vadot			device_type = "tbi-phy";
138*c66ec88fSEmmanuel Vadot		};
139*c66ec88fSEmmanuel Vadot	};
140*c66ec88fSEmmanuel Vadot
141*c66ec88fSEmmanuel Vadot	ptp_clock@b0e00 {
142*c66ec88fSEmmanuel Vadot		compatible = "fsl,etsec-ptp";
143*c66ec88fSEmmanuel Vadot		reg = <0xb0e00 0xb0>;
144*c66ec88fSEmmanuel Vadot		interrupts = <68 2 0 0 69 2 0 0>;
145*c66ec88fSEmmanuel Vadot		fsl,tclk-period	= <10>;
146*c66ec88fSEmmanuel Vadot		fsl,tmr-prsc	= <2>;
147*c66ec88fSEmmanuel Vadot		fsl,tmr-add	= <0xc0000021>;
148*c66ec88fSEmmanuel Vadot		fsl,tmr-fiper1	= <999999990>;
149*c66ec88fSEmmanuel Vadot		fsl,tmr-fiper2	= <99990>;
150*c66ec88fSEmmanuel Vadot		fsl,max-adj	= <133333332>;
151*c66ec88fSEmmanuel Vadot	};
152*c66ec88fSEmmanuel Vadot
153*c66ec88fSEmmanuel Vadot	enet0: ethernet@b0000 {
154*c66ec88fSEmmanuel Vadot		phy-handle = <&phy0>;
155*c66ec88fSEmmanuel Vadot		phy-connection-type = "rgmii-id";
156*c66ec88fSEmmanuel Vadot
157*c66ec88fSEmmanuel Vadot	};
158*c66ec88fSEmmanuel Vadot
159*c66ec88fSEmmanuel Vadot	enet1: ethernet@b1000 {
160*c66ec88fSEmmanuel Vadot		status = "disabled";
161*c66ec88fSEmmanuel Vadot	};
162*c66ec88fSEmmanuel Vadot
163*c66ec88fSEmmanuel Vadot	enet2: ethernet@b2000 {
164*c66ec88fSEmmanuel Vadot		phy-handle = <&phy1>;
165*c66ec88fSEmmanuel Vadot		phy-connection-type = "rgmii-id";
166*c66ec88fSEmmanuel Vadot	};
167*c66ec88fSEmmanuel Vadot
168*c66ec88fSEmmanuel Vadot	par_io@e0100 {
169*c66ec88fSEmmanuel Vadot		#address-cells = <1>;
170*c66ec88fSEmmanuel Vadot		#size-cells = <1>;
171*c66ec88fSEmmanuel Vadot		reg = <0xe0100 0x60>;
172*c66ec88fSEmmanuel Vadot		ranges = <0x0 0xe0100 0x60>;
173*c66ec88fSEmmanuel Vadot		device_type = "par_io";
174*c66ec88fSEmmanuel Vadot		num-ports = <3>;
175*c66ec88fSEmmanuel Vadot		pio1: ucc_pin@1 {
176*c66ec88fSEmmanuel Vadot			pio-map = <
177*c66ec88fSEmmanuel Vadot		/* port  pin  dir  open_drain  assignment  has_irq */
178*c66ec88fSEmmanuel Vadot				0x1  0x13 0x1  0x0  0x1  0x0    /* QE_MUX_MDC */
179*c66ec88fSEmmanuel Vadot				0x1  0x14 0x3  0x0  0x1  0x0    /* QE_MUX_MDIO */
180*c66ec88fSEmmanuel Vadot				0x0  0x17 0x2  0x0  0x2  0x0    /* CLK12 */
181*c66ec88fSEmmanuel Vadot				0x0  0x18 0x2  0x0  0x1  0x0    /* CLK9 */
182*c66ec88fSEmmanuel Vadot				0x0  0x7  0x1  0x0  0x2  0x0    /* ENET1_TXD0_SER1_TXD0 */
183*c66ec88fSEmmanuel Vadot				0x0  0x9  0x1  0x0  0x2  0x0    /* ENET1_TXD1_SER1_TXD1 */
184*c66ec88fSEmmanuel Vadot				0x0  0xb  0x1  0x0  0x2  0x0    /* ENET1_TXD2_SER1_TXD2 */
185*c66ec88fSEmmanuel Vadot				0x0  0xc  0x1  0x0  0x2  0x0    /* ENET1_TXD3_SER1_TXD3 */
186*c66ec88fSEmmanuel Vadot				0x0  0x6  0x2  0x0  0x2  0x0    /* ENET1_RXD0_SER1_RXD0 */
187*c66ec88fSEmmanuel Vadot				0x0  0xa  0x2  0x0  0x2  0x0    /* ENET1_RXD1_SER1_RXD1 */
188*c66ec88fSEmmanuel Vadot				0x0  0xe  0x2  0x0  0x2  0x0    /* ENET1_RXD2_SER1_RXD2 */
189*c66ec88fSEmmanuel Vadot				0x0  0xf  0x2  0x0  0x2  0x0    /* ENET1_RXD3_SER1_RXD3 */
190*c66ec88fSEmmanuel Vadot				0x0  0x5  0x1  0x0  0x2  0x0    /* ENET1_TX_EN_SER1_RTS_B */
191*c66ec88fSEmmanuel Vadot				0x0  0xd  0x1  0x0  0x2  0x0    /* ENET1_TX_ER */
192*c66ec88fSEmmanuel Vadot				0x0  0x4  0x2  0x0  0x2  0x0    /* ENET1_RX_DV_SER1_CTS_B */
193*c66ec88fSEmmanuel Vadot				0x0  0x8  0x2  0x0  0x2  0x0    /* ENET1_RX_ER_SER1_CD_B */
194*c66ec88fSEmmanuel Vadot				0x0  0x11 0x2  0x0  0x2  0x0    /* ENET1_CRS */
195*c66ec88fSEmmanuel Vadot				0x0  0x10 0x2  0x0  0x2  0x0>;    /* ENET1_COL */
196*c66ec88fSEmmanuel Vadot		};
197*c66ec88fSEmmanuel Vadot
198*c66ec88fSEmmanuel Vadot		pio2: ucc_pin@2 {
199*c66ec88fSEmmanuel Vadot			pio-map = <
200*c66ec88fSEmmanuel Vadot		/* port  pin  dir  open_drain  assignment  has_irq */
201*c66ec88fSEmmanuel Vadot				0x1  0x13 0x1  0x0  0x1  0x0    /* QE_MUX_MDC */
202*c66ec88fSEmmanuel Vadot				0x1  0x14 0x3  0x0  0x1  0x0    /* QE_MUX_MDIO */
203*c66ec88fSEmmanuel Vadot				0x1  0xb  0x2  0x0  0x1  0x0    /* CLK13 */
204*c66ec88fSEmmanuel Vadot				0x1  0x7  0x1  0x0  0x2  0x0    /* ENET5_TXD0_SER5_TXD0 */
205*c66ec88fSEmmanuel Vadot				0x1  0xa  0x1  0x0  0x2  0x0    /* ENET5_TXD1_SER5_TXD1 */
206*c66ec88fSEmmanuel Vadot				0x1  0x6  0x2  0x0  0x2  0x0    /* ENET5_RXD0_SER5_RXD0 */
207*c66ec88fSEmmanuel Vadot				0x1  0x9  0x2  0x0  0x2  0x0    /* ENET5_RXD1_SER5_RXD1 */
208*c66ec88fSEmmanuel Vadot				0x1  0x5  0x1  0x0  0x2  0x0    /* ENET5_TX_EN_SER5_RTS_B */
209*c66ec88fSEmmanuel Vadot				0x1  0x4  0x2  0x0  0x2  0x0    /* ENET5_RX_DV_SER5_CTS_B */
210*c66ec88fSEmmanuel Vadot				0x1  0x8  0x2  0x0  0x2  0x0>;    /* ENET5_RX_ER_SER5_CD_B */
211*c66ec88fSEmmanuel Vadot		};
212*c66ec88fSEmmanuel Vadot
213*c66ec88fSEmmanuel Vadot		pio3: ucc_pin@3 {
214*c66ec88fSEmmanuel Vadot			pio-map = <
215*c66ec88fSEmmanuel Vadot		/* port  pin  dir  open_drain  assignment  has_irq */
216*c66ec88fSEmmanuel Vadot				0x0  0x16 0x2  0x0  0x2  0x0    /* SER7_CD_B*/
217*c66ec88fSEmmanuel Vadot				0x0  0x12 0x2  0x0  0x2  0x0    /* SER7_CTS_B*/
218*c66ec88fSEmmanuel Vadot				0x0  0x13 0x1  0x0  0x2  0x0    /* SER7_RTS_B*/
219*c66ec88fSEmmanuel Vadot				0x0  0x14 0x2  0x0  0x2  0x0    /* SER7_RXD0*/
220*c66ec88fSEmmanuel Vadot				0x0  0x15 0x1  0x0  0x2  0x0>;    /* SER7_TXD0*/
221*c66ec88fSEmmanuel Vadot		};
222*c66ec88fSEmmanuel Vadot
223*c66ec88fSEmmanuel Vadot		pio4: ucc_pin@4 {
224*c66ec88fSEmmanuel Vadot			pio-map = <
225*c66ec88fSEmmanuel Vadot		/* port  pin  dir  open_drain  assignment  has_irq */
226*c66ec88fSEmmanuel Vadot				0x1  0x0  0x2  0x0  0x2  0x0    /* SER3_CD_B*/
227*c66ec88fSEmmanuel Vadot				0x0  0x1c 0x2  0x0  0x2  0x0    /* SER3_CTS_B*/
228*c66ec88fSEmmanuel Vadot				0x0  0x1d 0x1  0x0  0x2  0x0    /* SER3_RTS_B*/
229*c66ec88fSEmmanuel Vadot				0x0  0x1e 0x2  0x0  0x2  0x0    /* SER3_RXD0*/
230*c66ec88fSEmmanuel Vadot				0x0  0x1f 0x1  0x0  0x2  0x0>;    /* SER3_TXD0*/
231*c66ec88fSEmmanuel Vadot		};
232*c66ec88fSEmmanuel Vadot	};
233*c66ec88fSEmmanuel Vadot};
234*c66ec88fSEmmanuel Vadot
235*c66ec88fSEmmanuel Vadot&qe {
236*c66ec88fSEmmanuel Vadot	enet3: ucc@2000 {
237*c66ec88fSEmmanuel Vadot		device_type = "network";
238*c66ec88fSEmmanuel Vadot		compatible = "ucc_geth";
239*c66ec88fSEmmanuel Vadot		rx-clock-name = "clk12";
240*c66ec88fSEmmanuel Vadot		tx-clock-name = "clk9";
241*c66ec88fSEmmanuel Vadot		pio-handle = <&pio1>;
242*c66ec88fSEmmanuel Vadot		phy-handle = <&qe_phy0>;
243*c66ec88fSEmmanuel Vadot		phy-connection-type = "mii";
244*c66ec88fSEmmanuel Vadot	};
245*c66ec88fSEmmanuel Vadot
246*c66ec88fSEmmanuel Vadot	mdio@2120 {
247*c66ec88fSEmmanuel Vadot		qe_phy0: ethernet-phy@18 {
248*c66ec88fSEmmanuel Vadot			interrupt-parent = <&mpic>;
249*c66ec88fSEmmanuel Vadot			interrupts = <4 1 0 0>;
250*c66ec88fSEmmanuel Vadot			reg = <0x18>;
251*c66ec88fSEmmanuel Vadot			device_type = "ethernet-phy";
252*c66ec88fSEmmanuel Vadot		};
253*c66ec88fSEmmanuel Vadot		qe_phy1: ethernet-phy@19 {
254*c66ec88fSEmmanuel Vadot			interrupt-parent = <&mpic>;
255*c66ec88fSEmmanuel Vadot			interrupts = <5 1 0 0>;
256*c66ec88fSEmmanuel Vadot			reg = <0x19>;
257*c66ec88fSEmmanuel Vadot			device_type = "ethernet-phy";
258*c66ec88fSEmmanuel Vadot		};
259*c66ec88fSEmmanuel Vadot		tbi-phy@11 {
260*c66ec88fSEmmanuel Vadot			reg = <0x11>;
261*c66ec88fSEmmanuel Vadot			device_type = "tbi-phy";
262*c66ec88fSEmmanuel Vadot		};
263*c66ec88fSEmmanuel Vadot	};
264*c66ec88fSEmmanuel Vadot
265*c66ec88fSEmmanuel Vadot	enet4: ucc@2400 {
266*c66ec88fSEmmanuel Vadot		device_type = "network";
267*c66ec88fSEmmanuel Vadot		compatible = "ucc_geth";
268*c66ec88fSEmmanuel Vadot		rx-clock-name = "none";
269*c66ec88fSEmmanuel Vadot		tx-clock-name = "clk13";
270*c66ec88fSEmmanuel Vadot		pio-handle = <&pio2>;
271*c66ec88fSEmmanuel Vadot		phy-handle = <&qe_phy1>;
272*c66ec88fSEmmanuel Vadot		phy-connection-type = "rmii";
273*c66ec88fSEmmanuel Vadot	};
274*c66ec88fSEmmanuel Vadot
275*c66ec88fSEmmanuel Vadot	serial2: ucc@2600 {
276*c66ec88fSEmmanuel Vadot		device_type = "serial";
277*c66ec88fSEmmanuel Vadot		compatible = "ucc_uart";
278*c66ec88fSEmmanuel Vadot		port-number = <0>;
279*c66ec88fSEmmanuel Vadot		rx-clock-name = "brg6";
280*c66ec88fSEmmanuel Vadot		tx-clock-name = "brg6";
281*c66ec88fSEmmanuel Vadot		pio-handle = <&pio3>;
282*c66ec88fSEmmanuel Vadot	};
283*c66ec88fSEmmanuel Vadot
284*c66ec88fSEmmanuel Vadot	serial3: ucc@2200 {
285*c66ec88fSEmmanuel Vadot		device_type = "serial";
286*c66ec88fSEmmanuel Vadot		compatible = "ucc_uart";
287*c66ec88fSEmmanuel Vadot		port-number = <1>;
288*c66ec88fSEmmanuel Vadot		rx-clock-name = "brg2";
289*c66ec88fSEmmanuel Vadot		tx-clock-name = "brg2";
290*c66ec88fSEmmanuel Vadot		pio-handle = <&pio4>;
291*c66ec88fSEmmanuel Vadot	};
292*c66ec88fSEmmanuel Vadot};
293