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 | * |
Claudiu Manoil | aec84bf | 2013-09-30 12:44:42 +0300 | [diff] [blame] | 4 | * Copyright 2004-2011, 2013 Freescale Semiconductor, Inc. |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 5 | * (C) Copyright 2003, Motorola, Inc. |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 6 | * author Andy Fleming |
| 7 | * |
Bin Meng | 9872b73 | 2016-01-11 22:41:18 -0800 | [diff] [blame] | 8 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <config.h> |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 12 | #include <common.h> |
Bin Meng | 9a1d6af | 2016-01-11 22:41:24 -0800 | [diff] [blame] | 13 | #include <dm.h> |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 14 | #include <malloc.h> |
| 15 | #include <net.h> |
| 16 | #include <command.h> |
Andy Fleming | dd3d1f5 | 2008-08-31 16:33:25 -0500 | [diff] [blame] | 17 | #include <tsec.h> |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 18 | #include <fsl_mdio.h> |
Masahiro Yamada | 1221ce4 | 2016-09-21 11:28:55 +0900 | [diff] [blame] | 19 | #include <linux/errno.h> |
chenhui zhao | aada81d | 2011-10-03 08:38:50 -0500 | [diff] [blame] | 20 | #include <asm/processor.h> |
Alison Wang | 52d00a8 | 2014-09-05 13:52:38 +0800 | [diff] [blame] | 21 | #include <asm/io.h> |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 22 | |
Bin Meng | 9a1d6af | 2016-01-11 22:41:24 -0800 | [diff] [blame] | 23 | #ifndef CONFIG_DM_ETH |
Andy Fleming | 75b9d4a | 2008-08-31 16:33:26 -0500 | [diff] [blame] | 24 | /* Default initializations for TSEC controllers. */ |
| 25 | |
| 26 | static struct tsec_info_struct tsec_info[] = { |
| 27 | #ifdef CONFIG_TSEC1 |
| 28 | STD_TSEC_INFO(1), /* TSEC1 */ |
| 29 | #endif |
| 30 | #ifdef CONFIG_TSEC2 |
| 31 | STD_TSEC_INFO(2), /* TSEC2 */ |
| 32 | #endif |
| 33 | #ifdef CONFIG_MPC85XX_FEC |
| 34 | { |
Claudiu Manoil | aec84bf | 2013-09-30 12:44:42 +0300 | [diff] [blame] | 35 | .regs = TSEC_GET_REGS(2, 0x2000), |
Andy Fleming | 75b9d4a | 2008-08-31 16:33:26 -0500 | [diff] [blame] | 36 | .devname = CONFIG_MPC85XX_FEC_NAME, |
| 37 | .phyaddr = FEC_PHY_ADDR, |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 38 | .flags = FEC_FLAGS, |
| 39 | .mii_devname = DEFAULT_MII_NAME |
Andy Fleming | 75b9d4a | 2008-08-31 16:33:26 -0500 | [diff] [blame] | 40 | }, /* FEC */ |
| 41 | #endif |
| 42 | #ifdef CONFIG_TSEC3 |
| 43 | STD_TSEC_INFO(3), /* TSEC3 */ |
| 44 | #endif |
| 45 | #ifdef CONFIG_TSEC4 |
| 46 | STD_TSEC_INFO(4), /* TSEC4 */ |
| 47 | #endif |
| 48 | }; |
Bin Meng | 9a1d6af | 2016-01-11 22:41:24 -0800 | [diff] [blame] | 49 | #endif /* CONFIG_DM_ETH */ |
Andy Fleming | 75b9d4a | 2008-08-31 16:33:26 -0500 | [diff] [blame] | 50 | |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 51 | #define TBIANA_SETTINGS ( \ |
| 52 | TBIANA_ASYMMETRIC_PAUSE \ |
| 53 | | TBIANA_SYMMETRIC_PAUSE \ |
| 54 | | TBIANA_FULL_DUPLEX \ |
| 55 | ) |
| 56 | |
Felix Radensky | 90b5bf2 | 2010-06-28 01:57:39 +0300 | [diff] [blame] | 57 | /* By default force the TBI PHY into 1000Mbps full duplex when in SGMII mode */ |
| 58 | #ifndef CONFIG_TSEC_TBICR_SETTINGS |
Kumar Gala | 72c96a6 | 2010-12-01 22:55:54 -0600 | [diff] [blame] | 59 | #define CONFIG_TSEC_TBICR_SETTINGS ( \ |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 60 | TBICR_PHY_RESET \ |
Kumar Gala | 72c96a6 | 2010-12-01 22:55:54 -0600 | [diff] [blame] | 61 | | TBICR_ANEG_ENABLE \ |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 62 | | TBICR_FULL_DUPLEX \ |
| 63 | | TBICR_SPEED1_SET \ |
| 64 | ) |
Felix Radensky | 90b5bf2 | 2010-06-28 01:57:39 +0300 | [diff] [blame] | 65 | #endif /* CONFIG_TSEC_TBICR_SETTINGS */ |
Peter Tyser | 46e9167 | 2009-11-03 17:52:07 -0600 | [diff] [blame] | 66 | |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 67 | /* Configure the TBI for SGMII operation */ |
| 68 | static void tsec_configure_serdes(struct tsec_private *priv) |
| 69 | { |
Bin Meng | 9872b73 | 2016-01-11 22:41:18 -0800 | [diff] [blame] | 70 | /* |
| 71 | * Access TBI PHY registers at given TSEC register offset as opposed |
| 72 | * to the register offset used for external PHY accesses |
| 73 | */ |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 74 | tsec_local_mdio_write(priv->phyregs_sgmii, in_be32(&priv->regs->tbipa), |
Mario Six | d38de33 | 2018-01-15 11:08:21 +0100 | [diff] [blame] | 75 | 0, TBI_ANA, TBIANA_SETTINGS); |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 76 | tsec_local_mdio_write(priv->phyregs_sgmii, in_be32(&priv->regs->tbipa), |
Mario Six | d38de33 | 2018-01-15 11:08:21 +0100 | [diff] [blame] | 77 | 0, TBI_TBICON, TBICON_CLK_SELECT); |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 78 | tsec_local_mdio_write(priv->phyregs_sgmii, in_be32(&priv->regs->tbipa), |
Mario Six | d38de33 | 2018-01-15 11:08:21 +0100 | [diff] [blame] | 79 | 0, TBI_CR, CONFIG_TSEC_TBICR_SETTINGS); |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 80 | } |
michael.firth@bt.com | 55fe7c5 | 2008-01-16 11:40:51 +0000 | [diff] [blame] | 81 | |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 82 | #ifdef CONFIG_MCAST_TFTP |
| 83 | |
| 84 | /* CREDITS: linux gianfar driver, slightly adjusted... thanx. */ |
| 85 | |
| 86 | /* Set the appropriate hash bit for the given addr */ |
| 87 | |
Bin Meng | 9872b73 | 2016-01-11 22:41:18 -0800 | [diff] [blame] | 88 | /* |
| 89 | * The algorithm works like so: |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 90 | * 1) Take the Destination Address (ie the multicast address), and |
| 91 | * do a CRC on it (little endian), and reverse the bits of the |
| 92 | * result. |
| 93 | * 2) Use the 8 most significant bits as a hash into a 256-entry |
| 94 | * table. The table is controlled through 8 32-bit registers: |
Claudiu Manoil | 876d451 | 2013-09-30 12:44:40 +0300 | [diff] [blame] | 95 | * gaddr0-7. gaddr0's MSB is entry 0, and gaddr7's LSB is entry |
| 96 | * 255. This means that the 3 most significant bits in the |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 97 | * hash index which gaddr register to use, and the 5 other bits |
| 98 | * indicate which bit (assuming an IBM numbering scheme, which |
Claudiu Manoil | 876d451 | 2013-09-30 12:44:40 +0300 | [diff] [blame] | 99 | * for PowerPC (tm) is usually the case) in the register holds |
Bin Meng | 9872b73 | 2016-01-11 22:41:18 -0800 | [diff] [blame] | 100 | * the entry. |
| 101 | */ |
Bin Meng | 9a1d6af | 2016-01-11 22:41:24 -0800 | [diff] [blame] | 102 | #ifndef CONFIG_DM_ETH |
Bin Meng | 9872b73 | 2016-01-11 22:41:18 -0800 | [diff] [blame] | 103 | static int tsec_mcast_addr(struct eth_device *dev, const u8 *mcast_mac, u8 set) |
Bin Meng | 9a1d6af | 2016-01-11 22:41:24 -0800 | [diff] [blame] | 104 | #else |
| 105 | static int tsec_mcast_addr(struct udevice *dev, const u8 *mcast_mac, int set) |
| 106 | #endif |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 107 | { |
Claudiu Manoil | b200204 | 2013-09-30 12:44:41 +0300 | [diff] [blame] | 108 | struct tsec_private *priv = (struct tsec_private *)dev->priv; |
Claudiu Manoil | 876d451 | 2013-09-30 12:44:40 +0300 | [diff] [blame] | 109 | struct tsec __iomem *regs = priv->regs; |
| 110 | u32 result, value; |
| 111 | u8 whichbit, whichreg; |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 112 | |
Claudiu Manoil | 876d451 | 2013-09-30 12:44:40 +0300 | [diff] [blame] | 113 | result = ether_crc(MAC_ADDR_LEN, mcast_mac); |
| 114 | whichbit = (result >> 24) & 0x1f; /* the 5 LSB = which bit to set */ |
| 115 | whichreg = result >> 29; /* the 3 MSB = which reg to set it in */ |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 116 | |
Mario Six | d38de33 | 2018-01-15 11:08:21 +0100 | [diff] [blame] | 117 | value = BIT(31 - whichbit); |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 118 | |
Claudiu Manoil | 876d451 | 2013-09-30 12:44:40 +0300 | [diff] [blame] | 119 | if (set) |
| 120 | setbits_be32(®s->hash.gaddr0 + whichreg, value); |
| 121 | else |
| 122 | clrbits_be32(®s->hash.gaddr0 + whichreg, value); |
| 123 | |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 124 | return 0; |
| 125 | } |
| 126 | #endif /* Multicast TFTP ? */ |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 127 | |
Bin Meng | 9872b73 | 2016-01-11 22:41:18 -0800 | [diff] [blame] | 128 | /* |
| 129 | * Initialized required registers to appropriate values, zeroing |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 130 | * those we don't care about (unless zero is bad, in which case, |
| 131 | * choose a more appropriate value) |
| 132 | */ |
Claudiu Manoil | aec84bf | 2013-09-30 12:44:42 +0300 | [diff] [blame] | 133 | static void init_registers(struct tsec __iomem *regs) |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 134 | { |
| 135 | /* Clear IEVENT */ |
| 136 | out_be32(®s->ievent, IEVENT_INIT_CLEAR); |
| 137 | |
| 138 | out_be32(®s->imask, IMASK_INIT_CLEAR); |
| 139 | |
| 140 | out_be32(®s->hash.iaddr0, 0); |
| 141 | out_be32(®s->hash.iaddr1, 0); |
| 142 | out_be32(®s->hash.iaddr2, 0); |
| 143 | out_be32(®s->hash.iaddr3, 0); |
| 144 | out_be32(®s->hash.iaddr4, 0); |
| 145 | out_be32(®s->hash.iaddr5, 0); |
| 146 | out_be32(®s->hash.iaddr6, 0); |
| 147 | out_be32(®s->hash.iaddr7, 0); |
| 148 | |
| 149 | out_be32(®s->hash.gaddr0, 0); |
| 150 | out_be32(®s->hash.gaddr1, 0); |
| 151 | out_be32(®s->hash.gaddr2, 0); |
| 152 | out_be32(®s->hash.gaddr3, 0); |
| 153 | out_be32(®s->hash.gaddr4, 0); |
| 154 | out_be32(®s->hash.gaddr5, 0); |
| 155 | out_be32(®s->hash.gaddr6, 0); |
| 156 | out_be32(®s->hash.gaddr7, 0); |
| 157 | |
| 158 | out_be32(®s->rctrl, 0x00000000); |
| 159 | |
| 160 | /* Init RMON mib registers */ |
Claudiu Manoil | 82ef75c | 2013-09-30 12:44:46 +0300 | [diff] [blame] | 161 | memset((void *)®s->rmon, 0, sizeof(regs->rmon)); |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 162 | |
| 163 | out_be32(®s->rmon.cam1, 0xffffffff); |
| 164 | out_be32(®s->rmon.cam2, 0xffffffff); |
| 165 | |
| 166 | out_be32(®s->mrblr, MRBLR_INIT_SETTINGS); |
| 167 | |
| 168 | out_be32(®s->minflr, MINFLR_INIT_SETTINGS); |
| 169 | |
| 170 | out_be32(®s->attr, ATTR_INIT_SETTINGS); |
| 171 | out_be32(®s->attreli, ATTRELI_INIT_SETTINGS); |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 172 | } |
| 173 | |
Bin Meng | 9872b73 | 2016-01-11 22:41:18 -0800 | [diff] [blame] | 174 | /* |
| 175 | * Configure maccfg2 based on negotiated speed and duplex |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 176 | * reported by PHY handling code |
| 177 | */ |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 178 | static void adjust_link(struct tsec_private *priv, struct phy_device *phydev) |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 179 | { |
Claudiu Manoil | aec84bf | 2013-09-30 12:44:42 +0300 | [diff] [blame] | 180 | struct tsec __iomem *regs = priv->regs; |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 181 | u32 ecntrl, maccfg2; |
| 182 | |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 183 | if (!phydev->link) { |
| 184 | printf("%s: No link.\n", phydev->dev->name); |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 185 | return; |
| 186 | } |
| 187 | |
| 188 | /* clear all bits relative with interface mode */ |
| 189 | ecntrl = in_be32(®s->ecntrl); |
| 190 | ecntrl &= ~ECNTRL_R100; |
| 191 | |
| 192 | maccfg2 = in_be32(®s->maccfg2); |
| 193 | maccfg2 &= ~(MACCFG2_IF | MACCFG2_FULL_DUPLEX); |
| 194 | |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 195 | if (phydev->duplex) |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 196 | maccfg2 |= MACCFG2_FULL_DUPLEX; |
| 197 | |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 198 | switch (phydev->speed) { |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 199 | case 1000: |
| 200 | maccfg2 |= MACCFG2_GMII; |
| 201 | break; |
| 202 | case 100: |
| 203 | case 10: |
| 204 | maccfg2 |= MACCFG2_MII; |
| 205 | |
Bin Meng | 9872b73 | 2016-01-11 22:41:18 -0800 | [diff] [blame] | 206 | /* |
| 207 | * Set R100 bit in all modes although |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 208 | * it is only used in RGMII mode |
| 209 | */ |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 210 | if (phydev->speed == 100) |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 211 | ecntrl |= ECNTRL_R100; |
| 212 | break; |
| 213 | default: |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 214 | printf("%s: Speed was bad\n", phydev->dev->name); |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 215 | break; |
| 216 | } |
| 217 | |
| 218 | out_be32(®s->ecntrl, ecntrl); |
| 219 | out_be32(®s->maccfg2, maccfg2); |
| 220 | |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 221 | printf("Speed: %d, %s duplex%s\n", phydev->speed, |
Mario Six | d38de33 | 2018-01-15 11:08:21 +0100 | [diff] [blame] | 222 | (phydev->duplex) ? "full" : "half", |
| 223 | (phydev->port == PORT_FIBRE) ? ", fiber mode" : ""); |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 224 | } |
| 225 | |
Bin Meng | 8ba5017 | 2016-01-11 22:41:21 -0800 | [diff] [blame] | 226 | /* |
| 227 | * This returns the status bits of the device. The return value |
| 228 | * is never checked, and this is what the 8260 driver did, so we |
| 229 | * do the same. Presumably, this would be zero if there were no |
| 230 | * errors |
| 231 | */ |
Bin Meng | 9a1d6af | 2016-01-11 22:41:24 -0800 | [diff] [blame] | 232 | #ifndef CONFIG_DM_ETH |
Bin Meng | 8ba5017 | 2016-01-11 22:41:21 -0800 | [diff] [blame] | 233 | static int tsec_send(struct eth_device *dev, void *packet, int length) |
Bin Meng | 9a1d6af | 2016-01-11 22:41:24 -0800 | [diff] [blame] | 234 | #else |
| 235 | static int tsec_send(struct udevice *dev, void *packet, int length) |
| 236 | #endif |
Bin Meng | 8ba5017 | 2016-01-11 22:41:21 -0800 | [diff] [blame] | 237 | { |
| 238 | struct tsec_private *priv = (struct tsec_private *)dev->priv; |
| 239 | struct tsec __iomem *regs = priv->regs; |
Mario Six | d38de33 | 2018-01-15 11:08:21 +0100 | [diff] [blame] | 240 | u16 status; |
Bin Meng | 8ba5017 | 2016-01-11 22:41:21 -0800 | [diff] [blame] | 241 | int result = 0; |
| 242 | int i; |
| 243 | |
| 244 | /* Find an empty buffer descriptor */ |
| 245 | for (i = 0; |
| 246 | in_be16(&priv->txbd[priv->tx_idx].status) & TXBD_READY; |
| 247 | i++) { |
| 248 | if (i >= TOUT_LOOP) { |
| 249 | debug("%s: tsec: tx buffers full\n", dev->name); |
| 250 | return result; |
| 251 | } |
| 252 | } |
| 253 | |
| 254 | out_be32(&priv->txbd[priv->tx_idx].bufptr, (u32)packet); |
| 255 | out_be16(&priv->txbd[priv->tx_idx].length, length); |
| 256 | status = in_be16(&priv->txbd[priv->tx_idx].status); |
| 257 | out_be16(&priv->txbd[priv->tx_idx].status, status | |
| 258 | (TXBD_READY | TXBD_LAST | TXBD_CRC | TXBD_INTERRUPT)); |
| 259 | |
| 260 | /* Tell the DMA to go */ |
| 261 | out_be32(®s->tstat, TSTAT_CLEAR_THALT); |
| 262 | |
| 263 | /* Wait for buffer to be transmitted */ |
| 264 | for (i = 0; |
| 265 | in_be16(&priv->txbd[priv->tx_idx].status) & TXBD_READY; |
| 266 | i++) { |
| 267 | if (i >= TOUT_LOOP) { |
| 268 | debug("%s: tsec: tx error\n", dev->name); |
| 269 | return result; |
| 270 | } |
| 271 | } |
| 272 | |
| 273 | priv->tx_idx = (priv->tx_idx + 1) % TX_BUF_CNT; |
| 274 | result = in_be16(&priv->txbd[priv->tx_idx].status) & TXBD_STATS; |
| 275 | |
| 276 | return result; |
| 277 | } |
| 278 | |
Bin Meng | 9a1d6af | 2016-01-11 22:41:24 -0800 | [diff] [blame] | 279 | #ifndef CONFIG_DM_ETH |
Bin Meng | 8ba5017 | 2016-01-11 22:41:21 -0800 | [diff] [blame] | 280 | static int tsec_recv(struct eth_device *dev) |
| 281 | { |
| 282 | struct tsec_private *priv = (struct tsec_private *)dev->priv; |
| 283 | struct tsec __iomem *regs = priv->regs; |
| 284 | |
| 285 | while (!(in_be16(&priv->rxbd[priv->rx_idx].status) & RXBD_EMPTY)) { |
| 286 | int length = in_be16(&priv->rxbd[priv->rx_idx].length); |
Mario Six | d38de33 | 2018-01-15 11:08:21 +0100 | [diff] [blame] | 287 | u16 status = in_be16(&priv->rxbd[priv->rx_idx].status); |
Bin Meng | 8ba5017 | 2016-01-11 22:41:21 -0800 | [diff] [blame] | 288 | uchar *packet = net_rx_packets[priv->rx_idx]; |
| 289 | |
| 290 | /* Send the packet up if there were no errors */ |
| 291 | if (!(status & RXBD_STATS)) |
| 292 | net_process_received_packet(packet, length - 4); |
| 293 | else |
| 294 | printf("Got error %x\n", (status & RXBD_STATS)); |
| 295 | |
| 296 | out_be16(&priv->rxbd[priv->rx_idx].length, 0); |
| 297 | |
| 298 | status = RXBD_EMPTY; |
| 299 | /* Set the wrap bit if this is the last element in the list */ |
| 300 | if ((priv->rx_idx + 1) == PKTBUFSRX) |
| 301 | status |= RXBD_WRAP; |
| 302 | out_be16(&priv->rxbd[priv->rx_idx].status, status); |
| 303 | |
| 304 | priv->rx_idx = (priv->rx_idx + 1) % PKTBUFSRX; |
| 305 | } |
| 306 | |
| 307 | if (in_be32(®s->ievent) & IEVENT_BSY) { |
| 308 | out_be32(®s->ievent, IEVENT_BSY); |
| 309 | out_be32(®s->rstat, RSTAT_CLEAR_RHALT); |
| 310 | } |
| 311 | |
| 312 | return -1; |
| 313 | } |
Bin Meng | 9a1d6af | 2016-01-11 22:41:24 -0800 | [diff] [blame] | 314 | #else |
| 315 | static int tsec_recv(struct udevice *dev, int flags, uchar **packetp) |
| 316 | { |
| 317 | struct tsec_private *priv = (struct tsec_private *)dev->priv; |
| 318 | struct tsec __iomem *regs = priv->regs; |
| 319 | int ret = -1; |
| 320 | |
| 321 | if (!(in_be16(&priv->rxbd[priv->rx_idx].status) & RXBD_EMPTY)) { |
| 322 | int length = in_be16(&priv->rxbd[priv->rx_idx].length); |
Mario Six | d38de33 | 2018-01-15 11:08:21 +0100 | [diff] [blame] | 323 | u16 status = in_be16(&priv->rxbd[priv->rx_idx].status); |
| 324 | u32 buf; |
Bin Meng | 9a1d6af | 2016-01-11 22:41:24 -0800 | [diff] [blame] | 325 | |
| 326 | /* Send the packet up if there were no errors */ |
| 327 | if (!(status & RXBD_STATS)) { |
| 328 | buf = in_be32(&priv->rxbd[priv->rx_idx].bufptr); |
| 329 | *packetp = (uchar *)buf; |
| 330 | ret = length - 4; |
| 331 | } else { |
| 332 | printf("Got error %x\n", (status & RXBD_STATS)); |
| 333 | } |
| 334 | } |
| 335 | |
| 336 | if (in_be32(®s->ievent) & IEVENT_BSY) { |
| 337 | out_be32(®s->ievent, IEVENT_BSY); |
| 338 | out_be32(®s->rstat, RSTAT_CLEAR_RHALT); |
| 339 | } |
| 340 | |
| 341 | return ret; |
| 342 | } |
| 343 | |
| 344 | static int tsec_free_pkt(struct udevice *dev, uchar *packet, int length) |
| 345 | { |
| 346 | struct tsec_private *priv = (struct tsec_private *)dev->priv; |
Mario Six | d38de33 | 2018-01-15 11:08:21 +0100 | [diff] [blame] | 347 | u16 status; |
Bin Meng | 9a1d6af | 2016-01-11 22:41:24 -0800 | [diff] [blame] | 348 | |
| 349 | out_be16(&priv->rxbd[priv->rx_idx].length, 0); |
| 350 | |
| 351 | status = RXBD_EMPTY; |
| 352 | /* Set the wrap bit if this is the last element in the list */ |
| 353 | if ((priv->rx_idx + 1) == PKTBUFSRX) |
| 354 | status |= RXBD_WRAP; |
| 355 | out_be16(&priv->rxbd[priv->rx_idx].status, status); |
| 356 | |
| 357 | priv->rx_idx = (priv->rx_idx + 1) % PKTBUFSRX; |
| 358 | |
| 359 | return 0; |
| 360 | } |
| 361 | #endif |
Bin Meng | 8ba5017 | 2016-01-11 22:41:21 -0800 | [diff] [blame] | 362 | |
| 363 | /* Stop the interface */ |
Bin Meng | 9a1d6af | 2016-01-11 22:41:24 -0800 | [diff] [blame] | 364 | #ifndef CONFIG_DM_ETH |
Bin Meng | 8ba5017 | 2016-01-11 22:41:21 -0800 | [diff] [blame] | 365 | static void tsec_halt(struct eth_device *dev) |
Bin Meng | 9a1d6af | 2016-01-11 22:41:24 -0800 | [diff] [blame] | 366 | #else |
| 367 | static void tsec_halt(struct udevice *dev) |
| 368 | #endif |
Bin Meng | 8ba5017 | 2016-01-11 22:41:21 -0800 | [diff] [blame] | 369 | { |
| 370 | struct tsec_private *priv = (struct tsec_private *)dev->priv; |
| 371 | struct tsec __iomem *regs = priv->regs; |
| 372 | |
| 373 | clrbits_be32(®s->dmactrl, DMACTRL_GRS | DMACTRL_GTS); |
| 374 | setbits_be32(®s->dmactrl, DMACTRL_GRS | DMACTRL_GTS); |
| 375 | |
| 376 | while ((in_be32(®s->ievent) & (IEVENT_GRSC | IEVENT_GTSC)) |
| 377 | != (IEVENT_GRSC | IEVENT_GTSC)) |
| 378 | ; |
| 379 | |
| 380 | clrbits_be32(®s->maccfg1, MACCFG1_TX_EN | MACCFG1_RX_EN); |
| 381 | |
| 382 | /* Shut down the PHY, as needed */ |
| 383 | phy_shutdown(priv->phydev); |
| 384 | } |
| 385 | |
chenhui zhao | aada81d | 2011-10-03 08:38:50 -0500 | [diff] [blame] | 386 | #ifdef CONFIG_SYS_FSL_ERRATUM_NMG_ETSEC129 |
| 387 | /* |
| 388 | * When MACCFG1[Rx_EN] is enabled during system boot as part |
| 389 | * of the eTSEC port initialization sequence, |
| 390 | * the eTSEC Rx logic may not be properly initialized. |
| 391 | */ |
Bin Meng | 56a27a1 | 2016-01-11 22:41:22 -0800 | [diff] [blame] | 392 | void redundant_init(struct tsec_private *priv) |
chenhui zhao | aada81d | 2011-10-03 08:38:50 -0500 | [diff] [blame] | 393 | { |
Claudiu Manoil | aec84bf | 2013-09-30 12:44:42 +0300 | [diff] [blame] | 394 | struct tsec __iomem *regs = priv->regs; |
chenhui zhao | aada81d | 2011-10-03 08:38:50 -0500 | [diff] [blame] | 395 | uint t, count = 0; |
| 396 | int fail = 1; |
| 397 | static const u8 pkt[] = { |
| 398 | 0x00, 0x1e, 0x4f, 0x12, 0xcb, 0x2c, 0x00, 0x25, |
| 399 | 0x64, 0xbb, 0xd1, 0xab, 0x08, 0x00, 0x45, 0x00, |
| 400 | 0x00, 0x5c, 0xdd, 0x22, 0x00, 0x00, 0x80, 0x01, |
| 401 | 0x1f, 0x71, 0x0a, 0xc1, 0x14, 0x22, 0x0a, 0xc1, |
| 402 | 0x14, 0x6a, 0x08, 0x00, 0xef, 0x7e, 0x02, 0x00, |
| 403 | 0x94, 0x05, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, |
| 404 | 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, |
| 405 | 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, |
| 406 | 0x77, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, |
| 407 | 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, |
| 408 | 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, |
| 409 | 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, |
| 410 | 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, |
| 411 | 0x71, 0x72}; |
| 412 | |
| 413 | /* Enable promiscuous mode */ |
| 414 | setbits_be32(®s->rctrl, 0x8); |
| 415 | /* Enable loopback mode */ |
| 416 | setbits_be32(®s->maccfg1, MACCFG1_LOOPBACK); |
| 417 | /* Enable transmit and receive */ |
| 418 | setbits_be32(®s->maccfg1, MACCFG1_RX_EN | MACCFG1_TX_EN); |
| 419 | |
| 420 | /* Tell the DMA it is clear to go */ |
| 421 | setbits_be32(®s->dmactrl, DMACTRL_INIT_SETTINGS); |
| 422 | out_be32(®s->tstat, TSTAT_CLEAR_THALT); |
| 423 | out_be32(®s->rstat, RSTAT_CLEAR_RHALT); |
| 424 | clrbits_be32(®s->dmactrl, DMACTRL_GRS | DMACTRL_GTS); |
| 425 | |
| 426 | do { |
Mario Six | d38de33 | 2018-01-15 11:08:21 +0100 | [diff] [blame] | 427 | u16 status; |
| 428 | |
Bin Meng | 56a27a1 | 2016-01-11 22:41:22 -0800 | [diff] [blame] | 429 | tsec_send(priv->dev, (void *)pkt, sizeof(pkt)); |
chenhui zhao | aada81d | 2011-10-03 08:38:50 -0500 | [diff] [blame] | 430 | |
| 431 | /* Wait for buffer to be received */ |
Bin Meng | e677da9 | 2016-01-11 22:41:20 -0800 | [diff] [blame] | 432 | for (t = 0; |
| 433 | in_be16(&priv->rxbd[priv->rx_idx].status) & RXBD_EMPTY; |
Bin Meng | 362b123 | 2016-01-11 22:41:19 -0800 | [diff] [blame] | 434 | t++) { |
chenhui zhao | aada81d | 2011-10-03 08:38:50 -0500 | [diff] [blame] | 435 | if (t >= 10 * TOUT_LOOP) { |
Bin Meng | 56a27a1 | 2016-01-11 22:41:22 -0800 | [diff] [blame] | 436 | printf("%s: tsec: rx error\n", priv->dev->name); |
chenhui zhao | aada81d | 2011-10-03 08:38:50 -0500 | [diff] [blame] | 437 | break; |
| 438 | } |
| 439 | } |
| 440 | |
Bin Meng | 362b123 | 2016-01-11 22:41:19 -0800 | [diff] [blame] | 441 | if (!memcmp(pkt, net_rx_packets[priv->rx_idx], sizeof(pkt))) |
chenhui zhao | aada81d | 2011-10-03 08:38:50 -0500 | [diff] [blame] | 442 | fail = 0; |
| 443 | |
Bin Meng | e677da9 | 2016-01-11 22:41:20 -0800 | [diff] [blame] | 444 | out_be16(&priv->rxbd[priv->rx_idx].length, 0); |
Claudiu Manoil | 9c9141f | 2013-10-04 19:13:53 +0300 | [diff] [blame] | 445 | status = RXBD_EMPTY; |
Bin Meng | 362b123 | 2016-01-11 22:41:19 -0800 | [diff] [blame] | 446 | if ((priv->rx_idx + 1) == PKTBUFSRX) |
Claudiu Manoil | 9c9141f | 2013-10-04 19:13:53 +0300 | [diff] [blame] | 447 | status |= RXBD_WRAP; |
Bin Meng | e677da9 | 2016-01-11 22:41:20 -0800 | [diff] [blame] | 448 | out_be16(&priv->rxbd[priv->rx_idx].status, status); |
Bin Meng | 362b123 | 2016-01-11 22:41:19 -0800 | [diff] [blame] | 449 | priv->rx_idx = (priv->rx_idx + 1) % PKTBUFSRX; |
chenhui zhao | aada81d | 2011-10-03 08:38:50 -0500 | [diff] [blame] | 450 | |
| 451 | if (in_be32(®s->ievent) & IEVENT_BSY) { |
| 452 | out_be32(®s->ievent, IEVENT_BSY); |
| 453 | out_be32(®s->rstat, RSTAT_CLEAR_RHALT); |
| 454 | } |
| 455 | if (fail) { |
| 456 | printf("loopback recv packet error!\n"); |
| 457 | clrbits_be32(®s->maccfg1, MACCFG1_RX_EN); |
| 458 | udelay(1000); |
| 459 | setbits_be32(®s->maccfg1, MACCFG1_RX_EN); |
| 460 | } |
| 461 | } while ((count++ < 4) && (fail == 1)); |
| 462 | |
| 463 | if (fail) |
| 464 | panic("eTSEC init fail!\n"); |
| 465 | /* Disable promiscuous mode */ |
| 466 | clrbits_be32(®s->rctrl, 0x8); |
| 467 | /* Disable loopback mode */ |
| 468 | clrbits_be32(®s->maccfg1, MACCFG1_LOOPBACK); |
| 469 | } |
| 470 | #endif |
| 471 | |
Bin Meng | 9872b73 | 2016-01-11 22:41:18 -0800 | [diff] [blame] | 472 | /* |
| 473 | * Set up the buffers and their descriptors, and bring up the |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 474 | * interface |
| 475 | */ |
Bin Meng | 56a27a1 | 2016-01-11 22:41:22 -0800 | [diff] [blame] | 476 | static void startup_tsec(struct tsec_private *priv) |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 477 | { |
Claudiu Manoil | aec84bf | 2013-09-30 12:44:42 +0300 | [diff] [blame] | 478 | struct tsec __iomem *regs = priv->regs; |
Mario Six | d38de33 | 2018-01-15 11:08:21 +0100 | [diff] [blame] | 479 | u16 status; |
Claudiu Manoil | 9c9141f | 2013-10-04 19:13:53 +0300 | [diff] [blame] | 480 | int i; |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 481 | |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 482 | /* reset the indices to zero */ |
Bin Meng | 362b123 | 2016-01-11 22:41:19 -0800 | [diff] [blame] | 483 | priv->rx_idx = 0; |
| 484 | priv->tx_idx = 0; |
chenhui zhao | aada81d | 2011-10-03 08:38:50 -0500 | [diff] [blame] | 485 | #ifdef CONFIG_SYS_FSL_ERRATUM_NMG_ETSEC129 |
| 486 | uint svr; |
| 487 | #endif |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 488 | |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 489 | /* Point to the buffer descriptors */ |
Bin Meng | e677da9 | 2016-01-11 22:41:20 -0800 | [diff] [blame] | 490 | out_be32(®s->tbase, (u32)&priv->txbd[0]); |
| 491 | out_be32(®s->rbase, (u32)&priv->rxbd[0]); |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 492 | |
| 493 | /* Initialize the Rx Buffer descriptors */ |
| 494 | for (i = 0; i < PKTBUFSRX; i++) { |
Bin Meng | e677da9 | 2016-01-11 22:41:20 -0800 | [diff] [blame] | 495 | out_be16(&priv->rxbd[i].status, RXBD_EMPTY); |
| 496 | out_be16(&priv->rxbd[i].length, 0); |
| 497 | out_be32(&priv->rxbd[i].bufptr, (u32)net_rx_packets[i]); |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 498 | } |
Bin Meng | e677da9 | 2016-01-11 22:41:20 -0800 | [diff] [blame] | 499 | status = in_be16(&priv->rxbd[PKTBUFSRX - 1].status); |
| 500 | out_be16(&priv->rxbd[PKTBUFSRX - 1].status, status | RXBD_WRAP); |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 501 | |
| 502 | /* Initialize the TX Buffer Descriptors */ |
| 503 | for (i = 0; i < TX_BUF_CNT; i++) { |
Bin Meng | e677da9 | 2016-01-11 22:41:20 -0800 | [diff] [blame] | 504 | out_be16(&priv->txbd[i].status, 0); |
| 505 | out_be16(&priv->txbd[i].length, 0); |
| 506 | out_be32(&priv->txbd[i].bufptr, 0); |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 507 | } |
Bin Meng | e677da9 | 2016-01-11 22:41:20 -0800 | [diff] [blame] | 508 | status = in_be16(&priv->txbd[TX_BUF_CNT - 1].status); |
| 509 | out_be16(&priv->txbd[TX_BUF_CNT - 1].status, status | TXBD_WRAP); |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 510 | |
chenhui zhao | aada81d | 2011-10-03 08:38:50 -0500 | [diff] [blame] | 511 | #ifdef CONFIG_SYS_FSL_ERRATUM_NMG_ETSEC129 |
| 512 | svr = get_svr(); |
| 513 | if ((SVR_MAJ(svr) == 1) || IS_SVR_REV(svr, 2, 0)) |
Bin Meng | 56a27a1 | 2016-01-11 22:41:22 -0800 | [diff] [blame] | 514 | redundant_init(priv); |
chenhui zhao | aada81d | 2011-10-03 08:38:50 -0500 | [diff] [blame] | 515 | #endif |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 516 | /* Enable Transmit and Receive */ |
| 517 | setbits_be32(®s->maccfg1, MACCFG1_RX_EN | MACCFG1_TX_EN); |
| 518 | |
| 519 | /* Tell the DMA it is clear to go */ |
| 520 | setbits_be32(®s->dmactrl, DMACTRL_INIT_SETTINGS); |
| 521 | out_be32(®s->tstat, TSTAT_CLEAR_THALT); |
| 522 | out_be32(®s->rstat, RSTAT_CLEAR_RHALT); |
| 523 | clrbits_be32(®s->dmactrl, DMACTRL_GRS | DMACTRL_GTS); |
| 524 | } |
| 525 | |
Bin Meng | 9872b73 | 2016-01-11 22:41:18 -0800 | [diff] [blame] | 526 | /* |
Bin Meng | 9872b73 | 2016-01-11 22:41:18 -0800 | [diff] [blame] | 527 | * Initializes data structures and registers for the controller, |
| 528 | * and brings the interface up. Returns the link status, meaning |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 529 | * that it returns success if the link is up, failure otherwise. |
Bin Meng | 9872b73 | 2016-01-11 22:41:18 -0800 | [diff] [blame] | 530 | * This allows U-Boot to find the first active controller. |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 531 | */ |
Bin Meng | 9a1d6af | 2016-01-11 22:41:24 -0800 | [diff] [blame] | 532 | #ifndef CONFIG_DM_ETH |
Mario Six | d38de33 | 2018-01-15 11:08:21 +0100 | [diff] [blame] | 533 | static int tsec_init(struct eth_device *dev, bd_t *bd) |
Bin Meng | 9a1d6af | 2016-01-11 22:41:24 -0800 | [diff] [blame] | 534 | #else |
| 535 | static int tsec_init(struct udevice *dev) |
| 536 | #endif |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 537 | { |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 538 | struct tsec_private *priv = (struct tsec_private *)dev->priv; |
Bin Meng | 9a1d6af | 2016-01-11 22:41:24 -0800 | [diff] [blame] | 539 | #ifdef CONFIG_DM_ETH |
| 540 | struct eth_pdata *pdata = dev_get_platdata(dev); |
| 541 | #endif |
Claudiu Manoil | aec84bf | 2013-09-30 12:44:42 +0300 | [diff] [blame] | 542 | struct tsec __iomem *regs = priv->regs; |
Claudiu Manoil | b1690bc | 2013-09-30 12:44:47 +0300 | [diff] [blame] | 543 | u32 tempval; |
Timur Tabi | 11af8d6 | 2012-07-09 08:52:43 +0000 | [diff] [blame] | 544 | int ret; |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 545 | |
| 546 | /* Make sure the controller is stopped */ |
| 547 | tsec_halt(dev); |
| 548 | |
| 549 | /* Init MACCFG2. Defaults to GMII */ |
| 550 | out_be32(®s->maccfg2, MACCFG2_INIT_SETTINGS); |
| 551 | |
| 552 | /* Init ECNTRL */ |
| 553 | out_be32(®s->ecntrl, ECNTRL_INIT_SETTINGS); |
| 554 | |
Bin Meng | 9872b73 | 2016-01-11 22:41:18 -0800 | [diff] [blame] | 555 | /* |
| 556 | * Copy the station address into the address registers. |
Claudiu Manoil | b1690bc | 2013-09-30 12:44:47 +0300 | [diff] [blame] | 557 | * For a station address of 0x12345678ABCD in transmission |
| 558 | * order (BE), MACnADDR1 is set to 0xCDAB7856 and |
| 559 | * MACnADDR2 is set to 0x34120000. |
| 560 | */ |
Bin Meng | 9a1d6af | 2016-01-11 22:41:24 -0800 | [diff] [blame] | 561 | #ifndef CONFIG_DM_ETH |
Claudiu Manoil | b1690bc | 2013-09-30 12:44:47 +0300 | [diff] [blame] | 562 | tempval = (dev->enetaddr[5] << 24) | (dev->enetaddr[4] << 16) | |
| 563 | (dev->enetaddr[3] << 8) | dev->enetaddr[2]; |
Bin Meng | 9a1d6af | 2016-01-11 22:41:24 -0800 | [diff] [blame] | 564 | #else |
| 565 | tempval = (pdata->enetaddr[5] << 24) | (pdata->enetaddr[4] << 16) | |
| 566 | (pdata->enetaddr[3] << 8) | pdata->enetaddr[2]; |
| 567 | #endif |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 568 | |
| 569 | out_be32(®s->macstnaddr1, tempval); |
| 570 | |
Bin Meng | 9a1d6af | 2016-01-11 22:41:24 -0800 | [diff] [blame] | 571 | #ifndef CONFIG_DM_ETH |
Claudiu Manoil | b1690bc | 2013-09-30 12:44:47 +0300 | [diff] [blame] | 572 | tempval = (dev->enetaddr[1] << 24) | (dev->enetaddr[0] << 16); |
Bin Meng | 9a1d6af | 2016-01-11 22:41:24 -0800 | [diff] [blame] | 573 | #else |
| 574 | tempval = (pdata->enetaddr[1] << 24) | (pdata->enetaddr[0] << 16); |
| 575 | #endif |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 576 | |
| 577 | out_be32(®s->macstnaddr2, tempval); |
| 578 | |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 579 | /* Clear out (for the most part) the other registers */ |
| 580 | init_registers(regs); |
| 581 | |
| 582 | /* Ready the device for tx/rx */ |
Bin Meng | 56a27a1 | 2016-01-11 22:41:22 -0800 | [diff] [blame] | 583 | startup_tsec(priv); |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 584 | |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 585 | /* Start up the PHY */ |
Timur Tabi | 11af8d6 | 2012-07-09 08:52:43 +0000 | [diff] [blame] | 586 | ret = phy_startup(priv->phydev); |
| 587 | if (ret) { |
| 588 | printf("Could not initialize PHY %s\n", |
| 589 | priv->phydev->dev->name); |
| 590 | return ret; |
| 591 | } |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 592 | |
| 593 | adjust_link(priv, priv->phydev); |
| 594 | |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 595 | /* If there's no link, fail */ |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 596 | return priv->phydev->link ? 0 : -1; |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 597 | } |
| 598 | |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 599 | static phy_interface_t tsec_get_interface(struct tsec_private *priv) |
| 600 | { |
Claudiu Manoil | aec84bf | 2013-09-30 12:44:42 +0300 | [diff] [blame] | 601 | struct tsec __iomem *regs = priv->regs; |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 602 | u32 ecntrl; |
| 603 | |
| 604 | ecntrl = in_be32(®s->ecntrl); |
| 605 | |
| 606 | if (ecntrl & ECNTRL_SGMII_MODE) |
| 607 | return PHY_INTERFACE_MODE_SGMII; |
| 608 | |
| 609 | if (ecntrl & ECNTRL_TBI_MODE) { |
| 610 | if (ecntrl & ECNTRL_REDUCED_MODE) |
| 611 | return PHY_INTERFACE_MODE_RTBI; |
| 612 | else |
| 613 | return PHY_INTERFACE_MODE_TBI; |
| 614 | } |
| 615 | |
| 616 | if (ecntrl & ECNTRL_REDUCED_MODE) { |
Mario Six | d38de33 | 2018-01-15 11:08:21 +0100 | [diff] [blame] | 617 | phy_interface_t interface; |
| 618 | |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 619 | if (ecntrl & ECNTRL_REDUCED_MII_MODE) |
| 620 | return PHY_INTERFACE_MODE_RMII; |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 621 | |
Mario Six | d38de33 | 2018-01-15 11:08:21 +0100 | [diff] [blame] | 622 | interface = priv->interface; |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 623 | |
Mario Six | d38de33 | 2018-01-15 11:08:21 +0100 | [diff] [blame] | 624 | /* |
| 625 | * This isn't autodetected, so it must |
| 626 | * be set by the platform code. |
| 627 | */ |
| 628 | if (interface == PHY_INTERFACE_MODE_RGMII_ID || |
| 629 | interface == PHY_INTERFACE_MODE_RGMII_TXID || |
| 630 | interface == PHY_INTERFACE_MODE_RGMII_RXID) |
| 631 | return interface; |
| 632 | |
| 633 | return PHY_INTERFACE_MODE_RGMII; |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 634 | } |
| 635 | |
| 636 | if (priv->flags & TSEC_GIGABIT) |
| 637 | return PHY_INTERFACE_MODE_GMII; |
| 638 | |
| 639 | return PHY_INTERFACE_MODE_MII; |
| 640 | } |
| 641 | |
Bin Meng | 9872b73 | 2016-01-11 22:41:18 -0800 | [diff] [blame] | 642 | /* |
| 643 | * Discover which PHY is attached to the device, and configure it |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 644 | * properly. If the PHY is not recognized, then return 0 |
| 645 | * (failure). Otherwise, return 1 |
| 646 | */ |
Bin Meng | 56a27a1 | 2016-01-11 22:41:22 -0800 | [diff] [blame] | 647 | static int init_phy(struct tsec_private *priv) |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 648 | { |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 649 | struct phy_device *phydev; |
Claudiu Manoil | aec84bf | 2013-09-30 12:44:42 +0300 | [diff] [blame] | 650 | struct tsec __iomem *regs = priv->regs; |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 651 | u32 supported = (SUPPORTED_10baseT_Half | |
| 652 | SUPPORTED_10baseT_Full | |
| 653 | SUPPORTED_100baseT_Half | |
| 654 | SUPPORTED_100baseT_Full); |
| 655 | |
| 656 | if (priv->flags & TSEC_GIGABIT) |
| 657 | supported |= SUPPORTED_1000baseT_Full; |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 658 | |
| 659 | /* Assign a Physical address to the TBI */ |
Bin Meng | a1c76c1 | 2016-01-11 22:41:25 -0800 | [diff] [blame] | 660 | out_be32(®s->tbipa, priv->tbiaddr); |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 661 | |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 662 | priv->interface = tsec_get_interface(priv); |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 663 | |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 664 | if (priv->interface == PHY_INTERFACE_MODE_SGMII) |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 665 | tsec_configure_serdes(priv); |
| 666 | |
Bin Meng | 56a27a1 | 2016-01-11 22:41:22 -0800 | [diff] [blame] | 667 | phydev = phy_connect(priv->bus, priv->phyaddr, priv->dev, |
| 668 | priv->interface); |
Claudiu Manoil | 7f233c0 | 2013-12-10 15:21:04 +0200 | [diff] [blame] | 669 | if (!phydev) |
| 670 | return 0; |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 671 | |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 672 | phydev->supported &= supported; |
| 673 | phydev->advertising = phydev->supported; |
| 674 | |
| 675 | priv->phydev = phydev; |
| 676 | |
| 677 | phy_config(phydev); |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 678 | |
| 679 | return 1; |
| 680 | } |
| 681 | |
Bin Meng | 9a1d6af | 2016-01-11 22:41:24 -0800 | [diff] [blame] | 682 | #ifndef CONFIG_DM_ETH |
Bin Meng | 9872b73 | 2016-01-11 22:41:18 -0800 | [diff] [blame] | 683 | /* |
| 684 | * Initialize device structure. Returns success if PHY |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 685 | * initialization succeeded (i.e. if it recognizes the PHY) |
| 686 | */ |
| 687 | static int tsec_initialize(bd_t *bis, struct tsec_info_struct *tsec_info) |
| 688 | { |
| 689 | struct eth_device *dev; |
| 690 | int i; |
| 691 | struct tsec_private *priv; |
| 692 | |
Mario Six | d38de33 | 2018-01-15 11:08:21 +0100 | [diff] [blame] | 693 | dev = (struct eth_device *)malloc(sizeof(*dev)); |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 694 | |
Mario Six | d38de33 | 2018-01-15 11:08:21 +0100 | [diff] [blame] | 695 | if (!dev) |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 696 | return 0; |
| 697 | |
Mario Six | d38de33 | 2018-01-15 11:08:21 +0100 | [diff] [blame] | 698 | memset(dev, 0, sizeof(*dev)); |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 699 | |
| 700 | priv = (struct tsec_private *)malloc(sizeof(*priv)); |
| 701 | |
Mario Six | 5775f00 | 2018-01-15 11:08:22 +0100 | [diff] [blame] | 702 | if (!priv) { |
| 703 | free(dev); |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 704 | return 0; |
Mario Six | 5775f00 | 2018-01-15 11:08:22 +0100 | [diff] [blame] | 705 | } |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 706 | |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 707 | priv->regs = tsec_info->regs; |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 708 | priv->phyregs_sgmii = tsec_info->miiregs_sgmii; |
| 709 | |
| 710 | priv->phyaddr = tsec_info->phyaddr; |
Bin Meng | a1c76c1 | 2016-01-11 22:41:25 -0800 | [diff] [blame] | 711 | priv->tbiaddr = CONFIG_SYS_TBIPA_VALUE; |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 712 | priv->flags = tsec_info->flags; |
| 713 | |
Ben Whitten | 192bc69 | 2015-12-30 13:05:58 +0000 | [diff] [blame] | 714 | strcpy(dev->name, tsec_info->devname); |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 715 | priv->interface = tsec_info->interface; |
| 716 | priv->bus = miiphy_get_dev_by_name(tsec_info->mii_devname); |
Bin Meng | 56a27a1 | 2016-01-11 22:41:22 -0800 | [diff] [blame] | 717 | priv->dev = dev; |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 718 | dev->iobase = 0; |
| 719 | dev->priv = priv; |
| 720 | dev->init = tsec_init; |
| 721 | dev->halt = tsec_halt; |
| 722 | dev->send = tsec_send; |
| 723 | dev->recv = tsec_recv; |
| 724 | #ifdef CONFIG_MCAST_TFTP |
| 725 | dev->mcast = tsec_mcast_addr; |
| 726 | #endif |
| 727 | |
Bin Meng | 9872b73 | 2016-01-11 22:41:18 -0800 | [diff] [blame] | 728 | /* Tell U-Boot to get the addr from the env */ |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 729 | for (i = 0; i < 6; i++) |
| 730 | dev->enetaddr[i] = 0; |
| 731 | |
| 732 | eth_register(dev); |
| 733 | |
| 734 | /* Reset the MAC */ |
| 735 | setbits_be32(&priv->regs->maccfg1, MACCFG1_SOFT_RESET); |
| 736 | udelay(2); /* Soft Reset must be asserted for 3 TX clocks */ |
| 737 | clrbits_be32(&priv->regs->maccfg1, MACCFG1_SOFT_RESET); |
| 738 | |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 739 | /* Try to initialize PHY here, and return */ |
Bin Meng | 56a27a1 | 2016-01-11 22:41:22 -0800 | [diff] [blame] | 740 | return init_phy(priv); |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 741 | } |
| 742 | |
| 743 | /* |
| 744 | * Initialize all the TSEC devices |
| 745 | * |
| 746 | * Returns the number of TSEC devices that were initialized |
| 747 | */ |
| 748 | int tsec_eth_init(bd_t *bis, struct tsec_info_struct *tsecs, int num) |
| 749 | { |
| 750 | int i; |
Mario Six | d38de33 | 2018-01-15 11:08:21 +0100 | [diff] [blame] | 751 | int count = 0; |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 752 | |
| 753 | for (i = 0; i < num; i++) { |
Mario Six | d38de33 | 2018-01-15 11:08:21 +0100 | [diff] [blame] | 754 | int ret = tsec_initialize(bis, &tsecs[i]); |
| 755 | |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 756 | if (ret > 0) |
| 757 | count += ret; |
| 758 | } |
| 759 | |
| 760 | return count; |
| 761 | } |
| 762 | |
| 763 | int tsec_standard_init(bd_t *bis) |
| 764 | { |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 765 | struct fsl_pq_mdio_info info; |
| 766 | |
Claudiu Manoil | aec84bf | 2013-09-30 12:44:42 +0300 | [diff] [blame] | 767 | info.regs = TSEC_GET_MDIO_REGS_BASE(1); |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 768 | info.name = DEFAULT_MII_NAME; |
| 769 | |
| 770 | fsl_pq_mdio_init(bis, &info); |
| 771 | |
Mingkai Hu | 9075191 | 2011-01-27 12:52:46 +0800 | [diff] [blame] | 772 | return tsec_eth_init(bis, tsec_info, ARRAY_SIZE(tsec_info)); |
| 773 | } |
Bin Meng | 9a1d6af | 2016-01-11 22:41:24 -0800 | [diff] [blame] | 774 | #else /* CONFIG_DM_ETH */ |
| 775 | int tsec_probe(struct udevice *dev) |
| 776 | { |
| 777 | struct tsec_private *priv = dev_get_priv(dev); |
| 778 | struct eth_pdata *pdata = dev_get_platdata(dev); |
| 779 | struct fsl_pq_mdio_info mdio_info; |
Mario Six | 1313aaf | 2018-01-15 11:08:23 +0100 | [diff] [blame] | 780 | struct ofnode_phandle_args phandle_args; |
| 781 | ofnode parent; |
Bin Meng | 9a1d6af | 2016-01-11 22:41:24 -0800 | [diff] [blame] | 782 | const char *phy_mode; |
| 783 | int ret; |
| 784 | |
Mario Six | 1313aaf | 2018-01-15 11:08:23 +0100 | [diff] [blame] | 785 | pdata->iobase = (phys_addr_t)dev_read_addr(dev); |
Bin Meng | 9a1d6af | 2016-01-11 22:41:24 -0800 | [diff] [blame] | 786 | priv->regs = (struct tsec *)pdata->iobase; |
| 787 | |
Mario Six | 1313aaf | 2018-01-15 11:08:23 +0100 | [diff] [blame] | 788 | if (dev_read_phandle_with_args(dev, "phy-handle", NULL, 0, 0, |
| 789 | &phandle_args)) { |
Bin Meng | 9a1d6af | 2016-01-11 22:41:24 -0800 | [diff] [blame] | 790 | debug("phy-handle does not exist under tsec %s\n", dev->name); |
| 791 | return -ENOENT; |
Mario Six | 1313aaf | 2018-01-15 11:08:23 +0100 | [diff] [blame] | 792 | } else { |
| 793 | int reg = ofnode_read_u32_default(phandle_args.node, "reg", 0); |
| 794 | |
| 795 | priv->phyaddr = reg; |
Bin Meng | 9a1d6af | 2016-01-11 22:41:24 -0800 | [diff] [blame] | 796 | } |
| 797 | |
Mario Six | 1313aaf | 2018-01-15 11:08:23 +0100 | [diff] [blame] | 798 | parent = ofnode_get_parent(phandle_args.node); |
| 799 | if (ofnode_valid(parent)) { |
| 800 | int reg = ofnode_read_u32_default(parent, "reg", 0); |
Bin Meng | 9a1d6af | 2016-01-11 22:41:24 -0800 | [diff] [blame] | 801 | priv->phyregs_sgmii = (struct tsec_mii_mng *)(reg + 0x520); |
| 802 | } else { |
| 803 | debug("No parent node for PHY?\n"); |
| 804 | return -ENOENT; |
| 805 | } |
| 806 | |
Mario Six | 1313aaf | 2018-01-15 11:08:23 +0100 | [diff] [blame] | 807 | if (dev_read_phandle_with_args(dev, "tbi-handle", NULL, 0, 0, |
| 808 | &phandle_args)) { |
Bin Meng | a1c76c1 | 2016-01-11 22:41:25 -0800 | [diff] [blame] | 809 | priv->tbiaddr = CONFIG_SYS_TBIPA_VALUE; |
Mario Six | 1313aaf | 2018-01-15 11:08:23 +0100 | [diff] [blame] | 810 | } else { |
| 811 | int reg = ofnode_read_u32_default(phandle_args.node, "reg", |
| 812 | CONFIG_SYS_TBIPA_VALUE); |
| 813 | priv->tbiaddr = reg; |
Bin Meng | a1c76c1 | 2016-01-11 22:41:25 -0800 | [diff] [blame] | 814 | } |
| 815 | |
Mario Six | 1313aaf | 2018-01-15 11:08:23 +0100 | [diff] [blame] | 816 | phy_mode = dev_read_prop(dev, "phy-connection-type", NULL); |
Bin Meng | 9a1d6af | 2016-01-11 22:41:24 -0800 | [diff] [blame] | 817 | if (phy_mode) |
| 818 | pdata->phy_interface = phy_get_interface_by_name(phy_mode); |
| 819 | if (pdata->phy_interface == -1) { |
| 820 | debug("Invalid PHY interface '%s'\n", phy_mode); |
| 821 | return -EINVAL; |
| 822 | } |
| 823 | priv->interface = pdata->phy_interface; |
| 824 | |
| 825 | /* Initialize flags */ |
| 826 | priv->flags = TSEC_GIGABIT; |
| 827 | if (priv->interface == PHY_INTERFACE_MODE_SGMII) |
| 828 | priv->flags |= TSEC_SGMII; |
| 829 | |
| 830 | mdio_info.regs = priv->phyregs_sgmii; |
| 831 | mdio_info.name = (char *)dev->name; |
| 832 | ret = fsl_pq_mdio_init(NULL, &mdio_info); |
| 833 | if (ret) |
| 834 | return ret; |
| 835 | |
| 836 | /* Reset the MAC */ |
| 837 | setbits_be32(&priv->regs->maccfg1, MACCFG1_SOFT_RESET); |
| 838 | udelay(2); /* Soft Reset must be asserted for 3 TX clocks */ |
| 839 | clrbits_be32(&priv->regs->maccfg1, MACCFG1_SOFT_RESET); |
| 840 | |
| 841 | priv->dev = dev; |
| 842 | priv->bus = miiphy_get_dev_by_name(dev->name); |
| 843 | |
| 844 | /* Try to initialize PHY here, and return */ |
| 845 | return !init_phy(priv); |
| 846 | } |
| 847 | |
| 848 | int tsec_remove(struct udevice *dev) |
| 849 | { |
| 850 | struct tsec_private *priv = dev->priv; |
| 851 | |
| 852 | free(priv->phydev); |
| 853 | mdio_unregister(priv->bus); |
| 854 | mdio_free(priv->bus); |
| 855 | |
| 856 | return 0; |
| 857 | } |
| 858 | |
| 859 | static const struct eth_ops tsec_ops = { |
| 860 | .start = tsec_init, |
| 861 | .send = tsec_send, |
| 862 | .recv = tsec_recv, |
| 863 | .free_pkt = tsec_free_pkt, |
| 864 | .stop = tsec_halt, |
| 865 | #ifdef CONFIG_MCAST_TFTP |
| 866 | .mcast = tsec_mcast_addr, |
| 867 | #endif |
| 868 | }; |
| 869 | |
| 870 | static const struct udevice_id tsec_ids[] = { |
| 871 | { .compatible = "fsl,tsec" }, |
| 872 | { } |
| 873 | }; |
| 874 | |
| 875 | U_BOOT_DRIVER(eth_tsec) = { |
| 876 | .name = "tsec", |
| 877 | .id = UCLASS_ETH, |
| 878 | .of_match = tsec_ids, |
| 879 | .probe = tsec_probe, |
| 880 | .remove = tsec_remove, |
| 881 | .ops = &tsec_ops, |
| 882 | .priv_auto_alloc_size = sizeof(struct tsec_private), |
| 883 | .platdata_auto_alloc_size = sizeof(struct eth_pdata), |
| 884 | .flags = DM_FLAG_ALLOC_PRIV_DMA, |
| 885 | }; |
| 886 | #endif /* CONFIG_DM_ETH */ |