blob: be0f38288f3dd1806c86dc6f2da87cf676df3dd0 [file] [log] [blame]
wdenk9c53f402003-10-15 23:53:47 +00001/*
wdenka445ddf2004-06-09 00:34:46 +00002 * Freescale Three Speed Ethernet Controller driver
wdenk9c53f402003-10-15 23:53:47 +00003 *
Claudiu Manoilcd0c4122013-09-30 12:44:42 +03004 * Copyright 2004-2011, 2013 Freescale Semiconductor, Inc.
wdenk9c53f402003-10-15 23:53:47 +00005 * (C) Copyright 2003, Motorola, Inc.
wdenk9c53f402003-10-15 23:53:47 +00006 * author Andy Fleming
7 *
Bin Meng79cd33a2016-01-11 22:41:18 -08008 * SPDX-License-Identifier: GPL-2.0+
wdenk9c53f402003-10-15 23:53:47 +00009 */
10
11#include <config.h>
wdenk9c53f402003-10-15 23:53:47 +000012#include <common.h>
Bin Meng1048f612016-01-11 22:41:24 -080013#include <dm.h>
wdenk9c53f402003-10-15 23:53:47 +000014#include <malloc.h>
15#include <net.h>
16#include <command.h>
Andy Flemingc067fc12008-08-31 16:33:25 -050017#include <tsec.h>
Andy Fleming422effd2011-04-08 02:10:54 -050018#include <fsl_mdio.h>
Kim Phillipsae4dd972009-08-24 14:32:26 -050019#include <asm/errno.h>
chenhui zhaoc8caa8a2011-10-03 08:38:50 -050020#include <asm/processor.h>
Alison Wang32cc5912014-09-05 13:52:38 +080021#include <asm/io.h>
wdenk9c53f402003-10-15 23:53:47 +000022
Wolfgang Denk6405a152006-03-31 18:32:53 +020023DECLARE_GLOBAL_DATA_PTR;
24
Bin Meng1048f612016-01-11 22:41:24 -080025#ifndef CONFIG_DM_ETH
Andy Flemingfecff2b2008-08-31 16:33:26 -050026/* Default initializations for TSEC controllers. */
27
28static 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 Manoilcd0c4122013-09-30 12:44:42 +030037 .regs = TSEC_GET_REGS(2, 0x2000),
Andy Flemingfecff2b2008-08-31 16:33:26 -050038 .devname = CONFIG_MPC85XX_FEC_NAME,
39 .phyaddr = FEC_PHY_ADDR,
Andy Fleming422effd2011-04-08 02:10:54 -050040 .flags = FEC_FLAGS,
41 .mii_devname = DEFAULT_MII_NAME
Andy Flemingfecff2b2008-08-31 16:33:26 -050042 }, /* 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 Meng1048f612016-01-11 22:41:24 -080051#endif /* CONFIG_DM_ETH */
Andy Flemingfecff2b2008-08-31 16:33:26 -050052
Andy Flemingac65e072008-08-31 16:33:27 -050053#define TBIANA_SETTINGS ( \
54 TBIANA_ASYMMETRIC_PAUSE \
55 | TBIANA_SYMMETRIC_PAUSE \
56 | TBIANA_FULL_DUPLEX \
57 )
58
Felix Radensky27f98e02010-06-28 01:57:39 +030059/* By default force the TBI PHY into 1000Mbps full duplex when in SGMII mode */
60#ifndef CONFIG_TSEC_TBICR_SETTINGS
Kumar Galac1457f92010-12-01 22:55:54 -060061#define CONFIG_TSEC_TBICR_SETTINGS ( \
Andy Flemingac65e072008-08-31 16:33:27 -050062 TBICR_PHY_RESET \
Kumar Galac1457f92010-12-01 22:55:54 -060063 | TBICR_ANEG_ENABLE \
Andy Flemingac65e072008-08-31 16:33:27 -050064 | TBICR_FULL_DUPLEX \
65 | TBICR_SPEED1_SET \
66 )
Felix Radensky27f98e02010-06-28 01:57:39 +030067#endif /* CONFIG_TSEC_TBICR_SETTINGS */
Peter Tyser583c1f42009-11-03 17:52:07 -060068
Andy Flemingac65e072008-08-31 16:33:27 -050069/* Configure the TBI for SGMII operation */
70static void tsec_configure_serdes(struct tsec_private *priv)
71{
Bin Meng79cd33a2016-01-11 22:41:18 -080072 /*
73 * Access TBI PHY registers at given TSEC register offset as opposed
74 * to the register offset used for external PHY accesses
75 */
Andy Fleming422effd2011-04-08 02:10:54 -050076 tsec_local_mdio_write(priv->phyregs_sgmii, in_be32(&priv->regs->tbipa),
77 0, TBI_ANA, TBIANA_SETTINGS);
78 tsec_local_mdio_write(priv->phyregs_sgmii, in_be32(&priv->regs->tbipa),
79 0, TBI_TBICON, TBICON_CLK_SELECT);
80 tsec_local_mdio_write(priv->phyregs_sgmii, in_be32(&priv->regs->tbipa),
81 0, TBI_CR, CONFIG_TSEC_TBICR_SETTINGS);
David Updegraff0451b012007-04-20 14:34:48 -050082}
83
Mingkai Hue0653bf2011-01-27 12:52:46 +080084#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 Meng79cd33a2016-01-11 22:41:18 -080090/*
91 * The algorithm works like so:
Mingkai Hue0653bf2011-01-27 12:52:46 +080092 * 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 Manoil461511b2013-09-30 12:44:40 +030097 * 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 Hue0653bf2011-01-27 12:52:46 +080099 * hash index which gaddr register to use, and the 5 other bits
100 * indicate which bit (assuming an IBM numbering scheme, which
Claudiu Manoil461511b2013-09-30 12:44:40 +0300101 * for PowerPC (tm) is usually the case) in the register holds
Bin Meng79cd33a2016-01-11 22:41:18 -0800102 * the entry.
103 */
Bin Meng1048f612016-01-11 22:41:24 -0800104#ifndef CONFIG_DM_ETH
Bin Meng79cd33a2016-01-11 22:41:18 -0800105static int tsec_mcast_addr(struct eth_device *dev, const u8 *mcast_mac, u8 set)
Bin Meng1048f612016-01-11 22:41:24 -0800106#else
107static int tsec_mcast_addr(struct udevice *dev, const u8 *mcast_mac, int set)
108#endif
Mingkai Hue0653bf2011-01-27 12:52:46 +0800109{
Claudiu Manoil766c8942013-09-30 12:44:41 +0300110 struct tsec_private *priv = (struct tsec_private *)dev->priv;
Claudiu Manoil461511b2013-09-30 12:44:40 +0300111 struct tsec __iomem *regs = priv->regs;
112 u32 result, value;
113 u8 whichbit, whichreg;
Mingkai Hue0653bf2011-01-27 12:52:46 +0800114
Claudiu Manoil461511b2013-09-30 12:44:40 +0300115 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 Hue0653bf2011-01-27 12:52:46 +0800118
Claudiu Manoil461511b2013-09-30 12:44:40 +0300119 value = 1 << (31-whichbit);
120
121 if (set)
122 setbits_be32(&regs->hash.gaddr0 + whichreg, value);
123 else
124 clrbits_be32(&regs->hash.gaddr0 + whichreg, value);
Mingkai Hue0653bf2011-01-27 12:52:46 +0800125
Mingkai Hue0653bf2011-01-27 12:52:46 +0800126 return 0;
127}
128#endif /* Multicast TFTP ? */
129
Bin Meng79cd33a2016-01-11 22:41:18 -0800130/*
131 * Initialized required registers to appropriate values, zeroing
Mingkai Hue0653bf2011-01-27 12:52:46 +0800132 * those we don't care about (unless zero is bad, in which case,
133 * choose a more appropriate value)
134 */
Claudiu Manoilcd0c4122013-09-30 12:44:42 +0300135static void init_registers(struct tsec __iomem *regs)
Mingkai Hue0653bf2011-01-27 12:52:46 +0800136{
137 /* Clear IEVENT */
138 out_be32(&regs->ievent, IEVENT_INIT_CLEAR);
139
140 out_be32(&regs->imask, IMASK_INIT_CLEAR);
141
142 out_be32(&regs->hash.iaddr0, 0);
143 out_be32(&regs->hash.iaddr1, 0);
144 out_be32(&regs->hash.iaddr2, 0);
145 out_be32(&regs->hash.iaddr3, 0);
146 out_be32(&regs->hash.iaddr4, 0);
147 out_be32(&regs->hash.iaddr5, 0);
148 out_be32(&regs->hash.iaddr6, 0);
149 out_be32(&regs->hash.iaddr7, 0);
150
151 out_be32(&regs->hash.gaddr0, 0);
152 out_be32(&regs->hash.gaddr1, 0);
153 out_be32(&regs->hash.gaddr2, 0);
154 out_be32(&regs->hash.gaddr3, 0);
155 out_be32(&regs->hash.gaddr4, 0);
156 out_be32(&regs->hash.gaddr5, 0);
157 out_be32(&regs->hash.gaddr6, 0);
158 out_be32(&regs->hash.gaddr7, 0);
159
160 out_be32(&regs->rctrl, 0x00000000);
161
162 /* Init RMON mib registers */
Claudiu Manoila18ab902013-09-30 12:44:46 +0300163 memset((void *)&regs->rmon, 0, sizeof(regs->rmon));
Mingkai Hue0653bf2011-01-27 12:52:46 +0800164
165 out_be32(&regs->rmon.cam1, 0xffffffff);
166 out_be32(&regs->rmon.cam2, 0xffffffff);
167
168 out_be32(&regs->mrblr, MRBLR_INIT_SETTINGS);
169
170 out_be32(&regs->minflr, MINFLR_INIT_SETTINGS);
171
172 out_be32(&regs->attr, ATTR_INIT_SETTINGS);
173 out_be32(&regs->attreli, ATTRELI_INIT_SETTINGS);
174
175}
176
Bin Meng79cd33a2016-01-11 22:41:18 -0800177/*
178 * Configure maccfg2 based on negotiated speed and duplex
Mingkai Hue0653bf2011-01-27 12:52:46 +0800179 * reported by PHY handling code
180 */
Andy Fleming422effd2011-04-08 02:10:54 -0500181static void adjust_link(struct tsec_private *priv, struct phy_device *phydev)
Mingkai Hue0653bf2011-01-27 12:52:46 +0800182{
Claudiu Manoilcd0c4122013-09-30 12:44:42 +0300183 struct tsec __iomem *regs = priv->regs;
Mingkai Hue0653bf2011-01-27 12:52:46 +0800184 u32 ecntrl, maccfg2;
185
Andy Fleming422effd2011-04-08 02:10:54 -0500186 if (!phydev->link) {
187 printf("%s: No link.\n", phydev->dev->name);
Mingkai Hue0653bf2011-01-27 12:52:46 +0800188 return;
189 }
190
191 /* clear all bits relative with interface mode */
192 ecntrl = in_be32(&regs->ecntrl);
193 ecntrl &= ~ECNTRL_R100;
194
195 maccfg2 = in_be32(&regs->maccfg2);
196 maccfg2 &= ~(MACCFG2_IF | MACCFG2_FULL_DUPLEX);
197
Andy Fleming422effd2011-04-08 02:10:54 -0500198 if (phydev->duplex)
Mingkai Hue0653bf2011-01-27 12:52:46 +0800199 maccfg2 |= MACCFG2_FULL_DUPLEX;
200
Andy Fleming422effd2011-04-08 02:10:54 -0500201 switch (phydev->speed) {
Mingkai Hue0653bf2011-01-27 12:52:46 +0800202 case 1000:
203 maccfg2 |= MACCFG2_GMII;
204 break;
205 case 100:
206 case 10:
207 maccfg2 |= MACCFG2_MII;
208
Bin Meng79cd33a2016-01-11 22:41:18 -0800209 /*
210 * Set R100 bit in all modes although
Mingkai Hue0653bf2011-01-27 12:52:46 +0800211 * it is only used in RGMII mode
212 */
Andy Fleming422effd2011-04-08 02:10:54 -0500213 if (phydev->speed == 100)
Mingkai Hue0653bf2011-01-27 12:52:46 +0800214 ecntrl |= ECNTRL_R100;
215 break;
216 default:
Andy Fleming422effd2011-04-08 02:10:54 -0500217 printf("%s: Speed was bad\n", phydev->dev->name);
Mingkai Hue0653bf2011-01-27 12:52:46 +0800218 break;
219 }
220
221 out_be32(&regs->ecntrl, ecntrl);
222 out_be32(&regs->maccfg2, maccfg2);
wdenkf41ff3b2005-04-04 23:43:44 +0000223
Andy Fleming422effd2011-04-08 02:10:54 -0500224 printf("Speed: %d, %s duplex%s\n", phydev->speed,
225 (phydev->duplex) ? "full" : "half",
226 (phydev->port == PORT_FIBRE) ? ", fiber mode" : "");
Mingkai Hue0653bf2011-01-27 12:52:46 +0800227}
wdenkbfad55d2005-03-14 23:56:42 +0000228
Bin Meng80b1a1c2016-01-11 22:41:21 -0800229/*
230 * This returns the status bits of the device. The return value
231 * is never checked, and this is what the 8260 driver did, so we
232 * do the same. Presumably, this would be zero if there were no
233 * errors
234 */
Bin Meng1048f612016-01-11 22:41:24 -0800235#ifndef CONFIG_DM_ETH
Bin Meng80b1a1c2016-01-11 22:41:21 -0800236static int tsec_send(struct eth_device *dev, void *packet, int length)
Bin Meng1048f612016-01-11 22:41:24 -0800237#else
238static int tsec_send(struct udevice *dev, void *packet, int length)
239#endif
Bin Meng80b1a1c2016-01-11 22:41:21 -0800240{
241 struct tsec_private *priv = (struct tsec_private *)dev->priv;
242 struct tsec __iomem *regs = priv->regs;
243 uint16_t status;
244 int result = 0;
245 int i;
246
247 /* Find an empty buffer descriptor */
248 for (i = 0;
249 in_be16(&priv->txbd[priv->tx_idx].status) & TXBD_READY;
250 i++) {
251 if (i >= TOUT_LOOP) {
252 debug("%s: tsec: tx buffers full\n", dev->name);
253 return result;
254 }
255 }
256
257 out_be32(&priv->txbd[priv->tx_idx].bufptr, (u32)packet);
258 out_be16(&priv->txbd[priv->tx_idx].length, length);
259 status = in_be16(&priv->txbd[priv->tx_idx].status);
260 out_be16(&priv->txbd[priv->tx_idx].status, status |
261 (TXBD_READY | TXBD_LAST | TXBD_CRC | TXBD_INTERRUPT));
262
263 /* Tell the DMA to go */
264 out_be32(&regs->tstat, TSTAT_CLEAR_THALT);
265
266 /* Wait for buffer to be transmitted */
267 for (i = 0;
268 in_be16(&priv->txbd[priv->tx_idx].status) & TXBD_READY;
269 i++) {
270 if (i >= TOUT_LOOP) {
271 debug("%s: tsec: tx error\n", dev->name);
272 return result;
273 }
274 }
275
276 priv->tx_idx = (priv->tx_idx + 1) % TX_BUF_CNT;
277 result = in_be16(&priv->txbd[priv->tx_idx].status) & TXBD_STATS;
278
279 return result;
280}
281
Bin Meng1048f612016-01-11 22:41:24 -0800282#ifndef CONFIG_DM_ETH
Bin Meng80b1a1c2016-01-11 22:41:21 -0800283static int tsec_recv(struct eth_device *dev)
284{
285 struct tsec_private *priv = (struct tsec_private *)dev->priv;
286 struct tsec __iomem *regs = priv->regs;
287
288 while (!(in_be16(&priv->rxbd[priv->rx_idx].status) & RXBD_EMPTY)) {
289 int length = in_be16(&priv->rxbd[priv->rx_idx].length);
290 uint16_t status = in_be16(&priv->rxbd[priv->rx_idx].status);
291 uchar *packet = net_rx_packets[priv->rx_idx];
292
293 /* Send the packet up if there were no errors */
294 if (!(status & RXBD_STATS))
295 net_process_received_packet(packet, length - 4);
296 else
297 printf("Got error %x\n", (status & RXBD_STATS));
298
299 out_be16(&priv->rxbd[priv->rx_idx].length, 0);
300
301 status = RXBD_EMPTY;
302 /* Set the wrap bit if this is the last element in the list */
303 if ((priv->rx_idx + 1) == PKTBUFSRX)
304 status |= RXBD_WRAP;
305 out_be16(&priv->rxbd[priv->rx_idx].status, status);
306
307 priv->rx_idx = (priv->rx_idx + 1) % PKTBUFSRX;
308 }
309
310 if (in_be32(&regs->ievent) & IEVENT_BSY) {
311 out_be32(&regs->ievent, IEVENT_BSY);
312 out_be32(&regs->rstat, RSTAT_CLEAR_RHALT);
313 }
314
315 return -1;
316}
Bin Meng1048f612016-01-11 22:41:24 -0800317#else
318static int tsec_recv(struct udevice *dev, int flags, uchar **packetp)
319{
320 struct tsec_private *priv = (struct tsec_private *)dev->priv;
321 struct tsec __iomem *regs = priv->regs;
322 int ret = -1;
323
324 if (!(in_be16(&priv->rxbd[priv->rx_idx].status) & RXBD_EMPTY)) {
325 int length = in_be16(&priv->rxbd[priv->rx_idx].length);
326 uint16_t status = in_be16(&priv->rxbd[priv->rx_idx].status);
327 uint32_t buf;
328
329 /* Send the packet up if there were no errors */
330 if (!(status & RXBD_STATS)) {
331 buf = in_be32(&priv->rxbd[priv->rx_idx].bufptr);
332 *packetp = (uchar *)buf;
333 ret = length - 4;
334 } else {
335 printf("Got error %x\n", (status & RXBD_STATS));
336 }
337 }
338
339 if (in_be32(&regs->ievent) & IEVENT_BSY) {
340 out_be32(&regs->ievent, IEVENT_BSY);
341 out_be32(&regs->rstat, RSTAT_CLEAR_RHALT);
342 }
343
344 return ret;
345}
346
347static int tsec_free_pkt(struct udevice *dev, uchar *packet, int length)
348{
349 struct tsec_private *priv = (struct tsec_private *)dev->priv;
350 uint16_t status;
351
352 out_be16(&priv->rxbd[priv->rx_idx].length, 0);
353
354 status = RXBD_EMPTY;
355 /* Set the wrap bit if this is the last element in the list */
356 if ((priv->rx_idx + 1) == PKTBUFSRX)
357 status |= RXBD_WRAP;
358 out_be16(&priv->rxbd[priv->rx_idx].status, status);
359
360 priv->rx_idx = (priv->rx_idx + 1) % PKTBUFSRX;
361
362 return 0;
363}
364#endif
Bin Meng80b1a1c2016-01-11 22:41:21 -0800365
366/* Stop the interface */
Bin Meng1048f612016-01-11 22:41:24 -0800367#ifndef CONFIG_DM_ETH
Bin Meng80b1a1c2016-01-11 22:41:21 -0800368static void tsec_halt(struct eth_device *dev)
Bin Meng1048f612016-01-11 22:41:24 -0800369#else
370static void tsec_halt(struct udevice *dev)
371#endif
Bin Meng80b1a1c2016-01-11 22:41:21 -0800372{
373 struct tsec_private *priv = (struct tsec_private *)dev->priv;
374 struct tsec __iomem *regs = priv->regs;
375
376 clrbits_be32(&regs->dmactrl, DMACTRL_GRS | DMACTRL_GTS);
377 setbits_be32(&regs->dmactrl, DMACTRL_GRS | DMACTRL_GTS);
378
379 while ((in_be32(&regs->ievent) & (IEVENT_GRSC | IEVENT_GTSC))
380 != (IEVENT_GRSC | IEVENT_GTSC))
381 ;
382
383 clrbits_be32(&regs->maccfg1, MACCFG1_TX_EN | MACCFG1_RX_EN);
384
385 /* Shut down the PHY, as needed */
386 phy_shutdown(priv->phydev);
387}
388
chenhui zhaoc8caa8a2011-10-03 08:38:50 -0500389#ifdef CONFIG_SYS_FSL_ERRATUM_NMG_ETSEC129
390/*
391 * When MACCFG1[Rx_EN] is enabled during system boot as part
392 * of the eTSEC port initialization sequence,
393 * the eTSEC Rx logic may not be properly initialized.
394 */
Bin Menge86a6cd2016-01-11 22:41:22 -0800395void redundant_init(struct tsec_private *priv)
chenhui zhaoc8caa8a2011-10-03 08:38:50 -0500396{
Claudiu Manoilcd0c4122013-09-30 12:44:42 +0300397 struct tsec __iomem *regs = priv->regs;
chenhui zhaoc8caa8a2011-10-03 08:38:50 -0500398 uint t, count = 0;
399 int fail = 1;
400 static const u8 pkt[] = {
401 0x00, 0x1e, 0x4f, 0x12, 0xcb, 0x2c, 0x00, 0x25,
402 0x64, 0xbb, 0xd1, 0xab, 0x08, 0x00, 0x45, 0x00,
403 0x00, 0x5c, 0xdd, 0x22, 0x00, 0x00, 0x80, 0x01,
404 0x1f, 0x71, 0x0a, 0xc1, 0x14, 0x22, 0x0a, 0xc1,
405 0x14, 0x6a, 0x08, 0x00, 0xef, 0x7e, 0x02, 0x00,
406 0x94, 0x05, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66,
407 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e,
408 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76,
409 0x77, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,
410 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,
411 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,
412 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68,
413 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70,
414 0x71, 0x72};
415
416 /* Enable promiscuous mode */
417 setbits_be32(&regs->rctrl, 0x8);
418 /* Enable loopback mode */
419 setbits_be32(&regs->maccfg1, MACCFG1_LOOPBACK);
420 /* Enable transmit and receive */
421 setbits_be32(&regs->maccfg1, MACCFG1_RX_EN | MACCFG1_TX_EN);
422
423 /* Tell the DMA it is clear to go */
424 setbits_be32(&regs->dmactrl, DMACTRL_INIT_SETTINGS);
425 out_be32(&regs->tstat, TSTAT_CLEAR_THALT);
426 out_be32(&regs->rstat, RSTAT_CLEAR_RHALT);
427 clrbits_be32(&regs->dmactrl, DMACTRL_GRS | DMACTRL_GTS);
428
429 do {
Claudiu Manoileec416b2013-10-04 19:13:53 +0300430 uint16_t status;
Bin Menge86a6cd2016-01-11 22:41:22 -0800431 tsec_send(priv->dev, (void *)pkt, sizeof(pkt));
chenhui zhaoc8caa8a2011-10-03 08:38:50 -0500432
433 /* Wait for buffer to be received */
Bin Meng1120c542016-01-11 22:41:20 -0800434 for (t = 0;
435 in_be16(&priv->rxbd[priv->rx_idx].status) & RXBD_EMPTY;
Bin Meng76f53992016-01-11 22:41:19 -0800436 t++) {
chenhui zhaoc8caa8a2011-10-03 08:38:50 -0500437 if (t >= 10 * TOUT_LOOP) {
Bin Menge86a6cd2016-01-11 22:41:22 -0800438 printf("%s: tsec: rx error\n", priv->dev->name);
chenhui zhaoc8caa8a2011-10-03 08:38:50 -0500439 break;
440 }
441 }
442
Bin Meng76f53992016-01-11 22:41:19 -0800443 if (!memcmp(pkt, net_rx_packets[priv->rx_idx], sizeof(pkt)))
chenhui zhaoc8caa8a2011-10-03 08:38:50 -0500444 fail = 0;
445
Bin Meng1120c542016-01-11 22:41:20 -0800446 out_be16(&priv->rxbd[priv->rx_idx].length, 0);
Claudiu Manoileec416b2013-10-04 19:13:53 +0300447 status = RXBD_EMPTY;
Bin Meng76f53992016-01-11 22:41:19 -0800448 if ((priv->rx_idx + 1) == PKTBUFSRX)
Claudiu Manoileec416b2013-10-04 19:13:53 +0300449 status |= RXBD_WRAP;
Bin Meng1120c542016-01-11 22:41:20 -0800450 out_be16(&priv->rxbd[priv->rx_idx].status, status);
Bin Meng76f53992016-01-11 22:41:19 -0800451 priv->rx_idx = (priv->rx_idx + 1) % PKTBUFSRX;
chenhui zhaoc8caa8a2011-10-03 08:38:50 -0500452
453 if (in_be32(&regs->ievent) & IEVENT_BSY) {
454 out_be32(&regs->ievent, IEVENT_BSY);
455 out_be32(&regs->rstat, RSTAT_CLEAR_RHALT);
456 }
457 if (fail) {
458 printf("loopback recv packet error!\n");
459 clrbits_be32(&regs->maccfg1, MACCFG1_RX_EN);
460 udelay(1000);
461 setbits_be32(&regs->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(&regs->rctrl, 0x8);
469 /* Disable loopback mode */
470 clrbits_be32(&regs->maccfg1, MACCFG1_LOOPBACK);
471}
472#endif
473
Bin Meng79cd33a2016-01-11 22:41:18 -0800474/*
475 * Set up the buffers and their descriptors, and bring up the
Mingkai Hue0653bf2011-01-27 12:52:46 +0800476 * interface
Jon Loeligerb7ced082006-10-10 17:03:43 -0500477 */
Bin Menge86a6cd2016-01-11 22:41:22 -0800478static void startup_tsec(struct tsec_private *priv)
Wolfgang Denkf0c4e462006-03-12 22:50:55 +0100479{
Claudiu Manoilcd0c4122013-09-30 12:44:42 +0300480 struct tsec __iomem *regs = priv->regs;
Claudiu Manoileec416b2013-10-04 19:13:53 +0300481 uint16_t status;
482 int i;
Wolfgang Denkf0c4e462006-03-12 22:50:55 +0100483
Andy Fleming422effd2011-04-08 02:10:54 -0500484 /* reset the indices to zero */
Bin Meng76f53992016-01-11 22:41:19 -0800485 priv->rx_idx = 0;
486 priv->tx_idx = 0;
chenhui zhaoc8caa8a2011-10-03 08:38:50 -0500487#ifdef CONFIG_SYS_FSL_ERRATUM_NMG_ETSEC129
488 uint svr;
489#endif
Andy Fleming422effd2011-04-08 02:10:54 -0500490
Mingkai Hue0653bf2011-01-27 12:52:46 +0800491 /* Point to the buffer descriptors */
Bin Meng1120c542016-01-11 22:41:20 -0800492 out_be32(&regs->tbase, (u32)&priv->txbd[0]);
493 out_be32(&regs->rbase, (u32)&priv->rxbd[0]);
Wolfgang Denkf0c4e462006-03-12 22:50:55 +0100494
Mingkai Hue0653bf2011-01-27 12:52:46 +0800495 /* Initialize the Rx Buffer descriptors */
496 for (i = 0; i < PKTBUFSRX; i++) {
Bin Meng1120c542016-01-11 22:41:20 -0800497 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 Hue0653bf2011-01-27 12:52:46 +0800500 }
Bin Meng1120c542016-01-11 22:41:20 -0800501 status = in_be16(&priv->rxbd[PKTBUFSRX - 1].status);
502 out_be16(&priv->rxbd[PKTBUFSRX - 1].status, status | RXBD_WRAP);
Wolfgang Denkf0c4e462006-03-12 22:50:55 +0100503
Mingkai Hue0653bf2011-01-27 12:52:46 +0800504 /* Initialize the TX Buffer Descriptors */
505 for (i = 0; i < TX_BUF_CNT; i++) {
Bin Meng1120c542016-01-11 22:41:20 -0800506 out_be16(&priv->txbd[i].status, 0);
507 out_be16(&priv->txbd[i].length, 0);
508 out_be32(&priv->txbd[i].bufptr, 0);
Wolfgang Denkf0c4e462006-03-12 22:50:55 +0100509 }
Bin Meng1120c542016-01-11 22:41:20 -0800510 status = in_be16(&priv->txbd[TX_BUF_CNT - 1].status);
511 out_be16(&priv->txbd[TX_BUF_CNT - 1].status, status | TXBD_WRAP);
Wolfgang Denkf0c4e462006-03-12 22:50:55 +0100512
chenhui zhaoc8caa8a2011-10-03 08:38:50 -0500513#ifdef CONFIG_SYS_FSL_ERRATUM_NMG_ETSEC129
514 svr = get_svr();
515 if ((SVR_MAJ(svr) == 1) || IS_SVR_REV(svr, 2, 0))
Bin Menge86a6cd2016-01-11 22:41:22 -0800516 redundant_init(priv);
chenhui zhaoc8caa8a2011-10-03 08:38:50 -0500517#endif
Mingkai Hue0653bf2011-01-27 12:52:46 +0800518 /* Enable Transmit and Receive */
519 setbits_be32(&regs->maccfg1, MACCFG1_RX_EN | MACCFG1_TX_EN);
520
521 /* Tell the DMA it is clear to go */
522 setbits_be32(&regs->dmactrl, DMACTRL_INIT_SETTINGS);
523 out_be32(&regs->tstat, TSTAT_CLEAR_THALT);
524 out_be32(&regs->rstat, RSTAT_CLEAR_RHALT);
525 clrbits_be32(&regs->dmactrl, DMACTRL_GRS | DMACTRL_GTS);
Wolfgang Denkf0c4e462006-03-12 22:50:55 +0100526}
527
Bin Meng79cd33a2016-01-11 22:41:18 -0800528/*
Bin Meng79cd33a2016-01-11 22:41:18 -0800529 * Initializes data structures and registers for the controller,
530 * and brings the interface up. Returns the link status, meaning
Mingkai Hue0653bf2011-01-27 12:52:46 +0800531 * that it returns success if the link is up, failure otherwise.
Bin Meng79cd33a2016-01-11 22:41:18 -0800532 * This allows U-Boot to find the first active controller.
Jon Loeligerb7ced082006-10-10 17:03:43 -0500533 */
Bin Meng1048f612016-01-11 22:41:24 -0800534#ifndef CONFIG_DM_ETH
Mingkai Hue0653bf2011-01-27 12:52:46 +0800535static int tsec_init(struct eth_device *dev, bd_t * bd)
Bin Meng1048f612016-01-11 22:41:24 -0800536#else
537static int tsec_init(struct udevice *dev)
538#endif
wdenka445ddf2004-06-09 00:34:46 +0000539{
Mingkai Hue0653bf2011-01-27 12:52:46 +0800540 struct tsec_private *priv = (struct tsec_private *)dev->priv;
Bin Meng1048f612016-01-11 22:41:24 -0800541#ifdef CONFIG_DM_ETH
542 struct eth_pdata *pdata = dev_get_platdata(dev);
543#endif
Claudiu Manoilcd0c4122013-09-30 12:44:42 +0300544 struct tsec __iomem *regs = priv->regs;
Claudiu Manoildcb38fe2013-09-30 12:44:47 +0300545 u32 tempval;
Timur Tabi42387462012-07-09 08:52:43 +0000546 int ret;
wdenka445ddf2004-06-09 00:34:46 +0000547
Mingkai Hue0653bf2011-01-27 12:52:46 +0800548 /* Make sure the controller is stopped */
549 tsec_halt(dev);
wdenka445ddf2004-06-09 00:34:46 +0000550
Mingkai Hue0653bf2011-01-27 12:52:46 +0800551 /* Init MACCFG2. Defaults to GMII */
552 out_be32(&regs->maccfg2, MACCFG2_INIT_SETTINGS);
wdenka445ddf2004-06-09 00:34:46 +0000553
Mingkai Hue0653bf2011-01-27 12:52:46 +0800554 /* Init ECNTRL */
555 out_be32(&regs->ecntrl, ECNTRL_INIT_SETTINGS);
wdenka445ddf2004-06-09 00:34:46 +0000556
Bin Meng79cd33a2016-01-11 22:41:18 -0800557 /*
558 * Copy the station address into the address registers.
Claudiu Manoildcb38fe2013-09-30 12:44:47 +0300559 * 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 Meng1048f612016-01-11 22:41:24 -0800563#ifndef CONFIG_DM_ETH
Claudiu Manoildcb38fe2013-09-30 12:44:47 +0300564 tempval = (dev->enetaddr[5] << 24) | (dev->enetaddr[4] << 16) |
565 (dev->enetaddr[3] << 8) | dev->enetaddr[2];
Bin Meng1048f612016-01-11 22:41:24 -0800566#else
567 tempval = (pdata->enetaddr[5] << 24) | (pdata->enetaddr[4] << 16) |
568 (pdata->enetaddr[3] << 8) | pdata->enetaddr[2];
569#endif
wdenka445ddf2004-06-09 00:34:46 +0000570
Mingkai Hue0653bf2011-01-27 12:52:46 +0800571 out_be32(&regs->macstnaddr1, tempval);
wdenka445ddf2004-06-09 00:34:46 +0000572
Bin Meng1048f612016-01-11 22:41:24 -0800573#ifndef CONFIG_DM_ETH
Claudiu Manoildcb38fe2013-09-30 12:44:47 +0300574 tempval = (dev->enetaddr[1] << 24) | (dev->enetaddr[0] << 16);
Bin Meng1048f612016-01-11 22:41:24 -0800575#else
576 tempval = (pdata->enetaddr[1] << 24) | (pdata->enetaddr[0] << 16);
577#endif
wdenka445ddf2004-06-09 00:34:46 +0000578
Mingkai Hue0653bf2011-01-27 12:52:46 +0800579 out_be32(&regs->macstnaddr2, tempval);
wdenka445ddf2004-06-09 00:34:46 +0000580
Mingkai Hue0653bf2011-01-27 12:52:46 +0800581 /* Clear out (for the most part) the other registers */
582 init_registers(regs);
583
584 /* Ready the device for tx/rx */
Bin Menge86a6cd2016-01-11 22:41:22 -0800585 startup_tsec(priv);
Mingkai Hue0653bf2011-01-27 12:52:46 +0800586
Andy Fleming422effd2011-04-08 02:10:54 -0500587 /* Start up the PHY */
Timur Tabi42387462012-07-09 08:52:43 +0000588 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 Fleming422effd2011-04-08 02:10:54 -0500594
595 adjust_link(priv, priv->phydev);
596
Mingkai Hue0653bf2011-01-27 12:52:46 +0800597 /* If there's no link, fail */
Andy Fleming422effd2011-04-08 02:10:54 -0500598 return priv->phydev->link ? 0 : -1;
599}
600
601static phy_interface_t tsec_get_interface(struct tsec_private *priv)
602{
Claudiu Manoilcd0c4122013-09-30 12:44:42 +0300603 struct tsec __iomem *regs = priv->regs;
Andy Fleming422effd2011-04-08 02:10:54 -0500604 u32 ecntrl;
605
606 ecntrl = in_be32(&regs->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) {
619 if (ecntrl & ECNTRL_REDUCED_MII_MODE)
620 return PHY_INTERFACE_MODE_RMII;
621 else {
622 phy_interface_t interface = priv->interface;
623
624 /*
625 * This isn't autodetected, so it must
626 * be set by the platform code.
627 */
628 if ((interface == PHY_INTERFACE_MODE_RGMII_ID) ||
Bin Meng79cd33a2016-01-11 22:41:18 -0800629 (interface == PHY_INTERFACE_MODE_RGMII_TXID) ||
630 (interface == PHY_INTERFACE_MODE_RGMII_RXID))
Andy Fleming422effd2011-04-08 02:10:54 -0500631 return interface;
632
633 return PHY_INTERFACE_MODE_RGMII;
634 }
635 }
636
637 if (priv->flags & TSEC_GIGABIT)
638 return PHY_INTERFACE_MODE_GMII;
639
640 return PHY_INTERFACE_MODE_MII;
Mingkai Hue0653bf2011-01-27 12:52:46 +0800641}
642
Bin Meng79cd33a2016-01-11 22:41:18 -0800643/*
644 * Discover which PHY is attached to the device, and configure it
Mingkai Hue0653bf2011-01-27 12:52:46 +0800645 * properly. If the PHY is not recognized, then return 0
646 * (failure). Otherwise, return 1
wdenk78924a72004-04-18 21:45:42 +0000647 */
Bin Menge86a6cd2016-01-11 22:41:22 -0800648static int init_phy(struct tsec_private *priv)
wdenk78924a72004-04-18 21:45:42 +0000649{
Andy Fleming422effd2011-04-08 02:10:54 -0500650 struct phy_device *phydev;
Claudiu Manoilcd0c4122013-09-30 12:44:42 +0300651 struct tsec __iomem *regs = priv->regs;
Andy Fleming422effd2011-04-08 02:10:54 -0500652 u32 supported = (SUPPORTED_10baseT_Half |
653 SUPPORTED_10baseT_Full |
654 SUPPORTED_100baseT_Half |
655 SUPPORTED_100baseT_Full);
656
657 if (priv->flags & TSEC_GIGABIT)
658 supported |= SUPPORTED_1000baseT_Full;
wdenk78924a72004-04-18 21:45:42 +0000659
Mingkai Hue0653bf2011-01-27 12:52:46 +0800660 /* Assign a Physical address to the TBI */
Bin Meng74314f12016-01-11 22:41:25 -0800661 out_be32(&regs->tbipa, priv->tbiaddr);
Mingkai Hue0653bf2011-01-27 12:52:46 +0800662
Andy Fleming422effd2011-04-08 02:10:54 -0500663 priv->interface = tsec_get_interface(priv);
Mingkai Hue0653bf2011-01-27 12:52:46 +0800664
Andy Fleming422effd2011-04-08 02:10:54 -0500665 if (priv->interface == PHY_INTERFACE_MODE_SGMII)
666 tsec_configure_serdes(priv);
Mingkai Hue0653bf2011-01-27 12:52:46 +0800667
Bin Menge86a6cd2016-01-11 22:41:22 -0800668 phydev = phy_connect(priv->bus, priv->phyaddr, priv->dev,
669 priv->interface);
Claudiu Manoilfe56fec2013-12-10 15:21:04 +0200670 if (!phydev)
671 return 0;
Mingkai Hue0653bf2011-01-27 12:52:46 +0800672
Andy Fleming422effd2011-04-08 02:10:54 -0500673 phydev->supported &= supported;
674 phydev->advertising = phydev->supported;
wdenka445ddf2004-06-09 00:34:46 +0000675
Andy Fleming422effd2011-04-08 02:10:54 -0500676 priv->phydev = phydev;
wdenk78924a72004-04-18 21:45:42 +0000677
Andy Fleming422effd2011-04-08 02:10:54 -0500678 phy_config(phydev);
Mingkai Hue0653bf2011-01-27 12:52:46 +0800679
680 return 1;
wdenk78924a72004-04-18 21:45:42 +0000681}
682
Bin Meng1048f612016-01-11 22:41:24 -0800683#ifndef CONFIG_DM_ETH
Bin Meng79cd33a2016-01-11 22:41:18 -0800684/*
685 * Initialize device structure. Returns success if PHY
Mingkai Hue0653bf2011-01-27 12:52:46 +0800686 * initialization succeeded (i.e. if it recognizes the PHY)
wdenk78924a72004-04-18 21:45:42 +0000687 */
Mingkai Hue0653bf2011-01-27 12:52:46 +0800688static int tsec_initialize(bd_t *bis, struct tsec_info_struct *tsec_info)
wdenk78924a72004-04-18 21:45:42 +0000689{
Mingkai Hue0653bf2011-01-27 12:52:46 +0800690 struct eth_device *dev;
691 int i;
692 struct tsec_private *priv;
wdenka445ddf2004-06-09 00:34:46 +0000693
Mingkai Hue0653bf2011-01-27 12:52:46 +0800694 dev = (struct eth_device *)malloc(sizeof *dev);
wdenk78924a72004-04-18 21:45:42 +0000695
Mingkai Hue0653bf2011-01-27 12:52:46 +0800696 if (NULL == dev)
697 return 0;
wdenk78924a72004-04-18 21:45:42 +0000698
Mingkai Hue0653bf2011-01-27 12:52:46 +0800699 memset(dev, 0, sizeof *dev);
wdenka445ddf2004-06-09 00:34:46 +0000700
Mingkai Hue0653bf2011-01-27 12:52:46 +0800701 priv = (struct tsec_private *)malloc(sizeof(*priv));
702
703 if (NULL == priv)
704 return 0;
705
Mingkai Hue0653bf2011-01-27 12:52:46 +0800706 priv->regs = tsec_info->regs;
Mingkai Hue0653bf2011-01-27 12:52:46 +0800707 priv->phyregs_sgmii = tsec_info->miiregs_sgmii;
708
709 priv->phyaddr = tsec_info->phyaddr;
Bin Meng74314f12016-01-11 22:41:25 -0800710 priv->tbiaddr = CONFIG_SYS_TBIPA_VALUE;
Mingkai Hue0653bf2011-01-27 12:52:46 +0800711 priv->flags = tsec_info->flags;
wdenka445ddf2004-06-09 00:34:46 +0000712
Ben Whitten34fd6c92015-12-30 13:05:58 +0000713 strcpy(dev->name, tsec_info->devname);
Andy Fleming422effd2011-04-08 02:10:54 -0500714 priv->interface = tsec_info->interface;
715 priv->bus = miiphy_get_dev_by_name(tsec_info->mii_devname);
Bin Menge86a6cd2016-01-11 22:41:22 -0800716 priv->dev = dev;
Mingkai Hue0653bf2011-01-27 12:52:46 +0800717 dev->iobase = 0;
718 dev->priv = priv;
719 dev->init = tsec_init;
720 dev->halt = tsec_halt;
721 dev->send = tsec_send;
722 dev->recv = tsec_recv;
David Updegraff7280da72007-06-11 10:41:07 -0500723#ifdef CONFIG_MCAST_TFTP
Mingkai Hue0653bf2011-01-27 12:52:46 +0800724 dev->mcast = tsec_mcast_addr;
725#endif
David Updegraff7280da72007-06-11 10:41:07 -0500726
Bin Meng79cd33a2016-01-11 22:41:18 -0800727 /* Tell U-Boot to get the addr from the env */
Mingkai Hue0653bf2011-01-27 12:52:46 +0800728 for (i = 0; i < 6; i++)
729 dev->enetaddr[i] = 0;
David Updegraff7280da72007-06-11 10:41:07 -0500730
Mingkai Hue0653bf2011-01-27 12:52:46 +0800731 eth_register(dev);
David Updegraff7280da72007-06-11 10:41:07 -0500732
Mingkai Hue0653bf2011-01-27 12:52:46 +0800733 /* Reset the MAC */
734 setbits_be32(&priv->regs->maccfg1, MACCFG1_SOFT_RESET);
735 udelay(2); /* Soft Reset must be asserted for 3 TX clocks */
736 clrbits_be32(&priv->regs->maccfg1, MACCFG1_SOFT_RESET);
David Updegraff7280da72007-06-11 10:41:07 -0500737
Mingkai Hue0653bf2011-01-27 12:52:46 +0800738 /* Try to initialize PHY here, and return */
Bin Menge86a6cd2016-01-11 22:41:22 -0800739 return init_phy(priv);
Mingkai Hue0653bf2011-01-27 12:52:46 +0800740}
David Updegraff7280da72007-06-11 10:41:07 -0500741
Mingkai Hue0653bf2011-01-27 12:52:46 +0800742/*
743 * Initialize all the TSEC devices
744 *
745 * Returns the number of TSEC devices that were initialized
746 */
747int tsec_eth_init(bd_t *bis, struct tsec_info_struct *tsecs, int num)
748{
749 int i;
750 int ret, count = 0;
751
752 for (i = 0; i < num; i++) {
753 ret = tsec_initialize(bis, &tsecs[i]);
754 if (ret > 0)
755 count += ret;
David Updegraff7280da72007-06-11 10:41:07 -0500756 }
Mingkai Hue0653bf2011-01-27 12:52:46 +0800757
758 return count;
David Updegraff7280da72007-06-11 10:41:07 -0500759}
Mingkai Hue0653bf2011-01-27 12:52:46 +0800760
761int tsec_standard_init(bd_t *bis)
762{
Andy Fleming422effd2011-04-08 02:10:54 -0500763 struct fsl_pq_mdio_info info;
764
Claudiu Manoilcd0c4122013-09-30 12:44:42 +0300765 info.regs = TSEC_GET_MDIO_REGS_BASE(1);
Andy Fleming422effd2011-04-08 02:10:54 -0500766 info.name = DEFAULT_MII_NAME;
767
768 fsl_pq_mdio_init(bis, &info);
769
Mingkai Hue0653bf2011-01-27 12:52:46 +0800770 return tsec_eth_init(bis, tsec_info, ARRAY_SIZE(tsec_info));
771}
Bin Meng1048f612016-01-11 22:41:24 -0800772#else /* CONFIG_DM_ETH */
773int tsec_probe(struct udevice *dev)
774{
775 struct tsec_private *priv = dev_get_priv(dev);
776 struct eth_pdata *pdata = dev_get_platdata(dev);
777 struct fsl_pq_mdio_info mdio_info;
778 int offset = 0;
779 int reg;
780 const char *phy_mode;
781 int ret;
782
783 pdata->iobase = (phys_addr_t)dev_get_addr(dev);
784 priv->regs = (struct tsec *)pdata->iobase;
785
786 offset = fdtdec_lookup_phandle(gd->fdt_blob, dev->of_offset,
787 "phy-handle");
788 if (offset > 0) {
789 reg = fdtdec_get_int(gd->fdt_blob, offset, "reg", 0);
790 priv->phyaddr = reg;
791 } else {
792 debug("phy-handle does not exist under tsec %s\n", dev->name);
793 return -ENOENT;
794 }
795
796 offset = fdt_parent_offset(gd->fdt_blob, offset);
797 if (offset > 0) {
798 reg = fdtdec_get_int(gd->fdt_blob, offset, "reg", 0);
799 priv->phyregs_sgmii = (struct tsec_mii_mng *)(reg + 0x520);
800 } else {
801 debug("No parent node for PHY?\n");
802 return -ENOENT;
803 }
804
Bin Meng74314f12016-01-11 22:41:25 -0800805 offset = fdtdec_lookup_phandle(gd->fdt_blob, dev->of_offset,
806 "tbi-handle");
807 if (offset > 0) {
808 reg = fdtdec_get_int(gd->fdt_blob, offset, "reg",
809 CONFIG_SYS_TBIPA_VALUE);
810 priv->tbiaddr = reg;
811 } else {
812 priv->tbiaddr = CONFIG_SYS_TBIPA_VALUE;
813 }
814
Bin Meng1048f612016-01-11 22:41:24 -0800815 phy_mode = fdt_getprop(gd->fdt_blob, dev->of_offset,
816 "phy-connection-type", NULL);
817 if (phy_mode)
818 pdata->phy_interface = phy_get_interface_by_name(phy_mode);
819 if (pdata->phy_interface == -1) {
820 debug("Invalid PHY interface '%s'\n", phy_mode);
821 return -EINVAL;
822 }
823 priv->interface = pdata->phy_interface;
824
825 /* Initialize flags */
826 priv->flags = TSEC_GIGABIT;
827 if (priv->interface == PHY_INTERFACE_MODE_SGMII)
828 priv->flags |= TSEC_SGMII;
829
830 mdio_info.regs = priv->phyregs_sgmii;
831 mdio_info.name = (char *)dev->name;
832 ret = fsl_pq_mdio_init(NULL, &mdio_info);
833 if (ret)
834 return ret;
835
836 /* Reset the MAC */
837 setbits_be32(&priv->regs->maccfg1, MACCFG1_SOFT_RESET);
838 udelay(2); /* Soft Reset must be asserted for 3 TX clocks */
839 clrbits_be32(&priv->regs->maccfg1, MACCFG1_SOFT_RESET);
840
841 priv->dev = dev;
842 priv->bus = miiphy_get_dev_by_name(dev->name);
843
844 /* Try to initialize PHY here, and return */
845 return !init_phy(priv);
846}
847
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 */