blob: 740d04fd222333c8a70fa0a579f4c408b995a093 [file] [log] [blame]
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001/*
Jamie Ilesf75ba502011-11-08 10:12:32 +00002 * Cadence MACB/GEM Ethernet Controller driver
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003 *
4 * Copyright (C) 2004-2006 Atmel Corporation
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
Jamie Ilesc220f8c2011-03-08 20:27:08 +000011#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010012#include <linux/clk.h>
13#include <linux/module.h>
14#include <linux/moduleparam.h>
15#include <linux/kernel.h>
16#include <linux/types.h>
Nicolas Ferre909a8582012-11-19 06:00:21 +000017#include <linux/circ_buf.h>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010018#include <linux/slab.h>
19#include <linux/init.h>
Soren Brinkmann60fe7162013-12-10 16:07:21 -080020#include <linux/io.h>
Joachim Eastwood2dbfdbb92012-11-11 13:56:27 +000021#include <linux/gpio.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000022#include <linux/interrupt.h>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010023#include <linux/netdevice.h>
24#include <linux/etherdevice.h>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010025#include <linux/dma-mapping.h>
Jamie Iles84e0cdb2011-03-08 20:17:06 +000026#include <linux/platform_data/macb.h>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010027#include <linux/platform_device.h>
frederic RODO6c36a702007-07-12 19:07:24 +020028#include <linux/phy.h>
Olof Johanssonb17471f2011-12-20 13:13:07 -080029#include <linux/of.h>
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +010030#include <linux/of_device.h>
Boris BREZILLON148cbb52013-08-22 17:57:28 +020031#include <linux/of_mdio.h>
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +010032#include <linux/of_net.h>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010033
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010034#include "macb.h"
35
Nicolas Ferre1b447912013-06-04 21:57:11 +000036#define MACB_RX_BUFFER_SIZE 128
Nicolas Ferre1b447912013-06-04 21:57:11 +000037#define RX_BUFFER_MULTIPLE 64 /* bytes */
Havard Skinnemoen55054a12012-10-31 06:04:55 +000038#define RX_RING_SIZE 512 /* must be power of 2 */
39#define RX_RING_BYTES (sizeof(struct macb_dma_desc) * RX_RING_SIZE)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010040
Havard Skinnemoen55054a12012-10-31 06:04:55 +000041#define TX_RING_SIZE 128 /* must be power of 2 */
42#define TX_RING_BYTES (sizeof(struct macb_dma_desc) * TX_RING_SIZE)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010043
Nicolas Ferre909a8582012-11-19 06:00:21 +000044/* level of occupied TX descriptors under which we wake up TX process */
45#define MACB_TX_WAKEUP_THRESH (3 * TX_RING_SIZE / 4)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010046
47#define MACB_RX_INT_FLAGS (MACB_BIT(RCOMP) | MACB_BIT(RXUBR) \
48 | MACB_BIT(ISR_ROVR))
Nicolas Ferree86cd532012-10-31 06:04:57 +000049#define MACB_TX_ERR_FLAGS (MACB_BIT(ISR_TUND) \
50 | MACB_BIT(ISR_RLE) \
51 | MACB_BIT(TXERR))
52#define MACB_TX_INT_FLAGS (MACB_TX_ERR_FLAGS | MACB_BIT(TCOMP))
53
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +020054#define MACB_MAX_TX_LEN ((unsigned int)((1 << MACB_TX_FRMLEN_SIZE) - 1))
55#define GEM_MAX_TX_LEN ((unsigned int)((1 << GEM_TX_FRMLEN_SIZE) - 1))
56
Harini Katakama5898ea2015-05-06 22:27:18 +053057#define GEM_MTU_MIN_SIZE 68
58
Nicolas Ferree86cd532012-10-31 06:04:57 +000059/*
60 * Graceful stop timeouts in us. We should allow up to
61 * 1 frame time (10 Mbits/s, full-duplex, ignoring collisions)
62 */
63#define MACB_HALT_TIMEOUT 1230
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010064
Havard Skinnemoen55054a12012-10-31 06:04:55 +000065/* Ring buffer accessors */
66static unsigned int macb_tx_ring_wrap(unsigned int index)
67{
68 return index & (TX_RING_SIZE - 1);
69}
70
Cyrille Pitchen02c958d2014-12-12 13:26:44 +010071static struct macb_dma_desc *macb_tx_desc(struct macb_queue *queue,
72 unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +000073{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +010074 return &queue->tx_ring[macb_tx_ring_wrap(index)];
Havard Skinnemoen55054a12012-10-31 06:04:55 +000075}
76
Cyrille Pitchen02c958d2014-12-12 13:26:44 +010077static struct macb_tx_skb *macb_tx_skb(struct macb_queue *queue,
78 unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +000079{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +010080 return &queue->tx_skb[macb_tx_ring_wrap(index)];
Havard Skinnemoen55054a12012-10-31 06:04:55 +000081}
82
Cyrille Pitchen02c958d2014-12-12 13:26:44 +010083static dma_addr_t macb_tx_dma(struct macb_queue *queue, unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +000084{
85 dma_addr_t offset;
86
87 offset = macb_tx_ring_wrap(index) * sizeof(struct macb_dma_desc);
88
Cyrille Pitchen02c958d2014-12-12 13:26:44 +010089 return queue->tx_ring_dma + offset;
Havard Skinnemoen55054a12012-10-31 06:04:55 +000090}
91
92static unsigned int macb_rx_ring_wrap(unsigned int index)
93{
94 return index & (RX_RING_SIZE - 1);
95}
96
97static struct macb_dma_desc *macb_rx_desc(struct macb *bp, unsigned int index)
98{
99 return &bp->rx_ring[macb_rx_ring_wrap(index)];
100}
101
102static void *macb_rx_buffer(struct macb *bp, unsigned int index)
103{
Nicolas Ferre1b447912013-06-04 21:57:11 +0000104 return bp->rx_buffers + bp->rx_buffer_size * macb_rx_ring_wrap(index);
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000105}
106
Cyrille Pitchen421d9df2015-03-07 07:23:32 +0100107static void macb_set_hwaddr(struct macb *bp)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100108{
109 u32 bottom;
110 u16 top;
111
112 bottom = cpu_to_le32(*((u32 *)bp->dev->dev_addr));
Jamie Ilesf75ba502011-11-08 10:12:32 +0000113 macb_or_gem_writel(bp, SA1B, bottom);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100114 top = cpu_to_le16(*((u16 *)(bp->dev->dev_addr + 4)));
Jamie Ilesf75ba502011-11-08 10:12:32 +0000115 macb_or_gem_writel(bp, SA1T, top);
Joachim Eastwood3629a6c2012-11-11 13:56:28 +0000116
117 /* Clear unused address register sets */
118 macb_or_gem_writel(bp, SA2B, 0);
119 macb_or_gem_writel(bp, SA2T, 0);
120 macb_or_gem_writel(bp, SA3B, 0);
121 macb_or_gem_writel(bp, SA3T, 0);
122 macb_or_gem_writel(bp, SA4B, 0);
123 macb_or_gem_writel(bp, SA4T, 0);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100124}
125
Cyrille Pitchen421d9df2015-03-07 07:23:32 +0100126static void macb_get_hwaddr(struct macb *bp)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100127{
Joachim Eastwoodd25e78a2012-11-07 08:14:51 +0000128 struct macb_platform_data *pdata;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100129 u32 bottom;
130 u16 top;
131 u8 addr[6];
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000132 int i;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100133
Jingoo Hanc607a0d2013-08-30 14:12:21 +0900134 pdata = dev_get_platdata(&bp->pdev->dev);
Joachim Eastwoodd25e78a2012-11-07 08:14:51 +0000135
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000136 /* Check all 4 address register for vaild address */
137 for (i = 0; i < 4; i++) {
138 bottom = macb_or_gem_readl(bp, SA1B + i * 8);
139 top = macb_or_gem_readl(bp, SA1T + i * 8);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100140
Joachim Eastwoodd25e78a2012-11-07 08:14:51 +0000141 if (pdata && pdata->rev_eth_addr) {
142 addr[5] = bottom & 0xff;
143 addr[4] = (bottom >> 8) & 0xff;
144 addr[3] = (bottom >> 16) & 0xff;
145 addr[2] = (bottom >> 24) & 0xff;
146 addr[1] = top & 0xff;
147 addr[0] = (top & 0xff00) >> 8;
148 } else {
149 addr[0] = bottom & 0xff;
150 addr[1] = (bottom >> 8) & 0xff;
151 addr[2] = (bottom >> 16) & 0xff;
152 addr[3] = (bottom >> 24) & 0xff;
153 addr[4] = top & 0xff;
154 addr[5] = (top >> 8) & 0xff;
155 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100156
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000157 if (is_valid_ether_addr(addr)) {
158 memcpy(bp->dev->dev_addr, addr, sizeof(addr));
159 return;
160 }
Sven Schnelled1d57412008-06-09 16:33:57 -0700161 }
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000162
163 netdev_info(bp->dev, "invalid hw address, using random\n");
164 eth_hw_addr_random(bp->dev);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100165}
166
frederic RODO6c36a702007-07-12 19:07:24 +0200167static int macb_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100168{
frederic RODO6c36a702007-07-12 19:07:24 +0200169 struct macb *bp = bus->priv;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100170 int value;
171
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100172 macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_SOF)
173 | MACB_BF(RW, MACB_MAN_READ)
frederic RODO6c36a702007-07-12 19:07:24 +0200174 | MACB_BF(PHYA, mii_id)
175 | MACB_BF(REGA, regnum)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100176 | MACB_BF(CODE, MACB_MAN_CODE)));
177
frederic RODO6c36a702007-07-12 19:07:24 +0200178 /* wait for end of transfer */
179 while (!MACB_BFEXT(IDLE, macb_readl(bp, NSR)))
180 cpu_relax();
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100181
182 value = MACB_BFEXT(DATA, macb_readl(bp, MAN));
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100183
184 return value;
185}
186
frederic RODO6c36a702007-07-12 19:07:24 +0200187static int macb_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
188 u16 value)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100189{
frederic RODO6c36a702007-07-12 19:07:24 +0200190 struct macb *bp = bus->priv;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100191
192 macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_SOF)
193 | MACB_BF(RW, MACB_MAN_WRITE)
frederic RODO6c36a702007-07-12 19:07:24 +0200194 | MACB_BF(PHYA, mii_id)
195 | MACB_BF(REGA, regnum)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100196 | MACB_BF(CODE, MACB_MAN_CODE)
frederic RODO6c36a702007-07-12 19:07:24 +0200197 | MACB_BF(DATA, value)));
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100198
frederic RODO6c36a702007-07-12 19:07:24 +0200199 /* wait for end of transfer */
200 while (!MACB_BFEXT(IDLE, macb_readl(bp, NSR)))
201 cpu_relax();
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100202
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100203 return 0;
204}
205
Soren Brinkmanne1824df2013-12-10 16:07:23 -0800206/**
207 * macb_set_tx_clk() - Set a clock to a new frequency
208 * @clk Pointer to the clock to change
209 * @rate New frequency in Hz
210 * @dev Pointer to the struct net_device
211 */
212static void macb_set_tx_clk(struct clk *clk, int speed, struct net_device *dev)
213{
214 long ferr, rate, rate_rounded;
215
Cyrille Pitchen93b31f42015-03-07 07:23:31 +0100216 if (!clk)
217 return;
218
Soren Brinkmanne1824df2013-12-10 16:07:23 -0800219 switch (speed) {
220 case SPEED_10:
221 rate = 2500000;
222 break;
223 case SPEED_100:
224 rate = 25000000;
225 break;
226 case SPEED_1000:
227 rate = 125000000;
228 break;
229 default:
Soren Brinkmann9319e472013-12-10 20:57:57 -0800230 return;
Soren Brinkmanne1824df2013-12-10 16:07:23 -0800231 }
232
233 rate_rounded = clk_round_rate(clk, rate);
234 if (rate_rounded < 0)
235 return;
236
237 /* RGMII allows 50 ppm frequency error. Test and warn if this limit
238 * is not satisfied.
239 */
240 ferr = abs(rate_rounded - rate);
241 ferr = DIV_ROUND_UP(ferr, rate / 100000);
242 if (ferr > 5)
243 netdev_warn(dev, "unable to generate target frequency: %ld Hz\n",
244 rate);
245
246 if (clk_set_rate(clk, rate_rounded))
247 netdev_err(dev, "adjusting tx_clk failed.\n");
248}
249
frederic RODO6c36a702007-07-12 19:07:24 +0200250static void macb_handle_link_change(struct net_device *dev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100251{
frederic RODO6c36a702007-07-12 19:07:24 +0200252 struct macb *bp = netdev_priv(dev);
253 struct phy_device *phydev = bp->phy_dev;
254 unsigned long flags;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100255
frederic RODO6c36a702007-07-12 19:07:24 +0200256 int status_change = 0;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100257
frederic RODO6c36a702007-07-12 19:07:24 +0200258 spin_lock_irqsave(&bp->lock, flags);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100259
frederic RODO6c36a702007-07-12 19:07:24 +0200260 if (phydev->link) {
261 if ((bp->speed != phydev->speed) ||
262 (bp->duplex != phydev->duplex)) {
263 u32 reg;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100264
frederic RODO6c36a702007-07-12 19:07:24 +0200265 reg = macb_readl(bp, NCFGR);
266 reg &= ~(MACB_BIT(SPD) | MACB_BIT(FD));
Patrice Vilchez140b7552012-10-31 06:04:50 +0000267 if (macb_is_gem(bp))
268 reg &= ~GEM_BIT(GBE);
frederic RODO6c36a702007-07-12 19:07:24 +0200269
270 if (phydev->duplex)
271 reg |= MACB_BIT(FD);
Atsushi Nemoto179956f2008-02-21 22:50:54 +0900272 if (phydev->speed == SPEED_100)
frederic RODO6c36a702007-07-12 19:07:24 +0200273 reg |= MACB_BIT(SPD);
Nicolas Ferree1755872014-07-24 13:50:58 +0200274 if (phydev->speed == SPEED_1000 &&
275 bp->caps & MACB_CAPS_GIGABIT_MODE_AVAILABLE)
Patrice Vilchez140b7552012-10-31 06:04:50 +0000276 reg |= GEM_BIT(GBE);
frederic RODO6c36a702007-07-12 19:07:24 +0200277
Patrice Vilchez140b7552012-10-31 06:04:50 +0000278 macb_or_gem_writel(bp, NCFGR, reg);
frederic RODO6c36a702007-07-12 19:07:24 +0200279
280 bp->speed = phydev->speed;
281 bp->duplex = phydev->duplex;
282 status_change = 1;
283 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100284 }
285
frederic RODO6c36a702007-07-12 19:07:24 +0200286 if (phydev->link != bp->link) {
Anton Vorontsovc8f15682008-07-22 15:41:24 -0700287 if (!phydev->link) {
frederic RODO6c36a702007-07-12 19:07:24 +0200288 bp->speed = 0;
289 bp->duplex = -1;
290 }
291 bp->link = phydev->link;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100292
frederic RODO6c36a702007-07-12 19:07:24 +0200293 status_change = 1;
294 }
295
296 spin_unlock_irqrestore(&bp->lock, flags);
297
298 if (status_change) {
Nicolas Ferre03fc4722012-07-03 23:14:13 +0000299 if (phydev->link) {
Jaeden Amero2c29b232015-03-12 18:07:54 -0500300 /* Update the TX clock rate if and only if the link is
301 * up and there has been a link change.
302 */
303 macb_set_tx_clk(bp->tx_clk, phydev->speed, dev);
304
Nicolas Ferre03fc4722012-07-03 23:14:13 +0000305 netif_carrier_on(dev);
Jamie Ilesc220f8c2011-03-08 20:27:08 +0000306 netdev_info(dev, "link up (%d/%s)\n",
307 phydev->speed,
308 phydev->duplex == DUPLEX_FULL ?
309 "Full" : "Half");
Nicolas Ferre03fc4722012-07-03 23:14:13 +0000310 } else {
311 netif_carrier_off(dev);
Jamie Ilesc220f8c2011-03-08 20:27:08 +0000312 netdev_info(dev, "link down\n");
Nicolas Ferre03fc4722012-07-03 23:14:13 +0000313 }
frederic RODO6c36a702007-07-12 19:07:24 +0200314 }
315}
316
317/* based on au1000_eth. c*/
318static int macb_mii_probe(struct net_device *dev)
319{
320 struct macb *bp = netdev_priv(dev);
Joachim Eastwood2dbfdbb92012-11-11 13:56:27 +0000321 struct macb_platform_data *pdata;
Jiri Pirko7455a762010-02-08 05:12:08 +0000322 struct phy_device *phydev;
Joachim Eastwood2dbfdbb92012-11-11 13:56:27 +0000323 int phy_irq;
Jiri Pirko7455a762010-02-08 05:12:08 +0000324 int ret;
frederic RODO6c36a702007-07-12 19:07:24 +0200325
Jiri Pirko7455a762010-02-08 05:12:08 +0000326 phydev = phy_find_first(bp->mii_bus);
frederic RODO6c36a702007-07-12 19:07:24 +0200327 if (!phydev) {
Jamie Ilesc220f8c2011-03-08 20:27:08 +0000328 netdev_err(dev, "no PHY found\n");
Boris BREZILLON7daa78e2013-08-27 14:36:14 +0200329 return -ENXIO;
frederic RODO6c36a702007-07-12 19:07:24 +0200330 }
331
Joachim Eastwood2dbfdbb92012-11-11 13:56:27 +0000332 pdata = dev_get_platdata(&bp->pdev->dev);
333 if (pdata && gpio_is_valid(pdata->phy_irq_pin)) {
334 ret = devm_gpio_request(&bp->pdev->dev, pdata->phy_irq_pin, "phy int");
335 if (!ret) {
336 phy_irq = gpio_to_irq(pdata->phy_irq_pin);
337 phydev->irq = (phy_irq < 0) ? PHY_POLL : phy_irq;
338 }
339 }
frederic RODO6c36a702007-07-12 19:07:24 +0200340
341 /* attach the mac to the phy */
Florian Fainellif9a8f832013-01-14 00:52:52 +0000342 ret = phy_connect_direct(dev, phydev, &macb_handle_link_change,
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +0100343 bp->phy_interface);
Jiri Pirko7455a762010-02-08 05:12:08 +0000344 if (ret) {
Jamie Ilesc220f8c2011-03-08 20:27:08 +0000345 netdev_err(dev, "Could not attach to PHY\n");
Jiri Pirko7455a762010-02-08 05:12:08 +0000346 return ret;
frederic RODO6c36a702007-07-12 19:07:24 +0200347 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100348
frederic RODO6c36a702007-07-12 19:07:24 +0200349 /* mask with MAC supported features */
Nicolas Ferree1755872014-07-24 13:50:58 +0200350 if (macb_is_gem(bp) && bp->caps & MACB_CAPS_GIGABIT_MODE_AVAILABLE)
Patrice Vilchez140b7552012-10-31 06:04:50 +0000351 phydev->supported &= PHY_GBIT_FEATURES;
352 else
353 phydev->supported &= PHY_BASIC_FEATURES;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100354
Nathan Sullivan222ca8e2015-05-22 09:22:10 -0500355 if (bp->caps & MACB_CAPS_NO_GIGABIT_HALF)
356 phydev->supported &= ~SUPPORTED_1000baseT_Half;
357
frederic RODO6c36a702007-07-12 19:07:24 +0200358 phydev->advertising = phydev->supported;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100359
frederic RODO6c36a702007-07-12 19:07:24 +0200360 bp->link = 0;
361 bp->speed = 0;
362 bp->duplex = -1;
363 bp->phy_dev = phydev;
364
365 return 0;
366}
367
Cyrille Pitchen421d9df2015-03-07 07:23:32 +0100368static int macb_mii_init(struct macb *bp)
frederic RODO6c36a702007-07-12 19:07:24 +0200369{
Jamie Iles84e0cdb2011-03-08 20:17:06 +0000370 struct macb_platform_data *pdata;
Boris BREZILLON148cbb52013-08-22 17:57:28 +0200371 struct device_node *np;
frederic RODO6c36a702007-07-12 19:07:24 +0200372 int err = -ENXIO, i;
373
Uwe Kleine-Koenig3dbda772009-07-23 08:31:31 +0200374 /* Enable management port */
frederic RODO6c36a702007-07-12 19:07:24 +0200375 macb_writel(bp, NCR, MACB_BIT(MPE));
376
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700377 bp->mii_bus = mdiobus_alloc();
378 if (bp->mii_bus == NULL) {
frederic RODO6c36a702007-07-12 19:07:24 +0200379 err = -ENOMEM;
380 goto err_out;
381 }
382
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700383 bp->mii_bus->name = "MACB_mii_bus";
384 bp->mii_bus->read = &macb_mdio_read;
385 bp->mii_bus->write = &macb_mdio_write;
Florian Fainelli98d5e572012-01-09 23:59:11 +0000386 snprintf(bp->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
387 bp->pdev->name, bp->pdev->id);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700388 bp->mii_bus->priv = bp;
389 bp->mii_bus->parent = &bp->dev->dev;
Jingoo Hanc607a0d2013-08-30 14:12:21 +0900390 pdata = dev_get_platdata(&bp->pdev->dev);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700391
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700392 bp->mii_bus->irq = kmalloc(sizeof(int)*PHY_MAX_ADDR, GFP_KERNEL);
393 if (!bp->mii_bus->irq) {
394 err = -ENOMEM;
395 goto err_out_free_mdiobus;
396 }
397
Jamie Iles91523942011-02-28 04:05:25 +0000398 dev_set_drvdata(&bp->dev->dev, bp->mii_bus);
frederic RODO6c36a702007-07-12 19:07:24 +0200399
Boris BREZILLON148cbb52013-08-22 17:57:28 +0200400 np = bp->pdev->dev.of_node;
401 if (np) {
402 /* try dt phy registration */
403 err = of_mdiobus_register(bp->mii_bus, np);
404
405 /* fallback to standard phy registration if no phy were
406 found during dt phy registration */
407 if (!err && !phy_find_first(bp->mii_bus)) {
408 for (i = 0; i < PHY_MAX_ADDR; i++) {
409 struct phy_device *phydev;
410
411 phydev = mdiobus_scan(bp->mii_bus, i);
412 if (IS_ERR(phydev)) {
413 err = PTR_ERR(phydev);
414 break;
415 }
416 }
417
418 if (err)
419 goto err_out_unregister_bus;
420 }
421 } else {
422 for (i = 0; i < PHY_MAX_ADDR; i++)
423 bp->mii_bus->irq[i] = PHY_POLL;
424
425 if (pdata)
426 bp->mii_bus->phy_mask = pdata->phy_mask;
427
428 err = mdiobus_register(bp->mii_bus);
429 }
430
431 if (err)
frederic RODO6c36a702007-07-12 19:07:24 +0200432 goto err_out_free_mdio_irq;
433
Boris BREZILLON7daa78e2013-08-27 14:36:14 +0200434 err = macb_mii_probe(bp->dev);
435 if (err)
frederic RODO6c36a702007-07-12 19:07:24 +0200436 goto err_out_unregister_bus;
frederic RODO6c36a702007-07-12 19:07:24 +0200437
438 return 0;
439
440err_out_unregister_bus:
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700441 mdiobus_unregister(bp->mii_bus);
frederic RODO6c36a702007-07-12 19:07:24 +0200442err_out_free_mdio_irq:
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700443 kfree(bp->mii_bus->irq);
444err_out_free_mdiobus:
445 mdiobus_free(bp->mii_bus);
frederic RODO6c36a702007-07-12 19:07:24 +0200446err_out:
447 return err;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100448}
449
450static void macb_update_stats(struct macb *bp)
451{
452 u32 __iomem *reg = bp->regs + MACB_PFR;
Jamie Ilesa494ed82011-03-09 16:26:35 +0000453 u32 *p = &bp->hw_stats.macb.rx_pause_frames;
454 u32 *end = &bp->hw_stats.macb.tx_pause_frames + 1;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100455
456 WARN_ON((unsigned long)(end - p - 1) != (MACB_TPF - MACB_PFR) / 4);
457
458 for(; p < end; p++, reg++)
Arun Chandrana50dad32015-02-18 16:59:35 +0530459 *p += readl_relaxed(reg);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100460}
461
Nicolas Ferree86cd532012-10-31 06:04:57 +0000462static int macb_halt_tx(struct macb *bp)
463{
464 unsigned long halt_time, timeout;
465 u32 status;
466
467 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(THALT));
468
469 timeout = jiffies + usecs_to_jiffies(MACB_HALT_TIMEOUT);
470 do {
471 halt_time = jiffies;
472 status = macb_readl(bp, TSR);
473 if (!(status & MACB_BIT(TGO)))
474 return 0;
475
476 usleep_range(10, 250);
477 } while (time_before(halt_time, timeout));
478
479 return -ETIMEDOUT;
480}
481
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200482static void macb_tx_unmap(struct macb *bp, struct macb_tx_skb *tx_skb)
483{
484 if (tx_skb->mapping) {
485 if (tx_skb->mapped_as_page)
486 dma_unmap_page(&bp->pdev->dev, tx_skb->mapping,
487 tx_skb->size, DMA_TO_DEVICE);
488 else
489 dma_unmap_single(&bp->pdev->dev, tx_skb->mapping,
490 tx_skb->size, DMA_TO_DEVICE);
491 tx_skb->mapping = 0;
492 }
493
494 if (tx_skb->skb) {
495 dev_kfree_skb_any(tx_skb->skb);
496 tx_skb->skb = NULL;
497 }
498}
499
Nicolas Ferree86cd532012-10-31 06:04:57 +0000500static void macb_tx_error_task(struct work_struct *work)
501{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100502 struct macb_queue *queue = container_of(work, struct macb_queue,
503 tx_error_task);
504 struct macb *bp = queue->bp;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000505 struct macb_tx_skb *tx_skb;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100506 struct macb_dma_desc *desc;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000507 struct sk_buff *skb;
508 unsigned int tail;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100509 unsigned long flags;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000510
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100511 netdev_vdbg(bp->dev, "macb_tx_error_task: q = %u, t = %u, h = %u\n",
512 (unsigned int)(queue - bp->queues),
513 queue->tx_tail, queue->tx_head);
514
515 /* Prevent the queue IRQ handlers from running: each of them may call
516 * macb_tx_interrupt(), which in turn may call netif_wake_subqueue().
517 * As explained below, we have to halt the transmission before updating
518 * TBQP registers so we call netif_tx_stop_all_queues() to notify the
519 * network engine about the macb/gem being halted.
520 */
521 spin_lock_irqsave(&bp->lock, flags);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000522
523 /* Make sure nobody is trying to queue up new packets */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100524 netif_tx_stop_all_queues(bp->dev);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000525
526 /*
527 * Stop transmission now
528 * (in case we have just queued new packets)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100529 * macb/gem must be halted to write TBQP register
Nicolas Ferree86cd532012-10-31 06:04:57 +0000530 */
531 if (macb_halt_tx(bp))
532 /* Just complain for now, reinitializing TX path can be good */
533 netdev_err(bp->dev, "BUG: halt tx timed out\n");
534
Nicolas Ferree86cd532012-10-31 06:04:57 +0000535 /*
536 * Treat frames in TX queue including the ones that caused the error.
537 * Free transmit buffers in upper layer.
538 */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100539 for (tail = queue->tx_tail; tail != queue->tx_head; tail++) {
540 u32 ctrl;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000541
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100542 desc = macb_tx_desc(queue, tail);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000543 ctrl = desc->ctrl;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100544 tx_skb = macb_tx_skb(queue, tail);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000545 skb = tx_skb->skb;
546
547 if (ctrl & MACB_BIT(TX_USED)) {
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200548 /* skb is set for the last buffer of the frame */
549 while (!skb) {
550 macb_tx_unmap(bp, tx_skb);
551 tail++;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100552 tx_skb = macb_tx_skb(queue, tail);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200553 skb = tx_skb->skb;
554 }
555
556 /* ctrl still refers to the first buffer descriptor
557 * since it's the only one written back by the hardware
558 */
559 if (!(ctrl & MACB_BIT(TX_BUF_EXHAUSTED))) {
560 netdev_vdbg(bp->dev, "txerr skb %u (data %p) TX complete\n",
561 macb_tx_ring_wrap(tail), skb->data);
562 bp->stats.tx_packets++;
563 bp->stats.tx_bytes += skb->len;
564 }
Nicolas Ferree86cd532012-10-31 06:04:57 +0000565 } else {
566 /*
567 * "Buffers exhausted mid-frame" errors may only happen
568 * if the driver is buggy, so complain loudly about those.
569 * Statistics are updated by hardware.
570 */
571 if (ctrl & MACB_BIT(TX_BUF_EXHAUSTED))
572 netdev_err(bp->dev,
573 "BUG: TX buffers exhausted mid-frame\n");
574
575 desc->ctrl = ctrl | MACB_BIT(TX_USED);
576 }
577
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200578 macb_tx_unmap(bp, tx_skb);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000579 }
580
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100581 /* Set end of TX queue */
582 desc = macb_tx_desc(queue, 0);
583 desc->addr = 0;
584 desc->ctrl = MACB_BIT(TX_USED);
585
Nicolas Ferree86cd532012-10-31 06:04:57 +0000586 /* Make descriptor updates visible to hardware */
587 wmb();
588
589 /* Reinitialize the TX desc queue */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100590 queue_writel(queue, TBQP, queue->tx_ring_dma);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000591 /* Make TX ring reflect state of hardware */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100592 queue->tx_head = 0;
593 queue->tx_tail = 0;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000594
595 /* Housework before enabling TX IRQ */
596 macb_writel(bp, TSR, macb_readl(bp, TSR));
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100597 queue_writel(queue, IER, MACB_TX_INT_FLAGS);
598
599 /* Now we are ready to start transmission again */
600 netif_tx_start_all_queues(bp->dev);
601 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TSTART));
602
603 spin_unlock_irqrestore(&bp->lock, flags);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000604}
605
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100606static void macb_tx_interrupt(struct macb_queue *queue)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100607{
608 unsigned int tail;
609 unsigned int head;
610 u32 status;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100611 struct macb *bp = queue->bp;
612 u16 queue_index = queue - bp->queues;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100613
614 status = macb_readl(bp, TSR);
615 macb_writel(bp, TSR, status);
616
Nicolas Ferre581df9e2013-05-14 03:00:16 +0000617 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100618 queue_writel(queue, ISR, MACB_BIT(TCOMP));
Steffen Trumtrar749a2b62013-03-27 23:07:05 +0000619
Nicolas Ferree86cd532012-10-31 06:04:57 +0000620 netdev_vdbg(bp->dev, "macb_tx_interrupt status = 0x%03lx\n",
621 (unsigned long)status);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100622
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100623 head = queue->tx_head;
624 for (tail = queue->tx_tail; tail != head; tail++) {
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000625 struct macb_tx_skb *tx_skb;
626 struct sk_buff *skb;
627 struct macb_dma_desc *desc;
628 u32 ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100629
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100630 desc = macb_tx_desc(queue, tail);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100631
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000632 /* Make hw descriptor updates visible to CPU */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100633 rmb();
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000634
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000635 ctrl = desc->ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100636
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200637 /* TX_USED bit is only set by hardware on the very first buffer
638 * descriptor of the transmitted frame.
639 */
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000640 if (!(ctrl & MACB_BIT(TX_USED)))
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100641 break;
642
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200643 /* Process all buffers of the current transmitted frame */
644 for (;; tail++) {
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100645 tx_skb = macb_tx_skb(queue, tail);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200646 skb = tx_skb->skb;
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000647
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200648 /* First, update TX stats if needed */
649 if (skb) {
650 netdev_vdbg(bp->dev, "skb %u (data %p) TX complete\n",
651 macb_tx_ring_wrap(tail), skb->data);
652 bp->stats.tx_packets++;
653 bp->stats.tx_bytes += skb->len;
654 }
655
656 /* Now we can safely release resources */
657 macb_tx_unmap(bp, tx_skb);
658
659 /* skb is set only for the last buffer of the frame.
660 * WARNING: at this point skb has been freed by
661 * macb_tx_unmap().
662 */
663 if (skb)
664 break;
665 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100666 }
667
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100668 queue->tx_tail = tail;
669 if (__netif_subqueue_stopped(bp->dev, queue_index) &&
670 CIRC_CNT(queue->tx_head, queue->tx_tail,
671 TX_RING_SIZE) <= MACB_TX_WAKEUP_THRESH)
672 netif_wake_subqueue(bp->dev, queue_index);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100673}
674
Nicolas Ferre4df95132013-06-04 21:57:12 +0000675static void gem_rx_refill(struct macb *bp)
676{
677 unsigned int entry;
678 struct sk_buff *skb;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000679 dma_addr_t paddr;
680
681 while (CIRC_SPACE(bp->rx_prepared_head, bp->rx_tail, RX_RING_SIZE) > 0) {
Nicolas Ferre4df95132013-06-04 21:57:12 +0000682 entry = macb_rx_ring_wrap(bp->rx_prepared_head);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000683
684 /* Make hw descriptor updates visible to CPU */
685 rmb();
686
Nicolas Ferre4df95132013-06-04 21:57:12 +0000687 bp->rx_prepared_head++;
688
Nicolas Ferre4df95132013-06-04 21:57:12 +0000689 if (bp->rx_skbuff[entry] == NULL) {
690 /* allocate sk_buff for this free entry in ring */
691 skb = netdev_alloc_skb(bp->dev, bp->rx_buffer_size);
692 if (unlikely(skb == NULL)) {
693 netdev_err(bp->dev,
694 "Unable to allocate sk_buff\n");
695 break;
696 }
Nicolas Ferre4df95132013-06-04 21:57:12 +0000697
698 /* now fill corresponding descriptor entry */
699 paddr = dma_map_single(&bp->pdev->dev, skb->data,
700 bp->rx_buffer_size, DMA_FROM_DEVICE);
Soren Brinkmann92030902014-03-04 08:46:39 -0800701 if (dma_mapping_error(&bp->pdev->dev, paddr)) {
702 dev_kfree_skb(skb);
703 break;
704 }
705
706 bp->rx_skbuff[entry] = skb;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000707
708 if (entry == RX_RING_SIZE - 1)
709 paddr |= MACB_BIT(RX_WRAP);
710 bp->rx_ring[entry].addr = paddr;
711 bp->rx_ring[entry].ctrl = 0;
712
713 /* properly align Ethernet header */
714 skb_reserve(skb, NET_IP_ALIGN);
Punnaiah Choudary Kallurid4c216c2015-04-29 08:34:46 +0530715 } else {
716 bp->rx_ring[entry].addr &= ~MACB_BIT(RX_USED);
717 bp->rx_ring[entry].ctrl = 0;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000718 }
719 }
720
721 /* Make descriptor updates visible to hardware */
722 wmb();
723
724 netdev_vdbg(bp->dev, "rx ring: prepared head %d, tail %d\n",
725 bp->rx_prepared_head, bp->rx_tail);
726}
727
728/* Mark DMA descriptors from begin up to and not including end as unused */
729static void discard_partial_frame(struct macb *bp, unsigned int begin,
730 unsigned int end)
731{
732 unsigned int frag;
733
734 for (frag = begin; frag != end; frag++) {
735 struct macb_dma_desc *desc = macb_rx_desc(bp, frag);
736 desc->addr &= ~MACB_BIT(RX_USED);
737 }
738
739 /* Make descriptor updates visible to hardware */
740 wmb();
741
742 /*
743 * When this happens, the hardware stats registers for
744 * whatever caused this is updated, so we don't have to record
745 * anything.
746 */
747}
748
749static int gem_rx(struct macb *bp, int budget)
750{
751 unsigned int len;
752 unsigned int entry;
753 struct sk_buff *skb;
754 struct macb_dma_desc *desc;
755 int count = 0;
756
757 while (count < budget) {
758 u32 addr, ctrl;
759
760 entry = macb_rx_ring_wrap(bp->rx_tail);
761 desc = &bp->rx_ring[entry];
762
763 /* Make hw descriptor updates visible to CPU */
764 rmb();
765
766 addr = desc->addr;
767 ctrl = desc->ctrl;
768
769 if (!(addr & MACB_BIT(RX_USED)))
770 break;
771
Nicolas Ferre4df95132013-06-04 21:57:12 +0000772 bp->rx_tail++;
773 count++;
774
775 if (!(ctrl & MACB_BIT(RX_SOF) && ctrl & MACB_BIT(RX_EOF))) {
776 netdev_err(bp->dev,
777 "not whole frame pointed by descriptor\n");
778 bp->stats.rx_dropped++;
779 break;
780 }
781 skb = bp->rx_skbuff[entry];
782 if (unlikely(!skb)) {
783 netdev_err(bp->dev,
784 "inconsistent Rx descriptor chain\n");
785 bp->stats.rx_dropped++;
786 break;
787 }
788 /* now everything is ready for receiving packet */
789 bp->rx_skbuff[entry] = NULL;
Harini Katakam98b5a0f42015-05-06 22:27:17 +0530790 len = ctrl & bp->rx_frm_len_mask;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000791
792 netdev_vdbg(bp->dev, "gem_rx %u (len %u)\n", entry, len);
793
794 skb_put(skb, len);
795 addr = MACB_BF(RX_WADDR, MACB_BFEXT(RX_WADDR, addr));
796 dma_unmap_single(&bp->pdev->dev, addr,
Soren Brinkmann48330e082014-03-04 08:46:40 -0800797 bp->rx_buffer_size, DMA_FROM_DEVICE);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000798
799 skb->protocol = eth_type_trans(skb, bp->dev);
800 skb_checksum_none_assert(skb);
Cyrille Pitchen924ec532014-07-24 13:51:01 +0200801 if (bp->dev->features & NETIF_F_RXCSUM &&
802 !(bp->dev->flags & IFF_PROMISC) &&
803 GEM_BFEXT(RX_CSUM, ctrl) & GEM_RX_CSUM_CHECKED_MASK)
804 skb->ip_summed = CHECKSUM_UNNECESSARY;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000805
806 bp->stats.rx_packets++;
807 bp->stats.rx_bytes += skb->len;
808
809#if defined(DEBUG) && defined(VERBOSE_DEBUG)
810 netdev_vdbg(bp->dev, "received skb of length %u, csum: %08x\n",
811 skb->len, skb->csum);
812 print_hex_dump(KERN_DEBUG, " mac: ", DUMP_PREFIX_ADDRESS, 16, 1,
Cyrille Pitchen51f83012014-12-11 11:15:54 +0100813 skb_mac_header(skb), 16, true);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000814 print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_ADDRESS, 16, 1,
815 skb->data, 32, true);
816#endif
817
818 netif_receive_skb(skb);
819 }
820
821 gem_rx_refill(bp);
822
823 return count;
824}
825
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100826static int macb_rx_frame(struct macb *bp, unsigned int first_frag,
827 unsigned int last_frag)
828{
829 unsigned int len;
830 unsigned int frag;
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +0000831 unsigned int offset;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100832 struct sk_buff *skb;
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000833 struct macb_dma_desc *desc;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100834
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000835 desc = macb_rx_desc(bp, last_frag);
Harini Katakam98b5a0f42015-05-06 22:27:17 +0530836 len = desc->ctrl & bp->rx_frm_len_mask;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100837
Havard Skinnemoena268adb2012-10-31 06:04:52 +0000838 netdev_vdbg(bp->dev, "macb_rx_frame frags %u - %u (len %u)\n",
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000839 macb_rx_ring_wrap(first_frag),
840 macb_rx_ring_wrap(last_frag), len);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100841
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +0000842 /*
843 * The ethernet header starts NET_IP_ALIGN bytes into the
844 * first buffer. Since the header is 14 bytes, this makes the
845 * payload word-aligned.
846 *
847 * Instead of calling skb_reserve(NET_IP_ALIGN), we just copy
848 * the two padding bytes into the skb so that we avoid hitting
849 * the slowpath in memcpy(), and pull them off afterwards.
850 */
851 skb = netdev_alloc_skb(bp->dev, len + NET_IP_ALIGN);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100852 if (!skb) {
853 bp->stats.rx_dropped++;
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000854 for (frag = first_frag; ; frag++) {
855 desc = macb_rx_desc(bp, frag);
856 desc->addr &= ~MACB_BIT(RX_USED);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100857 if (frag == last_frag)
858 break;
859 }
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000860
861 /* Make descriptor updates visible to hardware */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100862 wmb();
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000863
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100864 return 1;
865 }
866
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +0000867 offset = 0;
868 len += NET_IP_ALIGN;
Eric Dumazetbc8acf22010-09-02 13:07:41 -0700869 skb_checksum_none_assert(skb);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100870 skb_put(skb, len);
871
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000872 for (frag = first_frag; ; frag++) {
Nicolas Ferre1b447912013-06-04 21:57:11 +0000873 unsigned int frag_len = bp->rx_buffer_size;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100874
875 if (offset + frag_len > len) {
876 BUG_ON(frag != last_frag);
877 frag_len = len - offset;
878 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300879 skb_copy_to_linear_data_offset(skb, offset,
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000880 macb_rx_buffer(bp, frag), frag_len);
Nicolas Ferre1b447912013-06-04 21:57:11 +0000881 offset += bp->rx_buffer_size;
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000882 desc = macb_rx_desc(bp, frag);
883 desc->addr &= ~MACB_BIT(RX_USED);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100884
885 if (frag == last_frag)
886 break;
887 }
888
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000889 /* Make descriptor updates visible to hardware */
890 wmb();
891
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +0000892 __skb_pull(skb, NET_IP_ALIGN);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100893 skb->protocol = eth_type_trans(skb, bp->dev);
894
895 bp->stats.rx_packets++;
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +0000896 bp->stats.rx_bytes += skb->len;
Havard Skinnemoena268adb2012-10-31 06:04:52 +0000897 netdev_vdbg(bp->dev, "received skb of length %u, csum: %08x\n",
Jamie Ilesc220f8c2011-03-08 20:27:08 +0000898 skb->len, skb->csum);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100899 netif_receive_skb(skb);
900
901 return 0;
902}
903
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100904static int macb_rx(struct macb *bp, int budget)
905{
906 int received = 0;
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000907 unsigned int tail;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100908 int first_frag = -1;
909
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000910 for (tail = bp->rx_tail; budget > 0; tail++) {
911 struct macb_dma_desc *desc = macb_rx_desc(bp, tail);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100912 u32 addr, ctrl;
913
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000914 /* Make hw descriptor updates visible to CPU */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100915 rmb();
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000916
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000917 addr = desc->addr;
918 ctrl = desc->ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100919
920 if (!(addr & MACB_BIT(RX_USED)))
921 break;
922
923 if (ctrl & MACB_BIT(RX_SOF)) {
924 if (first_frag != -1)
925 discard_partial_frame(bp, first_frag, tail);
926 first_frag = tail;
927 }
928
929 if (ctrl & MACB_BIT(RX_EOF)) {
930 int dropped;
931 BUG_ON(first_frag == -1);
932
933 dropped = macb_rx_frame(bp, first_frag, tail);
934 first_frag = -1;
935 if (!dropped) {
936 received++;
937 budget--;
938 }
939 }
940 }
941
942 if (first_frag != -1)
943 bp->rx_tail = first_frag;
944 else
945 bp->rx_tail = tail;
946
947 return received;
948}
949
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700950static int macb_poll(struct napi_struct *napi, int budget)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100951{
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700952 struct macb *bp = container_of(napi, struct macb, napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700953 int work_done;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100954 u32 status;
955
956 status = macb_readl(bp, RSR);
957 macb_writel(bp, RSR, status);
958
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700959 work_done = 0;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100960
Havard Skinnemoena268adb2012-10-31 06:04:52 +0000961 netdev_vdbg(bp->dev, "poll: status = %08lx, budget = %d\n",
Jamie Ilesc220f8c2011-03-08 20:27:08 +0000962 (unsigned long)status, budget);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100963
Nicolas Ferre4df95132013-06-04 21:57:12 +0000964 work_done = bp->macbgem_ops.mog_rx(bp, budget);
Joshua Hokeb3363692010-10-25 01:44:22 +0000965 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -0800966 napi_complete(napi);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100967
Nicolas Ferre8770e912013-02-12 11:08:48 +0100968 /* Packets received while interrupts were disabled */
969 status = macb_readl(bp, RSR);
Soren Brinkmann504ad982014-05-04 15:43:01 -0700970 if (status) {
Soren Brinkmann02f7a342014-05-04 15:43:00 -0700971 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
972 macb_writel(bp, ISR, MACB_BIT(RCOMP));
Nicolas Ferre8770e912013-02-12 11:08:48 +0100973 napi_reschedule(napi);
Soren Brinkmann02f7a342014-05-04 15:43:00 -0700974 } else {
975 macb_writel(bp, IER, MACB_RX_INT_FLAGS);
976 }
Joshua Hokeb3363692010-10-25 01:44:22 +0000977 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100978
979 /* TODO: Handle errors */
980
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700981 return work_done;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100982}
983
984static irqreturn_t macb_interrupt(int irq, void *dev_id)
985{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100986 struct macb_queue *queue = dev_id;
987 struct macb *bp = queue->bp;
988 struct net_device *dev = bp->dev;
Nathan Sullivanbfbb92c2015-05-05 15:00:25 -0500989 u32 status, ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100990
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100991 status = queue_readl(queue, ISR);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100992
993 if (unlikely(!status))
994 return IRQ_NONE;
995
996 spin_lock(&bp->lock);
997
998 while (status) {
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100999 /* close possible race with dev_close */
1000 if (unlikely(!netif_running(dev))) {
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001001 queue_writel(queue, IDR, -1);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001002 break;
1003 }
1004
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001005 netdev_vdbg(bp->dev, "queue = %u, isr = 0x%08lx\n",
1006 (unsigned int)(queue - bp->queues),
1007 (unsigned long)status);
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001008
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001009 if (status & MACB_RX_INT_FLAGS) {
Joshua Hokeb3363692010-10-25 01:44:22 +00001010 /*
1011 * There's no point taking any more interrupts
1012 * until we have processed the buffers. The
1013 * scheduling call may fail if the poll routine
1014 * is already scheduled, so disable interrupts
1015 * now.
1016 */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001017 queue_writel(queue, IDR, MACB_RX_INT_FLAGS);
Nicolas Ferre581df9e2013-05-14 03:00:16 +00001018 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001019 queue_writel(queue, ISR, MACB_BIT(RCOMP));
Joshua Hokeb3363692010-10-25 01:44:22 +00001020
Ben Hutchings288379f2009-01-19 16:43:59 -08001021 if (napi_schedule_prep(&bp->napi)) {
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001022 netdev_vdbg(bp->dev, "scheduling RX softirq\n");
Ben Hutchings288379f2009-01-19 16:43:59 -08001023 __napi_schedule(&bp->napi);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001024 }
1025 }
1026
Nicolas Ferree86cd532012-10-31 06:04:57 +00001027 if (unlikely(status & (MACB_TX_ERR_FLAGS))) {
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001028 queue_writel(queue, IDR, MACB_TX_INT_FLAGS);
1029 schedule_work(&queue->tx_error_task);
Soren Brinkmann6a027b72014-05-04 15:42:59 -07001030
1031 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001032 queue_writel(queue, ISR, MACB_TX_ERR_FLAGS);
Soren Brinkmann6a027b72014-05-04 15:42:59 -07001033
Nicolas Ferree86cd532012-10-31 06:04:57 +00001034 break;
1035 }
1036
1037 if (status & MACB_BIT(TCOMP))
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001038 macb_tx_interrupt(queue);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001039
1040 /*
1041 * Link change detection isn't possible with RMII, so we'll
1042 * add that if/when we get our hands on a full-blown MII PHY.
1043 */
1044
Nathan Sullivan86b5e7d2015-05-13 17:01:36 -05001045 /* There is a hardware issue under heavy load where DMA can
1046 * stop, this causes endless "used buffer descriptor read"
1047 * interrupts but it can be cleared by re-enabling RX. See
1048 * the at91 manual, section 41.3.1 or the Zynq manual
1049 * section 16.7.4 for details.
1050 */
Nathan Sullivanbfbb92c2015-05-05 15:00:25 -05001051 if (status & MACB_BIT(RXUBR)) {
1052 ctrl = macb_readl(bp, NCR);
1053 macb_writel(bp, NCR, ctrl & ~MACB_BIT(RE));
1054 macb_writel(bp, NCR, ctrl | MACB_BIT(RE));
1055
1056 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1057 macb_writel(bp, ISR, MACB_BIT(RXUBR));
1058 }
1059
Alexander Steinb19f7f72011-04-13 05:03:24 +00001060 if (status & MACB_BIT(ISR_ROVR)) {
1061 /* We missed at least one packet */
Jamie Ilesf75ba502011-11-08 10:12:32 +00001062 if (macb_is_gem(bp))
1063 bp->hw_stats.gem.rx_overruns++;
1064 else
1065 bp->hw_stats.macb.rx_overruns++;
Soren Brinkmann6a027b72014-05-04 15:42:59 -07001066
1067 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001068 queue_writel(queue, ISR, MACB_BIT(ISR_ROVR));
Alexander Steinb19f7f72011-04-13 05:03:24 +00001069 }
1070
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001071 if (status & MACB_BIT(HRESP)) {
1072 /*
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001073 * TODO: Reset the hardware, and maybe move the
1074 * netdev_err to a lower-priority context as well
1075 * (work queue?)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001076 */
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001077 netdev_err(dev, "DMA bus error: HRESP not OK\n");
Soren Brinkmann6a027b72014-05-04 15:42:59 -07001078
1079 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001080 queue_writel(queue, ISR, MACB_BIT(HRESP));
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001081 }
1082
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001083 status = queue_readl(queue, ISR);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001084 }
1085
1086 spin_unlock(&bp->lock);
1087
1088 return IRQ_HANDLED;
1089}
1090
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001091#ifdef CONFIG_NET_POLL_CONTROLLER
1092/*
1093 * Polling receive - used by netconsole and other diagnostic tools
1094 * to allow network i/o with interrupts disabled.
1095 */
1096static void macb_poll_controller(struct net_device *dev)
1097{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001098 struct macb *bp = netdev_priv(dev);
1099 struct macb_queue *queue;
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001100 unsigned long flags;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001101 unsigned int q;
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001102
1103 local_irq_save(flags);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001104 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
1105 macb_interrupt(dev->irq, queue);
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001106 local_irq_restore(flags);
1107}
1108#endif
1109
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001110static inline unsigned int macb_count_tx_descriptors(struct macb *bp,
1111 unsigned int len)
1112{
1113 return (len + bp->max_tx_length - 1) / bp->max_tx_length;
1114}
1115
1116static unsigned int macb_tx_map(struct macb *bp,
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001117 struct macb_queue *queue,
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001118 struct sk_buff *skb)
1119{
1120 dma_addr_t mapping;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001121 unsigned int len, entry, i, tx_head = queue->tx_head;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001122 struct macb_tx_skb *tx_skb = NULL;
1123 struct macb_dma_desc *desc;
1124 unsigned int offset, size, count = 0;
1125 unsigned int f, nr_frags = skb_shinfo(skb)->nr_frags;
1126 unsigned int eof = 1;
1127 u32 ctrl;
1128
1129 /* First, map non-paged data */
1130 len = skb_headlen(skb);
1131 offset = 0;
1132 while (len) {
1133 size = min(len, bp->max_tx_length);
1134 entry = macb_tx_ring_wrap(tx_head);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001135 tx_skb = &queue->tx_skb[entry];
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001136
1137 mapping = dma_map_single(&bp->pdev->dev,
1138 skb->data + offset,
1139 size, DMA_TO_DEVICE);
1140 if (dma_mapping_error(&bp->pdev->dev, mapping))
1141 goto dma_error;
1142
1143 /* Save info to properly release resources */
1144 tx_skb->skb = NULL;
1145 tx_skb->mapping = mapping;
1146 tx_skb->size = size;
1147 tx_skb->mapped_as_page = false;
1148
1149 len -= size;
1150 offset += size;
1151 count++;
1152 tx_head++;
1153 }
1154
1155 /* Then, map paged data from fragments */
1156 for (f = 0; f < nr_frags; f++) {
1157 const skb_frag_t *frag = &skb_shinfo(skb)->frags[f];
1158
1159 len = skb_frag_size(frag);
1160 offset = 0;
1161 while (len) {
1162 size = min(len, bp->max_tx_length);
1163 entry = macb_tx_ring_wrap(tx_head);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001164 tx_skb = &queue->tx_skb[entry];
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001165
1166 mapping = skb_frag_dma_map(&bp->pdev->dev, frag,
1167 offset, size, DMA_TO_DEVICE);
1168 if (dma_mapping_error(&bp->pdev->dev, mapping))
1169 goto dma_error;
1170
1171 /* Save info to properly release resources */
1172 tx_skb->skb = NULL;
1173 tx_skb->mapping = mapping;
1174 tx_skb->size = size;
1175 tx_skb->mapped_as_page = true;
1176
1177 len -= size;
1178 offset += size;
1179 count++;
1180 tx_head++;
1181 }
1182 }
1183
1184 /* Should never happen */
1185 if (unlikely(tx_skb == NULL)) {
1186 netdev_err(bp->dev, "BUG! empty skb!\n");
1187 return 0;
1188 }
1189
1190 /* This is the last buffer of the frame: save socket buffer */
1191 tx_skb->skb = skb;
1192
1193 /* Update TX ring: update buffer descriptors in reverse order
1194 * to avoid race condition
1195 */
1196
1197 /* Set 'TX_USED' bit in buffer descriptor at tx_head position
1198 * to set the end of TX queue
1199 */
1200 i = tx_head;
1201 entry = macb_tx_ring_wrap(i);
1202 ctrl = MACB_BIT(TX_USED);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001203 desc = &queue->tx_ring[entry];
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001204 desc->ctrl = ctrl;
1205
1206 do {
1207 i--;
1208 entry = macb_tx_ring_wrap(i);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001209 tx_skb = &queue->tx_skb[entry];
1210 desc = &queue->tx_ring[entry];
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001211
1212 ctrl = (u32)tx_skb->size;
1213 if (eof) {
1214 ctrl |= MACB_BIT(TX_LAST);
1215 eof = 0;
1216 }
1217 if (unlikely(entry == (TX_RING_SIZE - 1)))
1218 ctrl |= MACB_BIT(TX_WRAP);
1219
1220 /* Set TX buffer descriptor */
1221 desc->addr = tx_skb->mapping;
1222 /* desc->addr must be visible to hardware before clearing
1223 * 'TX_USED' bit in desc->ctrl.
1224 */
1225 wmb();
1226 desc->ctrl = ctrl;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001227 } while (i != queue->tx_head);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001228
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001229 queue->tx_head = tx_head;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001230
1231 return count;
1232
1233dma_error:
1234 netdev_err(bp->dev, "TX DMA map failed\n");
1235
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001236 for (i = queue->tx_head; i != tx_head; i++) {
1237 tx_skb = macb_tx_skb(queue, i);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001238
1239 macb_tx_unmap(bp, tx_skb);
1240 }
1241
1242 return 0;
1243}
1244
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001245static int macb_start_xmit(struct sk_buff *skb, struct net_device *dev)
1246{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001247 u16 queue_index = skb_get_queue_mapping(skb);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001248 struct macb *bp = netdev_priv(dev);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001249 struct macb_queue *queue = &bp->queues[queue_index];
Dongdong Deng48719532009-08-23 19:49:07 -07001250 unsigned long flags;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001251 unsigned int count, nr_frags, frag_size, f;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001252
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001253#if defined(DEBUG) && defined(VERBOSE_DEBUG)
1254 netdev_vdbg(bp->dev,
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001255 "start_xmit: queue %hu len %u head %p data %p tail %p end %p\n",
1256 queue_index, skb->len, skb->head, skb->data,
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001257 skb_tail_pointer(skb), skb_end_pointer(skb));
1258 print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_OFFSET, 16, 1,
1259 skb->data, 16, true);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001260#endif
1261
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001262 /* Count how many TX buffer descriptors are needed to send this
1263 * socket buffer: skb fragments of jumbo frames may need to be
1264 * splitted into many buffer descriptors.
1265 */
1266 count = macb_count_tx_descriptors(bp, skb_headlen(skb));
1267 nr_frags = skb_shinfo(skb)->nr_frags;
1268 for (f = 0; f < nr_frags; f++) {
1269 frag_size = skb_frag_size(&skb_shinfo(skb)->frags[f]);
1270 count += macb_count_tx_descriptors(bp, frag_size);
1271 }
1272
Dongdong Deng48719532009-08-23 19:49:07 -07001273 spin_lock_irqsave(&bp->lock, flags);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001274
1275 /* This is a hard error, log it. */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001276 if (CIRC_SPACE(queue->tx_head, queue->tx_tail, TX_RING_SIZE) < count) {
1277 netif_stop_subqueue(dev, queue_index);
Dongdong Deng48719532009-08-23 19:49:07 -07001278 spin_unlock_irqrestore(&bp->lock, flags);
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001279 netdev_dbg(bp->dev, "tx_head = %u, tx_tail = %u\n",
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001280 queue->tx_head, queue->tx_tail);
Patrick McHardy5b548142009-06-12 06:22:29 +00001281 return NETDEV_TX_BUSY;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001282 }
1283
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001284 /* Map socket buffer for DMA transfer */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001285 if (!macb_tx_map(bp, queue, skb)) {
Eric W. Biedermanc88b5b62014-03-15 16:08:27 -07001286 dev_kfree_skb_any(skb);
Soren Brinkmann92030902014-03-04 08:46:39 -08001287 goto unlock;
1288 }
Havard Skinnemoen55054a12012-10-31 06:04:55 +00001289
Havard Skinnemoen03dbe052012-10-31 06:04:51 +00001290 /* Make newly initialized descriptor visible to hardware */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001291 wmb();
1292
Richard Cochrane0720922011-06-19 21:51:28 +00001293 skb_tx_timestamp(skb);
1294
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001295 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TSTART));
1296
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001297 if (CIRC_SPACE(queue->tx_head, queue->tx_tail, TX_RING_SIZE) < 1)
1298 netif_stop_subqueue(dev, queue_index);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001299
Soren Brinkmann92030902014-03-04 08:46:39 -08001300unlock:
Dongdong Deng48719532009-08-23 19:49:07 -07001301 spin_unlock_irqrestore(&bp->lock, flags);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001302
Patrick McHardy6ed10652009-06-23 06:03:08 +00001303 return NETDEV_TX_OK;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001304}
1305
Nicolas Ferre4df95132013-06-04 21:57:12 +00001306static void macb_init_rx_buffer_size(struct macb *bp, size_t size)
Nicolas Ferre1b447912013-06-04 21:57:11 +00001307{
1308 if (!macb_is_gem(bp)) {
1309 bp->rx_buffer_size = MACB_RX_BUFFER_SIZE;
1310 } else {
Nicolas Ferre4df95132013-06-04 21:57:12 +00001311 bp->rx_buffer_size = size;
Nicolas Ferre1b447912013-06-04 21:57:11 +00001312
Nicolas Ferre1b447912013-06-04 21:57:11 +00001313 if (bp->rx_buffer_size % RX_BUFFER_MULTIPLE) {
Nicolas Ferre4df95132013-06-04 21:57:12 +00001314 netdev_dbg(bp->dev,
1315 "RX buffer must be multiple of %d bytes, expanding\n",
Nicolas Ferre1b447912013-06-04 21:57:11 +00001316 RX_BUFFER_MULTIPLE);
1317 bp->rx_buffer_size =
Nicolas Ferre4df95132013-06-04 21:57:12 +00001318 roundup(bp->rx_buffer_size, RX_BUFFER_MULTIPLE);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001319 }
Nicolas Ferre1b447912013-06-04 21:57:11 +00001320 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00001321
1322 netdev_dbg(bp->dev, "mtu [%u] rx_buffer_size [%Zu]\n",
1323 bp->dev->mtu, bp->rx_buffer_size);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001324}
1325
Nicolas Ferre4df95132013-06-04 21:57:12 +00001326static void gem_free_rx_buffers(struct macb *bp)
1327{
1328 struct sk_buff *skb;
1329 struct macb_dma_desc *desc;
1330 dma_addr_t addr;
1331 int i;
1332
1333 if (!bp->rx_skbuff)
1334 return;
1335
1336 for (i = 0; i < RX_RING_SIZE; i++) {
1337 skb = bp->rx_skbuff[i];
1338
1339 if (skb == NULL)
1340 continue;
1341
1342 desc = &bp->rx_ring[i];
1343 addr = MACB_BF(RX_WADDR, MACB_BFEXT(RX_WADDR, desc->addr));
Soren Brinkmannccd6d0a2014-05-04 15:42:58 -07001344 dma_unmap_single(&bp->pdev->dev, addr, bp->rx_buffer_size,
Nicolas Ferre4df95132013-06-04 21:57:12 +00001345 DMA_FROM_DEVICE);
1346 dev_kfree_skb_any(skb);
1347 skb = NULL;
1348 }
1349
1350 kfree(bp->rx_skbuff);
1351 bp->rx_skbuff = NULL;
1352}
1353
1354static void macb_free_rx_buffers(struct macb *bp)
1355{
1356 if (bp->rx_buffers) {
1357 dma_free_coherent(&bp->pdev->dev,
1358 RX_RING_SIZE * bp->rx_buffer_size,
1359 bp->rx_buffers, bp->rx_buffers_dma);
1360 bp->rx_buffers = NULL;
1361 }
1362}
Nicolas Ferre1b447912013-06-04 21:57:11 +00001363
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001364static void macb_free_consistent(struct macb *bp)
1365{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001366 struct macb_queue *queue;
1367 unsigned int q;
1368
Nicolas Ferre4df95132013-06-04 21:57:12 +00001369 bp->macbgem_ops.mog_free_rx_buffers(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001370 if (bp->rx_ring) {
1371 dma_free_coherent(&bp->pdev->dev, RX_RING_BYTES,
1372 bp->rx_ring, bp->rx_ring_dma);
1373 bp->rx_ring = NULL;
1374 }
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001375
1376 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1377 kfree(queue->tx_skb);
1378 queue->tx_skb = NULL;
1379 if (queue->tx_ring) {
1380 dma_free_coherent(&bp->pdev->dev, TX_RING_BYTES,
1381 queue->tx_ring, queue->tx_ring_dma);
1382 queue->tx_ring = NULL;
1383 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001384 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00001385}
1386
1387static int gem_alloc_rx_buffers(struct macb *bp)
1388{
1389 int size;
1390
1391 size = RX_RING_SIZE * sizeof(struct sk_buff *);
1392 bp->rx_skbuff = kzalloc(size, GFP_KERNEL);
1393 if (!bp->rx_skbuff)
1394 return -ENOMEM;
1395 else
1396 netdev_dbg(bp->dev,
1397 "Allocated %d RX struct sk_buff entries at %p\n",
1398 RX_RING_SIZE, bp->rx_skbuff);
1399 return 0;
1400}
1401
1402static int macb_alloc_rx_buffers(struct macb *bp)
1403{
1404 int size;
1405
1406 size = RX_RING_SIZE * bp->rx_buffer_size;
1407 bp->rx_buffers = dma_alloc_coherent(&bp->pdev->dev, size,
1408 &bp->rx_buffers_dma, GFP_KERNEL);
1409 if (!bp->rx_buffers)
1410 return -ENOMEM;
1411 else
1412 netdev_dbg(bp->dev,
1413 "Allocated RX buffers of %d bytes at %08lx (mapped %p)\n",
1414 size, (unsigned long)bp->rx_buffers_dma, bp->rx_buffers);
1415 return 0;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001416}
1417
1418static int macb_alloc_consistent(struct macb *bp)
1419{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001420 struct macb_queue *queue;
1421 unsigned int q;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001422 int size;
1423
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001424 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1425 size = TX_RING_BYTES;
1426 queue->tx_ring = dma_alloc_coherent(&bp->pdev->dev, size,
1427 &queue->tx_ring_dma,
1428 GFP_KERNEL);
1429 if (!queue->tx_ring)
1430 goto out_err;
1431 netdev_dbg(bp->dev,
1432 "Allocated TX ring for queue %u of %d bytes at %08lx (mapped %p)\n",
1433 q, size, (unsigned long)queue->tx_ring_dma,
1434 queue->tx_ring);
1435
1436 size = TX_RING_SIZE * sizeof(struct macb_tx_skb);
1437 queue->tx_skb = kmalloc(size, GFP_KERNEL);
1438 if (!queue->tx_skb)
1439 goto out_err;
1440 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001441
1442 size = RX_RING_BYTES;
1443 bp->rx_ring = dma_alloc_coherent(&bp->pdev->dev, size,
1444 &bp->rx_ring_dma, GFP_KERNEL);
1445 if (!bp->rx_ring)
1446 goto out_err;
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001447 netdev_dbg(bp->dev,
1448 "Allocated RX ring of %d bytes at %08lx (mapped %p)\n",
1449 size, (unsigned long)bp->rx_ring_dma, bp->rx_ring);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001450
Nicolas Ferre4df95132013-06-04 21:57:12 +00001451 if (bp->macbgem_ops.mog_alloc_rx_buffers(bp))
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001452 goto out_err;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001453
1454 return 0;
1455
1456out_err:
1457 macb_free_consistent(bp);
1458 return -ENOMEM;
1459}
1460
Nicolas Ferre4df95132013-06-04 21:57:12 +00001461static void gem_init_rings(struct macb *bp)
1462{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001463 struct macb_queue *queue;
1464 unsigned int q;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001465 int i;
1466
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001467 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1468 for (i = 0; i < TX_RING_SIZE; i++) {
1469 queue->tx_ring[i].addr = 0;
1470 queue->tx_ring[i].ctrl = MACB_BIT(TX_USED);
1471 }
1472 queue->tx_ring[TX_RING_SIZE - 1].ctrl |= MACB_BIT(TX_WRAP);
1473 queue->tx_head = 0;
1474 queue->tx_tail = 0;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001475 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00001476
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001477 bp->rx_tail = 0;
1478 bp->rx_prepared_head = 0;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001479
1480 gem_rx_refill(bp);
1481}
1482
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001483static void macb_init_rings(struct macb *bp)
1484{
1485 int i;
1486 dma_addr_t addr;
1487
1488 addr = bp->rx_buffers_dma;
1489 for (i = 0; i < RX_RING_SIZE; i++) {
1490 bp->rx_ring[i].addr = addr;
1491 bp->rx_ring[i].ctrl = 0;
Nicolas Ferre1b447912013-06-04 21:57:11 +00001492 addr += bp->rx_buffer_size;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001493 }
1494 bp->rx_ring[RX_RING_SIZE - 1].addr |= MACB_BIT(RX_WRAP);
1495
1496 for (i = 0; i < TX_RING_SIZE; i++) {
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001497 bp->queues[0].tx_ring[i].addr = 0;
1498 bp->queues[0].tx_ring[i].ctrl = MACB_BIT(TX_USED);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001499 }
Ben Shelton21d35152015-04-22 17:28:54 -05001500 bp->queues[0].tx_head = 0;
1501 bp->queues[0].tx_tail = 0;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001502 bp->queues[0].tx_ring[TX_RING_SIZE - 1].ctrl |= MACB_BIT(TX_WRAP);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001503
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001504 bp->rx_tail = 0;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001505}
1506
1507static void macb_reset_hw(struct macb *bp)
1508{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001509 struct macb_queue *queue;
1510 unsigned int q;
1511
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001512 /*
1513 * Disable RX and TX (XXX: Should we halt the transmission
1514 * more gracefully?)
1515 */
1516 macb_writel(bp, NCR, 0);
1517
1518 /* Clear the stats registers (XXX: Update stats first?) */
1519 macb_writel(bp, NCR, MACB_BIT(CLRSTAT));
1520
1521 /* Clear all status flags */
Joachim Eastwood95ebcea2012-10-22 08:45:31 +00001522 macb_writel(bp, TSR, -1);
1523 macb_writel(bp, RSR, -1);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001524
1525 /* Disable all interrupts */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001526 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1527 queue_writel(queue, IDR, -1);
1528 queue_readl(queue, ISR);
1529 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001530}
1531
Jamie Iles70c9f3d2011-03-09 16:22:54 +00001532static u32 gem_mdc_clk_div(struct macb *bp)
1533{
1534 u32 config;
1535 unsigned long pclk_hz = clk_get_rate(bp->pclk);
1536
1537 if (pclk_hz <= 20000000)
1538 config = GEM_BF(CLK, GEM_CLK_DIV8);
1539 else if (pclk_hz <= 40000000)
1540 config = GEM_BF(CLK, GEM_CLK_DIV16);
1541 else if (pclk_hz <= 80000000)
1542 config = GEM_BF(CLK, GEM_CLK_DIV32);
1543 else if (pclk_hz <= 120000000)
1544 config = GEM_BF(CLK, GEM_CLK_DIV48);
1545 else if (pclk_hz <= 160000000)
1546 config = GEM_BF(CLK, GEM_CLK_DIV64);
1547 else
1548 config = GEM_BF(CLK, GEM_CLK_DIV96);
1549
1550 return config;
1551}
1552
1553static u32 macb_mdc_clk_div(struct macb *bp)
1554{
1555 u32 config;
1556 unsigned long pclk_hz;
1557
1558 if (macb_is_gem(bp))
1559 return gem_mdc_clk_div(bp);
1560
1561 pclk_hz = clk_get_rate(bp->pclk);
1562 if (pclk_hz <= 20000000)
1563 config = MACB_BF(CLK, MACB_CLK_DIV8);
1564 else if (pclk_hz <= 40000000)
1565 config = MACB_BF(CLK, MACB_CLK_DIV16);
1566 else if (pclk_hz <= 80000000)
1567 config = MACB_BF(CLK, MACB_CLK_DIV32);
1568 else
1569 config = MACB_BF(CLK, MACB_CLK_DIV64);
1570
1571 return config;
1572}
1573
Jamie Iles757a03c2011-03-09 16:29:59 +00001574/*
1575 * Get the DMA bus width field of the network configuration register that we
1576 * should program. We find the width from decoding the design configuration
1577 * register to find the maximum supported data bus width.
1578 */
1579static u32 macb_dbw(struct macb *bp)
1580{
1581 if (!macb_is_gem(bp))
1582 return 0;
1583
1584 switch (GEM_BFEXT(DBWDEF, gem_readl(bp, DCFG1))) {
1585 case 4:
1586 return GEM_BF(DBW, GEM_DBW128);
1587 case 2:
1588 return GEM_BF(DBW, GEM_DBW64);
1589 case 1:
1590 default:
1591 return GEM_BF(DBW, GEM_DBW32);
1592 }
1593}
1594
Jamie Iles0116da42011-03-14 17:38:30 +00001595/*
Nicolas Ferreb3e3bd712012-11-23 03:49:01 +00001596 * Configure the receive DMA engine
1597 * - use the correct receive buffer size
Nicolas Ferree1755872014-07-24 13:50:58 +02001598 * - set best burst length for DMA operations
Nicolas Ferreb3e3bd712012-11-23 03:49:01 +00001599 * (if not supported by FIFO, it will fallback to default)
1600 * - set both rx/tx packet buffers to full memory size
1601 * These are configurable parameters for GEM.
Jamie Iles0116da42011-03-14 17:38:30 +00001602 */
1603static void macb_configure_dma(struct macb *bp)
1604{
1605 u32 dmacfg;
Arun Chandran62f69242015-03-01 11:38:02 +05301606 u32 tmp, ncr;
Jamie Iles0116da42011-03-14 17:38:30 +00001607
1608 if (macb_is_gem(bp)) {
1609 dmacfg = gem_readl(bp, DMACFG) & ~GEM_BF(RXBS, -1L);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001610 dmacfg |= GEM_BF(RXBS, bp->rx_buffer_size / RX_BUFFER_MULTIPLE);
Nicolas Ferree1755872014-07-24 13:50:58 +02001611 if (bp->dma_burst_length)
1612 dmacfg = GEM_BFINS(FBLDO, bp->dma_burst_length, dmacfg);
Nicolas Ferreb3e3bd712012-11-23 03:49:01 +00001613 dmacfg |= GEM_BIT(TXPBMS) | GEM_BF(RXBMS, -1L);
Arun Chandrana50dad32015-02-18 16:59:35 +05301614 dmacfg &= ~GEM_BIT(ENDIA_PKT);
Arun Chandran62f69242015-03-01 11:38:02 +05301615
1616 /* Find the CPU endianness by using the loopback bit of net_ctrl
1617 * register. save it first. When the CPU is in big endian we
1618 * need to program swaped mode for management descriptor access.
1619 */
1620 ncr = macb_readl(bp, NCR);
1621 __raw_writel(MACB_BIT(LLB), bp->regs + MACB_NCR);
1622 tmp = __raw_readl(bp->regs + MACB_NCR);
1623
1624 if (tmp == MACB_BIT(LLB))
1625 dmacfg &= ~GEM_BIT(ENDIA_DESC);
1626 else
1627 dmacfg |= GEM_BIT(ENDIA_DESC); /* CPU in big endian */
1628
1629 /* Restore net_ctrl */
1630 macb_writel(bp, NCR, ncr);
1631
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02001632 if (bp->dev->features & NETIF_F_HW_CSUM)
1633 dmacfg |= GEM_BIT(TXCOEN);
1634 else
1635 dmacfg &= ~GEM_BIT(TXCOEN);
Nicolas Ferree1755872014-07-24 13:50:58 +02001636 netdev_dbg(bp->dev, "Cadence configure DMA with 0x%08x\n",
1637 dmacfg);
Jamie Iles0116da42011-03-14 17:38:30 +00001638 gem_writel(bp, DMACFG, dmacfg);
1639 }
1640}
1641
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001642static void macb_init_hw(struct macb *bp)
1643{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001644 struct macb_queue *queue;
1645 unsigned int q;
1646
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001647 u32 config;
1648
1649 macb_reset_hw(bp);
Joachim Eastwood314bccc2012-11-07 08:14:52 +00001650 macb_set_hwaddr(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001651
Jamie Iles70c9f3d2011-03-09 16:22:54 +00001652 config = macb_mdc_clk_div(bp);
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +00001653 config |= MACB_BF(RBOF, NET_IP_ALIGN); /* Make eth data aligned */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001654 config |= MACB_BIT(PAE); /* PAuse Enable */
1655 config |= MACB_BIT(DRFCS); /* Discard Rx FCS */
Dan Carpentera104a6b2015-05-12 21:15:24 +03001656 if (bp->caps & MACB_CAPS_JUMBO)
Harini Katakam98b5a0f42015-05-06 22:27:17 +05301657 config |= MACB_BIT(JFRAME); /* Enable jumbo frames */
1658 else
1659 config |= MACB_BIT(BIG); /* Receive oversized frames */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001660 if (bp->dev->flags & IFF_PROMISC)
1661 config |= MACB_BIT(CAF); /* Copy All Frames */
Cyrille Pitchen924ec532014-07-24 13:51:01 +02001662 else if (macb_is_gem(bp) && bp->dev->features & NETIF_F_RXCSUM)
1663 config |= GEM_BIT(RXCOEN);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001664 if (!(bp->dev->flags & IFF_BROADCAST))
1665 config |= MACB_BIT(NBC); /* No BroadCast */
Jamie Iles757a03c2011-03-09 16:29:59 +00001666 config |= macb_dbw(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001667 macb_writel(bp, NCFGR, config);
Dan Carpentera104a6b2015-05-12 21:15:24 +03001668 if ((bp->caps & MACB_CAPS_JUMBO) && bp->jumbo_max_len)
Harini Katakam98b5a0f42015-05-06 22:27:17 +05301669 gem_writel(bp, JML, bp->jumbo_max_len);
Vitalii Demianets26cdfb42012-11-02 07:09:24 +00001670 bp->speed = SPEED_10;
1671 bp->duplex = DUPLEX_HALF;
Harini Katakam98b5a0f42015-05-06 22:27:17 +05301672 bp->rx_frm_len_mask = MACB_RX_FRMLEN_MASK;
Dan Carpentera104a6b2015-05-12 21:15:24 +03001673 if (bp->caps & MACB_CAPS_JUMBO)
Harini Katakam98b5a0f42015-05-06 22:27:17 +05301674 bp->rx_frm_len_mask = MACB_RX_JFRMLEN_MASK;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001675
Jamie Iles0116da42011-03-14 17:38:30 +00001676 macb_configure_dma(bp);
1677
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001678 /* Initialize TX and RX buffers */
1679 macb_writel(bp, RBQP, bp->rx_ring_dma);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001680 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1681 queue_writel(queue, TBQP, queue->tx_ring_dma);
1682
1683 /* Enable interrupts */
1684 queue_writel(queue, IER,
1685 MACB_RX_INT_FLAGS |
1686 MACB_TX_INT_FLAGS |
1687 MACB_BIT(HRESP));
1688 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001689
1690 /* Enable TX and RX */
frederic RODO6c36a702007-07-12 19:07:24 +02001691 macb_writel(bp, NCR, MACB_BIT(RE) | MACB_BIT(TE) | MACB_BIT(MPE));
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001692}
1693
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001694/*
1695 * The hash address register is 64 bits long and takes up two
1696 * locations in the memory map. The least significant bits are stored
1697 * in EMAC_HSL and the most significant bits in EMAC_HSH.
1698 *
1699 * The unicast hash enable and the multicast hash enable bits in the
1700 * network configuration register enable the reception of hash matched
1701 * frames. The destination address is reduced to a 6 bit index into
1702 * the 64 bit hash register using the following hash function. The
1703 * hash function is an exclusive or of every sixth bit of the
1704 * destination address.
1705 *
1706 * hi[5] = da[5] ^ da[11] ^ da[17] ^ da[23] ^ da[29] ^ da[35] ^ da[41] ^ da[47]
1707 * hi[4] = da[4] ^ da[10] ^ da[16] ^ da[22] ^ da[28] ^ da[34] ^ da[40] ^ da[46]
1708 * hi[3] = da[3] ^ da[09] ^ da[15] ^ da[21] ^ da[27] ^ da[33] ^ da[39] ^ da[45]
1709 * hi[2] = da[2] ^ da[08] ^ da[14] ^ da[20] ^ da[26] ^ da[32] ^ da[38] ^ da[44]
1710 * hi[1] = da[1] ^ da[07] ^ da[13] ^ da[19] ^ da[25] ^ da[31] ^ da[37] ^ da[43]
1711 * hi[0] = da[0] ^ da[06] ^ da[12] ^ da[18] ^ da[24] ^ da[30] ^ da[36] ^ da[42]
1712 *
1713 * da[0] represents the least significant bit of the first byte
1714 * received, that is, the multicast/unicast indicator, and da[47]
1715 * represents the most significant bit of the last byte received. If
1716 * the hash index, hi[n], points to a bit that is set in the hash
1717 * register then the frame will be matched according to whether the
1718 * frame is multicast or unicast. A multicast match will be signalled
1719 * if the multicast hash enable bit is set, da[0] is 1 and the hash
1720 * index points to a bit set in the hash register. A unicast match
1721 * will be signalled if the unicast hash enable bit is set, da[0] is 0
1722 * and the hash index points to a bit set in the hash register. To
1723 * receive all multicast frames, the hash register should be set with
1724 * all ones and the multicast hash enable bit should be set in the
1725 * network configuration register.
1726 */
1727
1728static inline int hash_bit_value(int bitnr, __u8 *addr)
1729{
1730 if (addr[bitnr / 8] & (1 << (bitnr % 8)))
1731 return 1;
1732 return 0;
1733}
1734
1735/*
1736 * Return the hash index value for the specified address.
1737 */
1738static int hash_get_index(__u8 *addr)
1739{
1740 int i, j, bitval;
1741 int hash_index = 0;
1742
1743 for (j = 0; j < 6; j++) {
1744 for (i = 0, bitval = 0; i < 8; i++)
Xander Huff2fa45e22015-01-15 15:55:19 -06001745 bitval ^= hash_bit_value(i * 6 + j, addr);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001746
1747 hash_index |= (bitval << j);
1748 }
1749
1750 return hash_index;
1751}
1752
1753/*
1754 * Add multicast addresses to the internal multicast-hash table.
1755 */
1756static void macb_sethashtable(struct net_device *dev)
1757{
Jiri Pirko22bedad32010-04-01 21:22:57 +00001758 struct netdev_hw_addr *ha;
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001759 unsigned long mc_filter[2];
Jiri Pirkof9dcbcc2010-02-23 09:19:49 +00001760 unsigned int bitnr;
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001761 struct macb *bp = netdev_priv(dev);
1762
1763 mc_filter[0] = mc_filter[1] = 0;
1764
Jiri Pirko22bedad32010-04-01 21:22:57 +00001765 netdev_for_each_mc_addr(ha, dev) {
1766 bitnr = hash_get_index(ha->addr);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001767 mc_filter[bitnr >> 5] |= 1 << (bitnr & 31);
1768 }
1769
Jamie Ilesf75ba502011-11-08 10:12:32 +00001770 macb_or_gem_writel(bp, HRB, mc_filter[0]);
1771 macb_or_gem_writel(bp, HRT, mc_filter[1]);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001772}
1773
1774/*
1775 * Enable/Disable promiscuous and multicast modes.
1776 */
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01001777static void macb_set_rx_mode(struct net_device *dev)
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001778{
1779 unsigned long cfg;
1780 struct macb *bp = netdev_priv(dev);
1781
1782 cfg = macb_readl(bp, NCFGR);
1783
Cyrille Pitchen924ec532014-07-24 13:51:01 +02001784 if (dev->flags & IFF_PROMISC) {
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001785 /* Enable promiscuous mode */
1786 cfg |= MACB_BIT(CAF);
Cyrille Pitchen924ec532014-07-24 13:51:01 +02001787
1788 /* Disable RX checksum offload */
1789 if (macb_is_gem(bp))
1790 cfg &= ~GEM_BIT(RXCOEN);
1791 } else {
1792 /* Disable promiscuous mode */
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001793 cfg &= ~MACB_BIT(CAF);
1794
Cyrille Pitchen924ec532014-07-24 13:51:01 +02001795 /* Enable RX checksum offload only if requested */
1796 if (macb_is_gem(bp) && dev->features & NETIF_F_RXCSUM)
1797 cfg |= GEM_BIT(RXCOEN);
1798 }
1799
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001800 if (dev->flags & IFF_ALLMULTI) {
1801 /* Enable all multicast mode */
Jamie Ilesf75ba502011-11-08 10:12:32 +00001802 macb_or_gem_writel(bp, HRB, -1);
1803 macb_or_gem_writel(bp, HRT, -1);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001804 cfg |= MACB_BIT(NCFGR_MTI);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001805 } else if (!netdev_mc_empty(dev)) {
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001806 /* Enable specific multicasts */
1807 macb_sethashtable(dev);
1808 cfg |= MACB_BIT(NCFGR_MTI);
1809 } else if (dev->flags & (~IFF_ALLMULTI)) {
1810 /* Disable all multicast mode */
Jamie Ilesf75ba502011-11-08 10:12:32 +00001811 macb_or_gem_writel(bp, HRB, 0);
1812 macb_or_gem_writel(bp, HRT, 0);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001813 cfg &= ~MACB_BIT(NCFGR_MTI);
1814 }
1815
1816 macb_writel(bp, NCFGR, cfg);
1817}
1818
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001819static int macb_open(struct net_device *dev)
1820{
1821 struct macb *bp = netdev_priv(dev);
Nicolas Ferre4df95132013-06-04 21:57:12 +00001822 size_t bufsz = dev->mtu + ETH_HLEN + ETH_FCS_LEN + NET_IP_ALIGN;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001823 int err;
1824
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001825 netdev_dbg(bp->dev, "open\n");
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001826
Nicolas Ferre03fc4722012-07-03 23:14:13 +00001827 /* carrier starts down */
1828 netif_carrier_off(dev);
1829
frederic RODO6c36a702007-07-12 19:07:24 +02001830 /* if the phy is not yet register, retry later*/
1831 if (!bp->phy_dev)
1832 return -EAGAIN;
1833
Nicolas Ferre1b447912013-06-04 21:57:11 +00001834 /* RX buffers initialization */
Nicolas Ferre4df95132013-06-04 21:57:12 +00001835 macb_init_rx_buffer_size(bp, bufsz);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001836
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001837 err = macb_alloc_consistent(bp);
1838 if (err) {
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001839 netdev_err(dev, "Unable to allocate DMA memory (error %d)\n",
1840 err);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001841 return err;
1842 }
1843
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001844 napi_enable(&bp->napi);
1845
Nicolas Ferre4df95132013-06-04 21:57:12 +00001846 bp->macbgem_ops.mog_init_rings(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001847 macb_init_hw(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001848
frederic RODO6c36a702007-07-12 19:07:24 +02001849 /* schedule a link state check */
1850 phy_start(bp->phy_dev);
1851
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001852 netif_tx_start_all_queues(dev);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001853
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001854 return 0;
1855}
1856
1857static int macb_close(struct net_device *dev)
1858{
1859 struct macb *bp = netdev_priv(dev);
1860 unsigned long flags;
1861
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001862 netif_tx_stop_all_queues(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001863 napi_disable(&bp->napi);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001864
frederic RODO6c36a702007-07-12 19:07:24 +02001865 if (bp->phy_dev)
1866 phy_stop(bp->phy_dev);
1867
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001868 spin_lock_irqsave(&bp->lock, flags);
1869 macb_reset_hw(bp);
1870 netif_carrier_off(dev);
1871 spin_unlock_irqrestore(&bp->lock, flags);
1872
1873 macb_free_consistent(bp);
1874
1875 return 0;
1876}
1877
Harini Katakama5898ea2015-05-06 22:27:18 +05301878static int macb_change_mtu(struct net_device *dev, int new_mtu)
1879{
1880 struct macb *bp = netdev_priv(dev);
1881 u32 max_mtu;
1882
1883 if (netif_running(dev))
1884 return -EBUSY;
1885
1886 max_mtu = ETH_DATA_LEN;
Dan Carpentera104a6b2015-05-12 21:15:24 +03001887 if (bp->caps & MACB_CAPS_JUMBO)
Harini Katakama5898ea2015-05-06 22:27:18 +05301888 max_mtu = gem_readl(bp, JML) - ETH_HLEN - ETH_FCS_LEN;
1889
1890 if ((new_mtu > max_mtu) || (new_mtu < GEM_MTU_MIN_SIZE))
1891 return -EINVAL;
1892
1893 dev->mtu = new_mtu;
1894
1895 return 0;
1896}
1897
Jamie Ilesa494ed82011-03-09 16:26:35 +00001898static void gem_update_stats(struct macb *bp)
1899{
Xander Huff3ff13f12015-01-13 16:15:51 -06001900 int i;
Jamie Ilesa494ed82011-03-09 16:26:35 +00001901 u32 *p = &bp->hw_stats.gem.tx_octets_31_0;
Jamie Ilesa494ed82011-03-09 16:26:35 +00001902
Xander Huff3ff13f12015-01-13 16:15:51 -06001903 for (i = 0; i < GEM_STATS_LEN; ++i, ++p) {
1904 u32 offset = gem_statistics[i].offset;
Arun Chandrana50dad32015-02-18 16:59:35 +05301905 u64 val = readl_relaxed(bp->regs + offset);
Xander Huff3ff13f12015-01-13 16:15:51 -06001906
1907 bp->ethtool_stats[i] += val;
1908 *p += val;
1909
1910 if (offset == GEM_OCTTXL || offset == GEM_OCTRXL) {
1911 /* Add GEM_OCTTXH, GEM_OCTRXH */
Arun Chandrana50dad32015-02-18 16:59:35 +05301912 val = readl_relaxed(bp->regs + offset + 4);
Xander Huff2fa45e22015-01-15 15:55:19 -06001913 bp->ethtool_stats[i] += ((u64)val) << 32;
Xander Huff3ff13f12015-01-13 16:15:51 -06001914 *(++p) += val;
1915 }
1916 }
Jamie Ilesa494ed82011-03-09 16:26:35 +00001917}
1918
1919static struct net_device_stats *gem_get_stats(struct macb *bp)
1920{
1921 struct gem_stats *hwstat = &bp->hw_stats.gem;
1922 struct net_device_stats *nstat = &bp->stats;
1923
1924 gem_update_stats(bp);
1925
1926 nstat->rx_errors = (hwstat->rx_frame_check_sequence_errors +
1927 hwstat->rx_alignment_errors +
1928 hwstat->rx_resource_errors +
1929 hwstat->rx_overruns +
1930 hwstat->rx_oversize_frames +
1931 hwstat->rx_jabbers +
1932 hwstat->rx_undersized_frames +
1933 hwstat->rx_length_field_frame_errors);
1934 nstat->tx_errors = (hwstat->tx_late_collisions +
1935 hwstat->tx_excessive_collisions +
1936 hwstat->tx_underrun +
1937 hwstat->tx_carrier_sense_errors);
1938 nstat->multicast = hwstat->rx_multicast_frames;
1939 nstat->collisions = (hwstat->tx_single_collision_frames +
1940 hwstat->tx_multiple_collision_frames +
1941 hwstat->tx_excessive_collisions);
1942 nstat->rx_length_errors = (hwstat->rx_oversize_frames +
1943 hwstat->rx_jabbers +
1944 hwstat->rx_undersized_frames +
1945 hwstat->rx_length_field_frame_errors);
1946 nstat->rx_over_errors = hwstat->rx_resource_errors;
1947 nstat->rx_crc_errors = hwstat->rx_frame_check_sequence_errors;
1948 nstat->rx_frame_errors = hwstat->rx_alignment_errors;
1949 nstat->rx_fifo_errors = hwstat->rx_overruns;
1950 nstat->tx_aborted_errors = hwstat->tx_excessive_collisions;
1951 nstat->tx_carrier_errors = hwstat->tx_carrier_sense_errors;
1952 nstat->tx_fifo_errors = hwstat->tx_underrun;
1953
1954 return nstat;
1955}
1956
Xander Huff3ff13f12015-01-13 16:15:51 -06001957static void gem_get_ethtool_stats(struct net_device *dev,
1958 struct ethtool_stats *stats, u64 *data)
1959{
1960 struct macb *bp;
1961
1962 bp = netdev_priv(dev);
1963 gem_update_stats(bp);
Xander Huff2fa45e22015-01-15 15:55:19 -06001964 memcpy(data, &bp->ethtool_stats, sizeof(u64) * GEM_STATS_LEN);
Xander Huff3ff13f12015-01-13 16:15:51 -06001965}
1966
1967static int gem_get_sset_count(struct net_device *dev, int sset)
1968{
1969 switch (sset) {
1970 case ETH_SS_STATS:
1971 return GEM_STATS_LEN;
1972 default:
1973 return -EOPNOTSUPP;
1974 }
1975}
1976
1977static void gem_get_ethtool_strings(struct net_device *dev, u32 sset, u8 *p)
1978{
1979 int i;
1980
1981 switch (sset) {
1982 case ETH_SS_STATS:
1983 for (i = 0; i < GEM_STATS_LEN; i++, p += ETH_GSTRING_LEN)
1984 memcpy(p, gem_statistics[i].stat_string,
1985 ETH_GSTRING_LEN);
1986 break;
1987 }
1988}
1989
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01001990static struct net_device_stats *macb_get_stats(struct net_device *dev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001991{
1992 struct macb *bp = netdev_priv(dev);
1993 struct net_device_stats *nstat = &bp->stats;
Jamie Ilesa494ed82011-03-09 16:26:35 +00001994 struct macb_stats *hwstat = &bp->hw_stats.macb;
1995
1996 if (macb_is_gem(bp))
1997 return gem_get_stats(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001998
frederic RODO6c36a702007-07-12 19:07:24 +02001999 /* read stats from hardware */
2000 macb_update_stats(bp);
2001
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002002 /* Convert HW stats into netdevice stats */
2003 nstat->rx_errors = (hwstat->rx_fcs_errors +
2004 hwstat->rx_align_errors +
2005 hwstat->rx_resource_errors +
2006 hwstat->rx_overruns +
2007 hwstat->rx_oversize_pkts +
2008 hwstat->rx_jabbers +
2009 hwstat->rx_undersize_pkts +
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002010 hwstat->rx_length_mismatch);
2011 nstat->tx_errors = (hwstat->tx_late_cols +
2012 hwstat->tx_excessive_cols +
2013 hwstat->tx_underruns +
Wolfgang Steinwender716723c2015-04-10 11:42:56 +02002014 hwstat->tx_carrier_errors +
2015 hwstat->sqe_test_errors);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002016 nstat->collisions = (hwstat->tx_single_cols +
2017 hwstat->tx_multiple_cols +
2018 hwstat->tx_excessive_cols);
2019 nstat->rx_length_errors = (hwstat->rx_oversize_pkts +
2020 hwstat->rx_jabbers +
2021 hwstat->rx_undersize_pkts +
2022 hwstat->rx_length_mismatch);
Alexander Steinb19f7f72011-04-13 05:03:24 +00002023 nstat->rx_over_errors = hwstat->rx_resource_errors +
2024 hwstat->rx_overruns;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002025 nstat->rx_crc_errors = hwstat->rx_fcs_errors;
2026 nstat->rx_frame_errors = hwstat->rx_align_errors;
2027 nstat->rx_fifo_errors = hwstat->rx_overruns;
2028 /* XXX: What does "missed" mean? */
2029 nstat->tx_aborted_errors = hwstat->tx_excessive_cols;
2030 nstat->tx_carrier_errors = hwstat->tx_carrier_errors;
2031 nstat->tx_fifo_errors = hwstat->tx_underruns;
2032 /* Don't know about heartbeat or window errors... */
2033
2034 return nstat;
2035}
2036
2037static int macb_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2038{
2039 struct macb *bp = netdev_priv(dev);
frederic RODO6c36a702007-07-12 19:07:24 +02002040 struct phy_device *phydev = bp->phy_dev;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002041
frederic RODO6c36a702007-07-12 19:07:24 +02002042 if (!phydev)
2043 return -ENODEV;
2044
2045 return phy_ethtool_gset(phydev, cmd);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002046}
2047
2048static int macb_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2049{
2050 struct macb *bp = netdev_priv(dev);
frederic RODO6c36a702007-07-12 19:07:24 +02002051 struct phy_device *phydev = bp->phy_dev;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002052
frederic RODO6c36a702007-07-12 19:07:24 +02002053 if (!phydev)
2054 return -ENODEV;
2055
2056 return phy_ethtool_sset(phydev, cmd);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002057}
2058
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002059static int macb_get_regs_len(struct net_device *netdev)
2060{
2061 return MACB_GREGS_NBR * sizeof(u32);
2062}
2063
2064static void macb_get_regs(struct net_device *dev, struct ethtool_regs *regs,
2065 void *p)
2066{
2067 struct macb *bp = netdev_priv(dev);
2068 unsigned int tail, head;
2069 u32 *regs_buff = p;
2070
2071 regs->version = (macb_readl(bp, MID) & ((1 << MACB_REV_SIZE) - 1))
2072 | MACB_GREGS_VERSION;
2073
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002074 tail = macb_tx_ring_wrap(bp->queues[0].tx_tail);
2075 head = macb_tx_ring_wrap(bp->queues[0].tx_head);
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002076
2077 regs_buff[0] = macb_readl(bp, NCR);
2078 regs_buff[1] = macb_or_gem_readl(bp, NCFGR);
2079 regs_buff[2] = macb_readl(bp, NSR);
2080 regs_buff[3] = macb_readl(bp, TSR);
2081 regs_buff[4] = macb_readl(bp, RBQP);
2082 regs_buff[5] = macb_readl(bp, TBQP);
2083 regs_buff[6] = macb_readl(bp, RSR);
2084 regs_buff[7] = macb_readl(bp, IMR);
2085
2086 regs_buff[8] = tail;
2087 regs_buff[9] = head;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002088 regs_buff[10] = macb_tx_dma(&bp->queues[0], tail);
2089 regs_buff[11] = macb_tx_dma(&bp->queues[0], head);
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002090
Nicolas Ferre7c399942015-03-31 15:02:04 +02002091 regs_buff[12] = macb_or_gem_readl(bp, USRIO);
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002092 if (macb_is_gem(bp)) {
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002093 regs_buff[13] = gem_readl(bp, DMACFG);
2094 }
2095}
2096
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002097static const struct ethtool_ops macb_ethtool_ops = {
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002098 .get_settings = macb_get_settings,
2099 .set_settings = macb_set_settings,
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002100 .get_regs_len = macb_get_regs_len,
2101 .get_regs = macb_get_regs,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002102 .get_link = ethtool_op_get_link,
Richard Cochran17f393e2012-04-03 22:59:31 +00002103 .get_ts_info = ethtool_op_get_ts_info,
Xander Huff8cd5a562015-01-15 15:55:20 -06002104};
Xander Huff8cd5a562015-01-15 15:55:20 -06002105
Lad, Prabhakar8093b1c2015-02-05 16:21:07 +00002106static const struct ethtool_ops gem_ethtool_ops = {
Xander Huff8cd5a562015-01-15 15:55:20 -06002107 .get_settings = macb_get_settings,
2108 .set_settings = macb_set_settings,
2109 .get_regs_len = macb_get_regs_len,
2110 .get_regs = macb_get_regs,
2111 .get_link = ethtool_op_get_link,
2112 .get_ts_info = ethtool_op_get_ts_info,
Xander Huff3ff13f12015-01-13 16:15:51 -06002113 .get_ethtool_stats = gem_get_ethtool_stats,
2114 .get_strings = gem_get_ethtool_strings,
2115 .get_sset_count = gem_get_sset_count,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002116};
2117
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002118static int macb_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002119{
2120 struct macb *bp = netdev_priv(dev);
frederic RODO6c36a702007-07-12 19:07:24 +02002121 struct phy_device *phydev = bp->phy_dev;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002122
2123 if (!netif_running(dev))
2124 return -EINVAL;
2125
frederic RODO6c36a702007-07-12 19:07:24 +02002126 if (!phydev)
2127 return -ENODEV;
2128
Richard Cochran28b04112010-07-17 08:48:55 +00002129 return phy_mii_ioctl(phydev, rq, cmd);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002130}
2131
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02002132static int macb_set_features(struct net_device *netdev,
2133 netdev_features_t features)
2134{
2135 struct macb *bp = netdev_priv(netdev);
2136 netdev_features_t changed = features ^ netdev->features;
2137
2138 /* TX checksum offload */
2139 if ((changed & NETIF_F_HW_CSUM) && macb_is_gem(bp)) {
2140 u32 dmacfg;
2141
2142 dmacfg = gem_readl(bp, DMACFG);
2143 if (features & NETIF_F_HW_CSUM)
2144 dmacfg |= GEM_BIT(TXCOEN);
2145 else
2146 dmacfg &= ~GEM_BIT(TXCOEN);
2147 gem_writel(bp, DMACFG, dmacfg);
2148 }
2149
Cyrille Pitchen924ec532014-07-24 13:51:01 +02002150 /* RX checksum offload */
2151 if ((changed & NETIF_F_RXCSUM) && macb_is_gem(bp)) {
2152 u32 netcfg;
2153
2154 netcfg = gem_readl(bp, NCFGR);
2155 if (features & NETIF_F_RXCSUM &&
2156 !(netdev->flags & IFF_PROMISC))
2157 netcfg |= GEM_BIT(RXCOEN);
2158 else
2159 netcfg &= ~GEM_BIT(RXCOEN);
2160 gem_writel(bp, NCFGR, netcfg);
2161 }
2162
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02002163 return 0;
2164}
2165
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00002166static const struct net_device_ops macb_netdev_ops = {
2167 .ndo_open = macb_open,
2168 .ndo_stop = macb_close,
2169 .ndo_start_xmit = macb_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00002170 .ndo_set_rx_mode = macb_set_rx_mode,
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00002171 .ndo_get_stats = macb_get_stats,
2172 .ndo_do_ioctl = macb_ioctl,
2173 .ndo_validate_addr = eth_validate_addr,
Harini Katakama5898ea2015-05-06 22:27:18 +05302174 .ndo_change_mtu = macb_change_mtu,
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00002175 .ndo_set_mac_address = eth_mac_addr,
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07002176#ifdef CONFIG_NET_POLL_CONTROLLER
2177 .ndo_poll_controller = macb_poll_controller,
2178#endif
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02002179 .ndo_set_features = macb_set_features,
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00002180};
2181
Nicolas Ferree1755872014-07-24 13:50:58 +02002182/*
Nicolas Ferread783472015-03-31 15:02:02 +02002183 * Configure peripheral capabilities according to device tree
Nicolas Ferree1755872014-07-24 13:50:58 +02002184 * and integration options used
2185 */
Nicolas Ferref6970502015-03-31 15:02:01 +02002186static void macb_configure_caps(struct macb *bp, const struct macb_config *dt_conf)
Nicolas Ferree1755872014-07-24 13:50:58 +02002187{
2188 u32 dcfg;
Nicolas Ferree1755872014-07-24 13:50:58 +02002189
Nicolas Ferref6970502015-03-31 15:02:01 +02002190 if (dt_conf)
2191 bp->caps = dt_conf->caps;
2192
Nicolas Ferrefa693592015-03-31 15:02:06 +02002193 if (macb_is_gem_hw(bp->regs)) {
Nicolas Ferree1755872014-07-24 13:50:58 +02002194 bp->caps |= MACB_CAPS_MACB_IS_GEM;
2195
Nicolas Ferree1755872014-07-24 13:50:58 +02002196 dcfg = gem_readl(bp, DCFG1);
2197 if (GEM_BFEXT(IRQCOR, dcfg) == 0)
2198 bp->caps |= MACB_CAPS_ISR_CLEAR_ON_WRITE;
2199 dcfg = gem_readl(bp, DCFG2);
2200 if ((dcfg & (GEM_BIT(RX_PKT_BUFF) | GEM_BIT(TX_PKT_BUFF))) == 0)
2201 bp->caps |= MACB_CAPS_FIFO_MODE;
2202 }
2203
2204 netdev_dbg(bp->dev, "Cadence caps 0x%08x\n", bp->caps);
2205}
2206
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002207static void macb_probe_queues(void __iomem *mem,
2208 unsigned int *queue_mask,
2209 unsigned int *num_queues)
2210{
2211 unsigned int hw_q;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002212
2213 *queue_mask = 0x1;
2214 *num_queues = 1;
2215
Nicolas Ferreda120112015-03-31 15:02:00 +02002216 /* is it macb or gem ?
2217 *
2218 * We need to read directly from the hardware here because
2219 * we are early in the probe process and don't have the
2220 * MACB_CAPS_MACB_IS_GEM flag positioned
2221 */
Nicolas Ferrefa693592015-03-31 15:02:06 +02002222 if (!macb_is_gem_hw(mem))
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002223 return;
2224
2225 /* bit 0 is never set but queue 0 always exists */
Arun Chandrana50dad32015-02-18 16:59:35 +05302226 *queue_mask = readl_relaxed(mem + GEM_DCFG6) & 0xff;
2227
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002228 *queue_mask |= 0x1;
2229
2230 for (hw_q = 1; hw_q < MACB_MAX_QUEUES; ++hw_q)
2231 if (*queue_mask & (1 << hw_q))
2232 (*num_queues)++;
2233}
2234
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002235static int macb_clk_init(struct platform_device *pdev, struct clk **pclk,
2236 struct clk **hclk, struct clk **tx_clk)
2237{
2238 int err;
2239
2240 *pclk = devm_clk_get(&pdev->dev, "pclk");
2241 if (IS_ERR(*pclk)) {
2242 err = PTR_ERR(*pclk);
2243 dev_err(&pdev->dev, "failed to get macb_clk (%u)\n", err);
2244 return err;
2245 }
2246
2247 *hclk = devm_clk_get(&pdev->dev, "hclk");
2248 if (IS_ERR(*hclk)) {
2249 err = PTR_ERR(*hclk);
2250 dev_err(&pdev->dev, "failed to get hclk (%u)\n", err);
2251 return err;
2252 }
2253
2254 *tx_clk = devm_clk_get(&pdev->dev, "tx_clk");
2255 if (IS_ERR(*tx_clk))
2256 *tx_clk = NULL;
2257
2258 err = clk_prepare_enable(*pclk);
2259 if (err) {
2260 dev_err(&pdev->dev, "failed to enable pclk (%u)\n", err);
2261 return err;
2262 }
2263
2264 err = clk_prepare_enable(*hclk);
2265 if (err) {
2266 dev_err(&pdev->dev, "failed to enable hclk (%u)\n", err);
2267 goto err_disable_pclk;
2268 }
2269
2270 err = clk_prepare_enable(*tx_clk);
2271 if (err) {
2272 dev_err(&pdev->dev, "failed to enable tx_clk (%u)\n", err);
2273 goto err_disable_hclk;
2274 }
2275
2276 return 0;
2277
2278err_disable_hclk:
2279 clk_disable_unprepare(*hclk);
2280
2281err_disable_pclk:
2282 clk_disable_unprepare(*pclk);
2283
2284 return err;
2285}
2286
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002287static int macb_init(struct platform_device *pdev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002288{
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002289 struct net_device *dev = platform_get_drvdata(pdev);
Nicolas Ferrebfa09142015-03-31 15:01:59 +02002290 unsigned int hw_q, q;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002291 struct macb *bp = netdev_priv(dev);
2292 struct macb_queue *queue;
2293 int err;
2294 u32 val;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002295
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002296 /* set the queue register mapping once for all: queue0 has a special
2297 * register mapping but we don't want to test the queue index then
2298 * compute the corresponding register offset at run time.
2299 */
Cyrille Pitchencf250de2014-12-15 15:13:32 +01002300 for (hw_q = 0, q = 0; hw_q < MACB_MAX_QUEUES; ++hw_q) {
Nicolas Ferrebfa09142015-03-31 15:01:59 +02002301 if (!(bp->queue_mask & (1 << hw_q)))
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002302 continue;
Jamie Iles461845d2011-03-08 20:19:23 +00002303
Cyrille Pitchencf250de2014-12-15 15:13:32 +01002304 queue = &bp->queues[q];
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002305 queue->bp = bp;
2306 if (hw_q) {
2307 queue->ISR = GEM_ISR(hw_q - 1);
2308 queue->IER = GEM_IER(hw_q - 1);
2309 queue->IDR = GEM_IDR(hw_q - 1);
2310 queue->IMR = GEM_IMR(hw_q - 1);
2311 queue->TBQP = GEM_TBQP(hw_q - 1);
2312 } else {
2313 /* queue0 uses legacy registers */
2314 queue->ISR = MACB_ISR;
2315 queue->IER = MACB_IER;
2316 queue->IDR = MACB_IDR;
2317 queue->IMR = MACB_IMR;
2318 queue->TBQP = MACB_TBQP;
Soren Brinkmanne1824df2013-12-10 16:07:23 -08002319 }
Soren Brinkmanne1824df2013-12-10 16:07:23 -08002320
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002321 /* get irq: here we use the linux queue index, not the hardware
2322 * queue index. the queue irq definitions in the device tree
2323 * must remove the optional gaps that could exist in the
2324 * hardware queue mask.
2325 */
Cyrille Pitchencf250de2014-12-15 15:13:32 +01002326 queue->irq = platform_get_irq(pdev, q);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002327 err = devm_request_irq(&pdev->dev, queue->irq, macb_interrupt,
Punnaiah Choudary Kalluri20488232015-03-06 18:29:12 +01002328 IRQF_SHARED, dev->name, queue);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002329 if (err) {
2330 dev_err(&pdev->dev,
2331 "Unable to request IRQ %d (error %d)\n",
2332 queue->irq, err);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002333 return err;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002334 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002335
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002336 INIT_WORK(&queue->tx_error_task, macb_tx_error_task);
Cyrille Pitchencf250de2014-12-15 15:13:32 +01002337 q++;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002338 }
2339
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00002340 dev->netdev_ops = &macb_netdev_ops;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002341 netif_napi_add(dev, &bp->napi, macb_poll, 64);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002342
Nicolas Ferre4df95132013-06-04 21:57:12 +00002343 /* setup appropriated routines according to adapter type */
2344 if (macb_is_gem(bp)) {
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02002345 bp->max_tx_length = GEM_MAX_TX_LEN;
Nicolas Ferre4df95132013-06-04 21:57:12 +00002346 bp->macbgem_ops.mog_alloc_rx_buffers = gem_alloc_rx_buffers;
2347 bp->macbgem_ops.mog_free_rx_buffers = gem_free_rx_buffers;
2348 bp->macbgem_ops.mog_init_rings = gem_init_rings;
2349 bp->macbgem_ops.mog_rx = gem_rx;
Xander Huff8cd5a562015-01-15 15:55:20 -06002350 dev->ethtool_ops = &gem_ethtool_ops;
Nicolas Ferre4df95132013-06-04 21:57:12 +00002351 } else {
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02002352 bp->max_tx_length = MACB_MAX_TX_LEN;
Nicolas Ferre4df95132013-06-04 21:57:12 +00002353 bp->macbgem_ops.mog_alloc_rx_buffers = macb_alloc_rx_buffers;
2354 bp->macbgem_ops.mog_free_rx_buffers = macb_free_rx_buffers;
2355 bp->macbgem_ops.mog_init_rings = macb_init_rings;
2356 bp->macbgem_ops.mog_rx = macb_rx;
Xander Huff8cd5a562015-01-15 15:55:20 -06002357 dev->ethtool_ops = &macb_ethtool_ops;
Nicolas Ferre4df95132013-06-04 21:57:12 +00002358 }
2359
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02002360 /* Set features */
2361 dev->hw_features = NETIF_F_SG;
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02002362 /* Checksum offload is only available on gem with packet buffer */
2363 if (macb_is_gem(bp) && !(bp->caps & MACB_CAPS_FIFO_MODE))
Cyrille Pitchen924ec532014-07-24 13:51:01 +02002364 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02002365 if (bp->caps & MACB_CAPS_SG_DISABLED)
2366 dev->hw_features &= ~NETIF_F_SG;
2367 dev->features = dev->hw_features;
2368
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002369 val = 0;
2370 if (bp->phy_interface == PHY_INTERFACE_MODE_RGMII)
2371 val = GEM_BIT(RGMII);
2372 else if (bp->phy_interface == PHY_INTERFACE_MODE_RMII &&
2373 (bp->caps & MACB_CAPS_USRIO_DEFAULT_IS_MII))
2374 val = MACB_BIT(RMII);
2375 else if (!(bp->caps & MACB_CAPS_USRIO_DEFAULT_IS_MII))
2376 val = MACB_BIT(MII);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002377
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002378 if (bp->caps & MACB_CAPS_USRIO_HAS_CLKEN)
2379 val |= MACB_BIT(CLKEN);
2380
2381 macb_or_gem_writel(bp, USRIO, val);
2382
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002383 /* Set MII management clock divider */
2384 val = macb_mdc_clk_div(bp);
2385 val |= macb_dbw(bp);
2386 macb_writel(bp, NCFGR, val);
2387
2388 return 0;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002389}
2390
2391#if defined(CONFIG_OF)
2392/* 1518 rounded up */
2393#define AT91ETHER_MAX_RBUFF_SZ 0x600
2394/* max number of receive buffers */
2395#define AT91ETHER_MAX_RX_DESCR 9
2396
2397/* Initialize and start the Receiver and Transmit subsystems */
2398static int at91ether_start(struct net_device *dev)
2399{
2400 struct macb *lp = netdev_priv(dev);
2401 dma_addr_t addr;
2402 u32 ctl;
2403 int i;
2404
2405 lp->rx_ring = dma_alloc_coherent(&lp->pdev->dev,
2406 (AT91ETHER_MAX_RX_DESCR *
2407 sizeof(struct macb_dma_desc)),
2408 &lp->rx_ring_dma, GFP_KERNEL);
2409 if (!lp->rx_ring)
2410 return -ENOMEM;
2411
2412 lp->rx_buffers = dma_alloc_coherent(&lp->pdev->dev,
2413 AT91ETHER_MAX_RX_DESCR *
2414 AT91ETHER_MAX_RBUFF_SZ,
2415 &lp->rx_buffers_dma, GFP_KERNEL);
2416 if (!lp->rx_buffers) {
2417 dma_free_coherent(&lp->pdev->dev,
2418 AT91ETHER_MAX_RX_DESCR *
2419 sizeof(struct macb_dma_desc),
2420 lp->rx_ring, lp->rx_ring_dma);
2421 lp->rx_ring = NULL;
2422 return -ENOMEM;
2423 }
2424
2425 addr = lp->rx_buffers_dma;
2426 for (i = 0; i < AT91ETHER_MAX_RX_DESCR; i++) {
2427 lp->rx_ring[i].addr = addr;
2428 lp->rx_ring[i].ctrl = 0;
2429 addr += AT91ETHER_MAX_RBUFF_SZ;
2430 }
2431
2432 /* Set the Wrap bit on the last descriptor */
2433 lp->rx_ring[AT91ETHER_MAX_RX_DESCR - 1].addr |= MACB_BIT(RX_WRAP);
2434
2435 /* Reset buffer index */
2436 lp->rx_tail = 0;
2437
2438 /* Program address of descriptor list in Rx Buffer Queue register */
2439 macb_writel(lp, RBQP, lp->rx_ring_dma);
2440
2441 /* Enable Receive and Transmit */
2442 ctl = macb_readl(lp, NCR);
2443 macb_writel(lp, NCR, ctl | MACB_BIT(RE) | MACB_BIT(TE));
2444
2445 return 0;
2446}
2447
2448/* Open the ethernet interface */
2449static int at91ether_open(struct net_device *dev)
2450{
2451 struct macb *lp = netdev_priv(dev);
2452 u32 ctl;
2453 int ret;
2454
2455 /* Clear internal statistics */
2456 ctl = macb_readl(lp, NCR);
2457 macb_writel(lp, NCR, ctl | MACB_BIT(CLRSTAT));
2458
2459 macb_set_hwaddr(lp);
2460
2461 ret = at91ether_start(dev);
2462 if (ret)
2463 return ret;
2464
2465 /* Enable MAC interrupts */
2466 macb_writel(lp, IER, MACB_BIT(RCOMP) |
2467 MACB_BIT(RXUBR) |
2468 MACB_BIT(ISR_TUND) |
2469 MACB_BIT(ISR_RLE) |
2470 MACB_BIT(TCOMP) |
2471 MACB_BIT(ISR_ROVR) |
2472 MACB_BIT(HRESP));
2473
2474 /* schedule a link state check */
2475 phy_start(lp->phy_dev);
2476
2477 netif_start_queue(dev);
2478
2479 return 0;
2480}
2481
2482/* Close the interface */
2483static int at91ether_close(struct net_device *dev)
2484{
2485 struct macb *lp = netdev_priv(dev);
2486 u32 ctl;
2487
2488 /* Disable Receiver and Transmitter */
2489 ctl = macb_readl(lp, NCR);
2490 macb_writel(lp, NCR, ctl & ~(MACB_BIT(TE) | MACB_BIT(RE)));
2491
2492 /* Disable MAC interrupts */
2493 macb_writel(lp, IDR, MACB_BIT(RCOMP) |
2494 MACB_BIT(RXUBR) |
2495 MACB_BIT(ISR_TUND) |
2496 MACB_BIT(ISR_RLE) |
2497 MACB_BIT(TCOMP) |
2498 MACB_BIT(ISR_ROVR) |
2499 MACB_BIT(HRESP));
2500
2501 netif_stop_queue(dev);
2502
2503 dma_free_coherent(&lp->pdev->dev,
2504 AT91ETHER_MAX_RX_DESCR *
2505 sizeof(struct macb_dma_desc),
2506 lp->rx_ring, lp->rx_ring_dma);
2507 lp->rx_ring = NULL;
2508
2509 dma_free_coherent(&lp->pdev->dev,
2510 AT91ETHER_MAX_RX_DESCR * AT91ETHER_MAX_RBUFF_SZ,
2511 lp->rx_buffers, lp->rx_buffers_dma);
2512 lp->rx_buffers = NULL;
2513
2514 return 0;
2515}
2516
2517/* Transmit packet */
2518static int at91ether_start_xmit(struct sk_buff *skb, struct net_device *dev)
2519{
2520 struct macb *lp = netdev_priv(dev);
2521
2522 if (macb_readl(lp, TSR) & MACB_BIT(RM9200_BNQ)) {
2523 netif_stop_queue(dev);
2524
2525 /* Store packet information (to free when Tx completed) */
2526 lp->skb = skb;
2527 lp->skb_length = skb->len;
2528 lp->skb_physaddr = dma_map_single(NULL, skb->data, skb->len,
2529 DMA_TO_DEVICE);
2530
2531 /* Set address of the data in the Transmit Address register */
2532 macb_writel(lp, TAR, lp->skb_physaddr);
2533 /* Set length of the packet in the Transmit Control register */
2534 macb_writel(lp, TCR, skb->len);
2535
2536 } else {
2537 netdev_err(dev, "%s called, but device is busy!\n", __func__);
2538 return NETDEV_TX_BUSY;
2539 }
2540
2541 return NETDEV_TX_OK;
2542}
2543
2544/* Extract received frame from buffer descriptors and sent to upper layers.
2545 * (Called from interrupt context)
2546 */
2547static void at91ether_rx(struct net_device *dev)
2548{
2549 struct macb *lp = netdev_priv(dev);
2550 unsigned char *p_recv;
2551 struct sk_buff *skb;
2552 unsigned int pktlen;
2553
2554 while (lp->rx_ring[lp->rx_tail].addr & MACB_BIT(RX_USED)) {
2555 p_recv = lp->rx_buffers + lp->rx_tail * AT91ETHER_MAX_RBUFF_SZ;
2556 pktlen = MACB_BF(RX_FRMLEN, lp->rx_ring[lp->rx_tail].ctrl);
2557 skb = netdev_alloc_skb(dev, pktlen + 2);
2558 if (skb) {
2559 skb_reserve(skb, 2);
2560 memcpy(skb_put(skb, pktlen), p_recv, pktlen);
2561
2562 skb->protocol = eth_type_trans(skb, dev);
2563 lp->stats.rx_packets++;
2564 lp->stats.rx_bytes += pktlen;
2565 netif_rx(skb);
2566 } else {
2567 lp->stats.rx_dropped++;
2568 }
2569
2570 if (lp->rx_ring[lp->rx_tail].ctrl & MACB_BIT(RX_MHASH_MATCH))
2571 lp->stats.multicast++;
2572
2573 /* reset ownership bit */
2574 lp->rx_ring[lp->rx_tail].addr &= ~MACB_BIT(RX_USED);
2575
2576 /* wrap after last buffer */
2577 if (lp->rx_tail == AT91ETHER_MAX_RX_DESCR - 1)
2578 lp->rx_tail = 0;
2579 else
2580 lp->rx_tail++;
2581 }
2582}
2583
2584/* MAC interrupt handler */
2585static irqreturn_t at91ether_interrupt(int irq, void *dev_id)
2586{
2587 struct net_device *dev = dev_id;
2588 struct macb *lp = netdev_priv(dev);
2589 u32 intstatus, ctl;
2590
2591 /* MAC Interrupt Status register indicates what interrupts are pending.
2592 * It is automatically cleared once read.
2593 */
2594 intstatus = macb_readl(lp, ISR);
2595
2596 /* Receive complete */
2597 if (intstatus & MACB_BIT(RCOMP))
2598 at91ether_rx(dev);
2599
2600 /* Transmit complete */
2601 if (intstatus & MACB_BIT(TCOMP)) {
2602 /* The TCOM bit is set even if the transmission failed */
2603 if (intstatus & (MACB_BIT(ISR_TUND) | MACB_BIT(ISR_RLE)))
2604 lp->stats.tx_errors++;
2605
2606 if (lp->skb) {
2607 dev_kfree_skb_irq(lp->skb);
2608 lp->skb = NULL;
2609 dma_unmap_single(NULL, lp->skb_physaddr,
2610 lp->skb_length, DMA_TO_DEVICE);
2611 lp->stats.tx_packets++;
2612 lp->stats.tx_bytes += lp->skb_length;
2613 }
2614 netif_wake_queue(dev);
2615 }
2616
2617 /* Work-around for EMAC Errata section 41.3.1 */
2618 if (intstatus & MACB_BIT(RXUBR)) {
2619 ctl = macb_readl(lp, NCR);
2620 macb_writel(lp, NCR, ctl & ~MACB_BIT(RE));
2621 macb_writel(lp, NCR, ctl | MACB_BIT(RE));
2622 }
2623
2624 if (intstatus & MACB_BIT(ISR_ROVR))
2625 netdev_err(dev, "ROVR error\n");
2626
2627 return IRQ_HANDLED;
2628}
2629
2630#ifdef CONFIG_NET_POLL_CONTROLLER
2631static void at91ether_poll_controller(struct net_device *dev)
2632{
2633 unsigned long flags;
2634
2635 local_irq_save(flags);
2636 at91ether_interrupt(dev->irq, dev);
2637 local_irq_restore(flags);
2638}
2639#endif
2640
2641static const struct net_device_ops at91ether_netdev_ops = {
2642 .ndo_open = at91ether_open,
2643 .ndo_stop = at91ether_close,
2644 .ndo_start_xmit = at91ether_start_xmit,
2645 .ndo_get_stats = macb_get_stats,
2646 .ndo_set_rx_mode = macb_set_rx_mode,
2647 .ndo_set_mac_address = eth_mac_addr,
2648 .ndo_do_ioctl = macb_ioctl,
2649 .ndo_validate_addr = eth_validate_addr,
2650 .ndo_change_mtu = eth_change_mtu,
2651#ifdef CONFIG_NET_POLL_CONTROLLER
2652 .ndo_poll_controller = at91ether_poll_controller,
2653#endif
2654};
2655
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002656static int at91ether_clk_init(struct platform_device *pdev, struct clk **pclk,
2657 struct clk **hclk, struct clk **tx_clk)
2658{
2659 int err;
2660
2661 *hclk = NULL;
2662 *tx_clk = NULL;
2663
2664 *pclk = devm_clk_get(&pdev->dev, "ether_clk");
2665 if (IS_ERR(*pclk))
2666 return PTR_ERR(*pclk);
2667
2668 err = clk_prepare_enable(*pclk);
2669 if (err) {
2670 dev_err(&pdev->dev, "failed to enable pclk (%u)\n", err);
2671 return err;
2672 }
2673
2674 return 0;
2675}
2676
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002677static int at91ether_init(struct platform_device *pdev)
2678{
2679 struct net_device *dev = platform_get_drvdata(pdev);
2680 struct macb *bp = netdev_priv(dev);
2681 int err;
2682 u32 reg;
2683
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002684 dev->netdev_ops = &at91ether_netdev_ops;
2685 dev->ethtool_ops = &macb_ethtool_ops;
2686
2687 err = devm_request_irq(&pdev->dev, dev->irq, at91ether_interrupt,
2688 0, dev->name, dev);
2689 if (err)
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002690 return err;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002691
2692 macb_writel(bp, NCR, 0);
2693
2694 reg = MACB_BF(CLK, MACB_CLK_DIV32) | MACB_BIT(BIG);
2695 if (bp->phy_interface == PHY_INTERFACE_MODE_RMII)
2696 reg |= MACB_BIT(RM9200_RMII);
2697
2698 macb_writel(bp, NCFGR, reg);
2699
2700 return 0;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002701}
2702
David S. Miller3cef5c52015-03-09 23:38:02 -04002703static const struct macb_config at91sam9260_config = {
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002704 .caps = MACB_CAPS_USRIO_HAS_CLKEN | MACB_CAPS_USRIO_DEFAULT_IS_MII,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002705 .clk_init = macb_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002706 .init = macb_init,
2707};
2708
David S. Miller3cef5c52015-03-09 23:38:02 -04002709static const struct macb_config pc302gem_config = {
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002710 .caps = MACB_CAPS_SG_DISABLED | MACB_CAPS_GIGABIT_MODE_AVAILABLE,
2711 .dma_burst_length = 16,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002712 .clk_init = macb_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002713 .init = macb_init,
2714};
2715
David S. Miller3cef5c52015-03-09 23:38:02 -04002716static const struct macb_config sama5d3_config = {
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002717 .caps = MACB_CAPS_SG_DISABLED | MACB_CAPS_GIGABIT_MODE_AVAILABLE,
2718 .dma_burst_length = 16,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002719 .clk_init = macb_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002720 .init = macb_init,
2721};
2722
David S. Miller3cef5c52015-03-09 23:38:02 -04002723static const struct macb_config sama5d4_config = {
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002724 .caps = 0,
2725 .dma_burst_length = 4,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002726 .clk_init = macb_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002727 .init = macb_init,
2728};
2729
David S. Miller3cef5c52015-03-09 23:38:02 -04002730static const struct macb_config emac_config = {
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002731 .clk_init = at91ether_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002732 .init = at91ether_init,
2733};
2734
David S. Miller36583eb2015-05-23 01:22:35 -04002735
Harini Katakam7b61f9c2015-05-06 22:27:16 +05302736static const struct macb_config zynqmp_config = {
Harini Katakam98b5a0f42015-05-06 22:27:17 +05302737 .caps = MACB_CAPS_SG_DISABLED | MACB_CAPS_GIGABIT_MODE_AVAILABLE |
2738 MACB_CAPS_JUMBO,
Harini Katakam7b61f9c2015-05-06 22:27:16 +05302739 .dma_burst_length = 16,
2740 .clk_init = macb_clk_init,
2741 .init = macb_init,
Harini Katakam98b5a0f42015-05-06 22:27:17 +05302742 .jumbo_max_len = 10240,
Harini Katakam7b61f9c2015-05-06 22:27:16 +05302743};
2744
Nathan Sullivan222ca8e2015-05-22 09:22:10 -05002745static const struct macb_config zynq_config = {
2746 .caps = MACB_CAPS_SG_DISABLED | MACB_CAPS_GIGABIT_MODE_AVAILABLE |
2747 MACB_CAPS_NO_GIGABIT_HALF,
2748 .dma_burst_length = 16,
2749 .clk_init = macb_clk_init,
2750 .init = macb_init,
2751};
2752
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002753static const struct of_device_id macb_dt_ids[] = {
2754 { .compatible = "cdns,at32ap7000-macb" },
2755 { .compatible = "cdns,at91sam9260-macb", .data = &at91sam9260_config },
2756 { .compatible = "cdns,macb" },
2757 { .compatible = "cdns,pc302-gem", .data = &pc302gem_config },
2758 { .compatible = "cdns,gem", .data = &pc302gem_config },
2759 { .compatible = "atmel,sama5d3-gem", .data = &sama5d3_config },
2760 { .compatible = "atmel,sama5d4-gem", .data = &sama5d4_config },
2761 { .compatible = "cdns,at91rm9200-emac", .data = &emac_config },
2762 { .compatible = "cdns,emac", .data = &emac_config },
Harini Katakam7b61f9c2015-05-06 22:27:16 +05302763 { .compatible = "cdns,zynqmp-gem", .data = &zynqmp_config},
Nathan Sullivan222ca8e2015-05-22 09:22:10 -05002764 { .compatible = "cdns,zynq-gem", .data = &zynq_config },
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002765 { /* sentinel */ }
2766};
2767MODULE_DEVICE_TABLE(of, macb_dt_ids);
2768#endif /* CONFIG_OF */
2769
2770static int macb_probe(struct platform_device *pdev)
2771{
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002772 int (*clk_init)(struct platform_device *, struct clk **,
2773 struct clk **, struct clk **)
2774 = macb_clk_init;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002775 int (*init)(struct platform_device *) = macb_init;
2776 struct device_node *np = pdev->dev.of_node;
2777 const struct macb_config *macb_config = NULL;
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002778 struct clk *pclk, *hclk, *tx_clk;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002779 unsigned int queue_mask, num_queues;
2780 struct macb_platform_data *pdata;
2781 struct phy_device *phydev;
2782 struct net_device *dev;
2783 struct resource *regs;
2784 void __iomem *mem;
2785 const char *mac;
2786 struct macb *bp;
2787 int err;
2788
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002789 if (np) {
2790 const struct of_device_id *match;
2791
2792 match = of_match_node(macb_dt_ids, np);
2793 if (match && match->data) {
2794 macb_config = match->data;
2795 clk_init = macb_config->clk_init;
2796 init = macb_config->init;
2797 }
2798 }
2799
2800 err = clk_init(pdev, &pclk, &hclk, &tx_clk);
2801 if (err)
2802 return err;
2803
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002804 regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2805 mem = devm_ioremap_resource(&pdev->dev, regs);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002806 if (IS_ERR(mem)) {
2807 err = PTR_ERR(mem);
2808 goto err_disable_clocks;
2809 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002810
2811 macb_probe_queues(mem, &queue_mask, &num_queues);
2812 dev = alloc_etherdev_mq(sizeof(*bp), num_queues);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002813 if (!dev) {
2814 err = -ENOMEM;
2815 goto err_disable_clocks;
2816 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002817
2818 dev->base_addr = regs->start;
2819
2820 SET_NETDEV_DEV(dev, &pdev->dev);
2821
2822 bp = netdev_priv(dev);
2823 bp->pdev = pdev;
2824 bp->dev = dev;
2825 bp->regs = mem;
2826 bp->num_queues = num_queues;
Nicolas Ferrebfa09142015-03-31 15:01:59 +02002827 bp->queue_mask = queue_mask;
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002828 if (macb_config)
2829 bp->dma_burst_length = macb_config->dma_burst_length;
2830 bp->pclk = pclk;
2831 bp->hclk = hclk;
2832 bp->tx_clk = tx_clk;
Harini Katakam98b5a0f42015-05-06 22:27:17 +05302833 if (macb_config->jumbo_max_len) {
2834 bp->jumbo_max_len = macb_config->jumbo_max_len;
2835 }
2836
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002837 spin_lock_init(&bp->lock);
2838
Nicolas Ferread783472015-03-31 15:02:02 +02002839 /* setup capabilities */
Nicolas Ferref6970502015-03-31 15:02:01 +02002840 macb_configure_caps(bp, macb_config);
2841
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002842 platform_set_drvdata(pdev, dev);
2843
2844 dev->irq = platform_get_irq(pdev, 0);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002845 if (dev->irq < 0) {
2846 err = dev->irq;
2847 goto err_disable_clocks;
2848 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002849
2850 mac = of_get_mac_address(np);
Guenter Roeck50907042013-04-02 09:35:09 +00002851 if (mac)
2852 memcpy(bp->dev->dev_addr, mac, ETH_ALEN);
2853 else
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +01002854 macb_get_hwaddr(bp);
frederic RODO6c36a702007-07-12 19:07:24 +02002855
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002856 err = of_get_phy_mode(np);
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +01002857 if (err < 0) {
Jingoo Hanc607a0d2013-08-30 14:12:21 +09002858 pdata = dev_get_platdata(&pdev->dev);
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +01002859 if (pdata && pdata->is_rmii)
2860 bp->phy_interface = PHY_INTERFACE_MODE_RMII;
2861 else
2862 bp->phy_interface = PHY_INTERFACE_MODE_MII;
2863 } else {
2864 bp->phy_interface = err;
2865 }
2866
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002867 /* IP specific init */
2868 err = init(pdev);
2869 if (err)
2870 goto err_out_free_netdev;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002871
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002872 err = register_netdev(dev);
2873 if (err) {
2874 dev_err(&pdev->dev, "Cannot register net device, aborting.\n");
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002875 goto err_out_unregister_netdev;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002876 }
2877
Nicolas Ferre72ca8202013-04-14 22:04:33 +00002878 err = macb_mii_init(bp);
2879 if (err)
frederic RODO6c36a702007-07-12 19:07:24 +02002880 goto err_out_unregister_netdev;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002881
Nicolas Ferre03fc4722012-07-03 23:14:13 +00002882 netif_carrier_off(dev);
2883
Bo Shen58798232014-09-13 01:57:49 +02002884 netdev_info(dev, "Cadence %s rev 0x%08x at 0x%08lx irq %d (%pM)\n",
2885 macb_is_gem(bp) ? "GEM" : "MACB", macb_readl(bp, MID),
2886 dev->base_addr, dev->irq, dev->dev_addr);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002887
frederic RODO6c36a702007-07-12 19:07:24 +02002888 phydev = bp->phy_dev;
Jamie Ilesc220f8c2011-03-08 20:27:08 +00002889 netdev_info(dev, "attached PHY driver [%s] (mii_bus:phy_addr=%s, irq=%d)\n",
2890 phydev->drv->name, dev_name(&phydev->dev), phydev->irq);
frederic RODO6c36a702007-07-12 19:07:24 +02002891
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002892 return 0;
2893
frederic RODO6c36a702007-07-12 19:07:24 +02002894err_out_unregister_netdev:
2895 unregister_netdev(dev);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002896
Cyrille Pitchencf250de2014-12-15 15:13:32 +01002897err_out_free_netdev:
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002898 free_netdev(dev);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002899
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002900err_disable_clocks:
2901 clk_disable_unprepare(tx_clk);
2902 clk_disable_unprepare(hclk);
2903 clk_disable_unprepare(pclk);
2904
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002905 return err;
2906}
2907
Nicolae Rosia9e86d7662015-01-22 17:31:05 +00002908static int macb_remove(struct platform_device *pdev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002909{
2910 struct net_device *dev;
2911 struct macb *bp;
2912
2913 dev = platform_get_drvdata(pdev);
2914
2915 if (dev) {
2916 bp = netdev_priv(dev);
Atsushi Nemoto84b79012008-04-10 23:30:07 +09002917 if (bp->phy_dev)
2918 phy_disconnect(bp->phy_dev);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07002919 mdiobus_unregister(bp->mii_bus);
2920 kfree(bp->mii_bus->irq);
2921 mdiobus_free(bp->mii_bus);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002922 unregister_netdev(dev);
Cyrille Pitchen93b31f42015-03-07 07:23:31 +01002923 clk_disable_unprepare(bp->tx_clk);
Steffen Trumtrarace58012013-03-27 23:07:07 +00002924 clk_disable_unprepare(bp->hclk);
Steffen Trumtrarace58012013-03-27 23:07:07 +00002925 clk_disable_unprepare(bp->pclk);
Cyrille Pitchene965be72014-12-15 15:13:31 +01002926 free_netdev(dev);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002927 }
2928
2929 return 0;
2930}
2931
Michal Simekd23823d2015-01-23 09:36:03 +01002932static int __maybe_unused macb_suspend(struct device *dev)
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01002933{
Soren Brinkmann0dfc3e12013-12-10 16:07:19 -08002934 struct platform_device *pdev = to_platform_device(dev);
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01002935 struct net_device *netdev = platform_get_drvdata(pdev);
2936 struct macb *bp = netdev_priv(netdev);
2937
Nicolas Ferre03fc4722012-07-03 23:14:13 +00002938 netif_carrier_off(netdev);
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01002939 netif_device_detach(netdev);
2940
Cyrille Pitchen93b31f42015-03-07 07:23:31 +01002941 clk_disable_unprepare(bp->tx_clk);
Steffen Trumtrarace58012013-03-27 23:07:07 +00002942 clk_disable_unprepare(bp->hclk);
2943 clk_disable_unprepare(bp->pclk);
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01002944
2945 return 0;
2946}
2947
Michal Simekd23823d2015-01-23 09:36:03 +01002948static int __maybe_unused macb_resume(struct device *dev)
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01002949{
Soren Brinkmann0dfc3e12013-12-10 16:07:19 -08002950 struct platform_device *pdev = to_platform_device(dev);
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01002951 struct net_device *netdev = platform_get_drvdata(pdev);
2952 struct macb *bp = netdev_priv(netdev);
2953
Steffen Trumtrarace58012013-03-27 23:07:07 +00002954 clk_prepare_enable(bp->pclk);
2955 clk_prepare_enable(bp->hclk);
Cyrille Pitchen93b31f42015-03-07 07:23:31 +01002956 clk_prepare_enable(bp->tx_clk);
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01002957
2958 netif_device_attach(netdev);
2959
2960 return 0;
2961}
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01002962
Soren Brinkmann0dfc3e12013-12-10 16:07:19 -08002963static SIMPLE_DEV_PM_OPS(macb_pm_ops, macb_suspend, macb_resume);
2964
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002965static struct platform_driver macb_driver = {
Nicolae Rosia9e86d7662015-01-22 17:31:05 +00002966 .probe = macb_probe,
2967 .remove = macb_remove,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002968 .driver = {
2969 .name = "macb",
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +01002970 .of_match_table = of_match_ptr(macb_dt_ids),
Soren Brinkmann0dfc3e12013-12-10 16:07:19 -08002971 .pm = &macb_pm_ops,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002972 },
2973};
2974
Nicolae Rosia9e86d7662015-01-22 17:31:05 +00002975module_platform_driver(macb_driver);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002976
2977MODULE_LICENSE("GPL");
Jamie Ilesf75ba502011-11-08 10:12:32 +00002978MODULE_DESCRIPTION("Cadence MACB/GEM Ethernet driver");
Jean Delvaree05503e2011-05-18 16:49:24 +02002979MODULE_AUTHOR("Haavard Skinnemoen (Atmel)");
Kay Sievers72abb462008-04-18 13:50:44 -07002980MODULE_ALIAS("platform:macb");