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