]> git.ipfire.org Git - thirdparty/u-boot.git/blob - board/freescale/lx2160a/eth_lx2162aqds.c
Prepare v2023.04
[thirdparty/u-boot.git] / board / freescale / lx2160a / eth_lx2162aqds.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * Copyright 2020 NXP
4 *
5 */
6
7 #include <common.h>
8 #include <env.h>
9 #include <fdt_support.h>
10 #include <hwconfig.h>
11 #include <command.h>
12 #include <log.h>
13 #include <net.h>
14 #include <netdev.h>
15 #include <malloc.h>
16 #include <fsl_mdio.h>
17 #include <miiphy.h>
18 #include <phy.h>
19 #include <fm_eth.h>
20 #include <asm/io.h>
21 #include <exports.h>
22 #include <asm/global_data.h>
23 #include <asm/arch/fsl_serdes.h>
24 #include <fsl-mc/fsl_mc.h>
25 #include <fsl-mc/ldpaa_wriop.h>
26 #include <linux/libfdt.h>
27
28 #include "../common/qixis.h"
29
30 DECLARE_GLOBAL_DATA_PTR;
31
32 #ifndef CONFIG_DM_ETH
33 #define EMI_NONE 0
34 #define EMI1 1 /* Mdio Bus 1 */
35 #define EMI2 2 /* Mdio Bus 2 */
36
37 #if defined(CONFIG_FSL_MC_ENET)
38 enum io_slot {
39 IO_SLOT_NONE = 0,
40 IO_SLOT_1,
41 IO_SLOT_2,
42 IO_SLOT_3,
43 IO_SLOT_4,
44 IO_SLOT_5,
45 IO_SLOT_6,
46 IO_SLOT_7,
47 IO_SLOT_8,
48 EMI1_RGMII1,
49 EMI1_RGMII2,
50 IO_SLOT_MAX
51 };
52
53 struct lx2162a_qds_mdio {
54 enum io_slot ioslot : 4;
55 u8 realbusnum : 4;
56 struct mii_dev *realbus;
57 };
58
59 /* structure explaining the phy configuration on 8 lanes of a serdes*/
60 struct serdes_phy_config {
61 u8 serdes; /* serdes protocol */
62 struct phy_config {
63 u8 dpmacid;
64 /* -1 terminated array */
65 int phy_address[WRIOP_MAX_PHY_NUM + 1];
66 u8 mdio_bus;
67 enum io_slot ioslot;
68 } phy_config[SRDS_MAX_LANES];
69 };
70
71 /* Table defining the phy configuration on 8 lanes of a serdes.
72 * Various assumptions have been made while defining this table.
73 * e.g. for serdes1 protocol 19 it is being assumed that X-M11-USXGMII
74 * card is being used for dpmac 3-4. (X-M12-XFI could also have been used)
75 * And also that this card is connected to IO Slot 1 (could have been connected
76 * to any of the 8 IO slots (IO slot 1 - IO slot 8)).
77 * similarly, it is also being assumed that MDIO 1 is selected on X-M7-40G card
78 * used in serdes1 protocol 19 (could have selected MDIO 2)
79 * To override these settings "dpmac" environment variable can be used after
80 * defining "dpmac_override" in hwconfig environment variable.
81 * This table has limited serdes protocol entries. It can be expanded as per
82 * requirement.
83 */
84 /*****************************************************************
85 *| SERDES_1 PROTOCOL | IO_SLOT | CARD |
86 ******************************************************************
87 *| 2 | IO_SLOT_1 | M4-PCIE-SGMII |
88 *| 3 | IO_SLOT_1 | M11-USXGMII |
89 *| 15 | IO_SLOT_1 | M13-25G |
90 *| 17 | IO_SLOT_1 | M13-25G |
91 *| 18 | IO_SLOT_1 | M11-USXGMII |
92 *| | IO_SLOT_6 | M13-25G |
93 *| 20 | IO_SLOT_1 | M7-40G |
94 *****************************************************************
95 */
96 static const struct serdes_phy_config serdes1_phy_config[] = {
97 {1, {} },
98 {2, {{WRIOP1_DPMAC3, {SGMII_CARD_PORT1_PHY_ADDR, -1},
99 EMI1, IO_SLOT_1},
100 {WRIOP1_DPMAC4, {SGMII_CARD_PORT2_PHY_ADDR, -1},
101 EMI1, IO_SLOT_1},
102 {WRIOP1_DPMAC5, {SGMII_CARD_PORT3_PHY_ADDR, -1},
103 EMI1, IO_SLOT_1},
104 {WRIOP1_DPMAC6, {SGMII_CARD_PORT4_PHY_ADDR, -1},
105 EMI1, IO_SLOT_1} } },
106 {3, {{WRIOP1_DPMAC3, {AQ_PHY_ADDR1, -1},
107 EMI1, IO_SLOT_1},
108 {WRIOP1_DPMAC4, {AQ_PHY_ADDR2, -1},
109 EMI1, IO_SLOT_1},
110 {WRIOP1_DPMAC5, {AQ_PHY_ADDR3, -1},
111 EMI1, IO_SLOT_1},
112 {WRIOP1_DPMAC6, {AQ_PHY_ADDR4, -1},
113 EMI1, IO_SLOT_1} } },
114 {15, {{WRIOP1_DPMAC1, {INPHI_PHY_ADDR1, INPHI_PHY_ADDR2, -1},
115 EMI1, IO_SLOT_1},
116 {WRIOP1_DPMAC2, {INPHI_PHY_ADDR1, INPHI_PHY_ADDR2, -1},
117 EMI1, IO_SLOT_1} } },
118 {17, {{WRIOP1_DPMAC3, {INPHI_PHY_ADDR1, INPHI_PHY_ADDR2, -1},
119 EMI1, IO_SLOT_1},
120 {WRIOP1_DPMAC4, {INPHI_PHY_ADDR1, INPHI_PHY_ADDR2, -1},
121 EMI1, IO_SLOT_1},
122 {WRIOP1_DPMAC5, {INPHI_PHY_ADDR1, INPHI_PHY_ADDR2, -1},
123 EMI1, IO_SLOT_1},
124 {WRIOP1_DPMAC6, {INPHI_PHY_ADDR1, INPHI_PHY_ADDR2, -1},
125 EMI1, IO_SLOT_1} } },
126 {18, {{WRIOP1_DPMAC3, {AQ_PHY_ADDR1, -1},
127 EMI1, IO_SLOT_1},
128 {WRIOP1_DPMAC4, {AQ_PHY_ADDR2, -1},
129 EMI1, IO_SLOT_1},
130 {WRIOP1_DPMAC5, {INPHI_PHY_ADDR1, INPHI_PHY_ADDR2, -1},
131 EMI1, IO_SLOT_6},
132 {WRIOP1_DPMAC6, {INPHI_PHY_ADDR1, INPHI_PHY_ADDR2, -1},
133 EMI1, IO_SLOT_6} } },
134 {20, {{WRIOP1_DPMAC1, {CORTINA_PHY_ADDR1, -1},
135 EMI1, IO_SLOT_1} } }
136 };
137
138 /*****************************************************************
139 *| SERDES_2 PROTOCOL | IO_SLOT | CARD |
140 ******************************************************************
141 *| 2 | IO_SLOT_7 | M4-PCIE-SGMII |
142 *| | IO_SLOT_8 | M4-PCIE-SGMII |
143 *| 3 | IO_SLOT_7 | M4-PCIE-SGMII |
144 *| | IO_SLOT_8 | M4-PCIE-SGMII |
145 *| 5 | IO_SLOT_7 | M4-PCIE-SGMII |
146 *| 10 | IO_SLOT_7 | M4-PCIE-SGMII |
147 *| | IO_SLOT_8 | M4-PCIE-SGMII |
148 *| 11 | IO_SLOT_7 | M4-PCIE-SGMII |
149 *| | IO_SLOT_8 | M4-PCIE-SGMII |
150 *| 12 | IO_SLOT_7 | M4-PCIE-SGMII |
151 *| | IO_SLOT_8 | M4-PCIE-SGMII |
152 ******************************************************************
153 */
154 static const struct serdes_phy_config serdes2_phy_config[] = {
155 {2, {} },
156 {3, {} },
157 {5, {} },
158 {10, {{WRIOP1_DPMAC11, {SGMII_CARD_PORT1_PHY_ADDR, -1},
159 EMI1, IO_SLOT_7},
160 {WRIOP1_DPMAC12, {SGMII_CARD_PORT2_PHY_ADDR, -1},
161 EMI1, IO_SLOT_7},
162 {WRIOP1_DPMAC17, {SGMII_CARD_PORT3_PHY_ADDR, -1},
163 EMI1, IO_SLOT_7},
164 {WRIOP1_DPMAC18, {SGMII_CARD_PORT4_PHY_ADDR, -1},
165 EMI1, IO_SLOT_7} } },
166 {11, {{WRIOP1_DPMAC12, {SGMII_CARD_PORT2_PHY_ADDR, -1},
167 EMI1, IO_SLOT_7},
168 {WRIOP1_DPMAC17, {SGMII_CARD_PORT3_PHY_ADDR, -1},
169 EMI1, IO_SLOT_7},
170 {WRIOP1_DPMAC18, {SGMII_CARD_PORT4_PHY_ADDR, -1},
171 EMI1, IO_SLOT_7},
172 {WRIOP1_DPMAC16, {SGMII_CARD_PORT2_PHY_ADDR, -1},
173 EMI1, IO_SLOT_8},
174 {WRIOP1_DPMAC13, {SGMII_CARD_PORT3_PHY_ADDR, -1},
175 EMI1, IO_SLOT_8},
176 {WRIOP1_DPMAC14, {SGMII_CARD_PORT4_PHY_ADDR, -1},
177 EMI1, IO_SLOT_8} } },
178 {12, {{WRIOP1_DPMAC11, {SGMII_CARD_PORT1_PHY_ADDR, -1},
179 EMI1, IO_SLOT_7},
180 {WRIOP1_DPMAC12, {SGMII_CARD_PORT2_PHY_ADDR, -1},
181 EMI1, IO_SLOT_7},
182 {WRIOP1_DPMAC17, {SGMII_CARD_PORT3_PHY_ADDR, -1},
183 EMI1, IO_SLOT_7},
184 {WRIOP1_DPMAC18, {SGMII_CARD_PORT4_PHY_ADDR, -1},
185 EMI1, IO_SLOT_7} } }
186 };
187
188 static inline
189 const struct phy_config *get_phy_config(u8 serdes,
190 const struct serdes_phy_config *table,
191 u8 table_size)
192 {
193 int i;
194
195 for (i = 0; i < table_size; i++) {
196 if (table[i].serdes == serdes)
197 return table[i].phy_config;
198 }
199
200 return NULL;
201 }
202
203 /* BRDCFG4 controls EMI routing for the board.
204 * Bits Function
205 * 7-6 EMI Interface #1 Primary Routing (CFG_MUX1_EMI1) (1.8V):
206 * EMI1 00= On-board PHY #1
207 * 01= On-board PHY #2
208 * 10= (reserved)
209 * 11= Slots 1..8 multiplexer and translator.
210 * 5-3 EMI Interface #1 Secondary Routing (CFG_MUX2_EMI1) (2.5V):
211 * EMI1X 000= Slot #1
212 * 001= Slot #2
213 * 010= Slot #3
214 * 011= Slot #4
215 * 100= Slot #5
216 * 101= Slot #6
217 * 110= Slot #7
218 * 111= Slot #8
219 * 2-0 EMI Interface #2 Routing (CFG_MUX_EMI2):
220 * EMI2 000= Slot #1 (secondary EMI)
221 * 001= Slot #2 (secondary EMI)
222 * 010= Slot #3 (secondary EMI)
223 * 011= Slot #4 (secondary EMI)
224 * 100= Slot #5 (secondary EMI)
225 * 101= Slot #6 (secondary EMI)
226 * 110= Slot #7 (secondary EMI)
227 * 111= Slot #8 (secondary EMI)
228 */
229 static int lx2162a_qds_get_mdio_mux_val(u8 realbusnum, enum io_slot ioslot)
230 {
231 switch (realbusnum) {
232 case EMI1:
233 switch (ioslot) {
234 case EMI1_RGMII1:
235 return 0;
236 case EMI1_RGMII2:
237 return 0x40;
238 default:
239 return (((ioslot - 1) << BRDCFG4_EMI1SEL_SHIFT) | 0xC0);
240 }
241 break;
242 case EMI2:
243 return ((ioslot - 1) << BRDCFG4_EMI2SEL_SHIFT);
244 default:
245 return -1;
246 }
247 }
248
249 static void lx2162a_qds_mux_mdio(struct lx2162a_qds_mdio *priv)
250 {
251 u8 brdcfg4, mux_val, reg;
252
253 brdcfg4 = QIXIS_READ(brdcfg[4]);
254 reg = brdcfg4;
255 mux_val = lx2162a_qds_get_mdio_mux_val(priv->realbusnum, priv->ioslot);
256
257 switch (priv->realbusnum) {
258 case EMI1:
259 brdcfg4 &= ~BRDCFG4_EMI1SEL_MASK;
260 brdcfg4 |= mux_val;
261 break;
262 case EMI2:
263 brdcfg4 &= ~BRDCFG4_EMI2SEL_MASK;
264 brdcfg4 |= mux_val;
265 break;
266 }
267
268 if (brdcfg4 ^ reg)
269 QIXIS_WRITE(brdcfg[4], brdcfg4);
270 }
271
272 static int lx2162a_qds_mdio_read(struct mii_dev *bus, int addr,
273 int devad, int regnum)
274 {
275 struct lx2162a_qds_mdio *priv = bus->priv;
276
277 lx2162a_qds_mux_mdio(priv);
278
279 return priv->realbus->read(priv->realbus, addr, devad, regnum);
280 }
281
282 static int lx2162a_qds_mdio_write(struct mii_dev *bus, int addr, int devad,
283 int regnum, u16 value)
284 {
285 struct lx2162a_qds_mdio *priv = bus->priv;
286
287 lx2162a_qds_mux_mdio(priv);
288
289 return priv->realbus->write(priv->realbus, addr, devad, regnum, value);
290 }
291
292 static int lx2162a_qds_mdio_reset(struct mii_dev *bus)
293 {
294 struct lx2162a_qds_mdio *priv = bus->priv;
295
296 return priv->realbus->reset(priv->realbus);
297 }
298
299 static struct mii_dev *lx2162a_qds_mdio_init(u8 realbusnum, enum io_slot ioslot)
300 {
301 struct lx2162a_qds_mdio *pmdio;
302 struct mii_dev *bus;
303 /*should be within MDIO_NAME_LEN*/
304 char dummy_mdio_name[] = "LX2162A_QDS_MDIO1_IOSLOT1";
305
306 if (realbusnum == EMI2) {
307 if (ioslot < IO_SLOT_1 || ioslot > IO_SLOT_8) {
308 printf("invalid ioslot %d\n", ioslot);
309 return NULL;
310 }
311 } else if (realbusnum == EMI1) {
312 if (ioslot < IO_SLOT_1 || ioslot > EMI1_RGMII2) {
313 printf("invalid ioslot %d\n", ioslot);
314 return NULL;
315 }
316 } else {
317 printf("not supported real mdio bus %d\n", realbusnum);
318 return NULL;
319 }
320
321 if (ioslot == EMI1_RGMII1)
322 strcpy(dummy_mdio_name, "LX2162A_QDS_MDIO1_RGMII1");
323 else if (ioslot == EMI1_RGMII2)
324 strcpy(dummy_mdio_name, "LX2162A_QDS_MDIO1_RGMII2");
325 else
326 sprintf(dummy_mdio_name, "LX2162A_QDS_MDIO%d_IOSLOT%d",
327 realbusnum, ioslot);
328 bus = miiphy_get_dev_by_name(dummy_mdio_name);
329
330 if (bus)
331 return bus;
332
333 bus = mdio_alloc();
334 if (!bus) {
335 printf("Failed to allocate %s bus\n", dummy_mdio_name);
336 return NULL;
337 }
338
339 pmdio = malloc(sizeof(*pmdio));
340 if (!pmdio) {
341 printf("Failed to allocate %s private data\n", dummy_mdio_name);
342 free(bus);
343 return NULL;
344 }
345
346 switch (realbusnum) {
347 case EMI1:
348 pmdio->realbus =
349 miiphy_get_dev_by_name(DEFAULT_WRIOP_MDIO1_NAME);
350 break;
351 case EMI2:
352 pmdio->realbus =
353 miiphy_get_dev_by_name(DEFAULT_WRIOP_MDIO2_NAME);
354 break;
355 }
356
357 if (!pmdio->realbus) {
358 printf("No real mdio bus num %d found\n", realbusnum);
359 free(bus);
360 free(pmdio);
361 return NULL;
362 }
363
364 pmdio->realbusnum = realbusnum;
365 pmdio->ioslot = ioslot;
366 bus->read = lx2162a_qds_mdio_read;
367 bus->write = lx2162a_qds_mdio_write;
368 bus->reset = lx2162a_qds_mdio_reset;
369 strcpy(bus->name, dummy_mdio_name);
370 bus->priv = pmdio;
371
372 if (!mdio_register(bus))
373 return bus;
374
375 printf("No bus with name %s\n", dummy_mdio_name);
376 free(bus);
377 free(pmdio);
378 return NULL;
379 }
380
381 static inline void do_phy_config(const struct phy_config *phy_config)
382 {
383 struct mii_dev *bus;
384 int i, phy_num, phy_address;
385
386 for (i = 0; i < SRDS_MAX_LANES; i++) {
387 if (!phy_config[i].dpmacid)
388 continue;
389
390 for (phy_num = 0;
391 phy_num < ARRAY_SIZE(phy_config[i].phy_address);
392 phy_num++) {
393 phy_address = phy_config[i].phy_address[phy_num];
394 if (phy_address == -1)
395 break;
396 wriop_set_phy_address(phy_config[i].dpmacid,
397 phy_num, phy_address);
398 }
399 /*Register the muxing front-ends to the MDIO buses*/
400 bus = lx2162a_qds_mdio_init(phy_config[i].mdio_bus,
401 phy_config[i].ioslot);
402 if (!bus)
403 printf("could not get bus for mdio %d ioslot %d\n",
404 phy_config[i].mdio_bus,
405 phy_config[i].ioslot);
406 else
407 wriop_set_mdio(phy_config[i].dpmacid, bus);
408 }
409 }
410
411 static inline void do_dpmac_config(int dpmac, const char *arg_dpmacid,
412 char *env_dpmac)
413 {
414 const char *ret;
415 size_t len;
416 u8 realbusnum, ioslot;
417 struct mii_dev *bus;
418 int phy_num;
419 char *phystr = "phy00";
420
421 /*search phy in dpmac arg*/
422 for (phy_num = 0; phy_num < WRIOP_MAX_PHY_NUM; phy_num++) {
423 sprintf(phystr, "phy%d", phy_num + 1);
424 ret = hwconfig_subarg_f(arg_dpmacid, phystr, &len, env_dpmac);
425 if (!ret) {
426 /*look for phy instead of phy1*/
427 if (!phy_num)
428 ret = hwconfig_subarg_f(arg_dpmacid, "phy",
429 &len, env_dpmac);
430 if (!ret)
431 continue;
432 }
433
434 if (len != 4 || strncmp(ret, "0x", 2))
435 printf("invalid phy format in %s variable.\n"
436 "specify phy%d for %s in hex format e.g. 0x12\n",
437 env_dpmac, phy_num + 1, arg_dpmacid);
438 else
439 wriop_set_phy_address(dpmac, phy_num,
440 hextoul(ret, NULL));
441 }
442
443 /*search mdio in dpmac arg*/
444 ret = hwconfig_subarg_f(arg_dpmacid, "mdio", &len, env_dpmac);
445 if (ret)
446 realbusnum = *ret - '0';
447 else
448 realbusnum = EMI_NONE;
449
450 if (realbusnum) {
451 /*search io in dpmac arg*/
452 ret = hwconfig_subarg_f(arg_dpmacid, "io", &len, env_dpmac);
453 if (ret)
454 ioslot = *ret - '0';
455 else
456 ioslot = IO_SLOT_NONE;
457 /*Register the muxing front-ends to the MDIO buses*/
458 bus = lx2162a_qds_mdio_init(realbusnum, ioslot);
459 if (!bus)
460 printf("could not get bus for mdio %d ioslot %d\n",
461 realbusnum, ioslot);
462 else
463 wriop_set_mdio(dpmac, bus);
464 }
465 }
466
467 #endif
468 #endif /* !CONFIG_DM_ETH */
469
470 int board_eth_init(struct bd_info *bis)
471 {
472 #ifndef CONFIG_DM_ETH
473 #if defined(CONFIG_FSL_MC_ENET)
474 struct memac_mdio_info mdio_info;
475 struct memac_mdio_controller *regs;
476 int i;
477 const char *ret;
478 char *env_dpmac;
479 char dpmacid[] = "dpmac00", srds[] = "00_00_00";
480 size_t len;
481 struct mii_dev *bus;
482 const struct phy_config *phy_config;
483 struct ccsr_gur *gur = (void *)(CFG_SYS_FSL_GUTS_ADDR);
484 u32 srds_s1, srds_s2;
485
486 srds_s1 = in_le32(&gur->rcwsr[28]) &
487 FSL_CHASSIS3_RCWSR28_SRDS1_PRTCL_MASK;
488 srds_s1 >>= FSL_CHASSIS3_RCWSR28_SRDS1_PRTCL_SHIFT;
489
490 srds_s2 = in_le32(&gur->rcwsr[28]) &
491 FSL_CHASSIS3_RCWSR28_SRDS2_PRTCL_MASK;
492 srds_s2 >>= FSL_CHASSIS3_RCWSR28_SRDS2_PRTCL_SHIFT;
493
494 sprintf(srds, "%d_%d", srds_s1, srds_s2);
495
496 regs = (struct memac_mdio_controller *)CFG_SYS_FSL_WRIOP1_MDIO1;
497 mdio_info.regs = regs;
498 mdio_info.name = DEFAULT_WRIOP_MDIO1_NAME;
499
500 /*Register the EMI 1*/
501 fm_memac_mdio_init(bis, &mdio_info);
502
503 regs = (struct memac_mdio_controller *)CFG_SYS_FSL_WRIOP1_MDIO2;
504 mdio_info.regs = regs;
505 mdio_info.name = DEFAULT_WRIOP_MDIO2_NAME;
506
507 /*Register the EMI 2*/
508 fm_memac_mdio_init(bis, &mdio_info);
509
510 /* "dpmac" environment variable can be used after
511 * defining "dpmac_override" in hwconfig environment variable.
512 */
513 if (hwconfig("dpmac_override")) {
514 env_dpmac = env_get("dpmac");
515 if (env_dpmac) {
516 ret = hwconfig_arg_f("srds", &len, env_dpmac);
517 if (ret) {
518 if (strncmp(ret, srds, strlen(srds))) {
519 printf("SERDES configuration changed.\n"
520 "previous: %.*s, current: %s.\n"
521 "update dpmac variable.\n",
522 (int)len, ret, srds);
523 }
524 } else {
525 printf("SERDES configuration not found.\n"
526 "Please add srds:%s in dpmac variable\n",
527 srds);
528 }
529
530 for (i = WRIOP1_DPMAC1; i < NUM_WRIOP_PORTS; i++) {
531 /* Look for dpmac1 to dpmac24(current max) arg
532 * in dpmac environment variable
533 */
534 sprintf(dpmacid, "dpmac%d", i);
535 ret = hwconfig_arg_f(dpmacid, &len, env_dpmac);
536 if (ret)
537 do_dpmac_config(i, dpmacid, env_dpmac);
538 }
539 } else {
540 printf("Warning: environment dpmac not found.\n"
541 "DPAA network interfaces may not work\n");
542 }
543 } else {
544 /*Look for phy config for serdes1 in phy config table*/
545 phy_config = get_phy_config(srds_s1, serdes1_phy_config,
546 ARRAY_SIZE(serdes1_phy_config));
547 if (!phy_config) {
548 printf("%s WRIOP: Unsupported SerDes1 Protocol %d\n",
549 __func__, srds_s1);
550 } else {
551 do_phy_config(phy_config);
552 }
553 phy_config = get_phy_config(srds_s2, serdes2_phy_config,
554 ARRAY_SIZE(serdes2_phy_config));
555 if (!phy_config) {
556 printf("%s WRIOP: Unsupported SerDes2 Protocol %d\n",
557 __func__, srds_s2);
558 } else {
559 do_phy_config(phy_config);
560 }
561 }
562
563 if (wriop_get_enet_if(WRIOP1_DPMAC17) == PHY_INTERFACE_MODE_RGMII_ID) {
564 wriop_set_phy_address(WRIOP1_DPMAC17, 0, RGMII_PHY_ADDR1);
565 bus = lx2162a_qds_mdio_init(EMI1, EMI1_RGMII1);
566 if (!bus)
567 printf("could not get bus for RGMII1\n");
568 else
569 wriop_set_mdio(WRIOP1_DPMAC17, bus);
570 }
571
572 if (wriop_get_enet_if(WRIOP1_DPMAC18) == PHY_INTERFACE_MODE_RGMII_ID) {
573 wriop_set_phy_address(WRIOP1_DPMAC18, 0, RGMII_PHY_ADDR2);
574 bus = lx2162a_qds_mdio_init(EMI1, EMI1_RGMII2);
575 if (!bus)
576 printf("could not get bus for RGMII2\n");
577 else
578 wriop_set_mdio(WRIOP1_DPMAC18, bus);
579 }
580
581 cpu_eth_init(bis);
582 #endif /* CONFIG_FMAN_ENET */
583 #endif /* !CONFIG_DM_ETH */
584
585 #ifdef CONFIG_PHY_AQUANTIA
586 /*
587 * Export functions to be used by AQ firmware
588 * upload application
589 */
590 gd->jt->strcpy = strcpy;
591 gd->jt->mdelay = mdelay;
592 gd->jt->mdio_get_current_dev = mdio_get_current_dev;
593 gd->jt->phy_find_by_mask = phy_find_by_mask;
594 gd->jt->mdio_phydev_for_ethname = mdio_phydev_for_ethname;
595 gd->jt->miiphy_set_current_dev = miiphy_set_current_dev;
596 #endif
597
598 #ifdef CONFIG_DM_ETH
599 return 0;
600 #else
601 return pci_eth_init(bis);
602 #endif
603 }
604
605 #if defined(CONFIG_RESET_PHY_R)
606 void reset_phy(void)
607 {
608 #if defined(CONFIG_FSL_MC_ENET)
609 mc_env_boot();
610 #endif
611 }
612 #endif /* CONFIG_RESET_PHY_R */
613
614 #ifndef CONFIG_DM_ETH
615 #if defined(CONFIG_FSL_MC_ENET)
616 int fdt_fixup_dpmac_phy_handle(void *fdt, int dpmac_id, int node_phandle)
617 {
618 int offset;
619 int ret;
620 char dpmac_str[] = "dpmacs@00";
621 const char *phy_string;
622
623 offset = fdt_path_offset(fdt, "/soc/fsl-mc/dpmacs");
624
625 if (offset < 0)
626 offset = fdt_path_offset(fdt, "/fsl-mc/dpmacs");
627
628 if (offset < 0) {
629 printf("dpmacs node not found in device tree\n");
630 return offset;
631 }
632
633 sprintf(dpmac_str, "dpmac@%x", dpmac_id);
634 debug("dpmac_str = %s\n", dpmac_str);
635
636 offset = fdt_subnode_offset(fdt, offset, dpmac_str);
637 if (offset < 0) {
638 printf("%s node not found in device tree\n", dpmac_str);
639 return offset;
640 }
641
642 phy_string = fdt_getprop(fdt, offset, "phy-connection-type", NULL);
643 if (is_backplane_mode(phy_string)) {
644 /* Backplane KR mode: skip fixups */
645 printf("Interface %d in backplane KR mode\n", dpmac_id);
646 return 0;
647 }
648
649 ret = fdt_appendprop_cell(fdt, offset, "phy-handle", node_phandle);
650 if (ret)
651 printf("%d@%s %d\n", __LINE__, __func__, ret);
652
653 phy_string = phy_string_for_interface(wriop_get_enet_if(dpmac_id));
654 ret = fdt_setprop_string(fdt, offset, "phy-connection-type",
655 phy_string);
656 if (ret)
657 printf("%d@%s %d\n", __LINE__, __func__, ret);
658
659 return ret;
660 }
661
662 int fdt_get_ioslot_offset(void *fdt, struct mii_dev *mii_dev, int fpga_offset)
663 {
664 char mdio_ioslot_str[] = "mdio@00";
665 struct lx2162a_qds_mdio *priv;
666 u64 reg;
667 u32 phandle;
668 int offset, mux_val;
669
670 /*Test if the MDIO bus is real mdio bus or muxing front end ?*/
671 if (strncmp(mii_dev->name, "LX2162A_QDS_MDIO",
672 strlen("LX2162A_QDS_MDIO")))
673 return -1;
674
675 /*Get the real MDIO bus num and ioslot info from bus's priv data*/
676 priv = mii_dev->priv;
677
678 debug("real_bus_num = %d, ioslot = %d\n",
679 priv->realbusnum, priv->ioslot);
680
681 if (priv->realbusnum == EMI1)
682 reg = CFG_SYS_FSL_WRIOP1_MDIO1;
683 else
684 reg = CFG_SYS_FSL_WRIOP1_MDIO2;
685
686 offset = fdt_node_offset_by_compat_reg(fdt, "fsl,fman-memac-mdio", reg);
687 if (offset < 0) {
688 printf("mdio@%llx node not found in device tree\n", reg);
689 return offset;
690 }
691
692 phandle = fdt_get_phandle(fdt, offset);
693 phandle = cpu_to_fdt32(phandle);
694 offset = fdt_node_offset_by_prop_value(fdt, -1, "mdio-parent-bus",
695 &phandle, 4);
696 if (offset < 0) {
697 printf("mdio-mux-%d node not found in device tree\n",
698 priv->realbusnum == EMI1 ? 1 : 2);
699 return offset;
700 }
701
702 mux_val = lx2162a_qds_get_mdio_mux_val(priv->realbusnum, priv->ioslot);
703 if (priv->realbusnum == EMI1)
704 mux_val >>= BRDCFG4_EMI1SEL_SHIFT;
705 else
706 mux_val >>= BRDCFG4_EMI2SEL_SHIFT;
707 sprintf(mdio_ioslot_str, "mdio@%x", (u8)mux_val);
708
709 offset = fdt_subnode_offset(fdt, offset, mdio_ioslot_str);
710 if (offset < 0) {
711 printf("%s node not found in device tree\n", mdio_ioslot_str);
712 return offset;
713 }
714
715 return offset;
716 }
717
718 int fdt_create_phy_node(void *fdt, int offset, u8 phyaddr, int *subnodeoffset,
719 struct phy_device *phy_dev, int phandle)
720 {
721 char phy_node_name[] = "ethernet-phy@00";
722 char phy_id_compatible_str[] = "ethernet-phy-id0000.0000,";
723 int ret;
724
725 sprintf(phy_node_name, "ethernet-phy@%x", phyaddr);
726 debug("phy_node_name = %s\n", phy_node_name);
727
728 *subnodeoffset = fdt_add_subnode(fdt, offset, phy_node_name);
729 if (*subnodeoffset <= 0) {
730 printf("Could not add subnode %s inside node %s err = %s\n",
731 phy_node_name, fdt_get_name(fdt, offset, NULL),
732 fdt_strerror(*subnodeoffset));
733 return *subnodeoffset;
734 }
735
736 sprintf(phy_id_compatible_str, "ethernet-phy-id%04x.%04x,",
737 phy_dev->phy_id >> 16, phy_dev->phy_id & 0xFFFF);
738 debug("phy_id_compatible_str %s\n", phy_id_compatible_str);
739
740 ret = fdt_setprop_string(fdt, *subnodeoffset, "compatible",
741 phy_id_compatible_str);
742 if (ret) {
743 printf("%d@%s %d\n", __LINE__, __func__, ret);
744 goto out;
745 }
746
747 if (phy_dev->is_c45) {
748 ret = fdt_appendprop_string(fdt, *subnodeoffset, "compatible",
749 "ethernet-phy-ieee802.3-c45");
750 if (ret) {
751 printf("%d@%s %d\n", __LINE__, __func__, ret);
752 goto out;
753 }
754 } else {
755 ret = fdt_appendprop_string(fdt, *subnodeoffset, "compatible",
756 "ethernet-phy-ieee802.3-c22");
757 if (ret) {
758 printf("%d@%s %d\n", __LINE__, __func__, ret);
759 goto out;
760 }
761 }
762
763 ret = fdt_setprop_cell(fdt, *subnodeoffset, "reg", phyaddr);
764 if (ret) {
765 printf("%d@%s %d\n", __LINE__, __func__, ret);
766 goto out;
767 }
768
769 ret = fdt_set_phandle(fdt, *subnodeoffset, phandle);
770 if (ret) {
771 printf("%d@%s %d\n", __LINE__, __func__, ret);
772 goto out;
773 }
774
775 out:
776 if (ret)
777 fdt_del_node(fdt, *subnodeoffset);
778
779 return ret;
780 }
781
782 #define is_rgmii(dpmac_id) \
783 wriop_get_enet_if((dpmac_id)) == PHY_INTERFACE_MODE_RGMII_ID
784
785 int fdt_fixup_board_phy(void *fdt)
786 {
787 int fpga_offset, offset, subnodeoffset;
788 struct mii_dev *mii_dev;
789 struct list_head *mii_devs, *entry;
790 int ret, dpmac_id, i;
791 struct phy_device *phy_dev;
792 char ethname[ETH_NAME_LEN];
793 phy_interface_t phy_iface;
794 uint32_t phandle;
795
796 ret = 0;
797 /* we know FPGA is connected to i2c0, therefore search path directly,
798 * instead of compatible property, as it saves time
799 */
800 fpga_offset = fdt_path_offset(fdt, "/soc/i2c@2000000/fpga");
801
802 if (fpga_offset < 0)
803 fpga_offset = fdt_path_offset(fdt, "/i2c@2000000/fpga");
804
805 if (fpga_offset < 0) {
806 printf("i2c@2000000/fpga node not found in device tree\n");
807 return fpga_offset;
808 }
809
810 ret = fdt_generate_phandle(fdt, &phandle);
811 if (ret < 0)
812 return ret;
813
814 mii_devs = mdio_get_list_head();
815
816 list_for_each(entry, mii_devs) {
817 mii_dev = list_entry(entry, struct mii_dev, link);
818 debug("mii_dev name : %s\n", mii_dev->name);
819 offset = fdt_get_ioslot_offset(fdt, mii_dev, fpga_offset);
820 if (offset < 0)
821 continue;
822
823 // Look for phy devices attached to MDIO bus muxing front end
824 // and create their entries with compatible being the device id
825 for (i = 0; i < PHY_MAX_ADDR; i++) {
826 phy_dev = mii_dev->phymap[i];
827 if (!phy_dev)
828 continue;
829
830 // TODO: use sscanf instead of loop
831 dpmac_id = WRIOP1_DPMAC1;
832 while (dpmac_id < NUM_WRIOP_PORTS) {
833 phy_iface = wriop_get_enet_if(dpmac_id);
834 snprintf(ethname, ETH_NAME_LEN, "DPMAC%d@%s",
835 dpmac_id,
836 phy_string_for_interface(phy_iface));
837 if (strcmp(ethname, phy_dev->dev->name) == 0)
838 break;
839 dpmac_id++;
840 }
841 if (dpmac_id == NUM_WRIOP_PORTS)
842 continue;
843
844 if ((dpmac_id == 17 || dpmac_id == 18) &&
845 is_rgmii(dpmac_id))
846 continue;
847
848 ret = fdt_create_phy_node(fdt, offset, i,
849 &subnodeoffset,
850 phy_dev, phandle);
851 if (ret)
852 break;
853
854 ret = fdt_fixup_dpmac_phy_handle(fdt,
855 dpmac_id, phandle);
856 if (ret) {
857 fdt_del_node(fdt, subnodeoffset);
858 break;
859 }
860 /* calculate offset again as new node addition may have
861 * changed offset;
862 */
863 offset = fdt_get_ioslot_offset(fdt, mii_dev,
864 fpga_offset);
865 phandle++;
866 }
867
868 if (ret)
869 break;
870 }
871
872 return ret;
873 }
874 #endif // CONFIG_FSL_MC_ENET
875 #endif
876
877 #if defined(CONFIG_DM_ETH) && defined(CONFIG_MULTI_DTB_FIT)
878
879 /* Structure to hold SERDES protocols supported in case of
880 * CONFIG_DM_ETH enabled (network interfaces are described in the DTS).
881 *
882 * @serdes_block: the index of the SERDES block
883 * @serdes_protocol: the decimal value of the protocol supported
884 * @dts_needed: DTS notes describing the current configuration are needed
885 *
886 * When dts_needed is true, the board_fit_config_name_match() function
887 * will try to exactly match the current configuration of the block with a DTS
888 * name provided.
889 */
890 static struct serdes_configuration {
891 u8 serdes_block;
892 u32 serdes_protocol;
893 bool dts_needed;
894 } supported_protocols[] = {
895 /* Serdes block #1 */
896 {1, 2, true},
897 {1, 3, true},
898 {1, 15, true},
899 {1, 17, true},
900 {1, 18, true},
901 {1, 20, true},
902
903 /* Serdes block #2 */
904 {2, 2, false},
905 {2, 3, false},
906 {2, 5, false},
907 {2, 10, false},
908 {2, 11, true},
909 {2, 12, true},
910 };
911
912 #define SUPPORTED_SERDES_PROTOCOLS ARRAY_SIZE(supported_protocols)
913
914 static bool protocol_supported(u8 serdes_block, u32 protocol)
915 {
916 struct serdes_configuration serdes_conf;
917 int i;
918
919 for (i = 0; i < SUPPORTED_SERDES_PROTOCOLS; i++) {
920 serdes_conf = supported_protocols[i];
921 if (serdes_conf.serdes_block == serdes_block &&
922 serdes_conf.serdes_protocol == protocol)
923 return true;
924 }
925
926 return false;
927 }
928
929 static void get_str_protocol(u8 serdes_block, u32 protocol, char *str)
930 {
931 struct serdes_configuration serdes_conf;
932 int i;
933
934 for (i = 0; i < SUPPORTED_SERDES_PROTOCOLS; i++) {
935 serdes_conf = supported_protocols[i];
936 if (serdes_conf.serdes_block == serdes_block &&
937 serdes_conf.serdes_protocol == protocol) {
938 if (serdes_conf.dts_needed == true)
939 sprintf(str, "%u", protocol);
940 else
941 sprintf(str, "x");
942 return;
943 }
944 }
945 }
946
947 int board_fit_config_name_match(const char *name)
948 {
949 struct ccsr_gur *gur = (void *)(CFG_SYS_FSL_GUTS_ADDR);
950 u32 rcw_status = in_le32(&gur->rcwsr[28]);
951 char srds_s1_str[2], srds_s2_str[2];
952 u32 srds_s1, srds_s2;
953 char expected_dts[100];
954
955 srds_s1 = rcw_status & FSL_CHASSIS3_RCWSR28_SRDS1_PRTCL_MASK;
956 srds_s1 >>= FSL_CHASSIS3_RCWSR28_SRDS1_PRTCL_SHIFT;
957
958 srds_s2 = rcw_status & FSL_CHASSIS3_RCWSR28_SRDS2_PRTCL_MASK;
959 srds_s2 >>= FSL_CHASSIS3_RCWSR28_SRDS2_PRTCL_SHIFT;
960
961 /* Check for supported protocols. The default DTS will be used
962 * in this case
963 */
964 if (!protocol_supported(1, srds_s1) ||
965 !protocol_supported(2, srds_s2))
966 return -1;
967
968 get_str_protocol(1, srds_s1, srds_s1_str);
969 get_str_protocol(2, srds_s2, srds_s2_str);
970
971 sprintf(expected_dts, "fsl-lx2160a-qds-%s-%s",
972 srds_s1_str, srds_s2_str);
973
974 if (!strcmp(name, expected_dts))
975 return 0;
976
977 return -1;
978 }
979 #endif