blob: 5fca3093747c6f417aedb7ed2b8dbf6bc85bbfd6 [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
frederic RODO6c36a702007-07-12 19:07:24 +0200355 phydev->advertising = phydev->supported;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100356
frederic RODO6c36a702007-07-12 19:07:24 +0200357 bp->link = 0;
358 bp->speed = 0;
359 bp->duplex = -1;
360 bp->phy_dev = phydev;
361
362 return 0;
363}
364
Cyrille Pitchen421d9df2015-03-07 07:23:32 +0100365static int macb_mii_init(struct macb *bp)
frederic RODO6c36a702007-07-12 19:07:24 +0200366{
Jamie Iles84e0cdb2011-03-08 20:17:06 +0000367 struct macb_platform_data *pdata;
Boris BREZILLON148cbb52013-08-22 17:57:28 +0200368 struct device_node *np;
frederic RODO6c36a702007-07-12 19:07:24 +0200369 int err = -ENXIO, i;
370
Uwe Kleine-Koenig3dbda772009-07-23 08:31:31 +0200371 /* Enable management port */
frederic RODO6c36a702007-07-12 19:07:24 +0200372 macb_writel(bp, NCR, MACB_BIT(MPE));
373
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700374 bp->mii_bus = mdiobus_alloc();
375 if (bp->mii_bus == NULL) {
frederic RODO6c36a702007-07-12 19:07:24 +0200376 err = -ENOMEM;
377 goto err_out;
378 }
379
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700380 bp->mii_bus->name = "MACB_mii_bus";
381 bp->mii_bus->read = &macb_mdio_read;
382 bp->mii_bus->write = &macb_mdio_write;
Florian Fainelli98d5e572012-01-09 23:59:11 +0000383 snprintf(bp->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
384 bp->pdev->name, bp->pdev->id);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700385 bp->mii_bus->priv = bp;
386 bp->mii_bus->parent = &bp->dev->dev;
Jingoo Hanc607a0d2013-08-30 14:12:21 +0900387 pdata = dev_get_platdata(&bp->pdev->dev);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700388
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700389 bp->mii_bus->irq = kmalloc(sizeof(int)*PHY_MAX_ADDR, GFP_KERNEL);
390 if (!bp->mii_bus->irq) {
391 err = -ENOMEM;
392 goto err_out_free_mdiobus;
393 }
394
Jamie Iles91523942011-02-28 04:05:25 +0000395 dev_set_drvdata(&bp->dev->dev, bp->mii_bus);
frederic RODO6c36a702007-07-12 19:07:24 +0200396
Boris BREZILLON148cbb52013-08-22 17:57:28 +0200397 np = bp->pdev->dev.of_node;
398 if (np) {
399 /* try dt phy registration */
400 err = of_mdiobus_register(bp->mii_bus, np);
401
402 /* fallback to standard phy registration if no phy were
403 found during dt phy registration */
404 if (!err && !phy_find_first(bp->mii_bus)) {
405 for (i = 0; i < PHY_MAX_ADDR; i++) {
406 struct phy_device *phydev;
407
408 phydev = mdiobus_scan(bp->mii_bus, i);
409 if (IS_ERR(phydev)) {
410 err = PTR_ERR(phydev);
411 break;
412 }
413 }
414
415 if (err)
416 goto err_out_unregister_bus;
417 }
418 } else {
419 for (i = 0; i < PHY_MAX_ADDR; i++)
420 bp->mii_bus->irq[i] = PHY_POLL;
421
422 if (pdata)
423 bp->mii_bus->phy_mask = pdata->phy_mask;
424
425 err = mdiobus_register(bp->mii_bus);
426 }
427
428 if (err)
frederic RODO6c36a702007-07-12 19:07:24 +0200429 goto err_out_free_mdio_irq;
430
Boris BREZILLON7daa78e2013-08-27 14:36:14 +0200431 err = macb_mii_probe(bp->dev);
432 if (err)
frederic RODO6c36a702007-07-12 19:07:24 +0200433 goto err_out_unregister_bus;
frederic RODO6c36a702007-07-12 19:07:24 +0200434
435 return 0;
436
437err_out_unregister_bus:
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700438 mdiobus_unregister(bp->mii_bus);
frederic RODO6c36a702007-07-12 19:07:24 +0200439err_out_free_mdio_irq:
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700440 kfree(bp->mii_bus->irq);
441err_out_free_mdiobus:
442 mdiobus_free(bp->mii_bus);
frederic RODO6c36a702007-07-12 19:07:24 +0200443err_out:
444 return err;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100445}
446
447static void macb_update_stats(struct macb *bp)
448{
449 u32 __iomem *reg = bp->regs + MACB_PFR;
Jamie Ilesa494ed82011-03-09 16:26:35 +0000450 u32 *p = &bp->hw_stats.macb.rx_pause_frames;
451 u32 *end = &bp->hw_stats.macb.tx_pause_frames + 1;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100452
453 WARN_ON((unsigned long)(end - p - 1) != (MACB_TPF - MACB_PFR) / 4);
454
455 for(; p < end; p++, reg++)
Arun Chandrana50dad32015-02-18 16:59:35 +0530456 *p += readl_relaxed(reg);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100457}
458
Nicolas Ferree86cd532012-10-31 06:04:57 +0000459static int macb_halt_tx(struct macb *bp)
460{
461 unsigned long halt_time, timeout;
462 u32 status;
463
464 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(THALT));
465
466 timeout = jiffies + usecs_to_jiffies(MACB_HALT_TIMEOUT);
467 do {
468 halt_time = jiffies;
469 status = macb_readl(bp, TSR);
470 if (!(status & MACB_BIT(TGO)))
471 return 0;
472
473 usleep_range(10, 250);
474 } while (time_before(halt_time, timeout));
475
476 return -ETIMEDOUT;
477}
478
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200479static void macb_tx_unmap(struct macb *bp, struct macb_tx_skb *tx_skb)
480{
481 if (tx_skb->mapping) {
482 if (tx_skb->mapped_as_page)
483 dma_unmap_page(&bp->pdev->dev, tx_skb->mapping,
484 tx_skb->size, DMA_TO_DEVICE);
485 else
486 dma_unmap_single(&bp->pdev->dev, tx_skb->mapping,
487 tx_skb->size, DMA_TO_DEVICE);
488 tx_skb->mapping = 0;
489 }
490
491 if (tx_skb->skb) {
492 dev_kfree_skb_any(tx_skb->skb);
493 tx_skb->skb = NULL;
494 }
495}
496
Nicolas Ferree86cd532012-10-31 06:04:57 +0000497static void macb_tx_error_task(struct work_struct *work)
498{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100499 struct macb_queue *queue = container_of(work, struct macb_queue,
500 tx_error_task);
501 struct macb *bp = queue->bp;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000502 struct macb_tx_skb *tx_skb;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100503 struct macb_dma_desc *desc;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000504 struct sk_buff *skb;
505 unsigned int tail;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100506 unsigned long flags;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000507
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100508 netdev_vdbg(bp->dev, "macb_tx_error_task: q = %u, t = %u, h = %u\n",
509 (unsigned int)(queue - bp->queues),
510 queue->tx_tail, queue->tx_head);
511
512 /* Prevent the queue IRQ handlers from running: each of them may call
513 * macb_tx_interrupt(), which in turn may call netif_wake_subqueue().
514 * As explained below, we have to halt the transmission before updating
515 * TBQP registers so we call netif_tx_stop_all_queues() to notify the
516 * network engine about the macb/gem being halted.
517 */
518 spin_lock_irqsave(&bp->lock, flags);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000519
520 /* Make sure nobody is trying to queue up new packets */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100521 netif_tx_stop_all_queues(bp->dev);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000522
523 /*
524 * Stop transmission now
525 * (in case we have just queued new packets)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100526 * macb/gem must be halted to write TBQP register
Nicolas Ferree86cd532012-10-31 06:04:57 +0000527 */
528 if (macb_halt_tx(bp))
529 /* Just complain for now, reinitializing TX path can be good */
530 netdev_err(bp->dev, "BUG: halt tx timed out\n");
531
Nicolas Ferree86cd532012-10-31 06:04:57 +0000532 /*
533 * Treat frames in TX queue including the ones that caused the error.
534 * Free transmit buffers in upper layer.
535 */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100536 for (tail = queue->tx_tail; tail != queue->tx_head; tail++) {
537 u32 ctrl;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000538
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100539 desc = macb_tx_desc(queue, tail);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000540 ctrl = desc->ctrl;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100541 tx_skb = macb_tx_skb(queue, tail);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000542 skb = tx_skb->skb;
543
544 if (ctrl & MACB_BIT(TX_USED)) {
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200545 /* skb is set for the last buffer of the frame */
546 while (!skb) {
547 macb_tx_unmap(bp, tx_skb);
548 tail++;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100549 tx_skb = macb_tx_skb(queue, tail);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200550 skb = tx_skb->skb;
551 }
552
553 /* ctrl still refers to the first buffer descriptor
554 * since it's the only one written back by the hardware
555 */
556 if (!(ctrl & MACB_BIT(TX_BUF_EXHAUSTED))) {
557 netdev_vdbg(bp->dev, "txerr skb %u (data %p) TX complete\n",
558 macb_tx_ring_wrap(tail), skb->data);
559 bp->stats.tx_packets++;
560 bp->stats.tx_bytes += skb->len;
561 }
Nicolas Ferree86cd532012-10-31 06:04:57 +0000562 } else {
563 /*
564 * "Buffers exhausted mid-frame" errors may only happen
565 * if the driver is buggy, so complain loudly about those.
566 * Statistics are updated by hardware.
567 */
568 if (ctrl & MACB_BIT(TX_BUF_EXHAUSTED))
569 netdev_err(bp->dev,
570 "BUG: TX buffers exhausted mid-frame\n");
571
572 desc->ctrl = ctrl | MACB_BIT(TX_USED);
573 }
574
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200575 macb_tx_unmap(bp, tx_skb);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000576 }
577
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100578 /* Set end of TX queue */
579 desc = macb_tx_desc(queue, 0);
580 desc->addr = 0;
581 desc->ctrl = MACB_BIT(TX_USED);
582
Nicolas Ferree86cd532012-10-31 06:04:57 +0000583 /* Make descriptor updates visible to hardware */
584 wmb();
585
586 /* Reinitialize the TX desc queue */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100587 queue_writel(queue, TBQP, queue->tx_ring_dma);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000588 /* Make TX ring reflect state of hardware */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100589 queue->tx_head = 0;
590 queue->tx_tail = 0;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000591
592 /* Housework before enabling TX IRQ */
593 macb_writel(bp, TSR, macb_readl(bp, TSR));
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100594 queue_writel(queue, IER, MACB_TX_INT_FLAGS);
595
596 /* Now we are ready to start transmission again */
597 netif_tx_start_all_queues(bp->dev);
598 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TSTART));
599
600 spin_unlock_irqrestore(&bp->lock, flags);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000601}
602
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100603static void macb_tx_interrupt(struct macb_queue *queue)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100604{
605 unsigned int tail;
606 unsigned int head;
607 u32 status;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100608 struct macb *bp = queue->bp;
609 u16 queue_index = queue - bp->queues;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100610
611 status = macb_readl(bp, TSR);
612 macb_writel(bp, TSR, status);
613
Nicolas Ferre581df9e2013-05-14 03:00:16 +0000614 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100615 queue_writel(queue, ISR, MACB_BIT(TCOMP));
Steffen Trumtrar749a2b62013-03-27 23:07:05 +0000616
Nicolas Ferree86cd532012-10-31 06:04:57 +0000617 netdev_vdbg(bp->dev, "macb_tx_interrupt status = 0x%03lx\n",
618 (unsigned long)status);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100619
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100620 head = queue->tx_head;
621 for (tail = queue->tx_tail; tail != head; tail++) {
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000622 struct macb_tx_skb *tx_skb;
623 struct sk_buff *skb;
624 struct macb_dma_desc *desc;
625 u32 ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100626
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100627 desc = macb_tx_desc(queue, tail);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100628
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000629 /* Make hw descriptor updates visible to CPU */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100630 rmb();
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000631
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000632 ctrl = desc->ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100633
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200634 /* TX_USED bit is only set by hardware on the very first buffer
635 * descriptor of the transmitted frame.
636 */
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000637 if (!(ctrl & MACB_BIT(TX_USED)))
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100638 break;
639
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200640 /* Process all buffers of the current transmitted frame */
641 for (;; tail++) {
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100642 tx_skb = macb_tx_skb(queue, tail);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200643 skb = tx_skb->skb;
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000644
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200645 /* First, update TX stats if needed */
646 if (skb) {
647 netdev_vdbg(bp->dev, "skb %u (data %p) TX complete\n",
648 macb_tx_ring_wrap(tail), skb->data);
649 bp->stats.tx_packets++;
650 bp->stats.tx_bytes += skb->len;
651 }
652
653 /* Now we can safely release resources */
654 macb_tx_unmap(bp, tx_skb);
655
656 /* skb is set only for the last buffer of the frame.
657 * WARNING: at this point skb has been freed by
658 * macb_tx_unmap().
659 */
660 if (skb)
661 break;
662 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100663 }
664
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100665 queue->tx_tail = tail;
666 if (__netif_subqueue_stopped(bp->dev, queue_index) &&
667 CIRC_CNT(queue->tx_head, queue->tx_tail,
668 TX_RING_SIZE) <= MACB_TX_WAKEUP_THRESH)
669 netif_wake_subqueue(bp->dev, queue_index);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100670}
671
Nicolas Ferre4df95132013-06-04 21:57:12 +0000672static void gem_rx_refill(struct macb *bp)
673{
674 unsigned int entry;
675 struct sk_buff *skb;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000676 dma_addr_t paddr;
677
678 while (CIRC_SPACE(bp->rx_prepared_head, bp->rx_tail, RX_RING_SIZE) > 0) {
Nicolas Ferre4df95132013-06-04 21:57:12 +0000679 entry = macb_rx_ring_wrap(bp->rx_prepared_head);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000680
681 /* Make hw descriptor updates visible to CPU */
682 rmb();
683
Nicolas Ferre4df95132013-06-04 21:57:12 +0000684 bp->rx_prepared_head++;
685
Nicolas Ferre4df95132013-06-04 21:57:12 +0000686 if (bp->rx_skbuff[entry] == NULL) {
687 /* allocate sk_buff for this free entry in ring */
688 skb = netdev_alloc_skb(bp->dev, bp->rx_buffer_size);
689 if (unlikely(skb == NULL)) {
690 netdev_err(bp->dev,
691 "Unable to allocate sk_buff\n");
692 break;
693 }
Nicolas Ferre4df95132013-06-04 21:57:12 +0000694
695 /* now fill corresponding descriptor entry */
696 paddr = dma_map_single(&bp->pdev->dev, skb->data,
697 bp->rx_buffer_size, DMA_FROM_DEVICE);
Soren Brinkmann92030902014-03-04 08:46:39 -0800698 if (dma_mapping_error(&bp->pdev->dev, paddr)) {
699 dev_kfree_skb(skb);
700 break;
701 }
702
703 bp->rx_skbuff[entry] = skb;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000704
705 if (entry == RX_RING_SIZE - 1)
706 paddr |= MACB_BIT(RX_WRAP);
707 bp->rx_ring[entry].addr = paddr;
708 bp->rx_ring[entry].ctrl = 0;
709
710 /* properly align Ethernet header */
711 skb_reserve(skb, NET_IP_ALIGN);
Punnaiah Choudary Kallurid4c216c2015-04-29 08:34:46 +0530712 } else {
713 bp->rx_ring[entry].addr &= ~MACB_BIT(RX_USED);
714 bp->rx_ring[entry].ctrl = 0;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000715 }
716 }
717
718 /* Make descriptor updates visible to hardware */
719 wmb();
720
721 netdev_vdbg(bp->dev, "rx ring: prepared head %d, tail %d\n",
722 bp->rx_prepared_head, bp->rx_tail);
723}
724
725/* Mark DMA descriptors from begin up to and not including end as unused */
726static void discard_partial_frame(struct macb *bp, unsigned int begin,
727 unsigned int end)
728{
729 unsigned int frag;
730
731 for (frag = begin; frag != end; frag++) {
732 struct macb_dma_desc *desc = macb_rx_desc(bp, frag);
733 desc->addr &= ~MACB_BIT(RX_USED);
734 }
735
736 /* Make descriptor updates visible to hardware */
737 wmb();
738
739 /*
740 * When this happens, the hardware stats registers for
741 * whatever caused this is updated, so we don't have to record
742 * anything.
743 */
744}
745
746static int gem_rx(struct macb *bp, int budget)
747{
748 unsigned int len;
749 unsigned int entry;
750 struct sk_buff *skb;
751 struct macb_dma_desc *desc;
752 int count = 0;
753
754 while (count < budget) {
755 u32 addr, ctrl;
756
757 entry = macb_rx_ring_wrap(bp->rx_tail);
758 desc = &bp->rx_ring[entry];
759
760 /* Make hw descriptor updates visible to CPU */
761 rmb();
762
763 addr = desc->addr;
764 ctrl = desc->ctrl;
765
766 if (!(addr & MACB_BIT(RX_USED)))
767 break;
768
Nicolas Ferre4df95132013-06-04 21:57:12 +0000769 bp->rx_tail++;
770 count++;
771
772 if (!(ctrl & MACB_BIT(RX_SOF) && ctrl & MACB_BIT(RX_EOF))) {
773 netdev_err(bp->dev,
774 "not whole frame pointed by descriptor\n");
775 bp->stats.rx_dropped++;
776 break;
777 }
778 skb = bp->rx_skbuff[entry];
779 if (unlikely(!skb)) {
780 netdev_err(bp->dev,
781 "inconsistent Rx descriptor chain\n");
782 bp->stats.rx_dropped++;
783 break;
784 }
785 /* now everything is ready for receiving packet */
786 bp->rx_skbuff[entry] = NULL;
Harini Katakam98b5a0f42015-05-06 22:27:17 +0530787 len = ctrl & bp->rx_frm_len_mask;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000788
789 netdev_vdbg(bp->dev, "gem_rx %u (len %u)\n", entry, len);
790
791 skb_put(skb, len);
792 addr = MACB_BF(RX_WADDR, MACB_BFEXT(RX_WADDR, addr));
793 dma_unmap_single(&bp->pdev->dev, addr,
Soren Brinkmann48330e082014-03-04 08:46:40 -0800794 bp->rx_buffer_size, DMA_FROM_DEVICE);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000795
796 skb->protocol = eth_type_trans(skb, bp->dev);
797 skb_checksum_none_assert(skb);
Cyrille Pitchen924ec532014-07-24 13:51:01 +0200798 if (bp->dev->features & NETIF_F_RXCSUM &&
799 !(bp->dev->flags & IFF_PROMISC) &&
800 GEM_BFEXT(RX_CSUM, ctrl) & GEM_RX_CSUM_CHECKED_MASK)
801 skb->ip_summed = CHECKSUM_UNNECESSARY;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000802
803 bp->stats.rx_packets++;
804 bp->stats.rx_bytes += skb->len;
805
806#if defined(DEBUG) && defined(VERBOSE_DEBUG)
807 netdev_vdbg(bp->dev, "received skb of length %u, csum: %08x\n",
808 skb->len, skb->csum);
809 print_hex_dump(KERN_DEBUG, " mac: ", DUMP_PREFIX_ADDRESS, 16, 1,
Cyrille Pitchen51f83012014-12-11 11:15:54 +0100810 skb_mac_header(skb), 16, true);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000811 print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_ADDRESS, 16, 1,
812 skb->data, 32, true);
813#endif
814
815 netif_receive_skb(skb);
816 }
817
818 gem_rx_refill(bp);
819
820 return count;
821}
822
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100823static int macb_rx_frame(struct macb *bp, unsigned int first_frag,
824 unsigned int last_frag)
825{
826 unsigned int len;
827 unsigned int frag;
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +0000828 unsigned int offset;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100829 struct sk_buff *skb;
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000830 struct macb_dma_desc *desc;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100831
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000832 desc = macb_rx_desc(bp, last_frag);
Harini Katakam98b5a0f42015-05-06 22:27:17 +0530833 len = desc->ctrl & bp->rx_frm_len_mask;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100834
Havard Skinnemoena268adb2012-10-31 06:04:52 +0000835 netdev_vdbg(bp->dev, "macb_rx_frame frags %u - %u (len %u)\n",
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000836 macb_rx_ring_wrap(first_frag),
837 macb_rx_ring_wrap(last_frag), len);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100838
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +0000839 /*
840 * The ethernet header starts NET_IP_ALIGN bytes into the
841 * first buffer. Since the header is 14 bytes, this makes the
842 * payload word-aligned.
843 *
844 * Instead of calling skb_reserve(NET_IP_ALIGN), we just copy
845 * the two padding bytes into the skb so that we avoid hitting
846 * the slowpath in memcpy(), and pull them off afterwards.
847 */
848 skb = netdev_alloc_skb(bp->dev, len + NET_IP_ALIGN);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100849 if (!skb) {
850 bp->stats.rx_dropped++;
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000851 for (frag = first_frag; ; frag++) {
852 desc = macb_rx_desc(bp, frag);
853 desc->addr &= ~MACB_BIT(RX_USED);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100854 if (frag == last_frag)
855 break;
856 }
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000857
858 /* Make descriptor updates visible to hardware */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100859 wmb();
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000860
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100861 return 1;
862 }
863
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +0000864 offset = 0;
865 len += NET_IP_ALIGN;
Eric Dumazetbc8acf22010-09-02 13:07:41 -0700866 skb_checksum_none_assert(skb);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100867 skb_put(skb, len);
868
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000869 for (frag = first_frag; ; frag++) {
Nicolas Ferre1b447912013-06-04 21:57:11 +0000870 unsigned int frag_len = bp->rx_buffer_size;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100871
872 if (offset + frag_len > len) {
873 BUG_ON(frag != last_frag);
874 frag_len = len - offset;
875 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300876 skb_copy_to_linear_data_offset(skb, offset,
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000877 macb_rx_buffer(bp, frag), frag_len);
Nicolas Ferre1b447912013-06-04 21:57:11 +0000878 offset += bp->rx_buffer_size;
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000879 desc = macb_rx_desc(bp, frag);
880 desc->addr &= ~MACB_BIT(RX_USED);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100881
882 if (frag == last_frag)
883 break;
884 }
885
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000886 /* Make descriptor updates visible to hardware */
887 wmb();
888
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +0000889 __skb_pull(skb, NET_IP_ALIGN);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100890 skb->protocol = eth_type_trans(skb, bp->dev);
891
892 bp->stats.rx_packets++;
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +0000893 bp->stats.rx_bytes += skb->len;
Havard Skinnemoena268adb2012-10-31 06:04:52 +0000894 netdev_vdbg(bp->dev, "received skb of length %u, csum: %08x\n",
Jamie Ilesc220f8c2011-03-08 20:27:08 +0000895 skb->len, skb->csum);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100896 netif_receive_skb(skb);
897
898 return 0;
899}
900
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100901static int macb_rx(struct macb *bp, int budget)
902{
903 int received = 0;
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000904 unsigned int tail;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100905 int first_frag = -1;
906
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000907 for (tail = bp->rx_tail; budget > 0; tail++) {
908 struct macb_dma_desc *desc = macb_rx_desc(bp, tail);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100909 u32 addr, ctrl;
910
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000911 /* Make hw descriptor updates visible to CPU */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100912 rmb();
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000913
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000914 addr = desc->addr;
915 ctrl = desc->ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100916
917 if (!(addr & MACB_BIT(RX_USED)))
918 break;
919
920 if (ctrl & MACB_BIT(RX_SOF)) {
921 if (first_frag != -1)
922 discard_partial_frame(bp, first_frag, tail);
923 first_frag = tail;
924 }
925
926 if (ctrl & MACB_BIT(RX_EOF)) {
927 int dropped;
928 BUG_ON(first_frag == -1);
929
930 dropped = macb_rx_frame(bp, first_frag, tail);
931 first_frag = -1;
932 if (!dropped) {
933 received++;
934 budget--;
935 }
936 }
937 }
938
939 if (first_frag != -1)
940 bp->rx_tail = first_frag;
941 else
942 bp->rx_tail = tail;
943
944 return received;
945}
946
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700947static int macb_poll(struct napi_struct *napi, int budget)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100948{
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700949 struct macb *bp = container_of(napi, struct macb, napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700950 int work_done;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100951 u32 status;
952
953 status = macb_readl(bp, RSR);
954 macb_writel(bp, RSR, status);
955
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700956 work_done = 0;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100957
Havard Skinnemoena268adb2012-10-31 06:04:52 +0000958 netdev_vdbg(bp->dev, "poll: status = %08lx, budget = %d\n",
Jamie Ilesc220f8c2011-03-08 20:27:08 +0000959 (unsigned long)status, budget);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100960
Nicolas Ferre4df95132013-06-04 21:57:12 +0000961 work_done = bp->macbgem_ops.mog_rx(bp, budget);
Joshua Hokeb3363692010-10-25 01:44:22 +0000962 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -0800963 napi_complete(napi);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100964
Nicolas Ferre8770e912013-02-12 11:08:48 +0100965 /* Packets received while interrupts were disabled */
966 status = macb_readl(bp, RSR);
Soren Brinkmann504ad982014-05-04 15:43:01 -0700967 if (status) {
Soren Brinkmann02f7a342014-05-04 15:43:00 -0700968 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
969 macb_writel(bp, ISR, MACB_BIT(RCOMP));
Nicolas Ferre8770e912013-02-12 11:08:48 +0100970 napi_reschedule(napi);
Soren Brinkmann02f7a342014-05-04 15:43:00 -0700971 } else {
972 macb_writel(bp, IER, MACB_RX_INT_FLAGS);
973 }
Joshua Hokeb3363692010-10-25 01:44:22 +0000974 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100975
976 /* TODO: Handle errors */
977
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700978 return work_done;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100979}
980
981static irqreturn_t macb_interrupt(int irq, void *dev_id)
982{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100983 struct macb_queue *queue = dev_id;
984 struct macb *bp = queue->bp;
985 struct net_device *dev = bp->dev;
Nathan Sullivanbfbb92c2015-05-05 15:00:25 -0500986 u32 status, ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100987
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100988 status = queue_readl(queue, ISR);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100989
990 if (unlikely(!status))
991 return IRQ_NONE;
992
993 spin_lock(&bp->lock);
994
995 while (status) {
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100996 /* close possible race with dev_close */
997 if (unlikely(!netif_running(dev))) {
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100998 queue_writel(queue, IDR, -1);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100999 break;
1000 }
1001
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001002 netdev_vdbg(bp->dev, "queue = %u, isr = 0x%08lx\n",
1003 (unsigned int)(queue - bp->queues),
1004 (unsigned long)status);
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001005
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001006 if (status & MACB_RX_INT_FLAGS) {
Joshua Hokeb3363692010-10-25 01:44:22 +00001007 /*
1008 * There's no point taking any more interrupts
1009 * until we have processed the buffers. The
1010 * scheduling call may fail if the poll routine
1011 * is already scheduled, so disable interrupts
1012 * now.
1013 */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001014 queue_writel(queue, IDR, MACB_RX_INT_FLAGS);
Nicolas Ferre581df9e2013-05-14 03:00:16 +00001015 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001016 queue_writel(queue, ISR, MACB_BIT(RCOMP));
Joshua Hokeb3363692010-10-25 01:44:22 +00001017
Ben Hutchings288379f2009-01-19 16:43:59 -08001018 if (napi_schedule_prep(&bp->napi)) {
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001019 netdev_vdbg(bp->dev, "scheduling RX softirq\n");
Ben Hutchings288379f2009-01-19 16:43:59 -08001020 __napi_schedule(&bp->napi);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001021 }
1022 }
1023
Nicolas Ferree86cd532012-10-31 06:04:57 +00001024 if (unlikely(status & (MACB_TX_ERR_FLAGS))) {
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001025 queue_writel(queue, IDR, MACB_TX_INT_FLAGS);
1026 schedule_work(&queue->tx_error_task);
Soren Brinkmann6a027b72014-05-04 15:42:59 -07001027
1028 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001029 queue_writel(queue, ISR, MACB_TX_ERR_FLAGS);
Soren Brinkmann6a027b72014-05-04 15:42:59 -07001030
Nicolas Ferree86cd532012-10-31 06:04:57 +00001031 break;
1032 }
1033
1034 if (status & MACB_BIT(TCOMP))
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001035 macb_tx_interrupt(queue);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001036
1037 /*
1038 * Link change detection isn't possible with RMII, so we'll
1039 * add that if/when we get our hands on a full-blown MII PHY.
1040 */
1041
Nathan Sullivanbfbb92c2015-05-05 15:00:25 -05001042 if (status & MACB_BIT(RXUBR)) {
1043 ctrl = macb_readl(bp, NCR);
1044 macb_writel(bp, NCR, ctrl & ~MACB_BIT(RE));
1045 macb_writel(bp, NCR, ctrl | MACB_BIT(RE));
1046
1047 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1048 macb_writel(bp, ISR, MACB_BIT(RXUBR));
1049 }
1050
Alexander Steinb19f7f72011-04-13 05:03:24 +00001051 if (status & MACB_BIT(ISR_ROVR)) {
1052 /* We missed at least one packet */
Jamie Ilesf75ba502011-11-08 10:12:32 +00001053 if (macb_is_gem(bp))
1054 bp->hw_stats.gem.rx_overruns++;
1055 else
1056 bp->hw_stats.macb.rx_overruns++;
Soren Brinkmann6a027b72014-05-04 15:42:59 -07001057
1058 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001059 queue_writel(queue, ISR, MACB_BIT(ISR_ROVR));
Alexander Steinb19f7f72011-04-13 05:03:24 +00001060 }
1061
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001062 if (status & MACB_BIT(HRESP)) {
1063 /*
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001064 * TODO: Reset the hardware, and maybe move the
1065 * netdev_err to a lower-priority context as well
1066 * (work queue?)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001067 */
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001068 netdev_err(dev, "DMA bus error: HRESP not OK\n");
Soren Brinkmann6a027b72014-05-04 15:42:59 -07001069
1070 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001071 queue_writel(queue, ISR, MACB_BIT(HRESP));
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001072 }
1073
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001074 status = queue_readl(queue, ISR);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001075 }
1076
1077 spin_unlock(&bp->lock);
1078
1079 return IRQ_HANDLED;
1080}
1081
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001082#ifdef CONFIG_NET_POLL_CONTROLLER
1083/*
1084 * Polling receive - used by netconsole and other diagnostic tools
1085 * to allow network i/o with interrupts disabled.
1086 */
1087static void macb_poll_controller(struct net_device *dev)
1088{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001089 struct macb *bp = netdev_priv(dev);
1090 struct macb_queue *queue;
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001091 unsigned long flags;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001092 unsigned int q;
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001093
1094 local_irq_save(flags);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001095 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
1096 macb_interrupt(dev->irq, queue);
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001097 local_irq_restore(flags);
1098}
1099#endif
1100
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001101static inline unsigned int macb_count_tx_descriptors(struct macb *bp,
1102 unsigned int len)
1103{
1104 return (len + bp->max_tx_length - 1) / bp->max_tx_length;
1105}
1106
1107static unsigned int macb_tx_map(struct macb *bp,
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001108 struct macb_queue *queue,
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001109 struct sk_buff *skb)
1110{
1111 dma_addr_t mapping;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001112 unsigned int len, entry, i, tx_head = queue->tx_head;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001113 struct macb_tx_skb *tx_skb = NULL;
1114 struct macb_dma_desc *desc;
1115 unsigned int offset, size, count = 0;
1116 unsigned int f, nr_frags = skb_shinfo(skb)->nr_frags;
1117 unsigned int eof = 1;
1118 u32 ctrl;
1119
1120 /* First, map non-paged data */
1121 len = skb_headlen(skb);
1122 offset = 0;
1123 while (len) {
1124 size = min(len, bp->max_tx_length);
1125 entry = macb_tx_ring_wrap(tx_head);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001126 tx_skb = &queue->tx_skb[entry];
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001127
1128 mapping = dma_map_single(&bp->pdev->dev,
1129 skb->data + offset,
1130 size, DMA_TO_DEVICE);
1131 if (dma_mapping_error(&bp->pdev->dev, mapping))
1132 goto dma_error;
1133
1134 /* Save info to properly release resources */
1135 tx_skb->skb = NULL;
1136 tx_skb->mapping = mapping;
1137 tx_skb->size = size;
1138 tx_skb->mapped_as_page = false;
1139
1140 len -= size;
1141 offset += size;
1142 count++;
1143 tx_head++;
1144 }
1145
1146 /* Then, map paged data from fragments */
1147 for (f = 0; f < nr_frags; f++) {
1148 const skb_frag_t *frag = &skb_shinfo(skb)->frags[f];
1149
1150 len = skb_frag_size(frag);
1151 offset = 0;
1152 while (len) {
1153 size = min(len, bp->max_tx_length);
1154 entry = macb_tx_ring_wrap(tx_head);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001155 tx_skb = &queue->tx_skb[entry];
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001156
1157 mapping = skb_frag_dma_map(&bp->pdev->dev, frag,
1158 offset, size, DMA_TO_DEVICE);
1159 if (dma_mapping_error(&bp->pdev->dev, mapping))
1160 goto dma_error;
1161
1162 /* Save info to properly release resources */
1163 tx_skb->skb = NULL;
1164 tx_skb->mapping = mapping;
1165 tx_skb->size = size;
1166 tx_skb->mapped_as_page = true;
1167
1168 len -= size;
1169 offset += size;
1170 count++;
1171 tx_head++;
1172 }
1173 }
1174
1175 /* Should never happen */
1176 if (unlikely(tx_skb == NULL)) {
1177 netdev_err(bp->dev, "BUG! empty skb!\n");
1178 return 0;
1179 }
1180
1181 /* This is the last buffer of the frame: save socket buffer */
1182 tx_skb->skb = skb;
1183
1184 /* Update TX ring: update buffer descriptors in reverse order
1185 * to avoid race condition
1186 */
1187
1188 /* Set 'TX_USED' bit in buffer descriptor at tx_head position
1189 * to set the end of TX queue
1190 */
1191 i = tx_head;
1192 entry = macb_tx_ring_wrap(i);
1193 ctrl = MACB_BIT(TX_USED);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001194 desc = &queue->tx_ring[entry];
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001195 desc->ctrl = ctrl;
1196
1197 do {
1198 i--;
1199 entry = macb_tx_ring_wrap(i);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001200 tx_skb = &queue->tx_skb[entry];
1201 desc = &queue->tx_ring[entry];
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001202
1203 ctrl = (u32)tx_skb->size;
1204 if (eof) {
1205 ctrl |= MACB_BIT(TX_LAST);
1206 eof = 0;
1207 }
1208 if (unlikely(entry == (TX_RING_SIZE - 1)))
1209 ctrl |= MACB_BIT(TX_WRAP);
1210
1211 /* Set TX buffer descriptor */
1212 desc->addr = tx_skb->mapping;
1213 /* desc->addr must be visible to hardware before clearing
1214 * 'TX_USED' bit in desc->ctrl.
1215 */
1216 wmb();
1217 desc->ctrl = ctrl;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001218 } while (i != queue->tx_head);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001219
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001220 queue->tx_head = tx_head;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001221
1222 return count;
1223
1224dma_error:
1225 netdev_err(bp->dev, "TX DMA map failed\n");
1226
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001227 for (i = queue->tx_head; i != tx_head; i++) {
1228 tx_skb = macb_tx_skb(queue, i);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001229
1230 macb_tx_unmap(bp, tx_skb);
1231 }
1232
1233 return 0;
1234}
1235
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001236static int macb_start_xmit(struct sk_buff *skb, struct net_device *dev)
1237{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001238 u16 queue_index = skb_get_queue_mapping(skb);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001239 struct macb *bp = netdev_priv(dev);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001240 struct macb_queue *queue = &bp->queues[queue_index];
Dongdong Deng48719532009-08-23 19:49:07 -07001241 unsigned long flags;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001242 unsigned int count, nr_frags, frag_size, f;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001243
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001244#if defined(DEBUG) && defined(VERBOSE_DEBUG)
1245 netdev_vdbg(bp->dev,
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001246 "start_xmit: queue %hu len %u head %p data %p tail %p end %p\n",
1247 queue_index, skb->len, skb->head, skb->data,
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001248 skb_tail_pointer(skb), skb_end_pointer(skb));
1249 print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_OFFSET, 16, 1,
1250 skb->data, 16, true);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001251#endif
1252
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001253 /* Count how many TX buffer descriptors are needed to send this
1254 * socket buffer: skb fragments of jumbo frames may need to be
1255 * splitted into many buffer descriptors.
1256 */
1257 count = macb_count_tx_descriptors(bp, skb_headlen(skb));
1258 nr_frags = skb_shinfo(skb)->nr_frags;
1259 for (f = 0; f < nr_frags; f++) {
1260 frag_size = skb_frag_size(&skb_shinfo(skb)->frags[f]);
1261 count += macb_count_tx_descriptors(bp, frag_size);
1262 }
1263
Dongdong Deng48719532009-08-23 19:49:07 -07001264 spin_lock_irqsave(&bp->lock, flags);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001265
1266 /* This is a hard error, log it. */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001267 if (CIRC_SPACE(queue->tx_head, queue->tx_tail, TX_RING_SIZE) < count) {
1268 netif_stop_subqueue(dev, queue_index);
Dongdong Deng48719532009-08-23 19:49:07 -07001269 spin_unlock_irqrestore(&bp->lock, flags);
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001270 netdev_dbg(bp->dev, "tx_head = %u, tx_tail = %u\n",
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001271 queue->tx_head, queue->tx_tail);
Patrick McHardy5b548142009-06-12 06:22:29 +00001272 return NETDEV_TX_BUSY;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001273 }
1274
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001275 /* Map socket buffer for DMA transfer */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001276 if (!macb_tx_map(bp, queue, skb)) {
Eric W. Biedermanc88b5b62014-03-15 16:08:27 -07001277 dev_kfree_skb_any(skb);
Soren Brinkmann92030902014-03-04 08:46:39 -08001278 goto unlock;
1279 }
Havard Skinnemoen55054a12012-10-31 06:04:55 +00001280
Havard Skinnemoen03dbe052012-10-31 06:04:51 +00001281 /* Make newly initialized descriptor visible to hardware */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001282 wmb();
1283
Richard Cochrane0720922011-06-19 21:51:28 +00001284 skb_tx_timestamp(skb);
1285
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001286 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TSTART));
1287
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001288 if (CIRC_SPACE(queue->tx_head, queue->tx_tail, TX_RING_SIZE) < 1)
1289 netif_stop_subqueue(dev, queue_index);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001290
Soren Brinkmann92030902014-03-04 08:46:39 -08001291unlock:
Dongdong Deng48719532009-08-23 19:49:07 -07001292 spin_unlock_irqrestore(&bp->lock, flags);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001293
Patrick McHardy6ed10652009-06-23 06:03:08 +00001294 return NETDEV_TX_OK;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001295}
1296
Nicolas Ferre4df95132013-06-04 21:57:12 +00001297static void macb_init_rx_buffer_size(struct macb *bp, size_t size)
Nicolas Ferre1b447912013-06-04 21:57:11 +00001298{
1299 if (!macb_is_gem(bp)) {
1300 bp->rx_buffer_size = MACB_RX_BUFFER_SIZE;
1301 } else {
Nicolas Ferre4df95132013-06-04 21:57:12 +00001302 bp->rx_buffer_size = size;
Nicolas Ferre1b447912013-06-04 21:57:11 +00001303
Nicolas Ferre1b447912013-06-04 21:57:11 +00001304 if (bp->rx_buffer_size % RX_BUFFER_MULTIPLE) {
Nicolas Ferre4df95132013-06-04 21:57:12 +00001305 netdev_dbg(bp->dev,
1306 "RX buffer must be multiple of %d bytes, expanding\n",
Nicolas Ferre1b447912013-06-04 21:57:11 +00001307 RX_BUFFER_MULTIPLE);
1308 bp->rx_buffer_size =
Nicolas Ferre4df95132013-06-04 21:57:12 +00001309 roundup(bp->rx_buffer_size, RX_BUFFER_MULTIPLE);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001310 }
Nicolas Ferre1b447912013-06-04 21:57:11 +00001311 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00001312
1313 netdev_dbg(bp->dev, "mtu [%u] rx_buffer_size [%Zu]\n",
1314 bp->dev->mtu, bp->rx_buffer_size);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001315}
1316
Nicolas Ferre4df95132013-06-04 21:57:12 +00001317static void gem_free_rx_buffers(struct macb *bp)
1318{
1319 struct sk_buff *skb;
1320 struct macb_dma_desc *desc;
1321 dma_addr_t addr;
1322 int i;
1323
1324 if (!bp->rx_skbuff)
1325 return;
1326
1327 for (i = 0; i < RX_RING_SIZE; i++) {
1328 skb = bp->rx_skbuff[i];
1329
1330 if (skb == NULL)
1331 continue;
1332
1333 desc = &bp->rx_ring[i];
1334 addr = MACB_BF(RX_WADDR, MACB_BFEXT(RX_WADDR, desc->addr));
Soren Brinkmannccd6d0a2014-05-04 15:42:58 -07001335 dma_unmap_single(&bp->pdev->dev, addr, bp->rx_buffer_size,
Nicolas Ferre4df95132013-06-04 21:57:12 +00001336 DMA_FROM_DEVICE);
1337 dev_kfree_skb_any(skb);
1338 skb = NULL;
1339 }
1340
1341 kfree(bp->rx_skbuff);
1342 bp->rx_skbuff = NULL;
1343}
1344
1345static void macb_free_rx_buffers(struct macb *bp)
1346{
1347 if (bp->rx_buffers) {
1348 dma_free_coherent(&bp->pdev->dev,
1349 RX_RING_SIZE * bp->rx_buffer_size,
1350 bp->rx_buffers, bp->rx_buffers_dma);
1351 bp->rx_buffers = NULL;
1352 }
1353}
Nicolas Ferre1b447912013-06-04 21:57:11 +00001354
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001355static void macb_free_consistent(struct macb *bp)
1356{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001357 struct macb_queue *queue;
1358 unsigned int q;
1359
Nicolas Ferre4df95132013-06-04 21:57:12 +00001360 bp->macbgem_ops.mog_free_rx_buffers(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001361 if (bp->rx_ring) {
1362 dma_free_coherent(&bp->pdev->dev, RX_RING_BYTES,
1363 bp->rx_ring, bp->rx_ring_dma);
1364 bp->rx_ring = NULL;
1365 }
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001366
1367 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1368 kfree(queue->tx_skb);
1369 queue->tx_skb = NULL;
1370 if (queue->tx_ring) {
1371 dma_free_coherent(&bp->pdev->dev, TX_RING_BYTES,
1372 queue->tx_ring, queue->tx_ring_dma);
1373 queue->tx_ring = NULL;
1374 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001375 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00001376}
1377
1378static int gem_alloc_rx_buffers(struct macb *bp)
1379{
1380 int size;
1381
1382 size = RX_RING_SIZE * sizeof(struct sk_buff *);
1383 bp->rx_skbuff = kzalloc(size, GFP_KERNEL);
1384 if (!bp->rx_skbuff)
1385 return -ENOMEM;
1386 else
1387 netdev_dbg(bp->dev,
1388 "Allocated %d RX struct sk_buff entries at %p\n",
1389 RX_RING_SIZE, bp->rx_skbuff);
1390 return 0;
1391}
1392
1393static int macb_alloc_rx_buffers(struct macb *bp)
1394{
1395 int size;
1396
1397 size = RX_RING_SIZE * bp->rx_buffer_size;
1398 bp->rx_buffers = dma_alloc_coherent(&bp->pdev->dev, size,
1399 &bp->rx_buffers_dma, GFP_KERNEL);
1400 if (!bp->rx_buffers)
1401 return -ENOMEM;
1402 else
1403 netdev_dbg(bp->dev,
1404 "Allocated RX buffers of %d bytes at %08lx (mapped %p)\n",
1405 size, (unsigned long)bp->rx_buffers_dma, bp->rx_buffers);
1406 return 0;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001407}
1408
1409static int macb_alloc_consistent(struct macb *bp)
1410{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001411 struct macb_queue *queue;
1412 unsigned int q;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001413 int size;
1414
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001415 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1416 size = TX_RING_BYTES;
1417 queue->tx_ring = dma_alloc_coherent(&bp->pdev->dev, size,
1418 &queue->tx_ring_dma,
1419 GFP_KERNEL);
1420 if (!queue->tx_ring)
1421 goto out_err;
1422 netdev_dbg(bp->dev,
1423 "Allocated TX ring for queue %u of %d bytes at %08lx (mapped %p)\n",
1424 q, size, (unsigned long)queue->tx_ring_dma,
1425 queue->tx_ring);
1426
1427 size = TX_RING_SIZE * sizeof(struct macb_tx_skb);
1428 queue->tx_skb = kmalloc(size, GFP_KERNEL);
1429 if (!queue->tx_skb)
1430 goto out_err;
1431 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001432
1433 size = RX_RING_BYTES;
1434 bp->rx_ring = dma_alloc_coherent(&bp->pdev->dev, size,
1435 &bp->rx_ring_dma, GFP_KERNEL);
1436 if (!bp->rx_ring)
1437 goto out_err;
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001438 netdev_dbg(bp->dev,
1439 "Allocated RX ring of %d bytes at %08lx (mapped %p)\n",
1440 size, (unsigned long)bp->rx_ring_dma, bp->rx_ring);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001441
Nicolas Ferre4df95132013-06-04 21:57:12 +00001442 if (bp->macbgem_ops.mog_alloc_rx_buffers(bp))
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001443 goto out_err;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001444
1445 return 0;
1446
1447out_err:
1448 macb_free_consistent(bp);
1449 return -ENOMEM;
1450}
1451
Nicolas Ferre4df95132013-06-04 21:57:12 +00001452static void gem_init_rings(struct macb *bp)
1453{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001454 struct macb_queue *queue;
1455 unsigned int q;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001456 int i;
1457
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001458 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1459 for (i = 0; i < TX_RING_SIZE; i++) {
1460 queue->tx_ring[i].addr = 0;
1461 queue->tx_ring[i].ctrl = MACB_BIT(TX_USED);
1462 }
1463 queue->tx_ring[TX_RING_SIZE - 1].ctrl |= MACB_BIT(TX_WRAP);
1464 queue->tx_head = 0;
1465 queue->tx_tail = 0;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001466 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00001467
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001468 bp->rx_tail = 0;
1469 bp->rx_prepared_head = 0;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001470
1471 gem_rx_refill(bp);
1472}
1473
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001474static void macb_init_rings(struct macb *bp)
1475{
1476 int i;
1477 dma_addr_t addr;
1478
1479 addr = bp->rx_buffers_dma;
1480 for (i = 0; i < RX_RING_SIZE; i++) {
1481 bp->rx_ring[i].addr = addr;
1482 bp->rx_ring[i].ctrl = 0;
Nicolas Ferre1b447912013-06-04 21:57:11 +00001483 addr += bp->rx_buffer_size;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001484 }
1485 bp->rx_ring[RX_RING_SIZE - 1].addr |= MACB_BIT(RX_WRAP);
1486
1487 for (i = 0; i < TX_RING_SIZE; i++) {
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001488 bp->queues[0].tx_ring[i].addr = 0;
1489 bp->queues[0].tx_ring[i].ctrl = MACB_BIT(TX_USED);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001490 }
Ben Shelton21d35152015-04-22 17:28:54 -05001491 bp->queues[0].tx_head = 0;
1492 bp->queues[0].tx_tail = 0;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001493 bp->queues[0].tx_ring[TX_RING_SIZE - 1].ctrl |= MACB_BIT(TX_WRAP);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001494
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001495 bp->rx_tail = 0;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001496}
1497
1498static void macb_reset_hw(struct macb *bp)
1499{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001500 struct macb_queue *queue;
1501 unsigned int q;
1502
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001503 /*
1504 * Disable RX and TX (XXX: Should we halt the transmission
1505 * more gracefully?)
1506 */
1507 macb_writel(bp, NCR, 0);
1508
1509 /* Clear the stats registers (XXX: Update stats first?) */
1510 macb_writel(bp, NCR, MACB_BIT(CLRSTAT));
1511
1512 /* Clear all status flags */
Joachim Eastwood95ebcea2012-10-22 08:45:31 +00001513 macb_writel(bp, TSR, -1);
1514 macb_writel(bp, RSR, -1);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001515
1516 /* Disable all interrupts */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001517 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1518 queue_writel(queue, IDR, -1);
1519 queue_readl(queue, ISR);
1520 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001521}
1522
Jamie Iles70c9f3d2011-03-09 16:22:54 +00001523static u32 gem_mdc_clk_div(struct macb *bp)
1524{
1525 u32 config;
1526 unsigned long pclk_hz = clk_get_rate(bp->pclk);
1527
1528 if (pclk_hz <= 20000000)
1529 config = GEM_BF(CLK, GEM_CLK_DIV8);
1530 else if (pclk_hz <= 40000000)
1531 config = GEM_BF(CLK, GEM_CLK_DIV16);
1532 else if (pclk_hz <= 80000000)
1533 config = GEM_BF(CLK, GEM_CLK_DIV32);
1534 else if (pclk_hz <= 120000000)
1535 config = GEM_BF(CLK, GEM_CLK_DIV48);
1536 else if (pclk_hz <= 160000000)
1537 config = GEM_BF(CLK, GEM_CLK_DIV64);
1538 else
1539 config = GEM_BF(CLK, GEM_CLK_DIV96);
1540
1541 return config;
1542}
1543
1544static u32 macb_mdc_clk_div(struct macb *bp)
1545{
1546 u32 config;
1547 unsigned long pclk_hz;
1548
1549 if (macb_is_gem(bp))
1550 return gem_mdc_clk_div(bp);
1551
1552 pclk_hz = clk_get_rate(bp->pclk);
1553 if (pclk_hz <= 20000000)
1554 config = MACB_BF(CLK, MACB_CLK_DIV8);
1555 else if (pclk_hz <= 40000000)
1556 config = MACB_BF(CLK, MACB_CLK_DIV16);
1557 else if (pclk_hz <= 80000000)
1558 config = MACB_BF(CLK, MACB_CLK_DIV32);
1559 else
1560 config = MACB_BF(CLK, MACB_CLK_DIV64);
1561
1562 return config;
1563}
1564
Jamie Iles757a03c2011-03-09 16:29:59 +00001565/*
1566 * Get the DMA bus width field of the network configuration register that we
1567 * should program. We find the width from decoding the design configuration
1568 * register to find the maximum supported data bus width.
1569 */
1570static u32 macb_dbw(struct macb *bp)
1571{
1572 if (!macb_is_gem(bp))
1573 return 0;
1574
1575 switch (GEM_BFEXT(DBWDEF, gem_readl(bp, DCFG1))) {
1576 case 4:
1577 return GEM_BF(DBW, GEM_DBW128);
1578 case 2:
1579 return GEM_BF(DBW, GEM_DBW64);
1580 case 1:
1581 default:
1582 return GEM_BF(DBW, GEM_DBW32);
1583 }
1584}
1585
Jamie Iles0116da42011-03-14 17:38:30 +00001586/*
Nicolas Ferreb3e3bd712012-11-23 03:49:01 +00001587 * Configure the receive DMA engine
1588 * - use the correct receive buffer size
Nicolas Ferree1755872014-07-24 13:50:58 +02001589 * - set best burst length for DMA operations
Nicolas Ferreb3e3bd712012-11-23 03:49:01 +00001590 * (if not supported by FIFO, it will fallback to default)
1591 * - set both rx/tx packet buffers to full memory size
1592 * These are configurable parameters for GEM.
Jamie Iles0116da42011-03-14 17:38:30 +00001593 */
1594static void macb_configure_dma(struct macb *bp)
1595{
1596 u32 dmacfg;
Arun Chandran62f69242015-03-01 11:38:02 +05301597 u32 tmp, ncr;
Jamie Iles0116da42011-03-14 17:38:30 +00001598
1599 if (macb_is_gem(bp)) {
1600 dmacfg = gem_readl(bp, DMACFG) & ~GEM_BF(RXBS, -1L);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001601 dmacfg |= GEM_BF(RXBS, bp->rx_buffer_size / RX_BUFFER_MULTIPLE);
Nicolas Ferree1755872014-07-24 13:50:58 +02001602 if (bp->dma_burst_length)
1603 dmacfg = GEM_BFINS(FBLDO, bp->dma_burst_length, dmacfg);
Nicolas Ferreb3e3bd712012-11-23 03:49:01 +00001604 dmacfg |= GEM_BIT(TXPBMS) | GEM_BF(RXBMS, -1L);
Arun Chandrana50dad32015-02-18 16:59:35 +05301605 dmacfg &= ~GEM_BIT(ENDIA_PKT);
Arun Chandran62f69242015-03-01 11:38:02 +05301606
1607 /* Find the CPU endianness by using the loopback bit of net_ctrl
1608 * register. save it first. When the CPU is in big endian we
1609 * need to program swaped mode for management descriptor access.
1610 */
1611 ncr = macb_readl(bp, NCR);
1612 __raw_writel(MACB_BIT(LLB), bp->regs + MACB_NCR);
1613 tmp = __raw_readl(bp->regs + MACB_NCR);
1614
1615 if (tmp == MACB_BIT(LLB))
1616 dmacfg &= ~GEM_BIT(ENDIA_DESC);
1617 else
1618 dmacfg |= GEM_BIT(ENDIA_DESC); /* CPU in big endian */
1619
1620 /* Restore net_ctrl */
1621 macb_writel(bp, NCR, ncr);
1622
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02001623 if (bp->dev->features & NETIF_F_HW_CSUM)
1624 dmacfg |= GEM_BIT(TXCOEN);
1625 else
1626 dmacfg &= ~GEM_BIT(TXCOEN);
Nicolas Ferree1755872014-07-24 13:50:58 +02001627 netdev_dbg(bp->dev, "Cadence configure DMA with 0x%08x\n",
1628 dmacfg);
Jamie Iles0116da42011-03-14 17:38:30 +00001629 gem_writel(bp, DMACFG, dmacfg);
1630 }
1631}
1632
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001633static void macb_init_hw(struct macb *bp)
1634{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001635 struct macb_queue *queue;
1636 unsigned int q;
1637
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001638 u32 config;
1639
1640 macb_reset_hw(bp);
Joachim Eastwood314bccc2012-11-07 08:14:52 +00001641 macb_set_hwaddr(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001642
Jamie Iles70c9f3d2011-03-09 16:22:54 +00001643 config = macb_mdc_clk_div(bp);
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +00001644 config |= MACB_BF(RBOF, NET_IP_ALIGN); /* Make eth data aligned */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001645 config |= MACB_BIT(PAE); /* PAuse Enable */
1646 config |= MACB_BIT(DRFCS); /* Discard Rx FCS */
Dan Carpentera104a6b2015-05-12 21:15:24 +03001647 if (bp->caps & MACB_CAPS_JUMBO)
Harini Katakam98b5a0f42015-05-06 22:27:17 +05301648 config |= MACB_BIT(JFRAME); /* Enable jumbo frames */
1649 else
1650 config |= MACB_BIT(BIG); /* Receive oversized frames */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001651 if (bp->dev->flags & IFF_PROMISC)
1652 config |= MACB_BIT(CAF); /* Copy All Frames */
Cyrille Pitchen924ec532014-07-24 13:51:01 +02001653 else if (macb_is_gem(bp) && bp->dev->features & NETIF_F_RXCSUM)
1654 config |= GEM_BIT(RXCOEN);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001655 if (!(bp->dev->flags & IFF_BROADCAST))
1656 config |= MACB_BIT(NBC); /* No BroadCast */
Jamie Iles757a03c2011-03-09 16:29:59 +00001657 config |= macb_dbw(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001658 macb_writel(bp, NCFGR, config);
Dan Carpentera104a6b2015-05-12 21:15:24 +03001659 if ((bp->caps & MACB_CAPS_JUMBO) && bp->jumbo_max_len)
Harini Katakam98b5a0f42015-05-06 22:27:17 +05301660 gem_writel(bp, JML, bp->jumbo_max_len);
Vitalii Demianets26cdfb42012-11-02 07:09:24 +00001661 bp->speed = SPEED_10;
1662 bp->duplex = DUPLEX_HALF;
Harini Katakam98b5a0f42015-05-06 22:27:17 +05301663 bp->rx_frm_len_mask = MACB_RX_FRMLEN_MASK;
Dan Carpentera104a6b2015-05-12 21:15:24 +03001664 if (bp->caps & MACB_CAPS_JUMBO)
Harini Katakam98b5a0f42015-05-06 22:27:17 +05301665 bp->rx_frm_len_mask = MACB_RX_JFRMLEN_MASK;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001666
Jamie Iles0116da42011-03-14 17:38:30 +00001667 macb_configure_dma(bp);
1668
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001669 /* Initialize TX and RX buffers */
1670 macb_writel(bp, RBQP, bp->rx_ring_dma);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001671 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1672 queue_writel(queue, TBQP, queue->tx_ring_dma);
1673
1674 /* Enable interrupts */
1675 queue_writel(queue, IER,
1676 MACB_RX_INT_FLAGS |
1677 MACB_TX_INT_FLAGS |
1678 MACB_BIT(HRESP));
1679 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001680
1681 /* Enable TX and RX */
frederic RODO6c36a702007-07-12 19:07:24 +02001682 macb_writel(bp, NCR, MACB_BIT(RE) | MACB_BIT(TE) | MACB_BIT(MPE));
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001683}
1684
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001685/*
1686 * The hash address register is 64 bits long and takes up two
1687 * locations in the memory map. The least significant bits are stored
1688 * in EMAC_HSL and the most significant bits in EMAC_HSH.
1689 *
1690 * The unicast hash enable and the multicast hash enable bits in the
1691 * network configuration register enable the reception of hash matched
1692 * frames. The destination address is reduced to a 6 bit index into
1693 * the 64 bit hash register using the following hash function. The
1694 * hash function is an exclusive or of every sixth bit of the
1695 * destination address.
1696 *
1697 * hi[5] = da[5] ^ da[11] ^ da[17] ^ da[23] ^ da[29] ^ da[35] ^ da[41] ^ da[47]
1698 * hi[4] = da[4] ^ da[10] ^ da[16] ^ da[22] ^ da[28] ^ da[34] ^ da[40] ^ da[46]
1699 * hi[3] = da[3] ^ da[09] ^ da[15] ^ da[21] ^ da[27] ^ da[33] ^ da[39] ^ da[45]
1700 * hi[2] = da[2] ^ da[08] ^ da[14] ^ da[20] ^ da[26] ^ da[32] ^ da[38] ^ da[44]
1701 * hi[1] = da[1] ^ da[07] ^ da[13] ^ da[19] ^ da[25] ^ da[31] ^ da[37] ^ da[43]
1702 * hi[0] = da[0] ^ da[06] ^ da[12] ^ da[18] ^ da[24] ^ da[30] ^ da[36] ^ da[42]
1703 *
1704 * da[0] represents the least significant bit of the first byte
1705 * received, that is, the multicast/unicast indicator, and da[47]
1706 * represents the most significant bit of the last byte received. If
1707 * the hash index, hi[n], points to a bit that is set in the hash
1708 * register then the frame will be matched according to whether the
1709 * frame is multicast or unicast. A multicast match will be signalled
1710 * if the multicast hash enable bit is set, da[0] is 1 and the hash
1711 * index points to a bit set in the hash register. A unicast match
1712 * will be signalled if the unicast hash enable bit is set, da[0] is 0
1713 * and the hash index points to a bit set in the hash register. To
1714 * receive all multicast frames, the hash register should be set with
1715 * all ones and the multicast hash enable bit should be set in the
1716 * network configuration register.
1717 */
1718
1719static inline int hash_bit_value(int bitnr, __u8 *addr)
1720{
1721 if (addr[bitnr / 8] & (1 << (bitnr % 8)))
1722 return 1;
1723 return 0;
1724}
1725
1726/*
1727 * Return the hash index value for the specified address.
1728 */
1729static int hash_get_index(__u8 *addr)
1730{
1731 int i, j, bitval;
1732 int hash_index = 0;
1733
1734 for (j = 0; j < 6; j++) {
1735 for (i = 0, bitval = 0; i < 8; i++)
Xander Huff2fa45e22015-01-15 15:55:19 -06001736 bitval ^= hash_bit_value(i * 6 + j, addr);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001737
1738 hash_index |= (bitval << j);
1739 }
1740
1741 return hash_index;
1742}
1743
1744/*
1745 * Add multicast addresses to the internal multicast-hash table.
1746 */
1747static void macb_sethashtable(struct net_device *dev)
1748{
Jiri Pirko22bedad32010-04-01 21:22:57 +00001749 struct netdev_hw_addr *ha;
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001750 unsigned long mc_filter[2];
Jiri Pirkof9dcbcc2010-02-23 09:19:49 +00001751 unsigned int bitnr;
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001752 struct macb *bp = netdev_priv(dev);
1753
1754 mc_filter[0] = mc_filter[1] = 0;
1755
Jiri Pirko22bedad32010-04-01 21:22:57 +00001756 netdev_for_each_mc_addr(ha, dev) {
1757 bitnr = hash_get_index(ha->addr);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001758 mc_filter[bitnr >> 5] |= 1 << (bitnr & 31);
1759 }
1760
Jamie Ilesf75ba502011-11-08 10:12:32 +00001761 macb_or_gem_writel(bp, HRB, mc_filter[0]);
1762 macb_or_gem_writel(bp, HRT, mc_filter[1]);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001763}
1764
1765/*
1766 * Enable/Disable promiscuous and multicast modes.
1767 */
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01001768static void macb_set_rx_mode(struct net_device *dev)
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001769{
1770 unsigned long cfg;
1771 struct macb *bp = netdev_priv(dev);
1772
1773 cfg = macb_readl(bp, NCFGR);
1774
Cyrille Pitchen924ec532014-07-24 13:51:01 +02001775 if (dev->flags & IFF_PROMISC) {
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001776 /* Enable promiscuous mode */
1777 cfg |= MACB_BIT(CAF);
Cyrille Pitchen924ec532014-07-24 13:51:01 +02001778
1779 /* Disable RX checksum offload */
1780 if (macb_is_gem(bp))
1781 cfg &= ~GEM_BIT(RXCOEN);
1782 } else {
1783 /* Disable promiscuous mode */
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001784 cfg &= ~MACB_BIT(CAF);
1785
Cyrille Pitchen924ec532014-07-24 13:51:01 +02001786 /* Enable RX checksum offload only if requested */
1787 if (macb_is_gem(bp) && dev->features & NETIF_F_RXCSUM)
1788 cfg |= GEM_BIT(RXCOEN);
1789 }
1790
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001791 if (dev->flags & IFF_ALLMULTI) {
1792 /* Enable all multicast mode */
Jamie Ilesf75ba502011-11-08 10:12:32 +00001793 macb_or_gem_writel(bp, HRB, -1);
1794 macb_or_gem_writel(bp, HRT, -1);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001795 cfg |= MACB_BIT(NCFGR_MTI);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001796 } else if (!netdev_mc_empty(dev)) {
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001797 /* Enable specific multicasts */
1798 macb_sethashtable(dev);
1799 cfg |= MACB_BIT(NCFGR_MTI);
1800 } else if (dev->flags & (~IFF_ALLMULTI)) {
1801 /* Disable all multicast mode */
Jamie Ilesf75ba502011-11-08 10:12:32 +00001802 macb_or_gem_writel(bp, HRB, 0);
1803 macb_or_gem_writel(bp, HRT, 0);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001804 cfg &= ~MACB_BIT(NCFGR_MTI);
1805 }
1806
1807 macb_writel(bp, NCFGR, cfg);
1808}
1809
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001810static int macb_open(struct net_device *dev)
1811{
1812 struct macb *bp = netdev_priv(dev);
Nicolas Ferre4df95132013-06-04 21:57:12 +00001813 size_t bufsz = dev->mtu + ETH_HLEN + ETH_FCS_LEN + NET_IP_ALIGN;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001814 int err;
1815
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001816 netdev_dbg(bp->dev, "open\n");
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001817
Nicolas Ferre03fc4722012-07-03 23:14:13 +00001818 /* carrier starts down */
1819 netif_carrier_off(dev);
1820
frederic RODO6c36a702007-07-12 19:07:24 +02001821 /* if the phy is not yet register, retry later*/
1822 if (!bp->phy_dev)
1823 return -EAGAIN;
1824
Nicolas Ferre1b447912013-06-04 21:57:11 +00001825 /* RX buffers initialization */
Nicolas Ferre4df95132013-06-04 21:57:12 +00001826 macb_init_rx_buffer_size(bp, bufsz);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001827
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001828 err = macb_alloc_consistent(bp);
1829 if (err) {
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001830 netdev_err(dev, "Unable to allocate DMA memory (error %d)\n",
1831 err);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001832 return err;
1833 }
1834
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001835 napi_enable(&bp->napi);
1836
Nicolas Ferre4df95132013-06-04 21:57:12 +00001837 bp->macbgem_ops.mog_init_rings(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001838 macb_init_hw(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001839
frederic RODO6c36a702007-07-12 19:07:24 +02001840 /* schedule a link state check */
1841 phy_start(bp->phy_dev);
1842
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001843 netif_tx_start_all_queues(dev);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001844
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001845 return 0;
1846}
1847
1848static int macb_close(struct net_device *dev)
1849{
1850 struct macb *bp = netdev_priv(dev);
1851 unsigned long flags;
1852
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001853 netif_tx_stop_all_queues(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001854 napi_disable(&bp->napi);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001855
frederic RODO6c36a702007-07-12 19:07:24 +02001856 if (bp->phy_dev)
1857 phy_stop(bp->phy_dev);
1858
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001859 spin_lock_irqsave(&bp->lock, flags);
1860 macb_reset_hw(bp);
1861 netif_carrier_off(dev);
1862 spin_unlock_irqrestore(&bp->lock, flags);
1863
1864 macb_free_consistent(bp);
1865
1866 return 0;
1867}
1868
Harini Katakama5898ea2015-05-06 22:27:18 +05301869static int macb_change_mtu(struct net_device *dev, int new_mtu)
1870{
1871 struct macb *bp = netdev_priv(dev);
1872 u32 max_mtu;
1873
1874 if (netif_running(dev))
1875 return -EBUSY;
1876
1877 max_mtu = ETH_DATA_LEN;
Dan Carpentera104a6b2015-05-12 21:15:24 +03001878 if (bp->caps & MACB_CAPS_JUMBO)
Harini Katakama5898ea2015-05-06 22:27:18 +05301879 max_mtu = gem_readl(bp, JML) - ETH_HLEN - ETH_FCS_LEN;
1880
1881 if ((new_mtu > max_mtu) || (new_mtu < GEM_MTU_MIN_SIZE))
1882 return -EINVAL;
1883
1884 dev->mtu = new_mtu;
1885
1886 return 0;
1887}
1888
Jamie Ilesa494ed82011-03-09 16:26:35 +00001889static void gem_update_stats(struct macb *bp)
1890{
Xander Huff3ff13f12015-01-13 16:15:51 -06001891 int i;
Jamie Ilesa494ed82011-03-09 16:26:35 +00001892 u32 *p = &bp->hw_stats.gem.tx_octets_31_0;
Jamie Ilesa494ed82011-03-09 16:26:35 +00001893
Xander Huff3ff13f12015-01-13 16:15:51 -06001894 for (i = 0; i < GEM_STATS_LEN; ++i, ++p) {
1895 u32 offset = gem_statistics[i].offset;
Arun Chandrana50dad32015-02-18 16:59:35 +05301896 u64 val = readl_relaxed(bp->regs + offset);
Xander Huff3ff13f12015-01-13 16:15:51 -06001897
1898 bp->ethtool_stats[i] += val;
1899 *p += val;
1900
1901 if (offset == GEM_OCTTXL || offset == GEM_OCTRXL) {
1902 /* Add GEM_OCTTXH, GEM_OCTRXH */
Arun Chandrana50dad32015-02-18 16:59:35 +05301903 val = readl_relaxed(bp->regs + offset + 4);
Xander Huff2fa45e22015-01-15 15:55:19 -06001904 bp->ethtool_stats[i] += ((u64)val) << 32;
Xander Huff3ff13f12015-01-13 16:15:51 -06001905 *(++p) += val;
1906 }
1907 }
Jamie Ilesa494ed82011-03-09 16:26:35 +00001908}
1909
1910static struct net_device_stats *gem_get_stats(struct macb *bp)
1911{
1912 struct gem_stats *hwstat = &bp->hw_stats.gem;
1913 struct net_device_stats *nstat = &bp->stats;
1914
1915 gem_update_stats(bp);
1916
1917 nstat->rx_errors = (hwstat->rx_frame_check_sequence_errors +
1918 hwstat->rx_alignment_errors +
1919 hwstat->rx_resource_errors +
1920 hwstat->rx_overruns +
1921 hwstat->rx_oversize_frames +
1922 hwstat->rx_jabbers +
1923 hwstat->rx_undersized_frames +
1924 hwstat->rx_length_field_frame_errors);
1925 nstat->tx_errors = (hwstat->tx_late_collisions +
1926 hwstat->tx_excessive_collisions +
1927 hwstat->tx_underrun +
1928 hwstat->tx_carrier_sense_errors);
1929 nstat->multicast = hwstat->rx_multicast_frames;
1930 nstat->collisions = (hwstat->tx_single_collision_frames +
1931 hwstat->tx_multiple_collision_frames +
1932 hwstat->tx_excessive_collisions);
1933 nstat->rx_length_errors = (hwstat->rx_oversize_frames +
1934 hwstat->rx_jabbers +
1935 hwstat->rx_undersized_frames +
1936 hwstat->rx_length_field_frame_errors);
1937 nstat->rx_over_errors = hwstat->rx_resource_errors;
1938 nstat->rx_crc_errors = hwstat->rx_frame_check_sequence_errors;
1939 nstat->rx_frame_errors = hwstat->rx_alignment_errors;
1940 nstat->rx_fifo_errors = hwstat->rx_overruns;
1941 nstat->tx_aborted_errors = hwstat->tx_excessive_collisions;
1942 nstat->tx_carrier_errors = hwstat->tx_carrier_sense_errors;
1943 nstat->tx_fifo_errors = hwstat->tx_underrun;
1944
1945 return nstat;
1946}
1947
Xander Huff3ff13f12015-01-13 16:15:51 -06001948static void gem_get_ethtool_stats(struct net_device *dev,
1949 struct ethtool_stats *stats, u64 *data)
1950{
1951 struct macb *bp;
1952
1953 bp = netdev_priv(dev);
1954 gem_update_stats(bp);
Xander Huff2fa45e22015-01-15 15:55:19 -06001955 memcpy(data, &bp->ethtool_stats, sizeof(u64) * GEM_STATS_LEN);
Xander Huff3ff13f12015-01-13 16:15:51 -06001956}
1957
1958static int gem_get_sset_count(struct net_device *dev, int sset)
1959{
1960 switch (sset) {
1961 case ETH_SS_STATS:
1962 return GEM_STATS_LEN;
1963 default:
1964 return -EOPNOTSUPP;
1965 }
1966}
1967
1968static void gem_get_ethtool_strings(struct net_device *dev, u32 sset, u8 *p)
1969{
1970 int i;
1971
1972 switch (sset) {
1973 case ETH_SS_STATS:
1974 for (i = 0; i < GEM_STATS_LEN; i++, p += ETH_GSTRING_LEN)
1975 memcpy(p, gem_statistics[i].stat_string,
1976 ETH_GSTRING_LEN);
1977 break;
1978 }
1979}
1980
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01001981static struct net_device_stats *macb_get_stats(struct net_device *dev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001982{
1983 struct macb *bp = netdev_priv(dev);
1984 struct net_device_stats *nstat = &bp->stats;
Jamie Ilesa494ed82011-03-09 16:26:35 +00001985 struct macb_stats *hwstat = &bp->hw_stats.macb;
1986
1987 if (macb_is_gem(bp))
1988 return gem_get_stats(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001989
frederic RODO6c36a702007-07-12 19:07:24 +02001990 /* read stats from hardware */
1991 macb_update_stats(bp);
1992
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001993 /* Convert HW stats into netdevice stats */
1994 nstat->rx_errors = (hwstat->rx_fcs_errors +
1995 hwstat->rx_align_errors +
1996 hwstat->rx_resource_errors +
1997 hwstat->rx_overruns +
1998 hwstat->rx_oversize_pkts +
1999 hwstat->rx_jabbers +
2000 hwstat->rx_undersize_pkts +
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002001 hwstat->rx_length_mismatch);
2002 nstat->tx_errors = (hwstat->tx_late_cols +
2003 hwstat->tx_excessive_cols +
2004 hwstat->tx_underruns +
Wolfgang Steinwender716723c2015-04-10 11:42:56 +02002005 hwstat->tx_carrier_errors +
2006 hwstat->sqe_test_errors);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002007 nstat->collisions = (hwstat->tx_single_cols +
2008 hwstat->tx_multiple_cols +
2009 hwstat->tx_excessive_cols);
2010 nstat->rx_length_errors = (hwstat->rx_oversize_pkts +
2011 hwstat->rx_jabbers +
2012 hwstat->rx_undersize_pkts +
2013 hwstat->rx_length_mismatch);
Alexander Steinb19f7f72011-04-13 05:03:24 +00002014 nstat->rx_over_errors = hwstat->rx_resource_errors +
2015 hwstat->rx_overruns;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002016 nstat->rx_crc_errors = hwstat->rx_fcs_errors;
2017 nstat->rx_frame_errors = hwstat->rx_align_errors;
2018 nstat->rx_fifo_errors = hwstat->rx_overruns;
2019 /* XXX: What does "missed" mean? */
2020 nstat->tx_aborted_errors = hwstat->tx_excessive_cols;
2021 nstat->tx_carrier_errors = hwstat->tx_carrier_errors;
2022 nstat->tx_fifo_errors = hwstat->tx_underruns;
2023 /* Don't know about heartbeat or window errors... */
2024
2025 return nstat;
2026}
2027
2028static int macb_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2029{
2030 struct macb *bp = netdev_priv(dev);
frederic RODO6c36a702007-07-12 19:07:24 +02002031 struct phy_device *phydev = bp->phy_dev;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002032
frederic RODO6c36a702007-07-12 19:07:24 +02002033 if (!phydev)
2034 return -ENODEV;
2035
2036 return phy_ethtool_gset(phydev, cmd);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002037}
2038
2039static int macb_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2040{
2041 struct macb *bp = netdev_priv(dev);
frederic RODO6c36a702007-07-12 19:07:24 +02002042 struct phy_device *phydev = bp->phy_dev;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002043
frederic RODO6c36a702007-07-12 19:07:24 +02002044 if (!phydev)
2045 return -ENODEV;
2046
2047 return phy_ethtool_sset(phydev, cmd);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002048}
2049
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002050static int macb_get_regs_len(struct net_device *netdev)
2051{
2052 return MACB_GREGS_NBR * sizeof(u32);
2053}
2054
2055static void macb_get_regs(struct net_device *dev, struct ethtool_regs *regs,
2056 void *p)
2057{
2058 struct macb *bp = netdev_priv(dev);
2059 unsigned int tail, head;
2060 u32 *regs_buff = p;
2061
2062 regs->version = (macb_readl(bp, MID) & ((1 << MACB_REV_SIZE) - 1))
2063 | MACB_GREGS_VERSION;
2064
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002065 tail = macb_tx_ring_wrap(bp->queues[0].tx_tail);
2066 head = macb_tx_ring_wrap(bp->queues[0].tx_head);
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002067
2068 regs_buff[0] = macb_readl(bp, NCR);
2069 regs_buff[1] = macb_or_gem_readl(bp, NCFGR);
2070 regs_buff[2] = macb_readl(bp, NSR);
2071 regs_buff[3] = macb_readl(bp, TSR);
2072 regs_buff[4] = macb_readl(bp, RBQP);
2073 regs_buff[5] = macb_readl(bp, TBQP);
2074 regs_buff[6] = macb_readl(bp, RSR);
2075 regs_buff[7] = macb_readl(bp, IMR);
2076
2077 regs_buff[8] = tail;
2078 regs_buff[9] = head;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002079 regs_buff[10] = macb_tx_dma(&bp->queues[0], tail);
2080 regs_buff[11] = macb_tx_dma(&bp->queues[0], head);
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002081
Nicolas Ferre7c399942015-03-31 15:02:04 +02002082 regs_buff[12] = macb_or_gem_readl(bp, USRIO);
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002083 if (macb_is_gem(bp)) {
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002084 regs_buff[13] = gem_readl(bp, DMACFG);
2085 }
2086}
2087
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002088static const struct ethtool_ops macb_ethtool_ops = {
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002089 .get_settings = macb_get_settings,
2090 .set_settings = macb_set_settings,
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002091 .get_regs_len = macb_get_regs_len,
2092 .get_regs = macb_get_regs,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002093 .get_link = ethtool_op_get_link,
Richard Cochran17f393e2012-04-03 22:59:31 +00002094 .get_ts_info = ethtool_op_get_ts_info,
Xander Huff8cd5a562015-01-15 15:55:20 -06002095};
Xander Huff8cd5a562015-01-15 15:55:20 -06002096
Lad, Prabhakar8093b1c2015-02-05 16:21:07 +00002097static const struct ethtool_ops gem_ethtool_ops = {
Xander Huff8cd5a562015-01-15 15:55:20 -06002098 .get_settings = macb_get_settings,
2099 .set_settings = macb_set_settings,
2100 .get_regs_len = macb_get_regs_len,
2101 .get_regs = macb_get_regs,
2102 .get_link = ethtool_op_get_link,
2103 .get_ts_info = ethtool_op_get_ts_info,
Xander Huff3ff13f12015-01-13 16:15:51 -06002104 .get_ethtool_stats = gem_get_ethtool_stats,
2105 .get_strings = gem_get_ethtool_strings,
2106 .get_sset_count = gem_get_sset_count,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002107};
2108
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002109static int macb_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002110{
2111 struct macb *bp = netdev_priv(dev);
frederic RODO6c36a702007-07-12 19:07:24 +02002112 struct phy_device *phydev = bp->phy_dev;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002113
2114 if (!netif_running(dev))
2115 return -EINVAL;
2116
frederic RODO6c36a702007-07-12 19:07:24 +02002117 if (!phydev)
2118 return -ENODEV;
2119
Richard Cochran28b04112010-07-17 08:48:55 +00002120 return phy_mii_ioctl(phydev, rq, cmd);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002121}
2122
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02002123static int macb_set_features(struct net_device *netdev,
2124 netdev_features_t features)
2125{
2126 struct macb *bp = netdev_priv(netdev);
2127 netdev_features_t changed = features ^ netdev->features;
2128
2129 /* TX checksum offload */
2130 if ((changed & NETIF_F_HW_CSUM) && macb_is_gem(bp)) {
2131 u32 dmacfg;
2132
2133 dmacfg = gem_readl(bp, DMACFG);
2134 if (features & NETIF_F_HW_CSUM)
2135 dmacfg |= GEM_BIT(TXCOEN);
2136 else
2137 dmacfg &= ~GEM_BIT(TXCOEN);
2138 gem_writel(bp, DMACFG, dmacfg);
2139 }
2140
Cyrille Pitchen924ec532014-07-24 13:51:01 +02002141 /* RX checksum offload */
2142 if ((changed & NETIF_F_RXCSUM) && macb_is_gem(bp)) {
2143 u32 netcfg;
2144
2145 netcfg = gem_readl(bp, NCFGR);
2146 if (features & NETIF_F_RXCSUM &&
2147 !(netdev->flags & IFF_PROMISC))
2148 netcfg |= GEM_BIT(RXCOEN);
2149 else
2150 netcfg &= ~GEM_BIT(RXCOEN);
2151 gem_writel(bp, NCFGR, netcfg);
2152 }
2153
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02002154 return 0;
2155}
2156
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00002157static const struct net_device_ops macb_netdev_ops = {
2158 .ndo_open = macb_open,
2159 .ndo_stop = macb_close,
2160 .ndo_start_xmit = macb_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00002161 .ndo_set_rx_mode = macb_set_rx_mode,
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00002162 .ndo_get_stats = macb_get_stats,
2163 .ndo_do_ioctl = macb_ioctl,
2164 .ndo_validate_addr = eth_validate_addr,
Harini Katakama5898ea2015-05-06 22:27:18 +05302165 .ndo_change_mtu = macb_change_mtu,
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00002166 .ndo_set_mac_address = eth_mac_addr,
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07002167#ifdef CONFIG_NET_POLL_CONTROLLER
2168 .ndo_poll_controller = macb_poll_controller,
2169#endif
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02002170 .ndo_set_features = macb_set_features,
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00002171};
2172
Nicolas Ferree1755872014-07-24 13:50:58 +02002173/*
Nicolas Ferread783472015-03-31 15:02:02 +02002174 * Configure peripheral capabilities according to device tree
Nicolas Ferree1755872014-07-24 13:50:58 +02002175 * and integration options used
2176 */
Nicolas Ferref6970502015-03-31 15:02:01 +02002177static void macb_configure_caps(struct macb *bp, const struct macb_config *dt_conf)
Nicolas Ferree1755872014-07-24 13:50:58 +02002178{
2179 u32 dcfg;
Nicolas Ferree1755872014-07-24 13:50:58 +02002180
Nicolas Ferref6970502015-03-31 15:02:01 +02002181 if (dt_conf)
2182 bp->caps = dt_conf->caps;
2183
Nicolas Ferrefa693592015-03-31 15:02:06 +02002184 if (macb_is_gem_hw(bp->regs)) {
Nicolas Ferree1755872014-07-24 13:50:58 +02002185 bp->caps |= MACB_CAPS_MACB_IS_GEM;
2186
Nicolas Ferree1755872014-07-24 13:50:58 +02002187 dcfg = gem_readl(bp, DCFG1);
2188 if (GEM_BFEXT(IRQCOR, dcfg) == 0)
2189 bp->caps |= MACB_CAPS_ISR_CLEAR_ON_WRITE;
2190 dcfg = gem_readl(bp, DCFG2);
2191 if ((dcfg & (GEM_BIT(RX_PKT_BUFF) | GEM_BIT(TX_PKT_BUFF))) == 0)
2192 bp->caps |= MACB_CAPS_FIFO_MODE;
2193 }
2194
2195 netdev_dbg(bp->dev, "Cadence caps 0x%08x\n", bp->caps);
2196}
2197
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002198static void macb_probe_queues(void __iomem *mem,
2199 unsigned int *queue_mask,
2200 unsigned int *num_queues)
2201{
2202 unsigned int hw_q;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002203
2204 *queue_mask = 0x1;
2205 *num_queues = 1;
2206
Nicolas Ferreda120112015-03-31 15:02:00 +02002207 /* is it macb or gem ?
2208 *
2209 * We need to read directly from the hardware here because
2210 * we are early in the probe process and don't have the
2211 * MACB_CAPS_MACB_IS_GEM flag positioned
2212 */
Nicolas Ferrefa693592015-03-31 15:02:06 +02002213 if (!macb_is_gem_hw(mem))
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002214 return;
2215
2216 /* bit 0 is never set but queue 0 always exists */
Arun Chandrana50dad32015-02-18 16:59:35 +05302217 *queue_mask = readl_relaxed(mem + GEM_DCFG6) & 0xff;
2218
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002219 *queue_mask |= 0x1;
2220
2221 for (hw_q = 1; hw_q < MACB_MAX_QUEUES; ++hw_q)
2222 if (*queue_mask & (1 << hw_q))
2223 (*num_queues)++;
2224}
2225
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002226static int macb_clk_init(struct platform_device *pdev, struct clk **pclk,
2227 struct clk **hclk, struct clk **tx_clk)
2228{
2229 int err;
2230
2231 *pclk = devm_clk_get(&pdev->dev, "pclk");
2232 if (IS_ERR(*pclk)) {
2233 err = PTR_ERR(*pclk);
2234 dev_err(&pdev->dev, "failed to get macb_clk (%u)\n", err);
2235 return err;
2236 }
2237
2238 *hclk = devm_clk_get(&pdev->dev, "hclk");
2239 if (IS_ERR(*hclk)) {
2240 err = PTR_ERR(*hclk);
2241 dev_err(&pdev->dev, "failed to get hclk (%u)\n", err);
2242 return err;
2243 }
2244
2245 *tx_clk = devm_clk_get(&pdev->dev, "tx_clk");
2246 if (IS_ERR(*tx_clk))
2247 *tx_clk = NULL;
2248
2249 err = clk_prepare_enable(*pclk);
2250 if (err) {
2251 dev_err(&pdev->dev, "failed to enable pclk (%u)\n", err);
2252 return err;
2253 }
2254
2255 err = clk_prepare_enable(*hclk);
2256 if (err) {
2257 dev_err(&pdev->dev, "failed to enable hclk (%u)\n", err);
2258 goto err_disable_pclk;
2259 }
2260
2261 err = clk_prepare_enable(*tx_clk);
2262 if (err) {
2263 dev_err(&pdev->dev, "failed to enable tx_clk (%u)\n", err);
2264 goto err_disable_hclk;
2265 }
2266
2267 return 0;
2268
2269err_disable_hclk:
2270 clk_disable_unprepare(*hclk);
2271
2272err_disable_pclk:
2273 clk_disable_unprepare(*pclk);
2274
2275 return err;
2276}
2277
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002278static int macb_init(struct platform_device *pdev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002279{
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002280 struct net_device *dev = platform_get_drvdata(pdev);
Nicolas Ferrebfa09142015-03-31 15:01:59 +02002281 unsigned int hw_q, q;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002282 struct macb *bp = netdev_priv(dev);
2283 struct macb_queue *queue;
2284 int err;
2285 u32 val;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002286
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002287 /* set the queue register mapping once for all: queue0 has a special
2288 * register mapping but we don't want to test the queue index then
2289 * compute the corresponding register offset at run time.
2290 */
Cyrille Pitchencf250de2014-12-15 15:13:32 +01002291 for (hw_q = 0, q = 0; hw_q < MACB_MAX_QUEUES; ++hw_q) {
Nicolas Ferrebfa09142015-03-31 15:01:59 +02002292 if (!(bp->queue_mask & (1 << hw_q)))
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002293 continue;
Jamie Iles461845d2011-03-08 20:19:23 +00002294
Cyrille Pitchencf250de2014-12-15 15:13:32 +01002295 queue = &bp->queues[q];
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002296 queue->bp = bp;
2297 if (hw_q) {
2298 queue->ISR = GEM_ISR(hw_q - 1);
2299 queue->IER = GEM_IER(hw_q - 1);
2300 queue->IDR = GEM_IDR(hw_q - 1);
2301 queue->IMR = GEM_IMR(hw_q - 1);
2302 queue->TBQP = GEM_TBQP(hw_q - 1);
2303 } else {
2304 /* queue0 uses legacy registers */
2305 queue->ISR = MACB_ISR;
2306 queue->IER = MACB_IER;
2307 queue->IDR = MACB_IDR;
2308 queue->IMR = MACB_IMR;
2309 queue->TBQP = MACB_TBQP;
Soren Brinkmanne1824df2013-12-10 16:07:23 -08002310 }
Soren Brinkmanne1824df2013-12-10 16:07:23 -08002311
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002312 /* get irq: here we use the linux queue index, not the hardware
2313 * queue index. the queue irq definitions in the device tree
2314 * must remove the optional gaps that could exist in the
2315 * hardware queue mask.
2316 */
Cyrille Pitchencf250de2014-12-15 15:13:32 +01002317 queue->irq = platform_get_irq(pdev, q);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002318 err = devm_request_irq(&pdev->dev, queue->irq, macb_interrupt,
Punnaiah Choudary Kalluri20488232015-03-06 18:29:12 +01002319 IRQF_SHARED, dev->name, queue);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002320 if (err) {
2321 dev_err(&pdev->dev,
2322 "Unable to request IRQ %d (error %d)\n",
2323 queue->irq, err);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002324 return err;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002325 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002326
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002327 INIT_WORK(&queue->tx_error_task, macb_tx_error_task);
Cyrille Pitchencf250de2014-12-15 15:13:32 +01002328 q++;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002329 }
2330
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00002331 dev->netdev_ops = &macb_netdev_ops;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002332 netif_napi_add(dev, &bp->napi, macb_poll, 64);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002333
Nicolas Ferre4df95132013-06-04 21:57:12 +00002334 /* setup appropriated routines according to adapter type */
2335 if (macb_is_gem(bp)) {
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02002336 bp->max_tx_length = GEM_MAX_TX_LEN;
Nicolas Ferre4df95132013-06-04 21:57:12 +00002337 bp->macbgem_ops.mog_alloc_rx_buffers = gem_alloc_rx_buffers;
2338 bp->macbgem_ops.mog_free_rx_buffers = gem_free_rx_buffers;
2339 bp->macbgem_ops.mog_init_rings = gem_init_rings;
2340 bp->macbgem_ops.mog_rx = gem_rx;
Xander Huff8cd5a562015-01-15 15:55:20 -06002341 dev->ethtool_ops = &gem_ethtool_ops;
Nicolas Ferre4df95132013-06-04 21:57:12 +00002342 } else {
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02002343 bp->max_tx_length = MACB_MAX_TX_LEN;
Nicolas Ferre4df95132013-06-04 21:57:12 +00002344 bp->macbgem_ops.mog_alloc_rx_buffers = macb_alloc_rx_buffers;
2345 bp->macbgem_ops.mog_free_rx_buffers = macb_free_rx_buffers;
2346 bp->macbgem_ops.mog_init_rings = macb_init_rings;
2347 bp->macbgem_ops.mog_rx = macb_rx;
Xander Huff8cd5a562015-01-15 15:55:20 -06002348 dev->ethtool_ops = &macb_ethtool_ops;
Nicolas Ferre4df95132013-06-04 21:57:12 +00002349 }
2350
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02002351 /* Set features */
2352 dev->hw_features = NETIF_F_SG;
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02002353 /* Checksum offload is only available on gem with packet buffer */
2354 if (macb_is_gem(bp) && !(bp->caps & MACB_CAPS_FIFO_MODE))
Cyrille Pitchen924ec532014-07-24 13:51:01 +02002355 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02002356 if (bp->caps & MACB_CAPS_SG_DISABLED)
2357 dev->hw_features &= ~NETIF_F_SG;
2358 dev->features = dev->hw_features;
2359
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002360 val = 0;
2361 if (bp->phy_interface == PHY_INTERFACE_MODE_RGMII)
2362 val = GEM_BIT(RGMII);
2363 else if (bp->phy_interface == PHY_INTERFACE_MODE_RMII &&
2364 (bp->caps & MACB_CAPS_USRIO_DEFAULT_IS_MII))
2365 val = MACB_BIT(RMII);
2366 else if (!(bp->caps & MACB_CAPS_USRIO_DEFAULT_IS_MII))
2367 val = MACB_BIT(MII);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002368
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002369 if (bp->caps & MACB_CAPS_USRIO_HAS_CLKEN)
2370 val |= MACB_BIT(CLKEN);
2371
2372 macb_or_gem_writel(bp, USRIO, val);
2373
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002374 /* Set MII management clock divider */
2375 val = macb_mdc_clk_div(bp);
2376 val |= macb_dbw(bp);
2377 macb_writel(bp, NCFGR, val);
2378
2379 return 0;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002380}
2381
2382#if defined(CONFIG_OF)
2383/* 1518 rounded up */
2384#define AT91ETHER_MAX_RBUFF_SZ 0x600
2385/* max number of receive buffers */
2386#define AT91ETHER_MAX_RX_DESCR 9
2387
2388/* Initialize and start the Receiver and Transmit subsystems */
2389static int at91ether_start(struct net_device *dev)
2390{
2391 struct macb *lp = netdev_priv(dev);
2392 dma_addr_t addr;
2393 u32 ctl;
2394 int i;
2395
2396 lp->rx_ring = dma_alloc_coherent(&lp->pdev->dev,
2397 (AT91ETHER_MAX_RX_DESCR *
2398 sizeof(struct macb_dma_desc)),
2399 &lp->rx_ring_dma, GFP_KERNEL);
2400 if (!lp->rx_ring)
2401 return -ENOMEM;
2402
2403 lp->rx_buffers = dma_alloc_coherent(&lp->pdev->dev,
2404 AT91ETHER_MAX_RX_DESCR *
2405 AT91ETHER_MAX_RBUFF_SZ,
2406 &lp->rx_buffers_dma, GFP_KERNEL);
2407 if (!lp->rx_buffers) {
2408 dma_free_coherent(&lp->pdev->dev,
2409 AT91ETHER_MAX_RX_DESCR *
2410 sizeof(struct macb_dma_desc),
2411 lp->rx_ring, lp->rx_ring_dma);
2412 lp->rx_ring = NULL;
2413 return -ENOMEM;
2414 }
2415
2416 addr = lp->rx_buffers_dma;
2417 for (i = 0; i < AT91ETHER_MAX_RX_DESCR; i++) {
2418 lp->rx_ring[i].addr = addr;
2419 lp->rx_ring[i].ctrl = 0;
2420 addr += AT91ETHER_MAX_RBUFF_SZ;
2421 }
2422
2423 /* Set the Wrap bit on the last descriptor */
2424 lp->rx_ring[AT91ETHER_MAX_RX_DESCR - 1].addr |= MACB_BIT(RX_WRAP);
2425
2426 /* Reset buffer index */
2427 lp->rx_tail = 0;
2428
2429 /* Program address of descriptor list in Rx Buffer Queue register */
2430 macb_writel(lp, RBQP, lp->rx_ring_dma);
2431
2432 /* Enable Receive and Transmit */
2433 ctl = macb_readl(lp, NCR);
2434 macb_writel(lp, NCR, ctl | MACB_BIT(RE) | MACB_BIT(TE));
2435
2436 return 0;
2437}
2438
2439/* Open the ethernet interface */
2440static int at91ether_open(struct net_device *dev)
2441{
2442 struct macb *lp = netdev_priv(dev);
2443 u32 ctl;
2444 int ret;
2445
2446 /* Clear internal statistics */
2447 ctl = macb_readl(lp, NCR);
2448 macb_writel(lp, NCR, ctl | MACB_BIT(CLRSTAT));
2449
2450 macb_set_hwaddr(lp);
2451
2452 ret = at91ether_start(dev);
2453 if (ret)
2454 return ret;
2455
2456 /* Enable MAC interrupts */
2457 macb_writel(lp, IER, MACB_BIT(RCOMP) |
2458 MACB_BIT(RXUBR) |
2459 MACB_BIT(ISR_TUND) |
2460 MACB_BIT(ISR_RLE) |
2461 MACB_BIT(TCOMP) |
2462 MACB_BIT(ISR_ROVR) |
2463 MACB_BIT(HRESP));
2464
2465 /* schedule a link state check */
2466 phy_start(lp->phy_dev);
2467
2468 netif_start_queue(dev);
2469
2470 return 0;
2471}
2472
2473/* Close the interface */
2474static int at91ether_close(struct net_device *dev)
2475{
2476 struct macb *lp = netdev_priv(dev);
2477 u32 ctl;
2478
2479 /* Disable Receiver and Transmitter */
2480 ctl = macb_readl(lp, NCR);
2481 macb_writel(lp, NCR, ctl & ~(MACB_BIT(TE) | MACB_BIT(RE)));
2482
2483 /* Disable MAC interrupts */
2484 macb_writel(lp, IDR, MACB_BIT(RCOMP) |
2485 MACB_BIT(RXUBR) |
2486 MACB_BIT(ISR_TUND) |
2487 MACB_BIT(ISR_RLE) |
2488 MACB_BIT(TCOMP) |
2489 MACB_BIT(ISR_ROVR) |
2490 MACB_BIT(HRESP));
2491
2492 netif_stop_queue(dev);
2493
2494 dma_free_coherent(&lp->pdev->dev,
2495 AT91ETHER_MAX_RX_DESCR *
2496 sizeof(struct macb_dma_desc),
2497 lp->rx_ring, lp->rx_ring_dma);
2498 lp->rx_ring = NULL;
2499
2500 dma_free_coherent(&lp->pdev->dev,
2501 AT91ETHER_MAX_RX_DESCR * AT91ETHER_MAX_RBUFF_SZ,
2502 lp->rx_buffers, lp->rx_buffers_dma);
2503 lp->rx_buffers = NULL;
2504
2505 return 0;
2506}
2507
2508/* Transmit packet */
2509static int at91ether_start_xmit(struct sk_buff *skb, struct net_device *dev)
2510{
2511 struct macb *lp = netdev_priv(dev);
2512
2513 if (macb_readl(lp, TSR) & MACB_BIT(RM9200_BNQ)) {
2514 netif_stop_queue(dev);
2515
2516 /* Store packet information (to free when Tx completed) */
2517 lp->skb = skb;
2518 lp->skb_length = skb->len;
2519 lp->skb_physaddr = dma_map_single(NULL, skb->data, skb->len,
2520 DMA_TO_DEVICE);
2521
2522 /* Set address of the data in the Transmit Address register */
2523 macb_writel(lp, TAR, lp->skb_physaddr);
2524 /* Set length of the packet in the Transmit Control register */
2525 macb_writel(lp, TCR, skb->len);
2526
2527 } else {
2528 netdev_err(dev, "%s called, but device is busy!\n", __func__);
2529 return NETDEV_TX_BUSY;
2530 }
2531
2532 return NETDEV_TX_OK;
2533}
2534
2535/* Extract received frame from buffer descriptors and sent to upper layers.
2536 * (Called from interrupt context)
2537 */
2538static void at91ether_rx(struct net_device *dev)
2539{
2540 struct macb *lp = netdev_priv(dev);
2541 unsigned char *p_recv;
2542 struct sk_buff *skb;
2543 unsigned int pktlen;
2544
2545 while (lp->rx_ring[lp->rx_tail].addr & MACB_BIT(RX_USED)) {
2546 p_recv = lp->rx_buffers + lp->rx_tail * AT91ETHER_MAX_RBUFF_SZ;
2547 pktlen = MACB_BF(RX_FRMLEN, lp->rx_ring[lp->rx_tail].ctrl);
2548 skb = netdev_alloc_skb(dev, pktlen + 2);
2549 if (skb) {
2550 skb_reserve(skb, 2);
2551 memcpy(skb_put(skb, pktlen), p_recv, pktlen);
2552
2553 skb->protocol = eth_type_trans(skb, dev);
2554 lp->stats.rx_packets++;
2555 lp->stats.rx_bytes += pktlen;
2556 netif_rx(skb);
2557 } else {
2558 lp->stats.rx_dropped++;
2559 }
2560
2561 if (lp->rx_ring[lp->rx_tail].ctrl & MACB_BIT(RX_MHASH_MATCH))
2562 lp->stats.multicast++;
2563
2564 /* reset ownership bit */
2565 lp->rx_ring[lp->rx_tail].addr &= ~MACB_BIT(RX_USED);
2566
2567 /* wrap after last buffer */
2568 if (lp->rx_tail == AT91ETHER_MAX_RX_DESCR - 1)
2569 lp->rx_tail = 0;
2570 else
2571 lp->rx_tail++;
2572 }
2573}
2574
2575/* MAC interrupt handler */
2576static irqreturn_t at91ether_interrupt(int irq, void *dev_id)
2577{
2578 struct net_device *dev = dev_id;
2579 struct macb *lp = netdev_priv(dev);
2580 u32 intstatus, ctl;
2581
2582 /* MAC Interrupt Status register indicates what interrupts are pending.
2583 * It is automatically cleared once read.
2584 */
2585 intstatus = macb_readl(lp, ISR);
2586
2587 /* Receive complete */
2588 if (intstatus & MACB_BIT(RCOMP))
2589 at91ether_rx(dev);
2590
2591 /* Transmit complete */
2592 if (intstatus & MACB_BIT(TCOMP)) {
2593 /* The TCOM bit is set even if the transmission failed */
2594 if (intstatus & (MACB_BIT(ISR_TUND) | MACB_BIT(ISR_RLE)))
2595 lp->stats.tx_errors++;
2596
2597 if (lp->skb) {
2598 dev_kfree_skb_irq(lp->skb);
2599 lp->skb = NULL;
2600 dma_unmap_single(NULL, lp->skb_physaddr,
2601 lp->skb_length, DMA_TO_DEVICE);
2602 lp->stats.tx_packets++;
2603 lp->stats.tx_bytes += lp->skb_length;
2604 }
2605 netif_wake_queue(dev);
2606 }
2607
2608 /* Work-around for EMAC Errata section 41.3.1 */
2609 if (intstatus & MACB_BIT(RXUBR)) {
2610 ctl = macb_readl(lp, NCR);
2611 macb_writel(lp, NCR, ctl & ~MACB_BIT(RE));
2612 macb_writel(lp, NCR, ctl | MACB_BIT(RE));
2613 }
2614
2615 if (intstatus & MACB_BIT(ISR_ROVR))
2616 netdev_err(dev, "ROVR error\n");
2617
2618 return IRQ_HANDLED;
2619}
2620
2621#ifdef CONFIG_NET_POLL_CONTROLLER
2622static void at91ether_poll_controller(struct net_device *dev)
2623{
2624 unsigned long flags;
2625
2626 local_irq_save(flags);
2627 at91ether_interrupt(dev->irq, dev);
2628 local_irq_restore(flags);
2629}
2630#endif
2631
2632static const struct net_device_ops at91ether_netdev_ops = {
2633 .ndo_open = at91ether_open,
2634 .ndo_stop = at91ether_close,
2635 .ndo_start_xmit = at91ether_start_xmit,
2636 .ndo_get_stats = macb_get_stats,
2637 .ndo_set_rx_mode = macb_set_rx_mode,
2638 .ndo_set_mac_address = eth_mac_addr,
2639 .ndo_do_ioctl = macb_ioctl,
2640 .ndo_validate_addr = eth_validate_addr,
2641 .ndo_change_mtu = eth_change_mtu,
2642#ifdef CONFIG_NET_POLL_CONTROLLER
2643 .ndo_poll_controller = at91ether_poll_controller,
2644#endif
2645};
2646
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002647static int at91ether_clk_init(struct platform_device *pdev, struct clk **pclk,
2648 struct clk **hclk, struct clk **tx_clk)
2649{
2650 int err;
2651
2652 *hclk = NULL;
2653 *tx_clk = NULL;
2654
2655 *pclk = devm_clk_get(&pdev->dev, "ether_clk");
2656 if (IS_ERR(*pclk))
2657 return PTR_ERR(*pclk);
2658
2659 err = clk_prepare_enable(*pclk);
2660 if (err) {
2661 dev_err(&pdev->dev, "failed to enable pclk (%u)\n", err);
2662 return err;
2663 }
2664
2665 return 0;
2666}
2667
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002668static int at91ether_init(struct platform_device *pdev)
2669{
2670 struct net_device *dev = platform_get_drvdata(pdev);
2671 struct macb *bp = netdev_priv(dev);
2672 int err;
2673 u32 reg;
2674
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002675 dev->netdev_ops = &at91ether_netdev_ops;
2676 dev->ethtool_ops = &macb_ethtool_ops;
2677
2678 err = devm_request_irq(&pdev->dev, dev->irq, at91ether_interrupt,
2679 0, dev->name, dev);
2680 if (err)
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002681 return err;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002682
2683 macb_writel(bp, NCR, 0);
2684
2685 reg = MACB_BF(CLK, MACB_CLK_DIV32) | MACB_BIT(BIG);
2686 if (bp->phy_interface == PHY_INTERFACE_MODE_RMII)
2687 reg |= MACB_BIT(RM9200_RMII);
2688
2689 macb_writel(bp, NCFGR, reg);
2690
2691 return 0;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002692}
2693
David S. Miller3cef5c52015-03-09 23:38:02 -04002694static const struct macb_config at91sam9260_config = {
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002695 .caps = MACB_CAPS_USRIO_HAS_CLKEN | MACB_CAPS_USRIO_DEFAULT_IS_MII,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002696 .clk_init = macb_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002697 .init = macb_init,
2698};
2699
David S. Miller3cef5c52015-03-09 23:38:02 -04002700static const struct macb_config pc302gem_config = {
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002701 .caps = MACB_CAPS_SG_DISABLED | MACB_CAPS_GIGABIT_MODE_AVAILABLE,
2702 .dma_burst_length = 16,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002703 .clk_init = macb_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002704 .init = macb_init,
2705};
2706
David S. Miller3cef5c52015-03-09 23:38:02 -04002707static const struct macb_config sama5d3_config = {
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002708 .caps = MACB_CAPS_SG_DISABLED | MACB_CAPS_GIGABIT_MODE_AVAILABLE,
2709 .dma_burst_length = 16,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002710 .clk_init = macb_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002711 .init = macb_init,
2712};
2713
David S. Miller3cef5c52015-03-09 23:38:02 -04002714static const struct macb_config sama5d4_config = {
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002715 .caps = 0,
2716 .dma_burst_length = 4,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002717 .clk_init = macb_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002718 .init = macb_init,
2719};
2720
David S. Miller3cef5c52015-03-09 23:38:02 -04002721static const struct macb_config emac_config = {
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002722 .clk_init = at91ether_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002723 .init = at91ether_init,
2724};
2725
Harini Katakam7b61f9c2015-05-06 22:27:16 +05302726static const struct macb_config zynqmp_config = {
Harini Katakam98b5a0f42015-05-06 22:27:17 +05302727 .caps = MACB_CAPS_SG_DISABLED | MACB_CAPS_GIGABIT_MODE_AVAILABLE |
2728 MACB_CAPS_JUMBO,
Harini Katakam7b61f9c2015-05-06 22:27:16 +05302729 .dma_burst_length = 16,
2730 .clk_init = macb_clk_init,
2731 .init = macb_init,
Harini Katakam98b5a0f42015-05-06 22:27:17 +05302732 .jumbo_max_len = 10240,
Harini Katakam7b61f9c2015-05-06 22:27:16 +05302733};
2734
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002735static const struct of_device_id macb_dt_ids[] = {
2736 { .compatible = "cdns,at32ap7000-macb" },
2737 { .compatible = "cdns,at91sam9260-macb", .data = &at91sam9260_config },
2738 { .compatible = "cdns,macb" },
2739 { .compatible = "cdns,pc302-gem", .data = &pc302gem_config },
2740 { .compatible = "cdns,gem", .data = &pc302gem_config },
2741 { .compatible = "atmel,sama5d3-gem", .data = &sama5d3_config },
2742 { .compatible = "atmel,sama5d4-gem", .data = &sama5d4_config },
2743 { .compatible = "cdns,at91rm9200-emac", .data = &emac_config },
2744 { .compatible = "cdns,emac", .data = &emac_config },
Harini Katakam7b61f9c2015-05-06 22:27:16 +05302745 { .compatible = "cdns,zynqmp-gem", .data = &zynqmp_config},
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002746 { /* sentinel */ }
2747};
2748MODULE_DEVICE_TABLE(of, macb_dt_ids);
2749#endif /* CONFIG_OF */
2750
2751static int macb_probe(struct platform_device *pdev)
2752{
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002753 int (*clk_init)(struct platform_device *, struct clk **,
2754 struct clk **, struct clk **)
2755 = macb_clk_init;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002756 int (*init)(struct platform_device *) = macb_init;
2757 struct device_node *np = pdev->dev.of_node;
2758 const struct macb_config *macb_config = NULL;
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002759 struct clk *pclk, *hclk, *tx_clk;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002760 unsigned int queue_mask, num_queues;
2761 struct macb_platform_data *pdata;
2762 struct phy_device *phydev;
2763 struct net_device *dev;
2764 struct resource *regs;
2765 void __iomem *mem;
2766 const char *mac;
2767 struct macb *bp;
2768 int err;
2769
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002770 if (np) {
2771 const struct of_device_id *match;
2772
2773 match = of_match_node(macb_dt_ids, np);
2774 if (match && match->data) {
2775 macb_config = match->data;
2776 clk_init = macb_config->clk_init;
2777 init = macb_config->init;
2778 }
2779 }
2780
2781 err = clk_init(pdev, &pclk, &hclk, &tx_clk);
2782 if (err)
2783 return err;
2784
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002785 regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2786 mem = devm_ioremap_resource(&pdev->dev, regs);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002787 if (IS_ERR(mem)) {
2788 err = PTR_ERR(mem);
2789 goto err_disable_clocks;
2790 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002791
2792 macb_probe_queues(mem, &queue_mask, &num_queues);
2793 dev = alloc_etherdev_mq(sizeof(*bp), num_queues);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002794 if (!dev) {
2795 err = -ENOMEM;
2796 goto err_disable_clocks;
2797 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002798
2799 dev->base_addr = regs->start;
2800
2801 SET_NETDEV_DEV(dev, &pdev->dev);
2802
2803 bp = netdev_priv(dev);
2804 bp->pdev = pdev;
2805 bp->dev = dev;
2806 bp->regs = mem;
2807 bp->num_queues = num_queues;
Nicolas Ferrebfa09142015-03-31 15:01:59 +02002808 bp->queue_mask = queue_mask;
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002809 if (macb_config)
2810 bp->dma_burst_length = macb_config->dma_burst_length;
2811 bp->pclk = pclk;
2812 bp->hclk = hclk;
2813 bp->tx_clk = tx_clk;
Harini Katakam98b5a0f42015-05-06 22:27:17 +05302814 if (macb_config->jumbo_max_len) {
2815 bp->jumbo_max_len = macb_config->jumbo_max_len;
2816 }
2817
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002818 spin_lock_init(&bp->lock);
2819
Nicolas Ferread783472015-03-31 15:02:02 +02002820 /* setup capabilities */
Nicolas Ferref6970502015-03-31 15:02:01 +02002821 macb_configure_caps(bp, macb_config);
2822
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002823 platform_set_drvdata(pdev, dev);
2824
2825 dev->irq = platform_get_irq(pdev, 0);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002826 if (dev->irq < 0) {
2827 err = dev->irq;
2828 goto err_disable_clocks;
2829 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002830
2831 mac = of_get_mac_address(np);
Guenter Roeck50907042013-04-02 09:35:09 +00002832 if (mac)
2833 memcpy(bp->dev->dev_addr, mac, ETH_ALEN);
2834 else
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +01002835 macb_get_hwaddr(bp);
frederic RODO6c36a702007-07-12 19:07:24 +02002836
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002837 err = of_get_phy_mode(np);
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +01002838 if (err < 0) {
Jingoo Hanc607a0d2013-08-30 14:12:21 +09002839 pdata = dev_get_platdata(&pdev->dev);
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +01002840 if (pdata && pdata->is_rmii)
2841 bp->phy_interface = PHY_INTERFACE_MODE_RMII;
2842 else
2843 bp->phy_interface = PHY_INTERFACE_MODE_MII;
2844 } else {
2845 bp->phy_interface = err;
2846 }
2847
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002848 /* IP specific init */
2849 err = init(pdev);
2850 if (err)
2851 goto err_out_free_netdev;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002852
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002853 err = register_netdev(dev);
2854 if (err) {
2855 dev_err(&pdev->dev, "Cannot register net device, aborting.\n");
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002856 goto err_out_unregister_netdev;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002857 }
2858
Nicolas Ferre72ca8202013-04-14 22:04:33 +00002859 err = macb_mii_init(bp);
2860 if (err)
frederic RODO6c36a702007-07-12 19:07:24 +02002861 goto err_out_unregister_netdev;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002862
Nicolas Ferre03fc4722012-07-03 23:14:13 +00002863 netif_carrier_off(dev);
2864
Bo Shen58798232014-09-13 01:57:49 +02002865 netdev_info(dev, "Cadence %s rev 0x%08x at 0x%08lx irq %d (%pM)\n",
2866 macb_is_gem(bp) ? "GEM" : "MACB", macb_readl(bp, MID),
2867 dev->base_addr, dev->irq, dev->dev_addr);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002868
frederic RODO6c36a702007-07-12 19:07:24 +02002869 phydev = bp->phy_dev;
Jamie Ilesc220f8c2011-03-08 20:27:08 +00002870 netdev_info(dev, "attached PHY driver [%s] (mii_bus:phy_addr=%s, irq=%d)\n",
2871 phydev->drv->name, dev_name(&phydev->dev), phydev->irq);
frederic RODO6c36a702007-07-12 19:07:24 +02002872
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002873 return 0;
2874
frederic RODO6c36a702007-07-12 19:07:24 +02002875err_out_unregister_netdev:
2876 unregister_netdev(dev);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002877
Cyrille Pitchencf250de2014-12-15 15:13:32 +01002878err_out_free_netdev:
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002879 free_netdev(dev);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002880
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002881err_disable_clocks:
2882 clk_disable_unprepare(tx_clk);
2883 clk_disable_unprepare(hclk);
2884 clk_disable_unprepare(pclk);
2885
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002886 return err;
2887}
2888
Nicolae Rosia9e86d7662015-01-22 17:31:05 +00002889static int macb_remove(struct platform_device *pdev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002890{
2891 struct net_device *dev;
2892 struct macb *bp;
2893
2894 dev = platform_get_drvdata(pdev);
2895
2896 if (dev) {
2897 bp = netdev_priv(dev);
Atsushi Nemoto84b79012008-04-10 23:30:07 +09002898 if (bp->phy_dev)
2899 phy_disconnect(bp->phy_dev);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07002900 mdiobus_unregister(bp->mii_bus);
2901 kfree(bp->mii_bus->irq);
2902 mdiobus_free(bp->mii_bus);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002903 unregister_netdev(dev);
Cyrille Pitchen93b31f42015-03-07 07:23:31 +01002904 clk_disable_unprepare(bp->tx_clk);
Steffen Trumtrarace58012013-03-27 23:07:07 +00002905 clk_disable_unprepare(bp->hclk);
Steffen Trumtrarace58012013-03-27 23:07:07 +00002906 clk_disable_unprepare(bp->pclk);
Cyrille Pitchene965be72014-12-15 15:13:31 +01002907 free_netdev(dev);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002908 }
2909
2910 return 0;
2911}
2912
Michal Simekd23823d2015-01-23 09:36:03 +01002913static int __maybe_unused macb_suspend(struct device *dev)
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01002914{
Soren Brinkmann0dfc3e12013-12-10 16:07:19 -08002915 struct platform_device *pdev = to_platform_device(dev);
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01002916 struct net_device *netdev = platform_get_drvdata(pdev);
2917 struct macb *bp = netdev_priv(netdev);
2918
Nicolas Ferre03fc4722012-07-03 23:14:13 +00002919 netif_carrier_off(netdev);
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01002920 netif_device_detach(netdev);
2921
Cyrille Pitchen93b31f42015-03-07 07:23:31 +01002922 clk_disable_unprepare(bp->tx_clk);
Steffen Trumtrarace58012013-03-27 23:07:07 +00002923 clk_disable_unprepare(bp->hclk);
2924 clk_disable_unprepare(bp->pclk);
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01002925
2926 return 0;
2927}
2928
Michal Simekd23823d2015-01-23 09:36:03 +01002929static int __maybe_unused macb_resume(struct device *dev)
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01002930{
Soren Brinkmann0dfc3e12013-12-10 16:07:19 -08002931 struct platform_device *pdev = to_platform_device(dev);
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01002932 struct net_device *netdev = platform_get_drvdata(pdev);
2933 struct macb *bp = netdev_priv(netdev);
2934
Steffen Trumtrarace58012013-03-27 23:07:07 +00002935 clk_prepare_enable(bp->pclk);
2936 clk_prepare_enable(bp->hclk);
Cyrille Pitchen93b31f42015-03-07 07:23:31 +01002937 clk_prepare_enable(bp->tx_clk);
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01002938
2939 netif_device_attach(netdev);
2940
2941 return 0;
2942}
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01002943
Soren Brinkmann0dfc3e12013-12-10 16:07:19 -08002944static SIMPLE_DEV_PM_OPS(macb_pm_ops, macb_suspend, macb_resume);
2945
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002946static struct platform_driver macb_driver = {
Nicolae Rosia9e86d7662015-01-22 17:31:05 +00002947 .probe = macb_probe,
2948 .remove = macb_remove,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002949 .driver = {
2950 .name = "macb",
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +01002951 .of_match_table = of_match_ptr(macb_dt_ids),
Soren Brinkmann0dfc3e12013-12-10 16:07:19 -08002952 .pm = &macb_pm_ops,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002953 },
2954};
2955
Nicolae Rosia9e86d7662015-01-22 17:31:05 +00002956module_platform_driver(macb_driver);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002957
2958MODULE_LICENSE("GPL");
Jamie Ilesf75ba502011-11-08 10:12:32 +00002959MODULE_DESCRIPTION("Cadence MACB/GEM Ethernet driver");
Jean Delvaree05503e2011-05-18 16:49:24 +02002960MODULE_AUTHOR("Haavard Skinnemoen (Atmel)");
Kay Sievers72abb462008-04-18 13:50:44 -07002961MODULE_ALIAS("platform:macb");