2 * Freescale Three Speed Ethernet Controller driver
4 * This software may be used and distributed according to the
5 * terms of the GNU Public License, Version 2, incorporated
8 * Copyright 2004-2011, 2013 Freescale Semiconductor, Inc.
9 * (C) Copyright 2003, Motorola, Inc.
21 #include <asm/errno.h>
22 #include <asm/processor.h>
25 DECLARE_GLOBAL_DATA_PTR;
29 static uint rx_idx; /* index of the current RX buffer */
30 static uint tx_idx; /* index of the current TX buffer */
33 static struct txbd8 __iomem txbd[TX_BUF_CNT] __aligned(8);
34 static struct rxbd8 __iomem rxbd[PKTBUFSRX] __aligned(8);
37 #error "rtx must be 64-bit aligned"
40 static int tsec_send(struct eth_device *dev, void *packet, int length);
42 /* Default initializations for TSEC controllers. */
44 static struct tsec_info_struct tsec_info[] = {
46 STD_TSEC_INFO(1), /* TSEC1 */
49 STD_TSEC_INFO(2), /* TSEC2 */
51 #ifdef CONFIG_MPC85XX_FEC
53 .regs = TSEC_GET_REGS(2, 0x2000),
54 .devname = CONFIG_MPC85XX_FEC_NAME,
55 .phyaddr = FEC_PHY_ADDR,
57 .mii_devname = DEFAULT_MII_NAME
61 STD_TSEC_INFO(3), /* TSEC3 */
64 STD_TSEC_INFO(4), /* TSEC4 */
68 #define TBIANA_SETTINGS ( \
69 TBIANA_ASYMMETRIC_PAUSE \
70 | TBIANA_SYMMETRIC_PAUSE \
71 | TBIANA_FULL_DUPLEX \
74 /* By default force the TBI PHY into 1000Mbps full duplex when in SGMII mode */
75 #ifndef CONFIG_TSEC_TBICR_SETTINGS
76 #define CONFIG_TSEC_TBICR_SETTINGS ( \
82 #endif /* CONFIG_TSEC_TBICR_SETTINGS */
84 /* Configure the TBI for SGMII operation */
85 static void tsec_configure_serdes(struct tsec_private *priv)
87 /* Access TBI PHY registers at given TSEC register offset as opposed
88 * to the register offset used for external PHY accesses */
89 tsec_local_mdio_write(priv->phyregs_sgmii, in_be32(&priv->regs->tbipa),
90 0, TBI_ANA, TBIANA_SETTINGS);
91 tsec_local_mdio_write(priv->phyregs_sgmii, in_be32(&priv->regs->tbipa),
92 0, TBI_TBICON, TBICON_CLK_SELECT);
93 tsec_local_mdio_write(priv->phyregs_sgmii, in_be32(&priv->regs->tbipa),
94 0, TBI_CR, CONFIG_TSEC_TBICR_SETTINGS);
97 #ifdef CONFIG_MCAST_TFTP
99 /* CREDITS: linux gianfar driver, slightly adjusted... thanx. */
101 /* Set the appropriate hash bit for the given addr */
103 /* The algorithm works like so:
104 * 1) Take the Destination Address (ie the multicast address), and
105 * do a CRC on it (little endian), and reverse the bits of the
107 * 2) Use the 8 most significant bits as a hash into a 256-entry
108 * table. The table is controlled through 8 32-bit registers:
109 * gaddr0-7. gaddr0's MSB is entry 0, and gaddr7's LSB is entry
110 * 255. This means that the 3 most significant bits in the
111 * hash index which gaddr register to use, and the 5 other bits
112 * indicate which bit (assuming an IBM numbering scheme, which
113 * for PowerPC (tm) is usually the case) in the register holds
116 tsec_mcast_addr(struct eth_device *dev, const u8 *mcast_mac, u8 set)
118 struct tsec_private *priv = (struct tsec_private *)dev->priv;
119 struct tsec __iomem *regs = priv->regs;
121 u8 whichbit, whichreg;
123 result = ether_crc(MAC_ADDR_LEN, mcast_mac);
124 whichbit = (result >> 24) & 0x1f; /* the 5 LSB = which bit to set */
125 whichreg = result >> 29; /* the 3 MSB = which reg to set it in */
127 value = 1 << (31-whichbit);
130 setbits_be32(®s->hash.gaddr0 + whichreg, value);
132 clrbits_be32(®s->hash.gaddr0 + whichreg, value);
136 #endif /* Multicast TFTP ? */
138 /* Initialized required registers to appropriate values, zeroing
139 * those we don't care about (unless zero is bad, in which case,
140 * choose a more appropriate value)
142 static void init_registers(struct tsec __iomem *regs)
145 out_be32(®s->ievent, IEVENT_INIT_CLEAR);
147 out_be32(®s->imask, IMASK_INIT_CLEAR);
149 out_be32(®s->hash.iaddr0, 0);
150 out_be32(®s->hash.iaddr1, 0);
151 out_be32(®s->hash.iaddr2, 0);
152 out_be32(®s->hash.iaddr3, 0);
153 out_be32(®s->hash.iaddr4, 0);
154 out_be32(®s->hash.iaddr5, 0);
155 out_be32(®s->hash.iaddr6, 0);
156 out_be32(®s->hash.iaddr7, 0);
158 out_be32(®s->hash.gaddr0, 0);
159 out_be32(®s->hash.gaddr1, 0);
160 out_be32(®s->hash.gaddr2, 0);
161 out_be32(®s->hash.gaddr3, 0);
162 out_be32(®s->hash.gaddr4, 0);
163 out_be32(®s->hash.gaddr5, 0);
164 out_be32(®s->hash.gaddr6, 0);
165 out_be32(®s->hash.gaddr7, 0);
167 out_be32(®s->rctrl, 0x00000000);
169 /* Init RMON mib registers */
170 memset((void *)®s->rmon, 0, sizeof(regs->rmon));
172 out_be32(®s->rmon.cam1, 0xffffffff);
173 out_be32(®s->rmon.cam2, 0xffffffff);
175 out_be32(®s->mrblr, MRBLR_INIT_SETTINGS);
177 out_be32(®s->minflr, MINFLR_INIT_SETTINGS);
179 out_be32(®s->attr, ATTR_INIT_SETTINGS);
180 out_be32(®s->attreli, ATTRELI_INIT_SETTINGS);
184 /* Configure maccfg2 based on negotiated speed and duplex
185 * reported by PHY handling code
187 static void adjust_link(struct tsec_private *priv, struct phy_device *phydev)
189 struct tsec __iomem *regs = priv->regs;
193 printf("%s: No link.\n", phydev->dev->name);
197 /* clear all bits relative with interface mode */
198 ecntrl = in_be32(®s->ecntrl);
199 ecntrl &= ~ECNTRL_R100;
201 maccfg2 = in_be32(®s->maccfg2);
202 maccfg2 &= ~(MACCFG2_IF | MACCFG2_FULL_DUPLEX);
205 maccfg2 |= MACCFG2_FULL_DUPLEX;
207 switch (phydev->speed) {
209 maccfg2 |= MACCFG2_GMII;
213 maccfg2 |= MACCFG2_MII;
215 /* Set R100 bit in all modes although
216 * it is only used in RGMII mode
218 if (phydev->speed == 100)
219 ecntrl |= ECNTRL_R100;
222 printf("%s: Speed was bad\n", phydev->dev->name);
226 out_be32(®s->ecntrl, ecntrl);
227 out_be32(®s->maccfg2, maccfg2);
229 printf("Speed: %d, %s duplex%s\n", phydev->speed,
230 (phydev->duplex) ? "full" : "half",
231 (phydev->port == PORT_FIBRE) ? ", fiber mode" : "");
234 #ifdef CONFIG_SYS_FSL_ERRATUM_NMG_ETSEC129
236 * When MACCFG1[Rx_EN] is enabled during system boot as part
237 * of the eTSEC port initialization sequence,
238 * the eTSEC Rx logic may not be properly initialized.
240 void redundant_init(struct eth_device *dev)
242 struct tsec_private *priv = dev->priv;
243 struct tsec __iomem *regs = priv->regs;
246 static const u8 pkt[] = {
247 0x00, 0x1e, 0x4f, 0x12, 0xcb, 0x2c, 0x00, 0x25,
248 0x64, 0xbb, 0xd1, 0xab, 0x08, 0x00, 0x45, 0x00,
249 0x00, 0x5c, 0xdd, 0x22, 0x00, 0x00, 0x80, 0x01,
250 0x1f, 0x71, 0x0a, 0xc1, 0x14, 0x22, 0x0a, 0xc1,
251 0x14, 0x6a, 0x08, 0x00, 0xef, 0x7e, 0x02, 0x00,
252 0x94, 0x05, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66,
253 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e,
254 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76,
255 0x77, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,
256 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,
257 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,
258 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68,
259 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70,
262 /* Enable promiscuous mode */
263 setbits_be32(®s->rctrl, 0x8);
264 /* Enable loopback mode */
265 setbits_be32(®s->maccfg1, MACCFG1_LOOPBACK);
266 /* Enable transmit and receive */
267 setbits_be32(®s->maccfg1, MACCFG1_RX_EN | MACCFG1_TX_EN);
269 /* Tell the DMA it is clear to go */
270 setbits_be32(®s->dmactrl, DMACTRL_INIT_SETTINGS);
271 out_be32(®s->tstat, TSTAT_CLEAR_THALT);
272 out_be32(®s->rstat, RSTAT_CLEAR_RHALT);
273 clrbits_be32(®s->dmactrl, DMACTRL_GRS | DMACTRL_GTS);
274 #ifdef CONFIG_LS102XA
275 setbits_be32(®s->dmactrl, DMACTRL_LE);
280 tsec_send(dev, (void *)pkt, sizeof(pkt));
282 /* Wait for buffer to be received */
283 for (t = 0; in_be16(&rxbd[rx_idx].status) & RXBD_EMPTY; t++) {
284 if (t >= 10 * TOUT_LOOP) {
285 printf("%s: tsec: rx error\n", dev->name);
290 if (!memcmp(pkt, (void *)NetRxPackets[rx_idx], sizeof(pkt)))
293 out_be16(&rxbd[rx_idx].length, 0);
295 if ((rx_idx + 1) == PKTBUFSRX)
297 out_be16(&rxbd[rx_idx].status, status);
298 rx_idx = (rx_idx + 1) % PKTBUFSRX;
300 if (in_be32(®s->ievent) & IEVENT_BSY) {
301 out_be32(®s->ievent, IEVENT_BSY);
302 out_be32(®s->rstat, RSTAT_CLEAR_RHALT);
305 printf("loopback recv packet error!\n");
306 clrbits_be32(®s->maccfg1, MACCFG1_RX_EN);
308 setbits_be32(®s->maccfg1, MACCFG1_RX_EN);
310 } while ((count++ < 4) && (fail == 1));
313 panic("eTSEC init fail!\n");
314 /* Disable promiscuous mode */
315 clrbits_be32(®s->rctrl, 0x8);
316 /* Disable loopback mode */
317 clrbits_be32(®s->maccfg1, MACCFG1_LOOPBACK);
321 /* Set up the buffers and their descriptors, and bring up the
324 static void startup_tsec(struct eth_device *dev)
326 struct tsec_private *priv = (struct tsec_private *)dev->priv;
327 struct tsec __iomem *regs = priv->regs;
331 /* reset the indices to zero */
334 #ifdef CONFIG_SYS_FSL_ERRATUM_NMG_ETSEC129
338 /* Point to the buffer descriptors */
339 out_be32(®s->tbase, (u32)&txbd[0]);
340 out_be32(®s->rbase, (u32)&rxbd[0]);
342 /* Initialize the Rx Buffer descriptors */
343 for (i = 0; i < PKTBUFSRX; i++) {
344 out_be16(&rxbd[i].status, RXBD_EMPTY);
345 out_be16(&rxbd[i].length, 0);
346 out_be32(&rxbd[i].bufptr, (u32)NetRxPackets[i]);
348 status = in_be16(&rxbd[PKTBUFSRX - 1].status);
349 out_be16(&rxbd[PKTBUFSRX - 1].status, status | RXBD_WRAP);
351 /* Initialize the TX Buffer Descriptors */
352 for (i = 0; i < TX_BUF_CNT; i++) {
353 out_be16(&txbd[i].status, 0);
354 out_be16(&txbd[i].length, 0);
355 out_be32(&txbd[i].bufptr, 0);
357 status = in_be16(&txbd[TX_BUF_CNT - 1].status);
358 out_be16(&txbd[TX_BUF_CNT - 1].status, status | TXBD_WRAP);
360 #ifdef CONFIG_SYS_FSL_ERRATUM_NMG_ETSEC129
362 if ((SVR_MAJ(svr) == 1) || IS_SVR_REV(svr, 2, 0))
365 /* Enable Transmit and Receive */
366 setbits_be32(®s->maccfg1, MACCFG1_RX_EN | MACCFG1_TX_EN);
368 /* Tell the DMA it is clear to go */
369 setbits_be32(®s->dmactrl, DMACTRL_INIT_SETTINGS);
370 out_be32(®s->tstat, TSTAT_CLEAR_THALT);
371 out_be32(®s->rstat, RSTAT_CLEAR_RHALT);
372 clrbits_be32(®s->dmactrl, DMACTRL_GRS | DMACTRL_GTS);
373 #ifdef CONFIG_LS102XA
374 setbits_be32(®s->dmactrl, DMACTRL_LE);
378 /* This returns the status bits of the device. The return value
379 * is never checked, and this is what the 8260 driver did, so we
380 * do the same. Presumably, this would be zero if there were no
383 static int tsec_send(struct eth_device *dev, void *packet, int length)
385 struct tsec_private *priv = (struct tsec_private *)dev->priv;
386 struct tsec __iomem *regs = priv->regs;
391 /* Find an empty buffer descriptor */
392 for (i = 0; in_be16(&txbd[tx_idx].status) & TXBD_READY; i++) {
393 if (i >= TOUT_LOOP) {
394 debug("%s: tsec: tx buffers full\n", dev->name);
399 out_be32(&txbd[tx_idx].bufptr, (u32)packet);
400 out_be16(&txbd[tx_idx].length, length);
401 status = in_be16(&txbd[tx_idx].status);
402 out_be16(&txbd[tx_idx].status, status |
403 (TXBD_READY | TXBD_LAST | TXBD_CRC | TXBD_INTERRUPT));
405 /* Tell the DMA to go */
406 out_be32(®s->tstat, TSTAT_CLEAR_THALT);
408 /* Wait for buffer to be transmitted */
409 for (i = 0; in_be16(&txbd[tx_idx].status) & TXBD_READY; i++) {
410 if (i >= TOUT_LOOP) {
411 debug("%s: tsec: tx error\n", dev->name);
416 tx_idx = (tx_idx + 1) % TX_BUF_CNT;
417 result = in_be16(&txbd[tx_idx].status) & TXBD_STATS;
422 static int tsec_recv(struct eth_device *dev)
424 struct tsec_private *priv = (struct tsec_private *)dev->priv;
425 struct tsec __iomem *regs = priv->regs;
427 while (!(in_be16(&rxbd[rx_idx].status) & RXBD_EMPTY)) {
428 int length = in_be16(&rxbd[rx_idx].length);
429 uint16_t status = in_be16(&rxbd[rx_idx].status);
431 /* Send the packet up if there were no errors */
432 if (!(status & RXBD_STATS))
433 NetReceive(NetRxPackets[rx_idx], length - 4);
435 printf("Got error %x\n", (status & RXBD_STATS));
437 out_be16(&rxbd[rx_idx].length, 0);
440 /* Set the wrap bit if this is the last element in the list */
441 if ((rx_idx + 1) == PKTBUFSRX)
443 out_be16(&rxbd[rx_idx].status, status);
445 rx_idx = (rx_idx + 1) % PKTBUFSRX;
448 if (in_be32(®s->ievent) & IEVENT_BSY) {
449 out_be32(®s->ievent, IEVENT_BSY);
450 out_be32(®s->rstat, RSTAT_CLEAR_RHALT);
457 /* Stop the interface */
458 static void tsec_halt(struct eth_device *dev)
460 struct tsec_private *priv = (struct tsec_private *)dev->priv;
461 struct tsec __iomem *regs = priv->regs;
463 clrbits_be32(®s->dmactrl, DMACTRL_GRS | DMACTRL_GTS);
464 setbits_be32(®s->dmactrl, DMACTRL_GRS | DMACTRL_GTS);
466 while ((in_be32(®s->ievent) & (IEVENT_GRSC | IEVENT_GTSC))
467 != (IEVENT_GRSC | IEVENT_GTSC))
470 clrbits_be32(®s->maccfg1, MACCFG1_TX_EN | MACCFG1_RX_EN);
472 /* Shut down the PHY, as needed */
473 phy_shutdown(priv->phydev);
476 /* Initializes data structures and registers for the controller,
477 * and brings the interface up. Returns the link status, meaning
478 * that it returns success if the link is up, failure otherwise.
479 * This allows u-boot to find the first active controller.
481 static int tsec_init(struct eth_device *dev, bd_t * bd)
483 struct tsec_private *priv = (struct tsec_private *)dev->priv;
484 struct tsec __iomem *regs = priv->regs;
488 /* Make sure the controller is stopped */
491 /* Init MACCFG2. Defaults to GMII */
492 out_be32(®s->maccfg2, MACCFG2_INIT_SETTINGS);
495 out_be32(®s->ecntrl, ECNTRL_INIT_SETTINGS);
497 /* Copy the station address into the address registers.
498 * For a station address of 0x12345678ABCD in transmission
499 * order (BE), MACnADDR1 is set to 0xCDAB7856 and
500 * MACnADDR2 is set to 0x34120000.
502 tempval = (dev->enetaddr[5] << 24) | (dev->enetaddr[4] << 16) |
503 (dev->enetaddr[3] << 8) | dev->enetaddr[2];
505 out_be32(®s->macstnaddr1, tempval);
507 tempval = (dev->enetaddr[1] << 24) | (dev->enetaddr[0] << 16);
509 out_be32(®s->macstnaddr2, tempval);
511 /* Clear out (for the most part) the other registers */
512 init_registers(regs);
514 /* Ready the device for tx/rx */
517 /* Start up the PHY */
518 ret = phy_startup(priv->phydev);
520 printf("Could not initialize PHY %s\n",
521 priv->phydev->dev->name);
525 adjust_link(priv, priv->phydev);
527 /* If there's no link, fail */
528 return priv->phydev->link ? 0 : -1;
531 static phy_interface_t tsec_get_interface(struct tsec_private *priv)
533 struct tsec __iomem *regs = priv->regs;
536 ecntrl = in_be32(®s->ecntrl);
538 if (ecntrl & ECNTRL_SGMII_MODE)
539 return PHY_INTERFACE_MODE_SGMII;
541 if (ecntrl & ECNTRL_TBI_MODE) {
542 if (ecntrl & ECNTRL_REDUCED_MODE)
543 return PHY_INTERFACE_MODE_RTBI;
545 return PHY_INTERFACE_MODE_TBI;
548 if (ecntrl & ECNTRL_REDUCED_MODE) {
549 if (ecntrl & ECNTRL_REDUCED_MII_MODE)
550 return PHY_INTERFACE_MODE_RMII;
552 phy_interface_t interface = priv->interface;
555 * This isn't autodetected, so it must
556 * be set by the platform code.
558 if ((interface == PHY_INTERFACE_MODE_RGMII_ID) ||
559 (interface == PHY_INTERFACE_MODE_RGMII_TXID) ||
560 (interface == PHY_INTERFACE_MODE_RGMII_RXID))
563 return PHY_INTERFACE_MODE_RGMII;
567 if (priv->flags & TSEC_GIGABIT)
568 return PHY_INTERFACE_MODE_GMII;
570 return PHY_INTERFACE_MODE_MII;
574 /* Discover which PHY is attached to the device, and configure it
575 * properly. If the PHY is not recognized, then return 0
576 * (failure). Otherwise, return 1
578 static int init_phy(struct eth_device *dev)
580 struct tsec_private *priv = (struct tsec_private *)dev->priv;
581 struct phy_device *phydev;
582 struct tsec __iomem *regs = priv->regs;
583 u32 supported = (SUPPORTED_10baseT_Half |
584 SUPPORTED_10baseT_Full |
585 SUPPORTED_100baseT_Half |
586 SUPPORTED_100baseT_Full);
588 if (priv->flags & TSEC_GIGABIT)
589 supported |= SUPPORTED_1000baseT_Full;
591 /* Assign a Physical address to the TBI */
592 out_be32(®s->tbipa, CONFIG_SYS_TBIPA_VALUE);
594 priv->interface = tsec_get_interface(priv);
596 if (priv->interface == PHY_INTERFACE_MODE_SGMII)
597 tsec_configure_serdes(priv);
599 phydev = phy_connect(priv->bus, priv->phyaddr, dev, priv->interface);
601 phydev->supported &= supported;
602 phydev->advertising = phydev->supported;
604 priv->phydev = phydev;
611 /* Initialize device structure. Returns success if PHY
612 * initialization succeeded (i.e. if it recognizes the PHY)
614 static int tsec_initialize(bd_t *bis, struct tsec_info_struct *tsec_info)
616 struct eth_device *dev;
618 struct tsec_private *priv;
620 dev = (struct eth_device *)malloc(sizeof *dev);
625 memset(dev, 0, sizeof *dev);
627 priv = (struct tsec_private *)malloc(sizeof(*priv));
632 priv->regs = tsec_info->regs;
633 priv->phyregs_sgmii = tsec_info->miiregs_sgmii;
635 priv->phyaddr = tsec_info->phyaddr;
636 priv->flags = tsec_info->flags;
638 sprintf(dev->name, tsec_info->devname);
639 priv->interface = tsec_info->interface;
640 priv->bus = miiphy_get_dev_by_name(tsec_info->mii_devname);
643 dev->init = tsec_init;
644 dev->halt = tsec_halt;
645 dev->send = tsec_send;
646 dev->recv = tsec_recv;
647 #ifdef CONFIG_MCAST_TFTP
648 dev->mcast = tsec_mcast_addr;
651 /* Tell u-boot to get the addr from the env */
652 for (i = 0; i < 6; i++)
653 dev->enetaddr[i] = 0;
658 setbits_be32(&priv->regs->maccfg1, MACCFG1_SOFT_RESET);
659 udelay(2); /* Soft Reset must be asserted for 3 TX clocks */
660 clrbits_be32(&priv->regs->maccfg1, MACCFG1_SOFT_RESET);
662 /* Try to initialize PHY here, and return */
663 return init_phy(dev);
667 * Initialize all the TSEC devices
669 * Returns the number of TSEC devices that were initialized
671 int tsec_eth_init(bd_t *bis, struct tsec_info_struct *tsecs, int num)
676 for (i = 0; i < num; i++) {
677 ret = tsec_initialize(bis, &tsecs[i]);
685 int tsec_standard_init(bd_t *bis)
687 struct fsl_pq_mdio_info info;
689 info.regs = TSEC_GET_MDIO_REGS_BASE(1);
690 info.name = DEFAULT_MII_NAME;
692 fsl_pq_mdio_init(bis, &info);
694 return tsec_eth_init(bis, tsec_info, ARRAY_SIZE(tsec_info));