1*c66ec88fSEmmanuel Vadot/*
2*c66ec88fSEmmanuel Vadot * P1025 RDB Device Tree Source stub (no addresses or top-level ranges)
3*c66ec88fSEmmanuel Vadot *
4*c66ec88fSEmmanuel Vadot * Copyright 2011 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&lbc {
36*c66ec88fSEmmanuel Vadot	nor@0,0 {
37*c66ec88fSEmmanuel Vadot		#address-cells = <1>;
38*c66ec88fSEmmanuel Vadot		#size-cells = <1>;
39*c66ec88fSEmmanuel Vadot		compatible = "cfi-flash";
40*c66ec88fSEmmanuel Vadot		reg = <0x0 0x0 0x1000000>;
41*c66ec88fSEmmanuel Vadot		bank-width = <2>;
42*c66ec88fSEmmanuel Vadot		device-width = <1>;
43*c66ec88fSEmmanuel Vadot
44*c66ec88fSEmmanuel Vadot		partition@0 {
45*c66ec88fSEmmanuel Vadot			/* This location must not be altered  */
46*c66ec88fSEmmanuel Vadot			/* 256KB for Vitesse 7385 Switch firmware */
47*c66ec88fSEmmanuel Vadot			reg = <0x0 0x00040000>;
48*c66ec88fSEmmanuel Vadot			label = "NOR Vitesse-7385 Firmware";
49*c66ec88fSEmmanuel Vadot			read-only;
50*c66ec88fSEmmanuel Vadot		};
51*c66ec88fSEmmanuel Vadot
52*c66ec88fSEmmanuel Vadot		partition@40000 {
53*c66ec88fSEmmanuel Vadot			/* 256KB for DTB Image */
54*c66ec88fSEmmanuel Vadot			reg = <0x00040000 0x00040000>;
55*c66ec88fSEmmanuel Vadot			label = "NOR DTB Image";
56*c66ec88fSEmmanuel Vadot		};
57*c66ec88fSEmmanuel Vadot
58*c66ec88fSEmmanuel Vadot		partition@80000 {
59*c66ec88fSEmmanuel Vadot			/* 3.5 MB for Linux Kernel Image */
60*c66ec88fSEmmanuel Vadot			reg = <0x00080000 0x00380000>;
61*c66ec88fSEmmanuel Vadot			label = "NOR Linux Kernel Image";
62*c66ec88fSEmmanuel Vadot		};
63*c66ec88fSEmmanuel Vadot
64*c66ec88fSEmmanuel Vadot		partition@400000 {
65*c66ec88fSEmmanuel Vadot			/* 11MB for JFFS2 based Root file System */
66*c66ec88fSEmmanuel Vadot			reg = <0x00400000 0x00b00000>;
67*c66ec88fSEmmanuel Vadot			label = "NOR JFFS2 Root File System";
68*c66ec88fSEmmanuel Vadot		};
69*c66ec88fSEmmanuel Vadot
70*c66ec88fSEmmanuel Vadot		partition@f00000 {
71*c66ec88fSEmmanuel Vadot			/* This location must not be altered  */
72*c66ec88fSEmmanuel Vadot			/* 512KB for u-boot Bootloader Image */
73*c66ec88fSEmmanuel Vadot			/* 512KB for u-boot Environment Variables */
74*c66ec88fSEmmanuel Vadot			reg = <0x00f00000 0x00100000>;
75*c66ec88fSEmmanuel Vadot			label = "NOR U-Boot Image";
76*c66ec88fSEmmanuel Vadot			read-only;
77*c66ec88fSEmmanuel Vadot		};
78*c66ec88fSEmmanuel Vadot	};
79*c66ec88fSEmmanuel Vadot
80*c66ec88fSEmmanuel Vadot	nand@1,0 {
81*c66ec88fSEmmanuel Vadot		#address-cells = <1>;
82*c66ec88fSEmmanuel Vadot		#size-cells = <1>;
83*c66ec88fSEmmanuel Vadot		compatible = "fsl,p1025-fcm-nand",
84*c66ec88fSEmmanuel Vadot			     "fsl,elbc-fcm-nand";
85*c66ec88fSEmmanuel Vadot		reg = <0x1 0x0 0x40000>;
86*c66ec88fSEmmanuel Vadot
87*c66ec88fSEmmanuel Vadot		partition@0 {
88*c66ec88fSEmmanuel Vadot			/* This location must not be altered  */
89*c66ec88fSEmmanuel Vadot			/* 1MB for u-boot Bootloader Image */
90*c66ec88fSEmmanuel Vadot			reg = <0x0 0x00100000>;
91*c66ec88fSEmmanuel Vadot			label = "NAND U-Boot Image";
92*c66ec88fSEmmanuel Vadot			read-only;
93*c66ec88fSEmmanuel Vadot		};
94*c66ec88fSEmmanuel Vadot
95*c66ec88fSEmmanuel Vadot		partition@100000 {
96*c66ec88fSEmmanuel Vadot			/* 1MB for DTB Image */
97*c66ec88fSEmmanuel Vadot			reg = <0x00100000 0x00100000>;
98*c66ec88fSEmmanuel Vadot			label = "NAND DTB Image";
99*c66ec88fSEmmanuel Vadot		};
100*c66ec88fSEmmanuel Vadot
101*c66ec88fSEmmanuel Vadot		partition@200000 {
102*c66ec88fSEmmanuel Vadot			/* 4MB for Linux Kernel Image */
103*c66ec88fSEmmanuel Vadot			reg = <0x00200000 0x00400000>;
104*c66ec88fSEmmanuel Vadot			label = "NAND Linux Kernel Image";
105*c66ec88fSEmmanuel Vadot		};
106*c66ec88fSEmmanuel Vadot
107*c66ec88fSEmmanuel Vadot		partition@600000 {
108*c66ec88fSEmmanuel Vadot			/* 4MB for Compressed Root file System Image */
109*c66ec88fSEmmanuel Vadot			reg = <0x00600000 0x00400000>;
110*c66ec88fSEmmanuel Vadot			label = "NAND Compressed RFS Image";
111*c66ec88fSEmmanuel Vadot		};
112*c66ec88fSEmmanuel Vadot
113*c66ec88fSEmmanuel Vadot		partition@a00000 {
114*c66ec88fSEmmanuel Vadot			/* 7MB for JFFS2 based Root file System */
115*c66ec88fSEmmanuel Vadot			reg = <0x00a00000 0x00700000>;
116*c66ec88fSEmmanuel Vadot			label = "NAND JFFS2 Root File System";
117*c66ec88fSEmmanuel Vadot		};
118*c66ec88fSEmmanuel Vadot
119*c66ec88fSEmmanuel Vadot		partition@1100000 {
120*c66ec88fSEmmanuel Vadot			/* 15MB for JFFS2 based Root file System */
121*c66ec88fSEmmanuel Vadot			reg = <0x01100000 0x00f00000>;
122*c66ec88fSEmmanuel Vadot			label = "NAND Writable User area";
123*c66ec88fSEmmanuel Vadot		};
124*c66ec88fSEmmanuel Vadot	};
125*c66ec88fSEmmanuel Vadot
126*c66ec88fSEmmanuel Vadot};
127*c66ec88fSEmmanuel Vadot
128*c66ec88fSEmmanuel Vadot&soc {
129*c66ec88fSEmmanuel Vadot	i2c@3000 {
130*c66ec88fSEmmanuel Vadot		rtc@68 {
131*c66ec88fSEmmanuel Vadot			compatible = "dallas,ds1339";
132*c66ec88fSEmmanuel Vadot			reg = <0x68>;
133*c66ec88fSEmmanuel Vadot		};
134*c66ec88fSEmmanuel Vadot	};
135*c66ec88fSEmmanuel Vadot
136*c66ec88fSEmmanuel Vadot	spi@7000 {
137*c66ec88fSEmmanuel Vadot		flash@0 {
138*c66ec88fSEmmanuel Vadot			#address-cells = <1>;
139*c66ec88fSEmmanuel Vadot			#size-cells = <1>;
140*c66ec88fSEmmanuel Vadot			compatible = "spansion,s25sl12801", "jedec,spi-nor";
141*c66ec88fSEmmanuel Vadot			reg = <0>;
142*c66ec88fSEmmanuel Vadot			spi-max-frequency = <40000000>; /* input clock */
143*c66ec88fSEmmanuel Vadot
144*c66ec88fSEmmanuel Vadot			partition@u-boot {
145*c66ec88fSEmmanuel Vadot				/* 512KB for u-boot Bootloader Image */
146*c66ec88fSEmmanuel Vadot				reg = <0x0 0x00080000>;
147*c66ec88fSEmmanuel Vadot				label = "u-boot";
148*c66ec88fSEmmanuel Vadot				read-only;
149*c66ec88fSEmmanuel Vadot			};
150*c66ec88fSEmmanuel Vadot
151*c66ec88fSEmmanuel Vadot			partition@dtb {
152*c66ec88fSEmmanuel Vadot				/* 512KB for DTB Image */
153*c66ec88fSEmmanuel Vadot				reg = <0x00080000 0x00080000>;
154*c66ec88fSEmmanuel Vadot				label = "dtb";
155*c66ec88fSEmmanuel Vadot			};
156*c66ec88fSEmmanuel Vadot
157*c66ec88fSEmmanuel Vadot			partition@kernel {
158*c66ec88fSEmmanuel Vadot				/* 4MB for Linux Kernel Image */
159*c66ec88fSEmmanuel Vadot				reg = <0x00100000 0x00400000>;
160*c66ec88fSEmmanuel Vadot				label = "kernel";
161*c66ec88fSEmmanuel Vadot			};
162*c66ec88fSEmmanuel Vadot
163*c66ec88fSEmmanuel Vadot			partition@fs {
164*c66ec88fSEmmanuel Vadot				/* 4MB for Compressed RFS Image */
165*c66ec88fSEmmanuel Vadot				reg = <0x00500000 0x00400000>;
166*c66ec88fSEmmanuel Vadot				label = "file system";
167*c66ec88fSEmmanuel Vadot			};
168*c66ec88fSEmmanuel Vadot
169*c66ec88fSEmmanuel Vadot			partition@jffs-fs {
170*c66ec88fSEmmanuel Vadot				/* 7MB for JFFS2 based RFS */
171*c66ec88fSEmmanuel Vadot				reg = <0x00900000 0x00700000>;
172*c66ec88fSEmmanuel Vadot				label = "file system jffs2";
173*c66ec88fSEmmanuel Vadot			};
174*c66ec88fSEmmanuel Vadot		};
175*c66ec88fSEmmanuel Vadot	};
176*c66ec88fSEmmanuel Vadot
177*c66ec88fSEmmanuel Vadot	usb@22000 {
178*c66ec88fSEmmanuel Vadot		phy_type = "ulpi";
179*c66ec88fSEmmanuel Vadot	};
180*c66ec88fSEmmanuel Vadot
181*c66ec88fSEmmanuel Vadot	/* USB2 is shared with localbus, so it must be disabled
182*c66ec88fSEmmanuel Vadot	   by default. We can't put 'status = "disabled";' here
183*c66ec88fSEmmanuel Vadot	   since U-Boot doesn't clear the status property when
184*c66ec88fSEmmanuel Vadot	   it enables USB2. OTOH, U-Boot does create a new node
185*c66ec88fSEmmanuel Vadot	   when there isn't any. So, just comment it out.
186*c66ec88fSEmmanuel Vadot	usb@23000 {
187*c66ec88fSEmmanuel Vadot		phy_type = "ulpi";
188*c66ec88fSEmmanuel Vadot	};
189*c66ec88fSEmmanuel Vadot	*/
190*c66ec88fSEmmanuel Vadot
191*c66ec88fSEmmanuel Vadot	mdio@24000 {
192*c66ec88fSEmmanuel Vadot		phy0: ethernet-phy@0 {
193*c66ec88fSEmmanuel Vadot			interrupt-parent = <&mpic>;
194*c66ec88fSEmmanuel Vadot			interrupts = <3 1>;
195*c66ec88fSEmmanuel Vadot			reg = <0x0>;
196*c66ec88fSEmmanuel Vadot		};
197*c66ec88fSEmmanuel Vadot
198*c66ec88fSEmmanuel Vadot		phy1: ethernet-phy@1 {
199*c66ec88fSEmmanuel Vadot			interrupt-parent = <&mpic>;
200*c66ec88fSEmmanuel Vadot			interrupts = <2 1>;
201*c66ec88fSEmmanuel Vadot			reg = <0x1>;
202*c66ec88fSEmmanuel Vadot		};
203*c66ec88fSEmmanuel Vadot
204*c66ec88fSEmmanuel Vadot		tbi0: tbi-phy@11 {
205*c66ec88fSEmmanuel Vadot			reg = <0x11>;
206*c66ec88fSEmmanuel Vadot			device_type = "tbi-phy";
207*c66ec88fSEmmanuel Vadot		};
208*c66ec88fSEmmanuel Vadot	};
209*c66ec88fSEmmanuel Vadot
210*c66ec88fSEmmanuel Vadot	mdio@25000 {
211*c66ec88fSEmmanuel Vadot		tbi1: tbi-phy@11 {
212*c66ec88fSEmmanuel Vadot			reg = <0x11>;
213*c66ec88fSEmmanuel Vadot			device_type = "tbi-phy";
214*c66ec88fSEmmanuel Vadot		};
215*c66ec88fSEmmanuel Vadot	};
216*c66ec88fSEmmanuel Vadot
217*c66ec88fSEmmanuel Vadot	mdio@26000 {
218*c66ec88fSEmmanuel Vadot		tbi2: tbi-phy@11 {
219*c66ec88fSEmmanuel Vadot			reg = <0x11>;
220*c66ec88fSEmmanuel Vadot			device_type = "tbi-phy";
221*c66ec88fSEmmanuel Vadot		};
222*c66ec88fSEmmanuel Vadot	};
223*c66ec88fSEmmanuel Vadot
224*c66ec88fSEmmanuel Vadot	enet0: ethernet@b0000 {
225*c66ec88fSEmmanuel Vadot		fixed-link = <1 1 1000 0 0>;
226*c66ec88fSEmmanuel Vadot		phy-connection-type = "rgmii-id";
227*c66ec88fSEmmanuel Vadot
228*c66ec88fSEmmanuel Vadot	};
229*c66ec88fSEmmanuel Vadot
230*c66ec88fSEmmanuel Vadot	enet1: ethernet@b1000 {
231*c66ec88fSEmmanuel Vadot		phy-handle = <&phy0>;
232*c66ec88fSEmmanuel Vadot		tbi-handle = <&tbi1>;
233*c66ec88fSEmmanuel Vadot		phy-connection-type = "sgmii";
234*c66ec88fSEmmanuel Vadot	};
235*c66ec88fSEmmanuel Vadot
236*c66ec88fSEmmanuel Vadot	enet2: ethernet@b2000 {
237*c66ec88fSEmmanuel Vadot		phy-handle = <&phy1>;
238*c66ec88fSEmmanuel Vadot		phy-connection-type = "rgmii-id";
239*c66ec88fSEmmanuel Vadot	};
240*c66ec88fSEmmanuel Vadot
241*c66ec88fSEmmanuel Vadot	par_io@e0100 {
242*c66ec88fSEmmanuel Vadot		#address-cells = <1>;
243*c66ec88fSEmmanuel Vadot		#size-cells = <1>;
244*c66ec88fSEmmanuel Vadot		reg = <0xe0100 0x60>;
245*c66ec88fSEmmanuel Vadot		ranges = <0x0 0xe0100 0x60>;
246*c66ec88fSEmmanuel Vadot		device_type = "par_io";
247*c66ec88fSEmmanuel Vadot		num-ports = <3>;
248*c66ec88fSEmmanuel Vadot		pio1: ucc_pin@1 {
249*c66ec88fSEmmanuel Vadot			pio-map = <
250*c66ec88fSEmmanuel Vadot		/* port  pin  dir  open_drain  assignment  has_irq */
251*c66ec88fSEmmanuel Vadot				0x1  0x13 0x1  0x0  0x1  0x0    /* QE_MUX_MDC */
252*c66ec88fSEmmanuel Vadot				0x1  0x14 0x3  0x0  0x1  0x0    /* QE_MUX_MDIO */
253*c66ec88fSEmmanuel Vadot				0x0  0x17 0x2  0x0  0x2  0x0    /* CLK12 */
254*c66ec88fSEmmanuel Vadot				0x0  0x18 0x2  0x0  0x1  0x0    /* CLK9 */
255*c66ec88fSEmmanuel Vadot				0x0  0x7  0x1  0x0  0x2  0x0    /* ENET1_TXD0_SER1_TXD0 */
256*c66ec88fSEmmanuel Vadot				0x0  0x9  0x1  0x0  0x2  0x0    /* ENET1_TXD1_SER1_TXD1 */
257*c66ec88fSEmmanuel Vadot				0x0  0xb  0x1  0x0  0x2  0x0    /* ENET1_TXD2_SER1_TXD2 */
258*c66ec88fSEmmanuel Vadot				0x0  0xc  0x1  0x0  0x2  0x0    /* ENET1_TXD3_SER1_TXD3 */
259*c66ec88fSEmmanuel Vadot				0x0  0x6  0x2  0x0  0x2  0x0    /* ENET1_RXD0_SER1_RXD0 */
260*c66ec88fSEmmanuel Vadot				0x0  0xa  0x2  0x0  0x2  0x0    /* ENET1_RXD1_SER1_RXD1 */
261*c66ec88fSEmmanuel Vadot				0x0  0xe  0x2  0x0  0x2  0x0    /* ENET1_RXD2_SER1_RXD2 */
262*c66ec88fSEmmanuel Vadot				0x0  0xf  0x2  0x0  0x2  0x0    /* ENET1_RXD3_SER1_RXD3 */
263*c66ec88fSEmmanuel Vadot				0x0  0x5  0x1  0x0  0x2  0x0    /* ENET1_TX_EN_SER1_RTS_B */
264*c66ec88fSEmmanuel Vadot				0x0  0xd  0x1  0x0  0x2  0x0    /* ENET1_TX_ER */
265*c66ec88fSEmmanuel Vadot				0x0  0x4  0x2  0x0  0x2  0x0    /* ENET1_RX_DV_SER1_CTS_B */
266*c66ec88fSEmmanuel Vadot				0x0  0x8  0x2  0x0  0x2  0x0    /* ENET1_RX_ER_SER1_CD_B */
267*c66ec88fSEmmanuel Vadot				0x0  0x11 0x2  0x0  0x2  0x0    /* ENET1_CRS */
268*c66ec88fSEmmanuel Vadot				0x0  0x10 0x2  0x0  0x2  0x0>;    /* ENET1_COL */
269*c66ec88fSEmmanuel Vadot		};
270*c66ec88fSEmmanuel Vadot
271*c66ec88fSEmmanuel Vadot		pio2: ucc_pin@2 {
272*c66ec88fSEmmanuel Vadot			pio-map = <
273*c66ec88fSEmmanuel Vadot		/* port  pin  dir  open_drain  assignment  has_irq */
274*c66ec88fSEmmanuel Vadot				0x1  0x13 0x1  0x0  0x1  0x0    /* QE_MUX_MDC */
275*c66ec88fSEmmanuel Vadot				0x1  0x14 0x3  0x0  0x1  0x0    /* QE_MUX_MDIO */
276*c66ec88fSEmmanuel Vadot				0x1  0xb  0x2  0x0  0x1  0x0    /* CLK13 */
277*c66ec88fSEmmanuel Vadot				0x1  0x7  0x1  0x0  0x2  0x0    /* ENET5_TXD0_SER5_TXD0 */
278*c66ec88fSEmmanuel Vadot				0x1  0xa  0x1  0x0  0x2  0x0    /* ENET5_TXD1_SER5_TXD1 */
279*c66ec88fSEmmanuel Vadot				0x1  0x6  0x2  0x0  0x2  0x0    /* ENET5_RXD0_SER5_RXD0 */
280*c66ec88fSEmmanuel Vadot				0x1  0x9  0x2  0x0  0x2  0x0    /* ENET5_RXD1_SER5_RXD1 */
281*c66ec88fSEmmanuel Vadot				0x1  0x5  0x1  0x0  0x2  0x0    /* ENET5_TX_EN_SER5_RTS_B */
282*c66ec88fSEmmanuel Vadot				0x1  0x4  0x2  0x0  0x2  0x0    /* ENET5_RX_DV_SER5_CTS_B */
283*c66ec88fSEmmanuel Vadot				0x1  0x8  0x2  0x0  0x2  0x0>;    /* ENET5_RX_ER_SER5_CD_B */
284*c66ec88fSEmmanuel Vadot		};
285*c66ec88fSEmmanuel Vadot
286*c66ec88fSEmmanuel Vadot		pio3: ucc_pin@3 {
287*c66ec88fSEmmanuel Vadot			pio-map = <
288*c66ec88fSEmmanuel Vadot		/* port  pin  dir  open_drain  assignment  has_irq */
289*c66ec88fSEmmanuel Vadot				0x0  0x16 0x2  0x0  0x2  0x0    /* SER7_CD_B*/
290*c66ec88fSEmmanuel Vadot				0x0  0x12 0x2  0x0  0x2  0x0    /* SER7_CTS_B*/
291*c66ec88fSEmmanuel Vadot				0x0  0x13 0x1  0x0  0x2  0x0    /* SER7_RTS_B*/
292*c66ec88fSEmmanuel Vadot				0x0  0x14 0x2  0x0  0x2  0x0    /* SER7_RXD0*/
293*c66ec88fSEmmanuel Vadot				0x0  0x15 0x1  0x0  0x2  0x0>;    /* SER7_TXD0*/
294*c66ec88fSEmmanuel Vadot		};
295*c66ec88fSEmmanuel Vadot
296*c66ec88fSEmmanuel Vadot		pio4: ucc_pin@4 {
297*c66ec88fSEmmanuel Vadot			pio-map = <
298*c66ec88fSEmmanuel Vadot		/* port  pin  dir  open_drain  assignment  has_irq */
299*c66ec88fSEmmanuel Vadot				0x1  0x0  0x2  0x0  0x2  0x0    /* SER3_CD_B*/
300*c66ec88fSEmmanuel Vadot				0x0  0x1c 0x2  0x0  0x2  0x0    /* SER3_CTS_B*/
301*c66ec88fSEmmanuel Vadot				0x0  0x1d 0x1  0x0  0x2  0x0    /* SER3_RTS_B*/
302*c66ec88fSEmmanuel Vadot				0x0  0x1e 0x2  0x0  0x2  0x0    /* SER3_RXD0*/
303*c66ec88fSEmmanuel Vadot				0x0  0x1f 0x1  0x0  0x2  0x0>;    /* SER3_TXD0*/
304*c66ec88fSEmmanuel Vadot		};
305*c66ec88fSEmmanuel Vadot	};
306*c66ec88fSEmmanuel Vadot};
307*c66ec88fSEmmanuel Vadot
308*c66ec88fSEmmanuel Vadot&qe {
309*c66ec88fSEmmanuel Vadot	serial2: ucc@2600 {
310*c66ec88fSEmmanuel Vadot		device_type = "serial";
311*c66ec88fSEmmanuel Vadot		compatible = "ucc_uart";
312*c66ec88fSEmmanuel Vadot		port-number = <0>;
313*c66ec88fSEmmanuel Vadot		rx-clock-name = "brg6";
314*c66ec88fSEmmanuel Vadot		tx-clock-name = "brg6";
315*c66ec88fSEmmanuel Vadot		pio-handle = <&pio3>;
316*c66ec88fSEmmanuel Vadot	};
317*c66ec88fSEmmanuel Vadot
318*c66ec88fSEmmanuel Vadot	serial3: ucc@2200 {
319*c66ec88fSEmmanuel Vadot		device_type = "serial";
320*c66ec88fSEmmanuel Vadot		compatible = "ucc_uart";
321*c66ec88fSEmmanuel Vadot		port-number = <1>;
322*c66ec88fSEmmanuel Vadot		rx-clock-name = "brg2";
323*c66ec88fSEmmanuel Vadot		tx-clock-name = "brg2";
324*c66ec88fSEmmanuel Vadot		pio-handle = <&pio4>;
325*c66ec88fSEmmanuel Vadot	};
326*c66ec88fSEmmanuel Vadot};
327