blob: b642770d9c9701c2979e5068da748bd3788c7132 [file] [log] [blame]
Ilya Yanoke93a4a52009-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 Denkd79de1d2013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
Ilya Yanoke93a4a52009-07-21 19:32:21 +04009 */
10
11#include <common.h>
12#include <malloc.h>
Simon Glass2dd337a2015-09-02 17:24:58 -060013#include <memalign.h>
Ilya Yanoke93a4a52009-07-21 19:32:21 +040014#include <net.h>
Jeroen Hofstee120f43f2014-10-08 22:57:40 +020015#include <netdev.h>
Ilya Yanoke93a4a52009-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 Fan13433fd2015-08-12 17:46:51 +080021#include <asm/imx-common/sys_proto.h>
Ilya Yanoke93a4a52009-07-21 19:32:21 +040022#include <asm/io.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090023#include <linux/errno.h>
Marek Vasut4d85b032012-08-26 10:19:20 +000024#include <linux/compiler.h>
Ilya Yanoke93a4a52009-07-21 19:32:21 +040025
26DECLARE_GLOBAL_DATA_PTR;
27
Marek Vasut5f1631d2012-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 Estevam8b798b22014-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 Yanoke93a4a52009-07-21 19:32:21 +040042#ifndef CONFIG_MII
43#error "CONFIG_MII has to be defined!"
44#endif
45
Eric Nelson3d2f7272012-03-15 18:33:25 +000046#ifndef CONFIG_FEC_XCV_TYPE
47#define CONFIG_FEC_XCV_TYPE MII100
Marek Vasutdbb4fce2011-09-11 18:05:33 +000048#endif
49
Marek Vasut6a5fd4c2011-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 Nelson3d2f7272012-03-15 18:33:25 +000054#ifdef CONFIG_MX28
55#define CONFIG_FEC_MXC_SWAP_PACKET
Marek Vasut6a5fd4c2011-11-08 23:18:10 +000056#endif
57
Eric Nelson3d2f7272012-03-15 18:33:25 +000058#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!"
68#endif
69
Ilya Yanoke93a4a52009-07-21 19:32:21 +040070#undef DEBUG
71
Eric Nelson3d2f7272012-03-15 18:33:25 +000072#ifdef CONFIG_FEC_MXC_SWAP_PACKET
Marek Vasut6a5fd4c2011-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
Ilya Yanoke93a4a52009-07-21 19:32:21 +040082/*
83 * MII-interface related functions
84 */
Troy Kisky2000c662012-02-07 14:08:47 +000085static int fec_mdio_read(struct ethernet_regs *eth, uint8_t phyAddr,
86 uint8_t regAddr)
Ilya Yanoke93a4a52009-07-21 19:32:21 +040087{
Ilya Yanoke93a4a52009-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 Kisky2000c662012-02-07 14:08:47 +000091 int val;
Ilya Yanoke93a4a52009-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 Vasutbf2386b2011-09-11 18:05:34 +000097 writel(FEC_IEVENT_MII, &eth->ievent);
Ilya Yanoke93a4a52009-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 Vasutbf2386b2011-09-11 18:05:34 +0000102 phy | reg, &eth->mii_data);
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400103
104 /*
105 * wait for the related interrupt
106 */
Graeme Russf8b82ee2011-07-15 23:31:37 +0000107 start = get_timer(0);
Marek Vasutbf2386b2011-09-11 18:05:34 +0000108 while (!(readl(&eth->ievent) & FEC_IEVENT_MII)) {
Ilya Yanoke93a4a52009-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 Vasutbf2386b2011-09-11 18:05:34 +0000118 writel(FEC_IEVENT_MII, &eth->ievent);
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400119
120 /*
121 * it's now safe to read the PHY's register
122 */
Troy Kisky2000c662012-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 Yanoke93a4a52009-07-21 19:32:21 +0400127}
128
Troy Kisky5e762652012-10-22 16:40:41 +0000129static void fec_mii_setspeed(struct ethernet_regs *eth)
Stefano Babic889f2e22010-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ård4aeddb72015-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 Babic889f2e22010-02-01 14:51:30 +0100145 */
Måns Rullgård4aeddb72015-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 Niebel1af82742014-02-05 10:54:11 +0100149#ifdef FEC_QUIRK_ENET_MAC
150 speed--;
151#endif
Måns Rullgård4aeddb72015-12-08 15:38:45 +0000152 writel(speed << 1 | hold << 8, &eth->mii_speed);
Troy Kisky5e762652012-10-22 16:40:41 +0000153 debug("%s: mii_speed %08x\n", __func__, readl(&eth->mii_speed));
Stefano Babic889f2e22010-02-01 14:51:30 +0100154}
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400155
Troy Kisky2000c662012-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 Yanoke93a4a52009-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 Vasutbf2386b2011-09-11 18:05:34 +0000167 FEC_MII_DATA_TA | phy | reg | data, &eth->mii_data);
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400168
169 /*
170 * wait for the MII interrupt
171 */
Graeme Russf8b82ee2011-07-15 23:31:37 +0000172 start = get_timer(0);
Marek Vasutbf2386b2011-09-11 18:05:34 +0000173 while (!(readl(&eth->ievent) & FEC_IEVENT_MII)) {
Ilya Yanoke93a4a52009-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 Vasutbf2386b2011-09-11 18:05:34 +0000183 writel(FEC_IEVENT_MII, &eth->ievent);
Troy Kisky2000c662012-02-07 14:08:47 +0000184 debug("%s: phy: %02x reg:%02x val:%#x\n", __func__, phyAddr,
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400185 regAddr, data);
186
187 return 0;
188}
189
Jeroen Hofstee120f43f2014-10-08 22:57:40 +0200190static int fec_phy_read(struct mii_dev *bus, int phyAddr, int dev_addr,
191 int regAddr)
Troy Kisky2000c662012-02-07 14:08:47 +0000192{
193 return fec_mdio_read(bus->priv, phyAddr, regAddr);
194}
195
Jeroen Hofstee120f43f2014-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 Kisky2000c662012-02-07 14:08:47 +0000198{
199 return fec_mdio_write(bus->priv, phyAddr, regAddr, data);
200}
201
202#ifndef CONFIG_PHYLIB
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400203static int miiphy_restart_aneg(struct eth_device *dev)
204{
Stefano Babicd6228172012-02-22 00:24:35 +0000205 int ret = 0;
206#if !defined(CONFIG_FEC_MXC_NO_ANEG)
Marek Vasutedcd6c02011-09-16 01:13:47 +0200207 struct fec_priv *fec = (struct fec_priv *)dev->priv;
Troy Kisky2000c662012-02-07 14:08:47 +0000208 struct ethernet_regs *eth = fec->bus->priv;
Marek Vasutedcd6c02011-09-16 01:13:47 +0200209
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400210 /*
211 * Wake up from sleep if necessary
212 * Reset PHY, then delay 300ns
213 */
John Rigbye650e492010-01-25 23:12:55 -0700214#ifdef CONFIG_MX27
Troy Kisky2000c662012-02-07 14:08:47 +0000215 fec_mdio_write(eth, fec->phy_id, MII_DCOUNTER, 0x00FF);
John Rigbye650e492010-01-25 23:12:55 -0700216#endif
Troy Kisky2000c662012-02-07 14:08:47 +0000217 fec_mdio_write(eth, fec->phy_id, MII_BMCR, BMCR_RESET);
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400218 udelay(1000);
219
220 /*
221 * Set the auto-negotiation advertisement register bits
222 */
Troy Kisky2000c662012-02-07 14:08:47 +0000223 fec_mdio_write(eth, fec->phy_id, MII_ADVERTISE,
Mike Frysingerd63ee712010-12-23 15:40:12 -0500224 LPA_100FULL | LPA_100HALF | LPA_10FULL |
225 LPA_10HALF | PHY_ANLPAR_PSB_802_3);
Troy Kisky2000c662012-02-07 14:08:47 +0000226 fec_mdio_write(eth, fec->phy_id, MII_BMCR,
Mike Frysingerd63ee712010-12-23 15:40:12 -0500227 BMCR_ANENABLE | BMCR_ANRESTART);
Marek Vasut539ecee2011-09-11 18:05:36 +0000228
229 if (fec->mii_postcall)
230 ret = fec->mii_postcall(fec->phy_id);
231
Stefano Babicd6228172012-02-22 00:24:35 +0000232#endif
Marek Vasut539ecee2011-09-11 18:05:36 +0000233 return ret;
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400234}
235
Hannes Schmelzer5a15c1a2016-06-22 12:07:14 +0200236#ifndef CONFIG_FEC_FIXED_SPEED
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400237static int miiphy_wait_aneg(struct eth_device *dev)
238{
239 uint32_t start;
Troy Kisky2000c662012-02-07 14:08:47 +0000240 int status;
Marek Vasutedcd6c02011-09-16 01:13:47 +0200241 struct fec_priv *fec = (struct fec_priv *)dev->priv;
Troy Kisky2000c662012-02-07 14:08:47 +0000242 struct ethernet_regs *eth = fec->bus->priv;
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400243
244 /*
245 * Wait for AN completion
246 */
Graeme Russf8b82ee2011-07-15 23:31:37 +0000247 start = get_timer(0);
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400248 do {
249 if (get_timer(start) > (CONFIG_SYS_HZ * 5)) {
250 printf("%s: Autonegotiation timeout\n", dev->name);
251 return -1;
252 }
253
Troy Kisky2000c662012-02-07 14:08:47 +0000254 status = fec_mdio_read(eth, fec->phy_id, MII_BMSR);
255 if (status < 0) {
256 printf("%s: Autonegotiation failed. status: %d\n",
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400257 dev->name, status);
258 return -1;
259 }
Mike Frysingerd63ee712010-12-23 15:40:12 -0500260 } while (!(status & BMSR_LSTATUS));
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400261
262 return 0;
263}
Hannes Schmelzer5a15c1a2016-06-22 12:07:14 +0200264#endif /* CONFIG_FEC_FIXED_SPEED */
Troy Kisky2000c662012-02-07 14:08:47 +0000265#endif
266
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400267static int fec_rx_task_enable(struct fec_priv *fec)
268{
Marek Vasutc1582c02012-08-29 03:49:51 +0000269 writel(FEC_R_DES_ACTIVE_RDAR, &fec->eth->r_des_active);
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400270 return 0;
271}
272
273static int fec_rx_task_disable(struct fec_priv *fec)
274{
275 return 0;
276}
277
278static int fec_tx_task_enable(struct fec_priv *fec)
279{
Marek Vasutc1582c02012-08-29 03:49:51 +0000280 writel(FEC_X_DES_ACTIVE_TDAR, &fec->eth->x_des_active);
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400281 return 0;
282}
283
284static int fec_tx_task_disable(struct fec_priv *fec)
285{
286 return 0;
287}
288
289/**
290 * Initialize receive task's buffer descriptors
291 * @param[in] fec all we know about the device yet
292 * @param[in] count receive buffer count to be allocated
Eric Nelson3d2f7272012-03-15 18:33:25 +0000293 * @param[in] dsize desired size of each receive buffer
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400294 * @return 0 on success
295 *
Marek Vasut03880452013-10-12 20:36:25 +0200296 * Init all RX descriptors to default values.
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400297 */
Marek Vasut03880452013-10-12 20:36:25 +0200298static void fec_rbd_init(struct fec_priv *fec, int count, int dsize)
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400299{
Eric Nelson3d2f7272012-03-15 18:33:25 +0000300 uint32_t size;
Marek Vasut03880452013-10-12 20:36:25 +0200301 uint8_t *data;
Eric Nelson3d2f7272012-03-15 18:33:25 +0000302 int i;
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400303
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400304 /*
Marek Vasut03880452013-10-12 20:36:25 +0200305 * Reload the RX descriptors with default values and wipe
306 * the RX buffers.
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400307 */
Eric Nelson3d2f7272012-03-15 18:33:25 +0000308 size = roundup(dsize, ARCH_DMA_MINALIGN);
309 for (i = 0; i < count; i++) {
Marek Vasut03880452013-10-12 20:36:25 +0200310 data = (uint8_t *)fec->rbd_base[i].data_pointer;
311 memset(data, 0, dsize);
312 flush_dcache_range((uint32_t)data, (uint32_t)data + size);
313
314 fec->rbd_base[i].status = FEC_RBD_EMPTY;
315 fec->rbd_base[i].data_length = 0;
Eric Nelson3d2f7272012-03-15 18:33:25 +0000316 }
317
318 /* Mark the last RBD to close the ring. */
Marek Vasut03880452013-10-12 20:36:25 +0200319 fec->rbd_base[i - 1].status = FEC_RBD_WRAP | FEC_RBD_EMPTY;
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400320 fec->rbd_index = 0;
321
Marek Vasut03880452013-10-12 20:36:25 +0200322 flush_dcache_range((unsigned)fec->rbd_base,
323 (unsigned)fec->rbd_base + size);
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400324}
325
326/**
327 * Initialize transmit task's buffer descriptors
328 * @param[in] fec all we know about the device yet
329 *
330 * Transmit buffers are created externally. We only have to init the BDs here.\n
331 * Note: There is a race condition in the hardware. When only one BD is in
332 * use it must be marked with the WRAP bit to use it for every transmitt.
333 * This bit in combination with the READY bit results into double transmit
334 * of each data buffer. It seems the state machine checks READY earlier then
335 * resetting it after the first transfer.
336 * Using two BDs solves this issue.
337 */
338static void fec_tbd_init(struct fec_priv *fec)
339{
Eric Nelson3d2f7272012-03-15 18:33:25 +0000340 unsigned addr = (unsigned)fec->tbd_base;
341 unsigned size = roundup(2 * sizeof(struct fec_bd),
342 ARCH_DMA_MINALIGN);
Marek Vasut03880452013-10-12 20:36:25 +0200343
344 memset(fec->tbd_base, 0, size);
345 fec->tbd_base[0].status = 0;
346 fec->tbd_base[1].status = FEC_TBD_WRAP;
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400347 fec->tbd_index = 0;
Marek Vasut03880452013-10-12 20:36:25 +0200348 flush_dcache_range(addr, addr + size);
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400349}
350
351/**
352 * Mark the given read buffer descriptor as free
353 * @param[in] last 1 if this is the last buffer descriptor in the chain, else 0
354 * @param[in] pRbd buffer descriptor to mark free again
355 */
356static void fec_rbd_clean(int last, struct fec_bd *pRbd)
357{
Eric Nelson3d2f7272012-03-15 18:33:25 +0000358 unsigned short flags = FEC_RBD_EMPTY;
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400359 if (last)
Eric Nelson3d2f7272012-03-15 18:33:25 +0000360 flags |= FEC_RBD_WRAP;
361 writew(flags, &pRbd->status);
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400362 writew(0, &pRbd->data_length);
363}
364
Jagan Tekibc5fb462016-12-06 00:00:48 +0100365static int fec_get_hwaddr(int dev_id, unsigned char *mac)
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400366{
Fabio Estevam04fc1282011-12-20 05:46:31 +0000367 imx_get_mac_from_fuse(dev_id, mac);
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500368 return !is_valid_ethaddr(mac);
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400369}
370
Stefano Babic889f2e22010-02-01 14:51:30 +0100371static int fec_set_hwaddr(struct eth_device *dev)
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400372{
Stefano Babic889f2e22010-02-01 14:51:30 +0100373 uchar *mac = dev->enetaddr;
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400374 struct fec_priv *fec = (struct fec_priv *)dev->priv;
375
376 writel(0, &fec->eth->iaddr1);
377 writel(0, &fec->eth->iaddr2);
378 writel(0, &fec->eth->gaddr1);
379 writel(0, &fec->eth->gaddr2);
380
381 /*
382 * Set physical address
383 */
384 writel((mac[0] << 24) + (mac[1] << 16) + (mac[2] << 8) + mac[3],
385 &fec->eth->paddr1);
386 writel((mac[4] << 24) + (mac[5] << 16) + 0x8808, &fec->eth->paddr2);
387
388 return 0;
389}
390
Marek Vasut335cbd22012-05-01 11:09:41 +0000391/*
392 * Do initial configuration of the FEC registers
393 */
394static void fec_reg_setup(struct fec_priv *fec)
395{
396 uint32_t rcntrl;
397
398 /*
399 * Set interrupt mask register
400 */
401 writel(0x00000000, &fec->eth->imask);
402
403 /*
404 * Clear FEC-Lite interrupt event register(IEVENT)
405 */
406 writel(0xffffffff, &fec->eth->ievent);
407
408
409 /*
410 * Set FEC-Lite receive control register(R_CNTRL):
411 */
412
413 /* Start with frame length = 1518, common for all modes. */
414 rcntrl = PKTSIZE << FEC_RCNTRL_MAX_FL_SHIFT;
benoit.thebaudeau@advansacc7a282012-07-19 02:12:46 +0000415 if (fec->xcv_type != SEVENWIRE) /* xMII modes */
416 rcntrl |= FEC_RCNTRL_FCE | FEC_RCNTRL_MII_MODE;
417 if (fec->xcv_type == RGMII)
Marek Vasut335cbd22012-05-01 11:09:41 +0000418 rcntrl |= FEC_RCNTRL_RGMII;
419 else if (fec->xcv_type == RMII)
420 rcntrl |= FEC_RCNTRL_RMII;
Marek Vasut335cbd22012-05-01 11:09:41 +0000421
422 writel(rcntrl, &fec->eth->r_cntrl);
423}
424
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400425/**
426 * Start the FEC engine
427 * @param[in] dev Our device to handle
428 */
429static int fec_open(struct eth_device *edev)
430{
431 struct fec_priv *fec = (struct fec_priv *)edev->priv;
Troy Kisky01112132012-02-07 14:08:46 +0000432 int speed;
Eric Nelson3d2f7272012-03-15 18:33:25 +0000433 uint32_t addr, size;
434 int i;
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400435
436 debug("fec_open: fec_open(dev)\n");
437 /* full-duplex, heartbeat disabled */
438 writel(1 << 2, &fec->eth->x_cntrl);
439 fec->rbd_index = 0;
440
Eric Nelson3d2f7272012-03-15 18:33:25 +0000441 /* Invalidate all descriptors */
442 for (i = 0; i < FEC_RBD_NUM - 1; i++)
443 fec_rbd_clean(0, &fec->rbd_base[i]);
444 fec_rbd_clean(1, &fec->rbd_base[i]);
445
446 /* Flush the descriptors into RAM */
447 size = roundup(FEC_RBD_NUM * sizeof(struct fec_bd),
448 ARCH_DMA_MINALIGN);
449 addr = (uint32_t)fec->rbd_base;
450 flush_dcache_range(addr, addr + size);
451
Troy Kisky01112132012-02-07 14:08:46 +0000452#ifdef FEC_QUIRK_ENET_MAC
Jason Liubbcef6c2011-12-16 05:17:07 +0000453 /* Enable ENET HW endian SWAP */
454 writel(readl(&fec->eth->ecntrl) | FEC_ECNTRL_DBSWAP,
455 &fec->eth->ecntrl);
456 /* Enable ENET store and forward mode */
457 writel(readl(&fec->eth->x_wmrk) | FEC_X_WMRK_STRFWD,
458 &fec->eth->x_wmrk);
459#endif
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400460 /*
461 * Enable FEC-Lite controller
462 */
John Rigbye650e492010-01-25 23:12:55 -0700463 writel(readl(&fec->eth->ecntrl) | FEC_ECNTRL_ETHER_EN,
464 &fec->eth->ecntrl);
Fabio Estevam84c1f522013-09-13 00:36:27 -0300465#if defined(CONFIG_MX25) || defined(CONFIG_MX53) || defined(CONFIG_MX6SL)
John Rigby99d5fed2010-01-25 23:12:57 -0700466 udelay(100);
467 /*
468 * setup the MII gasket for RMII mode
469 */
470
471 /* disable the gasket */
472 writew(0, &fec->eth->miigsk_enr);
473
474 /* wait for the gasket to be disabled */
475 while (readw(&fec->eth->miigsk_enr) & MIIGSK_ENR_READY)
476 udelay(2);
477
478 /* configure gasket for RMII, 50 MHz, no loopback, and no echo */
479 writew(MIIGSK_CFGR_IF_MODE_RMII, &fec->eth->miigsk_cfgr);
480
481 /* re-enable the gasket */
482 writew(MIIGSK_ENR_EN, &fec->eth->miigsk_enr);
483
484 /* wait until MII gasket is ready */
485 int max_loops = 10;
486 while ((readw(&fec->eth->miigsk_enr) & MIIGSK_ENR_READY) == 0) {
487 if (--max_loops <= 0) {
488 printf("WAIT for MII Gasket ready timed out\n");
489 break;
490 }
491 }
492#endif
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400493
Troy Kisky2000c662012-02-07 14:08:47 +0000494#ifdef CONFIG_PHYLIB
Troy Kisky2c42b3c2012-10-22 16:40:45 +0000495 {
Troy Kisky2000c662012-02-07 14:08:47 +0000496 /* Start up the PHY */
Timur Tabi42387462012-07-09 08:52:43 +0000497 int ret = phy_startup(fec->phydev);
498
499 if (ret) {
500 printf("Could not initialize PHY %s\n",
501 fec->phydev->dev->name);
502 return ret;
503 }
Troy Kisky2000c662012-02-07 14:08:47 +0000504 speed = fec->phydev->speed;
Troy Kisky2000c662012-02-07 14:08:47 +0000505 }
Hannes Schmelzer5a15c1a2016-06-22 12:07:14 +0200506#elif CONFIG_FEC_FIXED_SPEED
507 speed = CONFIG_FEC_FIXED_SPEED;
Troy Kisky2000c662012-02-07 14:08:47 +0000508#else
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400509 miiphy_wait_aneg(edev);
Troy Kisky01112132012-02-07 14:08:46 +0000510 speed = miiphy_speed(edev->name, fec->phy_id);
Marek Vasutedcd6c02011-09-16 01:13:47 +0200511 miiphy_duplex(edev->name, fec->phy_id);
Troy Kisky2000c662012-02-07 14:08:47 +0000512#endif
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400513
Troy Kisky01112132012-02-07 14:08:46 +0000514#ifdef FEC_QUIRK_ENET_MAC
515 {
516 u32 ecr = readl(&fec->eth->ecntrl) & ~FEC_ECNTRL_SPEED;
Alison Wang89d932a2013-05-27 22:55:43 +0000517 u32 rcr = readl(&fec->eth->r_cntrl) & ~FEC_RCNTRL_RMII_10T;
Troy Kisky01112132012-02-07 14:08:46 +0000518 if (speed == _1000BASET)
519 ecr |= FEC_ECNTRL_SPEED;
520 else if (speed != _100BASET)
521 rcr |= FEC_RCNTRL_RMII_10T;
522 writel(ecr, &fec->eth->ecntrl);
523 writel(rcr, &fec->eth->r_cntrl);
524 }
525#endif
526 debug("%s:Speed=%i\n", __func__, speed);
527
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400528 /*
529 * Enable SmartDMA receive task
530 */
531 fec_rx_task_enable(fec);
532
533 udelay(100000);
534 return 0;
535}
536
537static int fec_init(struct eth_device *dev, bd_t* bd)
538{
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400539 struct fec_priv *fec = (struct fec_priv *)dev->priv;
Marek Vasutedcd6c02011-09-16 01:13:47 +0200540 uint32_t mib_ptr = (uint32_t)&fec->eth->rmon_t_drop;
Marek Vasut03880452013-10-12 20:36:25 +0200541 int i;
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400542
John Rigbya4a30552010-10-13 14:31:08 -0600543 /* Initialize MAC address */
544 fec_set_hwaddr(dev);
545
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400546 /*
Marek Vasut03880452013-10-12 20:36:25 +0200547 * Setup transmit descriptors, there are two in total.
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400548 */
Marek Vasut03880452013-10-12 20:36:25 +0200549 fec_tbd_init(fec);
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400550
Marek Vasut03880452013-10-12 20:36:25 +0200551 /* Setup receive descriptors. */
552 fec_rbd_init(fec, FEC_RBD_NUM, FEC_MAX_PKT_SIZE);
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400553
Marek Vasut335cbd22012-05-01 11:09:41 +0000554 fec_reg_setup(fec);
Marek Vasutb8f88562011-09-11 18:05:31 +0000555
benoit.thebaudeau@advans551bb362012-07-19 02:12:58 +0000556 if (fec->xcv_type != SEVENWIRE)
Troy Kisky5e762652012-10-22 16:40:41 +0000557 fec_mii_setspeed(fec->bus->priv);
Marek Vasutb8f88562011-09-11 18:05:31 +0000558
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400559 /*
560 * Set Opcode/Pause Duration Register
561 */
562 writel(0x00010020, &fec->eth->op_pause); /* FIXME 0xffff0020; */
563 writel(0x2, &fec->eth->x_wmrk);
564 /*
565 * Set multicast address filter
566 */
567 writel(0x00000000, &fec->eth->gaddr1);
568 writel(0x00000000, &fec->eth->gaddr2);
569
570
Peng Fan13433fd2015-08-12 17:46:51 +0800571 /* Do not access reserved register for i.MX6UL */
Peng Fan53cd7bb2016-05-23 18:36:04 +0800572 if (!is_mx6ul()) {
Peng Fan13433fd2015-08-12 17:46:51 +0800573 /* clear MIB RAM */
574 for (i = mib_ptr; i <= mib_ptr + 0xfc; i += 4)
575 writel(0, i);
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400576
Peng Fan13433fd2015-08-12 17:46:51 +0800577 /* FIFO receive start register */
578 writel(0x520, &fec->eth->r_fstart);
579 }
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400580
581 /* size and address of each buffer */
582 writel(FEC_MAX_PKT_SIZE, &fec->eth->emrbr);
583 writel((uint32_t)fec->tbd_base, &fec->eth->etdsr);
584 writel((uint32_t)fec->rbd_base, &fec->eth->erdsr);
585
Troy Kisky2000c662012-02-07 14:08:47 +0000586#ifndef CONFIG_PHYLIB
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400587 if (fec->xcv_type != SEVENWIRE)
588 miiphy_restart_aneg(dev);
Troy Kisky2000c662012-02-07 14:08:47 +0000589#endif
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400590 fec_open(dev);
591 return 0;
592}
593
594/**
595 * Halt the FEC engine
596 * @param[in] dev Our device to handle
597 */
598static void fec_halt(struct eth_device *dev)
599{
Marek Vasutedcd6c02011-09-16 01:13:47 +0200600 struct fec_priv *fec = (struct fec_priv *)dev->priv;
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400601 int counter = 0xffff;
602
603 /*
604 * issue graceful stop command to the FEC transmitter if necessary
605 */
John Rigbye650e492010-01-25 23:12:55 -0700606 writel(FEC_TCNTRL_GTS | readl(&fec->eth->x_cntrl),
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400607 &fec->eth->x_cntrl);
608
609 debug("eth_halt: wait for stop regs\n");
610 /*
611 * wait for graceful stop to register
612 */
613 while ((counter--) && (!(readl(&fec->eth->ievent) & FEC_IEVENT_GRA)))
John Rigbye650e492010-01-25 23:12:55 -0700614 udelay(1);
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400615
616 /*
617 * Disable SmartDMA tasks
618 */
619 fec_tx_task_disable(fec);
620 fec_rx_task_disable(fec);
621
622 /*
623 * Disable the Ethernet Controller
624 * Note: this will also reset the BD index counter!
625 */
John Rigby99d5fed2010-01-25 23:12:57 -0700626 writel(readl(&fec->eth->ecntrl) & ~FEC_ECNTRL_ETHER_EN,
627 &fec->eth->ecntrl);
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400628 fec->rbd_index = 0;
629 fec->tbd_index = 0;
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400630 debug("eth_halt: done\n");
631}
632
633/**
634 * Transmit one frame
635 * @param[in] dev Our ethernet device to handle
636 * @param[in] packet Pointer to the data to be transmitted
637 * @param[in] length Data count in bytes
638 * @return 0 on success
639 */
Joe Hershberger7c31bd12012-05-21 14:45:27 +0000640static int fec_send(struct eth_device *dev, void *packet, int length)
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400641{
642 unsigned int status;
Marek Vasut4325d242012-08-26 10:19:21 +0000643 uint32_t size, end;
Eric Nelson3d2f7272012-03-15 18:33:25 +0000644 uint32_t addr;
Marek Vasut5f1631d2012-08-29 03:49:49 +0000645 int timeout = FEC_XFER_TIMEOUT;
646 int ret = 0;
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400647
648 /*
649 * This routine transmits one frame. This routine only accepts
650 * 6-byte Ethernet addresses.
651 */
652 struct fec_priv *fec = (struct fec_priv *)dev->priv;
653
654 /*
655 * Check for valid length of data.
656 */
657 if ((length > 1500) || (length <= 0)) {
Stefano Babic889f2e22010-02-01 14:51:30 +0100658 printf("Payload (%d) too large\n", length);
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400659 return -1;
660 }
661
662 /*
Eric Nelson3d2f7272012-03-15 18:33:25 +0000663 * Setup the transmit buffer. We are always using the first buffer for
664 * transmission, the second will be empty and only used to stop the DMA
665 * engine. We also flush the packet to RAM here to avoid cache trouble.
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400666 */
Eric Nelson3d2f7272012-03-15 18:33:25 +0000667#ifdef CONFIG_FEC_MXC_SWAP_PACKET
Marek Vasut6a5fd4c2011-11-08 23:18:10 +0000668 swap_packet((uint32_t *)packet, length);
669#endif
Eric Nelson3d2f7272012-03-15 18:33:25 +0000670
671 addr = (uint32_t)packet;
Marek Vasut4325d242012-08-26 10:19:21 +0000672 end = roundup(addr + length, ARCH_DMA_MINALIGN);
673 addr &= ~(ARCH_DMA_MINALIGN - 1);
674 flush_dcache_range(addr, end);
Eric Nelson3d2f7272012-03-15 18:33:25 +0000675
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400676 writew(length, &fec->tbd_base[fec->tbd_index].data_length);
Eric Nelson3d2f7272012-03-15 18:33:25 +0000677 writel(addr, &fec->tbd_base[fec->tbd_index].data_pointer);
678
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400679 /*
680 * update BD's status now
681 * This block:
682 * - is always the last in a chain (means no chain)
683 * - should transmitt the CRC
684 * - might be the last BD in the list, so the address counter should
685 * wrap (-> keep the WRAP flag)
686 */
687 status = readw(&fec->tbd_base[fec->tbd_index].status) & FEC_TBD_WRAP;
688 status |= FEC_TBD_LAST | FEC_TBD_TC | FEC_TBD_READY;
689 writew(status, &fec->tbd_base[fec->tbd_index].status);
690
691 /*
Eric Nelson3d2f7272012-03-15 18:33:25 +0000692 * Flush data cache. This code flushes both TX descriptors to RAM.
693 * After this code, the descriptors will be safely in RAM and we
694 * can start DMA.
695 */
696 size = roundup(2 * sizeof(struct fec_bd), ARCH_DMA_MINALIGN);
697 addr = (uint32_t)fec->tbd_base;
698 flush_dcache_range(addr, addr + size);
699
700 /*
Marek Vasutd521b3c2013-07-12 01:03:04 +0200701 * Below we read the DMA descriptor's last four bytes back from the
702 * DRAM. This is important in order to make sure that all WRITE
703 * operations on the bus that were triggered by previous cache FLUSH
704 * have completed.
705 *
706 * Otherwise, on MX28, it is possible to observe a corruption of the
707 * DMA descriptors. Please refer to schematic "Figure 1-2" in MX28RM
708 * for the bus structure of MX28. The scenario is as follows:
709 *
710 * 1) ARM core triggers a series of WRITEs on the AHB_ARB2 bus going
711 * to DRAM due to flush_dcache_range()
712 * 2) ARM core writes the FEC registers via AHB_ARB2
713 * 3) FEC DMA starts reading/writing from/to DRAM via AHB_ARB3
714 *
715 * Note that 2) does sometimes finish before 1) due to reordering of
716 * WRITE accesses on the AHB bus, therefore triggering 3) before the
717 * DMA descriptor is fully written into DRAM. This results in occasional
718 * corruption of the DMA descriptor.
719 */
720 readl(addr + size - 4);
721
722 /*
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400723 * Enable SmartDMA transmit task
724 */
725 fec_tx_task_enable(fec);
726
727 /*
Eric Nelson3d2f7272012-03-15 18:33:25 +0000728 * Wait until frame is sent. On each turn of the wait cycle, we must
729 * invalidate data cache to see what's really in RAM. Also, we need
730 * barrier here.
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400731 */
Marek Vasut9bf7bf02012-08-29 03:49:50 +0000732 while (--timeout) {
Marek Vasutc1582c02012-08-29 03:49:51 +0000733 if (!(readl(&fec->eth->x_des_active) & FEC_X_DES_ACTIVE_TDAR))
Marek Vasut5f1631d2012-08-29 03:49:49 +0000734 break;
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400735 }
Eric Nelson3d2f7272012-03-15 18:33:25 +0000736
Fabio Estevamc34e99f2014-08-25 13:34:17 -0300737 if (!timeout) {
Marek Vasut9bf7bf02012-08-29 03:49:50 +0000738 ret = -EINVAL;
Fabio Estevamc34e99f2014-08-25 13:34:17 -0300739 goto out;
740 }
Marek Vasut9bf7bf02012-08-29 03:49:50 +0000741
Fabio Estevamc34e99f2014-08-25 13:34:17 -0300742 /*
743 * The TDAR bit is cleared when the descriptors are all out from TX
744 * but on mx6solox we noticed that the READY bit is still not cleared
745 * right after TDAR.
746 * These are two distinct signals, and in IC simulation, we found that
747 * TDAR always gets cleared prior than the READY bit of last BD becomes
748 * cleared.
749 * In mx6solox, we use a later version of FEC IP. It looks like that
750 * this intrinsic behaviour of TDAR bit has changed in this newer FEC
751 * version.
752 *
753 * Fix this by polling the READY bit of BD after the TDAR polling,
754 * which covers the mx6solox case and does not harm the other SoCs.
755 */
756 timeout = FEC_XFER_TIMEOUT;
757 while (--timeout) {
758 invalidate_dcache_range(addr, addr + size);
759 if (!(readw(&fec->tbd_base[fec->tbd_index].status) &
760 FEC_TBD_READY))
761 break;
762 }
763
764 if (!timeout)
Marek Vasut9bf7bf02012-08-29 03:49:50 +0000765 ret = -EINVAL;
766
Fabio Estevamc34e99f2014-08-25 13:34:17 -0300767out:
Marek Vasut9bf7bf02012-08-29 03:49:50 +0000768 debug("fec_send: status 0x%x index %d ret %i\n",
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400769 readw(&fec->tbd_base[fec->tbd_index].status),
Marek Vasut9bf7bf02012-08-29 03:49:50 +0000770 fec->tbd_index, ret);
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400771 /* for next transmission use the other buffer */
772 if (fec->tbd_index)
773 fec->tbd_index = 0;
774 else
775 fec->tbd_index = 1;
776
Marek Vasut5f1631d2012-08-29 03:49:49 +0000777 return ret;
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400778}
779
780/**
781 * Pull one frame from the card
782 * @param[in] dev Our ethernet device to handle
783 * @return Length of packet read
784 */
785static int fec_recv(struct eth_device *dev)
786{
787 struct fec_priv *fec = (struct fec_priv *)dev->priv;
788 struct fec_bd *rbd = &fec->rbd_base[fec->rbd_index];
789 unsigned long ievent;
790 int frame_length, len = 0;
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400791 uint16_t bd_status;
Marek Vasut4325d242012-08-26 10:19:21 +0000792 uint32_t addr, size, end;
Eric Nelson3d2f7272012-03-15 18:33:25 +0000793 int i;
Fabio Estevamcc956082013-09-17 23:13:10 -0300794 ALLOC_CACHE_ALIGN_BUFFER(uchar, buff, FEC_MAX_PKT_SIZE);
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400795
796 /*
797 * Check if any critical events have happened
798 */
799 ievent = readl(&fec->eth->ievent);
800 writel(ievent, &fec->eth->ievent);
Marek Vasut478e2d02011-10-24 23:40:03 +0000801 debug("fec_recv: ievent 0x%lx\n", ievent);
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400802 if (ievent & FEC_IEVENT_BABR) {
803 fec_halt(dev);
804 fec_init(dev, fec->bd);
805 printf("some error: 0x%08lx\n", ievent);
806 return 0;
807 }
808 if (ievent & FEC_IEVENT_HBERR) {
809 /* Heartbeat error */
810 writel(0x00000001 | readl(&fec->eth->x_cntrl),
811 &fec->eth->x_cntrl);
812 }
813 if (ievent & FEC_IEVENT_GRA) {
814 /* Graceful stop complete */
815 if (readl(&fec->eth->x_cntrl) & 0x00000001) {
816 fec_halt(dev);
817 writel(~0x00000001 & readl(&fec->eth->x_cntrl),
818 &fec->eth->x_cntrl);
819 fec_init(dev, fec->bd);
820 }
821 }
822
823 /*
Eric Nelson3d2f7272012-03-15 18:33:25 +0000824 * Read the buffer status. Before the status can be read, the data cache
825 * must be invalidated, because the data in RAM might have been changed
826 * by DMA. The descriptors are properly aligned to cachelines so there's
827 * no need to worry they'd overlap.
828 *
829 * WARNING: By invalidating the descriptor here, we also invalidate
830 * the descriptors surrounding this one. Therefore we can NOT change the
831 * contents of this descriptor nor the surrounding ones. The problem is
832 * that in order to mark the descriptor as processed, we need to change
833 * the descriptor. The solution is to mark the whole cache line when all
834 * descriptors in the cache line are processed.
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400835 */
Eric Nelson3d2f7272012-03-15 18:33:25 +0000836 addr = (uint32_t)rbd;
837 addr &= ~(ARCH_DMA_MINALIGN - 1);
838 size = roundup(sizeof(struct fec_bd), ARCH_DMA_MINALIGN);
839 invalidate_dcache_range(addr, addr + size);
840
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400841 bd_status = readw(&rbd->status);
842 debug("fec_recv: status 0x%x\n", bd_status);
843
844 if (!(bd_status & FEC_RBD_EMPTY)) {
845 if ((bd_status & FEC_RBD_LAST) && !(bd_status & FEC_RBD_ERR) &&
846 ((readw(&rbd->data_length) - 4) > 14)) {
847 /*
848 * Get buffer address and size
849 */
Albert ARIBAUD \(3ADEV\)13420302015-06-19 14:18:27 +0200850 addr = readl(&rbd->data_pointer);
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400851 frame_length = readw(&rbd->data_length) - 4;
852 /*
Eric Nelson3d2f7272012-03-15 18:33:25 +0000853 * Invalidate data cache over the buffer
854 */
Marek Vasut4325d242012-08-26 10:19:21 +0000855 end = roundup(addr + frame_length, ARCH_DMA_MINALIGN);
856 addr &= ~(ARCH_DMA_MINALIGN - 1);
857 invalidate_dcache_range(addr, end);
Eric Nelson3d2f7272012-03-15 18:33:25 +0000858
859 /*
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400860 * Fill the buffer and pass it to upper layers
861 */
Eric Nelson3d2f7272012-03-15 18:33:25 +0000862#ifdef CONFIG_FEC_MXC_SWAP_PACKET
Albert ARIBAUD \(3ADEV\)13420302015-06-19 14:18:27 +0200863 swap_packet((uint32_t *)addr, frame_length);
Marek Vasut6a5fd4c2011-11-08 23:18:10 +0000864#endif
Albert ARIBAUD \(3ADEV\)13420302015-06-19 14:18:27 +0200865 memcpy(buff, (char *)addr, frame_length);
Joe Hershberger9f09a362015-04-08 01:41:06 -0500866 net_process_received_packet(buff, frame_length);
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400867 len = frame_length;
868 } else {
869 if (bd_status & FEC_RBD_ERR)
Albert ARIBAUD \(3ADEV\)13420302015-06-19 14:18:27 +0200870 printf("error frame: 0x%08x 0x%08x\n",
871 addr, bd_status);
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400872 }
Eric Nelson3d2f7272012-03-15 18:33:25 +0000873
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400874 /*
Eric Nelson3d2f7272012-03-15 18:33:25 +0000875 * Free the current buffer, restart the engine and move forward
876 * to the next buffer. Here we check if the whole cacheline of
877 * descriptors was already processed and if so, we mark it free
878 * as whole.
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400879 */
Eric Nelson3d2f7272012-03-15 18:33:25 +0000880 size = RXDESC_PER_CACHELINE - 1;
881 if ((fec->rbd_index & size) == size) {
882 i = fec->rbd_index - size;
883 addr = (uint32_t)&fec->rbd_base[i];
884 for (; i <= fec->rbd_index ; i++) {
885 fec_rbd_clean(i == (FEC_RBD_NUM - 1),
886 &fec->rbd_base[i]);
887 }
888 flush_dcache_range(addr,
889 addr + ARCH_DMA_MINALIGN);
890 }
891
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400892 fec_rx_task_enable(fec);
893 fec->rbd_index = (fec->rbd_index + 1) % FEC_RBD_NUM;
894 }
895 debug("fec_recv: stop\n");
896
897 return len;
898}
899
Troy Kisky4c2ddec2012-10-22 16:40:44 +0000900static void fec_set_dev_name(char *dest, int dev_id)
901{
902 sprintf(dest, (dev_id == -1) ? "FEC" : "FEC%i", dev_id);
903}
904
Marek Vasut03880452013-10-12 20:36:25 +0200905static int fec_alloc_descs(struct fec_priv *fec)
906{
907 unsigned int size;
908 int i;
909 uint8_t *data;
910
911 /* Allocate TX descriptors. */
912 size = roundup(2 * sizeof(struct fec_bd), ARCH_DMA_MINALIGN);
913 fec->tbd_base = memalign(ARCH_DMA_MINALIGN, size);
914 if (!fec->tbd_base)
915 goto err_tx;
916
917 /* Allocate RX descriptors. */
918 size = roundup(FEC_RBD_NUM * sizeof(struct fec_bd), ARCH_DMA_MINALIGN);
919 fec->rbd_base = memalign(ARCH_DMA_MINALIGN, size);
920 if (!fec->rbd_base)
921 goto err_rx;
922
923 memset(fec->rbd_base, 0, size);
924
925 /* Allocate RX buffers. */
926
927 /* Maximum RX buffer size. */
Fabio Estevam8b798b22014-08-25 13:34:16 -0300928 size = roundup(FEC_MAX_PKT_SIZE, FEC_DMA_RX_MINALIGN);
Marek Vasut03880452013-10-12 20:36:25 +0200929 for (i = 0; i < FEC_RBD_NUM; i++) {
Fabio Estevam8b798b22014-08-25 13:34:16 -0300930 data = memalign(FEC_DMA_RX_MINALIGN, size);
Marek Vasut03880452013-10-12 20:36:25 +0200931 if (!data) {
932 printf("%s: error allocating rxbuf %d\n", __func__, i);
933 goto err_ring;
934 }
935
936 memset(data, 0, size);
937
938 fec->rbd_base[i].data_pointer = (uint32_t)data;
939 fec->rbd_base[i].status = FEC_RBD_EMPTY;
940 fec->rbd_base[i].data_length = 0;
941 /* Flush the buffer to memory. */
942 flush_dcache_range((uint32_t)data, (uint32_t)data + size);
943 }
944
945 /* Mark the last RBD to close the ring. */
946 fec->rbd_base[i - 1].status = FEC_RBD_WRAP | FEC_RBD_EMPTY;
947
948 fec->rbd_index = 0;
949 fec->tbd_index = 0;
950
951 return 0;
952
953err_ring:
954 for (; i >= 0; i--)
955 free((void *)fec->rbd_base[i].data_pointer);
956 free(fec->rbd_base);
957err_rx:
958 free(fec->tbd_base);
959err_tx:
960 return -ENOMEM;
961}
962
963static void fec_free_descs(struct fec_priv *fec)
964{
965 int i;
966
967 for (i = 0; i < FEC_RBD_NUM; i++)
968 free((void *)fec->rbd_base[i].data_pointer);
969 free(fec->rbd_base);
970 free(fec->tbd_base);
971}
972
Troy Kiskydce4def2012-10-22 16:40:46 +0000973#ifdef CONFIG_PHYLIB
974int fec_probe(bd_t *bd, int dev_id, uint32_t base_addr,
975 struct mii_dev *bus, struct phy_device *phydev)
976#else
977static int fec_probe(bd_t *bd, int dev_id, uint32_t base_addr,
978 struct mii_dev *bus, int phy_id)
979#endif
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400980{
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400981 struct eth_device *edev;
Marek Vasutedcd6c02011-09-16 01:13:47 +0200982 struct fec_priv *fec;
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400983 unsigned char ethaddr[6];
Marek Vasut43b10302011-09-11 18:05:37 +0000984 uint32_t start;
985 int ret = 0;
Ilya Yanoke93a4a52009-07-21 19:32:21 +0400986
987 /* create and fill edev struct */
988 edev = (struct eth_device *)malloc(sizeof(struct eth_device));
989 if (!edev) {
Marek Vasutedcd6c02011-09-16 01:13:47 +0200990 puts("fec_mxc: not enough malloc memory for eth_device\n");
Marek Vasut43b10302011-09-11 18:05:37 +0000991 ret = -ENOMEM;
992 goto err1;
Marek Vasutedcd6c02011-09-16 01:13:47 +0200993 }
994
995 fec = (struct fec_priv *)malloc(sizeof(struct fec_priv));
996 if (!fec) {
997 puts("fec_mxc: not enough malloc memory for fec_priv\n");
Marek Vasut43b10302011-09-11 18:05:37 +0000998 ret = -ENOMEM;
999 goto err2;
Ilya Yanoke93a4a52009-07-21 19:32:21 +04001000 }
Marek Vasutedcd6c02011-09-16 01:13:47 +02001001
Nobuhiro Iwamatsu1843c5b2010-10-19 14:03:42 +09001002 memset(edev, 0, sizeof(*edev));
Marek Vasutedcd6c02011-09-16 01:13:47 +02001003 memset(fec, 0, sizeof(*fec));
1004
Marek Vasut03880452013-10-12 20:36:25 +02001005 ret = fec_alloc_descs(fec);
1006 if (ret)
1007 goto err3;
1008
Ilya Yanoke93a4a52009-07-21 19:32:21 +04001009 edev->priv = fec;
1010 edev->init = fec_init;
1011 edev->send = fec_send;
1012 edev->recv = fec_recv;
1013 edev->halt = fec_halt;
Heiko Schocher9ada5e62010-04-27 07:43:52 +02001014 edev->write_hwaddr = fec_set_hwaddr;
Ilya Yanoke93a4a52009-07-21 19:32:21 +04001015
Marek Vasutedcd6c02011-09-16 01:13:47 +02001016 fec->eth = (struct ethernet_regs *)base_addr;
Ilya Yanoke93a4a52009-07-21 19:32:21 +04001017 fec->bd = bd;
1018
Marek Vasutdbb4fce2011-09-11 18:05:33 +00001019 fec->xcv_type = CONFIG_FEC_XCV_TYPE;
Ilya Yanoke93a4a52009-07-21 19:32:21 +04001020
1021 /* Reset chip. */
John Rigbye650e492010-01-25 23:12:55 -07001022 writel(readl(&fec->eth->ecntrl) | FEC_ECNTRL_RESET, &fec->eth->ecntrl);
Marek Vasut43b10302011-09-11 18:05:37 +00001023 start = get_timer(0);
1024 while (readl(&fec->eth->ecntrl) & FEC_ECNTRL_RESET) {
1025 if (get_timer(start) > (CONFIG_SYS_HZ * 5)) {
Vagrant Cascadian259b1fb2016-10-23 20:45:19 -07001026 printf("FEC MXC: Timeout resetting chip\n");
Marek Vasut03880452013-10-12 20:36:25 +02001027 goto err4;
Marek Vasut43b10302011-09-11 18:05:37 +00001028 }
Ilya Yanoke93a4a52009-07-21 19:32:21 +04001029 udelay(10);
Marek Vasut43b10302011-09-11 18:05:37 +00001030 }
Ilya Yanoke93a4a52009-07-21 19:32:21 +04001031
Marek Vasut335cbd22012-05-01 11:09:41 +00001032 fec_reg_setup(fec);
Troy Kisky4c2ddec2012-10-22 16:40:44 +00001033 fec_set_dev_name(edev->name, dev_id);
1034 fec->dev_id = (dev_id == -1) ? 0 : dev_id;
Troy Kiskydce4def2012-10-22 16:40:46 +00001035 fec->bus = bus;
1036 fec_mii_setspeed(bus->priv);
1037#ifdef CONFIG_PHYLIB
1038 fec->phydev = phydev;
1039 phy_connect_dev(phydev, edev);
1040 /* Configure phy */
1041 phy_config(phydev);
1042#else
Marek Vasutedcd6c02011-09-16 01:13:47 +02001043 fec->phy_id = phy_id;
Troy Kiskydce4def2012-10-22 16:40:46 +00001044#endif
1045 eth_register(edev);
1046
Jagan Tekibc5fb462016-12-06 00:00:48 +01001047 if (fec_get_hwaddr(dev_id, ethaddr) == 0) {
Troy Kiskydce4def2012-10-22 16:40:46 +00001048 debug("got MAC%d address from fuse: %pM\n", dev_id, ethaddr);
1049 memcpy(edev->enetaddr, ethaddr, 6);
Eric Nelson3abc8142013-08-02 10:37:00 -07001050 if (!getenv("ethaddr"))
1051 eth_setenv_enetaddr("ethaddr", ethaddr);
Troy Kiskydce4def2012-10-22 16:40:46 +00001052 }
1053 return ret;
Marek Vasut03880452013-10-12 20:36:25 +02001054err4:
1055 fec_free_descs(fec);
Troy Kiskydce4def2012-10-22 16:40:46 +00001056err3:
1057 free(fec);
1058err2:
1059 free(edev);
1060err1:
1061 return ret;
1062}
1063
1064struct mii_dev *fec_get_miibus(uint32_t base_addr, int dev_id)
1065{
1066 struct ethernet_regs *eth = (struct ethernet_regs *)base_addr;
1067 struct mii_dev *bus;
1068 int ret;
Ilya Yanoke93a4a52009-07-21 19:32:21 +04001069
Troy Kisky2000c662012-02-07 14:08:47 +00001070 bus = mdio_alloc();
1071 if (!bus) {
1072 printf("mdio_alloc failed\n");
Troy Kiskydce4def2012-10-22 16:40:46 +00001073 return NULL;
Troy Kisky2000c662012-02-07 14:08:47 +00001074 }
1075 bus->read = fec_phy_read;
1076 bus->write = fec_phy_write;
Troy Kiskydce4def2012-10-22 16:40:46 +00001077 bus->priv = eth;
Troy Kisky4c2ddec2012-10-22 16:40:44 +00001078 fec_set_dev_name(bus->name, dev_id);
Troy Kiskydce4def2012-10-22 16:40:46 +00001079
1080 ret = mdio_register(bus);
1081 if (ret) {
1082 printf("mdio_register failed\n");
1083 free(bus);
1084 return NULL;
1085 }
1086 fec_mii_setspeed(eth);
1087 return bus;
1088}
1089
1090int fecmxc_initialize_multi(bd_t *bd, int dev_id, int phy_id, uint32_t addr)
1091{
1092 uint32_t base_mii;
1093 struct mii_dev *bus = NULL;
1094#ifdef CONFIG_PHYLIB
1095 struct phy_device *phydev = NULL;
1096#endif
1097 int ret;
1098
Eric Nelson3d2f7272012-03-15 18:33:25 +00001099#ifdef CONFIG_MX28
Troy Kisky2000c662012-02-07 14:08:47 +00001100 /*
1101 * The i.MX28 has two ethernet interfaces, but they are not equal.
1102 * Only the first one can access the MDIO bus.
1103 */
Troy Kiskydce4def2012-10-22 16:40:46 +00001104 base_mii = MXS_ENET0_BASE;
Troy Kisky2000c662012-02-07 14:08:47 +00001105#else
Troy Kiskydce4def2012-10-22 16:40:46 +00001106 base_mii = addr;
Troy Kisky2000c662012-02-07 14:08:47 +00001107#endif
Troy Kiskydce4def2012-10-22 16:40:46 +00001108 debug("eth_init: fec_probe(bd, %i, %i) @ %08x\n", dev_id, phy_id, addr);
1109 bus = fec_get_miibus(base_mii, dev_id);
1110 if (!bus)
1111 return -ENOMEM;
Troy Kisky2c42b3c2012-10-22 16:40:45 +00001112#ifdef CONFIG_PHYLIB
Troy Kiskydce4def2012-10-22 16:40:46 +00001113 phydev = phy_find_by_mask(bus, 1 << phy_id, PHY_INTERFACE_MODE_RGMII);
Troy Kisky2c42b3c2012-10-22 16:40:45 +00001114 if (!phydev) {
Måns Rullgårdc6e4a862015-12-08 15:38:46 +00001115 mdio_unregister(bus);
Troy Kisky2c42b3c2012-10-22 16:40:45 +00001116 free(bus);
Troy Kiskydce4def2012-10-22 16:40:46 +00001117 return -ENOMEM;
Troy Kisky2c42b3c2012-10-22 16:40:45 +00001118 }
Troy Kiskydce4def2012-10-22 16:40:46 +00001119 ret = fec_probe(bd, dev_id, addr, bus, phydev);
1120#else
1121 ret = fec_probe(bd, dev_id, addr, bus, phy_id);
Troy Kisky2c42b3c2012-10-22 16:40:45 +00001122#endif
Troy Kiskydce4def2012-10-22 16:40:46 +00001123 if (ret) {
1124#ifdef CONFIG_PHYLIB
1125 free(phydev);
1126#endif
Måns Rullgårdc6e4a862015-12-08 15:38:46 +00001127 mdio_unregister(bus);
Troy Kiskydce4def2012-10-22 16:40:46 +00001128 free(bus);
1129 }
Marek Vasut43b10302011-09-11 18:05:37 +00001130 return ret;
Ilya Yanoke93a4a52009-07-21 19:32:21 +04001131}
1132
Troy Kisky4e0eae62012-10-22 16:40:42 +00001133#ifdef CONFIG_FEC_MXC_PHYADDR
1134int fecmxc_initialize(bd_t *bd)
1135{
1136 return fecmxc_initialize_multi(bd, -1, CONFIG_FEC_MXC_PHYADDR,
1137 IMX_FEC_BASE);
Ilya Yanoke93a4a52009-07-21 19:32:21 +04001138}
Troy Kisky4e0eae62012-10-22 16:40:42 +00001139#endif
Marek Vasut539ecee2011-09-11 18:05:36 +00001140
Troy Kisky2000c662012-02-07 14:08:47 +00001141#ifndef CONFIG_PHYLIB
Marek Vasut539ecee2011-09-11 18:05:36 +00001142int fecmxc_register_mii_postcall(struct eth_device *dev, int (*cb)(int))
1143{
1144 struct fec_priv *fec = (struct fec_priv *)dev->priv;
1145 fec->mii_postcall = cb;
1146 return 0;
1147}
Troy Kisky2000c662012-02-07 14:08:47 +00001148#endif