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