blob: 3b2b995b53fd3d195a77294f547b83ae8f7eeaf7 [file] [log] [blame]
Ilya Yanok0b23fb32009-07-21 19:32:21 +04001/*
2 * (C) Copyright 2009 Ilya Yanok, Emcraft Systems Ltd <yanok@emcraft.com>
3 * (C) Copyright 2008,2009 Eric Jarrige <eric.jarrige@armadeus.org>
4 * (C) Copyright 2008 Armadeus Systems nc
5 * (C) Copyright 2007 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de>
6 * (C) Copyright 2007 Pengutronix, Juergen Beisert <j.beisert@pengutronix.de>
7 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
Ilya Yanok0b23fb32009-07-21 19:32:21 +04009 */
10
11#include <common.h>
12#include <malloc.h>
13#include <net.h>
14#include <miiphy.h>
15#include "fec_mxc.h"
16
17#include <asm/arch/clock.h>
18#include <asm/arch/imx-regs.h>
19#include <asm/io.h>
20#include <asm/errno.h>
Marek Vasute2a66e62012-08-26 10:19:20 +000021#include <linux/compiler.h>
Ilya Yanok0b23fb32009-07-21 19:32:21 +040022
23DECLARE_GLOBAL_DATA_PTR;
24
Marek Vasutbc1ce152012-08-29 03:49:49 +000025/*
26 * Timeout the transfer after 5 mS. This is usually a bit more, since
27 * the code in the tightloops this timeout is used in adds some overhead.
28 */
29#define FEC_XFER_TIMEOUT 5000
30
Ilya Yanok0b23fb32009-07-21 19:32:21 +040031#ifndef CONFIG_MII
32#error "CONFIG_MII has to be defined!"
33#endif
34
Eric Nelson5c1ad3e2012-03-15 18:33:25 +000035#ifndef CONFIG_FEC_XCV_TYPE
36#define CONFIG_FEC_XCV_TYPE MII100
Marek Vasut392b8502011-09-11 18:05:33 +000037#endif
38
Marek Vasutbe7e87e2011-11-08 23:18:10 +000039/*
40 * The i.MX28 operates with packets in big endian. We need to swap them before
41 * sending and after receiving.
42 */
Eric Nelson5c1ad3e2012-03-15 18:33:25 +000043#ifdef CONFIG_MX28
44#define CONFIG_FEC_MXC_SWAP_PACKET
45#endif
46
47#define RXDESC_PER_CACHELINE (ARCH_DMA_MINALIGN/sizeof(struct fec_bd))
48
49/* Check various alignment issues at compile time */
50#if ((ARCH_DMA_MINALIGN < 16) || (ARCH_DMA_MINALIGN % 16 != 0))
51#error "ARCH_DMA_MINALIGN must be multiple of 16!"
52#endif
53
54#if ((PKTALIGN < ARCH_DMA_MINALIGN) || \
55 (PKTALIGN % ARCH_DMA_MINALIGN != 0))
56#error "PKTALIGN must be multiple of ARCH_DMA_MINALIGN!"
Marek Vasutbe7e87e2011-11-08 23:18:10 +000057#endif
58
Ilya Yanok0b23fb32009-07-21 19:32:21 +040059#undef DEBUG
60
61struct nbuf {
62 uint8_t data[1500]; /**< actual data */
63 int length; /**< actual length */
64 int used; /**< buffer in use or not */
65 uint8_t head[16]; /**< MAC header(6 + 6 + 2) + 2(aligned) */
66};
67
Eric Nelson5c1ad3e2012-03-15 18:33:25 +000068#ifdef CONFIG_FEC_MXC_SWAP_PACKET
Marek Vasutbe7e87e2011-11-08 23:18:10 +000069static void swap_packet(uint32_t *packet, int length)
70{
71 int i;
72
73 for (i = 0; i < DIV_ROUND_UP(length, 4); i++)
74 packet[i] = __swab32(packet[i]);
75}
76#endif
77
78/*
Ilya Yanok0b23fb32009-07-21 19:32:21 +040079 * MII-interface related functions
80 */
Troy Kisky13947f42012-02-07 14:08:47 +000081static int fec_mdio_read(struct ethernet_regs *eth, uint8_t phyAddr,
82 uint8_t regAddr)
Ilya Yanok0b23fb32009-07-21 19:32:21 +040083{
Ilya Yanok0b23fb32009-07-21 19:32:21 +040084 uint32_t reg; /* convenient holder for the PHY register */
85 uint32_t phy; /* convenient holder for the PHY */
86 uint32_t start;
Troy Kisky13947f42012-02-07 14:08:47 +000087 int val;
Ilya Yanok0b23fb32009-07-21 19:32:21 +040088
89 /*
90 * reading from any PHY's register is done by properly
91 * programming the FEC's MII data register.
92 */
Marek Vasutd133b882011-09-11 18:05:34 +000093 writel(FEC_IEVENT_MII, &eth->ievent);
Ilya Yanok0b23fb32009-07-21 19:32:21 +040094 reg = regAddr << FEC_MII_DATA_RA_SHIFT;
95 phy = phyAddr << FEC_MII_DATA_PA_SHIFT;
96
97 writel(FEC_MII_DATA_ST | FEC_MII_DATA_OP_RD | FEC_MII_DATA_TA |
Marek Vasutd133b882011-09-11 18:05:34 +000098 phy | reg, &eth->mii_data);
Ilya Yanok0b23fb32009-07-21 19:32:21 +040099
100 /*
101 * wait for the related interrupt
102 */
Graeme Russa60d1e52011-07-15 23:31:37 +0000103 start = get_timer(0);
Marek Vasutd133b882011-09-11 18:05:34 +0000104 while (!(readl(&eth->ievent) & FEC_IEVENT_MII)) {
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400105 if (get_timer(start) > (CONFIG_SYS_HZ / 1000)) {
106 printf("Read MDIO failed...\n");
107 return -1;
108 }
109 }
110
111 /*
112 * clear mii interrupt bit
113 */
Marek Vasutd133b882011-09-11 18:05:34 +0000114 writel(FEC_IEVENT_MII, &eth->ievent);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400115
116 /*
117 * it's now safe to read the PHY's register
118 */
Troy Kisky13947f42012-02-07 14:08:47 +0000119 val = (unsigned short)readl(&eth->mii_data);
120 debug("%s: phy: %02x reg:%02x val:%#x\n", __func__, phyAddr,
121 regAddr, val);
122 return val;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400123}
124
Troy Kisky575c5cc2012-10-22 16:40:41 +0000125static void fec_mii_setspeed(struct ethernet_regs *eth)
Stefano Babic4294b242010-02-01 14:51:30 +0100126{
127 /*
128 * Set MII_SPEED = (1/(mii_speed * 2)) * System Clock
129 * and do not drop the Preamble.
130 */
131 writel((((imx_get_fecclk() / 1000000) + 2) / 5) << 1,
Troy Kisky575c5cc2012-10-22 16:40:41 +0000132 &eth->mii_speed);
133 debug("%s: mii_speed %08x\n", __func__, readl(&eth->mii_speed));
Stefano Babic4294b242010-02-01 14:51:30 +0100134}
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400135
Troy Kisky13947f42012-02-07 14:08:47 +0000136static int fec_mdio_write(struct ethernet_regs *eth, uint8_t phyAddr,
137 uint8_t regAddr, uint16_t data)
138{
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400139 uint32_t reg; /* convenient holder for the PHY register */
140 uint32_t phy; /* convenient holder for the PHY */
141 uint32_t start;
142
143 reg = regAddr << FEC_MII_DATA_RA_SHIFT;
144 phy = phyAddr << FEC_MII_DATA_PA_SHIFT;
145
146 writel(FEC_MII_DATA_ST | FEC_MII_DATA_OP_WR |
Marek Vasutd133b882011-09-11 18:05:34 +0000147 FEC_MII_DATA_TA | phy | reg | data, &eth->mii_data);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400148
149 /*
150 * wait for the MII interrupt
151 */
Graeme Russa60d1e52011-07-15 23:31:37 +0000152 start = get_timer(0);
Marek Vasutd133b882011-09-11 18:05:34 +0000153 while (!(readl(&eth->ievent) & FEC_IEVENT_MII)) {
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400154 if (get_timer(start) > (CONFIG_SYS_HZ / 1000)) {
155 printf("Write MDIO failed...\n");
156 return -1;
157 }
158 }
159
160 /*
161 * clear MII interrupt bit
162 */
Marek Vasutd133b882011-09-11 18:05:34 +0000163 writel(FEC_IEVENT_MII, &eth->ievent);
Troy Kisky13947f42012-02-07 14:08:47 +0000164 debug("%s: phy: %02x reg:%02x val:%#x\n", __func__, phyAddr,
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400165 regAddr, data);
166
167 return 0;
168}
169
Troy Kisky13947f42012-02-07 14:08:47 +0000170int fec_phy_read(struct mii_dev *bus, int phyAddr, int dev_addr, int regAddr)
171{
172 return fec_mdio_read(bus->priv, phyAddr, regAddr);
173}
174
175int fec_phy_write(struct mii_dev *bus, int phyAddr, int dev_addr, int regAddr,
176 u16 data)
177{
178 return fec_mdio_write(bus->priv, phyAddr, regAddr, data);
179}
180
181#ifndef CONFIG_PHYLIB
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400182static int miiphy_restart_aneg(struct eth_device *dev)
183{
Stefano Babicb774fe92012-02-22 00:24:35 +0000184 int ret = 0;
185#if !defined(CONFIG_FEC_MXC_NO_ANEG)
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200186 struct fec_priv *fec = (struct fec_priv *)dev->priv;
Troy Kisky13947f42012-02-07 14:08:47 +0000187 struct ethernet_regs *eth = fec->bus->priv;
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200188
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400189 /*
190 * Wake up from sleep if necessary
191 * Reset PHY, then delay 300ns
192 */
John Rigbycb17b922010-01-25 23:12:55 -0700193#ifdef CONFIG_MX27
Troy Kisky13947f42012-02-07 14:08:47 +0000194 fec_mdio_write(eth, fec->phy_id, MII_DCOUNTER, 0x00FF);
John Rigbycb17b922010-01-25 23:12:55 -0700195#endif
Troy Kisky13947f42012-02-07 14:08:47 +0000196 fec_mdio_write(eth, fec->phy_id, MII_BMCR, BMCR_RESET);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400197 udelay(1000);
198
199 /*
200 * Set the auto-negotiation advertisement register bits
201 */
Troy Kisky13947f42012-02-07 14:08:47 +0000202 fec_mdio_write(eth, fec->phy_id, MII_ADVERTISE,
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500203 LPA_100FULL | LPA_100HALF | LPA_10FULL |
204 LPA_10HALF | PHY_ANLPAR_PSB_802_3);
Troy Kisky13947f42012-02-07 14:08:47 +0000205 fec_mdio_write(eth, fec->phy_id, MII_BMCR,
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500206 BMCR_ANENABLE | BMCR_ANRESTART);
Marek Vasut2e5f4422011-09-11 18:05:36 +0000207
208 if (fec->mii_postcall)
209 ret = fec->mii_postcall(fec->phy_id);
210
Stefano Babicb774fe92012-02-22 00:24:35 +0000211#endif
Marek Vasut2e5f4422011-09-11 18:05:36 +0000212 return ret;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400213}
214
215static int miiphy_wait_aneg(struct eth_device *dev)
216{
217 uint32_t start;
Troy Kisky13947f42012-02-07 14:08:47 +0000218 int status;
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200219 struct fec_priv *fec = (struct fec_priv *)dev->priv;
Troy Kisky13947f42012-02-07 14:08:47 +0000220 struct ethernet_regs *eth = fec->bus->priv;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400221
222 /*
223 * Wait for AN completion
224 */
Graeme Russa60d1e52011-07-15 23:31:37 +0000225 start = get_timer(0);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400226 do {
227 if (get_timer(start) > (CONFIG_SYS_HZ * 5)) {
228 printf("%s: Autonegotiation timeout\n", dev->name);
229 return -1;
230 }
231
Troy Kisky13947f42012-02-07 14:08:47 +0000232 status = fec_mdio_read(eth, fec->phy_id, MII_BMSR);
233 if (status < 0) {
234 printf("%s: Autonegotiation failed. status: %d\n",
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400235 dev->name, status);
236 return -1;
237 }
Mike Frysinger8ef583a2010-12-23 15:40:12 -0500238 } while (!(status & BMSR_LSTATUS));
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400239
240 return 0;
241}
Troy Kisky13947f42012-02-07 14:08:47 +0000242#endif
243
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400244static int fec_rx_task_enable(struct fec_priv *fec)
245{
Marek Vasutc0b5a3b2012-08-29 03:49:51 +0000246 writel(FEC_R_DES_ACTIVE_RDAR, &fec->eth->r_des_active);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400247 return 0;
248}
249
250static int fec_rx_task_disable(struct fec_priv *fec)
251{
252 return 0;
253}
254
255static int fec_tx_task_enable(struct fec_priv *fec)
256{
Marek Vasutc0b5a3b2012-08-29 03:49:51 +0000257 writel(FEC_X_DES_ACTIVE_TDAR, &fec->eth->x_des_active);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400258 return 0;
259}
260
261static int fec_tx_task_disable(struct fec_priv *fec)
262{
263 return 0;
264}
265
266/**
267 * Initialize receive task's buffer descriptors
268 * @param[in] fec all we know about the device yet
269 * @param[in] count receive buffer count to be allocated
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000270 * @param[in] dsize desired size of each receive buffer
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400271 * @return 0 on success
272 *
Marek Vasut79e5f272013-10-12 20:36:25 +0200273 * Init all RX descriptors to default values.
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400274 */
Marek Vasut79e5f272013-10-12 20:36:25 +0200275static void fec_rbd_init(struct fec_priv *fec, int count, int dsize)
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400276{
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000277 uint32_t size;
Marek Vasut79e5f272013-10-12 20:36:25 +0200278 uint8_t *data;
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000279 int i;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400280
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400281 /*
Marek Vasut79e5f272013-10-12 20:36:25 +0200282 * Reload the RX descriptors with default values and wipe
283 * the RX buffers.
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400284 */
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000285 size = roundup(dsize, ARCH_DMA_MINALIGN);
286 for (i = 0; i < count; i++) {
Marek Vasut79e5f272013-10-12 20:36:25 +0200287 data = (uint8_t *)fec->rbd_base[i].data_pointer;
288 memset(data, 0, dsize);
289 flush_dcache_range((uint32_t)data, (uint32_t)data + size);
290
291 fec->rbd_base[i].status = FEC_RBD_EMPTY;
292 fec->rbd_base[i].data_length = 0;
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000293 }
294
295 /* Mark the last RBD to close the ring. */
Marek Vasut79e5f272013-10-12 20:36:25 +0200296 fec->rbd_base[i - 1].status = FEC_RBD_WRAP | FEC_RBD_EMPTY;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400297 fec->rbd_index = 0;
298
Marek Vasut79e5f272013-10-12 20:36:25 +0200299 flush_dcache_range((unsigned)fec->rbd_base,
300 (unsigned)fec->rbd_base + size);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400301}
302
303/**
304 * Initialize transmit task's buffer descriptors
305 * @param[in] fec all we know about the device yet
306 *
307 * Transmit buffers are created externally. We only have to init the BDs here.\n
308 * Note: There is a race condition in the hardware. When only one BD is in
309 * use it must be marked with the WRAP bit to use it for every transmitt.
310 * This bit in combination with the READY bit results into double transmit
311 * of each data buffer. It seems the state machine checks READY earlier then
312 * resetting it after the first transfer.
313 * Using two BDs solves this issue.
314 */
315static void fec_tbd_init(struct fec_priv *fec)
316{
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000317 unsigned addr = (unsigned)fec->tbd_base;
318 unsigned size = roundup(2 * sizeof(struct fec_bd),
319 ARCH_DMA_MINALIGN);
Marek Vasut79e5f272013-10-12 20:36:25 +0200320
321 memset(fec->tbd_base, 0, size);
322 fec->tbd_base[0].status = 0;
323 fec->tbd_base[1].status = FEC_TBD_WRAP;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400324 fec->tbd_index = 0;
Marek Vasut79e5f272013-10-12 20:36:25 +0200325 flush_dcache_range(addr, addr + size);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400326}
327
328/**
329 * Mark the given read buffer descriptor as free
330 * @param[in] last 1 if this is the last buffer descriptor in the chain, else 0
331 * @param[in] pRbd buffer descriptor to mark free again
332 */
333static void fec_rbd_clean(int last, struct fec_bd *pRbd)
334{
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000335 unsigned short flags = FEC_RBD_EMPTY;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400336 if (last)
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000337 flags |= FEC_RBD_WRAP;
338 writew(flags, &pRbd->status);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400339 writew(0, &pRbd->data_length);
340}
341
Fabio Estevambe252b62011-12-20 05:46:31 +0000342static int fec_get_hwaddr(struct eth_device *dev, int dev_id,
343 unsigned char *mac)
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400344{
Fabio Estevambe252b62011-12-20 05:46:31 +0000345 imx_get_mac_from_fuse(dev_id, mac);
Eric Jarrige2e236bf2010-04-16 00:03:19 +0200346 return !is_valid_ether_addr(mac);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400347}
348
Stefano Babic4294b242010-02-01 14:51:30 +0100349static int fec_set_hwaddr(struct eth_device *dev)
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400350{
Stefano Babic4294b242010-02-01 14:51:30 +0100351 uchar *mac = dev->enetaddr;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400352 struct fec_priv *fec = (struct fec_priv *)dev->priv;
353
354 writel(0, &fec->eth->iaddr1);
355 writel(0, &fec->eth->iaddr2);
356 writel(0, &fec->eth->gaddr1);
357 writel(0, &fec->eth->gaddr2);
358
359 /*
360 * Set physical address
361 */
362 writel((mac[0] << 24) + (mac[1] << 16) + (mac[2] << 8) + mac[3],
363 &fec->eth->paddr1);
364 writel((mac[4] << 24) + (mac[5] << 16) + 0x8808, &fec->eth->paddr2);
365
366 return 0;
367}
368
Marek Vasuta5990b22012-05-01 11:09:41 +0000369/*
370 * Do initial configuration of the FEC registers
371 */
372static void fec_reg_setup(struct fec_priv *fec)
373{
374 uint32_t rcntrl;
375
376 /*
377 * Set interrupt mask register
378 */
379 writel(0x00000000, &fec->eth->imask);
380
381 /*
382 * Clear FEC-Lite interrupt event register(IEVENT)
383 */
384 writel(0xffffffff, &fec->eth->ievent);
385
386
387 /*
388 * Set FEC-Lite receive control register(R_CNTRL):
389 */
390
391 /* Start with frame length = 1518, common for all modes. */
392 rcntrl = PKTSIZE << FEC_RCNTRL_MAX_FL_SHIFT;
benoit.thebaudeau@advans9d2d9242012-07-19 02:12:46 +0000393 if (fec->xcv_type != SEVENWIRE) /* xMII modes */
394 rcntrl |= FEC_RCNTRL_FCE | FEC_RCNTRL_MII_MODE;
395 if (fec->xcv_type == RGMII)
Marek Vasuta5990b22012-05-01 11:09:41 +0000396 rcntrl |= FEC_RCNTRL_RGMII;
397 else if (fec->xcv_type == RMII)
398 rcntrl |= FEC_RCNTRL_RMII;
Marek Vasuta5990b22012-05-01 11:09:41 +0000399
400 writel(rcntrl, &fec->eth->r_cntrl);
401}
402
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400403/**
404 * Start the FEC engine
405 * @param[in] dev Our device to handle
406 */
407static int fec_open(struct eth_device *edev)
408{
409 struct fec_priv *fec = (struct fec_priv *)edev->priv;
Troy Kisky28774cb2012-02-07 14:08:46 +0000410 int speed;
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000411 uint32_t addr, size;
412 int i;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400413
414 debug("fec_open: fec_open(dev)\n");
415 /* full-duplex, heartbeat disabled */
416 writel(1 << 2, &fec->eth->x_cntrl);
417 fec->rbd_index = 0;
418
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000419 /* Invalidate all descriptors */
420 for (i = 0; i < FEC_RBD_NUM - 1; i++)
421 fec_rbd_clean(0, &fec->rbd_base[i]);
422 fec_rbd_clean(1, &fec->rbd_base[i]);
423
424 /* Flush the descriptors into RAM */
425 size = roundup(FEC_RBD_NUM * sizeof(struct fec_bd),
426 ARCH_DMA_MINALIGN);
427 addr = (uint32_t)fec->rbd_base;
428 flush_dcache_range(addr, addr + size);
429
Troy Kisky28774cb2012-02-07 14:08:46 +0000430#ifdef FEC_QUIRK_ENET_MAC
Jason Liu2ef2b952011-12-16 05:17:07 +0000431 /* Enable ENET HW endian SWAP */
432 writel(readl(&fec->eth->ecntrl) | FEC_ECNTRL_DBSWAP,
433 &fec->eth->ecntrl);
434 /* Enable ENET store and forward mode */
435 writel(readl(&fec->eth->x_wmrk) | FEC_X_WMRK_STRFWD,
436 &fec->eth->x_wmrk);
437#endif
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400438 /*
439 * Enable FEC-Lite controller
440 */
John Rigbycb17b922010-01-25 23:12:55 -0700441 writel(readl(&fec->eth->ecntrl) | FEC_ECNTRL_ETHER_EN,
442 &fec->eth->ecntrl);
Fabio Estevam7df51fd2013-09-13 00:36:27 -0300443#if defined(CONFIG_MX25) || defined(CONFIG_MX53) || defined(CONFIG_MX6SL)
John Rigby740d6ae2010-01-25 23:12:57 -0700444 udelay(100);
445 /*
446 * setup the MII gasket for RMII mode
447 */
448
449 /* disable the gasket */
450 writew(0, &fec->eth->miigsk_enr);
451
452 /* wait for the gasket to be disabled */
453 while (readw(&fec->eth->miigsk_enr) & MIIGSK_ENR_READY)
454 udelay(2);
455
456 /* configure gasket for RMII, 50 MHz, no loopback, and no echo */
457 writew(MIIGSK_CFGR_IF_MODE_RMII, &fec->eth->miigsk_cfgr);
458
459 /* re-enable the gasket */
460 writew(MIIGSK_ENR_EN, &fec->eth->miigsk_enr);
461
462 /* wait until MII gasket is ready */
463 int max_loops = 10;
464 while ((readw(&fec->eth->miigsk_enr) & MIIGSK_ENR_READY) == 0) {
465 if (--max_loops <= 0) {
466 printf("WAIT for MII Gasket ready timed out\n");
467 break;
468 }
469 }
470#endif
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400471
Troy Kisky13947f42012-02-07 14:08:47 +0000472#ifdef CONFIG_PHYLIB
Troy Kisky4dc27ee2012-10-22 16:40:45 +0000473 {
Troy Kisky13947f42012-02-07 14:08:47 +0000474 /* Start up the PHY */
Timur Tabi11af8d62012-07-09 08:52:43 +0000475 int ret = phy_startup(fec->phydev);
476
477 if (ret) {
478 printf("Could not initialize PHY %s\n",
479 fec->phydev->dev->name);
480 return ret;
481 }
Troy Kisky13947f42012-02-07 14:08:47 +0000482 speed = fec->phydev->speed;
Troy Kisky13947f42012-02-07 14:08:47 +0000483 }
484#else
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400485 miiphy_wait_aneg(edev);
Troy Kisky28774cb2012-02-07 14:08:46 +0000486 speed = miiphy_speed(edev->name, fec->phy_id);
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200487 miiphy_duplex(edev->name, fec->phy_id);
Troy Kisky13947f42012-02-07 14:08:47 +0000488#endif
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400489
Troy Kisky28774cb2012-02-07 14:08:46 +0000490#ifdef FEC_QUIRK_ENET_MAC
491 {
492 u32 ecr = readl(&fec->eth->ecntrl) & ~FEC_ECNTRL_SPEED;
Alison Wangbcb6e902013-05-27 22:55:43 +0000493 u32 rcr = readl(&fec->eth->r_cntrl) & ~FEC_RCNTRL_RMII_10T;
Troy Kisky28774cb2012-02-07 14:08:46 +0000494 if (speed == _1000BASET)
495 ecr |= FEC_ECNTRL_SPEED;
496 else if (speed != _100BASET)
497 rcr |= FEC_RCNTRL_RMII_10T;
498 writel(ecr, &fec->eth->ecntrl);
499 writel(rcr, &fec->eth->r_cntrl);
500 }
501#endif
502 debug("%s:Speed=%i\n", __func__, speed);
503
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400504 /*
505 * Enable SmartDMA receive task
506 */
507 fec_rx_task_enable(fec);
508
509 udelay(100000);
510 return 0;
511}
512
513static int fec_init(struct eth_device *dev, bd_t* bd)
514{
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400515 struct fec_priv *fec = (struct fec_priv *)dev->priv;
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200516 uint32_t mib_ptr = (uint32_t)&fec->eth->rmon_t_drop;
Marek Vasut79e5f272013-10-12 20:36:25 +0200517 int i;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400518
John Rigbye9319f12010-10-13 14:31:08 -0600519 /* Initialize MAC address */
520 fec_set_hwaddr(dev);
521
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400522 /*
Marek Vasut79e5f272013-10-12 20:36:25 +0200523 * Setup transmit descriptors, there are two in total.
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400524 */
Marek Vasut79e5f272013-10-12 20:36:25 +0200525 fec_tbd_init(fec);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400526
Marek Vasut79e5f272013-10-12 20:36:25 +0200527 /* Setup receive descriptors. */
528 fec_rbd_init(fec, FEC_RBD_NUM, FEC_MAX_PKT_SIZE);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400529
Marek Vasuta5990b22012-05-01 11:09:41 +0000530 fec_reg_setup(fec);
Marek Vasut9eb37702011-09-11 18:05:31 +0000531
benoit.thebaudeau@advansf41471e2012-07-19 02:12:58 +0000532 if (fec->xcv_type != SEVENWIRE)
Troy Kisky575c5cc2012-10-22 16:40:41 +0000533 fec_mii_setspeed(fec->bus->priv);
Marek Vasut9eb37702011-09-11 18:05:31 +0000534
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400535 /*
536 * Set Opcode/Pause Duration Register
537 */
538 writel(0x00010020, &fec->eth->op_pause); /* FIXME 0xffff0020; */
539 writel(0x2, &fec->eth->x_wmrk);
540 /*
541 * Set multicast address filter
542 */
543 writel(0x00000000, &fec->eth->gaddr1);
544 writel(0x00000000, &fec->eth->gaddr2);
545
546
547 /* clear MIB RAM */
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200548 for (i = mib_ptr; i <= mib_ptr + 0xfc; i += 4)
549 writel(0, i);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400550
551 /* FIFO receive start register */
552 writel(0x520, &fec->eth->r_fstart);
553
554 /* size and address of each buffer */
555 writel(FEC_MAX_PKT_SIZE, &fec->eth->emrbr);
556 writel((uint32_t)fec->tbd_base, &fec->eth->etdsr);
557 writel((uint32_t)fec->rbd_base, &fec->eth->erdsr);
558
Troy Kisky13947f42012-02-07 14:08:47 +0000559#ifndef CONFIG_PHYLIB
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400560 if (fec->xcv_type != SEVENWIRE)
561 miiphy_restart_aneg(dev);
Troy Kisky13947f42012-02-07 14:08:47 +0000562#endif
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400563 fec_open(dev);
564 return 0;
565}
566
567/**
568 * Halt the FEC engine
569 * @param[in] dev Our device to handle
570 */
571static void fec_halt(struct eth_device *dev)
572{
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200573 struct fec_priv *fec = (struct fec_priv *)dev->priv;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400574 int counter = 0xffff;
575
576 /*
577 * issue graceful stop command to the FEC transmitter if necessary
578 */
John Rigbycb17b922010-01-25 23:12:55 -0700579 writel(FEC_TCNTRL_GTS | readl(&fec->eth->x_cntrl),
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400580 &fec->eth->x_cntrl);
581
582 debug("eth_halt: wait for stop regs\n");
583 /*
584 * wait for graceful stop to register
585 */
586 while ((counter--) && (!(readl(&fec->eth->ievent) & FEC_IEVENT_GRA)))
John Rigbycb17b922010-01-25 23:12:55 -0700587 udelay(1);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400588
589 /*
590 * Disable SmartDMA tasks
591 */
592 fec_tx_task_disable(fec);
593 fec_rx_task_disable(fec);
594
595 /*
596 * Disable the Ethernet Controller
597 * Note: this will also reset the BD index counter!
598 */
John Rigby740d6ae2010-01-25 23:12:57 -0700599 writel(readl(&fec->eth->ecntrl) & ~FEC_ECNTRL_ETHER_EN,
600 &fec->eth->ecntrl);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400601 fec->rbd_index = 0;
602 fec->tbd_index = 0;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400603 debug("eth_halt: done\n");
604}
605
606/**
607 * Transmit one frame
608 * @param[in] dev Our ethernet device to handle
609 * @param[in] packet Pointer to the data to be transmitted
610 * @param[in] length Data count in bytes
611 * @return 0 on success
612 */
Joe Hershberger442dac42012-05-21 14:45:27 +0000613static int fec_send(struct eth_device *dev, void *packet, int length)
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400614{
615 unsigned int status;
Marek Vasutefe24d22012-08-26 10:19:21 +0000616 uint32_t size, end;
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000617 uint32_t addr;
Marek Vasutbc1ce152012-08-29 03:49:49 +0000618 int timeout = FEC_XFER_TIMEOUT;
619 int ret = 0;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400620
621 /*
622 * This routine transmits one frame. This routine only accepts
623 * 6-byte Ethernet addresses.
624 */
625 struct fec_priv *fec = (struct fec_priv *)dev->priv;
626
627 /*
628 * Check for valid length of data.
629 */
630 if ((length > 1500) || (length <= 0)) {
Stefano Babic4294b242010-02-01 14:51:30 +0100631 printf("Payload (%d) too large\n", length);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400632 return -1;
633 }
634
635 /*
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000636 * Setup the transmit buffer. We are always using the first buffer for
637 * transmission, the second will be empty and only used to stop the DMA
638 * engine. We also flush the packet to RAM here to avoid cache trouble.
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400639 */
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000640#ifdef CONFIG_FEC_MXC_SWAP_PACKET
Marek Vasutbe7e87e2011-11-08 23:18:10 +0000641 swap_packet((uint32_t *)packet, length);
642#endif
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000643
644 addr = (uint32_t)packet;
Marek Vasutefe24d22012-08-26 10:19:21 +0000645 end = roundup(addr + length, ARCH_DMA_MINALIGN);
646 addr &= ~(ARCH_DMA_MINALIGN - 1);
647 flush_dcache_range(addr, end);
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000648
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400649 writew(length, &fec->tbd_base[fec->tbd_index].data_length);
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000650 writel(addr, &fec->tbd_base[fec->tbd_index].data_pointer);
651
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400652 /*
653 * update BD's status now
654 * This block:
655 * - is always the last in a chain (means no chain)
656 * - should transmitt the CRC
657 * - might be the last BD in the list, so the address counter should
658 * wrap (-> keep the WRAP flag)
659 */
660 status = readw(&fec->tbd_base[fec->tbd_index].status) & FEC_TBD_WRAP;
661 status |= FEC_TBD_LAST | FEC_TBD_TC | FEC_TBD_READY;
662 writew(status, &fec->tbd_base[fec->tbd_index].status);
663
664 /*
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000665 * Flush data cache. This code flushes both TX descriptors to RAM.
666 * After this code, the descriptors will be safely in RAM and we
667 * can start DMA.
668 */
669 size = roundup(2 * sizeof(struct fec_bd), ARCH_DMA_MINALIGN);
670 addr = (uint32_t)fec->tbd_base;
671 flush_dcache_range(addr, addr + size);
672
673 /*
Marek Vasutab94cd42013-07-12 01:03:04 +0200674 * Below we read the DMA descriptor's last four bytes back from the
675 * DRAM. This is important in order to make sure that all WRITE
676 * operations on the bus that were triggered by previous cache FLUSH
677 * have completed.
678 *
679 * Otherwise, on MX28, it is possible to observe a corruption of the
680 * DMA descriptors. Please refer to schematic "Figure 1-2" in MX28RM
681 * for the bus structure of MX28. The scenario is as follows:
682 *
683 * 1) ARM core triggers a series of WRITEs on the AHB_ARB2 bus going
684 * to DRAM due to flush_dcache_range()
685 * 2) ARM core writes the FEC registers via AHB_ARB2
686 * 3) FEC DMA starts reading/writing from/to DRAM via AHB_ARB3
687 *
688 * Note that 2) does sometimes finish before 1) due to reordering of
689 * WRITE accesses on the AHB bus, therefore triggering 3) before the
690 * DMA descriptor is fully written into DRAM. This results in occasional
691 * corruption of the DMA descriptor.
692 */
693 readl(addr + size - 4);
694
695 /*
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400696 * Enable SmartDMA transmit task
697 */
698 fec_tx_task_enable(fec);
699
700 /*
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000701 * Wait until frame is sent. On each turn of the wait cycle, we must
702 * invalidate data cache to see what's really in RAM. Also, we need
703 * barrier here.
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400704 */
Marek Vasut67449092012-08-29 03:49:50 +0000705 while (--timeout) {
Marek Vasutc0b5a3b2012-08-29 03:49:51 +0000706 if (!(readl(&fec->eth->x_des_active) & FEC_X_DES_ACTIVE_TDAR))
Marek Vasutbc1ce152012-08-29 03:49:49 +0000707 break;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400708 }
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000709
Marek Vasut67449092012-08-29 03:49:50 +0000710 if (!timeout)
711 ret = -EINVAL;
712
713 invalidate_dcache_range(addr, addr + size);
714 if (readw(&fec->tbd_base[fec->tbd_index].status) & FEC_TBD_READY)
715 ret = -EINVAL;
716
717 debug("fec_send: status 0x%x index %d ret %i\n",
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400718 readw(&fec->tbd_base[fec->tbd_index].status),
Marek Vasut67449092012-08-29 03:49:50 +0000719 fec->tbd_index, ret);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400720 /* for next transmission use the other buffer */
721 if (fec->tbd_index)
722 fec->tbd_index = 0;
723 else
724 fec->tbd_index = 1;
725
Marek Vasutbc1ce152012-08-29 03:49:49 +0000726 return ret;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400727}
728
729/**
730 * Pull one frame from the card
731 * @param[in] dev Our ethernet device to handle
732 * @return Length of packet read
733 */
734static int fec_recv(struct eth_device *dev)
735{
736 struct fec_priv *fec = (struct fec_priv *)dev->priv;
737 struct fec_bd *rbd = &fec->rbd_base[fec->rbd_index];
738 unsigned long ievent;
739 int frame_length, len = 0;
740 struct nbuf *frame;
741 uint16_t bd_status;
Marek Vasutefe24d22012-08-26 10:19:21 +0000742 uint32_t addr, size, end;
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000743 int i;
Fabio Estevamfd37f192013-09-17 23:13:10 -0300744 ALLOC_CACHE_ALIGN_BUFFER(uchar, buff, FEC_MAX_PKT_SIZE);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400745
746 /*
747 * Check if any critical events have happened
748 */
749 ievent = readl(&fec->eth->ievent);
750 writel(ievent, &fec->eth->ievent);
Marek Vasuteda959f2011-10-24 23:40:03 +0000751 debug("fec_recv: ievent 0x%lx\n", ievent);
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400752 if (ievent & FEC_IEVENT_BABR) {
753 fec_halt(dev);
754 fec_init(dev, fec->bd);
755 printf("some error: 0x%08lx\n", ievent);
756 return 0;
757 }
758 if (ievent & FEC_IEVENT_HBERR) {
759 /* Heartbeat error */
760 writel(0x00000001 | readl(&fec->eth->x_cntrl),
761 &fec->eth->x_cntrl);
762 }
763 if (ievent & FEC_IEVENT_GRA) {
764 /* Graceful stop complete */
765 if (readl(&fec->eth->x_cntrl) & 0x00000001) {
766 fec_halt(dev);
767 writel(~0x00000001 & readl(&fec->eth->x_cntrl),
768 &fec->eth->x_cntrl);
769 fec_init(dev, fec->bd);
770 }
771 }
772
773 /*
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000774 * Read the buffer status. Before the status can be read, the data cache
775 * must be invalidated, because the data in RAM might have been changed
776 * by DMA. The descriptors are properly aligned to cachelines so there's
777 * no need to worry they'd overlap.
778 *
779 * WARNING: By invalidating the descriptor here, we also invalidate
780 * the descriptors surrounding this one. Therefore we can NOT change the
781 * contents of this descriptor nor the surrounding ones. The problem is
782 * that in order to mark the descriptor as processed, we need to change
783 * the descriptor. The solution is to mark the whole cache line when all
784 * descriptors in the cache line are processed.
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400785 */
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000786 addr = (uint32_t)rbd;
787 addr &= ~(ARCH_DMA_MINALIGN - 1);
788 size = roundup(sizeof(struct fec_bd), ARCH_DMA_MINALIGN);
789 invalidate_dcache_range(addr, addr + size);
790
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400791 bd_status = readw(&rbd->status);
792 debug("fec_recv: status 0x%x\n", bd_status);
793
794 if (!(bd_status & FEC_RBD_EMPTY)) {
795 if ((bd_status & FEC_RBD_LAST) && !(bd_status & FEC_RBD_ERR) &&
796 ((readw(&rbd->data_length) - 4) > 14)) {
797 /*
798 * Get buffer address and size
799 */
800 frame = (struct nbuf *)readl(&rbd->data_pointer);
801 frame_length = readw(&rbd->data_length) - 4;
802 /*
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000803 * Invalidate data cache over the buffer
804 */
805 addr = (uint32_t)frame;
Marek Vasutefe24d22012-08-26 10:19:21 +0000806 end = roundup(addr + frame_length, ARCH_DMA_MINALIGN);
807 addr &= ~(ARCH_DMA_MINALIGN - 1);
808 invalidate_dcache_range(addr, end);
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000809
810 /*
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400811 * Fill the buffer and pass it to upper layers
812 */
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000813#ifdef CONFIG_FEC_MXC_SWAP_PACKET
Marek Vasutbe7e87e2011-11-08 23:18:10 +0000814 swap_packet((uint32_t *)frame->data, frame_length);
815#endif
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400816 memcpy(buff, frame->data, frame_length);
817 NetReceive(buff, frame_length);
818 len = frame_length;
819 } else {
820 if (bd_status & FEC_RBD_ERR)
821 printf("error frame: 0x%08lx 0x%08x\n",
822 (ulong)rbd->data_pointer,
823 bd_status);
824 }
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000825
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400826 /*
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000827 * Free the current buffer, restart the engine and move forward
828 * to the next buffer. Here we check if the whole cacheline of
829 * descriptors was already processed and if so, we mark it free
830 * as whole.
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400831 */
Eric Nelson5c1ad3e2012-03-15 18:33:25 +0000832 size = RXDESC_PER_CACHELINE - 1;
833 if ((fec->rbd_index & size) == size) {
834 i = fec->rbd_index - size;
835 addr = (uint32_t)&fec->rbd_base[i];
836 for (; i <= fec->rbd_index ; i++) {
837 fec_rbd_clean(i == (FEC_RBD_NUM - 1),
838 &fec->rbd_base[i]);
839 }
840 flush_dcache_range(addr,
841 addr + ARCH_DMA_MINALIGN);
842 }
843
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400844 fec_rx_task_enable(fec);
845 fec->rbd_index = (fec->rbd_index + 1) % FEC_RBD_NUM;
846 }
847 debug("fec_recv: stop\n");
848
849 return len;
850}
851
Troy Kiskyef8e3a32012-10-22 16:40:44 +0000852static void fec_set_dev_name(char *dest, int dev_id)
853{
854 sprintf(dest, (dev_id == -1) ? "FEC" : "FEC%i", dev_id);
855}
856
Marek Vasut79e5f272013-10-12 20:36:25 +0200857static int fec_alloc_descs(struct fec_priv *fec)
858{
859 unsigned int size;
860 int i;
861 uint8_t *data;
862
863 /* Allocate TX descriptors. */
864 size = roundup(2 * sizeof(struct fec_bd), ARCH_DMA_MINALIGN);
865 fec->tbd_base = memalign(ARCH_DMA_MINALIGN, size);
866 if (!fec->tbd_base)
867 goto err_tx;
868
869 /* Allocate RX descriptors. */
870 size = roundup(FEC_RBD_NUM * sizeof(struct fec_bd), ARCH_DMA_MINALIGN);
871 fec->rbd_base = memalign(ARCH_DMA_MINALIGN, size);
872 if (!fec->rbd_base)
873 goto err_rx;
874
875 memset(fec->rbd_base, 0, size);
876
877 /* Allocate RX buffers. */
878
879 /* Maximum RX buffer size. */
880 size = roundup(FEC_MAX_PKT_SIZE, ARCH_DMA_MINALIGN);
881 for (i = 0; i < FEC_RBD_NUM; i++) {
882 data = memalign(ARCH_DMA_MINALIGN, size);
883 if (!data) {
884 printf("%s: error allocating rxbuf %d\n", __func__, i);
885 goto err_ring;
886 }
887
888 memset(data, 0, size);
889
890 fec->rbd_base[i].data_pointer = (uint32_t)data;
891 fec->rbd_base[i].status = FEC_RBD_EMPTY;
892 fec->rbd_base[i].data_length = 0;
893 /* Flush the buffer to memory. */
894 flush_dcache_range((uint32_t)data, (uint32_t)data + size);
895 }
896
897 /* Mark the last RBD to close the ring. */
898 fec->rbd_base[i - 1].status = FEC_RBD_WRAP | FEC_RBD_EMPTY;
899
900 fec->rbd_index = 0;
901 fec->tbd_index = 0;
902
903 return 0;
904
905err_ring:
906 for (; i >= 0; i--)
907 free((void *)fec->rbd_base[i].data_pointer);
908 free(fec->rbd_base);
909err_rx:
910 free(fec->tbd_base);
911err_tx:
912 return -ENOMEM;
913}
914
915static void fec_free_descs(struct fec_priv *fec)
916{
917 int i;
918
919 for (i = 0; i < FEC_RBD_NUM; i++)
920 free((void *)fec->rbd_base[i].data_pointer);
921 free(fec->rbd_base);
922 free(fec->tbd_base);
923}
924
Troy Kiskyfe428b92012-10-22 16:40:46 +0000925#ifdef CONFIG_PHYLIB
926int fec_probe(bd_t *bd, int dev_id, uint32_t base_addr,
927 struct mii_dev *bus, struct phy_device *phydev)
928#else
929static int fec_probe(bd_t *bd, int dev_id, uint32_t base_addr,
930 struct mii_dev *bus, int phy_id)
931#endif
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400932{
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400933 struct eth_device *edev;
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200934 struct fec_priv *fec;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400935 unsigned char ethaddr[6];
Marek Vasute382fb42011-09-11 18:05:37 +0000936 uint32_t start;
937 int ret = 0;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400938
939 /* create and fill edev struct */
940 edev = (struct eth_device *)malloc(sizeof(struct eth_device));
941 if (!edev) {
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200942 puts("fec_mxc: not enough malloc memory for eth_device\n");
Marek Vasute382fb42011-09-11 18:05:37 +0000943 ret = -ENOMEM;
944 goto err1;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400945 }
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200946
947 fec = (struct fec_priv *)malloc(sizeof(struct fec_priv));
948 if (!fec) {
949 puts("fec_mxc: not enough malloc memory for fec_priv\n");
Marek Vasute382fb42011-09-11 18:05:37 +0000950 ret = -ENOMEM;
951 goto err2;
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200952 }
953
Nobuhiro Iwamatsude0b9572010-10-19 14:03:42 +0900954 memset(edev, 0, sizeof(*edev));
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200955 memset(fec, 0, sizeof(*fec));
956
Marek Vasut79e5f272013-10-12 20:36:25 +0200957 ret = fec_alloc_descs(fec);
958 if (ret)
959 goto err3;
960
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400961 edev->priv = fec;
962 edev->init = fec_init;
963 edev->send = fec_send;
964 edev->recv = fec_recv;
965 edev->halt = fec_halt;
Heiko Schocherfb57ec92010-04-27 07:43:52 +0200966 edev->write_hwaddr = fec_set_hwaddr;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400967
Marek Vasut9e27e9d2011-09-16 01:13:47 +0200968 fec->eth = (struct ethernet_regs *)base_addr;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400969 fec->bd = bd;
970
Marek Vasut392b8502011-09-11 18:05:33 +0000971 fec->xcv_type = CONFIG_FEC_XCV_TYPE;
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400972
973 /* Reset chip. */
John Rigbycb17b922010-01-25 23:12:55 -0700974 writel(readl(&fec->eth->ecntrl) | FEC_ECNTRL_RESET, &fec->eth->ecntrl);
Marek Vasute382fb42011-09-11 18:05:37 +0000975 start = get_timer(0);
976 while (readl(&fec->eth->ecntrl) & FEC_ECNTRL_RESET) {
977 if (get_timer(start) > (CONFIG_SYS_HZ * 5)) {
978 printf("FEC MXC: Timeout reseting chip\n");
Marek Vasut79e5f272013-10-12 20:36:25 +0200979 goto err4;
Marek Vasute382fb42011-09-11 18:05:37 +0000980 }
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400981 udelay(10);
Marek Vasute382fb42011-09-11 18:05:37 +0000982 }
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400983
Marek Vasuta5990b22012-05-01 11:09:41 +0000984 fec_reg_setup(fec);
Troy Kiskyef8e3a32012-10-22 16:40:44 +0000985 fec_set_dev_name(edev->name, dev_id);
986 fec->dev_id = (dev_id == -1) ? 0 : dev_id;
Troy Kisky13947f42012-02-07 14:08:47 +0000987 fec->bus = bus;
Troy Kiskyfe428b92012-10-22 16:40:46 +0000988 fec_mii_setspeed(bus->priv);
989#ifdef CONFIG_PHYLIB
990 fec->phydev = phydev;
991 phy_connect_dev(phydev, edev);
992 /* Configure phy */
993 phy_config(phydev);
994#else
995 fec->phy_id = phy_id;
996#endif
Ilya Yanok0b23fb32009-07-21 19:32:21 +0400997 eth_register(edev);
998
Fabio Estevambe252b62011-12-20 05:46:31 +0000999 if (fec_get_hwaddr(edev, dev_id, ethaddr) == 0) {
1000 debug("got MAC%d address from fuse: %pM\n", dev_id, ethaddr);
Stefano Babic4294b242010-02-01 14:51:30 +01001001 memcpy(edev->enetaddr, ethaddr, 6);
Eric Nelsonddb636b2013-08-02 10:37:00 -07001002 if (!getenv("ethaddr"))
1003 eth_setenv_enetaddr("ethaddr", ethaddr);
Ilya Yanok0b23fb32009-07-21 19:32:21 +04001004 }
Marek Vasute382fb42011-09-11 18:05:37 +00001005 return ret;
Marek Vasut79e5f272013-10-12 20:36:25 +02001006err4:
1007 fec_free_descs(fec);
Marek Vasute382fb42011-09-11 18:05:37 +00001008err3:
1009 free(fec);
1010err2:
1011 free(edev);
1012err1:
1013 return ret;
Ilya Yanok0b23fb32009-07-21 19:32:21 +04001014}
1015
Troy Kiskyfe428b92012-10-22 16:40:46 +00001016struct mii_dev *fec_get_miibus(uint32_t base_addr, int dev_id)
1017{
1018 struct ethernet_regs *eth = (struct ethernet_regs *)base_addr;
1019 struct mii_dev *bus;
1020 int ret;
1021
1022 bus = mdio_alloc();
1023 if (!bus) {
1024 printf("mdio_alloc failed\n");
1025 return NULL;
1026 }
1027 bus->read = fec_phy_read;
1028 bus->write = fec_phy_write;
1029 bus->priv = eth;
1030 fec_set_dev_name(bus->name, dev_id);
1031
1032 ret = mdio_register(bus);
1033 if (ret) {
1034 printf("mdio_register failed\n");
1035 free(bus);
1036 return NULL;
1037 }
1038 fec_mii_setspeed(eth);
1039 return bus;
1040}
1041
Troy Kiskyeef24482012-10-22 16:40:42 +00001042int fecmxc_initialize_multi(bd_t *bd, int dev_id, int phy_id, uint32_t addr)
1043{
Troy Kiskyfe428b92012-10-22 16:40:46 +00001044 uint32_t base_mii;
1045 struct mii_dev *bus = NULL;
1046#ifdef CONFIG_PHYLIB
1047 struct phy_device *phydev = NULL;
1048#endif
1049 int ret;
1050
1051#ifdef CONFIG_MX28
1052 /*
1053 * The i.MX28 has two ethernet interfaces, but they are not equal.
1054 * Only the first one can access the MDIO bus.
1055 */
1056 base_mii = MXS_ENET0_BASE;
1057#else
1058 base_mii = addr;
1059#endif
Troy Kiskyeef24482012-10-22 16:40:42 +00001060 debug("eth_init: fec_probe(bd, %i, %i) @ %08x\n", dev_id, phy_id, addr);
Troy Kiskyfe428b92012-10-22 16:40:46 +00001061 bus = fec_get_miibus(base_mii, dev_id);
1062 if (!bus)
1063 return -ENOMEM;
1064#ifdef CONFIG_PHYLIB
1065 phydev = phy_find_by_mask(bus, 1 << phy_id, PHY_INTERFACE_MODE_RGMII);
1066 if (!phydev) {
1067 free(bus);
1068 return -ENOMEM;
1069 }
1070 ret = fec_probe(bd, dev_id, addr, bus, phydev);
1071#else
1072 ret = fec_probe(bd, dev_id, addr, bus, phy_id);
1073#endif
1074 if (ret) {
1075#ifdef CONFIG_PHYLIB
1076 free(phydev);
1077#endif
1078 free(bus);
1079 }
1080 return ret;
Troy Kiskyeef24482012-10-22 16:40:42 +00001081}
1082
Troy Kisky09439c32012-10-22 16:40:40 +00001083#ifdef CONFIG_FEC_MXC_PHYADDR
Ilya Yanok0b23fb32009-07-21 19:32:21 +04001084int fecmxc_initialize(bd_t *bd)
1085{
Troy Kiskyeef24482012-10-22 16:40:42 +00001086 return fecmxc_initialize_multi(bd, -1, CONFIG_FEC_MXC_PHYADDR,
1087 IMX_FEC_BASE);
Marek Vasut9e27e9d2011-09-16 01:13:47 +02001088}
1089#endif
1090
Troy Kisky13947f42012-02-07 14:08:47 +00001091#ifndef CONFIG_PHYLIB
Marek Vasut2e5f4422011-09-11 18:05:36 +00001092int fecmxc_register_mii_postcall(struct eth_device *dev, int (*cb)(int))
1093{
1094 struct fec_priv *fec = (struct fec_priv *)dev->priv;
1095 fec->mii_postcall = cb;
1096 return 0;
1097}
Troy Kisky13947f42012-02-07 14:08:47 +00001098#endif