blob: c5dcbbbcedecf7302f0c68536c102af8aec6e77d [file] [log] [blame]
Ilya Yanok0b23fb32009-07-21 19:32:21 +04001/*
2 * (C) Copyright 2009 Ilya Yanok, Emcraft Systems Ltd <yanok@emcraft.com>
3 * (C) Copyright 2008,2009 Eric Jarrige <eric.jarrige@armadeus.org>
4 * (C) Copyright 2008 Armadeus Systems nc
5 * (C) Copyright 2007 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de>
6 * (C) Copyright 2007 Pengutronix, Juergen Beisert <j.beisert@pengutronix.de>
7 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
Ilya Yanok0b23fb32009-07-21 19:32:21 +04009 */
10
11#include <common.h>
12#include <malloc.h>
13#include <net.h>
Jeroen Hofstee84f64c82014-10-08 22:57:40 +020014#include <netdev.h>
Ilya Yanok0b23fb32009-07-21 19:32:21 +040015#include <miiphy.h>
16#include "fec_mxc.h"
17
18#include <asm/arch/clock.h>
19#include <asm/arch/imx-regs.h>
20#include <asm/io.h>
21#include <asm/errno.h>
Marek Vasute2a66e62012-08-26 10:19:20 +000022#include <linux/compiler.h>
Ilya Yanok0b23fb32009-07-21 19:32:21 +040023
24DECLARE_GLOBAL_DATA_PTR;
25
Marek Vasutbc1ce152012-08-29 03:49:49 +000026/*
27 * Timeout the transfer after 5 mS. This is usually a bit more, since
28 * the code in the tightloops this timeout is used in adds some overhead.
29 */
30#define FEC_XFER_TIMEOUT 5000
31
Fabio Estevamdb5b7f52014-08-25 13:34:16 -030032/*
33 * The standard 32-byte DMA alignment does not work on mx6solox, which requires
34 * 64-byte alignment in the DMA RX FEC buffer.
35 * Introduce the FEC_DMA_RX_MINALIGN which can cover mx6solox needs and also
36 * satisfies the alignment on other SoCs (32-bytes)
37 */
38#define FEC_DMA_RX_MINALIGN 64
39
Ilya Yanok0b23fb32009-07-21 19:32:21 +040040#ifndef CONFIG_MII
41#error "CONFIG_MII has to be defined!"
42#endif
43
Eric Nelson5c1ad3e2012-03-15 18:33:25 +000044#ifndef CONFIG_FEC_XCV_TYPE
45#define CONFIG_FEC_XCV_TYPE MII100
Marek Vasut392b8502011-09-11 18:05:33 +000046#endif
47
Marek Vasutbe7e87e2011-11-08 23:18:10 +000048/*
49 * The i.MX28 operates with packets in big endian. We need to swap them before
50 * sending and after receiving.
51 */
Eric Nelson5c1ad3e2012-03-15 18:33:25 +000052#ifdef CONFIG_MX28
53#define CONFIG_FEC_MXC_SWAP_PACKET
54#endif
55
56#define RXDESC_PER_CACHELINE (ARCH_DMA_MINALIGN/sizeof(struct fec_bd))
57
58/* Check various alignment issues at compile time */
59#if ((ARCH_DMA_MINALIGN < 16) || (ARCH_DMA_MINALIGN % 16 != 0))
60#error "ARCH_DMA_MINALIGN must be multiple of 16!"
61#endif
62
63#if ((PKTALIGN < ARCH_DMA_MINALIGN) || \
64 (PKTALIGN % ARCH_DMA_MINALIGN != 0))
65#error "PKTALIGN must be multiple of ARCH_DMA_MINALIGN!"
Marek Vasutbe7e87e2011-11-08 23:18:10 +000066#endif
67
Ilya Yanok0b23fb32009-07-21 19:32:21 +040068#undef DEBUG
69
Eric Nelson5c1ad3e2012-03-15 18:33:25 +000070#ifdef CONFIG_FEC_MXC_SWAP_PACKET
Marek Vasutbe7e87e2011-11-08 23:18:10 +000071static void swap_packet(uint32_t *packet, int length)
72{
73 int i;
74
75 for (i = 0; i < DIV_ROUND_UP(length, 4); i++)
76 packet[i] = __swab32(packet[i]);
77}
78#endif
79
80/*
Ilya Yanok0b23fb32009-07-21 19:32:21 +040081 * MII-interface related functions
82 */
Troy Kisky13947f42012-02-07 14:08:47 +000083static int fec_mdio_read(struct ethernet_regs *eth, uint8_t phyAddr,
84 uint8_t regAddr)
Ilya Yanok0b23fb32009-07-21 19:32:21 +040085{
Ilya Yanok0b23fb32009-07-21 19:32:21 +040086 uint32_t reg; /* convenient holder for the PHY register */
87 uint32_t phy; /* convenient holder for the PHY */
88 uint32_t start;
Troy Kisky13947f42012-02-07 14:08:47 +000089 int val;
Ilya Yanok0b23fb32009-07-21 19:32:21 +040090
91 /*
92 * reading from any PHY's register is done by properly
93 * programming the FEC's MII data register.
94 */
Marek Vasutd133b882011-09-11 18:05:34 +000095 writel(FEC_IEVENT_MII, &eth->ievent);
Ilya Yanok0b23fb32009-07-21 19:32:21 +040096 reg = regAddr << FEC_MII_DATA_RA_SHIFT;
97 phy = phyAddr << FEC_MII_DATA_PA_SHIFT;
98
99 writel(FEC_MII_DATA_ST | FEC_MII_DATA_OP_RD | FEC_MII_DATA_TA |
Marek Vasutd133b882011-09-11 18:05:34 +0000100 phy | reg, &eth->mii_data);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400101
102 /*
103 * wait for the related interrupt
104 */
Graeme Russa60d1e52011-07-15 23:31:37 +0000105 start = get_timer(0);
Marek Vasutd133b882011-09-11 18:05:34 +0000106 while (!(readl(&eth->ievent) & FEC_IEVENT_MII)) {
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400107 if (get_timer(start) > (CONFIG_SYS_HZ / 1000)) {
108 printf("Read MDIO failed...\n");
109 return -1;
110 }
111 }
112
113 /*
114 * clear mii interrupt bit
115 */
Marek Vasutd133b882011-09-11 18:05:34 +0000116 writel(FEC_IEVENT_MII, &eth->ievent);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400117
118 /*
119 * it's now safe to read the PHY's register
120 */
Troy Kisky13947f42012-02-07 14:08:47 +0000121 val = (unsigned short)readl(&eth->mii_data);
122 debug("%s: phy: %02x reg:%02x val:%#x\n", __func__, phyAddr,
123 regAddr, val);
124 return val;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400125}
126
Troy Kisky575c5cc2012-10-22 16:40:41 +0000127static void fec_mii_setspeed(struct ethernet_regs *eth)
Stefano Babic4294b242010-02-01 14:51:30 +0100128{
129 /*
130 * Set MII_SPEED = (1/(mii_speed * 2)) * System Clock
131 * and do not drop the Preamble.
132 */
Markus Niebel6ba45cc2014-02-05 10:54:11 +0100133 register u32 speed = DIV_ROUND_UP(imx_get_fecclk(), 5000000);
134#ifdef FEC_QUIRK_ENET_MAC
135 speed--;
136#endif
137 speed <<= 1;
138 writel(speed, &eth->mii_speed);
Troy Kisky575c5cc2012-10-22 16:40:41 +0000139 debug("%s: mii_speed %08x\n", __func__, readl(&eth->mii_speed));
Stefano Babic4294b242010-02-01 14:51:30 +0100140}
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400141
Troy Kisky13947f42012-02-07 14:08:47 +0000142static int fec_mdio_write(struct ethernet_regs *eth, uint8_t phyAddr,
143 uint8_t regAddr, uint16_t data)
144{
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400145 uint32_t reg; /* convenient holder for the PHY register */
146 uint32_t phy; /* convenient holder for the PHY */
147 uint32_t start;
148
149 reg = regAddr << FEC_MII_DATA_RA_SHIFT;
150 phy = phyAddr << FEC_MII_DATA_PA_SHIFT;
151
152 writel(FEC_MII_DATA_ST | FEC_MII_DATA_OP_WR |
Marek Vasutd133b882011-09-11 18:05:34 +0000153 FEC_MII_DATA_TA | phy | reg | data, &eth->mii_data);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400154
155 /*
156 * wait for the MII interrupt
157 */
Graeme Russa60d1e52011-07-15 23:31:37 +0000158 start = get_timer(0);
Marek Vasutd133b882011-09-11 18:05:34 +0000159 while (!(readl(&eth->ievent) & FEC_IEVENT_MII)) {
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400160 if (get_timer(start) > (CONFIG_SYS_HZ / 1000)) {
161 printf("Write MDIO failed...\n");
162 return -1;
163 }
164 }
165
166 /*
167 * clear MII interrupt bit
168 */
Marek Vasutd133b882011-09-11 18:05:34 +0000169 writel(FEC_IEVENT_MII, &eth->ievent);
Troy Kisky13947f42012-02-07 14:08:47 +0000170 debug("%s: phy: %02x reg:%02x val:%#x\n", __func__, phyAddr,
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400171 regAddr, data);
172
173 return 0;
174}
175
Jeroen Hofstee84f64c82014-10-08 22:57:40 +0200176static int fec_phy_read(struct mii_dev *bus, int phyAddr, int dev_addr,
177 int regAddr)
Troy Kisky13947f42012-02-07 14:08:47 +0000178{
179 return fec_mdio_read(bus->priv, phyAddr, regAddr);
180}
181
Jeroen Hofstee84f64c82014-10-08 22:57:40 +0200182static int fec_phy_write(struct mii_dev *bus, int phyAddr, int dev_addr,
183 int regAddr, u16 data)
Troy Kisky13947f42012-02-07 14:08:47 +0000184{
185 return fec_mdio_write(bus->priv, phyAddr, regAddr, data);
186}
187
188#ifndef CONFIG_PHYLIB
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400189static int miiphy_restart_aneg(struct eth_device *dev)
190{
Stefano Babicb774fe92012-02-22 00:24:35 +0000191 int ret = 0;
192#if !defined(CONFIG_FEC_MXC_NO_ANEG)
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200193 struct fec_priv *fec = (struct fec_priv *)dev->priv;
Troy Kisky13947f42012-02-07 14:08:47 +0000194 struct ethernet_regs *eth = fec->bus->priv;
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200195
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400196 /*
197 * Wake up from sleep if necessary
198 * Reset PHY, then delay 300ns
199 */
John Rigbycb17b922010-01-25 23:12:55 -0700200#ifdef CONFIG_MX27
Troy Kisky13947f42012-02-07 14:08:47 +0000201 fec_mdio_write(eth, fec->phy_id, MII_DCOUNTER, 0x00FF);
John Rigbycb17b922010-01-25 23:12:55 -0700202#endif
Troy Kisky13947f42012-02-07 14:08:47 +0000203 fec_mdio_write(eth, fec->phy_id, MII_BMCR, BMCR_RESET);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400204 udelay(1000);
205
206 /*
207 * Set the auto-negotiation advertisement register bits
208 */
Troy Kisky13947f42012-02-07 14:08:47 +0000209 fec_mdio_write(eth, fec->phy_id, MII_ADVERTISE,
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500210 LPA_100FULL | LPA_100HALF | LPA_10FULL |
211 LPA_10HALF | PHY_ANLPAR_PSB_802_3);
Troy Kisky13947f42012-02-07 14:08:47 +0000212 fec_mdio_write(eth, fec->phy_id, MII_BMCR,
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500213 BMCR_ANENABLE | BMCR_ANRESTART);
Marek Vasut2e5f4422011-09-11 18:05:36 +0000214
215 if (fec->mii_postcall)
216 ret = fec->mii_postcall(fec->phy_id);
217
Stefano Babicb774fe92012-02-22 00:24:35 +0000218#endif
Marek Vasut2e5f4422011-09-11 18:05:36 +0000219 return ret;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400220}
221
222static int miiphy_wait_aneg(struct eth_device *dev)
223{
224 uint32_t start;
Troy Kisky13947f42012-02-07 14:08:47 +0000225 int status;
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200226 struct fec_priv *fec = (struct fec_priv *)dev->priv;
Troy Kisky13947f42012-02-07 14:08:47 +0000227 struct ethernet_regs *eth = fec->bus->priv;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400228
229 /*
230 * Wait for AN completion
231 */
Graeme Russa60d1e52011-07-15 23:31:37 +0000232 start = get_timer(0);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400233 do {
234 if (get_timer(start) > (CONFIG_SYS_HZ * 5)) {
235 printf("%s: Autonegotiation timeout\n", dev->name);
236 return -1;
237 }
238
Troy Kisky13947f42012-02-07 14:08:47 +0000239 status = fec_mdio_read(eth, fec->phy_id, MII_BMSR);
240 if (status < 0) {
241 printf("%s: Autonegotiation failed. status: %d\n",
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400242 dev->name, status);
243 return -1;
244 }
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500245 } while (!(status & BMSR_LSTATUS));
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400246
247 return 0;
248}
Troy Kisky13947f42012-02-07 14:08:47 +0000249#endif
250
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400251static int fec_rx_task_enable(struct fec_priv *fec)
252{
Marek Vasutc0b5a3b2012-08-29 03:49:51 +0000253 writel(FEC_R_DES_ACTIVE_RDAR, &fec->eth->r_des_active);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400254 return 0;
255}
256
257static int fec_rx_task_disable(struct fec_priv *fec)
258{
259 return 0;
260}
261
262static int fec_tx_task_enable(struct fec_priv *fec)
263{
Marek Vasutc0b5a3b2012-08-29 03:49:51 +0000264 writel(FEC_X_DES_ACTIVE_TDAR, &fec->eth->x_des_active);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400265 return 0;
266}
267
268static int fec_tx_task_disable(struct fec_priv *fec)
269{
270 return 0;
271}
272
273/**
274 * Initialize receive task's buffer descriptors
275 * @param[in] fec all we know about the device yet
276 * @param[in] count receive buffer count to be allocated
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000277 * @param[in] dsize desired size of each receive buffer
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400278 * @return 0 on success
279 *
Marek Vasut79e5f272013-10-12 20:36:25 +0200280 * Init all RX descriptors to default values.
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400281 */
Marek Vasut79e5f272013-10-12 20:36:25 +0200282static void fec_rbd_init(struct fec_priv *fec, int count, int dsize)
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400283{
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000284 uint32_t size;
Marek Vasut79e5f272013-10-12 20:36:25 +0200285 uint8_t *data;
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000286 int i;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400287
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400288 /*
Marek Vasut79e5f272013-10-12 20:36:25 +0200289 * Reload the RX descriptors with default values and wipe
290 * the RX buffers.
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400291 */
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000292 size = roundup(dsize, ARCH_DMA_MINALIGN);
293 for (i = 0; i < count; i++) {
Marek Vasut79e5f272013-10-12 20:36:25 +0200294 data = (uint8_t *)fec->rbd_base[i].data_pointer;
295 memset(data, 0, dsize);
296 flush_dcache_range((uint32_t)data, (uint32_t)data + size);
297
298 fec->rbd_base[i].status = FEC_RBD_EMPTY;
299 fec->rbd_base[i].data_length = 0;
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000300 }
301
302 /* Mark the last RBD to close the ring. */
Marek Vasut79e5f272013-10-12 20:36:25 +0200303 fec->rbd_base[i - 1].status = FEC_RBD_WRAP | FEC_RBD_EMPTY;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400304 fec->rbd_index = 0;
305
Marek Vasut79e5f272013-10-12 20:36:25 +0200306 flush_dcache_range((unsigned)fec->rbd_base,
307 (unsigned)fec->rbd_base + size);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400308}
309
310/**
311 * Initialize transmit task's buffer descriptors
312 * @param[in] fec all we know about the device yet
313 *
314 * Transmit buffers are created externally. We only have to init the BDs here.\n
315 * Note: There is a race condition in the hardware. When only one BD is in
316 * use it must be marked with the WRAP bit to use it for every transmitt.
317 * This bit in combination with the READY bit results into double transmit
318 * of each data buffer. It seems the state machine checks READY earlier then
319 * resetting it after the first transfer.
320 * Using two BDs solves this issue.
321 */
322static void fec_tbd_init(struct fec_priv *fec)
323{
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000324 unsigned addr = (unsigned)fec->tbd_base;
325 unsigned size = roundup(2 * sizeof(struct fec_bd),
326 ARCH_DMA_MINALIGN);
Marek Vasut79e5f272013-10-12 20:36:25 +0200327
328 memset(fec->tbd_base, 0, size);
329 fec->tbd_base[0].status = 0;
330 fec->tbd_base[1].status = FEC_TBD_WRAP;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400331 fec->tbd_index = 0;
Marek Vasut79e5f272013-10-12 20:36:25 +0200332 flush_dcache_range(addr, addr + size);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400333}
334
335/**
336 * Mark the given read buffer descriptor as free
337 * @param[in] last 1 if this is the last buffer descriptor in the chain, else 0
338 * @param[in] pRbd buffer descriptor to mark free again
339 */
340static void fec_rbd_clean(int last, struct fec_bd *pRbd)
341{
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000342 unsigned short flags = FEC_RBD_EMPTY;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400343 if (last)
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000344 flags |= FEC_RBD_WRAP;
345 writew(flags, &pRbd->status);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400346 writew(0, &pRbd->data_length);
347}
348
Fabio Estevambe252b62011-12-20 05:46:31 +0000349static int fec_get_hwaddr(struct eth_device *dev, int dev_id,
350 unsigned char *mac)
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400351{
Fabio Estevambe252b62011-12-20 05:46:31 +0000352 imx_get_mac_from_fuse(dev_id, mac);
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500353 return !is_valid_ethaddr(mac);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400354}
355
Stefano Babic4294b242010-02-01 14:51:30 +0100356static int fec_set_hwaddr(struct eth_device *dev)
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400357{
Stefano Babic4294b242010-02-01 14:51:30 +0100358 uchar *mac = dev->enetaddr;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400359 struct fec_priv *fec = (struct fec_priv *)dev->priv;
360
361 writel(0, &fec->eth->iaddr1);
362 writel(0, &fec->eth->iaddr2);
363 writel(0, &fec->eth->gaddr1);
364 writel(0, &fec->eth->gaddr2);
365
366 /*
367 * Set physical address
368 */
369 writel((mac[0] << 24) + (mac[1] << 16) + (mac[2] << 8) + mac[3],
370 &fec->eth->paddr1);
371 writel((mac[4] << 24) + (mac[5] << 16) + 0x8808, &fec->eth->paddr2);
372
373 return 0;
374}
375
Marek Vasuta5990b22012-05-01 11:09:41 +0000376/*
377 * Do initial configuration of the FEC registers
378 */
379static void fec_reg_setup(struct fec_priv *fec)
380{
381 uint32_t rcntrl;
382
383 /*
384 * Set interrupt mask register
385 */
386 writel(0x00000000, &fec->eth->imask);
387
388 /*
389 * Clear FEC-Lite interrupt event register(IEVENT)
390 */
391 writel(0xffffffff, &fec->eth->ievent);
392
393
394 /*
395 * Set FEC-Lite receive control register(R_CNTRL):
396 */
397
398 /* Start with frame length = 1518, common for all modes. */
399 rcntrl = PKTSIZE << FEC_RCNTRL_MAX_FL_SHIFT;
benoit.thebaudeau@advans9d2d9242012-07-19 02:12:46 +0000400 if (fec->xcv_type != SEVENWIRE) /* xMII modes */
401 rcntrl |= FEC_RCNTRL_FCE | FEC_RCNTRL_MII_MODE;
402 if (fec->xcv_type == RGMII)
Marek Vasuta5990b22012-05-01 11:09:41 +0000403 rcntrl |= FEC_RCNTRL_RGMII;
404 else if (fec->xcv_type == RMII)
405 rcntrl |= FEC_RCNTRL_RMII;
Marek Vasuta5990b22012-05-01 11:09:41 +0000406
407 writel(rcntrl, &fec->eth->r_cntrl);
408}
409
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400410/**
411 * Start the FEC engine
412 * @param[in] dev Our device to handle
413 */
414static int fec_open(struct eth_device *edev)
415{
416 struct fec_priv *fec = (struct fec_priv *)edev->priv;
Troy Kisky28774cb2012-02-07 14:08:46 +0000417 int speed;
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000418 uint32_t addr, size;
419 int i;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400420
421 debug("fec_open: fec_open(dev)\n");
422 /* full-duplex, heartbeat disabled */
423 writel(1 << 2, &fec->eth->x_cntrl);
424 fec->rbd_index = 0;
425
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000426 /* Invalidate all descriptors */
427 for (i = 0; i < FEC_RBD_NUM - 1; i++)
428 fec_rbd_clean(0, &fec->rbd_base[i]);
429 fec_rbd_clean(1, &fec->rbd_base[i]);
430
431 /* Flush the descriptors into RAM */
432 size = roundup(FEC_RBD_NUM * sizeof(struct fec_bd),
433 ARCH_DMA_MINALIGN);
434 addr = (uint32_t)fec->rbd_base;
435 flush_dcache_range(addr, addr + size);
436
Troy Kisky28774cb2012-02-07 14:08:46 +0000437#ifdef FEC_QUIRK_ENET_MAC
Jason Liu2ef2b952011-12-16 05:17:07 +0000438 /* Enable ENET HW endian SWAP */
439 writel(readl(&fec->eth->ecntrl) | FEC_ECNTRL_DBSWAP,
440 &fec->eth->ecntrl);
441 /* Enable ENET store and forward mode */
442 writel(readl(&fec->eth->x_wmrk) | FEC_X_WMRK_STRFWD,
443 &fec->eth->x_wmrk);
444#endif
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400445 /*
446 * Enable FEC-Lite controller
447 */
John Rigbycb17b922010-01-25 23:12:55 -0700448 writel(readl(&fec->eth->ecntrl) | FEC_ECNTRL_ETHER_EN,
449 &fec->eth->ecntrl);
Fabio Estevam7df51fd2013-09-13 00:36:27 -0300450#if defined(CONFIG_MX25) || defined(CONFIG_MX53) || defined(CONFIG_MX6SL)
John Rigby740d6ae2010-01-25 23:12:57 -0700451 udelay(100);
452 /*
453 * setup the MII gasket for RMII mode
454 */
455
456 /* disable the gasket */
457 writew(0, &fec->eth->miigsk_enr);
458
459 /* wait for the gasket to be disabled */
460 while (readw(&fec->eth->miigsk_enr) & MIIGSK_ENR_READY)
461 udelay(2);
462
463 /* configure gasket for RMII, 50 MHz, no loopback, and no echo */
464 writew(MIIGSK_CFGR_IF_MODE_RMII, &fec->eth->miigsk_cfgr);
465
466 /* re-enable the gasket */
467 writew(MIIGSK_ENR_EN, &fec->eth->miigsk_enr);
468
469 /* wait until MII gasket is ready */
470 int max_loops = 10;
471 while ((readw(&fec->eth->miigsk_enr) & MIIGSK_ENR_READY) == 0) {
472 if (--max_loops <= 0) {
473 printf("WAIT for MII Gasket ready timed out\n");
474 break;
475 }
476 }
477#endif
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400478
Troy Kisky13947f42012-02-07 14:08:47 +0000479#ifdef CONFIG_PHYLIB
Troy Kisky4dc27ee2012-10-22 16:40:45 +0000480 {
Troy Kisky13947f42012-02-07 14:08:47 +0000481 /* Start up the PHY */
Timur Tabi11af8d62012-07-09 08:52:43 +0000482 int ret = phy_startup(fec->phydev);
483
484 if (ret) {
485 printf("Could not initialize PHY %s\n",
486 fec->phydev->dev->name);
487 return ret;
488 }
Troy Kisky13947f42012-02-07 14:08:47 +0000489 speed = fec->phydev->speed;
Troy Kisky13947f42012-02-07 14:08:47 +0000490 }
491#else
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400492 miiphy_wait_aneg(edev);
Troy Kisky28774cb2012-02-07 14:08:46 +0000493 speed = miiphy_speed(edev->name, fec->phy_id);
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200494 miiphy_duplex(edev->name, fec->phy_id);
Troy Kisky13947f42012-02-07 14:08:47 +0000495#endif
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400496
Troy Kisky28774cb2012-02-07 14:08:46 +0000497#ifdef FEC_QUIRK_ENET_MAC
498 {
499 u32 ecr = readl(&fec->eth->ecntrl) & ~FEC_ECNTRL_SPEED;
Alison Wangbcb6e902013-05-27 22:55:43 +0000500 u32 rcr = readl(&fec->eth->r_cntrl) & ~FEC_RCNTRL_RMII_10T;
Troy Kisky28774cb2012-02-07 14:08:46 +0000501 if (speed == _1000BASET)
502 ecr |= FEC_ECNTRL_SPEED;
503 else if (speed != _100BASET)
504 rcr |= FEC_RCNTRL_RMII_10T;
505 writel(ecr, &fec->eth->ecntrl);
506 writel(rcr, &fec->eth->r_cntrl);
507 }
508#endif
509 debug("%s:Speed=%i\n", __func__, speed);
510
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400511 /*
512 * Enable SmartDMA receive task
513 */
514 fec_rx_task_enable(fec);
515
516 udelay(100000);
517 return 0;
518}
519
520static int fec_init(struct eth_device *dev, bd_t* bd)
521{
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400522 struct fec_priv *fec = (struct fec_priv *)dev->priv;
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200523 uint32_t mib_ptr = (uint32_t)&fec->eth->rmon_t_drop;
Marek Vasut79e5f272013-10-12 20:36:25 +0200524 int i;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400525
John Rigbye9319f12010-10-13 14:31:08 -0600526 /* Initialize MAC address */
527 fec_set_hwaddr(dev);
528
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400529 /*
Marek Vasut79e5f272013-10-12 20:36:25 +0200530 * Setup transmit descriptors, there are two in total.
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400531 */
Marek Vasut79e5f272013-10-12 20:36:25 +0200532 fec_tbd_init(fec);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400533
Marek Vasut79e5f272013-10-12 20:36:25 +0200534 /* Setup receive descriptors. */
535 fec_rbd_init(fec, FEC_RBD_NUM, FEC_MAX_PKT_SIZE);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400536
Marek Vasuta5990b22012-05-01 11:09:41 +0000537 fec_reg_setup(fec);
Marek Vasut9eb37702011-09-11 18:05:31 +0000538
benoit.thebaudeau@advansf41471e2012-07-19 02:12:58 +0000539 if (fec->xcv_type != SEVENWIRE)
Troy Kisky575c5cc2012-10-22 16:40:41 +0000540 fec_mii_setspeed(fec->bus->priv);
Marek Vasut9eb37702011-09-11 18:05:31 +0000541
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400542 /*
543 * Set Opcode/Pause Duration Register
544 */
545 writel(0x00010020, &fec->eth->op_pause); /* FIXME 0xffff0020; */
546 writel(0x2, &fec->eth->x_wmrk);
547 /*
548 * Set multicast address filter
549 */
550 writel(0x00000000, &fec->eth->gaddr1);
551 writel(0x00000000, &fec->eth->gaddr2);
552
553
554 /* clear MIB RAM */
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200555 for (i = mib_ptr; i <= mib_ptr + 0xfc; i += 4)
556 writel(0, i);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400557
558 /* FIFO receive start register */
559 writel(0x520, &fec->eth->r_fstart);
560
561 /* size and address of each buffer */
562 writel(FEC_MAX_PKT_SIZE, &fec->eth->emrbr);
563 writel((uint32_t)fec->tbd_base, &fec->eth->etdsr);
564 writel((uint32_t)fec->rbd_base, &fec->eth->erdsr);
565
Troy Kisky13947f42012-02-07 14:08:47 +0000566#ifndef CONFIG_PHYLIB
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400567 if (fec->xcv_type != SEVENWIRE)
568 miiphy_restart_aneg(dev);
Troy Kisky13947f42012-02-07 14:08:47 +0000569#endif
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400570 fec_open(dev);
571 return 0;
572}
573
574/**
575 * Halt the FEC engine
576 * @param[in] dev Our device to handle
577 */
578static void fec_halt(struct eth_device *dev)
579{
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200580 struct fec_priv *fec = (struct fec_priv *)dev->priv;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400581 int counter = 0xffff;
582
583 /*
584 * issue graceful stop command to the FEC transmitter if necessary
585 */
John Rigbycb17b922010-01-25 23:12:55 -0700586 writel(FEC_TCNTRL_GTS | readl(&fec->eth->x_cntrl),
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400587 &fec->eth->x_cntrl);
588
589 debug("eth_halt: wait for stop regs\n");
590 /*
591 * wait for graceful stop to register
592 */
593 while ((counter--) && (!(readl(&fec->eth->ievent) & FEC_IEVENT_GRA)))
John Rigbycb17b922010-01-25 23:12:55 -0700594 udelay(1);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400595
596 /*
597 * Disable SmartDMA tasks
598 */
599 fec_tx_task_disable(fec);
600 fec_rx_task_disable(fec);
601
602 /*
603 * Disable the Ethernet Controller
604 * Note: this will also reset the BD index counter!
605 */
John Rigby740d6ae2010-01-25 23:12:57 -0700606 writel(readl(&fec->eth->ecntrl) & ~FEC_ECNTRL_ETHER_EN,
607 &fec->eth->ecntrl);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400608 fec->rbd_index = 0;
609 fec->tbd_index = 0;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400610 debug("eth_halt: done\n");
611}
612
613/**
614 * Transmit one frame
615 * @param[in] dev Our ethernet device to handle
616 * @param[in] packet Pointer to the data to be transmitted
617 * @param[in] length Data count in bytes
618 * @return 0 on success
619 */
Joe Hershberger442dac42012-05-21 14:45:27 +0000620static int fec_send(struct eth_device *dev, void *packet, int length)
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400621{
622 unsigned int status;
Marek Vasutefe24d22012-08-26 10:19:21 +0000623 uint32_t size, end;
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000624 uint32_t addr;
Marek Vasutbc1ce152012-08-29 03:49:49 +0000625 int timeout = FEC_XFER_TIMEOUT;
626 int ret = 0;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400627
628 /*
629 * This routine transmits one frame. This routine only accepts
630 * 6-byte Ethernet addresses.
631 */
632 struct fec_priv *fec = (struct fec_priv *)dev->priv;
633
634 /*
635 * Check for valid length of data.
636 */
637 if ((length > 1500) || (length <= 0)) {
Stefano Babic4294b242010-02-01 14:51:30 +0100638 printf("Payload (%d) too large\n", length);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400639 return -1;
640 }
641
642 /*
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000643 * Setup the transmit buffer. We are always using the first buffer for
644 * transmission, the second will be empty and only used to stop the DMA
645 * engine. We also flush the packet to RAM here to avoid cache trouble.
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400646 */
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000647#ifdef CONFIG_FEC_MXC_SWAP_PACKET
Marek Vasutbe7e87e2011-11-08 23:18:10 +0000648 swap_packet((uint32_t *)packet, length);
649#endif
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000650
651 addr = (uint32_t)packet;
Marek Vasutefe24d22012-08-26 10:19:21 +0000652 end = roundup(addr + length, ARCH_DMA_MINALIGN);
653 addr &= ~(ARCH_DMA_MINALIGN - 1);
654 flush_dcache_range(addr, end);
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000655
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400656 writew(length, &fec->tbd_base[fec->tbd_index].data_length);
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000657 writel(addr, &fec->tbd_base[fec->tbd_index].data_pointer);
658
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400659 /*
660 * update BD's status now
661 * This block:
662 * - is always the last in a chain (means no chain)
663 * - should transmitt the CRC
664 * - might be the last BD in the list, so the address counter should
665 * wrap (-> keep the WRAP flag)
666 */
667 status = readw(&fec->tbd_base[fec->tbd_index].status) & FEC_TBD_WRAP;
668 status |= FEC_TBD_LAST | FEC_TBD_TC | FEC_TBD_READY;
669 writew(status, &fec->tbd_base[fec->tbd_index].status);
670
671 /*
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000672 * Flush data cache. This code flushes both TX descriptors to RAM.
673 * After this code, the descriptors will be safely in RAM and we
674 * can start DMA.
675 */
676 size = roundup(2 * sizeof(struct fec_bd), ARCH_DMA_MINALIGN);
677 addr = (uint32_t)fec->tbd_base;
678 flush_dcache_range(addr, addr + size);
679
680 /*
Marek Vasutab94cd42013-07-12 01:03:04 +0200681 * Below we read the DMA descriptor's last four bytes back from the
682 * DRAM. This is important in order to make sure that all WRITE
683 * operations on the bus that were triggered by previous cache FLUSH
684 * have completed.
685 *
686 * Otherwise, on MX28, it is possible to observe a corruption of the
687 * DMA descriptors. Please refer to schematic "Figure 1-2" in MX28RM
688 * for the bus structure of MX28. The scenario is as follows:
689 *
690 * 1) ARM core triggers a series of WRITEs on the AHB_ARB2 bus going
691 * to DRAM due to flush_dcache_range()
692 * 2) ARM core writes the FEC registers via AHB_ARB2
693 * 3) FEC DMA starts reading/writing from/to DRAM via AHB_ARB3
694 *
695 * Note that 2) does sometimes finish before 1) due to reordering of
696 * WRITE accesses on the AHB bus, therefore triggering 3) before the
697 * DMA descriptor is fully written into DRAM. This results in occasional
698 * corruption of the DMA descriptor.
699 */
700 readl(addr + size - 4);
701
702 /*
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400703 * Enable SmartDMA transmit task
704 */
705 fec_tx_task_enable(fec);
706
707 /*
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000708 * Wait until frame is sent. On each turn of the wait cycle, we must
709 * invalidate data cache to see what's really in RAM. Also, we need
710 * barrier here.
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400711 */
Marek Vasut67449092012-08-29 03:49:50 +0000712 while (--timeout) {
Marek Vasutc0b5a3b2012-08-29 03:49:51 +0000713 if (!(readl(&fec->eth->x_des_active) & FEC_X_DES_ACTIVE_TDAR))
Marek Vasutbc1ce152012-08-29 03:49:49 +0000714 break;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400715 }
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000716
Fabio Estevamf5992882014-08-25 13:34:17 -0300717 if (!timeout) {
718 ret = -EINVAL;
719 goto out;
720 }
721
722 /*
723 * The TDAR bit is cleared when the descriptors are all out from TX
724 * but on mx6solox we noticed that the READY bit is still not cleared
725 * right after TDAR.
726 * These are two distinct signals, and in IC simulation, we found that
727 * TDAR always gets cleared prior than the READY bit of last BD becomes
728 * cleared.
729 * In mx6solox, we use a later version of FEC IP. It looks like that
730 * this intrinsic behaviour of TDAR bit has changed in this newer FEC
731 * version.
732 *
733 * Fix this by polling the READY bit of BD after the TDAR polling,
734 * which covers the mx6solox case and does not harm the other SoCs.
735 */
736 timeout = FEC_XFER_TIMEOUT;
737 while (--timeout) {
738 invalidate_dcache_range(addr, addr + size);
739 if (!(readw(&fec->tbd_base[fec->tbd_index].status) &
740 FEC_TBD_READY))
741 break;
742 }
743
Marek Vasut67449092012-08-29 03:49:50 +0000744 if (!timeout)
745 ret = -EINVAL;
746
Fabio Estevamf5992882014-08-25 13:34:17 -0300747out:
Marek Vasut67449092012-08-29 03:49:50 +0000748 debug("fec_send: status 0x%x index %d ret %i\n",
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400749 readw(&fec->tbd_base[fec->tbd_index].status),
Marek Vasut67449092012-08-29 03:49:50 +0000750 fec->tbd_index, ret);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400751 /* for next transmission use the other buffer */
752 if (fec->tbd_index)
753 fec->tbd_index = 0;
754 else
755 fec->tbd_index = 1;
756
Marek Vasutbc1ce152012-08-29 03:49:49 +0000757 return ret;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400758}
759
760/**
761 * Pull one frame from the card
762 * @param[in] dev Our ethernet device to handle
763 * @return Length of packet read
764 */
765static int fec_recv(struct eth_device *dev)
766{
767 struct fec_priv *fec = (struct fec_priv *)dev->priv;
768 struct fec_bd *rbd = &fec->rbd_base[fec->rbd_index];
769 unsigned long ievent;
770 int frame_length, len = 0;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400771 uint16_t bd_status;
Marek Vasutefe24d22012-08-26 10:19:21 +0000772 uint32_t addr, size, end;
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000773 int i;
Fabio Estevamfd37f192013-09-17 23:13:10 -0300774 ALLOC_CACHE_ALIGN_BUFFER(uchar, buff, FEC_MAX_PKT_SIZE);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400775
776 /*
777 * Check if any critical events have happened
778 */
779 ievent = readl(&fec->eth->ievent);
780 writel(ievent, &fec->eth->ievent);
Marek Vasuteda959f2011-10-24 23:40:03 +0000781 debug("fec_recv: ievent 0x%lx\n", ievent);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400782 if (ievent & FEC_IEVENT_BABR) {
783 fec_halt(dev);
784 fec_init(dev, fec->bd);
785 printf("some error: 0x%08lx\n", ievent);
786 return 0;
787 }
788 if (ievent & FEC_IEVENT_HBERR) {
789 /* Heartbeat error */
790 writel(0x00000001 | readl(&fec->eth->x_cntrl),
791 &fec->eth->x_cntrl);
792 }
793 if (ievent & FEC_IEVENT_GRA) {
794 /* Graceful stop complete */
795 if (readl(&fec->eth->x_cntrl) & 0x00000001) {
796 fec_halt(dev);
797 writel(~0x00000001 & readl(&fec->eth->x_cntrl),
798 &fec->eth->x_cntrl);
799 fec_init(dev, fec->bd);
800 }
801 }
802
803 /*
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000804 * Read the buffer status. Before the status can be read, the data cache
805 * must be invalidated, because the data in RAM might have been changed
806 * by DMA. The descriptors are properly aligned to cachelines so there's
807 * no need to worry they'd overlap.
808 *
809 * WARNING: By invalidating the descriptor here, we also invalidate
810 * the descriptors surrounding this one. Therefore we can NOT change the
811 * contents of this descriptor nor the surrounding ones. The problem is
812 * that in order to mark the descriptor as processed, we need to change
813 * the descriptor. The solution is to mark the whole cache line when all
814 * descriptors in the cache line are processed.
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400815 */
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000816 addr = (uint32_t)rbd;
817 addr &= ~(ARCH_DMA_MINALIGN - 1);
818 size = roundup(sizeof(struct fec_bd), ARCH_DMA_MINALIGN);
819 invalidate_dcache_range(addr, addr + size);
820
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400821 bd_status = readw(&rbd->status);
822 debug("fec_recv: status 0x%x\n", bd_status);
823
824 if (!(bd_status & FEC_RBD_EMPTY)) {
825 if ((bd_status & FEC_RBD_LAST) && !(bd_status & FEC_RBD_ERR) &&
826 ((readw(&rbd->data_length) - 4) > 14)) {
827 /*
828 * Get buffer address and size
829 */
Albert ARIBAUD \(3ADEV\)b1895842015-06-19 14:18:27 +0200830 addr = readl(&rbd->data_pointer);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400831 frame_length = readw(&rbd->data_length) - 4;
832 /*
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000833 * Invalidate data cache over the buffer
834 */
Marek Vasutefe24d22012-08-26 10:19:21 +0000835 end = roundup(addr + frame_length, ARCH_DMA_MINALIGN);
836 addr &= ~(ARCH_DMA_MINALIGN - 1);
837 invalidate_dcache_range(addr, end);
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000838
839 /*
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400840 * Fill the buffer and pass it to upper layers
841 */
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000842#ifdef CONFIG_FEC_MXC_SWAP_PACKET
Albert ARIBAUD \(3ADEV\)b1895842015-06-19 14:18:27 +0200843 swap_packet((uint32_t *)addr, frame_length);
Marek Vasutbe7e87e2011-11-08 23:18:10 +0000844#endif
Albert ARIBAUD \(3ADEV\)b1895842015-06-19 14:18:27 +0200845 memcpy(buff, (char *)addr, frame_length);
Joe Hershberger1fd92db2015-04-08 01:41:06 -0500846 net_process_received_packet(buff, frame_length);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400847 len = frame_length;
848 } else {
849 if (bd_status & FEC_RBD_ERR)
Albert ARIBAUD \(3ADEV\)b1895842015-06-19 14:18:27 +0200850 printf("error frame: 0x%08x 0x%08x\n",
851 addr, bd_status);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400852 }
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000853
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400854 /*
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000855 * Free the current buffer, restart the engine and move forward
856 * to the next buffer. Here we check if the whole cacheline of
857 * descriptors was already processed and if so, we mark it free
858 * as whole.
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400859 */
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000860 size = RXDESC_PER_CACHELINE - 1;
861 if ((fec->rbd_index & size) == size) {
862 i = fec->rbd_index - size;
863 addr = (uint32_t)&fec->rbd_base[i];
864 for (; i <= fec->rbd_index ; i++) {
865 fec_rbd_clean(i == (FEC_RBD_NUM - 1),
866 &fec->rbd_base[i]);
867 }
868 flush_dcache_range(addr,
869 addr + ARCH_DMA_MINALIGN);
870 }
871
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400872 fec_rx_task_enable(fec);
873 fec->rbd_index = (fec->rbd_index + 1) % FEC_RBD_NUM;
874 }
875 debug("fec_recv: stop\n");
876
877 return len;
878}
879
Troy Kiskyef8e3a32012-10-22 16:40:44 +0000880static void fec_set_dev_name(char *dest, int dev_id)
881{
882 sprintf(dest, (dev_id == -1) ? "FEC" : "FEC%i", dev_id);
883}
884
Marek Vasut79e5f272013-10-12 20:36:25 +0200885static int fec_alloc_descs(struct fec_priv *fec)
886{
887 unsigned int size;
888 int i;
889 uint8_t *data;
890
891 /* Allocate TX descriptors. */
892 size = roundup(2 * sizeof(struct fec_bd), ARCH_DMA_MINALIGN);
893 fec->tbd_base = memalign(ARCH_DMA_MINALIGN, size);
894 if (!fec->tbd_base)
895 goto err_tx;
896
897 /* Allocate RX descriptors. */
898 size = roundup(FEC_RBD_NUM * sizeof(struct fec_bd), ARCH_DMA_MINALIGN);
899 fec->rbd_base = memalign(ARCH_DMA_MINALIGN, size);
900 if (!fec->rbd_base)
901 goto err_rx;
902
903 memset(fec->rbd_base, 0, size);
904
905 /* Allocate RX buffers. */
906
907 /* Maximum RX buffer size. */
Fabio Estevamdb5b7f52014-08-25 13:34:16 -0300908 size = roundup(FEC_MAX_PKT_SIZE, FEC_DMA_RX_MINALIGN);
Marek Vasut79e5f272013-10-12 20:36:25 +0200909 for (i = 0; i < FEC_RBD_NUM; i++) {
Fabio Estevamdb5b7f52014-08-25 13:34:16 -0300910 data = memalign(FEC_DMA_RX_MINALIGN, size);
Marek Vasut79e5f272013-10-12 20:36:25 +0200911 if (!data) {
912 printf("%s: error allocating rxbuf %d\n", __func__, i);
913 goto err_ring;
914 }
915
916 memset(data, 0, size);
917
918 fec->rbd_base[i].data_pointer = (uint32_t)data;
919 fec->rbd_base[i].status = FEC_RBD_EMPTY;
920 fec->rbd_base[i].data_length = 0;
921 /* Flush the buffer to memory. */
922 flush_dcache_range((uint32_t)data, (uint32_t)data + size);
923 }
924
925 /* Mark the last RBD to close the ring. */
926 fec->rbd_base[i - 1].status = FEC_RBD_WRAP | FEC_RBD_EMPTY;
927
928 fec->rbd_index = 0;
929 fec->tbd_index = 0;
930
931 return 0;
932
933err_ring:
934 for (; i >= 0; i--)
935 free((void *)fec->rbd_base[i].data_pointer);
936 free(fec->rbd_base);
937err_rx:
938 free(fec->tbd_base);
939err_tx:
940 return -ENOMEM;
941}
942
943static void fec_free_descs(struct fec_priv *fec)
944{
945 int i;
946
947 for (i = 0; i < FEC_RBD_NUM; i++)
948 free((void *)fec->rbd_base[i].data_pointer);
949 free(fec->rbd_base);
950 free(fec->tbd_base);
951}
952
Troy Kiskyfe428b92012-10-22 16:40:46 +0000953#ifdef CONFIG_PHYLIB
954int fec_probe(bd_t *bd, int dev_id, uint32_t base_addr,
955 struct mii_dev *bus, struct phy_device *phydev)
956#else
957static int fec_probe(bd_t *bd, int dev_id, uint32_t base_addr,
958 struct mii_dev *bus, int phy_id)
959#endif
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400960{
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400961 struct eth_device *edev;
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200962 struct fec_priv *fec;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400963 unsigned char ethaddr[6];
Marek Vasute382fb42011-09-11 18:05:37 +0000964 uint32_t start;
965 int ret = 0;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400966
967 /* create and fill edev struct */
968 edev = (struct eth_device *)malloc(sizeof(struct eth_device));
969 if (!edev) {
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200970 puts("fec_mxc: not enough malloc memory for eth_device\n");
Marek Vasute382fb42011-09-11 18:05:37 +0000971 ret = -ENOMEM;
972 goto err1;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400973 }
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200974
975 fec = (struct fec_priv *)malloc(sizeof(struct fec_priv));
976 if (!fec) {
977 puts("fec_mxc: not enough malloc memory for fec_priv\n");
Marek Vasute382fb42011-09-11 18:05:37 +0000978 ret = -ENOMEM;
979 goto err2;
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200980 }
981
Nobuhiro Iwamatsude0b9572010-10-19 14:03:42 +0900982 memset(edev, 0, sizeof(*edev));
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200983 memset(fec, 0, sizeof(*fec));
984
Marek Vasut79e5f272013-10-12 20:36:25 +0200985 ret = fec_alloc_descs(fec);
986 if (ret)
987 goto err3;
988
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400989 edev->priv = fec;
990 edev->init = fec_init;
991 edev->send = fec_send;
992 edev->recv = fec_recv;
993 edev->halt = fec_halt;
Heiko Schocherfb57ec92010-04-27 07:43:52 +0200994 edev->write_hwaddr = fec_set_hwaddr;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400995
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200996 fec->eth = (struct ethernet_regs *)base_addr;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400997 fec->bd = bd;
998
Marek Vasut392b8502011-09-11 18:05:33 +0000999 fec->xcv_type = CONFIG_FEC_XCV_TYPE;
Ilya Yanok0b23fb32009-07-21 19:32:21 +04001000
1001 /* Reset chip. */
John Rigbycb17b922010-01-25 23:12:55 -07001002 writel(readl(&fec->eth->ecntrl) | FEC_ECNTRL_RESET, &fec->eth->ecntrl);
Marek Vasute382fb42011-09-11 18:05:37 +00001003 start = get_timer(0);
1004 while (readl(&fec->eth->ecntrl) & FEC_ECNTRL_RESET) {
1005 if (get_timer(start) > (CONFIG_SYS_HZ * 5)) {
1006 printf("FEC MXC: Timeout reseting chip\n");
Marek Vasut79e5f272013-10-12 20:36:25 +02001007 goto err4;
Marek Vasute382fb42011-09-11 18:05:37 +00001008 }
Ilya Yanok0b23fb32009-07-21 19:32:21 +04001009 udelay(10);
Marek Vasute382fb42011-09-11 18:05:37 +00001010 }
Ilya Yanok0b23fb32009-07-21 19:32:21 +04001011
Marek Vasuta5990b22012-05-01 11:09:41 +00001012 fec_reg_setup(fec);
Troy Kiskyef8e3a32012-10-22 16:40:44 +00001013 fec_set_dev_name(edev->name, dev_id);
1014 fec->dev_id = (dev_id == -1) ? 0 : dev_id;
Troy Kisky13947f42012-02-07 14:08:47 +00001015 fec->bus = bus;
Troy Kiskyfe428b92012-10-22 16:40:46 +00001016 fec_mii_setspeed(bus->priv);
1017#ifdef CONFIG_PHYLIB
1018 fec->phydev = phydev;
1019 phy_connect_dev(phydev, edev);
1020 /* Configure phy */
1021 phy_config(phydev);
1022#else
1023 fec->phy_id = phy_id;
1024#endif
Ilya Yanok0b23fb32009-07-21 19:32:21 +04001025 eth_register(edev);
1026
Fabio Estevambe252b62011-12-20 05:46:31 +00001027 if (fec_get_hwaddr(edev, dev_id, ethaddr) == 0) {
1028 debug("got MAC%d address from fuse: %pM\n", dev_id, ethaddr);
Stefano Babic4294b242010-02-01 14:51:30 +01001029 memcpy(edev->enetaddr, ethaddr, 6);
Eric Nelsonddb636b2013-08-02 10:37:00 -07001030 if (!getenv("ethaddr"))
1031 eth_setenv_enetaddr("ethaddr", ethaddr);
Ilya Yanok0b23fb32009-07-21 19:32:21 +04001032 }
Marek Vasute382fb42011-09-11 18:05:37 +00001033 return ret;
Marek Vasut79e5f272013-10-12 20:36:25 +02001034err4:
1035 fec_free_descs(fec);
Marek Vasute382fb42011-09-11 18:05:37 +00001036err3:
1037 free(fec);
1038err2:
1039 free(edev);
1040err1:
1041 return ret;
Ilya Yanok0b23fb32009-07-21 19:32:21 +04001042}
1043
Troy Kiskyfe428b92012-10-22 16:40:46 +00001044struct mii_dev *fec_get_miibus(uint32_t base_addr, int dev_id)
1045{
1046 struct ethernet_regs *eth = (struct ethernet_regs *)base_addr;
1047 struct mii_dev *bus;
1048 int ret;
1049
1050 bus = mdio_alloc();
1051 if (!bus) {
1052 printf("mdio_alloc failed\n");
1053 return NULL;
1054 }
1055 bus->read = fec_phy_read;
1056 bus->write = fec_phy_write;
1057 bus->priv = eth;
1058 fec_set_dev_name(bus->name, dev_id);
1059
1060 ret = mdio_register(bus);
1061 if (ret) {
1062 printf("mdio_register failed\n");
1063 free(bus);
1064 return NULL;
1065 }
1066 fec_mii_setspeed(eth);
1067 return bus;
1068}
1069
Troy Kiskyeef24482012-10-22 16:40:42 +00001070int fecmxc_initialize_multi(bd_t *bd, int dev_id, int phy_id, uint32_t addr)
1071{
Troy Kiskyfe428b92012-10-22 16:40:46 +00001072 uint32_t base_mii;
1073 struct mii_dev *bus = NULL;
1074#ifdef CONFIG_PHYLIB
1075 struct phy_device *phydev = NULL;
1076#endif
1077 int ret;
1078
1079#ifdef CONFIG_MX28
1080 /*
1081 * The i.MX28 has two ethernet interfaces, but they are not equal.
1082 * Only the first one can access the MDIO bus.
1083 */
1084 base_mii = MXS_ENET0_BASE;
1085#else
1086 base_mii = addr;
1087#endif
Troy Kiskyeef24482012-10-22 16:40:42 +00001088 debug("eth_init: fec_probe(bd, %i, %i) @ %08x\n", dev_id, phy_id, addr);
Troy Kiskyfe428b92012-10-22 16:40:46 +00001089 bus = fec_get_miibus(base_mii, dev_id);
1090 if (!bus)
1091 return -ENOMEM;
1092#ifdef CONFIG_PHYLIB
1093 phydev = phy_find_by_mask(bus, 1 << phy_id, PHY_INTERFACE_MODE_RGMII);
1094 if (!phydev) {
1095 free(bus);
1096 return -ENOMEM;
1097 }
1098 ret = fec_probe(bd, dev_id, addr, bus, phydev);
1099#else
1100 ret = fec_probe(bd, dev_id, addr, bus, phy_id);
1101#endif
1102 if (ret) {
1103#ifdef CONFIG_PHYLIB
1104 free(phydev);
1105#endif
1106 free(bus);
1107 }
1108 return ret;
Troy Kiskyeef24482012-10-22 16:40:42 +00001109}
1110
Troy Kisky09439c32012-10-22 16:40:40 +00001111#ifdef CONFIG_FEC_MXC_PHYADDR
Ilya Yanok0b23fb32009-07-21 19:32:21 +04001112int fecmxc_initialize(bd_t *bd)
1113{
Troy Kiskyeef24482012-10-22 16:40:42 +00001114 return fecmxc_initialize_multi(bd, -1, CONFIG_FEC_MXC_PHYADDR,
1115 IMX_FEC_BASE);
Marek Vasut9e27e9d2011-09-16 01:13:47 +02001116}
1117#endif
1118
Troy Kisky13947f42012-02-07 14:08:47 +00001119#ifndef CONFIG_PHYLIB
Marek Vasut2e5f4422011-09-11 18:05:36 +00001120int fecmxc_register_mii_postcall(struct eth_device *dev, int (*cb)(int))
1121{
1122 struct fec_priv *fec = (struct fec_priv *)dev->priv;
1123 fec->mii_postcall = cb;
1124 return 0;
1125}
Troy Kisky13947f42012-02-07 14:08:47 +00001126#endif