1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright 2009-2012 Freescale Semiconductor, Inc.
11 #include <dm/ofnode.h>
12 #include <linux/compat.h>
13 #include <phy_interface.h>
22 #include <fsl_dtsec.h>
24 #include <fsl_memac.h>
29 static struct eth_device *devlist[NUM_FM_PORTS];
30 static int num_controllers;
33 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) && !defined(BITBANGMII)
35 #define TBIANA_SETTINGS (TBIANA_ASYMMETRIC_PAUSE | TBIANA_SYMMETRIC_PAUSE | \
38 #define TBIANA_SGMII_ACK 0x4001
40 #define TBICR_SETTINGS (TBICR_ANEG_ENABLE | TBICR_RESTART_ANEG | \
41 TBICR_FULL_DUPLEX | TBICR_SPEED1_SET)
43 /* Configure the TBI for SGMII operation */
44 static void dtsec_configure_serdes(struct fm_eth *priv)
46 #ifdef CONFIG_SYS_FMAN_V3
49 bool sgmii_2500 = (priv->enet_if ==
50 PHY_INTERFACE_MODE_SGMII_2500) ? true : false;
54 bus.priv = priv->mac->phyregs;
56 bus.priv = priv->pcs_mdio;
58 bus.read = memac_mdio_read;
59 bus.write = memac_mdio_write;
60 bus.reset = memac_mdio_reset;
63 /* SGMII IF mode + AN enable only for 1G SGMII, not for 2.5G */
65 value = PHY_SGMII_CR_PHY_RESET |
66 PHY_SGMII_IF_SPEED_GIGABIT |
67 PHY_SGMII_IF_MODE_SGMII;
69 value = PHY_SGMII_IF_MODE_SGMII | PHY_SGMII_IF_MODE_AN;
71 for (j = 0; j <= 3; j++)
72 debug("dump PCS reg %#x: %#x\n", j,
73 memac_mdio_read(&bus, i, MDIO_DEVAD_NONE, j));
75 memac_mdio_write(&bus, i, MDIO_DEVAD_NONE, 0x14, value);
77 /* Dev ability according to SGMII specification */
78 value = PHY_SGMII_DEV_ABILITY_SGMII;
79 memac_mdio_write(&bus, i, MDIO_DEVAD_NONE, 0x4, value);
82 /* Adjust link timer for 2.5G SGMII,
83 * 1.6 ms in units of 3.2 ns:
84 * 1.6ms / 3.2ns = 5 * 10^5 = 0x7a120.
86 memac_mdio_write(&bus, i, MDIO_DEVAD_NONE, 0x13, 0x0007);
87 memac_mdio_write(&bus, i, MDIO_DEVAD_NONE, 0x12, 0xa120);
89 /* Adjust link timer for SGMII,
90 * 1.6 ms in units of 8 ns:
91 * 1.6ms / 8ns = 2 * 10^5 = 0x30d40.
93 memac_mdio_write(&bus, i, MDIO_DEVAD_NONE, 0x13, 0x0003);
94 memac_mdio_write(&bus, i, MDIO_DEVAD_NONE, 0x12, 0x0d40);
98 value = PHY_SGMII_CR_DEF_VAL | PHY_SGMII_CR_RESET_AN;
99 memac_mdio_write(&bus, i, MDIO_DEVAD_NONE, 0, value);
101 if ((priv->enet_if == PHY_INTERFACE_MODE_QSGMII) && (i < 3)) {
106 struct dtsec *regs = priv->mac->base;
107 struct tsec_mii_mng *phyregs = priv->mac->phyregs;
110 * Access TBI PHY registers at given TSEC register offset as
111 * opposed to the register offset used for external PHY accesses
113 tsec_local_mdio_write(phyregs, in_be32(®s->tbipa), 0, TBI_TBICON,
115 tsec_local_mdio_write(phyregs, in_be32(®s->tbipa), 0, TBI_ANA,
117 tsec_local_mdio_write(phyregs, in_be32(®s->tbipa), 0,
118 TBI_CR, TBICR_SETTINGS);
122 static void dtsec_init_phy(struct fm_eth *fm_eth)
124 #ifndef CONFIG_SYS_FMAN_V3
125 struct dtsec *regs = (struct dtsec *)CONFIG_SYS_FSL_FM1_DTSEC1_ADDR;
127 /* Assign a Physical address to the TBI */
128 out_be32(®s->tbipa, CONFIG_SYS_TBIPA_VALUE);
131 if (fm_eth->enet_if == PHY_INTERFACE_MODE_SGMII ||
132 fm_eth->enet_if == PHY_INTERFACE_MODE_QSGMII ||
133 fm_eth->enet_if == PHY_INTERFACE_MODE_SGMII_2500)
134 dtsec_configure_serdes(fm_eth);
137 #ifndef CONFIG_DM_ETH
139 static int tgec_is_fibre(struct fm_eth *fm)
143 sprintf(phyopt, "fsl_fm%d_xaui_phy", fm->fm_index + 1);
145 return hwconfig_arg_cmp(phyopt, "xfi");
148 #endif /* CONFIG_DM_ETH */
151 static u16 muram_readw(u16 *addr)
153 ulong base = (ulong)addr & ~0x3UL;
154 u32 val32 = in_be32((void *)base);
158 byte_pos = (ulong)addr & 0x3UL;
160 ret = (u16)(val32 & 0x0000ffff);
162 ret = (u16)((val32 & 0xffff0000) >> 16);
167 static void muram_writew(u16 *addr, u16 val)
169 ulong base = (ulong)addr & ~0x3UL;
170 u32 org32 = in_be32((void *)base);
174 byte_pos = (ulong)addr & 0x3UL;
176 val32 = (org32 & 0xffff0000) | val;
178 val32 = (org32 & 0x0000ffff) | ((u32)val << 16);
180 out_be32((void *)base, val32);
183 static void bmi_rx_port_disable(struct fm_bmi_rx_port *rx_port)
185 int timeout = 1000000;
187 clrbits_be32(&rx_port->fmbm_rcfg, FMBM_RCFG_EN);
189 /* wait until the rx port is not busy */
190 while ((in_be32(&rx_port->fmbm_rst) & FMBM_RST_BSY) && timeout--)
193 printf("%s - timeout\n", __func__);
196 static void bmi_rx_port_init(struct fm_bmi_rx_port *rx_port)
198 /* set BMI to independent mode, Rx port disable */
199 out_be32(&rx_port->fmbm_rcfg, FMBM_RCFG_IM);
200 /* clear FOF in IM case */
201 out_be32(&rx_port->fmbm_rim, 0);
202 /* Rx frame next engine -RISC */
203 out_be32(&rx_port->fmbm_rfne, NIA_ENG_RISC | NIA_RISC_AC_IM_RX);
204 /* Rx command attribute - no order, MR[3] = 1 */
205 clrbits_be32(&rx_port->fmbm_rfca, FMBM_RFCA_ORDER | FMBM_RFCA_MR_MASK);
206 setbits_be32(&rx_port->fmbm_rfca, FMBM_RFCA_MR(4));
207 /* enable Rx statistic counters */
208 out_be32(&rx_port->fmbm_rstc, FMBM_RSTC_EN);
209 /* disable Rx performance counters */
210 out_be32(&rx_port->fmbm_rpc, 0);
213 static void bmi_tx_port_disable(struct fm_bmi_tx_port *tx_port)
215 int timeout = 1000000;
217 clrbits_be32(&tx_port->fmbm_tcfg, FMBM_TCFG_EN);
219 /* wait until the tx port is not busy */
220 while ((in_be32(&tx_port->fmbm_tst) & FMBM_TST_BSY) && timeout--)
223 printf("%s - timeout\n", __func__);
226 static void bmi_tx_port_init(struct fm_bmi_tx_port *tx_port)
228 /* set BMI to independent mode, Tx port disable */
229 out_be32(&tx_port->fmbm_tcfg, FMBM_TCFG_IM);
230 /* Tx frame next engine -RISC */
231 out_be32(&tx_port->fmbm_tfne, NIA_ENG_RISC | NIA_RISC_AC_IM_TX);
232 out_be32(&tx_port->fmbm_tfene, NIA_ENG_RISC | NIA_RISC_AC_IM_TX);
233 /* Tx command attribute - no order, MR[3] = 1 */
234 clrbits_be32(&tx_port->fmbm_tfca, FMBM_TFCA_ORDER | FMBM_TFCA_MR_MASK);
235 setbits_be32(&tx_port->fmbm_tfca, FMBM_TFCA_MR(4));
236 /* enable Tx statistic counters */
237 out_be32(&tx_port->fmbm_tstc, FMBM_TSTC_EN);
238 /* disable Tx performance counters */
239 out_be32(&tx_port->fmbm_tpc, 0);
242 static int fm_eth_rx_port_parameter_init(struct fm_eth *fm_eth)
244 struct fm_port_global_pram *pram;
245 u32 pram_page_offset;
246 void *rx_bd_ring_base;
248 u32 bd_ring_base_lo, bd_ring_base_hi;
250 struct fm_port_bd *rxbd;
251 struct fm_port_qd *rxqd;
252 struct fm_bmi_rx_port *bmi_rx_port = fm_eth->rx_port;
255 /* alloc global parameter ram at MURAM */
256 pram = (struct fm_port_global_pram *)fm_muram_alloc(fm_eth->fm_index,
257 FM_PRAM_SIZE, FM_PRAM_ALIGN);
259 printf("%s: No muram for Rx global parameter\n", __func__);
263 fm_eth->rx_pram = pram;
265 /* parameter page offset to MURAM */
266 pram_page_offset = (void *)pram - fm_muram_base(fm_eth->fm_index);
268 /* enable global mode- snooping data buffers and BDs */
269 out_be32(&pram->mode, PRAM_MODE_GLOBAL);
271 /* init the Rx queue descriptor pionter */
272 out_be32(&pram->rxqd_ptr, pram_page_offset + 0x20);
274 /* set the max receive buffer length, power of 2 */
275 muram_writew(&pram->mrblr, MAX_RXBUF_LOG2);
277 /* alloc Rx buffer descriptors from main memory */
278 rx_bd_ring_base = malloc(sizeof(struct fm_port_bd)
280 if (!rx_bd_ring_base)
283 memset(rx_bd_ring_base, 0, sizeof(struct fm_port_bd)
286 /* alloc Rx buffer from main memory */
287 rx_buf_pool = malloc(MAX_RXBUF_LEN * RX_BD_RING_SIZE);
291 memset(rx_buf_pool, 0, MAX_RXBUF_LEN * RX_BD_RING_SIZE);
292 debug("%s: rx_buf_pool = %p\n", __func__, rx_buf_pool);
294 /* save them to fm_eth */
295 fm_eth->rx_bd_ring = rx_bd_ring_base;
296 fm_eth->cur_rxbd = rx_bd_ring_base;
297 fm_eth->rx_buf = rx_buf_pool;
299 /* init Rx BDs ring */
300 rxbd = (struct fm_port_bd *)rx_bd_ring_base;
301 for (i = 0; i < RX_BD_RING_SIZE; i++) {
302 muram_writew(&rxbd->status, RxBD_EMPTY);
303 muram_writew(&rxbd->len, 0);
304 buf_hi = upper_32_bits(virt_to_phys(rx_buf_pool +
306 buf_lo = lower_32_bits(virt_to_phys(rx_buf_pool +
308 muram_writew(&rxbd->buf_ptr_hi, (u16)buf_hi);
309 out_be32(&rxbd->buf_ptr_lo, buf_lo);
313 /* set the Rx queue descriptor */
315 muram_writew(&rxqd->gen, 0);
316 bd_ring_base_hi = upper_32_bits(virt_to_phys(rx_bd_ring_base));
317 bd_ring_base_lo = lower_32_bits(virt_to_phys(rx_bd_ring_base));
318 muram_writew(&rxqd->bd_ring_base_hi, (u16)bd_ring_base_hi);
319 out_be32(&rxqd->bd_ring_base_lo, bd_ring_base_lo);
320 muram_writew(&rxqd->bd_ring_size, sizeof(struct fm_port_bd)
322 muram_writew(&rxqd->offset_in, 0);
323 muram_writew(&rxqd->offset_out, 0);
325 /* set IM parameter ram pointer to Rx Frame Queue ID */
326 out_be32(&bmi_rx_port->fmbm_rfqid, pram_page_offset);
331 static int fm_eth_tx_port_parameter_init(struct fm_eth *fm_eth)
333 struct fm_port_global_pram *pram;
334 u32 pram_page_offset;
335 void *tx_bd_ring_base;
336 u32 bd_ring_base_lo, bd_ring_base_hi;
337 struct fm_port_bd *txbd;
338 struct fm_port_qd *txqd;
339 struct fm_bmi_tx_port *bmi_tx_port = fm_eth->tx_port;
342 /* alloc global parameter ram at MURAM */
343 pram = (struct fm_port_global_pram *)fm_muram_alloc(fm_eth->fm_index,
344 FM_PRAM_SIZE, FM_PRAM_ALIGN);
346 printf("%s: No muram for Tx global parameter\n", __func__);
349 fm_eth->tx_pram = pram;
351 /* parameter page offset to MURAM */
352 pram_page_offset = (void *)pram - fm_muram_base(fm_eth->fm_index);
354 /* enable global mode- snooping data buffers and BDs */
355 out_be32(&pram->mode, PRAM_MODE_GLOBAL);
357 /* init the Tx queue descriptor pionter */
358 out_be32(&pram->txqd_ptr, pram_page_offset + 0x40);
360 /* alloc Tx buffer descriptors from main memory */
361 tx_bd_ring_base = malloc(sizeof(struct fm_port_bd)
363 if (!tx_bd_ring_base)
366 memset(tx_bd_ring_base, 0, sizeof(struct fm_port_bd)
368 /* save it to fm_eth */
369 fm_eth->tx_bd_ring = tx_bd_ring_base;
370 fm_eth->cur_txbd = tx_bd_ring_base;
372 /* init Tx BDs ring */
373 txbd = (struct fm_port_bd *)tx_bd_ring_base;
374 for (i = 0; i < TX_BD_RING_SIZE; i++) {
375 muram_writew(&txbd->status, TxBD_LAST);
376 muram_writew(&txbd->len, 0);
377 muram_writew(&txbd->buf_ptr_hi, 0);
378 out_be32(&txbd->buf_ptr_lo, 0);
382 /* set the Tx queue decriptor */
384 bd_ring_base_hi = upper_32_bits(virt_to_phys(tx_bd_ring_base));
385 bd_ring_base_lo = lower_32_bits(virt_to_phys(tx_bd_ring_base));
386 muram_writew(&txqd->bd_ring_base_hi, (u16)bd_ring_base_hi);
387 out_be32(&txqd->bd_ring_base_lo, bd_ring_base_lo);
388 muram_writew(&txqd->bd_ring_size, sizeof(struct fm_port_bd)
390 muram_writew(&txqd->offset_in, 0);
391 muram_writew(&txqd->offset_out, 0);
393 /* set IM parameter ram pointer to Tx Confirmation Frame Queue ID */
394 out_be32(&bmi_tx_port->fmbm_tcfqid, pram_page_offset);
399 static int fm_eth_init(struct fm_eth *fm_eth)
403 ret = fm_eth_rx_port_parameter_init(fm_eth);
407 ret = fm_eth_tx_port_parameter_init(fm_eth);
414 static int fm_eth_startup(struct fm_eth *fm_eth)
416 struct fsl_enet_mac *mac;
421 /* Rx/TxBDs, Rx/TxQDs, Rx buff and parameter ram init */
422 ret = fm_eth_init(fm_eth);
425 /* setup the MAC controller */
428 /* For some reason we need to set SPEED_100 */
429 if (((fm_eth->enet_if == PHY_INTERFACE_MODE_SGMII) ||
430 (fm_eth->enet_if == PHY_INTERFACE_MODE_SGMII_2500) ||
431 (fm_eth->enet_if == PHY_INTERFACE_MODE_QSGMII)) &&
433 mac->set_if_mode(mac, fm_eth->enet_if, SPEED_100);
435 /* init bmi rx port, IM mode and disable */
436 bmi_rx_port_init(fm_eth->rx_port);
437 /* init bmi tx port, IM mode and disable */
438 bmi_tx_port_init(fm_eth->tx_port);
443 static void fmc_tx_port_graceful_stop_enable(struct fm_eth *fm_eth)
445 struct fm_port_global_pram *pram;
447 pram = fm_eth->tx_pram;
448 /* graceful stop transmission of frames */
449 setbits_be32(&pram->mode, PRAM_MODE_GRACEFUL_STOP);
453 static void fmc_tx_port_graceful_stop_disable(struct fm_eth *fm_eth)
455 struct fm_port_global_pram *pram;
457 pram = fm_eth->tx_pram;
458 /* re-enable transmission of frames */
459 clrbits_be32(&pram->mode, PRAM_MODE_GRACEFUL_STOP);
463 #ifndef CONFIG_DM_ETH
464 static int fm_eth_open(struct eth_device *dev, bd_t *bd)
466 static int fm_eth_open(struct udevice *dev)
469 #ifndef CONFIG_DM_ETH
470 struct fm_eth *fm_eth = dev->priv;
472 struct eth_pdata *pdata = dev_get_platdata(dev);
473 struct fm_eth *fm_eth = dev_get_priv(dev);
475 unsigned char *enetaddr;
476 struct fsl_enet_mac *mac;
483 #ifndef CONFIG_DM_ETH
484 enetaddr = &dev->enetaddr[0];
486 enetaddr = pdata->enetaddr;
489 /* setup the MAC address */
490 if (enetaddr[0] & 0x01) {
491 printf("%s: MacAddress is multicast address\n", __func__);
493 enetaddr[5] = fm_eth->num;
495 mac->set_mac_addr(mac, enetaddr);
497 /* enable bmi Rx port */
498 setbits_be32(&fm_eth->rx_port->fmbm_rcfg, FMBM_RCFG_EN);
499 /* enable MAC rx/tx port */
500 mac->enable_mac(mac);
501 /* enable bmi Tx port */
502 setbits_be32(&fm_eth->tx_port->fmbm_tcfg, FMBM_TCFG_EN);
503 /* re-enable transmission of frame */
504 fmc_tx_port_graceful_stop_disable(fm_eth);
507 if (fm_eth->phydev) {
508 ret = phy_startup(fm_eth->phydev);
510 #ifndef CONFIG_DM_ETH
511 printf("%s: Could not initialize\n",
512 fm_eth->phydev->dev->name);
514 printf("%s: Could not initialize\n", dev->name);
522 fm_eth->phydev->speed = SPEED_1000;
523 fm_eth->phydev->link = 1;
524 fm_eth->phydev->duplex = DUPLEX_FULL;
527 /* set the MAC-PHY mode */
528 mac->set_if_mode(mac, fm_eth->enet_if, fm_eth->phydev->speed);
529 debug("MAC IF mode %d, speed %d, link %d\n", fm_eth->enet_if,
530 fm_eth->phydev->speed, fm_eth->phydev->link);
532 if (!fm_eth->phydev->link)
533 printf("%s: No link.\n", fm_eth->phydev->dev->name);
535 return fm_eth->phydev->link ? 0 : -1;
538 #ifndef CONFIG_DM_ETH
539 static void fm_eth_halt(struct eth_device *dev)
541 static void fm_eth_halt(struct udevice *dev)
544 struct fm_eth *fm_eth;
545 struct fsl_enet_mac *mac;
547 fm_eth = (struct fm_eth *)dev->priv;
550 /* graceful stop the transmission of frames */
551 fmc_tx_port_graceful_stop_enable(fm_eth);
552 /* disable bmi Tx port */
553 bmi_tx_port_disable(fm_eth->tx_port);
554 /* disable MAC rx/tx port */
555 mac->disable_mac(mac);
556 /* disable bmi Rx port */
557 bmi_rx_port_disable(fm_eth->rx_port);
561 phy_shutdown(fm_eth->phydev);
565 #ifndef CONFIG_DM_ETH
566 static int fm_eth_send(struct eth_device *dev, void *buf, int len)
568 static int fm_eth_send(struct udevice *dev, void *buf, int len)
571 struct fm_eth *fm_eth;
572 struct fm_port_global_pram *pram;
573 struct fm_port_bd *txbd, *txbd_base;
577 fm_eth = (struct fm_eth *)dev->priv;
578 pram = fm_eth->tx_pram;
579 txbd = fm_eth->cur_txbd;
581 /* find one empty TxBD */
582 for (i = 0; muram_readw(&txbd->status) & TxBD_READY; i++) {
585 printf("%s: Tx buffer not ready, txbd->status = 0x%x\n",
586 dev->name, muram_readw(&txbd->status));
591 muram_writew(&txbd->buf_ptr_hi, (u16)upper_32_bits(virt_to_phys(buf)));
592 out_be32(&txbd->buf_ptr_lo, lower_32_bits(virt_to_phys(buf)));
593 muram_writew(&txbd->len, len);
595 muram_writew(&txbd->status, TxBD_READY | TxBD_LAST);
598 /* update TxQD, let RISC to send the packet */
599 offset_in = muram_readw(&pram->txqd.offset_in);
600 offset_in += sizeof(struct fm_port_bd);
601 if (offset_in >= muram_readw(&pram->txqd.bd_ring_size))
603 muram_writew(&pram->txqd.offset_in, offset_in);
606 /* wait for buffer to be transmitted */
607 for (i = 0; muram_readw(&txbd->status) & TxBD_READY; i++) {
610 printf("%s: Tx error, txbd->status = 0x%x\n",
611 dev->name, muram_readw(&txbd->status));
616 /* advance the TxBD */
618 txbd_base = (struct fm_port_bd *)fm_eth->tx_bd_ring;
619 if (txbd >= (txbd_base + TX_BD_RING_SIZE))
621 /* update current txbd */
622 fm_eth->cur_txbd = (void *)txbd;
627 static struct fm_port_bd *fm_eth_free_one(struct fm_eth *fm_eth,
628 struct fm_port_bd *rxbd)
630 struct fm_port_global_pram *pram;
631 struct fm_port_bd *rxbd_base;
634 pram = fm_eth->rx_pram;
636 /* clear the RxBDs */
637 muram_writew(&rxbd->status, RxBD_EMPTY);
638 muram_writew(&rxbd->len, 0);
643 rxbd_base = (struct fm_port_bd *)fm_eth->rx_bd_ring;
644 if (rxbd >= (rxbd_base + RX_BD_RING_SIZE))
648 offset_out = muram_readw(&pram->rxqd.offset_out);
649 offset_out += sizeof(struct fm_port_bd);
650 if (offset_out >= muram_readw(&pram->rxqd.bd_ring_size))
652 muram_writew(&pram->rxqd.offset_out, offset_out);
658 #ifndef CONFIG_DM_ETH
659 static int fm_eth_recv(struct eth_device *dev)
661 static int fm_eth_recv(struct udevice *dev, int flags, uchar **packetp)
664 struct fm_eth *fm_eth = (struct fm_eth *)dev->priv;
665 struct fm_port_bd *rxbd = fm_eth->cur_rxbd;
671 status = muram_readw(&rxbd->status);
673 while (!(status & RxBD_EMPTY)) {
674 if (!(status & RxBD_ERROR)) {
675 buf_hi = muram_readw(&rxbd->buf_ptr_hi);
676 buf_lo = in_be32(&rxbd->buf_ptr_lo);
677 data = (u8 *)((ulong)(buf_hi << 16) << 16 | buf_lo);
678 len = muram_readw(&rxbd->len);
679 #ifndef CONFIG_DM_ETH
680 net_process_received_packet(data, len);
686 printf("%s: Rx error\n", dev->name);
690 /* free current bd, advance to next one */
691 rxbd = fm_eth_free_one(fm_eth, rxbd);
693 /* read next status */
694 status = muram_readw(&rxbd->status);
696 fm_eth->cur_rxbd = (void *)rxbd;
702 static int fm_eth_free_pkt(struct udevice *dev, uchar *packet, int length)
704 struct fm_eth *fm_eth = (struct fm_eth *)dev->priv;
706 fm_eth->cur_rxbd = fm_eth_free_one(fm_eth, fm_eth->cur_rxbd);
710 #endif /* CONFIG_DM_ETH */
712 #ifndef CONFIG_DM_ETH
713 static int fm_eth_init_mac(struct fm_eth *fm_eth, struct ccsr_fman *reg)
715 struct fsl_enet_mac *mac;
717 void *base, *phyregs = NULL;
721 #ifdef CONFIG_SYS_FMAN_V3
722 #ifndef CONFIG_FSL_FM_10GEC_REGULAR_NOTATION
723 if (fm_eth->type == FM_ETH_10G_E) {
724 /* 10GEC1/10GEC2 use mEMAC9/mEMAC10 on T2080/T4240.
725 * 10GEC3/10GEC4 use mEMAC1/mEMAC2 on T2080.
726 * 10GEC1 uses mEMAC1 on T1024.
727 * so it needs to change the num.
729 if (fm_eth->num >= 2)
735 base = ®->memac[num].fm_memac;
736 phyregs = ®->memac[num].fm_memac_mdio;
738 /* Get the mac registers base address */
739 if (fm_eth->type == FM_ETH_1G_E) {
740 base = ®->mac_1g[num].fm_dtesc;
741 phyregs = ®->mac_1g[num].fm_mdio.miimcfg;
743 base = ®->mac_10g[num].fm_10gec;
744 phyregs = ®->mac_10g[num].fm_10gec_mdio;
748 /* alloc mac controller */
749 mac = malloc(sizeof(struct fsl_enet_mac));
752 memset(mac, 0, sizeof(struct fsl_enet_mac));
754 /* save the mac to fm_eth struct */
757 #ifdef CONFIG_SYS_FMAN_V3
758 init_memac(mac, base, phyregs, MAX_RXBUF_LEN);
760 if (fm_eth->type == FM_ETH_1G_E)
761 init_dtsec(mac, base, phyregs, MAX_RXBUF_LEN);
763 init_tgec(mac, base, phyregs, MAX_RXBUF_LEN);
768 #else /* CONFIG_DM_ETH */
769 static int fm_eth_init_mac(struct fm_eth *fm_eth, void *reg)
771 #ifndef CONFIG_SYS_FMAN_V3
775 fm_eth->mac = kzalloc(sizeof(*fm_eth->mac), GFP_KERNEL);
779 #ifndef CONFIG_SYS_FMAN_V3
780 mdio = fman_mdio(fm_eth->dev->parent, fm_eth->mac_type, fm_eth->num);
781 debug("MDIO %d @ %p\n", fm_eth->num, mdio);
784 switch (fm_eth->mac_type) {
785 #ifdef CONFIG_SYS_FMAN_V3
787 init_memac(fm_eth->mac, reg, NULL, MAX_RXBUF_LEN);
791 init_dtsec(fm_eth->mac, reg, mdio, MAX_RXBUF_LEN);
794 init_tgec(fm_eth->mac, reg, mdio, MAX_RXBUF_LEN);
801 #endif /* CONFIG_DM_ETH */
803 static int init_phy(struct fm_eth *fm_eth)
806 u32 supported = PHY_GBIT_FEATURES;
807 #ifndef CONFIG_DM_ETH
808 struct phy_device *phydev = NULL;
811 if (fm_eth->type == FM_ETH_10G_E)
812 supported = PHY_10G_FEATURES;
813 if (fm_eth->enet_if == PHY_INTERFACE_MODE_SGMII_2500)
814 supported |= SUPPORTED_2500baseX_Full;
817 if (fm_eth->type == FM_ETH_1G_E)
818 dtsec_init_phy(fm_eth);
822 #ifdef CONFIG_DM_MDIO
823 fm_eth->phydev = dm_eth_phy_connect(fm_eth->dev);
827 fm_eth->phydev->advertising &= supported;
828 fm_eth->phydev->supported &= supported;
830 phy_config(fm_eth->phydev);
832 #else /* CONFIG_DM_ETH */
835 phydev = phy_connect(fm_eth->bus, fm_eth->phyaddr, fm_eth->dev,
838 printf("Failed to connect\n");
845 if (fm_eth->type == FM_ETH_1G_E) {
846 supported = (SUPPORTED_10baseT_Half |
847 SUPPORTED_10baseT_Full |
848 SUPPORTED_100baseT_Half |
849 SUPPORTED_100baseT_Full |
850 SUPPORTED_1000baseT_Full);
852 supported = SUPPORTED_10000baseT_Full;
854 if (tgec_is_fibre(fm_eth))
855 phydev->port = PORT_FIBRE;
858 phydev->supported &= supported;
859 phydev->advertising = phydev->supported;
861 fm_eth->phydev = phydev;
865 #endif /* CONFIG_DM_ETH */
869 #ifndef CONFIG_DM_ETH
870 int fm_eth_initialize(struct ccsr_fman *reg, struct fm_eth_info *info)
872 struct eth_device *dev;
873 struct fm_eth *fm_eth;
874 int i, num = info->num;
877 /* alloc eth device */
878 dev = (struct eth_device *)malloc(sizeof(struct eth_device));
881 memset(dev, 0, sizeof(struct eth_device));
883 /* alloc the FMan ethernet private struct */
884 fm_eth = (struct fm_eth *)malloc(sizeof(struct fm_eth));
887 memset(fm_eth, 0, sizeof(struct fm_eth));
889 /* save off some things we need from the info struct */
890 fm_eth->fm_index = info->index - 1; /* keep as 0 based for muram */
892 fm_eth->type = info->type;
894 fm_eth->rx_port = (void *)®->port[info->rx_port_id - 1].fm_bmi;
895 fm_eth->tx_port = (void *)®->port[info->tx_port_id - 1].fm_bmi;
897 /* set the ethernet max receive length */
898 fm_eth->max_rx_len = MAX_RXBUF_LEN;
900 /* init global mac structure */
901 ret = fm_eth_init_mac(fm_eth, reg);
905 /* keep same as the manual, we call FMAN1, FMAN2, DTSEC1, DTSEC2, etc */
906 if (fm_eth->type == FM_ETH_1G_E)
907 sprintf(dev->name, "FM%d@DTSEC%d", info->index, num + 1);
909 sprintf(dev->name, "FM%d@TGEC%d", info->index, num + 1);
911 devlist[num_controllers++] = dev;
913 dev->priv = (void *)fm_eth;
914 dev->init = fm_eth_open;
915 dev->halt = fm_eth_halt;
916 dev->send = fm_eth_send;
917 dev->recv = fm_eth_recv;
919 fm_eth->bus = info->bus;
920 fm_eth->phyaddr = info->phy_addr;
921 fm_eth->enet_if = info->enet_if;
923 /* startup the FM im */
924 ret = fm_eth_startup(fm_eth);
930 /* clear the ethernet address */
931 for (i = 0; i < 6; i++)
932 dev->enetaddr[i] = 0;
937 #else /* CONFIG_DM_ETH */
939 phy_interface_t fman_read_sys_if(struct udevice *dev)
943 if_str = ofnode_read_string(dev->node, "phy-connection-type");
944 debug("MAC system interface mode %s\n", if_str);
946 return phy_get_interface_by_name(if_str);
950 static int fm_eth_bind(struct udevice *dev)
955 if (ofnode_read_u32(ofnode_get_parent(dev->node), "cell-index", &fm)) {
956 printf("FMan node property cell-index missing\n");
960 if (dev && dev_read_u32(dev, "cell-index", &num)) {
961 printf("FMan MAC node property cell-index missing\n");
965 sprintf(mac_name, "fm%d-mac%d", fm + 1, num + 1);
966 device_set_name(dev, mac_name);
968 debug("%s - binding %s\n", __func__, mac_name);
973 static struct udevice *fm_get_internal_mdio(struct udevice *dev)
975 struct ofnode_phandle_args phandle = {.node = ofnode_null()};
976 struct udevice *mdiodev;
978 if (dev_read_phandle_with_args(dev, "pcsphy-handle", NULL,
980 !ofnode_valid(phandle.node)) {
981 if (dev_read_phandle_with_args(dev, "tbi-handle", NULL,
983 !ofnode_valid(phandle.node)) {
984 printf("Issue reading pcsphy-handle/tbi-handle for MAC %s\n",
990 if (uclass_get_device_by_ofnode(UCLASS_MDIO,
991 ofnode_get_parent(phandle.node),
993 printf("can't find MDIO bus for node %s\n",
994 ofnode_get_name(ofnode_get_parent(phandle.node)));
997 debug("Found internal MDIO bus %p\n", mdiodev);
1002 static int fm_eth_probe(struct udevice *dev)
1004 struct fm_eth *fm_eth = (struct fm_eth *)dev->priv;
1005 struct ofnode_phandle_args args;
1009 debug("%s enter for dev %p fm_eth %p - %s\n", __func__, dev, fm_eth,
1010 (dev) ? dev->name : "-");
1013 printf("%s already probed, exit\n", (dev) ? dev->name : "-");
1018 fm_eth->fm_index = fman_id(dev->parent);
1019 reg = (void *)(uintptr_t)dev_read_addr(dev);
1020 fm_eth->mac_type = dev_get_driver_data(dev);
1021 #ifdef CONFIG_PHYLIB
1022 fm_eth->enet_if = fman_read_sys_if(dev);
1024 fm_eth->enet_if = PHY_INTERFACE_MODE_SGMII;
1025 printf("%s: warning - unable to determine interface type\n", __func__);
1027 switch (fm_eth->mac_type) {
1028 #ifndef CONFIG_SYS_FMAN_V3
1030 fm_eth->type = FM_ETH_10G_E;
1035 /* default to 1G, 10G is indicated by port property in dts */
1037 fm_eth->type = FM_ETH_1G_E;
1041 if (dev_read_u32(dev, "cell-index", &fm_eth->num)) {
1042 printf("FMan MAC node property cell-index missing\n");
1046 if (dev_read_phandle_with_args(dev, "fsl,fman-ports", NULL,
1048 goto ports_ref_failure;
1049 index = ofnode_read_u32_default(args.node, "cell-index", 0);
1051 goto ports_ref_failure;
1052 fm_eth->rx_port = fman_port(dev->parent, index);
1054 if (ofnode_read_bool(args.node, "fsl,fman-10g-port"))
1055 fm_eth->type = FM_ETH_10G_E;
1057 if (dev_read_phandle_with_args(dev, "fsl,fman-ports", NULL,
1059 goto ports_ref_failure;
1060 index = ofnode_read_u32_default(args.node, "cell-index", 0);
1062 goto ports_ref_failure;
1063 fm_eth->tx_port = fman_port(dev->parent, index);
1065 /* set the ethernet max receive length */
1066 fm_eth->max_rx_len = MAX_RXBUF_LEN;
1068 switch (fm_eth->enet_if) {
1069 case PHY_INTERFACE_MODE_QSGMII:
1070 /* all PCS blocks are accessed on one controller */
1071 if (fm_eth->num != 0)
1073 case PHY_INTERFACE_MODE_SGMII:
1074 case PHY_INTERFACE_MODE_SGMII_2500:
1075 fm_eth->pcs_mdio = fm_get_internal_mdio(dev);
1081 /* init global mac structure */
1082 ret = fm_eth_init_mac(fm_eth, reg);
1086 /* startup the FM im */
1087 ret = fm_eth_startup(fm_eth);
1090 ret = init_phy(fm_eth);
1095 printf("Issue reading fsl,fman-ports for MAC %s\n", dev->name);
1099 static int fm_eth_remove(struct udevice *dev)
1104 static const struct eth_ops fm_eth_ops = {
1105 .start = fm_eth_open,
1106 .send = fm_eth_send,
1107 .recv = fm_eth_recv,
1108 .free_pkt = fm_eth_free_pkt,
1109 .stop = fm_eth_halt,
1112 static const struct udevice_id fm_eth_ids[] = {
1113 #ifdef CONFIG_SYS_FMAN_V3
1114 { .compatible = "fsl,fman-memac", .data = FM_MEMAC },
1116 { .compatible = "fsl,fman-dtsec", .data = FM_DTSEC },
1117 { .compatible = "fsl,fman-xgec", .data = FM_TGEC },
1122 U_BOOT_DRIVER(eth_fman) = {
1125 .of_match = fm_eth_ids,
1126 .bind = fm_eth_bind,
1127 .probe = fm_eth_probe,
1128 .remove = fm_eth_remove,
1130 .priv_auto_alloc_size = sizeof(struct fm_eth),
1131 .platdata_auto_alloc_size = sizeof(struct eth_pdata),
1132 .flags = DM_FLAG_ALLOC_PRIV_DMA,
1134 #endif /* CONFIG_DM_ETH */