blob: 6829e32dae5f4f071cdf93761a81d176186f9459 [file] [log] [blame]
wdenk42d1f032003-10-15 23:53:47 +00001/*
wdenk97d80fc2004-06-09 00:34:46 +00002 * Freescale Three Speed Ethernet Controller driver
wdenk42d1f032003-10-15 23:53:47 +00003 *
Claudiu Manoilaec84bf2013-09-30 12:44:42 +03004 * Copyright 2004-2011, 2013 Freescale Semiconductor, Inc.
wdenk42d1f032003-10-15 23:53:47 +00005 * (C) Copyright 2003, Motorola, Inc.
wdenk42d1f032003-10-15 23:53:47 +00006 * author Andy Fleming
7 *
Bin Meng9872b732016-01-11 22:41:18 -08008 * SPDX-License-Identifier: GPL-2.0+
wdenk42d1f032003-10-15 23:53:47 +00009 */
10
11#include <config.h>
wdenk42d1f032003-10-15 23:53:47 +000012#include <common.h>
Bin Meng9a1d6af2016-01-11 22:41:24 -080013#include <dm.h>
wdenk42d1f032003-10-15 23:53:47 +000014#include <malloc.h>
15#include <net.h>
16#include <command.h>
Andy Flemingdd3d1f52008-08-31 16:33:25 -050017#include <tsec.h>
Andy Fleming063c1262011-04-08 02:10:54 -050018#include <fsl_mdio.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090019#include <linux/errno.h>
chenhui zhaoaada81d2011-10-03 08:38:50 -050020#include <asm/processor.h>
Alison Wang52d00a82014-09-05 13:52:38 +080021#include <asm/io.h>
wdenk42d1f032003-10-15 23:53:47 +000022
Bin Meng9a1d6af2016-01-11 22:41:24 -080023#ifndef CONFIG_DM_ETH
Andy Fleming75b9d4a2008-08-31 16:33:26 -050024/* Default initializations for TSEC controllers. */
25
26static struct tsec_info_struct tsec_info[] = {
27#ifdef CONFIG_TSEC1
28 STD_TSEC_INFO(1), /* TSEC1 */
29#endif
30#ifdef CONFIG_TSEC2
31 STD_TSEC_INFO(2), /* TSEC2 */
32#endif
33#ifdef CONFIG_MPC85XX_FEC
34 {
Claudiu Manoilaec84bf2013-09-30 12:44:42 +030035 .regs = TSEC_GET_REGS(2, 0x2000),
Andy Fleming75b9d4a2008-08-31 16:33:26 -050036 .devname = CONFIG_MPC85XX_FEC_NAME,
37 .phyaddr = FEC_PHY_ADDR,
Andy Fleming063c1262011-04-08 02:10:54 -050038 .flags = FEC_FLAGS,
39 .mii_devname = DEFAULT_MII_NAME
Andy Fleming75b9d4a2008-08-31 16:33:26 -050040 }, /* FEC */
41#endif
42#ifdef CONFIG_TSEC3
43 STD_TSEC_INFO(3), /* TSEC3 */
44#endif
45#ifdef CONFIG_TSEC4
46 STD_TSEC_INFO(4), /* TSEC4 */
47#endif
48};
Bin Meng9a1d6af2016-01-11 22:41:24 -080049#endif /* CONFIG_DM_ETH */
Andy Fleming75b9d4a2008-08-31 16:33:26 -050050
Andy Fleming2abe3612008-08-31 16:33:27 -050051#define TBIANA_SETTINGS ( \
52 TBIANA_ASYMMETRIC_PAUSE \
53 | TBIANA_SYMMETRIC_PAUSE \
54 | TBIANA_FULL_DUPLEX \
55 )
56
Felix Radensky90b5bf22010-06-28 01:57:39 +030057/* By default force the TBI PHY into 1000Mbps full duplex when in SGMII mode */
58#ifndef CONFIG_TSEC_TBICR_SETTINGS
Kumar Gala72c96a62010-12-01 22:55:54 -060059#define CONFIG_TSEC_TBICR_SETTINGS ( \
Andy Fleming2abe3612008-08-31 16:33:27 -050060 TBICR_PHY_RESET \
Kumar Gala72c96a62010-12-01 22:55:54 -060061 | TBICR_ANEG_ENABLE \
Andy Fleming2abe3612008-08-31 16:33:27 -050062 | TBICR_FULL_DUPLEX \
63 | TBICR_SPEED1_SET \
64 )
Felix Radensky90b5bf22010-06-28 01:57:39 +030065#endif /* CONFIG_TSEC_TBICR_SETTINGS */
Peter Tyser46e91672009-11-03 17:52:07 -060066
Andy Fleming2abe3612008-08-31 16:33:27 -050067/* Configure the TBI for SGMII operation */
68static void tsec_configure_serdes(struct tsec_private *priv)
69{
Bin Meng9872b732016-01-11 22:41:18 -080070 /*
71 * Access TBI PHY registers at given TSEC register offset as opposed
72 * to the register offset used for external PHY accesses
73 */
Andy Fleming063c1262011-04-08 02:10:54 -050074 tsec_local_mdio_write(priv->phyregs_sgmii, in_be32(&priv->regs->tbipa),
Mario Sixd38de332018-01-15 11:08:21 +010075 0, TBI_ANA, TBIANA_SETTINGS);
Andy Fleming063c1262011-04-08 02:10:54 -050076 tsec_local_mdio_write(priv->phyregs_sgmii, in_be32(&priv->regs->tbipa),
Mario Sixd38de332018-01-15 11:08:21 +010077 0, TBI_TBICON, TBICON_CLK_SELECT);
Andy Fleming063c1262011-04-08 02:10:54 -050078 tsec_local_mdio_write(priv->phyregs_sgmii, in_be32(&priv->regs->tbipa),
Mario Sixd38de332018-01-15 11:08:21 +010079 0, TBI_CR, CONFIG_TSEC_TBICR_SETTINGS);
Andy Fleming2abe3612008-08-31 16:33:27 -050080}
michael.firth@bt.com55fe7c52008-01-16 11:40:51 +000081
David Updegraff53a5c422007-06-11 10:41:07 -050082#ifdef CONFIG_MCAST_TFTP
83
84/* CREDITS: linux gianfar driver, slightly adjusted... thanx. */
85
86/* Set the appropriate hash bit for the given addr */
87
Bin Meng9872b732016-01-11 22:41:18 -080088/*
89 * The algorithm works like so:
David Updegraff53a5c422007-06-11 10:41:07 -050090 * 1) Take the Destination Address (ie the multicast address), and
91 * do a CRC on it (little endian), and reverse the bits of the
92 * result.
93 * 2) Use the 8 most significant bits as a hash into a 256-entry
94 * table. The table is controlled through 8 32-bit registers:
Claudiu Manoil876d4512013-09-30 12:44:40 +030095 * gaddr0-7. gaddr0's MSB is entry 0, and gaddr7's LSB is entry
96 * 255. This means that the 3 most significant bits in the
David Updegraff53a5c422007-06-11 10:41:07 -050097 * hash index which gaddr register to use, and the 5 other bits
98 * indicate which bit (assuming an IBM numbering scheme, which
Claudiu Manoil876d4512013-09-30 12:44:40 +030099 * for PowerPC (tm) is usually the case) in the register holds
Bin Meng9872b732016-01-11 22:41:18 -0800100 * the entry.
101 */
Bin Meng9a1d6af2016-01-11 22:41:24 -0800102#ifndef CONFIG_DM_ETH
Bin Meng9872b732016-01-11 22:41:18 -0800103static int tsec_mcast_addr(struct eth_device *dev, const u8 *mcast_mac, u8 set)
Bin Meng9a1d6af2016-01-11 22:41:24 -0800104#else
105static int tsec_mcast_addr(struct udevice *dev, const u8 *mcast_mac, int set)
106#endif
David Updegraff53a5c422007-06-11 10:41:07 -0500107{
Claudiu Manoilb2002042013-09-30 12:44:41 +0300108 struct tsec_private *priv = (struct tsec_private *)dev->priv;
Claudiu Manoil876d4512013-09-30 12:44:40 +0300109 struct tsec __iomem *regs = priv->regs;
110 u32 result, value;
111 u8 whichbit, whichreg;
David Updegraff53a5c422007-06-11 10:41:07 -0500112
Claudiu Manoil876d4512013-09-30 12:44:40 +0300113 result = ether_crc(MAC_ADDR_LEN, mcast_mac);
114 whichbit = (result >> 24) & 0x1f; /* the 5 LSB = which bit to set */
115 whichreg = result >> 29; /* the 3 MSB = which reg to set it in */
David Updegraff53a5c422007-06-11 10:41:07 -0500116
Mario Sixd38de332018-01-15 11:08:21 +0100117 value = BIT(31 - whichbit);
David Updegraff53a5c422007-06-11 10:41:07 -0500118
Claudiu Manoil876d4512013-09-30 12:44:40 +0300119 if (set)
120 setbits_be32(&regs->hash.gaddr0 + whichreg, value);
121 else
122 clrbits_be32(&regs->hash.gaddr0 + whichreg, value);
123
David Updegraff53a5c422007-06-11 10:41:07 -0500124 return 0;
125}
126#endif /* Multicast TFTP ? */
Mingkai Hu90751912011-01-27 12:52:46 +0800127
Bin Meng9872b732016-01-11 22:41:18 -0800128/*
129 * Initialized required registers to appropriate values, zeroing
Mingkai Hu90751912011-01-27 12:52:46 +0800130 * those we don't care about (unless zero is bad, in which case,
131 * choose a more appropriate value)
132 */
Claudiu Manoilaec84bf2013-09-30 12:44:42 +0300133static void init_registers(struct tsec __iomem *regs)
Mingkai Hu90751912011-01-27 12:52:46 +0800134{
135 /* Clear IEVENT */
136 out_be32(&regs->ievent, IEVENT_INIT_CLEAR);
137
138 out_be32(&regs->imask, IMASK_INIT_CLEAR);
139
140 out_be32(&regs->hash.iaddr0, 0);
141 out_be32(&regs->hash.iaddr1, 0);
142 out_be32(&regs->hash.iaddr2, 0);
143 out_be32(&regs->hash.iaddr3, 0);
144 out_be32(&regs->hash.iaddr4, 0);
145 out_be32(&regs->hash.iaddr5, 0);
146 out_be32(&regs->hash.iaddr6, 0);
147 out_be32(&regs->hash.iaddr7, 0);
148
149 out_be32(&regs->hash.gaddr0, 0);
150 out_be32(&regs->hash.gaddr1, 0);
151 out_be32(&regs->hash.gaddr2, 0);
152 out_be32(&regs->hash.gaddr3, 0);
153 out_be32(&regs->hash.gaddr4, 0);
154 out_be32(&regs->hash.gaddr5, 0);
155 out_be32(&regs->hash.gaddr6, 0);
156 out_be32(&regs->hash.gaddr7, 0);
157
158 out_be32(&regs->rctrl, 0x00000000);
159
160 /* Init RMON mib registers */
Claudiu Manoil82ef75c2013-09-30 12:44:46 +0300161 memset((void *)&regs->rmon, 0, sizeof(regs->rmon));
Mingkai Hu90751912011-01-27 12:52:46 +0800162
163 out_be32(&regs->rmon.cam1, 0xffffffff);
164 out_be32(&regs->rmon.cam2, 0xffffffff);
165
166 out_be32(&regs->mrblr, MRBLR_INIT_SETTINGS);
167
168 out_be32(&regs->minflr, MINFLR_INIT_SETTINGS);
169
170 out_be32(&regs->attr, ATTR_INIT_SETTINGS);
171 out_be32(&regs->attreli, ATTRELI_INIT_SETTINGS);
Mingkai Hu90751912011-01-27 12:52:46 +0800172}
173
Bin Meng9872b732016-01-11 22:41:18 -0800174/*
175 * Configure maccfg2 based on negotiated speed and duplex
Mingkai Hu90751912011-01-27 12:52:46 +0800176 * reported by PHY handling code
177 */
Andy Fleming063c1262011-04-08 02:10:54 -0500178static void adjust_link(struct tsec_private *priv, struct phy_device *phydev)
Mingkai Hu90751912011-01-27 12:52:46 +0800179{
Claudiu Manoilaec84bf2013-09-30 12:44:42 +0300180 struct tsec __iomem *regs = priv->regs;
Mingkai Hu90751912011-01-27 12:52:46 +0800181 u32 ecntrl, maccfg2;
182
Andy Fleming063c1262011-04-08 02:10:54 -0500183 if (!phydev->link) {
184 printf("%s: No link.\n", phydev->dev->name);
Mingkai Hu90751912011-01-27 12:52:46 +0800185 return;
186 }
187
188 /* clear all bits relative with interface mode */
189 ecntrl = in_be32(&regs->ecntrl);
190 ecntrl &= ~ECNTRL_R100;
191
192 maccfg2 = in_be32(&regs->maccfg2);
193 maccfg2 &= ~(MACCFG2_IF | MACCFG2_FULL_DUPLEX);
194
Andy Fleming063c1262011-04-08 02:10:54 -0500195 if (phydev->duplex)
Mingkai Hu90751912011-01-27 12:52:46 +0800196 maccfg2 |= MACCFG2_FULL_DUPLEX;
197
Andy Fleming063c1262011-04-08 02:10:54 -0500198 switch (phydev->speed) {
Mingkai Hu90751912011-01-27 12:52:46 +0800199 case 1000:
200 maccfg2 |= MACCFG2_GMII;
201 break;
202 case 100:
203 case 10:
204 maccfg2 |= MACCFG2_MII;
205
Bin Meng9872b732016-01-11 22:41:18 -0800206 /*
207 * Set R100 bit in all modes although
Mingkai Hu90751912011-01-27 12:52:46 +0800208 * it is only used in RGMII mode
209 */
Andy Fleming063c1262011-04-08 02:10:54 -0500210 if (phydev->speed == 100)
Mingkai Hu90751912011-01-27 12:52:46 +0800211 ecntrl |= ECNTRL_R100;
212 break;
213 default:
Andy Fleming063c1262011-04-08 02:10:54 -0500214 printf("%s: Speed was bad\n", phydev->dev->name);
Mingkai Hu90751912011-01-27 12:52:46 +0800215 break;
216 }
217
218 out_be32(&regs->ecntrl, ecntrl);
219 out_be32(&regs->maccfg2, maccfg2);
220
Andy Fleming063c1262011-04-08 02:10:54 -0500221 printf("Speed: %d, %s duplex%s\n", phydev->speed,
Mario Sixd38de332018-01-15 11:08:21 +0100222 (phydev->duplex) ? "full" : "half",
223 (phydev->port == PORT_FIBRE) ? ", fiber mode" : "");
Mingkai Hu90751912011-01-27 12:52:46 +0800224}
225
Bin Meng8ba50172016-01-11 22:41:21 -0800226/*
227 * This returns the status bits of the device. The return value
228 * is never checked, and this is what the 8260 driver did, so we
229 * do the same. Presumably, this would be zero if there were no
230 * errors
231 */
Bin Meng9a1d6af2016-01-11 22:41:24 -0800232#ifndef CONFIG_DM_ETH
Bin Meng8ba50172016-01-11 22:41:21 -0800233static int tsec_send(struct eth_device *dev, void *packet, int length)
Bin Meng9a1d6af2016-01-11 22:41:24 -0800234#else
235static int tsec_send(struct udevice *dev, void *packet, int length)
236#endif
Bin Meng8ba50172016-01-11 22:41:21 -0800237{
238 struct tsec_private *priv = (struct tsec_private *)dev->priv;
239 struct tsec __iomem *regs = priv->regs;
Mario Sixd38de332018-01-15 11:08:21 +0100240 u16 status;
Bin Meng8ba50172016-01-11 22:41:21 -0800241 int result = 0;
242 int i;
243
244 /* Find an empty buffer descriptor */
245 for (i = 0;
246 in_be16(&priv->txbd[priv->tx_idx].status) & TXBD_READY;
247 i++) {
248 if (i >= TOUT_LOOP) {
249 debug("%s: tsec: tx buffers full\n", dev->name);
250 return result;
251 }
252 }
253
254 out_be32(&priv->txbd[priv->tx_idx].bufptr, (u32)packet);
255 out_be16(&priv->txbd[priv->tx_idx].length, length);
256 status = in_be16(&priv->txbd[priv->tx_idx].status);
257 out_be16(&priv->txbd[priv->tx_idx].status, status |
258 (TXBD_READY | TXBD_LAST | TXBD_CRC | TXBD_INTERRUPT));
259
260 /* Tell the DMA to go */
261 out_be32(&regs->tstat, TSTAT_CLEAR_THALT);
262
263 /* Wait for buffer to be transmitted */
264 for (i = 0;
265 in_be16(&priv->txbd[priv->tx_idx].status) & TXBD_READY;
266 i++) {
267 if (i >= TOUT_LOOP) {
268 debug("%s: tsec: tx error\n", dev->name);
269 return result;
270 }
271 }
272
273 priv->tx_idx = (priv->tx_idx + 1) % TX_BUF_CNT;
274 result = in_be16(&priv->txbd[priv->tx_idx].status) & TXBD_STATS;
275
276 return result;
277}
278
Bin Meng9a1d6af2016-01-11 22:41:24 -0800279#ifndef CONFIG_DM_ETH
Bin Meng8ba50172016-01-11 22:41:21 -0800280static int tsec_recv(struct eth_device *dev)
281{
282 struct tsec_private *priv = (struct tsec_private *)dev->priv;
283 struct tsec __iomem *regs = priv->regs;
284
285 while (!(in_be16(&priv->rxbd[priv->rx_idx].status) & RXBD_EMPTY)) {
286 int length = in_be16(&priv->rxbd[priv->rx_idx].length);
Mario Sixd38de332018-01-15 11:08:21 +0100287 u16 status = in_be16(&priv->rxbd[priv->rx_idx].status);
Bin Meng8ba50172016-01-11 22:41:21 -0800288 uchar *packet = net_rx_packets[priv->rx_idx];
289
290 /* Send the packet up if there were no errors */
291 if (!(status & RXBD_STATS))
292 net_process_received_packet(packet, length - 4);
293 else
294 printf("Got error %x\n", (status & RXBD_STATS));
295
296 out_be16(&priv->rxbd[priv->rx_idx].length, 0);
297
298 status = RXBD_EMPTY;
299 /* Set the wrap bit if this is the last element in the list */
300 if ((priv->rx_idx + 1) == PKTBUFSRX)
301 status |= RXBD_WRAP;
302 out_be16(&priv->rxbd[priv->rx_idx].status, status);
303
304 priv->rx_idx = (priv->rx_idx + 1) % PKTBUFSRX;
305 }
306
307 if (in_be32(&regs->ievent) & IEVENT_BSY) {
308 out_be32(&regs->ievent, IEVENT_BSY);
309 out_be32(&regs->rstat, RSTAT_CLEAR_RHALT);
310 }
311
312 return -1;
313}
Bin Meng9a1d6af2016-01-11 22:41:24 -0800314#else
315static int tsec_recv(struct udevice *dev, int flags, uchar **packetp)
316{
317 struct tsec_private *priv = (struct tsec_private *)dev->priv;
318 struct tsec __iomem *regs = priv->regs;
319 int ret = -1;
320
321 if (!(in_be16(&priv->rxbd[priv->rx_idx].status) & RXBD_EMPTY)) {
322 int length = in_be16(&priv->rxbd[priv->rx_idx].length);
Mario Sixd38de332018-01-15 11:08:21 +0100323 u16 status = in_be16(&priv->rxbd[priv->rx_idx].status);
324 u32 buf;
Bin Meng9a1d6af2016-01-11 22:41:24 -0800325
326 /* Send the packet up if there were no errors */
327 if (!(status & RXBD_STATS)) {
328 buf = in_be32(&priv->rxbd[priv->rx_idx].bufptr);
329 *packetp = (uchar *)buf;
330 ret = length - 4;
331 } else {
332 printf("Got error %x\n", (status & RXBD_STATS));
333 }
334 }
335
336 if (in_be32(&regs->ievent) & IEVENT_BSY) {
337 out_be32(&regs->ievent, IEVENT_BSY);
338 out_be32(&regs->rstat, RSTAT_CLEAR_RHALT);
339 }
340
341 return ret;
342}
343
344static int tsec_free_pkt(struct udevice *dev, uchar *packet, int length)
345{
346 struct tsec_private *priv = (struct tsec_private *)dev->priv;
Mario Sixd38de332018-01-15 11:08:21 +0100347 u16 status;
Bin Meng9a1d6af2016-01-11 22:41:24 -0800348
349 out_be16(&priv->rxbd[priv->rx_idx].length, 0);
350
351 status = RXBD_EMPTY;
352 /* Set the wrap bit if this is the last element in the list */
353 if ((priv->rx_idx + 1) == PKTBUFSRX)
354 status |= RXBD_WRAP;
355 out_be16(&priv->rxbd[priv->rx_idx].status, status);
356
357 priv->rx_idx = (priv->rx_idx + 1) % PKTBUFSRX;
358
359 return 0;
360}
361#endif
Bin Meng8ba50172016-01-11 22:41:21 -0800362
363/* Stop the interface */
Bin Meng9a1d6af2016-01-11 22:41:24 -0800364#ifndef CONFIG_DM_ETH
Bin Meng8ba50172016-01-11 22:41:21 -0800365static void tsec_halt(struct eth_device *dev)
Bin Meng9a1d6af2016-01-11 22:41:24 -0800366#else
367static void tsec_halt(struct udevice *dev)
368#endif
Bin Meng8ba50172016-01-11 22:41:21 -0800369{
370 struct tsec_private *priv = (struct tsec_private *)dev->priv;
371 struct tsec __iomem *regs = priv->regs;
372
373 clrbits_be32(&regs->dmactrl, DMACTRL_GRS | DMACTRL_GTS);
374 setbits_be32(&regs->dmactrl, DMACTRL_GRS | DMACTRL_GTS);
375
376 while ((in_be32(&regs->ievent) & (IEVENT_GRSC | IEVENT_GTSC))
377 != (IEVENT_GRSC | IEVENT_GTSC))
378 ;
379
380 clrbits_be32(&regs->maccfg1, MACCFG1_TX_EN | MACCFG1_RX_EN);
381
382 /* Shut down the PHY, as needed */
383 phy_shutdown(priv->phydev);
384}
385
chenhui zhaoaada81d2011-10-03 08:38:50 -0500386#ifdef CONFIG_SYS_FSL_ERRATUM_NMG_ETSEC129
387/*
388 * When MACCFG1[Rx_EN] is enabled during system boot as part
389 * of the eTSEC port initialization sequence,
390 * the eTSEC Rx logic may not be properly initialized.
391 */
Bin Meng56a27a12016-01-11 22:41:22 -0800392void redundant_init(struct tsec_private *priv)
chenhui zhaoaada81d2011-10-03 08:38:50 -0500393{
Claudiu Manoilaec84bf2013-09-30 12:44:42 +0300394 struct tsec __iomem *regs = priv->regs;
chenhui zhaoaada81d2011-10-03 08:38:50 -0500395 uint t, count = 0;
396 int fail = 1;
397 static const u8 pkt[] = {
398 0x00, 0x1e, 0x4f, 0x12, 0xcb, 0x2c, 0x00, 0x25,
399 0x64, 0xbb, 0xd1, 0xab, 0x08, 0x00, 0x45, 0x00,
400 0x00, 0x5c, 0xdd, 0x22, 0x00, 0x00, 0x80, 0x01,
401 0x1f, 0x71, 0x0a, 0xc1, 0x14, 0x22, 0x0a, 0xc1,
402 0x14, 0x6a, 0x08, 0x00, 0xef, 0x7e, 0x02, 0x00,
403 0x94, 0x05, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66,
404 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e,
405 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76,
406 0x77, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,
407 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,
408 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,
409 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68,
410 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70,
411 0x71, 0x72};
412
413 /* Enable promiscuous mode */
414 setbits_be32(&regs->rctrl, 0x8);
415 /* Enable loopback mode */
416 setbits_be32(&regs->maccfg1, MACCFG1_LOOPBACK);
417 /* Enable transmit and receive */
418 setbits_be32(&regs->maccfg1, MACCFG1_RX_EN | MACCFG1_TX_EN);
419
420 /* Tell the DMA it is clear to go */
421 setbits_be32(&regs->dmactrl, DMACTRL_INIT_SETTINGS);
422 out_be32(&regs->tstat, TSTAT_CLEAR_THALT);
423 out_be32(&regs->rstat, RSTAT_CLEAR_RHALT);
424 clrbits_be32(&regs->dmactrl, DMACTRL_GRS | DMACTRL_GTS);
425
426 do {
Mario Sixd38de332018-01-15 11:08:21 +0100427 u16 status;
428
Bin Meng56a27a12016-01-11 22:41:22 -0800429 tsec_send(priv->dev, (void *)pkt, sizeof(pkt));
chenhui zhaoaada81d2011-10-03 08:38:50 -0500430
431 /* Wait for buffer to be received */
Bin Menge677da92016-01-11 22:41:20 -0800432 for (t = 0;
433 in_be16(&priv->rxbd[priv->rx_idx].status) & RXBD_EMPTY;
Bin Meng362b1232016-01-11 22:41:19 -0800434 t++) {
chenhui zhaoaada81d2011-10-03 08:38:50 -0500435 if (t >= 10 * TOUT_LOOP) {
Bin Meng56a27a12016-01-11 22:41:22 -0800436 printf("%s: tsec: rx error\n", priv->dev->name);
chenhui zhaoaada81d2011-10-03 08:38:50 -0500437 break;
438 }
439 }
440
Bin Meng362b1232016-01-11 22:41:19 -0800441 if (!memcmp(pkt, net_rx_packets[priv->rx_idx], sizeof(pkt)))
chenhui zhaoaada81d2011-10-03 08:38:50 -0500442 fail = 0;
443
Bin Menge677da92016-01-11 22:41:20 -0800444 out_be16(&priv->rxbd[priv->rx_idx].length, 0);
Claudiu Manoil9c9141f2013-10-04 19:13:53 +0300445 status = RXBD_EMPTY;
Bin Meng362b1232016-01-11 22:41:19 -0800446 if ((priv->rx_idx + 1) == PKTBUFSRX)
Claudiu Manoil9c9141f2013-10-04 19:13:53 +0300447 status |= RXBD_WRAP;
Bin Menge677da92016-01-11 22:41:20 -0800448 out_be16(&priv->rxbd[priv->rx_idx].status, status);
Bin Meng362b1232016-01-11 22:41:19 -0800449 priv->rx_idx = (priv->rx_idx + 1) % PKTBUFSRX;
chenhui zhaoaada81d2011-10-03 08:38:50 -0500450
451 if (in_be32(&regs->ievent) & IEVENT_BSY) {
452 out_be32(&regs->ievent, IEVENT_BSY);
453 out_be32(&regs->rstat, RSTAT_CLEAR_RHALT);
454 }
455 if (fail) {
456 printf("loopback recv packet error!\n");
457 clrbits_be32(&regs->maccfg1, MACCFG1_RX_EN);
458 udelay(1000);
459 setbits_be32(&regs->maccfg1, MACCFG1_RX_EN);
460 }
461 } while ((count++ < 4) && (fail == 1));
462
463 if (fail)
464 panic("eTSEC init fail!\n");
465 /* Disable promiscuous mode */
466 clrbits_be32(&regs->rctrl, 0x8);
467 /* Disable loopback mode */
468 clrbits_be32(&regs->maccfg1, MACCFG1_LOOPBACK);
469}
470#endif
471
Bin Meng9872b732016-01-11 22:41:18 -0800472/*
473 * Set up the buffers and their descriptors, and bring up the
Mingkai Hu90751912011-01-27 12:52:46 +0800474 * interface
475 */
Bin Meng56a27a12016-01-11 22:41:22 -0800476static void startup_tsec(struct tsec_private *priv)
Mingkai Hu90751912011-01-27 12:52:46 +0800477{
Claudiu Manoilaec84bf2013-09-30 12:44:42 +0300478 struct tsec __iomem *regs = priv->regs;
Mario Sixd38de332018-01-15 11:08:21 +0100479 u16 status;
Claudiu Manoil9c9141f2013-10-04 19:13:53 +0300480 int i;
Mingkai Hu90751912011-01-27 12:52:46 +0800481
Andy Fleming063c1262011-04-08 02:10:54 -0500482 /* reset the indices to zero */
Bin Meng362b1232016-01-11 22:41:19 -0800483 priv->rx_idx = 0;
484 priv->tx_idx = 0;
chenhui zhaoaada81d2011-10-03 08:38:50 -0500485#ifdef CONFIG_SYS_FSL_ERRATUM_NMG_ETSEC129
486 uint svr;
487#endif
Andy Fleming063c1262011-04-08 02:10:54 -0500488
Mingkai Hu90751912011-01-27 12:52:46 +0800489 /* Point to the buffer descriptors */
Bin Menge677da92016-01-11 22:41:20 -0800490 out_be32(&regs->tbase, (u32)&priv->txbd[0]);
491 out_be32(&regs->rbase, (u32)&priv->rxbd[0]);
Mingkai Hu90751912011-01-27 12:52:46 +0800492
493 /* Initialize the Rx Buffer descriptors */
494 for (i = 0; i < PKTBUFSRX; i++) {
Bin Menge677da92016-01-11 22:41:20 -0800495 out_be16(&priv->rxbd[i].status, RXBD_EMPTY);
496 out_be16(&priv->rxbd[i].length, 0);
497 out_be32(&priv->rxbd[i].bufptr, (u32)net_rx_packets[i]);
Mingkai Hu90751912011-01-27 12:52:46 +0800498 }
Bin Menge677da92016-01-11 22:41:20 -0800499 status = in_be16(&priv->rxbd[PKTBUFSRX - 1].status);
500 out_be16(&priv->rxbd[PKTBUFSRX - 1].status, status | RXBD_WRAP);
Mingkai Hu90751912011-01-27 12:52:46 +0800501
502 /* Initialize the TX Buffer Descriptors */
503 for (i = 0; i < TX_BUF_CNT; i++) {
Bin Menge677da92016-01-11 22:41:20 -0800504 out_be16(&priv->txbd[i].status, 0);
505 out_be16(&priv->txbd[i].length, 0);
506 out_be32(&priv->txbd[i].bufptr, 0);
Mingkai Hu90751912011-01-27 12:52:46 +0800507 }
Bin Menge677da92016-01-11 22:41:20 -0800508 status = in_be16(&priv->txbd[TX_BUF_CNT - 1].status);
509 out_be16(&priv->txbd[TX_BUF_CNT - 1].status, status | TXBD_WRAP);
Mingkai Hu90751912011-01-27 12:52:46 +0800510
chenhui zhaoaada81d2011-10-03 08:38:50 -0500511#ifdef CONFIG_SYS_FSL_ERRATUM_NMG_ETSEC129
512 svr = get_svr();
513 if ((SVR_MAJ(svr) == 1) || IS_SVR_REV(svr, 2, 0))
Bin Meng56a27a12016-01-11 22:41:22 -0800514 redundant_init(priv);
chenhui zhaoaada81d2011-10-03 08:38:50 -0500515#endif
Mingkai Hu90751912011-01-27 12:52:46 +0800516 /* Enable Transmit and Receive */
517 setbits_be32(&regs->maccfg1, MACCFG1_RX_EN | MACCFG1_TX_EN);
518
519 /* Tell the DMA it is clear to go */
520 setbits_be32(&regs->dmactrl, DMACTRL_INIT_SETTINGS);
521 out_be32(&regs->tstat, TSTAT_CLEAR_THALT);
522 out_be32(&regs->rstat, RSTAT_CLEAR_RHALT);
523 clrbits_be32(&regs->dmactrl, DMACTRL_GRS | DMACTRL_GTS);
524}
525
Bin Meng9872b732016-01-11 22:41:18 -0800526/*
Bin Meng9872b732016-01-11 22:41:18 -0800527 * Initializes data structures and registers for the controller,
528 * and brings the interface up. Returns the link status, meaning
Mingkai Hu90751912011-01-27 12:52:46 +0800529 * that it returns success if the link is up, failure otherwise.
Bin Meng9872b732016-01-11 22:41:18 -0800530 * This allows U-Boot to find the first active controller.
Mingkai Hu90751912011-01-27 12:52:46 +0800531 */
Bin Meng9a1d6af2016-01-11 22:41:24 -0800532#ifndef CONFIG_DM_ETH
Mario Sixd38de332018-01-15 11:08:21 +0100533static int tsec_init(struct eth_device *dev, bd_t *bd)
Bin Meng9a1d6af2016-01-11 22:41:24 -0800534#else
535static int tsec_init(struct udevice *dev)
536#endif
Mingkai Hu90751912011-01-27 12:52:46 +0800537{
Mingkai Hu90751912011-01-27 12:52:46 +0800538 struct tsec_private *priv = (struct tsec_private *)dev->priv;
Bin Meng9a1d6af2016-01-11 22:41:24 -0800539#ifdef CONFIG_DM_ETH
540 struct eth_pdata *pdata = dev_get_platdata(dev);
541#endif
Claudiu Manoilaec84bf2013-09-30 12:44:42 +0300542 struct tsec __iomem *regs = priv->regs;
Claudiu Manoilb1690bc2013-09-30 12:44:47 +0300543 u32 tempval;
Timur Tabi11af8d62012-07-09 08:52:43 +0000544 int ret;
Mingkai Hu90751912011-01-27 12:52:46 +0800545
546 /* Make sure the controller is stopped */
547 tsec_halt(dev);
548
549 /* Init MACCFG2. Defaults to GMII */
550 out_be32(&regs->maccfg2, MACCFG2_INIT_SETTINGS);
551
552 /* Init ECNTRL */
553 out_be32(&regs->ecntrl, ECNTRL_INIT_SETTINGS);
554
Bin Meng9872b732016-01-11 22:41:18 -0800555 /*
556 * Copy the station address into the address registers.
Claudiu Manoilb1690bc2013-09-30 12:44:47 +0300557 * For a station address of 0x12345678ABCD in transmission
558 * order (BE), MACnADDR1 is set to 0xCDAB7856 and
559 * MACnADDR2 is set to 0x34120000.
560 */
Bin Meng9a1d6af2016-01-11 22:41:24 -0800561#ifndef CONFIG_DM_ETH
Claudiu Manoilb1690bc2013-09-30 12:44:47 +0300562 tempval = (dev->enetaddr[5] << 24) | (dev->enetaddr[4] << 16) |
563 (dev->enetaddr[3] << 8) | dev->enetaddr[2];
Bin Meng9a1d6af2016-01-11 22:41:24 -0800564#else
565 tempval = (pdata->enetaddr[5] << 24) | (pdata->enetaddr[4] << 16) |
566 (pdata->enetaddr[3] << 8) | pdata->enetaddr[2];
567#endif
Mingkai Hu90751912011-01-27 12:52:46 +0800568
569 out_be32(&regs->macstnaddr1, tempval);
570
Bin Meng9a1d6af2016-01-11 22:41:24 -0800571#ifndef CONFIG_DM_ETH
Claudiu Manoilb1690bc2013-09-30 12:44:47 +0300572 tempval = (dev->enetaddr[1] << 24) | (dev->enetaddr[0] << 16);
Bin Meng9a1d6af2016-01-11 22:41:24 -0800573#else
574 tempval = (pdata->enetaddr[1] << 24) | (pdata->enetaddr[0] << 16);
575#endif
Mingkai Hu90751912011-01-27 12:52:46 +0800576
577 out_be32(&regs->macstnaddr2, tempval);
578
Mingkai Hu90751912011-01-27 12:52:46 +0800579 /* Clear out (for the most part) the other registers */
580 init_registers(regs);
581
582 /* Ready the device for tx/rx */
Bin Meng56a27a12016-01-11 22:41:22 -0800583 startup_tsec(priv);
Mingkai Hu90751912011-01-27 12:52:46 +0800584
Andy Fleming063c1262011-04-08 02:10:54 -0500585 /* Start up the PHY */
Timur Tabi11af8d62012-07-09 08:52:43 +0000586 ret = phy_startup(priv->phydev);
587 if (ret) {
588 printf("Could not initialize PHY %s\n",
589 priv->phydev->dev->name);
590 return ret;
591 }
Andy Fleming063c1262011-04-08 02:10:54 -0500592
593 adjust_link(priv, priv->phydev);
594
Mingkai Hu90751912011-01-27 12:52:46 +0800595 /* If there's no link, fail */
Andy Fleming063c1262011-04-08 02:10:54 -0500596 return priv->phydev->link ? 0 : -1;
Mingkai Hu90751912011-01-27 12:52:46 +0800597}
598
Andy Fleming063c1262011-04-08 02:10:54 -0500599static phy_interface_t tsec_get_interface(struct tsec_private *priv)
600{
Claudiu Manoilaec84bf2013-09-30 12:44:42 +0300601 struct tsec __iomem *regs = priv->regs;
Andy Fleming063c1262011-04-08 02:10:54 -0500602 u32 ecntrl;
603
604 ecntrl = in_be32(&regs->ecntrl);
605
606 if (ecntrl & ECNTRL_SGMII_MODE)
607 return PHY_INTERFACE_MODE_SGMII;
608
609 if (ecntrl & ECNTRL_TBI_MODE) {
610 if (ecntrl & ECNTRL_REDUCED_MODE)
611 return PHY_INTERFACE_MODE_RTBI;
612 else
613 return PHY_INTERFACE_MODE_TBI;
614 }
615
616 if (ecntrl & ECNTRL_REDUCED_MODE) {
Mario Sixd38de332018-01-15 11:08:21 +0100617 phy_interface_t interface;
618
Andy Fleming063c1262011-04-08 02:10:54 -0500619 if (ecntrl & ECNTRL_REDUCED_MII_MODE)
620 return PHY_INTERFACE_MODE_RMII;
Andy Fleming063c1262011-04-08 02:10:54 -0500621
Mario Sixd38de332018-01-15 11:08:21 +0100622 interface = priv->interface;
Andy Fleming063c1262011-04-08 02:10:54 -0500623
Mario Sixd38de332018-01-15 11:08:21 +0100624 /*
625 * This isn't autodetected, so it must
626 * be set by the platform code.
627 */
628 if (interface == PHY_INTERFACE_MODE_RGMII_ID ||
629 interface == PHY_INTERFACE_MODE_RGMII_TXID ||
630 interface == PHY_INTERFACE_MODE_RGMII_RXID)
631 return interface;
632
633 return PHY_INTERFACE_MODE_RGMII;
Andy Fleming063c1262011-04-08 02:10:54 -0500634 }
635
636 if (priv->flags & TSEC_GIGABIT)
637 return PHY_INTERFACE_MODE_GMII;
638
639 return PHY_INTERFACE_MODE_MII;
640}
641
Bin Meng9872b732016-01-11 22:41:18 -0800642/*
643 * Discover which PHY is attached to the device, and configure it
Mingkai Hu90751912011-01-27 12:52:46 +0800644 * properly. If the PHY is not recognized, then return 0
645 * (failure). Otherwise, return 1
646 */
Bin Meng56a27a12016-01-11 22:41:22 -0800647static int init_phy(struct tsec_private *priv)
Mingkai Hu90751912011-01-27 12:52:46 +0800648{
Andy Fleming063c1262011-04-08 02:10:54 -0500649 struct phy_device *phydev;
Claudiu Manoilaec84bf2013-09-30 12:44:42 +0300650 struct tsec __iomem *regs = priv->regs;
Andy Fleming063c1262011-04-08 02:10:54 -0500651 u32 supported = (SUPPORTED_10baseT_Half |
652 SUPPORTED_10baseT_Full |
653 SUPPORTED_100baseT_Half |
654 SUPPORTED_100baseT_Full);
655
656 if (priv->flags & TSEC_GIGABIT)
657 supported |= SUPPORTED_1000baseT_Full;
Mingkai Hu90751912011-01-27 12:52:46 +0800658
659 /* Assign a Physical address to the TBI */
Bin Menga1c76c12016-01-11 22:41:25 -0800660 out_be32(&regs->tbipa, priv->tbiaddr);
Mingkai Hu90751912011-01-27 12:52:46 +0800661
Andy Fleming063c1262011-04-08 02:10:54 -0500662 priv->interface = tsec_get_interface(priv);
Mingkai Hu90751912011-01-27 12:52:46 +0800663
Andy Fleming063c1262011-04-08 02:10:54 -0500664 if (priv->interface == PHY_INTERFACE_MODE_SGMII)
Mingkai Hu90751912011-01-27 12:52:46 +0800665 tsec_configure_serdes(priv);
666
Bin Meng56a27a12016-01-11 22:41:22 -0800667 phydev = phy_connect(priv->bus, priv->phyaddr, priv->dev,
668 priv->interface);
Claudiu Manoil7f233c02013-12-10 15:21:04 +0200669 if (!phydev)
670 return 0;
Mingkai Hu90751912011-01-27 12:52:46 +0800671
Andy Fleming063c1262011-04-08 02:10:54 -0500672 phydev->supported &= supported;
673 phydev->advertising = phydev->supported;
674
675 priv->phydev = phydev;
676
677 phy_config(phydev);
Mingkai Hu90751912011-01-27 12:52:46 +0800678
679 return 1;
680}
681
Bin Meng9a1d6af2016-01-11 22:41:24 -0800682#ifndef CONFIG_DM_ETH
Bin Meng9872b732016-01-11 22:41:18 -0800683/*
684 * Initialize device structure. Returns success if PHY
Mingkai Hu90751912011-01-27 12:52:46 +0800685 * initialization succeeded (i.e. if it recognizes the PHY)
686 */
687static int tsec_initialize(bd_t *bis, struct tsec_info_struct *tsec_info)
688{
689 struct eth_device *dev;
690 int i;
691 struct tsec_private *priv;
692
Mario Sixd38de332018-01-15 11:08:21 +0100693 dev = (struct eth_device *)malloc(sizeof(*dev));
Mingkai Hu90751912011-01-27 12:52:46 +0800694
Mario Sixd38de332018-01-15 11:08:21 +0100695 if (!dev)
Mingkai Hu90751912011-01-27 12:52:46 +0800696 return 0;
697
Mario Sixd38de332018-01-15 11:08:21 +0100698 memset(dev, 0, sizeof(*dev));
Mingkai Hu90751912011-01-27 12:52:46 +0800699
700 priv = (struct tsec_private *)malloc(sizeof(*priv));
701
Mario Six5775f002018-01-15 11:08:22 +0100702 if (!priv) {
703 free(dev);
Mingkai Hu90751912011-01-27 12:52:46 +0800704 return 0;
Mario Six5775f002018-01-15 11:08:22 +0100705 }
Mingkai Hu90751912011-01-27 12:52:46 +0800706
Mingkai Hu90751912011-01-27 12:52:46 +0800707 priv->regs = tsec_info->regs;
Mingkai Hu90751912011-01-27 12:52:46 +0800708 priv->phyregs_sgmii = tsec_info->miiregs_sgmii;
709
710 priv->phyaddr = tsec_info->phyaddr;
Bin Menga1c76c12016-01-11 22:41:25 -0800711 priv->tbiaddr = CONFIG_SYS_TBIPA_VALUE;
Mingkai Hu90751912011-01-27 12:52:46 +0800712 priv->flags = tsec_info->flags;
713
Ben Whitten192bc692015-12-30 13:05:58 +0000714 strcpy(dev->name, tsec_info->devname);
Andy Fleming063c1262011-04-08 02:10:54 -0500715 priv->interface = tsec_info->interface;
716 priv->bus = miiphy_get_dev_by_name(tsec_info->mii_devname);
Bin Meng56a27a12016-01-11 22:41:22 -0800717 priv->dev = dev;
Mingkai Hu90751912011-01-27 12:52:46 +0800718 dev->iobase = 0;
719 dev->priv = priv;
720 dev->init = tsec_init;
721 dev->halt = tsec_halt;
722 dev->send = tsec_send;
723 dev->recv = tsec_recv;
724#ifdef CONFIG_MCAST_TFTP
725 dev->mcast = tsec_mcast_addr;
726#endif
727
Bin Meng9872b732016-01-11 22:41:18 -0800728 /* Tell U-Boot to get the addr from the env */
Mingkai Hu90751912011-01-27 12:52:46 +0800729 for (i = 0; i < 6; i++)
730 dev->enetaddr[i] = 0;
731
732 eth_register(dev);
733
734 /* Reset the MAC */
735 setbits_be32(&priv->regs->maccfg1, MACCFG1_SOFT_RESET);
736 udelay(2); /* Soft Reset must be asserted for 3 TX clocks */
737 clrbits_be32(&priv->regs->maccfg1, MACCFG1_SOFT_RESET);
738
Mingkai Hu90751912011-01-27 12:52:46 +0800739 /* Try to initialize PHY here, and return */
Bin Meng56a27a12016-01-11 22:41:22 -0800740 return init_phy(priv);
Mingkai Hu90751912011-01-27 12:52:46 +0800741}
742
743/*
744 * Initialize all the TSEC devices
745 *
746 * Returns the number of TSEC devices that were initialized
747 */
748int tsec_eth_init(bd_t *bis, struct tsec_info_struct *tsecs, int num)
749{
750 int i;
Mario Sixd38de332018-01-15 11:08:21 +0100751 int count = 0;
Mingkai Hu90751912011-01-27 12:52:46 +0800752
753 for (i = 0; i < num; i++) {
Mario Sixd38de332018-01-15 11:08:21 +0100754 int ret = tsec_initialize(bis, &tsecs[i]);
755
Mingkai Hu90751912011-01-27 12:52:46 +0800756 if (ret > 0)
757 count += ret;
758 }
759
760 return count;
761}
762
763int tsec_standard_init(bd_t *bis)
764{
Andy Fleming063c1262011-04-08 02:10:54 -0500765 struct fsl_pq_mdio_info info;
766
Claudiu Manoilaec84bf2013-09-30 12:44:42 +0300767 info.regs = TSEC_GET_MDIO_REGS_BASE(1);
Andy Fleming063c1262011-04-08 02:10:54 -0500768 info.name = DEFAULT_MII_NAME;
769
770 fsl_pq_mdio_init(bis, &info);
771
Mingkai Hu90751912011-01-27 12:52:46 +0800772 return tsec_eth_init(bis, tsec_info, ARRAY_SIZE(tsec_info));
773}
Bin Meng9a1d6af2016-01-11 22:41:24 -0800774#else /* CONFIG_DM_ETH */
775int tsec_probe(struct udevice *dev)
776{
777 struct tsec_private *priv = dev_get_priv(dev);
778 struct eth_pdata *pdata = dev_get_platdata(dev);
779 struct fsl_pq_mdio_info mdio_info;
Mario Six1313aaf2018-01-15 11:08:23 +0100780 struct ofnode_phandle_args phandle_args;
781 ofnode parent;
Bin Meng9a1d6af2016-01-11 22:41:24 -0800782 const char *phy_mode;
783 int ret;
784
Mario Six1313aaf2018-01-15 11:08:23 +0100785 pdata->iobase = (phys_addr_t)dev_read_addr(dev);
Bin Meng9a1d6af2016-01-11 22:41:24 -0800786 priv->regs = (struct tsec *)pdata->iobase;
787
Mario Six1313aaf2018-01-15 11:08:23 +0100788 if (dev_read_phandle_with_args(dev, "phy-handle", NULL, 0, 0,
789 &phandle_args)) {
Bin Meng9a1d6af2016-01-11 22:41:24 -0800790 debug("phy-handle does not exist under tsec %s\n", dev->name);
791 return -ENOENT;
Mario Six1313aaf2018-01-15 11:08:23 +0100792 } else {
793 int reg = ofnode_read_u32_default(phandle_args.node, "reg", 0);
794
795 priv->phyaddr = reg;
Bin Meng9a1d6af2016-01-11 22:41:24 -0800796 }
797
Mario Six1313aaf2018-01-15 11:08:23 +0100798 parent = ofnode_get_parent(phandle_args.node);
799 if (ofnode_valid(parent)) {
800 int reg = ofnode_read_u32_default(parent, "reg", 0);
Bin Meng9a1d6af2016-01-11 22:41:24 -0800801 priv->phyregs_sgmii = (struct tsec_mii_mng *)(reg + 0x520);
802 } else {
803 debug("No parent node for PHY?\n");
804 return -ENOENT;
805 }
806
Mario Six1313aaf2018-01-15 11:08:23 +0100807 if (dev_read_phandle_with_args(dev, "tbi-handle", NULL, 0, 0,
808 &phandle_args)) {
Bin Menga1c76c12016-01-11 22:41:25 -0800809 priv->tbiaddr = CONFIG_SYS_TBIPA_VALUE;
Mario Six1313aaf2018-01-15 11:08:23 +0100810 } else {
811 int reg = ofnode_read_u32_default(phandle_args.node, "reg",
812 CONFIG_SYS_TBIPA_VALUE);
813 priv->tbiaddr = reg;
Bin Menga1c76c12016-01-11 22:41:25 -0800814 }
815
Mario Six1313aaf2018-01-15 11:08:23 +0100816 phy_mode = dev_read_prop(dev, "phy-connection-type", NULL);
Bin Meng9a1d6af2016-01-11 22:41:24 -0800817 if (phy_mode)
818 pdata->phy_interface = phy_get_interface_by_name(phy_mode);
819 if (pdata->phy_interface == -1) {
820 debug("Invalid PHY interface '%s'\n", phy_mode);
821 return -EINVAL;
822 }
823 priv->interface = pdata->phy_interface;
824
825 /* Initialize flags */
826 priv->flags = TSEC_GIGABIT;
827 if (priv->interface == PHY_INTERFACE_MODE_SGMII)
828 priv->flags |= TSEC_SGMII;
829
830 mdio_info.regs = priv->phyregs_sgmii;
831 mdio_info.name = (char *)dev->name;
832 ret = fsl_pq_mdio_init(NULL, &mdio_info);
833 if (ret)
834 return ret;
835
836 /* Reset the MAC */
837 setbits_be32(&priv->regs->maccfg1, MACCFG1_SOFT_RESET);
838 udelay(2); /* Soft Reset must be asserted for 3 TX clocks */
839 clrbits_be32(&priv->regs->maccfg1, MACCFG1_SOFT_RESET);
840
841 priv->dev = dev;
842 priv->bus = miiphy_get_dev_by_name(dev->name);
843
844 /* Try to initialize PHY here, and return */
845 return !init_phy(priv);
846}
847
848int tsec_remove(struct udevice *dev)
849{
850 struct tsec_private *priv = dev->priv;
851
852 free(priv->phydev);
853 mdio_unregister(priv->bus);
854 mdio_free(priv->bus);
855
856 return 0;
857}
858
859static const struct eth_ops tsec_ops = {
860 .start = tsec_init,
861 .send = tsec_send,
862 .recv = tsec_recv,
863 .free_pkt = tsec_free_pkt,
864 .stop = tsec_halt,
865#ifdef CONFIG_MCAST_TFTP
866 .mcast = tsec_mcast_addr,
867#endif
868};
869
870static const struct udevice_id tsec_ids[] = {
871 { .compatible = "fsl,tsec" },
872 { }
873};
874
875U_BOOT_DRIVER(eth_tsec) = {
876 .name = "tsec",
877 .id = UCLASS_ETH,
878 .of_match = tsec_ids,
879 .probe = tsec_probe,
880 .remove = tsec_remove,
881 .ops = &tsec_ops,
882 .priv_auto_alloc_size = sizeof(struct tsec_private),
883 .platdata_auto_alloc_size = sizeof(struct eth_pdata),
884 .flags = DM_FLAG_ALLOC_PRIV_DMA,
885};
886#endif /* CONFIG_DM_ETH */