wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1 | /* |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 2 | * Freescale Three Speed Ethernet Controller driver |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 3 | * |
| 4 | * This software may be used and distributed according to the |
| 5 | * terms of the GNU Public License, Version 2, incorporated |
| 6 | * herein by reference. |
| 7 | * |
Mingkai Hu | a32a6be | 2011-01-27 12:52:45 +0800 | [diff] [blame] | 8 | * Copyright 2004-2011 Freescale Semiconductor, Inc. |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 9 | * (C) Copyright 2003, Motorola, Inc. |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 10 | * author Andy Fleming |
| 11 | * |
| 12 | */ |
| 13 | |
| 14 | #include <config.h> |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 15 | #include <common.h> |
| 16 | #include <malloc.h> |
| 17 | #include <net.h> |
| 18 | #include <command.h> |
Andy Fleming | dd3d1f5 | 2008-08-31 16:33:25 -0500 | [diff] [blame] | 19 | #include <tsec.h> |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 20 | #include <fsl_mdio.h> |
Kim Phillips | 0d071cd | 2009-08-24 14:32:26 -0500 | [diff] [blame] | 21 | #include <asm/errno.h> |
chenhui zhao | aada81d | 2011-10-03 08:38:50 -0500 | [diff] [blame] | 22 | #include <asm/processor.h> |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 23 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 24 | DECLARE_GLOBAL_DATA_PTR; |
| 25 | |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 26 | #define TX_BUF_CNT 2 |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 27 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 28 | static uint rxIdx; /* index of the current RX buffer */ |
| 29 | static uint txIdx; /* index of the current TX buffer */ |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 30 | |
| 31 | typedef volatile struct rtxbd { |
| 32 | txbd8_t txbd[TX_BUF_CNT]; |
| 33 | rxbd8_t rxbd[PKTBUFSRX]; |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 34 | } RTXBD; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 35 | |
| 36 | #ifdef __GNUC__ |
| 37 | static RTXBD rtx __attribute__ ((aligned(8))); |
| 38 | #else |
| 39 | #error "rtx must be 64-bit aligned" |
| 40 | #endif |
| 41 | |
Joe Hershberger | c8a60b5 | 2012-05-21 09:46:36 +0000 | [diff] [blame] | 42 | static int tsec_send(struct eth_device *dev, void *packet, int length); |
chenhui zhao | aada81d | 2011-10-03 08:38:50 -0500 | [diff] [blame] | 43 | |
Andy Fleming | 75b9d4a | 2008-08-31 16:33:26 -0500 | [diff] [blame] | 44 | /* Default initializations for TSEC controllers. */ |
| 45 | |
| 46 | static struct tsec_info_struct tsec_info[] = { |
| 47 | #ifdef CONFIG_TSEC1 |
| 48 | STD_TSEC_INFO(1), /* TSEC1 */ |
| 49 | #endif |
| 50 | #ifdef CONFIG_TSEC2 |
| 51 | STD_TSEC_INFO(2), /* TSEC2 */ |
| 52 | #endif |
| 53 | #ifdef CONFIG_MPC85XX_FEC |
| 54 | { |
| 55 | .regs = (tsec_t *)(TSEC_BASE_ADDR + 0x2000), |
Andy Fleming | 75b9d4a | 2008-08-31 16:33:26 -0500 | [diff] [blame] | 56 | .devname = CONFIG_MPC85XX_FEC_NAME, |
| 57 | .phyaddr = FEC_PHY_ADDR, |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 58 | .flags = FEC_FLAGS, |
| 59 | .mii_devname = DEFAULT_MII_NAME |
Andy Fleming | 75b9d4a | 2008-08-31 16:33:26 -0500 | [diff] [blame] | 60 | }, /* FEC */ |
| 61 | #endif |
| 62 | #ifdef CONFIG_TSEC3 |
| 63 | STD_TSEC_INFO(3), /* TSEC3 */ |
| 64 | #endif |
| 65 | #ifdef CONFIG_TSEC4 |
| 66 | STD_TSEC_INFO(4), /* TSEC4 */ |
| 67 | #endif |
| 68 | }; |
| 69 | |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 70 | #define TBIANA_SETTINGS ( \ |
| 71 | TBIANA_ASYMMETRIC_PAUSE \ |
| 72 | | TBIANA_SYMMETRIC_PAUSE \ |
| 73 | | TBIANA_FULL_DUPLEX \ |
| 74 | ) |
| 75 | |
Felix Radensky | 90b5bf2 | 2010-06-28 01:57:39 +0300 | [diff] [blame] | 76 | /* By default force the TBI PHY into 1000Mbps full duplex when in SGMII mode */ |
| 77 | #ifndef CONFIG_TSEC_TBICR_SETTINGS |
Kumar Gala | 72c96a6 | 2010-12-01 22:55:54 -0600 | [diff] [blame] | 78 | #define CONFIG_TSEC_TBICR_SETTINGS ( \ |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 79 | TBICR_PHY_RESET \ |
Kumar Gala | 72c96a6 | 2010-12-01 22:55:54 -0600 | [diff] [blame] | 80 | | TBICR_ANEG_ENABLE \ |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 81 | | TBICR_FULL_DUPLEX \ |
| 82 | | TBICR_SPEED1_SET \ |
| 83 | ) |
Felix Radensky | 90b5bf2 | 2010-06-28 01:57:39 +0300 | [diff] [blame] | 84 | #endif /* CONFIG_TSEC_TBICR_SETTINGS */ |
Peter Tyser | 46e9167 | 2009-11-03 17:52:07 -0600 | [diff] [blame] | 85 | |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 86 | /* Configure the TBI for SGMII operation */ |
| 87 | static void tsec_configure_serdes(struct tsec_private *priv) |
| 88 | { |
Peter Tyser | c6dbdfd | 2009-11-09 13:09:46 -0600 | [diff] [blame] | 89 | /* Access TBI PHY registers at given TSEC register offset as opposed |
| 90 | * to the register offset used for external PHY accesses */ |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 91 | tsec_local_mdio_write(priv->phyregs_sgmii, in_be32(&priv->regs->tbipa), |
| 92 | 0, TBI_ANA, TBIANA_SETTINGS); |
| 93 | tsec_local_mdio_write(priv->phyregs_sgmii, in_be32(&priv->regs->tbipa), |
| 94 | 0, TBI_TBICON, TBICON_CLK_SELECT); |
| 95 | tsec_local_mdio_write(priv->phyregs_sgmii, in_be32(&priv->regs->tbipa), |
| 96 | 0, TBI_CR, CONFIG_TSEC_TBICR_SETTINGS); |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 97 | } |
michael.firth@bt.com | 55fe7c5 | 2008-01-16 11:40:51 +0000 | [diff] [blame] | 98 | |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 99 | #ifdef CONFIG_MCAST_TFTP |
| 100 | |
| 101 | /* CREDITS: linux gianfar driver, slightly adjusted... thanx. */ |
| 102 | |
| 103 | /* Set the appropriate hash bit for the given addr */ |
| 104 | |
| 105 | /* The algorithm works like so: |
| 106 | * 1) Take the Destination Address (ie the multicast address), and |
| 107 | * do a CRC on it (little endian), and reverse the bits of the |
| 108 | * result. |
| 109 | * 2) Use the 8 most significant bits as a hash into a 256-entry |
| 110 | * table. The table is controlled through 8 32-bit registers: |
Claudiu Manoil | 876d451 | 2013-09-30 12:44:40 +0300 | [diff] [blame] | 111 | * gaddr0-7. gaddr0's MSB is entry 0, and gaddr7's LSB is entry |
| 112 | * 255. This means that the 3 most significant bits in the |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 113 | * hash index which gaddr register to use, and the 5 other bits |
| 114 | * indicate which bit (assuming an IBM numbering scheme, which |
Claudiu Manoil | 876d451 | 2013-09-30 12:44:40 +0300 | [diff] [blame] | 115 | * for PowerPC (tm) is usually the case) in the register holds |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 116 | * the entry. */ |
| 117 | static int |
Claudiu Manoil | 9c4cffa | 2013-09-30 12:44:39 +0300 | [diff] [blame] | 118 | tsec_mcast_addr(struct eth_device *dev, const u8 *mcast_mac, u8 set) |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 119 | { |
Claudiu Manoil | b200204 | 2013-09-30 12:44:41 +0300 | [diff] [blame^] | 120 | struct tsec_private *priv = (struct tsec_private *)dev->priv; |
Claudiu Manoil | 876d451 | 2013-09-30 12:44:40 +0300 | [diff] [blame] | 121 | struct tsec __iomem *regs = priv->regs; |
| 122 | u32 result, value; |
| 123 | u8 whichbit, whichreg; |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 124 | |
Claudiu Manoil | 876d451 | 2013-09-30 12:44:40 +0300 | [diff] [blame] | 125 | result = ether_crc(MAC_ADDR_LEN, mcast_mac); |
| 126 | whichbit = (result >> 24) & 0x1f; /* the 5 LSB = which bit to set */ |
| 127 | whichreg = result >> 29; /* the 3 MSB = which reg to set it in */ |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 128 | |
Claudiu Manoil | 876d451 | 2013-09-30 12:44:40 +0300 | [diff] [blame] | 129 | value = 1 << (31-whichbit); |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 130 | |
Claudiu Manoil | 876d451 | 2013-09-30 12:44:40 +0300 | [diff] [blame] | 131 | if (set) |
| 132 | setbits_be32(®s->hash.gaddr0 + whichreg, value); |
| 133 | else |
| 134 | clrbits_be32(®s->hash.gaddr0 + whichreg, value); |
| 135 | |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 136 | return 0; |
| 137 | } |
| 138 | #endif /* Multicast TFTP ? */ |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 139 | |
| 140 | /* Initialized required registers to appropriate values, zeroing |
| 141 | * those we don't care about (unless zero is bad, in which case, |
| 142 | * choose a more appropriate value) |
| 143 | */ |
| 144 | static void init_registers(tsec_t *regs) |
| 145 | { |
| 146 | /* Clear IEVENT */ |
| 147 | out_be32(®s->ievent, IEVENT_INIT_CLEAR); |
| 148 | |
| 149 | out_be32(®s->imask, IMASK_INIT_CLEAR); |
| 150 | |
| 151 | out_be32(®s->hash.iaddr0, 0); |
| 152 | out_be32(®s->hash.iaddr1, 0); |
| 153 | out_be32(®s->hash.iaddr2, 0); |
| 154 | out_be32(®s->hash.iaddr3, 0); |
| 155 | out_be32(®s->hash.iaddr4, 0); |
| 156 | out_be32(®s->hash.iaddr5, 0); |
| 157 | out_be32(®s->hash.iaddr6, 0); |
| 158 | out_be32(®s->hash.iaddr7, 0); |
| 159 | |
| 160 | out_be32(®s->hash.gaddr0, 0); |
| 161 | out_be32(®s->hash.gaddr1, 0); |
| 162 | out_be32(®s->hash.gaddr2, 0); |
| 163 | out_be32(®s->hash.gaddr3, 0); |
| 164 | out_be32(®s->hash.gaddr4, 0); |
| 165 | out_be32(®s->hash.gaddr5, 0); |
| 166 | out_be32(®s->hash.gaddr6, 0); |
| 167 | out_be32(®s->hash.gaddr7, 0); |
| 168 | |
| 169 | out_be32(®s->rctrl, 0x00000000); |
| 170 | |
| 171 | /* Init RMON mib registers */ |
| 172 | memset((void *)&(regs->rmon), 0, sizeof(rmon_mib_t)); |
| 173 | |
| 174 | out_be32(®s->rmon.cam1, 0xffffffff); |
| 175 | out_be32(®s->rmon.cam2, 0xffffffff); |
| 176 | |
| 177 | out_be32(®s->mrblr, MRBLR_INIT_SETTINGS); |
| 178 | |
| 179 | out_be32(®s->minflr, MINFLR_INIT_SETTINGS); |
| 180 | |
| 181 | out_be32(®s->attr, ATTR_INIT_SETTINGS); |
| 182 | out_be32(®s->attreli, ATTRELI_INIT_SETTINGS); |
| 183 | |
| 184 | } |
| 185 | |
| 186 | /* Configure maccfg2 based on negotiated speed and duplex |
| 187 | * reported by PHY handling code |
| 188 | */ |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 189 | static void adjust_link(struct tsec_private *priv, struct phy_device *phydev) |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 190 | { |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 191 | tsec_t *regs = priv->regs; |
| 192 | u32 ecntrl, maccfg2; |
| 193 | |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 194 | if (!phydev->link) { |
| 195 | printf("%s: No link.\n", phydev->dev->name); |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 196 | return; |
| 197 | } |
| 198 | |
| 199 | /* clear all bits relative with interface mode */ |
| 200 | ecntrl = in_be32(®s->ecntrl); |
| 201 | ecntrl &= ~ECNTRL_R100; |
| 202 | |
| 203 | maccfg2 = in_be32(®s->maccfg2); |
| 204 | maccfg2 &= ~(MACCFG2_IF | MACCFG2_FULL_DUPLEX); |
| 205 | |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 206 | if (phydev->duplex) |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 207 | maccfg2 |= MACCFG2_FULL_DUPLEX; |
| 208 | |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 209 | switch (phydev->speed) { |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 210 | case 1000: |
| 211 | maccfg2 |= MACCFG2_GMII; |
| 212 | break; |
| 213 | case 100: |
| 214 | case 10: |
| 215 | maccfg2 |= MACCFG2_MII; |
| 216 | |
| 217 | /* Set R100 bit in all modes although |
| 218 | * it is only used in RGMII mode |
| 219 | */ |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 220 | if (phydev->speed == 100) |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 221 | ecntrl |= ECNTRL_R100; |
| 222 | break; |
| 223 | default: |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 224 | printf("%s: Speed was bad\n", phydev->dev->name); |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 225 | break; |
| 226 | } |
| 227 | |
| 228 | out_be32(®s->ecntrl, ecntrl); |
| 229 | out_be32(®s->maccfg2, maccfg2); |
| 230 | |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 231 | printf("Speed: %d, %s duplex%s\n", phydev->speed, |
| 232 | (phydev->duplex) ? "full" : "half", |
| 233 | (phydev->port == PORT_FIBRE) ? ", fiber mode" : ""); |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 234 | } |
| 235 | |
chenhui zhao | aada81d | 2011-10-03 08:38:50 -0500 | [diff] [blame] | 236 | #ifdef CONFIG_SYS_FSL_ERRATUM_NMG_ETSEC129 |
| 237 | /* |
| 238 | * When MACCFG1[Rx_EN] is enabled during system boot as part |
| 239 | * of the eTSEC port initialization sequence, |
| 240 | * the eTSEC Rx logic may not be properly initialized. |
| 241 | */ |
| 242 | void redundant_init(struct eth_device *dev) |
| 243 | { |
| 244 | struct tsec_private *priv = dev->priv; |
| 245 | tsec_t *regs = priv->regs; |
| 246 | uint t, count = 0; |
| 247 | int fail = 1; |
| 248 | static const u8 pkt[] = { |
| 249 | 0x00, 0x1e, 0x4f, 0x12, 0xcb, 0x2c, 0x00, 0x25, |
| 250 | 0x64, 0xbb, 0xd1, 0xab, 0x08, 0x00, 0x45, 0x00, |
| 251 | 0x00, 0x5c, 0xdd, 0x22, 0x00, 0x00, 0x80, 0x01, |
| 252 | 0x1f, 0x71, 0x0a, 0xc1, 0x14, 0x22, 0x0a, 0xc1, |
| 253 | 0x14, 0x6a, 0x08, 0x00, 0xef, 0x7e, 0x02, 0x00, |
| 254 | 0x94, 0x05, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, |
| 255 | 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, |
| 256 | 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, |
| 257 | 0x77, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, |
| 258 | 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, |
| 259 | 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, |
| 260 | 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, |
| 261 | 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, |
| 262 | 0x71, 0x72}; |
| 263 | |
| 264 | /* Enable promiscuous mode */ |
| 265 | setbits_be32(®s->rctrl, 0x8); |
| 266 | /* Enable loopback mode */ |
| 267 | setbits_be32(®s->maccfg1, MACCFG1_LOOPBACK); |
| 268 | /* Enable transmit and receive */ |
| 269 | setbits_be32(®s->maccfg1, MACCFG1_RX_EN | MACCFG1_TX_EN); |
| 270 | |
| 271 | /* Tell the DMA it is clear to go */ |
| 272 | setbits_be32(®s->dmactrl, DMACTRL_INIT_SETTINGS); |
| 273 | out_be32(®s->tstat, TSTAT_CLEAR_THALT); |
| 274 | out_be32(®s->rstat, RSTAT_CLEAR_RHALT); |
| 275 | clrbits_be32(®s->dmactrl, DMACTRL_GRS | DMACTRL_GTS); |
| 276 | |
| 277 | do { |
| 278 | tsec_send(dev, (void *)pkt, sizeof(pkt)); |
| 279 | |
| 280 | /* Wait for buffer to be received */ |
| 281 | for (t = 0; rtx.rxbd[rxIdx].status & RXBD_EMPTY; t++) { |
| 282 | if (t >= 10 * TOUT_LOOP) { |
| 283 | printf("%s: tsec: rx error\n", dev->name); |
| 284 | break; |
| 285 | } |
| 286 | } |
| 287 | |
| 288 | if (!memcmp(pkt, (void *)NetRxPackets[rxIdx], sizeof(pkt))) |
| 289 | fail = 0; |
| 290 | |
| 291 | rtx.rxbd[rxIdx].length = 0; |
| 292 | rtx.rxbd[rxIdx].status = |
| 293 | RXBD_EMPTY | (((rxIdx + 1) == PKTBUFSRX) ? RXBD_WRAP : 0); |
| 294 | rxIdx = (rxIdx + 1) % PKTBUFSRX; |
| 295 | |
| 296 | if (in_be32(®s->ievent) & IEVENT_BSY) { |
| 297 | out_be32(®s->ievent, IEVENT_BSY); |
| 298 | out_be32(®s->rstat, RSTAT_CLEAR_RHALT); |
| 299 | } |
| 300 | if (fail) { |
| 301 | printf("loopback recv packet error!\n"); |
| 302 | clrbits_be32(®s->maccfg1, MACCFG1_RX_EN); |
| 303 | udelay(1000); |
| 304 | setbits_be32(®s->maccfg1, MACCFG1_RX_EN); |
| 305 | } |
| 306 | } while ((count++ < 4) && (fail == 1)); |
| 307 | |
| 308 | if (fail) |
| 309 | panic("eTSEC init fail!\n"); |
| 310 | /* Disable promiscuous mode */ |
| 311 | clrbits_be32(®s->rctrl, 0x8); |
| 312 | /* Disable loopback mode */ |
| 313 | clrbits_be32(®s->maccfg1, MACCFG1_LOOPBACK); |
| 314 | } |
| 315 | #endif |
| 316 | |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 317 | /* Set up the buffers and their descriptors, and bring up the |
| 318 | * interface |
| 319 | */ |
| 320 | static void startup_tsec(struct eth_device *dev) |
| 321 | { |
| 322 | int i; |
| 323 | struct tsec_private *priv = (struct tsec_private *)dev->priv; |
| 324 | tsec_t *regs = priv->regs; |
| 325 | |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 326 | /* reset the indices to zero */ |
| 327 | rxIdx = 0; |
| 328 | txIdx = 0; |
chenhui zhao | aada81d | 2011-10-03 08:38:50 -0500 | [diff] [blame] | 329 | #ifdef CONFIG_SYS_FSL_ERRATUM_NMG_ETSEC129 |
| 330 | uint svr; |
| 331 | #endif |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 332 | |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 333 | /* Point to the buffer descriptors */ |
| 334 | out_be32(®s->tbase, (unsigned int)(&rtx.txbd[txIdx])); |
| 335 | out_be32(®s->rbase, (unsigned int)(&rtx.rxbd[rxIdx])); |
| 336 | |
| 337 | /* Initialize the Rx Buffer descriptors */ |
| 338 | for (i = 0; i < PKTBUFSRX; i++) { |
| 339 | rtx.rxbd[i].status = RXBD_EMPTY; |
| 340 | rtx.rxbd[i].length = 0; |
| 341 | rtx.rxbd[i].bufPtr = (uint) NetRxPackets[i]; |
| 342 | } |
| 343 | rtx.rxbd[PKTBUFSRX - 1].status |= RXBD_WRAP; |
| 344 | |
| 345 | /* Initialize the TX Buffer Descriptors */ |
| 346 | for (i = 0; i < TX_BUF_CNT; i++) { |
| 347 | rtx.txbd[i].status = 0; |
| 348 | rtx.txbd[i].length = 0; |
| 349 | rtx.txbd[i].bufPtr = 0; |
| 350 | } |
| 351 | rtx.txbd[TX_BUF_CNT - 1].status |= TXBD_WRAP; |
| 352 | |
chenhui zhao | aada81d | 2011-10-03 08:38:50 -0500 | [diff] [blame] | 353 | #ifdef CONFIG_SYS_FSL_ERRATUM_NMG_ETSEC129 |
| 354 | svr = get_svr(); |
| 355 | if ((SVR_MAJ(svr) == 1) || IS_SVR_REV(svr, 2, 0)) |
| 356 | redundant_init(dev); |
| 357 | #endif |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 358 | /* Enable Transmit and Receive */ |
| 359 | setbits_be32(®s->maccfg1, MACCFG1_RX_EN | MACCFG1_TX_EN); |
| 360 | |
| 361 | /* Tell the DMA it is clear to go */ |
| 362 | setbits_be32(®s->dmactrl, DMACTRL_INIT_SETTINGS); |
| 363 | out_be32(®s->tstat, TSTAT_CLEAR_THALT); |
| 364 | out_be32(®s->rstat, RSTAT_CLEAR_RHALT); |
| 365 | clrbits_be32(®s->dmactrl, DMACTRL_GRS | DMACTRL_GTS); |
| 366 | } |
| 367 | |
| 368 | /* This returns the status bits of the device. The return value |
| 369 | * is never checked, and this is what the 8260 driver did, so we |
| 370 | * do the same. Presumably, this would be zero if there were no |
| 371 | * errors |
| 372 | */ |
Joe Hershberger | c8a60b5 | 2012-05-21 09:46:36 +0000 | [diff] [blame] | 373 | static int tsec_send(struct eth_device *dev, void *packet, int length) |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 374 | { |
| 375 | int i; |
| 376 | int result = 0; |
| 377 | struct tsec_private *priv = (struct tsec_private *)dev->priv; |
| 378 | tsec_t *regs = priv->regs; |
| 379 | |
| 380 | /* Find an empty buffer descriptor */ |
| 381 | for (i = 0; rtx.txbd[txIdx].status & TXBD_READY; i++) { |
| 382 | if (i >= TOUT_LOOP) { |
| 383 | debug("%s: tsec: tx buffers full\n", dev->name); |
| 384 | return result; |
| 385 | } |
| 386 | } |
| 387 | |
| 388 | rtx.txbd[txIdx].bufPtr = (uint) packet; |
| 389 | rtx.txbd[txIdx].length = length; |
| 390 | rtx.txbd[txIdx].status |= |
| 391 | (TXBD_READY | TXBD_LAST | TXBD_CRC | TXBD_INTERRUPT); |
| 392 | |
| 393 | /* Tell the DMA to go */ |
| 394 | out_be32(®s->tstat, TSTAT_CLEAR_THALT); |
| 395 | |
| 396 | /* Wait for buffer to be transmitted */ |
| 397 | for (i = 0; rtx.txbd[txIdx].status & TXBD_READY; i++) { |
| 398 | if (i >= TOUT_LOOP) { |
| 399 | debug("%s: tsec: tx error\n", dev->name); |
| 400 | return result; |
| 401 | } |
| 402 | } |
| 403 | |
| 404 | txIdx = (txIdx + 1) % TX_BUF_CNT; |
| 405 | result = rtx.txbd[txIdx].status & TXBD_STATS; |
| 406 | |
| 407 | return result; |
| 408 | } |
| 409 | |
| 410 | static int tsec_recv(struct eth_device *dev) |
| 411 | { |
| 412 | int length; |
| 413 | struct tsec_private *priv = (struct tsec_private *)dev->priv; |
| 414 | tsec_t *regs = priv->regs; |
| 415 | |
| 416 | while (!(rtx.rxbd[rxIdx].status & RXBD_EMPTY)) { |
| 417 | |
| 418 | length = rtx.rxbd[rxIdx].length; |
| 419 | |
| 420 | /* Send the packet up if there were no errors */ |
| 421 | if (!(rtx.rxbd[rxIdx].status & RXBD_STATS)) { |
| 422 | NetReceive(NetRxPackets[rxIdx], length - 4); |
| 423 | } else { |
| 424 | printf("Got error %x\n", |
| 425 | (rtx.rxbd[rxIdx].status & RXBD_STATS)); |
| 426 | } |
| 427 | |
| 428 | rtx.rxbd[rxIdx].length = 0; |
| 429 | |
| 430 | /* Set the wrap bit if this is the last element in the list */ |
| 431 | rtx.rxbd[rxIdx].status = |
| 432 | RXBD_EMPTY | (((rxIdx + 1) == PKTBUFSRX) ? RXBD_WRAP : 0); |
| 433 | |
| 434 | rxIdx = (rxIdx + 1) % PKTBUFSRX; |
| 435 | } |
| 436 | |
| 437 | if (in_be32(®s->ievent) & IEVENT_BSY) { |
| 438 | out_be32(®s->ievent, IEVENT_BSY); |
| 439 | out_be32(®s->rstat, RSTAT_CLEAR_RHALT); |
| 440 | } |
| 441 | |
| 442 | return -1; |
| 443 | |
| 444 | } |
| 445 | |
| 446 | /* Stop the interface */ |
| 447 | static void tsec_halt(struct eth_device *dev) |
| 448 | { |
| 449 | struct tsec_private *priv = (struct tsec_private *)dev->priv; |
| 450 | tsec_t *regs = priv->regs; |
| 451 | |
| 452 | clrbits_be32(®s->dmactrl, DMACTRL_GRS | DMACTRL_GTS); |
| 453 | setbits_be32(®s->dmactrl, DMACTRL_GRS | DMACTRL_GTS); |
| 454 | |
| 455 | while ((in_be32(®s->ievent) & (IEVENT_GRSC | IEVENT_GTSC)) |
| 456 | != (IEVENT_GRSC | IEVENT_GTSC)) |
| 457 | ; |
| 458 | |
| 459 | clrbits_be32(®s->maccfg1, MACCFG1_TX_EN | MACCFG1_RX_EN); |
| 460 | |
| 461 | /* Shut down the PHY, as needed */ |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 462 | phy_shutdown(priv->phydev); |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 463 | } |
| 464 | |
| 465 | /* Initializes data structures and registers for the controller, |
| 466 | * and brings the interface up. Returns the link status, meaning |
| 467 | * that it returns success if the link is up, failure otherwise. |
| 468 | * This allows u-boot to find the first active controller. |
| 469 | */ |
| 470 | static int tsec_init(struct eth_device *dev, bd_t * bd) |
| 471 | { |
| 472 | uint tempval; |
| 473 | char tmpbuf[MAC_ADDR_LEN]; |
| 474 | int i; |
| 475 | struct tsec_private *priv = (struct tsec_private *)dev->priv; |
| 476 | tsec_t *regs = priv->regs; |
Timur Tabi | 11af8d6 | 2012-07-09 08:52:43 +0000 | [diff] [blame] | 477 | int ret; |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 478 | |
| 479 | /* Make sure the controller is stopped */ |
| 480 | tsec_halt(dev); |
| 481 | |
| 482 | /* Init MACCFG2. Defaults to GMII */ |
| 483 | out_be32(®s->maccfg2, MACCFG2_INIT_SETTINGS); |
| 484 | |
| 485 | /* Init ECNTRL */ |
| 486 | out_be32(®s->ecntrl, ECNTRL_INIT_SETTINGS); |
| 487 | |
| 488 | /* Copy the station address into the address registers. |
| 489 | * Backwards, because little endian MACS are dumb */ |
| 490 | for (i = 0; i < MAC_ADDR_LEN; i++) |
| 491 | tmpbuf[MAC_ADDR_LEN - 1 - i] = dev->enetaddr[i]; |
| 492 | |
| 493 | tempval = (tmpbuf[0] << 24) | (tmpbuf[1] << 16) | (tmpbuf[2] << 8) | |
| 494 | tmpbuf[3]; |
| 495 | |
| 496 | out_be32(®s->macstnaddr1, tempval); |
| 497 | |
| 498 | tempval = *((uint *) (tmpbuf + 4)); |
| 499 | |
| 500 | out_be32(®s->macstnaddr2, tempval); |
| 501 | |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 502 | /* Clear out (for the most part) the other registers */ |
| 503 | init_registers(regs); |
| 504 | |
| 505 | /* Ready the device for tx/rx */ |
| 506 | startup_tsec(dev); |
| 507 | |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 508 | /* Start up the PHY */ |
Timur Tabi | 11af8d6 | 2012-07-09 08:52:43 +0000 | [diff] [blame] | 509 | ret = phy_startup(priv->phydev); |
| 510 | if (ret) { |
| 511 | printf("Could not initialize PHY %s\n", |
| 512 | priv->phydev->dev->name); |
| 513 | return ret; |
| 514 | } |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 515 | |
| 516 | adjust_link(priv, priv->phydev); |
| 517 | |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 518 | /* If there's no link, fail */ |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 519 | return priv->phydev->link ? 0 : -1; |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 520 | } |
| 521 | |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 522 | static phy_interface_t tsec_get_interface(struct tsec_private *priv) |
| 523 | { |
| 524 | tsec_t *regs = priv->regs; |
| 525 | u32 ecntrl; |
| 526 | |
| 527 | ecntrl = in_be32(®s->ecntrl); |
| 528 | |
| 529 | if (ecntrl & ECNTRL_SGMII_MODE) |
| 530 | return PHY_INTERFACE_MODE_SGMII; |
| 531 | |
| 532 | if (ecntrl & ECNTRL_TBI_MODE) { |
| 533 | if (ecntrl & ECNTRL_REDUCED_MODE) |
| 534 | return PHY_INTERFACE_MODE_RTBI; |
| 535 | else |
| 536 | return PHY_INTERFACE_MODE_TBI; |
| 537 | } |
| 538 | |
| 539 | if (ecntrl & ECNTRL_REDUCED_MODE) { |
| 540 | if (ecntrl & ECNTRL_REDUCED_MII_MODE) |
| 541 | return PHY_INTERFACE_MODE_RMII; |
| 542 | else { |
| 543 | phy_interface_t interface = priv->interface; |
| 544 | |
| 545 | /* |
| 546 | * This isn't autodetected, so it must |
| 547 | * be set by the platform code. |
| 548 | */ |
| 549 | if ((interface == PHY_INTERFACE_MODE_RGMII_ID) || |
| 550 | (interface == PHY_INTERFACE_MODE_RGMII_TXID) || |
| 551 | (interface == PHY_INTERFACE_MODE_RGMII_RXID)) |
| 552 | return interface; |
| 553 | |
| 554 | return PHY_INTERFACE_MODE_RGMII; |
| 555 | } |
| 556 | } |
| 557 | |
| 558 | if (priv->flags & TSEC_GIGABIT) |
| 559 | return PHY_INTERFACE_MODE_GMII; |
| 560 | |
| 561 | return PHY_INTERFACE_MODE_MII; |
| 562 | } |
| 563 | |
| 564 | |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 565 | /* Discover which PHY is attached to the device, and configure it |
| 566 | * properly. If the PHY is not recognized, then return 0 |
| 567 | * (failure). Otherwise, return 1 |
| 568 | */ |
| 569 | static int init_phy(struct eth_device *dev) |
| 570 | { |
| 571 | struct tsec_private *priv = (struct tsec_private *)dev->priv; |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 572 | struct phy_device *phydev; |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 573 | tsec_t *regs = priv->regs; |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 574 | u32 supported = (SUPPORTED_10baseT_Half | |
| 575 | SUPPORTED_10baseT_Full | |
| 576 | SUPPORTED_100baseT_Half | |
| 577 | SUPPORTED_100baseT_Full); |
| 578 | |
| 579 | if (priv->flags & TSEC_GIGABIT) |
| 580 | supported |= SUPPORTED_1000baseT_Full; |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 581 | |
| 582 | /* Assign a Physical address to the TBI */ |
| 583 | out_be32(®s->tbipa, CONFIG_SYS_TBIPA_VALUE); |
| 584 | |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 585 | priv->interface = tsec_get_interface(priv); |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 586 | |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 587 | if (priv->interface == PHY_INTERFACE_MODE_SGMII) |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 588 | tsec_configure_serdes(priv); |
| 589 | |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 590 | phydev = phy_connect(priv->bus, priv->phyaddr, dev, priv->interface); |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 591 | |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 592 | phydev->supported &= supported; |
| 593 | phydev->advertising = phydev->supported; |
| 594 | |
| 595 | priv->phydev = phydev; |
| 596 | |
| 597 | phy_config(phydev); |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 598 | |
| 599 | return 1; |
| 600 | } |
| 601 | |
| 602 | /* Initialize device structure. Returns success if PHY |
| 603 | * initialization succeeded (i.e. if it recognizes the PHY) |
| 604 | */ |
| 605 | static int tsec_initialize(bd_t *bis, struct tsec_info_struct *tsec_info) |
| 606 | { |
| 607 | struct eth_device *dev; |
| 608 | int i; |
| 609 | struct tsec_private *priv; |
| 610 | |
| 611 | dev = (struct eth_device *)malloc(sizeof *dev); |
| 612 | |
| 613 | if (NULL == dev) |
| 614 | return 0; |
| 615 | |
| 616 | memset(dev, 0, sizeof *dev); |
| 617 | |
| 618 | priv = (struct tsec_private *)malloc(sizeof(*priv)); |
| 619 | |
| 620 | if (NULL == priv) |
| 621 | return 0; |
| 622 | |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 623 | priv->regs = tsec_info->regs; |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 624 | priv->phyregs_sgmii = tsec_info->miiregs_sgmii; |
| 625 | |
| 626 | priv->phyaddr = tsec_info->phyaddr; |
| 627 | priv->flags = tsec_info->flags; |
| 628 | |
| 629 | sprintf(dev->name, tsec_info->devname); |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 630 | priv->interface = tsec_info->interface; |
| 631 | priv->bus = miiphy_get_dev_by_name(tsec_info->mii_devname); |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 632 | dev->iobase = 0; |
| 633 | dev->priv = priv; |
| 634 | dev->init = tsec_init; |
| 635 | dev->halt = tsec_halt; |
| 636 | dev->send = tsec_send; |
| 637 | dev->recv = tsec_recv; |
| 638 | #ifdef CONFIG_MCAST_TFTP |
| 639 | dev->mcast = tsec_mcast_addr; |
| 640 | #endif |
| 641 | |
| 642 | /* Tell u-boot to get the addr from the env */ |
| 643 | for (i = 0; i < 6; i++) |
| 644 | dev->enetaddr[i] = 0; |
| 645 | |
| 646 | eth_register(dev); |
| 647 | |
| 648 | /* Reset the MAC */ |
| 649 | setbits_be32(&priv->regs->maccfg1, MACCFG1_SOFT_RESET); |
| 650 | udelay(2); /* Soft Reset must be asserted for 3 TX clocks */ |
| 651 | clrbits_be32(&priv->regs->maccfg1, MACCFG1_SOFT_RESET); |
| 652 | |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 653 | /* Try to initialize PHY here, and return */ |
| 654 | return init_phy(dev); |
| 655 | } |
| 656 | |
| 657 | /* |
| 658 | * Initialize all the TSEC devices |
| 659 | * |
| 660 | * Returns the number of TSEC devices that were initialized |
| 661 | */ |
| 662 | int tsec_eth_init(bd_t *bis, struct tsec_info_struct *tsecs, int num) |
| 663 | { |
| 664 | int i; |
| 665 | int ret, count = 0; |
| 666 | |
| 667 | for (i = 0; i < num; i++) { |
| 668 | ret = tsec_initialize(bis, &tsecs[i]); |
| 669 | if (ret > 0) |
| 670 | count += ret; |
| 671 | } |
| 672 | |
| 673 | return count; |
| 674 | } |
| 675 | |
| 676 | int tsec_standard_init(bd_t *bis) |
| 677 | { |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 678 | struct fsl_pq_mdio_info info; |
| 679 | |
| 680 | info.regs = (struct tsec_mii_mng *)CONFIG_SYS_MDIO_BASE_ADDR; |
| 681 | info.name = DEFAULT_MII_NAME; |
| 682 | |
| 683 | fsl_pq_mdio_init(bis, &info); |
| 684 | |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 685 | return tsec_eth_init(bis, tsec_info, ARRAY_SIZE(tsec_info)); |
| 686 | } |