blob: 360f8e44d1017d9538a25496975727a645b8f6cc [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>
Simon Glasscf92e052015-09-02 17:24:58 -060013#include <memalign.h>
Ilya Yanok0b23fb32009-07-21 19:32:21 +040014#include <net.h>
Jeroen Hofstee84f64c82014-10-08 22:57:40 +020015#include <netdev.h>
Ilya Yanok0b23fb32009-07-21 19:32:21 +040016#include <miiphy.h>
17#include "fec_mxc.h"
18
19#include <asm/arch/clock.h>
20#include <asm/arch/imx-regs.h>
Peng Fanfbecbaa2015-08-12 17:46:51 +080021#include <asm/imx-common/sys_proto.h>
Ilya Yanok0b23fb32009-07-21 19:32:21 +040022#include <asm/io.h>
23#include <asm/errno.h>
Marek Vasute2a66e62012-08-26 10:19:20 +000024#include <linux/compiler.h>
Ilya Yanok0b23fb32009-07-21 19:32:21 +040025
26DECLARE_GLOBAL_DATA_PTR;
27
Marek Vasutbc1ce152012-08-29 03:49:49 +000028/*
29 * Timeout the transfer after 5 mS. This is usually a bit more, since
30 * the code in the tightloops this timeout is used in adds some overhead.
31 */
32#define FEC_XFER_TIMEOUT 5000
33
Fabio Estevamdb5b7f52014-08-25 13:34:16 -030034/*
35 * The standard 32-byte DMA alignment does not work on mx6solox, which requires
36 * 64-byte alignment in the DMA RX FEC buffer.
37 * Introduce the FEC_DMA_RX_MINALIGN which can cover mx6solox needs and also
38 * satisfies the alignment on other SoCs (32-bytes)
39 */
40#define FEC_DMA_RX_MINALIGN 64
41
Ilya Yanok0b23fb32009-07-21 19:32:21 +040042#ifndef CONFIG_MII
43#error "CONFIG_MII has to be defined!"
44#endif
45
Eric Nelson5c1ad3e2012-03-15 18:33:25 +000046#ifndef CONFIG_FEC_XCV_TYPE
47#define CONFIG_FEC_XCV_TYPE MII100
Marek Vasut392b8502011-09-11 18:05:33 +000048#endif
49
Marek Vasutbe7e87e2011-11-08 23:18:10 +000050/*
51 * The i.MX28 operates with packets in big endian. We need to swap them before
52 * sending and after receiving.
53 */
Eric Nelson5c1ad3e2012-03-15 18:33:25 +000054#ifdef CONFIG_MX28
55#define CONFIG_FEC_MXC_SWAP_PACKET
56#endif
57
58#define RXDESC_PER_CACHELINE (ARCH_DMA_MINALIGN/sizeof(struct fec_bd))
59
60/* Check various alignment issues at compile time */
61#if ((ARCH_DMA_MINALIGN < 16) || (ARCH_DMA_MINALIGN % 16 != 0))
62#error "ARCH_DMA_MINALIGN must be multiple of 16!"
63#endif
64
65#if ((PKTALIGN < ARCH_DMA_MINALIGN) || \
66 (PKTALIGN % ARCH_DMA_MINALIGN != 0))
67#error "PKTALIGN must be multiple of ARCH_DMA_MINALIGN!"
Marek Vasutbe7e87e2011-11-08 23:18:10 +000068#endif
69
Ilya Yanok0b23fb32009-07-21 19:32:21 +040070#undef DEBUG
71
Eric Nelson5c1ad3e2012-03-15 18:33:25 +000072#ifdef CONFIG_FEC_MXC_SWAP_PACKET
Marek Vasutbe7e87e2011-11-08 23:18:10 +000073static void swap_packet(uint32_t *packet, int length)
74{
75 int i;
76
77 for (i = 0; i < DIV_ROUND_UP(length, 4); i++)
78 packet[i] = __swab32(packet[i]);
79}
80#endif
81
82/*
Ilya Yanok0b23fb32009-07-21 19:32:21 +040083 * MII-interface related functions
84 */
Troy Kisky13947f42012-02-07 14:08:47 +000085static int fec_mdio_read(struct ethernet_regs *eth, uint8_t phyAddr,
86 uint8_t regAddr)
Ilya Yanok0b23fb32009-07-21 19:32:21 +040087{
Ilya Yanok0b23fb32009-07-21 19:32:21 +040088 uint32_t reg; /* convenient holder for the PHY register */
89 uint32_t phy; /* convenient holder for the PHY */
90 uint32_t start;
Troy Kisky13947f42012-02-07 14:08:47 +000091 int val;
Ilya Yanok0b23fb32009-07-21 19:32:21 +040092
93 /*
94 * reading from any PHY's register is done by properly
95 * programming the FEC's MII data register.
96 */
Marek Vasutd133b882011-09-11 18:05:34 +000097 writel(FEC_IEVENT_MII, &eth->ievent);
Ilya Yanok0b23fb32009-07-21 19:32:21 +040098 reg = regAddr << FEC_MII_DATA_RA_SHIFT;
99 phy = phyAddr << FEC_MII_DATA_PA_SHIFT;
100
101 writel(FEC_MII_DATA_ST | FEC_MII_DATA_OP_RD | FEC_MII_DATA_TA |
Marek Vasutd133b882011-09-11 18:05:34 +0000102 phy | reg, &eth->mii_data);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400103
104 /*
105 * wait for the related interrupt
106 */
Graeme Russa60d1e52011-07-15 23:31:37 +0000107 start = get_timer(0);
Marek Vasutd133b882011-09-11 18:05:34 +0000108 while (!(readl(&eth->ievent) & FEC_IEVENT_MII)) {
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400109 if (get_timer(start) > (CONFIG_SYS_HZ / 1000)) {
110 printf("Read MDIO failed...\n");
111 return -1;
112 }
113 }
114
115 /*
116 * clear mii interrupt bit
117 */
Marek Vasutd133b882011-09-11 18:05:34 +0000118 writel(FEC_IEVENT_MII, &eth->ievent);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400119
120 /*
121 * it's now safe to read the PHY's register
122 */
Troy Kisky13947f42012-02-07 14:08:47 +0000123 val = (unsigned short)readl(&eth->mii_data);
124 debug("%s: phy: %02x reg:%02x val:%#x\n", __func__, phyAddr,
125 regAddr, val);
126 return val;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400127}
128
Troy Kisky575c5cc2012-10-22 16:40:41 +0000129static void fec_mii_setspeed(struct ethernet_regs *eth)
Stefano Babic4294b242010-02-01 14:51:30 +0100130{
131 /*
132 * Set MII_SPEED = (1/(mii_speed * 2)) * System Clock
133 * and do not drop the Preamble.
Måns Rullgård843a3e52015-12-08 15:38:45 +0000134 *
135 * The i.MX28 and i.MX6 types have another field in the MSCR (aka
136 * MII_SPEED) register that defines the MDIO output hold time. Earlier
137 * versions are RAZ there, so just ignore the difference and write the
138 * register always.
139 * The minimal hold time according to IEE802.3 (clause 22) is 10 ns.
140 * HOLDTIME + 1 is the number of clk cycles the fec is holding the
141 * output.
142 * The HOLDTIME bitfield takes values between 0 and 7 (inclusive).
143 * Given that ceil(clkrate / 5000000) <= 64, the calculation for
144 * holdtime cannot result in a value greater than 3.
Stefano Babic4294b242010-02-01 14:51:30 +0100145 */
Måns Rullgård843a3e52015-12-08 15:38:45 +0000146 u32 pclk = imx_get_fecclk();
147 u32 speed = DIV_ROUND_UP(pclk, 5000000);
148 u32 hold = DIV_ROUND_UP(pclk, 100000000) - 1;
Markus Niebel6ba45cc2014-02-05 10:54:11 +0100149#ifdef FEC_QUIRK_ENET_MAC
150 speed--;
151#endif
Måns Rullgård843a3e52015-12-08 15:38:45 +0000152 writel(speed << 1 | hold << 8, &eth->mii_speed);
Troy Kisky575c5cc2012-10-22 16:40:41 +0000153 debug("%s: mii_speed %08x\n", __func__, readl(&eth->mii_speed));
Stefano Babic4294b242010-02-01 14:51:30 +0100154}
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400155
Troy Kisky13947f42012-02-07 14:08:47 +0000156static int fec_mdio_write(struct ethernet_regs *eth, uint8_t phyAddr,
157 uint8_t regAddr, uint16_t data)
158{
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400159 uint32_t reg; /* convenient holder for the PHY register */
160 uint32_t phy; /* convenient holder for the PHY */
161 uint32_t start;
162
163 reg = regAddr << FEC_MII_DATA_RA_SHIFT;
164 phy = phyAddr << FEC_MII_DATA_PA_SHIFT;
165
166 writel(FEC_MII_DATA_ST | FEC_MII_DATA_OP_WR |
Marek Vasutd133b882011-09-11 18:05:34 +0000167 FEC_MII_DATA_TA | phy | reg | data, &eth->mii_data);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400168
169 /*
170 * wait for the MII interrupt
171 */
Graeme Russa60d1e52011-07-15 23:31:37 +0000172 start = get_timer(0);
Marek Vasutd133b882011-09-11 18:05:34 +0000173 while (!(readl(&eth->ievent) & FEC_IEVENT_MII)) {
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400174 if (get_timer(start) > (CONFIG_SYS_HZ / 1000)) {
175 printf("Write MDIO failed...\n");
176 return -1;
177 }
178 }
179
180 /*
181 * clear MII interrupt bit
182 */
Marek Vasutd133b882011-09-11 18:05:34 +0000183 writel(FEC_IEVENT_MII, &eth->ievent);
Troy Kisky13947f42012-02-07 14:08:47 +0000184 debug("%s: phy: %02x reg:%02x val:%#x\n", __func__, phyAddr,
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400185 regAddr, data);
186
187 return 0;
188}
189
Jeroen Hofstee84f64c82014-10-08 22:57:40 +0200190static int fec_phy_read(struct mii_dev *bus, int phyAddr, int dev_addr,
191 int regAddr)
Troy Kisky13947f42012-02-07 14:08:47 +0000192{
193 return fec_mdio_read(bus->priv, phyAddr, regAddr);
194}
195
Jeroen Hofstee84f64c82014-10-08 22:57:40 +0200196static int fec_phy_write(struct mii_dev *bus, int phyAddr, int dev_addr,
197 int regAddr, u16 data)
Troy Kisky13947f42012-02-07 14:08:47 +0000198{
199 return fec_mdio_write(bus->priv, phyAddr, regAddr, data);
200}
201
202#ifndef CONFIG_PHYLIB
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400203static int miiphy_restart_aneg(struct eth_device *dev)
204{
Stefano Babicb774fe92012-02-22 00:24:35 +0000205 int ret = 0;
206#if !defined(CONFIG_FEC_MXC_NO_ANEG)
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200207 struct fec_priv *fec = (struct fec_priv *)dev->priv;
Troy Kisky13947f42012-02-07 14:08:47 +0000208 struct ethernet_regs *eth = fec->bus->priv;
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200209
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400210 /*
211 * Wake up from sleep if necessary
212 * Reset PHY, then delay 300ns
213 */
John Rigbycb17b922010-01-25 23:12:55 -0700214#ifdef CONFIG_MX27
Troy Kisky13947f42012-02-07 14:08:47 +0000215 fec_mdio_write(eth, fec->phy_id, MII_DCOUNTER, 0x00FF);
John Rigbycb17b922010-01-25 23:12:55 -0700216#endif
Troy Kisky13947f42012-02-07 14:08:47 +0000217 fec_mdio_write(eth, fec->phy_id, MII_BMCR, BMCR_RESET);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400218 udelay(1000);
219
220 /*
221 * Set the auto-negotiation advertisement register bits
222 */
Troy Kisky13947f42012-02-07 14:08:47 +0000223 fec_mdio_write(eth, fec->phy_id, MII_ADVERTISE,
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500224 LPA_100FULL | LPA_100HALF | LPA_10FULL |
225 LPA_10HALF | PHY_ANLPAR_PSB_802_3);
Troy Kisky13947f42012-02-07 14:08:47 +0000226 fec_mdio_write(eth, fec->phy_id, MII_BMCR,
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500227 BMCR_ANENABLE | BMCR_ANRESTART);
Marek Vasut2e5f4422011-09-11 18:05:36 +0000228
229 if (fec->mii_postcall)
230 ret = fec->mii_postcall(fec->phy_id);
231
Stefano Babicb774fe92012-02-22 00:24:35 +0000232#endif
Marek Vasut2e5f4422011-09-11 18:05:36 +0000233 return ret;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400234}
235
236static int miiphy_wait_aneg(struct eth_device *dev)
237{
238 uint32_t start;
Troy Kisky13947f42012-02-07 14:08:47 +0000239 int status;
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200240 struct fec_priv *fec = (struct fec_priv *)dev->priv;
Troy Kisky13947f42012-02-07 14:08:47 +0000241 struct ethernet_regs *eth = fec->bus->priv;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400242
243 /*
244 * Wait for AN completion
245 */
Graeme Russa60d1e52011-07-15 23:31:37 +0000246 start = get_timer(0);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400247 do {
248 if (get_timer(start) > (CONFIG_SYS_HZ * 5)) {
249 printf("%s: Autonegotiation timeout\n", dev->name);
250 return -1;
251 }
252
Troy Kisky13947f42012-02-07 14:08:47 +0000253 status = fec_mdio_read(eth, fec->phy_id, MII_BMSR);
254 if (status < 0) {
255 printf("%s: Autonegotiation failed. status: %d\n",
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400256 dev->name, status);
257 return -1;
258 }
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500259 } while (!(status & BMSR_LSTATUS));
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400260
261 return 0;
262}
Troy Kisky13947f42012-02-07 14:08:47 +0000263#endif
264
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400265static int fec_rx_task_enable(struct fec_priv *fec)
266{
Marek Vasutc0b5a3b2012-08-29 03:49:51 +0000267 writel(FEC_R_DES_ACTIVE_RDAR, &fec->eth->r_des_active);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400268 return 0;
269}
270
271static int fec_rx_task_disable(struct fec_priv *fec)
272{
273 return 0;
274}
275
276static int fec_tx_task_enable(struct fec_priv *fec)
277{
Marek Vasutc0b5a3b2012-08-29 03:49:51 +0000278 writel(FEC_X_DES_ACTIVE_TDAR, &fec->eth->x_des_active);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400279 return 0;
280}
281
282static int fec_tx_task_disable(struct fec_priv *fec)
283{
284 return 0;
285}
286
287/**
288 * Initialize receive task's buffer descriptors
289 * @param[in] fec all we know about the device yet
290 * @param[in] count receive buffer count to be allocated
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000291 * @param[in] dsize desired size of each receive buffer
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400292 * @return 0 on success
293 *
Marek Vasut79e5f272013-10-12 20:36:25 +0200294 * Init all RX descriptors to default values.
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400295 */
Marek Vasut79e5f272013-10-12 20:36:25 +0200296static void fec_rbd_init(struct fec_priv *fec, int count, int dsize)
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400297{
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000298 uint32_t size;
Marek Vasut79e5f272013-10-12 20:36:25 +0200299 uint8_t *data;
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000300 int i;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400301
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400302 /*
Marek Vasut79e5f272013-10-12 20:36:25 +0200303 * Reload the RX descriptors with default values and wipe
304 * the RX buffers.
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400305 */
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000306 size = roundup(dsize, ARCH_DMA_MINALIGN);
307 for (i = 0; i < count; i++) {
Marek Vasut79e5f272013-10-12 20:36:25 +0200308 data = (uint8_t *)fec->rbd_base[i].data_pointer;
309 memset(data, 0, dsize);
310 flush_dcache_range((uint32_t)data, (uint32_t)data + size);
311
312 fec->rbd_base[i].status = FEC_RBD_EMPTY;
313 fec->rbd_base[i].data_length = 0;
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000314 }
315
316 /* Mark the last RBD to close the ring. */
Marek Vasut79e5f272013-10-12 20:36:25 +0200317 fec->rbd_base[i - 1].status = FEC_RBD_WRAP | FEC_RBD_EMPTY;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400318 fec->rbd_index = 0;
319
Marek Vasut79e5f272013-10-12 20:36:25 +0200320 flush_dcache_range((unsigned)fec->rbd_base,
321 (unsigned)fec->rbd_base + size);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400322}
323
324/**
325 * Initialize transmit task's buffer descriptors
326 * @param[in] fec all we know about the device yet
327 *
328 * Transmit buffers are created externally. We only have to init the BDs here.\n
329 * Note: There is a race condition in the hardware. When only one BD is in
330 * use it must be marked with the WRAP bit to use it for every transmitt.
331 * This bit in combination with the READY bit results into double transmit
332 * of each data buffer. It seems the state machine checks READY earlier then
333 * resetting it after the first transfer.
334 * Using two BDs solves this issue.
335 */
336static void fec_tbd_init(struct fec_priv *fec)
337{
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000338 unsigned addr = (unsigned)fec->tbd_base;
339 unsigned size = roundup(2 * sizeof(struct fec_bd),
340 ARCH_DMA_MINALIGN);
Marek Vasut79e5f272013-10-12 20:36:25 +0200341
342 memset(fec->tbd_base, 0, size);
343 fec->tbd_base[0].status = 0;
344 fec->tbd_base[1].status = FEC_TBD_WRAP;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400345 fec->tbd_index = 0;
Marek Vasut79e5f272013-10-12 20:36:25 +0200346 flush_dcache_range(addr, addr + size);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400347}
348
349/**
350 * Mark the given read buffer descriptor as free
351 * @param[in] last 1 if this is the last buffer descriptor in the chain, else 0
352 * @param[in] pRbd buffer descriptor to mark free again
353 */
354static void fec_rbd_clean(int last, struct fec_bd *pRbd)
355{
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000356 unsigned short flags = FEC_RBD_EMPTY;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400357 if (last)
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000358 flags |= FEC_RBD_WRAP;
359 writew(flags, &pRbd->status);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400360 writew(0, &pRbd->data_length);
361}
362
Fabio Estevambe252b62011-12-20 05:46:31 +0000363static int fec_get_hwaddr(struct eth_device *dev, int dev_id,
364 unsigned char *mac)
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400365{
Fabio Estevambe252b62011-12-20 05:46:31 +0000366 imx_get_mac_from_fuse(dev_id, mac);
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500367 return !is_valid_ethaddr(mac);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400368}
369
Stefano Babic4294b242010-02-01 14:51:30 +0100370static int fec_set_hwaddr(struct eth_device *dev)
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400371{
Stefano Babic4294b242010-02-01 14:51:30 +0100372 uchar *mac = dev->enetaddr;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400373 struct fec_priv *fec = (struct fec_priv *)dev->priv;
374
375 writel(0, &fec->eth->iaddr1);
376 writel(0, &fec->eth->iaddr2);
377 writel(0, &fec->eth->gaddr1);
378 writel(0, &fec->eth->gaddr2);
379
380 /*
381 * Set physical address
382 */
383 writel((mac[0] << 24) + (mac[1] << 16) + (mac[2] << 8) + mac[3],
384 &fec->eth->paddr1);
385 writel((mac[4] << 24) + (mac[5] << 16) + 0x8808, &fec->eth->paddr2);
386
387 return 0;
388}
389
Marek Vasuta5990b22012-05-01 11:09:41 +0000390/*
391 * Do initial configuration of the FEC registers
392 */
393static void fec_reg_setup(struct fec_priv *fec)
394{
395 uint32_t rcntrl;
396
397 /*
398 * Set interrupt mask register
399 */
400 writel(0x00000000, &fec->eth->imask);
401
402 /*
403 * Clear FEC-Lite interrupt event register(IEVENT)
404 */
405 writel(0xffffffff, &fec->eth->ievent);
406
407
408 /*
409 * Set FEC-Lite receive control register(R_CNTRL):
410 */
411
412 /* Start with frame length = 1518, common for all modes. */
413 rcntrl = PKTSIZE << FEC_RCNTRL_MAX_FL_SHIFT;
benoit.thebaudeau@advans9d2d9242012-07-19 02:12:46 +0000414 if (fec->xcv_type != SEVENWIRE) /* xMII modes */
415 rcntrl |= FEC_RCNTRL_FCE | FEC_RCNTRL_MII_MODE;
416 if (fec->xcv_type == RGMII)
Marek Vasuta5990b22012-05-01 11:09:41 +0000417 rcntrl |= FEC_RCNTRL_RGMII;
418 else if (fec->xcv_type == RMII)
419 rcntrl |= FEC_RCNTRL_RMII;
Marek Vasuta5990b22012-05-01 11:09:41 +0000420
421 writel(rcntrl, &fec->eth->r_cntrl);
422}
423
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400424/**
425 * Start the FEC engine
426 * @param[in] dev Our device to handle
427 */
428static int fec_open(struct eth_device *edev)
429{
430 struct fec_priv *fec = (struct fec_priv *)edev->priv;
Troy Kisky28774cb2012-02-07 14:08:46 +0000431 int speed;
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000432 uint32_t addr, size;
433 int i;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400434
435 debug("fec_open: fec_open(dev)\n");
436 /* full-duplex, heartbeat disabled */
437 writel(1 << 2, &fec->eth->x_cntrl);
438 fec->rbd_index = 0;
439
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000440 /* Invalidate all descriptors */
441 for (i = 0; i < FEC_RBD_NUM - 1; i++)
442 fec_rbd_clean(0, &fec->rbd_base[i]);
443 fec_rbd_clean(1, &fec->rbd_base[i]);
444
445 /* Flush the descriptors into RAM */
446 size = roundup(FEC_RBD_NUM * sizeof(struct fec_bd),
447 ARCH_DMA_MINALIGN);
448 addr = (uint32_t)fec->rbd_base;
449 flush_dcache_range(addr, addr + size);
450
Troy Kisky28774cb2012-02-07 14:08:46 +0000451#ifdef FEC_QUIRK_ENET_MAC
Jason Liu2ef2b952011-12-16 05:17:07 +0000452 /* Enable ENET HW endian SWAP */
453 writel(readl(&fec->eth->ecntrl) | FEC_ECNTRL_DBSWAP,
454 &fec->eth->ecntrl);
455 /* Enable ENET store and forward mode */
456 writel(readl(&fec->eth->x_wmrk) | FEC_X_WMRK_STRFWD,
457 &fec->eth->x_wmrk);
458#endif
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400459 /*
460 * Enable FEC-Lite controller
461 */
John Rigbycb17b922010-01-25 23:12:55 -0700462 writel(readl(&fec->eth->ecntrl) | FEC_ECNTRL_ETHER_EN,
463 &fec->eth->ecntrl);
Fabio Estevam7df51fd2013-09-13 00:36:27 -0300464#if defined(CONFIG_MX25) || defined(CONFIG_MX53) || defined(CONFIG_MX6SL)
John Rigby740d6ae2010-01-25 23:12:57 -0700465 udelay(100);
466 /*
467 * setup the MII gasket for RMII mode
468 */
469
470 /* disable the gasket */
471 writew(0, &fec->eth->miigsk_enr);
472
473 /* wait for the gasket to be disabled */
474 while (readw(&fec->eth->miigsk_enr) & MIIGSK_ENR_READY)
475 udelay(2);
476
477 /* configure gasket for RMII, 50 MHz, no loopback, and no echo */
478 writew(MIIGSK_CFGR_IF_MODE_RMII, &fec->eth->miigsk_cfgr);
479
480 /* re-enable the gasket */
481 writew(MIIGSK_ENR_EN, &fec->eth->miigsk_enr);
482
483 /* wait until MII gasket is ready */
484 int max_loops = 10;
485 while ((readw(&fec->eth->miigsk_enr) & MIIGSK_ENR_READY) == 0) {
486 if (--max_loops <= 0) {
487 printf("WAIT for MII Gasket ready timed out\n");
488 break;
489 }
490 }
491#endif
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400492
Troy Kisky13947f42012-02-07 14:08:47 +0000493#ifdef CONFIG_PHYLIB
Troy Kisky4dc27ee2012-10-22 16:40:45 +0000494 {
Troy Kisky13947f42012-02-07 14:08:47 +0000495 /* Start up the PHY */
Timur Tabi11af8d62012-07-09 08:52:43 +0000496 int ret = phy_startup(fec->phydev);
497
498 if (ret) {
499 printf("Could not initialize PHY %s\n",
500 fec->phydev->dev->name);
501 return ret;
502 }
Troy Kisky13947f42012-02-07 14:08:47 +0000503 speed = fec->phydev->speed;
Troy Kisky13947f42012-02-07 14:08:47 +0000504 }
505#else
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400506 miiphy_wait_aneg(edev);
Troy Kisky28774cb2012-02-07 14:08:46 +0000507 speed = miiphy_speed(edev->name, fec->phy_id);
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200508 miiphy_duplex(edev->name, fec->phy_id);
Troy Kisky13947f42012-02-07 14:08:47 +0000509#endif
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400510
Troy Kisky28774cb2012-02-07 14:08:46 +0000511#ifdef FEC_QUIRK_ENET_MAC
512 {
513 u32 ecr = readl(&fec->eth->ecntrl) & ~FEC_ECNTRL_SPEED;
Alison Wangbcb6e902013-05-27 22:55:43 +0000514 u32 rcr = readl(&fec->eth->r_cntrl) & ~FEC_RCNTRL_RMII_10T;
Troy Kisky28774cb2012-02-07 14:08:46 +0000515 if (speed == _1000BASET)
516 ecr |= FEC_ECNTRL_SPEED;
517 else if (speed != _100BASET)
518 rcr |= FEC_RCNTRL_RMII_10T;
519 writel(ecr, &fec->eth->ecntrl);
520 writel(rcr, &fec->eth->r_cntrl);
521 }
522#endif
523 debug("%s:Speed=%i\n", __func__, speed);
524
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400525 /*
526 * Enable SmartDMA receive task
527 */
528 fec_rx_task_enable(fec);
529
530 udelay(100000);
531 return 0;
532}
533
534static int fec_init(struct eth_device *dev, bd_t* bd)
535{
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400536 struct fec_priv *fec = (struct fec_priv *)dev->priv;
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200537 uint32_t mib_ptr = (uint32_t)&fec->eth->rmon_t_drop;
Marek Vasut79e5f272013-10-12 20:36:25 +0200538 int i;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400539
John Rigbye9319f12010-10-13 14:31:08 -0600540 /* Initialize MAC address */
541 fec_set_hwaddr(dev);
542
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400543 /*
Marek Vasut79e5f272013-10-12 20:36:25 +0200544 * Setup transmit descriptors, there are two in total.
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400545 */
Marek Vasut79e5f272013-10-12 20:36:25 +0200546 fec_tbd_init(fec);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400547
Marek Vasut79e5f272013-10-12 20:36:25 +0200548 /* Setup receive descriptors. */
549 fec_rbd_init(fec, FEC_RBD_NUM, FEC_MAX_PKT_SIZE);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400550
Marek Vasuta5990b22012-05-01 11:09:41 +0000551 fec_reg_setup(fec);
Marek Vasut9eb37702011-09-11 18:05:31 +0000552
benoit.thebaudeau@advansf41471e2012-07-19 02:12:58 +0000553 if (fec->xcv_type != SEVENWIRE)
Troy Kisky575c5cc2012-10-22 16:40:41 +0000554 fec_mii_setspeed(fec->bus->priv);
Marek Vasut9eb37702011-09-11 18:05:31 +0000555
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400556 /*
557 * Set Opcode/Pause Duration Register
558 */
559 writel(0x00010020, &fec->eth->op_pause); /* FIXME 0xffff0020; */
560 writel(0x2, &fec->eth->x_wmrk);
561 /*
562 * Set multicast address filter
563 */
564 writel(0x00000000, &fec->eth->gaddr1);
565 writel(0x00000000, &fec->eth->gaddr2);
566
567
Peng Fanfbecbaa2015-08-12 17:46:51 +0800568 /* Do not access reserved register for i.MX6UL */
Peng Fan87f99892016-05-23 18:36:04 +0800569 if (!is_mx6ul()) {
Peng Fanfbecbaa2015-08-12 17:46:51 +0800570 /* clear MIB RAM */
571 for (i = mib_ptr; i <= mib_ptr + 0xfc; i += 4)
572 writel(0, i);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400573
Peng Fanfbecbaa2015-08-12 17:46:51 +0800574 /* FIFO receive start register */
575 writel(0x520, &fec->eth->r_fstart);
576 }
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400577
578 /* size and address of each buffer */
579 writel(FEC_MAX_PKT_SIZE, &fec->eth->emrbr);
580 writel((uint32_t)fec->tbd_base, &fec->eth->etdsr);
581 writel((uint32_t)fec->rbd_base, &fec->eth->erdsr);
582
Troy Kisky13947f42012-02-07 14:08:47 +0000583#ifndef CONFIG_PHYLIB
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400584 if (fec->xcv_type != SEVENWIRE)
585 miiphy_restart_aneg(dev);
Troy Kisky13947f42012-02-07 14:08:47 +0000586#endif
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400587 fec_open(dev);
588 return 0;
589}
590
591/**
592 * Halt the FEC engine
593 * @param[in] dev Our device to handle
594 */
595static void fec_halt(struct eth_device *dev)
596{
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200597 struct fec_priv *fec = (struct fec_priv *)dev->priv;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400598 int counter = 0xffff;
599
600 /*
601 * issue graceful stop command to the FEC transmitter if necessary
602 */
John Rigbycb17b922010-01-25 23:12:55 -0700603 writel(FEC_TCNTRL_GTS | readl(&fec->eth->x_cntrl),
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400604 &fec->eth->x_cntrl);
605
606 debug("eth_halt: wait for stop regs\n");
607 /*
608 * wait for graceful stop to register
609 */
610 while ((counter--) && (!(readl(&fec->eth->ievent) & FEC_IEVENT_GRA)))
John Rigbycb17b922010-01-25 23:12:55 -0700611 udelay(1);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400612
613 /*
614 * Disable SmartDMA tasks
615 */
616 fec_tx_task_disable(fec);
617 fec_rx_task_disable(fec);
618
619 /*
620 * Disable the Ethernet Controller
621 * Note: this will also reset the BD index counter!
622 */
John Rigby740d6ae2010-01-25 23:12:57 -0700623 writel(readl(&fec->eth->ecntrl) & ~FEC_ECNTRL_ETHER_EN,
624 &fec->eth->ecntrl);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400625 fec->rbd_index = 0;
626 fec->tbd_index = 0;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400627 debug("eth_halt: done\n");
628}
629
630/**
631 * Transmit one frame
632 * @param[in] dev Our ethernet device to handle
633 * @param[in] packet Pointer to the data to be transmitted
634 * @param[in] length Data count in bytes
635 * @return 0 on success
636 */
Joe Hershberger442dac42012-05-21 14:45:27 +0000637static int fec_send(struct eth_device *dev, void *packet, int length)
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400638{
639 unsigned int status;
Marek Vasutefe24d22012-08-26 10:19:21 +0000640 uint32_t size, end;
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000641 uint32_t addr;
Marek Vasutbc1ce152012-08-29 03:49:49 +0000642 int timeout = FEC_XFER_TIMEOUT;
643 int ret = 0;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400644
645 /*
646 * This routine transmits one frame. This routine only accepts
647 * 6-byte Ethernet addresses.
648 */
649 struct fec_priv *fec = (struct fec_priv *)dev->priv;
650
651 /*
652 * Check for valid length of data.
653 */
654 if ((length > 1500) || (length <= 0)) {
Stefano Babic4294b242010-02-01 14:51:30 +0100655 printf("Payload (%d) too large\n", length);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400656 return -1;
657 }
658
659 /*
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000660 * Setup the transmit buffer. We are always using the first buffer for
661 * transmission, the second will be empty and only used to stop the DMA
662 * engine. We also flush the packet to RAM here to avoid cache trouble.
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400663 */
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000664#ifdef CONFIG_FEC_MXC_SWAP_PACKET
Marek Vasutbe7e87e2011-11-08 23:18:10 +0000665 swap_packet((uint32_t *)packet, length);
666#endif
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000667
668 addr = (uint32_t)packet;
Marek Vasutefe24d22012-08-26 10:19:21 +0000669 end = roundup(addr + length, ARCH_DMA_MINALIGN);
670 addr &= ~(ARCH_DMA_MINALIGN - 1);
671 flush_dcache_range(addr, end);
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000672
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400673 writew(length, &fec->tbd_base[fec->tbd_index].data_length);
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000674 writel(addr, &fec->tbd_base[fec->tbd_index].data_pointer);
675
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400676 /*
677 * update BD's status now
678 * This block:
679 * - is always the last in a chain (means no chain)
680 * - should transmitt the CRC
681 * - might be the last BD in the list, so the address counter should
682 * wrap (-> keep the WRAP flag)
683 */
684 status = readw(&fec->tbd_base[fec->tbd_index].status) & FEC_TBD_WRAP;
685 status |= FEC_TBD_LAST | FEC_TBD_TC | FEC_TBD_READY;
686 writew(status, &fec->tbd_base[fec->tbd_index].status);
687
688 /*
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000689 * Flush data cache. This code flushes both TX descriptors to RAM.
690 * After this code, the descriptors will be safely in RAM and we
691 * can start DMA.
692 */
693 size = roundup(2 * sizeof(struct fec_bd), ARCH_DMA_MINALIGN);
694 addr = (uint32_t)fec->tbd_base;
695 flush_dcache_range(addr, addr + size);
696
697 /*
Marek Vasutab94cd42013-07-12 01:03:04 +0200698 * Below we read the DMA descriptor's last four bytes back from the
699 * DRAM. This is important in order to make sure that all WRITE
700 * operations on the bus that were triggered by previous cache FLUSH
701 * have completed.
702 *
703 * Otherwise, on MX28, it is possible to observe a corruption of the
704 * DMA descriptors. Please refer to schematic "Figure 1-2" in MX28RM
705 * for the bus structure of MX28. The scenario is as follows:
706 *
707 * 1) ARM core triggers a series of WRITEs on the AHB_ARB2 bus going
708 * to DRAM due to flush_dcache_range()
709 * 2) ARM core writes the FEC registers via AHB_ARB2
710 * 3) FEC DMA starts reading/writing from/to DRAM via AHB_ARB3
711 *
712 * Note that 2) does sometimes finish before 1) due to reordering of
713 * WRITE accesses on the AHB bus, therefore triggering 3) before the
714 * DMA descriptor is fully written into DRAM. This results in occasional
715 * corruption of the DMA descriptor.
716 */
717 readl(addr + size - 4);
718
719 /*
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400720 * Enable SmartDMA transmit task
721 */
722 fec_tx_task_enable(fec);
723
724 /*
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000725 * Wait until frame is sent. On each turn of the wait cycle, we must
726 * invalidate data cache to see what's really in RAM. Also, we need
727 * barrier here.
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400728 */
Marek Vasut67449092012-08-29 03:49:50 +0000729 while (--timeout) {
Marek Vasutc0b5a3b2012-08-29 03:49:51 +0000730 if (!(readl(&fec->eth->x_des_active) & FEC_X_DES_ACTIVE_TDAR))
Marek Vasutbc1ce152012-08-29 03:49:49 +0000731 break;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400732 }
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000733
Fabio Estevamf5992882014-08-25 13:34:17 -0300734 if (!timeout) {
735 ret = -EINVAL;
736 goto out;
737 }
738
739 /*
740 * The TDAR bit is cleared when the descriptors are all out from TX
741 * but on mx6solox we noticed that the READY bit is still not cleared
742 * right after TDAR.
743 * These are two distinct signals, and in IC simulation, we found that
744 * TDAR always gets cleared prior than the READY bit of last BD becomes
745 * cleared.
746 * In mx6solox, we use a later version of FEC IP. It looks like that
747 * this intrinsic behaviour of TDAR bit has changed in this newer FEC
748 * version.
749 *
750 * Fix this by polling the READY bit of BD after the TDAR polling,
751 * which covers the mx6solox case and does not harm the other SoCs.
752 */
753 timeout = FEC_XFER_TIMEOUT;
754 while (--timeout) {
755 invalidate_dcache_range(addr, addr + size);
756 if (!(readw(&fec->tbd_base[fec->tbd_index].status) &
757 FEC_TBD_READY))
758 break;
759 }
760
Marek Vasut67449092012-08-29 03:49:50 +0000761 if (!timeout)
762 ret = -EINVAL;
763
Fabio Estevamf5992882014-08-25 13:34:17 -0300764out:
Marek Vasut67449092012-08-29 03:49:50 +0000765 debug("fec_send: status 0x%x index %d ret %i\n",
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400766 readw(&fec->tbd_base[fec->tbd_index].status),
Marek Vasut67449092012-08-29 03:49:50 +0000767 fec->tbd_index, ret);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400768 /* for next transmission use the other buffer */
769 if (fec->tbd_index)
770 fec->tbd_index = 0;
771 else
772 fec->tbd_index = 1;
773
Marek Vasutbc1ce152012-08-29 03:49:49 +0000774 return ret;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400775}
776
777/**
778 * Pull one frame from the card
779 * @param[in] dev Our ethernet device to handle
780 * @return Length of packet read
781 */
782static int fec_recv(struct eth_device *dev)
783{
784 struct fec_priv *fec = (struct fec_priv *)dev->priv;
785 struct fec_bd *rbd = &fec->rbd_base[fec->rbd_index];
786 unsigned long ievent;
787 int frame_length, len = 0;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400788 uint16_t bd_status;
Marek Vasutefe24d22012-08-26 10:19:21 +0000789 uint32_t addr, size, end;
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000790 int i;
Fabio Estevamfd37f192013-09-17 23:13:10 -0300791 ALLOC_CACHE_ALIGN_BUFFER(uchar, buff, FEC_MAX_PKT_SIZE);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400792
793 /*
794 * Check if any critical events have happened
795 */
796 ievent = readl(&fec->eth->ievent);
797 writel(ievent, &fec->eth->ievent);
Marek Vasuteda959f2011-10-24 23:40:03 +0000798 debug("fec_recv: ievent 0x%lx\n", ievent);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400799 if (ievent & FEC_IEVENT_BABR) {
800 fec_halt(dev);
801 fec_init(dev, fec->bd);
802 printf("some error: 0x%08lx\n", ievent);
803 return 0;
804 }
805 if (ievent & FEC_IEVENT_HBERR) {
806 /* Heartbeat error */
807 writel(0x00000001 | readl(&fec->eth->x_cntrl),
808 &fec->eth->x_cntrl);
809 }
810 if (ievent & FEC_IEVENT_GRA) {
811 /* Graceful stop complete */
812 if (readl(&fec->eth->x_cntrl) & 0x00000001) {
813 fec_halt(dev);
814 writel(~0x00000001 & readl(&fec->eth->x_cntrl),
815 &fec->eth->x_cntrl);
816 fec_init(dev, fec->bd);
817 }
818 }
819
820 /*
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000821 * Read the buffer status. Before the status can be read, the data cache
822 * must be invalidated, because the data in RAM might have been changed
823 * by DMA. The descriptors are properly aligned to cachelines so there's
824 * no need to worry they'd overlap.
825 *
826 * WARNING: By invalidating the descriptor here, we also invalidate
827 * the descriptors surrounding this one. Therefore we can NOT change the
828 * contents of this descriptor nor the surrounding ones. The problem is
829 * that in order to mark the descriptor as processed, we need to change
830 * the descriptor. The solution is to mark the whole cache line when all
831 * descriptors in the cache line are processed.
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400832 */
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000833 addr = (uint32_t)rbd;
834 addr &= ~(ARCH_DMA_MINALIGN - 1);
835 size = roundup(sizeof(struct fec_bd), ARCH_DMA_MINALIGN);
836 invalidate_dcache_range(addr, addr + size);
837
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400838 bd_status = readw(&rbd->status);
839 debug("fec_recv: status 0x%x\n", bd_status);
840
841 if (!(bd_status & FEC_RBD_EMPTY)) {
842 if ((bd_status & FEC_RBD_LAST) && !(bd_status & FEC_RBD_ERR) &&
843 ((readw(&rbd->data_length) - 4) > 14)) {
844 /*
845 * Get buffer address and size
846 */
Albert ARIBAUD \(3ADEV\)b1895842015-06-19 14:18:27 +0200847 addr = readl(&rbd->data_pointer);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400848 frame_length = readw(&rbd->data_length) - 4;
849 /*
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000850 * Invalidate data cache over the buffer
851 */
Marek Vasutefe24d22012-08-26 10:19:21 +0000852 end = roundup(addr + frame_length, ARCH_DMA_MINALIGN);
853 addr &= ~(ARCH_DMA_MINALIGN - 1);
854 invalidate_dcache_range(addr, end);
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000855
856 /*
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400857 * Fill the buffer and pass it to upper layers
858 */
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000859#ifdef CONFIG_FEC_MXC_SWAP_PACKET
Albert ARIBAUD \(3ADEV\)b1895842015-06-19 14:18:27 +0200860 swap_packet((uint32_t *)addr, frame_length);
Marek Vasutbe7e87e2011-11-08 23:18:10 +0000861#endif
Albert ARIBAUD \(3ADEV\)b1895842015-06-19 14:18:27 +0200862 memcpy(buff, (char *)addr, frame_length);
Joe Hershberger1fd92db2015-04-08 01:41:06 -0500863 net_process_received_packet(buff, frame_length);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400864 len = frame_length;
865 } else {
866 if (bd_status & FEC_RBD_ERR)
Albert ARIBAUD \(3ADEV\)b1895842015-06-19 14:18:27 +0200867 printf("error frame: 0x%08x 0x%08x\n",
868 addr, bd_status);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400869 }
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000870
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400871 /*
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000872 * Free the current buffer, restart the engine and move forward
873 * to the next buffer. Here we check if the whole cacheline of
874 * descriptors was already processed and if so, we mark it free
875 * as whole.
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400876 */
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000877 size = RXDESC_PER_CACHELINE - 1;
878 if ((fec->rbd_index & size) == size) {
879 i = fec->rbd_index - size;
880 addr = (uint32_t)&fec->rbd_base[i];
881 for (; i <= fec->rbd_index ; i++) {
882 fec_rbd_clean(i == (FEC_RBD_NUM - 1),
883 &fec->rbd_base[i]);
884 }
885 flush_dcache_range(addr,
886 addr + ARCH_DMA_MINALIGN);
887 }
888
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400889 fec_rx_task_enable(fec);
890 fec->rbd_index = (fec->rbd_index + 1) % FEC_RBD_NUM;
891 }
892 debug("fec_recv: stop\n");
893
894 return len;
895}
896
Troy Kiskyef8e3a32012-10-22 16:40:44 +0000897static void fec_set_dev_name(char *dest, int dev_id)
898{
899 sprintf(dest, (dev_id == -1) ? "FEC" : "FEC%i", dev_id);
900}
901
Marek Vasut79e5f272013-10-12 20:36:25 +0200902static int fec_alloc_descs(struct fec_priv *fec)
903{
904 unsigned int size;
905 int i;
906 uint8_t *data;
907
908 /* Allocate TX descriptors. */
909 size = roundup(2 * sizeof(struct fec_bd), ARCH_DMA_MINALIGN);
910 fec->tbd_base = memalign(ARCH_DMA_MINALIGN, size);
911 if (!fec->tbd_base)
912 goto err_tx;
913
914 /* Allocate RX descriptors. */
915 size = roundup(FEC_RBD_NUM * sizeof(struct fec_bd), ARCH_DMA_MINALIGN);
916 fec->rbd_base = memalign(ARCH_DMA_MINALIGN, size);
917 if (!fec->rbd_base)
918 goto err_rx;
919
920 memset(fec->rbd_base, 0, size);
921
922 /* Allocate RX buffers. */
923
924 /* Maximum RX buffer size. */
Fabio Estevamdb5b7f52014-08-25 13:34:16 -0300925 size = roundup(FEC_MAX_PKT_SIZE, FEC_DMA_RX_MINALIGN);
Marek Vasut79e5f272013-10-12 20:36:25 +0200926 for (i = 0; i < FEC_RBD_NUM; i++) {
Fabio Estevamdb5b7f52014-08-25 13:34:16 -0300927 data = memalign(FEC_DMA_RX_MINALIGN, size);
Marek Vasut79e5f272013-10-12 20:36:25 +0200928 if (!data) {
929 printf("%s: error allocating rxbuf %d\n", __func__, i);
930 goto err_ring;
931 }
932
933 memset(data, 0, size);
934
935 fec->rbd_base[i].data_pointer = (uint32_t)data;
936 fec->rbd_base[i].status = FEC_RBD_EMPTY;
937 fec->rbd_base[i].data_length = 0;
938 /* Flush the buffer to memory. */
939 flush_dcache_range((uint32_t)data, (uint32_t)data + size);
940 }
941
942 /* Mark the last RBD to close the ring. */
943 fec->rbd_base[i - 1].status = FEC_RBD_WRAP | FEC_RBD_EMPTY;
944
945 fec->rbd_index = 0;
946 fec->tbd_index = 0;
947
948 return 0;
949
950err_ring:
951 for (; i >= 0; i--)
952 free((void *)fec->rbd_base[i].data_pointer);
953 free(fec->rbd_base);
954err_rx:
955 free(fec->tbd_base);
956err_tx:
957 return -ENOMEM;
958}
959
960static void fec_free_descs(struct fec_priv *fec)
961{
962 int i;
963
964 for (i = 0; i < FEC_RBD_NUM; i++)
965 free((void *)fec->rbd_base[i].data_pointer);
966 free(fec->rbd_base);
967 free(fec->tbd_base);
968}
969
Troy Kiskyfe428b92012-10-22 16:40:46 +0000970#ifdef CONFIG_PHYLIB
971int fec_probe(bd_t *bd, int dev_id, uint32_t base_addr,
972 struct mii_dev *bus, struct phy_device *phydev)
973#else
974static int fec_probe(bd_t *bd, int dev_id, uint32_t base_addr,
975 struct mii_dev *bus, int phy_id)
976#endif
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400977{
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400978 struct eth_device *edev;
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200979 struct fec_priv *fec;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400980 unsigned char ethaddr[6];
Marek Vasute382fb42011-09-11 18:05:37 +0000981 uint32_t start;
982 int ret = 0;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400983
984 /* create and fill edev struct */
985 edev = (struct eth_device *)malloc(sizeof(struct eth_device));
986 if (!edev) {
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200987 puts("fec_mxc: not enough malloc memory for eth_device\n");
Marek Vasute382fb42011-09-11 18:05:37 +0000988 ret = -ENOMEM;
989 goto err1;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400990 }
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200991
992 fec = (struct fec_priv *)malloc(sizeof(struct fec_priv));
993 if (!fec) {
994 puts("fec_mxc: not enough malloc memory for fec_priv\n");
Marek Vasute382fb42011-09-11 18:05:37 +0000995 ret = -ENOMEM;
996 goto err2;
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200997 }
998
Nobuhiro Iwamatsude0b9572010-10-19 14:03:42 +0900999 memset(edev, 0, sizeof(*edev));
Marek Vasut9e27e9d2011-09-16 01:13:47 +02001000 memset(fec, 0, sizeof(*fec));
1001
Marek Vasut79e5f272013-10-12 20:36:25 +02001002 ret = fec_alloc_descs(fec);
1003 if (ret)
1004 goto err3;
1005
Ilya Yanok0b23fb32009-07-21 19:32:21 +04001006 edev->priv = fec;
1007 edev->init = fec_init;
1008 edev->send = fec_send;
1009 edev->recv = fec_recv;
1010 edev->halt = fec_halt;
Heiko Schocherfb57ec92010-04-27 07:43:52 +02001011 edev->write_hwaddr = fec_set_hwaddr;
Ilya Yanok0b23fb32009-07-21 19:32:21 +04001012
Marek Vasut9e27e9d2011-09-16 01:13:47 +02001013 fec->eth = (struct ethernet_regs *)base_addr;
Ilya Yanok0b23fb32009-07-21 19:32:21 +04001014 fec->bd = bd;
1015
Marek Vasut392b8502011-09-11 18:05:33 +00001016 fec->xcv_type = CONFIG_FEC_XCV_TYPE;
Ilya Yanok0b23fb32009-07-21 19:32:21 +04001017
1018 /* Reset chip. */
John Rigbycb17b922010-01-25 23:12:55 -07001019 writel(readl(&fec->eth->ecntrl) | FEC_ECNTRL_RESET, &fec->eth->ecntrl);
Marek Vasute382fb42011-09-11 18:05:37 +00001020 start = get_timer(0);
1021 while (readl(&fec->eth->ecntrl) & FEC_ECNTRL_RESET) {
1022 if (get_timer(start) > (CONFIG_SYS_HZ * 5)) {
1023 printf("FEC MXC: Timeout reseting chip\n");
Marek Vasut79e5f272013-10-12 20:36:25 +02001024 goto err4;
Marek Vasute382fb42011-09-11 18:05:37 +00001025 }
Ilya Yanok0b23fb32009-07-21 19:32:21 +04001026 udelay(10);
Marek Vasute382fb42011-09-11 18:05:37 +00001027 }
Ilya Yanok0b23fb32009-07-21 19:32:21 +04001028
Marek Vasuta5990b22012-05-01 11:09:41 +00001029 fec_reg_setup(fec);
Troy Kiskyef8e3a32012-10-22 16:40:44 +00001030 fec_set_dev_name(edev->name, dev_id);
1031 fec->dev_id = (dev_id == -1) ? 0 : dev_id;
Troy Kisky13947f42012-02-07 14:08:47 +00001032 fec->bus = bus;
Troy Kiskyfe428b92012-10-22 16:40:46 +00001033 fec_mii_setspeed(bus->priv);
1034#ifdef CONFIG_PHYLIB
1035 fec->phydev = phydev;
1036 phy_connect_dev(phydev, edev);
1037 /* Configure phy */
1038 phy_config(phydev);
1039#else
1040 fec->phy_id = phy_id;
1041#endif
Ilya Yanok0b23fb32009-07-21 19:32:21 +04001042 eth_register(edev);
1043
Fabio Estevambe252b62011-12-20 05:46:31 +00001044 if (fec_get_hwaddr(edev, dev_id, ethaddr) == 0) {
1045 debug("got MAC%d address from fuse: %pM\n", dev_id, ethaddr);
Stefano Babic4294b242010-02-01 14:51:30 +01001046 memcpy(edev->enetaddr, ethaddr, 6);
Eric Nelsonddb636b2013-08-02 10:37:00 -07001047 if (!getenv("ethaddr"))
1048 eth_setenv_enetaddr("ethaddr", ethaddr);
Ilya Yanok0b23fb32009-07-21 19:32:21 +04001049 }
Marek Vasute382fb42011-09-11 18:05:37 +00001050 return ret;
Marek Vasut79e5f272013-10-12 20:36:25 +02001051err4:
1052 fec_free_descs(fec);
Marek Vasute382fb42011-09-11 18:05:37 +00001053err3:
1054 free(fec);
1055err2:
1056 free(edev);
1057err1:
1058 return ret;
Ilya Yanok0b23fb32009-07-21 19:32:21 +04001059}
1060
Troy Kiskyfe428b92012-10-22 16:40:46 +00001061struct mii_dev *fec_get_miibus(uint32_t base_addr, int dev_id)
1062{
1063 struct ethernet_regs *eth = (struct ethernet_regs *)base_addr;
1064 struct mii_dev *bus;
1065 int ret;
1066
1067 bus = mdio_alloc();
1068 if (!bus) {
1069 printf("mdio_alloc failed\n");
1070 return NULL;
1071 }
1072 bus->read = fec_phy_read;
1073 bus->write = fec_phy_write;
1074 bus->priv = eth;
1075 fec_set_dev_name(bus->name, dev_id);
1076
1077 ret = mdio_register(bus);
1078 if (ret) {
1079 printf("mdio_register failed\n");
1080 free(bus);
1081 return NULL;
1082 }
1083 fec_mii_setspeed(eth);
1084 return bus;
1085}
1086
Troy Kiskyeef24482012-10-22 16:40:42 +00001087int fecmxc_initialize_multi(bd_t *bd, int dev_id, int phy_id, uint32_t addr)
1088{
Troy Kiskyfe428b92012-10-22 16:40:46 +00001089 uint32_t base_mii;
1090 struct mii_dev *bus = NULL;
1091#ifdef CONFIG_PHYLIB
1092 struct phy_device *phydev = NULL;
1093#endif
1094 int ret;
1095
1096#ifdef CONFIG_MX28
1097 /*
1098 * The i.MX28 has two ethernet interfaces, but they are not equal.
1099 * Only the first one can access the MDIO bus.
1100 */
1101 base_mii = MXS_ENET0_BASE;
1102#else
1103 base_mii = addr;
1104#endif
Troy Kiskyeef24482012-10-22 16:40:42 +00001105 debug("eth_init: fec_probe(bd, %i, %i) @ %08x\n", dev_id, phy_id, addr);
Troy Kiskyfe428b92012-10-22 16:40:46 +00001106 bus = fec_get_miibus(base_mii, dev_id);
1107 if (!bus)
1108 return -ENOMEM;
1109#ifdef CONFIG_PHYLIB
1110 phydev = phy_find_by_mask(bus, 1 << phy_id, PHY_INTERFACE_MODE_RGMII);
1111 if (!phydev) {
Måns Rullgård845a57b2015-12-08 15:38:46 +00001112 mdio_unregister(bus);
Troy Kiskyfe428b92012-10-22 16:40:46 +00001113 free(bus);
1114 return -ENOMEM;
1115 }
1116 ret = fec_probe(bd, dev_id, addr, bus, phydev);
1117#else
1118 ret = fec_probe(bd, dev_id, addr, bus, phy_id);
1119#endif
1120 if (ret) {
1121#ifdef CONFIG_PHYLIB
1122 free(phydev);
1123#endif
Måns Rullgård845a57b2015-12-08 15:38:46 +00001124 mdio_unregister(bus);
Troy Kiskyfe428b92012-10-22 16:40:46 +00001125 free(bus);
1126 }
1127 return ret;
Troy Kiskyeef24482012-10-22 16:40:42 +00001128}
1129
Troy Kisky09439c32012-10-22 16:40:40 +00001130#ifdef CONFIG_FEC_MXC_PHYADDR
Ilya Yanok0b23fb32009-07-21 19:32:21 +04001131int fecmxc_initialize(bd_t *bd)
1132{
Troy Kiskyeef24482012-10-22 16:40:42 +00001133 return fecmxc_initialize_multi(bd, -1, CONFIG_FEC_MXC_PHYADDR,
1134 IMX_FEC_BASE);
Marek Vasut9e27e9d2011-09-16 01:13:47 +02001135}
1136#endif
1137
Troy Kisky13947f42012-02-07 14:08:47 +00001138#ifndef CONFIG_PHYLIB
Marek Vasut2e5f4422011-09-11 18:05:36 +00001139int fecmxc_register_mii_postcall(struct eth_device *dev, int (*cb)(int))
1140{
1141 struct fec_priv *fec = (struct fec_priv *)dev->priv;
1142 fec->mii_postcall = cb;
1143 return 0;
1144}
Troy Kisky13947f42012-02-07 14:08:47 +00001145#endif