blob: a63551d0a18a4b63a5ea385a46fabef39b0d36a8 [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 Eastwood2dbfdbb2012-11-11 13:56:27 +000021#include <linux/gpio.h>
Gregory CLEMENT270c4992015-12-17 10:51:04 +010022#include <linux/gpio/consumer.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000023#include <linux/interrupt.h>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010024#include <linux/netdevice.h>
25#include <linux/etherdevice.h>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010026#include <linux/dma-mapping.h>
Jamie Iles84e0cdb2011-03-08 20:17:06 +000027#include <linux/platform_data/macb.h>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010028#include <linux/platform_device.h>
frederic RODO6c36a702007-07-12 19:07:24 +020029#include <linux/phy.h>
Olof Johanssonb17471f2011-12-20 13:13:07 -080030#include <linux/of.h>
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +010031#include <linux/of_device.h>
Gregory CLEMENT270c4992015-12-17 10:51:04 +010032#include <linux/of_gpio.h>
Boris BREZILLON148cbb52013-08-22 17:57:28 +020033#include <linux/of_mdio.h>
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +010034#include <linux/of_net.h>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010035
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010036#include "macb.h"
37
Nicolas Ferre1b447912013-06-04 21:57:11 +000038#define MACB_RX_BUFFER_SIZE 128
Nicolas Ferre1b447912013-06-04 21:57:11 +000039#define RX_BUFFER_MULTIPLE 64 /* bytes */
Havard Skinnemoen55054a12012-10-31 06:04:55 +000040#define RX_RING_SIZE 512 /* must be power of 2 */
41#define RX_RING_BYTES (sizeof(struct macb_dma_desc) * RX_RING_SIZE)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010042
Havard Skinnemoen55054a12012-10-31 06:04:55 +000043#define TX_RING_SIZE 128 /* must be power of 2 */
44#define TX_RING_BYTES (sizeof(struct macb_dma_desc) * TX_RING_SIZE)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010045
Nicolas Ferre909a8582012-11-19 06:00:21 +000046/* level of occupied TX descriptors under which we wake up TX process */
47#define MACB_TX_WAKEUP_THRESH (3 * TX_RING_SIZE / 4)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010048
49#define MACB_RX_INT_FLAGS (MACB_BIT(RCOMP) | MACB_BIT(RXUBR) \
50 | MACB_BIT(ISR_ROVR))
Nicolas Ferree86cd532012-10-31 06:04:57 +000051#define MACB_TX_ERR_FLAGS (MACB_BIT(ISR_TUND) \
52 | MACB_BIT(ISR_RLE) \
53 | MACB_BIT(TXERR))
54#define MACB_TX_INT_FLAGS (MACB_TX_ERR_FLAGS | MACB_BIT(TCOMP))
55
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +020056#define MACB_MAX_TX_LEN ((unsigned int)((1 << MACB_TX_FRMLEN_SIZE) - 1))
57#define GEM_MAX_TX_LEN ((unsigned int)((1 << GEM_TX_FRMLEN_SIZE) - 1))
58
Harini Katakama5898ea2015-05-06 22:27:18 +053059#define GEM_MTU_MIN_SIZE 68
60
Sergio Prado3e2a5e12016-02-09 12:07:16 -020061#define MACB_WOL_HAS_MAGIC_PACKET (0x1 << 0)
62#define MACB_WOL_ENABLED (0x1 << 1)
63
Nicolas Ferree86cd532012-10-31 06:04:57 +000064/*
65 * Graceful stop timeouts in us. We should allow up to
66 * 1 frame time (10 Mbits/s, full-duplex, ignoring collisions)
67 */
68#define MACB_HALT_TIMEOUT 1230
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010069
Havard Skinnemoen55054a12012-10-31 06:04:55 +000070/* Ring buffer accessors */
71static unsigned int macb_tx_ring_wrap(unsigned int index)
72{
73 return index & (TX_RING_SIZE - 1);
74}
75
Cyrille Pitchen02c958d2014-12-12 13:26:44 +010076static struct macb_dma_desc *macb_tx_desc(struct macb_queue *queue,
77 unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +000078{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +010079 return &queue->tx_ring[macb_tx_ring_wrap(index)];
Havard Skinnemoen55054a12012-10-31 06:04:55 +000080}
81
Cyrille Pitchen02c958d2014-12-12 13:26:44 +010082static struct macb_tx_skb *macb_tx_skb(struct macb_queue *queue,
83 unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +000084{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +010085 return &queue->tx_skb[macb_tx_ring_wrap(index)];
Havard Skinnemoen55054a12012-10-31 06:04:55 +000086}
87
Cyrille Pitchen02c958d2014-12-12 13:26:44 +010088static dma_addr_t macb_tx_dma(struct macb_queue *queue, unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +000089{
90 dma_addr_t offset;
91
92 offset = macb_tx_ring_wrap(index) * sizeof(struct macb_dma_desc);
93
Cyrille Pitchen02c958d2014-12-12 13:26:44 +010094 return queue->tx_ring_dma + offset;
Havard Skinnemoen55054a12012-10-31 06:04:55 +000095}
96
97static unsigned int macb_rx_ring_wrap(unsigned int index)
98{
99 return index & (RX_RING_SIZE - 1);
100}
101
102static struct macb_dma_desc *macb_rx_desc(struct macb *bp, unsigned int index)
103{
104 return &bp->rx_ring[macb_rx_ring_wrap(index)];
105}
106
107static void *macb_rx_buffer(struct macb *bp, unsigned int index)
108{
Nicolas Ferre1b447912013-06-04 21:57:11 +0000109 return bp->rx_buffers + bp->rx_buffer_size * macb_rx_ring_wrap(index);
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000110}
111
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +0300112/* I/O accessors */
113static u32 hw_readl_native(struct macb *bp, int offset)
114{
115 return __raw_readl(bp->regs + offset);
116}
117
118static void hw_writel_native(struct macb *bp, int offset, u32 value)
119{
120 __raw_writel(value, bp->regs + offset);
121}
122
123static u32 hw_readl(struct macb *bp, int offset)
124{
125 return readl_relaxed(bp->regs + offset);
126}
127
128static void hw_writel(struct macb *bp, int offset, u32 value)
129{
130 writel_relaxed(value, bp->regs + offset);
131}
132
133/*
134 * Find the CPU endianness by using the loopback bit of NCR register. When the
135 * CPU is in big endian we need to program swaped mode for management
136 * descriptor access.
137 */
138static bool hw_is_native_io(void __iomem *addr)
139{
140 u32 value = MACB_BIT(LLB);
141
142 __raw_writel(value, addr + MACB_NCR);
143 value = __raw_readl(addr + MACB_NCR);
144
145 /* Write 0 back to disable everything */
146 __raw_writel(0, addr + MACB_NCR);
147
148 return value == MACB_BIT(LLB);
149}
150
151static bool hw_is_gem(void __iomem *addr, bool native_io)
152{
153 u32 id;
154
155 if (native_io)
156 id = __raw_readl(addr + MACB_MID);
157 else
158 id = readl_relaxed(addr + MACB_MID);
159
160 return MACB_BFEXT(IDNUM, id) >= 0x2;
161}
162
Cyrille Pitchen421d9df2015-03-07 07:23:32 +0100163static void macb_set_hwaddr(struct macb *bp)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100164{
165 u32 bottom;
166 u16 top;
167
168 bottom = cpu_to_le32(*((u32 *)bp->dev->dev_addr));
Jamie Ilesf75ba502011-11-08 10:12:32 +0000169 macb_or_gem_writel(bp, SA1B, bottom);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100170 top = cpu_to_le16(*((u16 *)(bp->dev->dev_addr + 4)));
Jamie Ilesf75ba502011-11-08 10:12:32 +0000171 macb_or_gem_writel(bp, SA1T, top);
Joachim Eastwood3629a6c2012-11-11 13:56:28 +0000172
173 /* Clear unused address register sets */
174 macb_or_gem_writel(bp, SA2B, 0);
175 macb_or_gem_writel(bp, SA2T, 0);
176 macb_or_gem_writel(bp, SA3B, 0);
177 macb_or_gem_writel(bp, SA3T, 0);
178 macb_or_gem_writel(bp, SA4B, 0);
179 macb_or_gem_writel(bp, SA4T, 0);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100180}
181
Cyrille Pitchen421d9df2015-03-07 07:23:32 +0100182static void macb_get_hwaddr(struct macb *bp)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100183{
Joachim Eastwoodd25e78a2012-11-07 08:14:51 +0000184 struct macb_platform_data *pdata;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100185 u32 bottom;
186 u16 top;
187 u8 addr[6];
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000188 int i;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100189
Jingoo Hanc607a0d2013-08-30 14:12:21 +0900190 pdata = dev_get_platdata(&bp->pdev->dev);
Joachim Eastwoodd25e78a2012-11-07 08:14:51 +0000191
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000192 /* Check all 4 address register for vaild address */
193 for (i = 0; i < 4; i++) {
194 bottom = macb_or_gem_readl(bp, SA1B + i * 8);
195 top = macb_or_gem_readl(bp, SA1T + i * 8);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100196
Joachim Eastwoodd25e78a2012-11-07 08:14:51 +0000197 if (pdata && pdata->rev_eth_addr) {
198 addr[5] = bottom & 0xff;
199 addr[4] = (bottom >> 8) & 0xff;
200 addr[3] = (bottom >> 16) & 0xff;
201 addr[2] = (bottom >> 24) & 0xff;
202 addr[1] = top & 0xff;
203 addr[0] = (top & 0xff00) >> 8;
204 } else {
205 addr[0] = bottom & 0xff;
206 addr[1] = (bottom >> 8) & 0xff;
207 addr[2] = (bottom >> 16) & 0xff;
208 addr[3] = (bottom >> 24) & 0xff;
209 addr[4] = top & 0xff;
210 addr[5] = (top >> 8) & 0xff;
211 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100212
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000213 if (is_valid_ether_addr(addr)) {
214 memcpy(bp->dev->dev_addr, addr, sizeof(addr));
215 return;
216 }
Sven Schnelled1d57412008-06-09 16:33:57 -0700217 }
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000218
Andy Shevchenkoa35919e2015-07-24 21:24:01 +0300219 dev_info(&bp->pdev->dev, "invalid hw address, using random\n");
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000220 eth_hw_addr_random(bp->dev);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100221}
222
frederic RODO6c36a702007-07-12 19:07:24 +0200223static int macb_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100224{
frederic RODO6c36a702007-07-12 19:07:24 +0200225 struct macb *bp = bus->priv;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100226 int value;
227
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100228 macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_SOF)
229 | MACB_BF(RW, MACB_MAN_READ)
frederic RODO6c36a702007-07-12 19:07:24 +0200230 | MACB_BF(PHYA, mii_id)
231 | MACB_BF(REGA, regnum)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100232 | MACB_BF(CODE, MACB_MAN_CODE)));
233
frederic RODO6c36a702007-07-12 19:07:24 +0200234 /* wait for end of transfer */
235 while (!MACB_BFEXT(IDLE, macb_readl(bp, NSR)))
236 cpu_relax();
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100237
238 value = MACB_BFEXT(DATA, macb_readl(bp, MAN));
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100239
240 return value;
241}
242
frederic RODO6c36a702007-07-12 19:07:24 +0200243static int macb_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
244 u16 value)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100245{
frederic RODO6c36a702007-07-12 19:07:24 +0200246 struct macb *bp = bus->priv;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100247
248 macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_SOF)
249 | MACB_BF(RW, MACB_MAN_WRITE)
frederic RODO6c36a702007-07-12 19:07:24 +0200250 | MACB_BF(PHYA, mii_id)
251 | MACB_BF(REGA, regnum)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100252 | MACB_BF(CODE, MACB_MAN_CODE)
frederic RODO6c36a702007-07-12 19:07:24 +0200253 | MACB_BF(DATA, value)));
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100254
frederic RODO6c36a702007-07-12 19:07:24 +0200255 /* wait for end of transfer */
256 while (!MACB_BFEXT(IDLE, macb_readl(bp, NSR)))
257 cpu_relax();
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100258
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100259 return 0;
260}
261
Soren Brinkmanne1824df2013-12-10 16:07:23 -0800262/**
263 * macb_set_tx_clk() - Set a clock to a new frequency
264 * @clk Pointer to the clock to change
265 * @rate New frequency in Hz
266 * @dev Pointer to the struct net_device
267 */
268static void macb_set_tx_clk(struct clk *clk, int speed, struct net_device *dev)
269{
270 long ferr, rate, rate_rounded;
271
Cyrille Pitchen93b31f42015-03-07 07:23:31 +0100272 if (!clk)
273 return;
274
Soren Brinkmanne1824df2013-12-10 16:07:23 -0800275 switch (speed) {
276 case SPEED_10:
277 rate = 2500000;
278 break;
279 case SPEED_100:
280 rate = 25000000;
281 break;
282 case SPEED_1000:
283 rate = 125000000;
284 break;
285 default:
Soren Brinkmann9319e472013-12-10 20:57:57 -0800286 return;
Soren Brinkmanne1824df2013-12-10 16:07:23 -0800287 }
288
289 rate_rounded = clk_round_rate(clk, rate);
290 if (rate_rounded < 0)
291 return;
292
293 /* RGMII allows 50 ppm frequency error. Test and warn if this limit
294 * is not satisfied.
295 */
296 ferr = abs(rate_rounded - rate);
297 ferr = DIV_ROUND_UP(ferr, rate / 100000);
298 if (ferr > 5)
299 netdev_warn(dev, "unable to generate target frequency: %ld Hz\n",
300 rate);
301
302 if (clk_set_rate(clk, rate_rounded))
303 netdev_err(dev, "adjusting tx_clk failed.\n");
304}
305
frederic RODO6c36a702007-07-12 19:07:24 +0200306static void macb_handle_link_change(struct net_device *dev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100307{
frederic RODO6c36a702007-07-12 19:07:24 +0200308 struct macb *bp = netdev_priv(dev);
309 struct phy_device *phydev = bp->phy_dev;
310 unsigned long flags;
frederic RODO6c36a702007-07-12 19:07:24 +0200311 int status_change = 0;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100312
frederic RODO6c36a702007-07-12 19:07:24 +0200313 spin_lock_irqsave(&bp->lock, flags);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100314
frederic RODO6c36a702007-07-12 19:07:24 +0200315 if (phydev->link) {
316 if ((bp->speed != phydev->speed) ||
317 (bp->duplex != phydev->duplex)) {
318 u32 reg;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100319
frederic RODO6c36a702007-07-12 19:07:24 +0200320 reg = macb_readl(bp, NCFGR);
321 reg &= ~(MACB_BIT(SPD) | MACB_BIT(FD));
Patrice Vilchez140b7552012-10-31 06:04:50 +0000322 if (macb_is_gem(bp))
323 reg &= ~GEM_BIT(GBE);
frederic RODO6c36a702007-07-12 19:07:24 +0200324
325 if (phydev->duplex)
326 reg |= MACB_BIT(FD);
Atsushi Nemoto179956f2008-02-21 22:50:54 +0900327 if (phydev->speed == SPEED_100)
frederic RODO6c36a702007-07-12 19:07:24 +0200328 reg |= MACB_BIT(SPD);
Nicolas Ferree1755872014-07-24 13:50:58 +0200329 if (phydev->speed == SPEED_1000 &&
330 bp->caps & MACB_CAPS_GIGABIT_MODE_AVAILABLE)
Patrice Vilchez140b7552012-10-31 06:04:50 +0000331 reg |= GEM_BIT(GBE);
frederic RODO6c36a702007-07-12 19:07:24 +0200332
Patrice Vilchez140b7552012-10-31 06:04:50 +0000333 macb_or_gem_writel(bp, NCFGR, reg);
frederic RODO6c36a702007-07-12 19:07:24 +0200334
335 bp->speed = phydev->speed;
336 bp->duplex = phydev->duplex;
337 status_change = 1;
338 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100339 }
340
frederic RODO6c36a702007-07-12 19:07:24 +0200341 if (phydev->link != bp->link) {
Anton Vorontsovc8f15682008-07-22 15:41:24 -0700342 if (!phydev->link) {
frederic RODO6c36a702007-07-12 19:07:24 +0200343 bp->speed = 0;
344 bp->duplex = -1;
345 }
346 bp->link = phydev->link;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100347
frederic RODO6c36a702007-07-12 19:07:24 +0200348 status_change = 1;
349 }
350
351 spin_unlock_irqrestore(&bp->lock, flags);
352
353 if (status_change) {
Nicolas Ferre03fc4722012-07-03 23:14:13 +0000354 if (phydev->link) {
Jaeden Amero2c29b232015-03-12 18:07:54 -0500355 /* Update the TX clock rate if and only if the link is
356 * up and there has been a link change.
357 */
358 macb_set_tx_clk(bp->tx_clk, phydev->speed, dev);
359
Nicolas Ferre03fc4722012-07-03 23:14:13 +0000360 netif_carrier_on(dev);
Jamie Ilesc220f8c2011-03-08 20:27:08 +0000361 netdev_info(dev, "link up (%d/%s)\n",
362 phydev->speed,
363 phydev->duplex == DUPLEX_FULL ?
364 "Full" : "Half");
Nicolas Ferre03fc4722012-07-03 23:14:13 +0000365 } else {
366 netif_carrier_off(dev);
Jamie Ilesc220f8c2011-03-08 20:27:08 +0000367 netdev_info(dev, "link down\n");
Nicolas Ferre03fc4722012-07-03 23:14:13 +0000368 }
frederic RODO6c36a702007-07-12 19:07:24 +0200369 }
370}
371
372/* based on au1000_eth. c*/
373static int macb_mii_probe(struct net_device *dev)
374{
375 struct macb *bp = netdev_priv(dev);
Joachim Eastwood2dbfdbb2012-11-11 13:56:27 +0000376 struct macb_platform_data *pdata;
Jiri Pirko7455a762010-02-08 05:12:08 +0000377 struct phy_device *phydev;
Joachim Eastwood2dbfdbb2012-11-11 13:56:27 +0000378 int phy_irq;
Jiri Pirko7455a762010-02-08 05:12:08 +0000379 int ret;
frederic RODO6c36a702007-07-12 19:07:24 +0200380
Jiri Pirko7455a762010-02-08 05:12:08 +0000381 phydev = phy_find_first(bp->mii_bus);
frederic RODO6c36a702007-07-12 19:07:24 +0200382 if (!phydev) {
Jamie Ilesc220f8c2011-03-08 20:27:08 +0000383 netdev_err(dev, "no PHY found\n");
Boris BREZILLON7daa78e2013-08-27 14:36:14 +0200384 return -ENXIO;
frederic RODO6c36a702007-07-12 19:07:24 +0200385 }
386
Joachim Eastwood2dbfdbb2012-11-11 13:56:27 +0000387 pdata = dev_get_platdata(&bp->pdev->dev);
388 if (pdata && gpio_is_valid(pdata->phy_irq_pin)) {
389 ret = devm_gpio_request(&bp->pdev->dev, pdata->phy_irq_pin, "phy int");
390 if (!ret) {
391 phy_irq = gpio_to_irq(pdata->phy_irq_pin);
392 phydev->irq = (phy_irq < 0) ? PHY_POLL : phy_irq;
393 }
394 }
frederic RODO6c36a702007-07-12 19:07:24 +0200395
396 /* attach the mac to the phy */
Florian Fainellif9a8f832013-01-14 00:52:52 +0000397 ret = phy_connect_direct(dev, phydev, &macb_handle_link_change,
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +0100398 bp->phy_interface);
Jiri Pirko7455a762010-02-08 05:12:08 +0000399 if (ret) {
Jamie Ilesc220f8c2011-03-08 20:27:08 +0000400 netdev_err(dev, "Could not attach to PHY\n");
Jiri Pirko7455a762010-02-08 05:12:08 +0000401 return ret;
frederic RODO6c36a702007-07-12 19:07:24 +0200402 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100403
frederic RODO6c36a702007-07-12 19:07:24 +0200404 /* mask with MAC supported features */
Nicolas Ferree1755872014-07-24 13:50:58 +0200405 if (macb_is_gem(bp) && bp->caps & MACB_CAPS_GIGABIT_MODE_AVAILABLE)
Patrice Vilchez140b7552012-10-31 06:04:50 +0000406 phydev->supported &= PHY_GBIT_FEATURES;
407 else
408 phydev->supported &= PHY_BASIC_FEATURES;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100409
Nathan Sullivan222ca8e2015-05-22 09:22:10 -0500410 if (bp->caps & MACB_CAPS_NO_GIGABIT_HALF)
411 phydev->supported &= ~SUPPORTED_1000baseT_Half;
412
frederic RODO6c36a702007-07-12 19:07:24 +0200413 phydev->advertising = phydev->supported;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100414
frederic RODO6c36a702007-07-12 19:07:24 +0200415 bp->link = 0;
416 bp->speed = 0;
417 bp->duplex = -1;
418 bp->phy_dev = phydev;
419
420 return 0;
421}
422
Cyrille Pitchen421d9df2015-03-07 07:23:32 +0100423static int macb_mii_init(struct macb *bp)
frederic RODO6c36a702007-07-12 19:07:24 +0200424{
Jamie Iles84e0cdb2011-03-08 20:17:06 +0000425 struct macb_platform_data *pdata;
Boris BREZILLON148cbb52013-08-22 17:57:28 +0200426 struct device_node *np;
frederic RODO6c36a702007-07-12 19:07:24 +0200427 int err = -ENXIO, i;
428
Uwe Kleine-Koenig3dbda772009-07-23 08:31:31 +0200429 /* Enable management port */
frederic RODO6c36a702007-07-12 19:07:24 +0200430 macb_writel(bp, NCR, MACB_BIT(MPE));
431
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700432 bp->mii_bus = mdiobus_alloc();
433 if (bp->mii_bus == NULL) {
frederic RODO6c36a702007-07-12 19:07:24 +0200434 err = -ENOMEM;
435 goto err_out;
436 }
437
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700438 bp->mii_bus->name = "MACB_mii_bus";
439 bp->mii_bus->read = &macb_mdio_read;
440 bp->mii_bus->write = &macb_mdio_write;
Florian Fainelli98d5e572012-01-09 23:59:11 +0000441 snprintf(bp->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
442 bp->pdev->name, bp->pdev->id);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700443 bp->mii_bus->priv = bp;
Florian Fainellicf669662016-05-02 18:38:45 -0700444 bp->mii_bus->parent = &bp->pdev->dev;
Jingoo Hanc607a0d2013-08-30 14:12:21 +0900445 pdata = dev_get_platdata(&bp->pdev->dev);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700446
Jamie Iles91523942011-02-28 04:05:25 +0000447 dev_set_drvdata(&bp->dev->dev, bp->mii_bus);
frederic RODO6c36a702007-07-12 19:07:24 +0200448
Boris BREZILLON148cbb52013-08-22 17:57:28 +0200449 np = bp->pdev->dev.of_node;
450 if (np) {
451 /* try dt phy registration */
452 err = of_mdiobus_register(bp->mii_bus, np);
453
454 /* fallback to standard phy registration if no phy were
455 found during dt phy registration */
456 if (!err && !phy_find_first(bp->mii_bus)) {
457 for (i = 0; i < PHY_MAX_ADDR; i++) {
458 struct phy_device *phydev;
459
460 phydev = mdiobus_scan(bp->mii_bus, i);
Sergei Shtylyovce24c2b2016-05-01 01:47:36 +0300461 if (IS_ERR(phydev) &&
462 PTR_ERR(phydev) != -ENODEV) {
Boris BREZILLON148cbb52013-08-22 17:57:28 +0200463 err = PTR_ERR(phydev);
464 break;
465 }
466 }
467
468 if (err)
469 goto err_out_unregister_bus;
470 }
471 } else {
Boris BREZILLON148cbb52013-08-22 17:57:28 +0200472 if (pdata)
473 bp->mii_bus->phy_mask = pdata->phy_mask;
474
475 err = mdiobus_register(bp->mii_bus);
476 }
477
478 if (err)
Andrew Lunne7f4dc32016-01-06 20:11:15 +0100479 goto err_out_free_mdiobus;
frederic RODO6c36a702007-07-12 19:07:24 +0200480
Boris BREZILLON7daa78e2013-08-27 14:36:14 +0200481 err = macb_mii_probe(bp->dev);
482 if (err)
frederic RODO6c36a702007-07-12 19:07:24 +0200483 goto err_out_unregister_bus;
frederic RODO6c36a702007-07-12 19:07:24 +0200484
485 return 0;
486
487err_out_unregister_bus:
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700488 mdiobus_unregister(bp->mii_bus);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700489err_out_free_mdiobus:
490 mdiobus_free(bp->mii_bus);
frederic RODO6c36a702007-07-12 19:07:24 +0200491err_out:
492 return err;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100493}
494
495static void macb_update_stats(struct macb *bp)
496{
Jamie Ilesa494ed82011-03-09 16:26:35 +0000497 u32 *p = &bp->hw_stats.macb.rx_pause_frames;
498 u32 *end = &bp->hw_stats.macb.tx_pause_frames + 1;
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +0300499 int offset = MACB_PFR;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100500
501 WARN_ON((unsigned long)(end - p - 1) != (MACB_TPF - MACB_PFR) / 4);
502
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +0300503 for(; p < end; p++, offset += 4)
David S. Miller7a6e0702015-07-27 14:24:48 -0700504 *p += bp->macb_reg_readl(bp, offset);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100505}
506
Nicolas Ferree86cd532012-10-31 06:04:57 +0000507static int macb_halt_tx(struct macb *bp)
508{
509 unsigned long halt_time, timeout;
510 u32 status;
511
512 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(THALT));
513
514 timeout = jiffies + usecs_to_jiffies(MACB_HALT_TIMEOUT);
515 do {
516 halt_time = jiffies;
517 status = macb_readl(bp, TSR);
518 if (!(status & MACB_BIT(TGO)))
519 return 0;
520
521 usleep_range(10, 250);
522 } while (time_before(halt_time, timeout));
523
524 return -ETIMEDOUT;
525}
526
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200527static void macb_tx_unmap(struct macb *bp, struct macb_tx_skb *tx_skb)
528{
529 if (tx_skb->mapping) {
530 if (tx_skb->mapped_as_page)
531 dma_unmap_page(&bp->pdev->dev, tx_skb->mapping,
532 tx_skb->size, DMA_TO_DEVICE);
533 else
534 dma_unmap_single(&bp->pdev->dev, tx_skb->mapping,
535 tx_skb->size, DMA_TO_DEVICE);
536 tx_skb->mapping = 0;
537 }
538
539 if (tx_skb->skb) {
540 dev_kfree_skb_any(tx_skb->skb);
541 tx_skb->skb = NULL;
542 }
543}
544
Nicolas Ferree86cd532012-10-31 06:04:57 +0000545static void macb_tx_error_task(struct work_struct *work)
546{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100547 struct macb_queue *queue = container_of(work, struct macb_queue,
548 tx_error_task);
549 struct macb *bp = queue->bp;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000550 struct macb_tx_skb *tx_skb;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100551 struct macb_dma_desc *desc;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000552 struct sk_buff *skb;
553 unsigned int tail;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100554 unsigned long flags;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000555
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100556 netdev_vdbg(bp->dev, "macb_tx_error_task: q = %u, t = %u, h = %u\n",
557 (unsigned int)(queue - bp->queues),
558 queue->tx_tail, queue->tx_head);
559
560 /* Prevent the queue IRQ handlers from running: each of them may call
561 * macb_tx_interrupt(), which in turn may call netif_wake_subqueue().
562 * As explained below, we have to halt the transmission before updating
563 * TBQP registers so we call netif_tx_stop_all_queues() to notify the
564 * network engine about the macb/gem being halted.
565 */
566 spin_lock_irqsave(&bp->lock, flags);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000567
568 /* Make sure nobody is trying to queue up new packets */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100569 netif_tx_stop_all_queues(bp->dev);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000570
571 /*
572 * Stop transmission now
573 * (in case we have just queued new packets)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100574 * macb/gem must be halted to write TBQP register
Nicolas Ferree86cd532012-10-31 06:04:57 +0000575 */
576 if (macb_halt_tx(bp))
577 /* Just complain for now, reinitializing TX path can be good */
578 netdev_err(bp->dev, "BUG: halt tx timed out\n");
579
Nicolas Ferree86cd532012-10-31 06:04:57 +0000580 /*
581 * Treat frames in TX queue including the ones that caused the error.
582 * Free transmit buffers in upper layer.
583 */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100584 for (tail = queue->tx_tail; tail != queue->tx_head; tail++) {
585 u32 ctrl;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000586
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100587 desc = macb_tx_desc(queue, tail);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000588 ctrl = desc->ctrl;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100589 tx_skb = macb_tx_skb(queue, tail);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000590 skb = tx_skb->skb;
591
592 if (ctrl & MACB_BIT(TX_USED)) {
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200593 /* skb is set for the last buffer of the frame */
594 while (!skb) {
595 macb_tx_unmap(bp, tx_skb);
596 tail++;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100597 tx_skb = macb_tx_skb(queue, tail);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200598 skb = tx_skb->skb;
599 }
600
601 /* ctrl still refers to the first buffer descriptor
602 * since it's the only one written back by the hardware
603 */
604 if (!(ctrl & MACB_BIT(TX_BUF_EXHAUSTED))) {
605 netdev_vdbg(bp->dev, "txerr skb %u (data %p) TX complete\n",
606 macb_tx_ring_wrap(tail), skb->data);
607 bp->stats.tx_packets++;
608 bp->stats.tx_bytes += skb->len;
609 }
Nicolas Ferree86cd532012-10-31 06:04:57 +0000610 } else {
611 /*
612 * "Buffers exhausted mid-frame" errors may only happen
613 * if the driver is buggy, so complain loudly about those.
614 * Statistics are updated by hardware.
615 */
616 if (ctrl & MACB_BIT(TX_BUF_EXHAUSTED))
617 netdev_err(bp->dev,
618 "BUG: TX buffers exhausted mid-frame\n");
619
620 desc->ctrl = ctrl | MACB_BIT(TX_USED);
621 }
622
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200623 macb_tx_unmap(bp, tx_skb);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000624 }
625
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100626 /* Set end of TX queue */
627 desc = macb_tx_desc(queue, 0);
628 desc->addr = 0;
629 desc->ctrl = MACB_BIT(TX_USED);
630
Nicolas Ferree86cd532012-10-31 06:04:57 +0000631 /* Make descriptor updates visible to hardware */
632 wmb();
633
634 /* Reinitialize the TX desc queue */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100635 queue_writel(queue, TBQP, queue->tx_ring_dma);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000636 /* Make TX ring reflect state of hardware */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100637 queue->tx_head = 0;
638 queue->tx_tail = 0;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000639
640 /* Housework before enabling TX IRQ */
641 macb_writel(bp, TSR, macb_readl(bp, TSR));
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100642 queue_writel(queue, IER, MACB_TX_INT_FLAGS);
643
644 /* Now we are ready to start transmission again */
645 netif_tx_start_all_queues(bp->dev);
646 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TSTART));
647
648 spin_unlock_irqrestore(&bp->lock, flags);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000649}
650
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100651static void macb_tx_interrupt(struct macb_queue *queue)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100652{
653 unsigned int tail;
654 unsigned int head;
655 u32 status;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100656 struct macb *bp = queue->bp;
657 u16 queue_index = queue - bp->queues;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100658
659 status = macb_readl(bp, TSR);
660 macb_writel(bp, TSR, status);
661
Nicolas Ferre581df9e2013-05-14 03:00:16 +0000662 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100663 queue_writel(queue, ISR, MACB_BIT(TCOMP));
Steffen Trumtrar749a2b62013-03-27 23:07:05 +0000664
Nicolas Ferree86cd532012-10-31 06:04:57 +0000665 netdev_vdbg(bp->dev, "macb_tx_interrupt status = 0x%03lx\n",
666 (unsigned long)status);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100667
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100668 head = queue->tx_head;
669 for (tail = queue->tx_tail; tail != head; tail++) {
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000670 struct macb_tx_skb *tx_skb;
671 struct sk_buff *skb;
672 struct macb_dma_desc *desc;
673 u32 ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100674
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100675 desc = macb_tx_desc(queue, tail);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100676
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000677 /* Make hw descriptor updates visible to CPU */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100678 rmb();
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000679
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000680 ctrl = desc->ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100681
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200682 /* TX_USED bit is only set by hardware on the very first buffer
683 * descriptor of the transmitted frame.
684 */
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000685 if (!(ctrl & MACB_BIT(TX_USED)))
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100686 break;
687
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200688 /* Process all buffers of the current transmitted frame */
689 for (;; tail++) {
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100690 tx_skb = macb_tx_skb(queue, tail);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200691 skb = tx_skb->skb;
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000692
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200693 /* First, update TX stats if needed */
694 if (skb) {
695 netdev_vdbg(bp->dev, "skb %u (data %p) TX complete\n",
696 macb_tx_ring_wrap(tail), skb->data);
697 bp->stats.tx_packets++;
698 bp->stats.tx_bytes += skb->len;
699 }
700
701 /* Now we can safely release resources */
702 macb_tx_unmap(bp, tx_skb);
703
704 /* skb is set only for the last buffer of the frame.
705 * WARNING: at this point skb has been freed by
706 * macb_tx_unmap().
707 */
708 if (skb)
709 break;
710 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100711 }
712
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100713 queue->tx_tail = tail;
714 if (__netif_subqueue_stopped(bp->dev, queue_index) &&
715 CIRC_CNT(queue->tx_head, queue->tx_tail,
716 TX_RING_SIZE) <= MACB_TX_WAKEUP_THRESH)
717 netif_wake_subqueue(bp->dev, queue_index);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100718}
719
Nicolas Ferre4df95132013-06-04 21:57:12 +0000720static void gem_rx_refill(struct macb *bp)
721{
722 unsigned int entry;
723 struct sk_buff *skb;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000724 dma_addr_t paddr;
725
726 while (CIRC_SPACE(bp->rx_prepared_head, bp->rx_tail, RX_RING_SIZE) > 0) {
Nicolas Ferre4df95132013-06-04 21:57:12 +0000727 entry = macb_rx_ring_wrap(bp->rx_prepared_head);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000728
729 /* Make hw descriptor updates visible to CPU */
730 rmb();
731
Nicolas Ferre4df95132013-06-04 21:57:12 +0000732 bp->rx_prepared_head++;
733
Nicolas Ferre4df95132013-06-04 21:57:12 +0000734 if (bp->rx_skbuff[entry] == NULL) {
735 /* allocate sk_buff for this free entry in ring */
736 skb = netdev_alloc_skb(bp->dev, bp->rx_buffer_size);
737 if (unlikely(skb == NULL)) {
738 netdev_err(bp->dev,
739 "Unable to allocate sk_buff\n");
740 break;
741 }
Nicolas Ferre4df95132013-06-04 21:57:12 +0000742
743 /* now fill corresponding descriptor entry */
744 paddr = dma_map_single(&bp->pdev->dev, skb->data,
745 bp->rx_buffer_size, DMA_FROM_DEVICE);
Soren Brinkmann92030902014-03-04 08:46:39 -0800746 if (dma_mapping_error(&bp->pdev->dev, paddr)) {
747 dev_kfree_skb(skb);
748 break;
749 }
750
751 bp->rx_skbuff[entry] = skb;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000752
753 if (entry == RX_RING_SIZE - 1)
754 paddr |= MACB_BIT(RX_WRAP);
755 bp->rx_ring[entry].addr = paddr;
756 bp->rx_ring[entry].ctrl = 0;
757
758 /* properly align Ethernet header */
759 skb_reserve(skb, NET_IP_ALIGN);
Punnaiah Choudary Kallurid4c216c2015-04-29 08:34:46 +0530760 } else {
761 bp->rx_ring[entry].addr &= ~MACB_BIT(RX_USED);
762 bp->rx_ring[entry].ctrl = 0;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000763 }
764 }
765
766 /* Make descriptor updates visible to hardware */
767 wmb();
768
769 netdev_vdbg(bp->dev, "rx ring: prepared head %d, tail %d\n",
770 bp->rx_prepared_head, bp->rx_tail);
771}
772
773/* Mark DMA descriptors from begin up to and not including end as unused */
774static void discard_partial_frame(struct macb *bp, unsigned int begin,
775 unsigned int end)
776{
777 unsigned int frag;
778
779 for (frag = begin; frag != end; frag++) {
780 struct macb_dma_desc *desc = macb_rx_desc(bp, frag);
781 desc->addr &= ~MACB_BIT(RX_USED);
782 }
783
784 /* Make descriptor updates visible to hardware */
785 wmb();
786
787 /*
788 * When this happens, the hardware stats registers for
789 * whatever caused this is updated, so we don't have to record
790 * anything.
791 */
792}
793
794static int gem_rx(struct macb *bp, int budget)
795{
796 unsigned int len;
797 unsigned int entry;
798 struct sk_buff *skb;
799 struct macb_dma_desc *desc;
800 int count = 0;
801
802 while (count < budget) {
803 u32 addr, ctrl;
804
805 entry = macb_rx_ring_wrap(bp->rx_tail);
806 desc = &bp->rx_ring[entry];
807
808 /* Make hw descriptor updates visible to CPU */
809 rmb();
810
811 addr = desc->addr;
812 ctrl = desc->ctrl;
813
814 if (!(addr & MACB_BIT(RX_USED)))
815 break;
816
Nicolas Ferre4df95132013-06-04 21:57:12 +0000817 bp->rx_tail++;
818 count++;
819
820 if (!(ctrl & MACB_BIT(RX_SOF) && ctrl & MACB_BIT(RX_EOF))) {
821 netdev_err(bp->dev,
822 "not whole frame pointed by descriptor\n");
823 bp->stats.rx_dropped++;
824 break;
825 }
826 skb = bp->rx_skbuff[entry];
827 if (unlikely(!skb)) {
828 netdev_err(bp->dev,
829 "inconsistent Rx descriptor chain\n");
830 bp->stats.rx_dropped++;
831 break;
832 }
833 /* now everything is ready for receiving packet */
834 bp->rx_skbuff[entry] = NULL;
Harini Katakam98b5a0f42015-05-06 22:27:17 +0530835 len = ctrl & bp->rx_frm_len_mask;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000836
837 netdev_vdbg(bp->dev, "gem_rx %u (len %u)\n", entry, len);
838
839 skb_put(skb, len);
840 addr = MACB_BF(RX_WADDR, MACB_BFEXT(RX_WADDR, addr));
841 dma_unmap_single(&bp->pdev->dev, addr,
Soren Brinkmann48330e082014-03-04 08:46:40 -0800842 bp->rx_buffer_size, DMA_FROM_DEVICE);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000843
844 skb->protocol = eth_type_trans(skb, bp->dev);
845 skb_checksum_none_assert(skb);
Cyrille Pitchen924ec532014-07-24 13:51:01 +0200846 if (bp->dev->features & NETIF_F_RXCSUM &&
847 !(bp->dev->flags & IFF_PROMISC) &&
848 GEM_BFEXT(RX_CSUM, ctrl) & GEM_RX_CSUM_CHECKED_MASK)
849 skb->ip_summed = CHECKSUM_UNNECESSARY;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000850
851 bp->stats.rx_packets++;
852 bp->stats.rx_bytes += skb->len;
853
854#if defined(DEBUG) && defined(VERBOSE_DEBUG)
855 netdev_vdbg(bp->dev, "received skb of length %u, csum: %08x\n",
856 skb->len, skb->csum);
857 print_hex_dump(KERN_DEBUG, " mac: ", DUMP_PREFIX_ADDRESS, 16, 1,
Cyrille Pitchen51f83012014-12-11 11:15:54 +0100858 skb_mac_header(skb), 16, true);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000859 print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_ADDRESS, 16, 1,
860 skb->data, 32, true);
861#endif
862
863 netif_receive_skb(skb);
864 }
865
866 gem_rx_refill(bp);
867
868 return count;
869}
870
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100871static int macb_rx_frame(struct macb *bp, unsigned int first_frag,
872 unsigned int last_frag)
873{
874 unsigned int len;
875 unsigned int frag;
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +0000876 unsigned int offset;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100877 struct sk_buff *skb;
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000878 struct macb_dma_desc *desc;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100879
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000880 desc = macb_rx_desc(bp, last_frag);
Harini Katakam98b5a0f42015-05-06 22:27:17 +0530881 len = desc->ctrl & bp->rx_frm_len_mask;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100882
Havard Skinnemoena268adb2012-10-31 06:04:52 +0000883 netdev_vdbg(bp->dev, "macb_rx_frame frags %u - %u (len %u)\n",
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000884 macb_rx_ring_wrap(first_frag),
885 macb_rx_ring_wrap(last_frag), len);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100886
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +0000887 /*
888 * The ethernet header starts NET_IP_ALIGN bytes into the
889 * first buffer. Since the header is 14 bytes, this makes the
890 * payload word-aligned.
891 *
892 * Instead of calling skb_reserve(NET_IP_ALIGN), we just copy
893 * the two padding bytes into the skb so that we avoid hitting
894 * the slowpath in memcpy(), and pull them off afterwards.
895 */
896 skb = netdev_alloc_skb(bp->dev, len + NET_IP_ALIGN);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100897 if (!skb) {
898 bp->stats.rx_dropped++;
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000899 for (frag = first_frag; ; frag++) {
900 desc = macb_rx_desc(bp, frag);
901 desc->addr &= ~MACB_BIT(RX_USED);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100902 if (frag == last_frag)
903 break;
904 }
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000905
906 /* Make descriptor updates visible to hardware */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100907 wmb();
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000908
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100909 return 1;
910 }
911
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +0000912 offset = 0;
913 len += NET_IP_ALIGN;
Eric Dumazetbc8acf22010-09-02 13:07:41 -0700914 skb_checksum_none_assert(skb);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100915 skb_put(skb, len);
916
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000917 for (frag = first_frag; ; frag++) {
Nicolas Ferre1b447912013-06-04 21:57:11 +0000918 unsigned int frag_len = bp->rx_buffer_size;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100919
920 if (offset + frag_len > len) {
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +0100921 if (unlikely(frag != last_frag)) {
922 dev_kfree_skb_any(skb);
923 return -1;
924 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100925 frag_len = len - offset;
926 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300927 skb_copy_to_linear_data_offset(skb, offset,
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000928 macb_rx_buffer(bp, frag), frag_len);
Nicolas Ferre1b447912013-06-04 21:57:11 +0000929 offset += bp->rx_buffer_size;
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000930 desc = macb_rx_desc(bp, frag);
931 desc->addr &= ~MACB_BIT(RX_USED);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100932
933 if (frag == last_frag)
934 break;
935 }
936
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000937 /* Make descriptor updates visible to hardware */
938 wmb();
939
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +0000940 __skb_pull(skb, NET_IP_ALIGN);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100941 skb->protocol = eth_type_trans(skb, bp->dev);
942
943 bp->stats.rx_packets++;
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +0000944 bp->stats.rx_bytes += skb->len;
Havard Skinnemoena268adb2012-10-31 06:04:52 +0000945 netdev_vdbg(bp->dev, "received skb of length %u, csum: %08x\n",
Jamie Ilesc220f8c2011-03-08 20:27:08 +0000946 skb->len, skb->csum);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100947 netif_receive_skb(skb);
948
949 return 0;
950}
951
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +0100952static inline void macb_init_rx_ring(struct macb *bp)
953{
954 dma_addr_t addr;
955 int i;
956
957 addr = bp->rx_buffers_dma;
958 for (i = 0; i < RX_RING_SIZE; i++) {
959 bp->rx_ring[i].addr = addr;
960 bp->rx_ring[i].ctrl = 0;
961 addr += bp->rx_buffer_size;
962 }
963 bp->rx_ring[RX_RING_SIZE - 1].addr |= MACB_BIT(RX_WRAP);
964}
965
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100966static int macb_rx(struct macb *bp, int budget)
967{
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +0100968 bool reset_rx_queue = false;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100969 int received = 0;
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000970 unsigned int tail;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100971 int first_frag = -1;
972
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000973 for (tail = bp->rx_tail; budget > 0; tail++) {
974 struct macb_dma_desc *desc = macb_rx_desc(bp, tail);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100975 u32 addr, ctrl;
976
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000977 /* Make hw descriptor updates visible to CPU */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100978 rmb();
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000979
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000980 addr = desc->addr;
981 ctrl = desc->ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100982
983 if (!(addr & MACB_BIT(RX_USED)))
984 break;
985
986 if (ctrl & MACB_BIT(RX_SOF)) {
987 if (first_frag != -1)
988 discard_partial_frame(bp, first_frag, tail);
989 first_frag = tail;
990 }
991
992 if (ctrl & MACB_BIT(RX_EOF)) {
993 int dropped;
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +0100994
995 if (unlikely(first_frag == -1)) {
996 reset_rx_queue = true;
997 continue;
998 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100999
1000 dropped = macb_rx_frame(bp, first_frag, tail);
1001 first_frag = -1;
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001002 if (unlikely(dropped < 0)) {
1003 reset_rx_queue = true;
1004 continue;
1005 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001006 if (!dropped) {
1007 received++;
1008 budget--;
1009 }
1010 }
1011 }
1012
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001013 if (unlikely(reset_rx_queue)) {
1014 unsigned long flags;
1015 u32 ctrl;
1016
1017 netdev_err(bp->dev, "RX queue corruption: reset it\n");
1018
1019 spin_lock_irqsave(&bp->lock, flags);
1020
1021 ctrl = macb_readl(bp, NCR);
1022 macb_writel(bp, NCR, ctrl & ~MACB_BIT(RE));
1023
1024 macb_init_rx_ring(bp);
1025 macb_writel(bp, RBQP, bp->rx_ring_dma);
1026
1027 macb_writel(bp, NCR, ctrl | MACB_BIT(RE));
1028
1029 spin_unlock_irqrestore(&bp->lock, flags);
1030 return received;
1031 }
1032
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001033 if (first_frag != -1)
1034 bp->rx_tail = first_frag;
1035 else
1036 bp->rx_tail = tail;
1037
1038 return received;
1039}
1040
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001041static int macb_poll(struct napi_struct *napi, int budget)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001042{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001043 struct macb *bp = container_of(napi, struct macb, napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001044 int work_done;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001045 u32 status;
1046
1047 status = macb_readl(bp, RSR);
1048 macb_writel(bp, RSR, status);
1049
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001050 work_done = 0;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001051
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001052 netdev_vdbg(bp->dev, "poll: status = %08lx, budget = %d\n",
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001053 (unsigned long)status, budget);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001054
Nicolas Ferre4df95132013-06-04 21:57:12 +00001055 work_done = bp->macbgem_ops.mog_rx(bp, budget);
Joshua Hokeb3363692010-10-25 01:44:22 +00001056 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08001057 napi_complete(napi);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001058
Nicolas Ferre8770e912013-02-12 11:08:48 +01001059 /* Packets received while interrupts were disabled */
1060 status = macb_readl(bp, RSR);
Soren Brinkmann504ad982014-05-04 15:43:01 -07001061 if (status) {
Soren Brinkmann02f7a342014-05-04 15:43:00 -07001062 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1063 macb_writel(bp, ISR, MACB_BIT(RCOMP));
Nicolas Ferre8770e912013-02-12 11:08:48 +01001064 napi_reschedule(napi);
Soren Brinkmann02f7a342014-05-04 15:43:00 -07001065 } else {
1066 macb_writel(bp, IER, MACB_RX_INT_FLAGS);
1067 }
Joshua Hokeb3363692010-10-25 01:44:22 +00001068 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001069
1070 /* TODO: Handle errors */
1071
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001072 return work_done;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001073}
1074
1075static irqreturn_t macb_interrupt(int irq, void *dev_id)
1076{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001077 struct macb_queue *queue = dev_id;
1078 struct macb *bp = queue->bp;
1079 struct net_device *dev = bp->dev;
Nathan Sullivanbfbb92c2015-05-05 15:00:25 -05001080 u32 status, ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001081
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001082 status = queue_readl(queue, ISR);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001083
1084 if (unlikely(!status))
1085 return IRQ_NONE;
1086
1087 spin_lock(&bp->lock);
1088
1089 while (status) {
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001090 /* close possible race with dev_close */
1091 if (unlikely(!netif_running(dev))) {
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001092 queue_writel(queue, IDR, -1);
Nathan Sullivan24468372016-01-14 13:27:27 -06001093 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1094 queue_writel(queue, ISR, -1);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001095 break;
1096 }
1097
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001098 netdev_vdbg(bp->dev, "queue = %u, isr = 0x%08lx\n",
1099 (unsigned int)(queue - bp->queues),
1100 (unsigned long)status);
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001101
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001102 if (status & MACB_RX_INT_FLAGS) {
Joshua Hokeb3363692010-10-25 01:44:22 +00001103 /*
1104 * There's no point taking any more interrupts
1105 * until we have processed the buffers. The
1106 * scheduling call may fail if the poll routine
1107 * is already scheduled, so disable interrupts
1108 * now.
1109 */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001110 queue_writel(queue, IDR, MACB_RX_INT_FLAGS);
Nicolas Ferre581df9e2013-05-14 03:00:16 +00001111 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001112 queue_writel(queue, ISR, MACB_BIT(RCOMP));
Joshua Hokeb3363692010-10-25 01:44:22 +00001113
Ben Hutchings288379f2009-01-19 16:43:59 -08001114 if (napi_schedule_prep(&bp->napi)) {
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001115 netdev_vdbg(bp->dev, "scheduling RX softirq\n");
Ben Hutchings288379f2009-01-19 16:43:59 -08001116 __napi_schedule(&bp->napi);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001117 }
1118 }
1119
Nicolas Ferree86cd532012-10-31 06:04:57 +00001120 if (unlikely(status & (MACB_TX_ERR_FLAGS))) {
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001121 queue_writel(queue, IDR, MACB_TX_INT_FLAGS);
1122 schedule_work(&queue->tx_error_task);
Soren Brinkmann6a027b72014-05-04 15:42:59 -07001123
1124 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001125 queue_writel(queue, ISR, MACB_TX_ERR_FLAGS);
Soren Brinkmann6a027b72014-05-04 15:42:59 -07001126
Nicolas Ferree86cd532012-10-31 06:04:57 +00001127 break;
1128 }
1129
1130 if (status & MACB_BIT(TCOMP))
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001131 macb_tx_interrupt(queue);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001132
1133 /*
1134 * Link change detection isn't possible with RMII, so we'll
1135 * add that if/when we get our hands on a full-blown MII PHY.
1136 */
1137
Nathan Sullivan86b5e7d2015-05-13 17:01:36 -05001138 /* There is a hardware issue under heavy load where DMA can
1139 * stop, this causes endless "used buffer descriptor read"
1140 * interrupts but it can be cleared by re-enabling RX. See
1141 * the at91 manual, section 41.3.1 or the Zynq manual
1142 * section 16.7.4 for details.
1143 */
Nathan Sullivanbfbb92c2015-05-05 15:00:25 -05001144 if (status & MACB_BIT(RXUBR)) {
1145 ctrl = macb_readl(bp, NCR);
1146 macb_writel(bp, NCR, ctrl & ~MACB_BIT(RE));
1147 macb_writel(bp, NCR, ctrl | MACB_BIT(RE));
1148
1149 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchenba504992016-03-24 15:40:04 +01001150 queue_writel(queue, ISR, MACB_BIT(RXUBR));
Nathan Sullivanbfbb92c2015-05-05 15:00:25 -05001151 }
1152
Alexander Steinb19f7f72011-04-13 05:03:24 +00001153 if (status & MACB_BIT(ISR_ROVR)) {
1154 /* We missed at least one packet */
Jamie Ilesf75ba502011-11-08 10:12:32 +00001155 if (macb_is_gem(bp))
1156 bp->hw_stats.gem.rx_overruns++;
1157 else
1158 bp->hw_stats.macb.rx_overruns++;
Soren Brinkmann6a027b72014-05-04 15:42:59 -07001159
1160 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001161 queue_writel(queue, ISR, MACB_BIT(ISR_ROVR));
Alexander Steinb19f7f72011-04-13 05:03:24 +00001162 }
1163
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001164 if (status & MACB_BIT(HRESP)) {
1165 /*
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001166 * TODO: Reset the hardware, and maybe move the
1167 * netdev_err to a lower-priority context as well
1168 * (work queue?)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001169 */
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001170 netdev_err(dev, "DMA bus error: HRESP not OK\n");
Soren Brinkmann6a027b72014-05-04 15:42:59 -07001171
1172 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001173 queue_writel(queue, ISR, MACB_BIT(HRESP));
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001174 }
1175
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001176 status = queue_readl(queue, ISR);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001177 }
1178
1179 spin_unlock(&bp->lock);
1180
1181 return IRQ_HANDLED;
1182}
1183
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001184#ifdef CONFIG_NET_POLL_CONTROLLER
1185/*
1186 * Polling receive - used by netconsole and other diagnostic tools
1187 * to allow network i/o with interrupts disabled.
1188 */
1189static void macb_poll_controller(struct net_device *dev)
1190{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001191 struct macb *bp = netdev_priv(dev);
1192 struct macb_queue *queue;
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001193 unsigned long flags;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001194 unsigned int q;
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001195
1196 local_irq_save(flags);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001197 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
1198 macb_interrupt(dev->irq, queue);
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001199 local_irq_restore(flags);
1200}
1201#endif
1202
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001203static unsigned int macb_tx_map(struct macb *bp,
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001204 struct macb_queue *queue,
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001205 struct sk_buff *skb)
1206{
1207 dma_addr_t mapping;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001208 unsigned int len, entry, i, tx_head = queue->tx_head;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001209 struct macb_tx_skb *tx_skb = NULL;
1210 struct macb_dma_desc *desc;
1211 unsigned int offset, size, count = 0;
1212 unsigned int f, nr_frags = skb_shinfo(skb)->nr_frags;
1213 unsigned int eof = 1;
1214 u32 ctrl;
1215
1216 /* First, map non-paged data */
1217 len = skb_headlen(skb);
1218 offset = 0;
1219 while (len) {
1220 size = min(len, bp->max_tx_length);
1221 entry = macb_tx_ring_wrap(tx_head);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001222 tx_skb = &queue->tx_skb[entry];
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001223
1224 mapping = dma_map_single(&bp->pdev->dev,
1225 skb->data + offset,
1226 size, DMA_TO_DEVICE);
1227 if (dma_mapping_error(&bp->pdev->dev, mapping))
1228 goto dma_error;
1229
1230 /* Save info to properly release resources */
1231 tx_skb->skb = NULL;
1232 tx_skb->mapping = mapping;
1233 tx_skb->size = size;
1234 tx_skb->mapped_as_page = false;
1235
1236 len -= size;
1237 offset += size;
1238 count++;
1239 tx_head++;
1240 }
1241
1242 /* Then, map paged data from fragments */
1243 for (f = 0; f < nr_frags; f++) {
1244 const skb_frag_t *frag = &skb_shinfo(skb)->frags[f];
1245
1246 len = skb_frag_size(frag);
1247 offset = 0;
1248 while (len) {
1249 size = min(len, bp->max_tx_length);
1250 entry = macb_tx_ring_wrap(tx_head);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001251 tx_skb = &queue->tx_skb[entry];
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001252
1253 mapping = skb_frag_dma_map(&bp->pdev->dev, frag,
1254 offset, size, DMA_TO_DEVICE);
1255 if (dma_mapping_error(&bp->pdev->dev, mapping))
1256 goto dma_error;
1257
1258 /* Save info to properly release resources */
1259 tx_skb->skb = NULL;
1260 tx_skb->mapping = mapping;
1261 tx_skb->size = size;
1262 tx_skb->mapped_as_page = true;
1263
1264 len -= size;
1265 offset += size;
1266 count++;
1267 tx_head++;
1268 }
1269 }
1270
1271 /* Should never happen */
1272 if (unlikely(tx_skb == NULL)) {
1273 netdev_err(bp->dev, "BUG! empty skb!\n");
1274 return 0;
1275 }
1276
1277 /* This is the last buffer of the frame: save socket buffer */
1278 tx_skb->skb = skb;
1279
1280 /* Update TX ring: update buffer descriptors in reverse order
1281 * to avoid race condition
1282 */
1283
1284 /* Set 'TX_USED' bit in buffer descriptor at tx_head position
1285 * to set the end of TX queue
1286 */
1287 i = tx_head;
1288 entry = macb_tx_ring_wrap(i);
1289 ctrl = MACB_BIT(TX_USED);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001290 desc = &queue->tx_ring[entry];
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001291 desc->ctrl = ctrl;
1292
1293 do {
1294 i--;
1295 entry = macb_tx_ring_wrap(i);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001296 tx_skb = &queue->tx_skb[entry];
1297 desc = &queue->tx_ring[entry];
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001298
1299 ctrl = (u32)tx_skb->size;
1300 if (eof) {
1301 ctrl |= MACB_BIT(TX_LAST);
1302 eof = 0;
1303 }
1304 if (unlikely(entry == (TX_RING_SIZE - 1)))
1305 ctrl |= MACB_BIT(TX_WRAP);
1306
1307 /* Set TX buffer descriptor */
1308 desc->addr = tx_skb->mapping;
1309 /* desc->addr must be visible to hardware before clearing
1310 * 'TX_USED' bit in desc->ctrl.
1311 */
1312 wmb();
1313 desc->ctrl = ctrl;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001314 } while (i != queue->tx_head);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001315
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001316 queue->tx_head = tx_head;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001317
1318 return count;
1319
1320dma_error:
1321 netdev_err(bp->dev, "TX DMA map failed\n");
1322
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001323 for (i = queue->tx_head; i != tx_head; i++) {
1324 tx_skb = macb_tx_skb(queue, i);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001325
1326 macb_tx_unmap(bp, tx_skb);
1327 }
1328
1329 return 0;
1330}
1331
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001332static int macb_start_xmit(struct sk_buff *skb, struct net_device *dev)
1333{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001334 u16 queue_index = skb_get_queue_mapping(skb);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001335 struct macb *bp = netdev_priv(dev);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001336 struct macb_queue *queue = &bp->queues[queue_index];
Dongdong Deng48719532009-08-23 19:49:07 -07001337 unsigned long flags;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001338 unsigned int count, nr_frags, frag_size, f;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001339
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001340#if defined(DEBUG) && defined(VERBOSE_DEBUG)
1341 netdev_vdbg(bp->dev,
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001342 "start_xmit: queue %hu len %u head %p data %p tail %p end %p\n",
1343 queue_index, skb->len, skb->head, skb->data,
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001344 skb_tail_pointer(skb), skb_end_pointer(skb));
1345 print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_OFFSET, 16, 1,
1346 skb->data, 16, true);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001347#endif
1348
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001349 /* Count how many TX buffer descriptors are needed to send this
1350 * socket buffer: skb fragments of jumbo frames may need to be
1351 * splitted into many buffer descriptors.
1352 */
Andy Shevchenko94b295e2015-07-24 21:24:03 +03001353 count = DIV_ROUND_UP(skb_headlen(skb), bp->max_tx_length);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001354 nr_frags = skb_shinfo(skb)->nr_frags;
1355 for (f = 0; f < nr_frags; f++) {
1356 frag_size = skb_frag_size(&skb_shinfo(skb)->frags[f]);
Andy Shevchenko94b295e2015-07-24 21:24:03 +03001357 count += DIV_ROUND_UP(frag_size, bp->max_tx_length);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001358 }
1359
Dongdong Deng48719532009-08-23 19:49:07 -07001360 spin_lock_irqsave(&bp->lock, flags);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001361
1362 /* This is a hard error, log it. */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001363 if (CIRC_SPACE(queue->tx_head, queue->tx_tail, TX_RING_SIZE) < count) {
1364 netif_stop_subqueue(dev, queue_index);
Dongdong Deng48719532009-08-23 19:49:07 -07001365 spin_unlock_irqrestore(&bp->lock, flags);
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001366 netdev_dbg(bp->dev, "tx_head = %u, tx_tail = %u\n",
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001367 queue->tx_head, queue->tx_tail);
Patrick McHardy5b548142009-06-12 06:22:29 +00001368 return NETDEV_TX_BUSY;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001369 }
1370
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001371 /* Map socket buffer for DMA transfer */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001372 if (!macb_tx_map(bp, queue, skb)) {
Eric W. Biedermanc88b5b62014-03-15 16:08:27 -07001373 dev_kfree_skb_any(skb);
Soren Brinkmann92030902014-03-04 08:46:39 -08001374 goto unlock;
1375 }
Havard Skinnemoen55054a12012-10-31 06:04:55 +00001376
Havard Skinnemoen03dbe052012-10-31 06:04:51 +00001377 /* Make newly initialized descriptor visible to hardware */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001378 wmb();
1379
Richard Cochrane0720922011-06-19 21:51:28 +00001380 skb_tx_timestamp(skb);
1381
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001382 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TSTART));
1383
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001384 if (CIRC_SPACE(queue->tx_head, queue->tx_tail, TX_RING_SIZE) < 1)
1385 netif_stop_subqueue(dev, queue_index);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001386
Soren Brinkmann92030902014-03-04 08:46:39 -08001387unlock:
Dongdong Deng48719532009-08-23 19:49:07 -07001388 spin_unlock_irqrestore(&bp->lock, flags);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001389
Patrick McHardy6ed10652009-06-23 06:03:08 +00001390 return NETDEV_TX_OK;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001391}
1392
Nicolas Ferre4df95132013-06-04 21:57:12 +00001393static void macb_init_rx_buffer_size(struct macb *bp, size_t size)
Nicolas Ferre1b447912013-06-04 21:57:11 +00001394{
1395 if (!macb_is_gem(bp)) {
1396 bp->rx_buffer_size = MACB_RX_BUFFER_SIZE;
1397 } else {
Nicolas Ferre4df95132013-06-04 21:57:12 +00001398 bp->rx_buffer_size = size;
Nicolas Ferre1b447912013-06-04 21:57:11 +00001399
Nicolas Ferre1b447912013-06-04 21:57:11 +00001400 if (bp->rx_buffer_size % RX_BUFFER_MULTIPLE) {
Nicolas Ferre4df95132013-06-04 21:57:12 +00001401 netdev_dbg(bp->dev,
1402 "RX buffer must be multiple of %d bytes, expanding\n",
Nicolas Ferre1b447912013-06-04 21:57:11 +00001403 RX_BUFFER_MULTIPLE);
1404 bp->rx_buffer_size =
Nicolas Ferre4df95132013-06-04 21:57:12 +00001405 roundup(bp->rx_buffer_size, RX_BUFFER_MULTIPLE);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001406 }
Nicolas Ferre1b447912013-06-04 21:57:11 +00001407 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00001408
1409 netdev_dbg(bp->dev, "mtu [%u] rx_buffer_size [%Zu]\n",
1410 bp->dev->mtu, bp->rx_buffer_size);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001411}
1412
Nicolas Ferre4df95132013-06-04 21:57:12 +00001413static void gem_free_rx_buffers(struct macb *bp)
1414{
1415 struct sk_buff *skb;
1416 struct macb_dma_desc *desc;
1417 dma_addr_t addr;
1418 int i;
1419
1420 if (!bp->rx_skbuff)
1421 return;
1422
1423 for (i = 0; i < RX_RING_SIZE; i++) {
1424 skb = bp->rx_skbuff[i];
1425
1426 if (skb == NULL)
1427 continue;
1428
1429 desc = &bp->rx_ring[i];
1430 addr = MACB_BF(RX_WADDR, MACB_BFEXT(RX_WADDR, desc->addr));
Soren Brinkmannccd6d0a2014-05-04 15:42:58 -07001431 dma_unmap_single(&bp->pdev->dev, addr, bp->rx_buffer_size,
Nicolas Ferre4df95132013-06-04 21:57:12 +00001432 DMA_FROM_DEVICE);
1433 dev_kfree_skb_any(skb);
1434 skb = NULL;
1435 }
1436
1437 kfree(bp->rx_skbuff);
1438 bp->rx_skbuff = NULL;
1439}
1440
1441static void macb_free_rx_buffers(struct macb *bp)
1442{
1443 if (bp->rx_buffers) {
1444 dma_free_coherent(&bp->pdev->dev,
1445 RX_RING_SIZE * bp->rx_buffer_size,
1446 bp->rx_buffers, bp->rx_buffers_dma);
1447 bp->rx_buffers = NULL;
1448 }
1449}
Nicolas Ferre1b447912013-06-04 21:57:11 +00001450
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001451static void macb_free_consistent(struct macb *bp)
1452{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001453 struct macb_queue *queue;
1454 unsigned int q;
1455
Nicolas Ferre4df95132013-06-04 21:57:12 +00001456 bp->macbgem_ops.mog_free_rx_buffers(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001457 if (bp->rx_ring) {
1458 dma_free_coherent(&bp->pdev->dev, RX_RING_BYTES,
1459 bp->rx_ring, bp->rx_ring_dma);
1460 bp->rx_ring = NULL;
1461 }
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001462
1463 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1464 kfree(queue->tx_skb);
1465 queue->tx_skb = NULL;
1466 if (queue->tx_ring) {
1467 dma_free_coherent(&bp->pdev->dev, TX_RING_BYTES,
1468 queue->tx_ring, queue->tx_ring_dma);
1469 queue->tx_ring = NULL;
1470 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001471 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00001472}
1473
1474static int gem_alloc_rx_buffers(struct macb *bp)
1475{
1476 int size;
1477
1478 size = RX_RING_SIZE * sizeof(struct sk_buff *);
1479 bp->rx_skbuff = kzalloc(size, GFP_KERNEL);
1480 if (!bp->rx_skbuff)
1481 return -ENOMEM;
1482 else
1483 netdev_dbg(bp->dev,
1484 "Allocated %d RX struct sk_buff entries at %p\n",
1485 RX_RING_SIZE, bp->rx_skbuff);
1486 return 0;
1487}
1488
1489static int macb_alloc_rx_buffers(struct macb *bp)
1490{
1491 int size;
1492
1493 size = RX_RING_SIZE * bp->rx_buffer_size;
1494 bp->rx_buffers = dma_alloc_coherent(&bp->pdev->dev, size,
1495 &bp->rx_buffers_dma, GFP_KERNEL);
1496 if (!bp->rx_buffers)
1497 return -ENOMEM;
1498 else
1499 netdev_dbg(bp->dev,
1500 "Allocated RX buffers of %d bytes at %08lx (mapped %p)\n",
1501 size, (unsigned long)bp->rx_buffers_dma, bp->rx_buffers);
1502 return 0;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001503}
1504
1505static int macb_alloc_consistent(struct macb *bp)
1506{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001507 struct macb_queue *queue;
1508 unsigned int q;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001509 int size;
1510
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001511 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1512 size = TX_RING_BYTES;
1513 queue->tx_ring = dma_alloc_coherent(&bp->pdev->dev, size,
1514 &queue->tx_ring_dma,
1515 GFP_KERNEL);
1516 if (!queue->tx_ring)
1517 goto out_err;
1518 netdev_dbg(bp->dev,
1519 "Allocated TX ring for queue %u of %d bytes at %08lx (mapped %p)\n",
1520 q, size, (unsigned long)queue->tx_ring_dma,
1521 queue->tx_ring);
1522
1523 size = TX_RING_SIZE * sizeof(struct macb_tx_skb);
1524 queue->tx_skb = kmalloc(size, GFP_KERNEL);
1525 if (!queue->tx_skb)
1526 goto out_err;
1527 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001528
1529 size = RX_RING_BYTES;
1530 bp->rx_ring = dma_alloc_coherent(&bp->pdev->dev, size,
1531 &bp->rx_ring_dma, GFP_KERNEL);
1532 if (!bp->rx_ring)
1533 goto out_err;
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001534 netdev_dbg(bp->dev,
1535 "Allocated RX ring of %d bytes at %08lx (mapped %p)\n",
1536 size, (unsigned long)bp->rx_ring_dma, bp->rx_ring);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001537
Nicolas Ferre4df95132013-06-04 21:57:12 +00001538 if (bp->macbgem_ops.mog_alloc_rx_buffers(bp))
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001539 goto out_err;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001540
1541 return 0;
1542
1543out_err:
1544 macb_free_consistent(bp);
1545 return -ENOMEM;
1546}
1547
Nicolas Ferre4df95132013-06-04 21:57:12 +00001548static void gem_init_rings(struct macb *bp)
1549{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001550 struct macb_queue *queue;
1551 unsigned int q;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001552 int i;
1553
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001554 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1555 for (i = 0; i < TX_RING_SIZE; i++) {
1556 queue->tx_ring[i].addr = 0;
1557 queue->tx_ring[i].ctrl = MACB_BIT(TX_USED);
1558 }
1559 queue->tx_ring[TX_RING_SIZE - 1].ctrl |= MACB_BIT(TX_WRAP);
1560 queue->tx_head = 0;
1561 queue->tx_tail = 0;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001562 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00001563
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001564 bp->rx_tail = 0;
1565 bp->rx_prepared_head = 0;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001566
1567 gem_rx_refill(bp);
1568}
1569
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001570static void macb_init_rings(struct macb *bp)
1571{
1572 int i;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001573
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001574 macb_init_rx_ring(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001575
1576 for (i = 0; i < TX_RING_SIZE; i++) {
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001577 bp->queues[0].tx_ring[i].addr = 0;
1578 bp->queues[0].tx_ring[i].ctrl = MACB_BIT(TX_USED);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001579 }
Ben Shelton21d35152015-04-22 17:28:54 -05001580 bp->queues[0].tx_head = 0;
1581 bp->queues[0].tx_tail = 0;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001582 bp->queues[0].tx_ring[TX_RING_SIZE - 1].ctrl |= MACB_BIT(TX_WRAP);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001583
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001584 bp->rx_tail = 0;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001585}
1586
1587static void macb_reset_hw(struct macb *bp)
1588{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001589 struct macb_queue *queue;
1590 unsigned int q;
1591
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001592 /*
1593 * Disable RX and TX (XXX: Should we halt the transmission
1594 * more gracefully?)
1595 */
1596 macb_writel(bp, NCR, 0);
1597
1598 /* Clear the stats registers (XXX: Update stats first?) */
1599 macb_writel(bp, NCR, MACB_BIT(CLRSTAT));
1600
1601 /* Clear all status flags */
Joachim Eastwood95ebcea2012-10-22 08:45:31 +00001602 macb_writel(bp, TSR, -1);
1603 macb_writel(bp, RSR, -1);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001604
1605 /* Disable all interrupts */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001606 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1607 queue_writel(queue, IDR, -1);
1608 queue_readl(queue, ISR);
Nathan Sullivan24468372016-01-14 13:27:27 -06001609 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1610 queue_writel(queue, ISR, -1);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001611 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001612}
1613
Jamie Iles70c9f3d2011-03-09 16:22:54 +00001614static u32 gem_mdc_clk_div(struct macb *bp)
1615{
1616 u32 config;
1617 unsigned long pclk_hz = clk_get_rate(bp->pclk);
1618
1619 if (pclk_hz <= 20000000)
1620 config = GEM_BF(CLK, GEM_CLK_DIV8);
1621 else if (pclk_hz <= 40000000)
1622 config = GEM_BF(CLK, GEM_CLK_DIV16);
1623 else if (pclk_hz <= 80000000)
1624 config = GEM_BF(CLK, GEM_CLK_DIV32);
1625 else if (pclk_hz <= 120000000)
1626 config = GEM_BF(CLK, GEM_CLK_DIV48);
1627 else if (pclk_hz <= 160000000)
1628 config = GEM_BF(CLK, GEM_CLK_DIV64);
1629 else
1630 config = GEM_BF(CLK, GEM_CLK_DIV96);
1631
1632 return config;
1633}
1634
1635static u32 macb_mdc_clk_div(struct macb *bp)
1636{
1637 u32 config;
1638 unsigned long pclk_hz;
1639
1640 if (macb_is_gem(bp))
1641 return gem_mdc_clk_div(bp);
1642
1643 pclk_hz = clk_get_rate(bp->pclk);
1644 if (pclk_hz <= 20000000)
1645 config = MACB_BF(CLK, MACB_CLK_DIV8);
1646 else if (pclk_hz <= 40000000)
1647 config = MACB_BF(CLK, MACB_CLK_DIV16);
1648 else if (pclk_hz <= 80000000)
1649 config = MACB_BF(CLK, MACB_CLK_DIV32);
1650 else
1651 config = MACB_BF(CLK, MACB_CLK_DIV64);
1652
1653 return config;
1654}
1655
Jamie Iles757a03c2011-03-09 16:29:59 +00001656/*
1657 * Get the DMA bus width field of the network configuration register that we
1658 * should program. We find the width from decoding the design configuration
1659 * register to find the maximum supported data bus width.
1660 */
1661static u32 macb_dbw(struct macb *bp)
1662{
1663 if (!macb_is_gem(bp))
1664 return 0;
1665
1666 switch (GEM_BFEXT(DBWDEF, gem_readl(bp, DCFG1))) {
1667 case 4:
1668 return GEM_BF(DBW, GEM_DBW128);
1669 case 2:
1670 return GEM_BF(DBW, GEM_DBW64);
1671 case 1:
1672 default:
1673 return GEM_BF(DBW, GEM_DBW32);
1674 }
1675}
1676
Jamie Iles0116da42011-03-14 17:38:30 +00001677/*
Nicolas Ferreb3e3bd712012-11-23 03:49:01 +00001678 * Configure the receive DMA engine
1679 * - use the correct receive buffer size
Nicolas Ferree1755872014-07-24 13:50:58 +02001680 * - set best burst length for DMA operations
Nicolas Ferreb3e3bd712012-11-23 03:49:01 +00001681 * (if not supported by FIFO, it will fallback to default)
1682 * - set both rx/tx packet buffers to full memory size
1683 * These are configurable parameters for GEM.
Jamie Iles0116da42011-03-14 17:38:30 +00001684 */
1685static void macb_configure_dma(struct macb *bp)
1686{
1687 u32 dmacfg;
1688
1689 if (macb_is_gem(bp)) {
1690 dmacfg = gem_readl(bp, DMACFG) & ~GEM_BF(RXBS, -1L);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001691 dmacfg |= GEM_BF(RXBS, bp->rx_buffer_size / RX_BUFFER_MULTIPLE);
Nicolas Ferree1755872014-07-24 13:50:58 +02001692 if (bp->dma_burst_length)
1693 dmacfg = GEM_BFINS(FBLDO, bp->dma_burst_length, dmacfg);
Nicolas Ferreb3e3bd712012-11-23 03:49:01 +00001694 dmacfg |= GEM_BIT(TXPBMS) | GEM_BF(RXBMS, -1L);
Arun Chandrana50dad32015-02-18 16:59:35 +05301695 dmacfg &= ~GEM_BIT(ENDIA_PKT);
Arun Chandran62f69242015-03-01 11:38:02 +05301696
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03001697 if (bp->native_io)
Arun Chandran62f69242015-03-01 11:38:02 +05301698 dmacfg &= ~GEM_BIT(ENDIA_DESC);
1699 else
1700 dmacfg |= GEM_BIT(ENDIA_DESC); /* CPU in big endian */
1701
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02001702 if (bp->dev->features & NETIF_F_HW_CSUM)
1703 dmacfg |= GEM_BIT(TXCOEN);
1704 else
1705 dmacfg &= ~GEM_BIT(TXCOEN);
Nicolas Ferree1755872014-07-24 13:50:58 +02001706 netdev_dbg(bp->dev, "Cadence configure DMA with 0x%08x\n",
1707 dmacfg);
Jamie Iles0116da42011-03-14 17:38:30 +00001708 gem_writel(bp, DMACFG, dmacfg);
1709 }
1710}
1711
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001712static void macb_init_hw(struct macb *bp)
1713{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001714 struct macb_queue *queue;
1715 unsigned int q;
1716
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001717 u32 config;
1718
1719 macb_reset_hw(bp);
Joachim Eastwood314bccc2012-11-07 08:14:52 +00001720 macb_set_hwaddr(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001721
Jamie Iles70c9f3d2011-03-09 16:22:54 +00001722 config = macb_mdc_clk_div(bp);
Punnaiah Choudary Kalluri022be252015-11-18 09:03:50 +05301723 if (bp->phy_interface == PHY_INTERFACE_MODE_SGMII)
1724 config |= GEM_BIT(SGMIIEN) | GEM_BIT(PCSSEL);
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +00001725 config |= MACB_BF(RBOF, NET_IP_ALIGN); /* Make eth data aligned */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001726 config |= MACB_BIT(PAE); /* PAuse Enable */
1727 config |= MACB_BIT(DRFCS); /* Discard Rx FCS */
Dan Carpentera104a6b2015-05-12 21:15:24 +03001728 if (bp->caps & MACB_CAPS_JUMBO)
Harini Katakam98b5a0f42015-05-06 22:27:17 +05301729 config |= MACB_BIT(JFRAME); /* Enable jumbo frames */
1730 else
1731 config |= MACB_BIT(BIG); /* Receive oversized frames */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001732 if (bp->dev->flags & IFF_PROMISC)
1733 config |= MACB_BIT(CAF); /* Copy All Frames */
Cyrille Pitchen924ec532014-07-24 13:51:01 +02001734 else if (macb_is_gem(bp) && bp->dev->features & NETIF_F_RXCSUM)
1735 config |= GEM_BIT(RXCOEN);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001736 if (!(bp->dev->flags & IFF_BROADCAST))
1737 config |= MACB_BIT(NBC); /* No BroadCast */
Jamie Iles757a03c2011-03-09 16:29:59 +00001738 config |= macb_dbw(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001739 macb_writel(bp, NCFGR, config);
Dan Carpentera104a6b2015-05-12 21:15:24 +03001740 if ((bp->caps & MACB_CAPS_JUMBO) && bp->jumbo_max_len)
Harini Katakam98b5a0f42015-05-06 22:27:17 +05301741 gem_writel(bp, JML, bp->jumbo_max_len);
Vitalii Demianets26cdfb42012-11-02 07:09:24 +00001742 bp->speed = SPEED_10;
1743 bp->duplex = DUPLEX_HALF;
Harini Katakam98b5a0f42015-05-06 22:27:17 +05301744 bp->rx_frm_len_mask = MACB_RX_FRMLEN_MASK;
Dan Carpentera104a6b2015-05-12 21:15:24 +03001745 if (bp->caps & MACB_CAPS_JUMBO)
Harini Katakam98b5a0f42015-05-06 22:27:17 +05301746 bp->rx_frm_len_mask = MACB_RX_JFRMLEN_MASK;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001747
Jamie Iles0116da42011-03-14 17:38:30 +00001748 macb_configure_dma(bp);
1749
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001750 /* Initialize TX and RX buffers */
1751 macb_writel(bp, RBQP, bp->rx_ring_dma);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001752 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1753 queue_writel(queue, TBQP, queue->tx_ring_dma);
1754
1755 /* Enable interrupts */
1756 queue_writel(queue, IER,
1757 MACB_RX_INT_FLAGS |
1758 MACB_TX_INT_FLAGS |
1759 MACB_BIT(HRESP));
1760 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001761
1762 /* Enable TX and RX */
frederic RODO6c36a702007-07-12 19:07:24 +02001763 macb_writel(bp, NCR, MACB_BIT(RE) | MACB_BIT(TE) | MACB_BIT(MPE));
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001764}
1765
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001766/*
1767 * The hash address register is 64 bits long and takes up two
1768 * locations in the memory map. The least significant bits are stored
1769 * in EMAC_HSL and the most significant bits in EMAC_HSH.
1770 *
1771 * The unicast hash enable and the multicast hash enable bits in the
1772 * network configuration register enable the reception of hash matched
1773 * frames. The destination address is reduced to a 6 bit index into
1774 * the 64 bit hash register using the following hash function. The
1775 * hash function is an exclusive or of every sixth bit of the
1776 * destination address.
1777 *
1778 * hi[5] = da[5] ^ da[11] ^ da[17] ^ da[23] ^ da[29] ^ da[35] ^ da[41] ^ da[47]
1779 * hi[4] = da[4] ^ da[10] ^ da[16] ^ da[22] ^ da[28] ^ da[34] ^ da[40] ^ da[46]
1780 * hi[3] = da[3] ^ da[09] ^ da[15] ^ da[21] ^ da[27] ^ da[33] ^ da[39] ^ da[45]
1781 * hi[2] = da[2] ^ da[08] ^ da[14] ^ da[20] ^ da[26] ^ da[32] ^ da[38] ^ da[44]
1782 * hi[1] = da[1] ^ da[07] ^ da[13] ^ da[19] ^ da[25] ^ da[31] ^ da[37] ^ da[43]
1783 * hi[0] = da[0] ^ da[06] ^ da[12] ^ da[18] ^ da[24] ^ da[30] ^ da[36] ^ da[42]
1784 *
1785 * da[0] represents the least significant bit of the first byte
1786 * received, that is, the multicast/unicast indicator, and da[47]
1787 * represents the most significant bit of the last byte received. If
1788 * the hash index, hi[n], points to a bit that is set in the hash
1789 * register then the frame will be matched according to whether the
1790 * frame is multicast or unicast. A multicast match will be signalled
1791 * if the multicast hash enable bit is set, da[0] is 1 and the hash
1792 * index points to a bit set in the hash register. A unicast match
1793 * will be signalled if the unicast hash enable bit is set, da[0] is 0
1794 * and the hash index points to a bit set in the hash register. To
1795 * receive all multicast frames, the hash register should be set with
1796 * all ones and the multicast hash enable bit should be set in the
1797 * network configuration register.
1798 */
1799
1800static inline int hash_bit_value(int bitnr, __u8 *addr)
1801{
1802 if (addr[bitnr / 8] & (1 << (bitnr % 8)))
1803 return 1;
1804 return 0;
1805}
1806
1807/*
1808 * Return the hash index value for the specified address.
1809 */
1810static int hash_get_index(__u8 *addr)
1811{
1812 int i, j, bitval;
1813 int hash_index = 0;
1814
1815 for (j = 0; j < 6; j++) {
1816 for (i = 0, bitval = 0; i < 8; i++)
Xander Huff2fa45e22015-01-15 15:55:19 -06001817 bitval ^= hash_bit_value(i * 6 + j, addr);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001818
1819 hash_index |= (bitval << j);
1820 }
1821
1822 return hash_index;
1823}
1824
1825/*
1826 * Add multicast addresses to the internal multicast-hash table.
1827 */
1828static void macb_sethashtable(struct net_device *dev)
1829{
Jiri Pirko22bedad32010-04-01 21:22:57 +00001830 struct netdev_hw_addr *ha;
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001831 unsigned long mc_filter[2];
Jiri Pirkof9dcbcc2010-02-23 09:19:49 +00001832 unsigned int bitnr;
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001833 struct macb *bp = netdev_priv(dev);
1834
1835 mc_filter[0] = mc_filter[1] = 0;
1836
Jiri Pirko22bedad32010-04-01 21:22:57 +00001837 netdev_for_each_mc_addr(ha, dev) {
1838 bitnr = hash_get_index(ha->addr);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001839 mc_filter[bitnr >> 5] |= 1 << (bitnr & 31);
1840 }
1841
Jamie Ilesf75ba502011-11-08 10:12:32 +00001842 macb_or_gem_writel(bp, HRB, mc_filter[0]);
1843 macb_or_gem_writel(bp, HRT, mc_filter[1]);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001844}
1845
1846/*
1847 * Enable/Disable promiscuous and multicast modes.
1848 */
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01001849static void macb_set_rx_mode(struct net_device *dev)
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001850{
1851 unsigned long cfg;
1852 struct macb *bp = netdev_priv(dev);
1853
1854 cfg = macb_readl(bp, NCFGR);
1855
Cyrille Pitchen924ec532014-07-24 13:51:01 +02001856 if (dev->flags & IFF_PROMISC) {
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001857 /* Enable promiscuous mode */
1858 cfg |= MACB_BIT(CAF);
Cyrille Pitchen924ec532014-07-24 13:51:01 +02001859
1860 /* Disable RX checksum offload */
1861 if (macb_is_gem(bp))
1862 cfg &= ~GEM_BIT(RXCOEN);
1863 } else {
1864 /* Disable promiscuous mode */
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001865 cfg &= ~MACB_BIT(CAF);
1866
Cyrille Pitchen924ec532014-07-24 13:51:01 +02001867 /* Enable RX checksum offload only if requested */
1868 if (macb_is_gem(bp) && dev->features & NETIF_F_RXCSUM)
1869 cfg |= GEM_BIT(RXCOEN);
1870 }
1871
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001872 if (dev->flags & IFF_ALLMULTI) {
1873 /* Enable all multicast mode */
Jamie Ilesf75ba502011-11-08 10:12:32 +00001874 macb_or_gem_writel(bp, HRB, -1);
1875 macb_or_gem_writel(bp, HRT, -1);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001876 cfg |= MACB_BIT(NCFGR_MTI);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001877 } else if (!netdev_mc_empty(dev)) {
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001878 /* Enable specific multicasts */
1879 macb_sethashtable(dev);
1880 cfg |= MACB_BIT(NCFGR_MTI);
1881 } else if (dev->flags & (~IFF_ALLMULTI)) {
1882 /* Disable all multicast mode */
Jamie Ilesf75ba502011-11-08 10:12:32 +00001883 macb_or_gem_writel(bp, HRB, 0);
1884 macb_or_gem_writel(bp, HRT, 0);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001885 cfg &= ~MACB_BIT(NCFGR_MTI);
1886 }
1887
1888 macb_writel(bp, NCFGR, cfg);
1889}
1890
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001891static int macb_open(struct net_device *dev)
1892{
1893 struct macb *bp = netdev_priv(dev);
Nicolas Ferre4df95132013-06-04 21:57:12 +00001894 size_t bufsz = dev->mtu + ETH_HLEN + ETH_FCS_LEN + NET_IP_ALIGN;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001895 int err;
1896
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001897 netdev_dbg(bp->dev, "open\n");
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001898
Nicolas Ferre03fc4722012-07-03 23:14:13 +00001899 /* carrier starts down */
1900 netif_carrier_off(dev);
1901
frederic RODO6c36a702007-07-12 19:07:24 +02001902 /* if the phy is not yet register, retry later*/
1903 if (!bp->phy_dev)
1904 return -EAGAIN;
1905
Nicolas Ferre1b447912013-06-04 21:57:11 +00001906 /* RX buffers initialization */
Nicolas Ferre4df95132013-06-04 21:57:12 +00001907 macb_init_rx_buffer_size(bp, bufsz);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001908
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001909 err = macb_alloc_consistent(bp);
1910 if (err) {
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001911 netdev_err(dev, "Unable to allocate DMA memory (error %d)\n",
1912 err);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001913 return err;
1914 }
1915
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001916 napi_enable(&bp->napi);
1917
Nicolas Ferre4df95132013-06-04 21:57:12 +00001918 bp->macbgem_ops.mog_init_rings(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001919 macb_init_hw(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001920
frederic RODO6c36a702007-07-12 19:07:24 +02001921 /* schedule a link state check */
1922 phy_start(bp->phy_dev);
1923
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001924 netif_tx_start_all_queues(dev);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001925
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001926 return 0;
1927}
1928
1929static int macb_close(struct net_device *dev)
1930{
1931 struct macb *bp = netdev_priv(dev);
1932 unsigned long flags;
1933
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001934 netif_tx_stop_all_queues(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001935 napi_disable(&bp->napi);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001936
frederic RODO6c36a702007-07-12 19:07:24 +02001937 if (bp->phy_dev)
1938 phy_stop(bp->phy_dev);
1939
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001940 spin_lock_irqsave(&bp->lock, flags);
1941 macb_reset_hw(bp);
1942 netif_carrier_off(dev);
1943 spin_unlock_irqrestore(&bp->lock, flags);
1944
1945 macb_free_consistent(bp);
1946
1947 return 0;
1948}
1949
Harini Katakama5898ea2015-05-06 22:27:18 +05301950static int macb_change_mtu(struct net_device *dev, int new_mtu)
1951{
1952 struct macb *bp = netdev_priv(dev);
1953 u32 max_mtu;
1954
1955 if (netif_running(dev))
1956 return -EBUSY;
1957
1958 max_mtu = ETH_DATA_LEN;
Dan Carpentera104a6b2015-05-12 21:15:24 +03001959 if (bp->caps & MACB_CAPS_JUMBO)
Harini Katakama5898ea2015-05-06 22:27:18 +05301960 max_mtu = gem_readl(bp, JML) - ETH_HLEN - ETH_FCS_LEN;
1961
1962 if ((new_mtu > max_mtu) || (new_mtu < GEM_MTU_MIN_SIZE))
1963 return -EINVAL;
1964
1965 dev->mtu = new_mtu;
1966
1967 return 0;
1968}
1969
Jamie Ilesa494ed82011-03-09 16:26:35 +00001970static void gem_update_stats(struct macb *bp)
1971{
Andy Shevchenko8bcbf822015-07-24 21:24:02 +03001972 unsigned int i;
Jamie Ilesa494ed82011-03-09 16:26:35 +00001973 u32 *p = &bp->hw_stats.gem.tx_octets_31_0;
Jamie Ilesa494ed82011-03-09 16:26:35 +00001974
Xander Huff3ff13f12015-01-13 16:15:51 -06001975 for (i = 0; i < GEM_STATS_LEN; ++i, ++p) {
1976 u32 offset = gem_statistics[i].offset;
David S. Miller7a6e0702015-07-27 14:24:48 -07001977 u64 val = bp->macb_reg_readl(bp, offset);
Xander Huff3ff13f12015-01-13 16:15:51 -06001978
1979 bp->ethtool_stats[i] += val;
1980 *p += val;
1981
1982 if (offset == GEM_OCTTXL || offset == GEM_OCTRXL) {
1983 /* Add GEM_OCTTXH, GEM_OCTRXH */
David S. Miller7a6e0702015-07-27 14:24:48 -07001984 val = bp->macb_reg_readl(bp, offset + 4);
Xander Huff2fa45e22015-01-15 15:55:19 -06001985 bp->ethtool_stats[i] += ((u64)val) << 32;
Xander Huff3ff13f12015-01-13 16:15:51 -06001986 *(++p) += val;
1987 }
1988 }
Jamie Ilesa494ed82011-03-09 16:26:35 +00001989}
1990
1991static struct net_device_stats *gem_get_stats(struct macb *bp)
1992{
1993 struct gem_stats *hwstat = &bp->hw_stats.gem;
1994 struct net_device_stats *nstat = &bp->stats;
1995
1996 gem_update_stats(bp);
1997
1998 nstat->rx_errors = (hwstat->rx_frame_check_sequence_errors +
1999 hwstat->rx_alignment_errors +
2000 hwstat->rx_resource_errors +
2001 hwstat->rx_overruns +
2002 hwstat->rx_oversize_frames +
2003 hwstat->rx_jabbers +
2004 hwstat->rx_undersized_frames +
2005 hwstat->rx_length_field_frame_errors);
2006 nstat->tx_errors = (hwstat->tx_late_collisions +
2007 hwstat->tx_excessive_collisions +
2008 hwstat->tx_underrun +
2009 hwstat->tx_carrier_sense_errors);
2010 nstat->multicast = hwstat->rx_multicast_frames;
2011 nstat->collisions = (hwstat->tx_single_collision_frames +
2012 hwstat->tx_multiple_collision_frames +
2013 hwstat->tx_excessive_collisions);
2014 nstat->rx_length_errors = (hwstat->rx_oversize_frames +
2015 hwstat->rx_jabbers +
2016 hwstat->rx_undersized_frames +
2017 hwstat->rx_length_field_frame_errors);
2018 nstat->rx_over_errors = hwstat->rx_resource_errors;
2019 nstat->rx_crc_errors = hwstat->rx_frame_check_sequence_errors;
2020 nstat->rx_frame_errors = hwstat->rx_alignment_errors;
2021 nstat->rx_fifo_errors = hwstat->rx_overruns;
2022 nstat->tx_aborted_errors = hwstat->tx_excessive_collisions;
2023 nstat->tx_carrier_errors = hwstat->tx_carrier_sense_errors;
2024 nstat->tx_fifo_errors = hwstat->tx_underrun;
2025
2026 return nstat;
2027}
2028
Xander Huff3ff13f12015-01-13 16:15:51 -06002029static void gem_get_ethtool_stats(struct net_device *dev,
2030 struct ethtool_stats *stats, u64 *data)
2031{
2032 struct macb *bp;
2033
2034 bp = netdev_priv(dev);
2035 gem_update_stats(bp);
Xander Huff2fa45e22015-01-15 15:55:19 -06002036 memcpy(data, &bp->ethtool_stats, sizeof(u64) * GEM_STATS_LEN);
Xander Huff3ff13f12015-01-13 16:15:51 -06002037}
2038
2039static int gem_get_sset_count(struct net_device *dev, int sset)
2040{
2041 switch (sset) {
2042 case ETH_SS_STATS:
2043 return GEM_STATS_LEN;
2044 default:
2045 return -EOPNOTSUPP;
2046 }
2047}
2048
2049static void gem_get_ethtool_strings(struct net_device *dev, u32 sset, u8 *p)
2050{
Andy Shevchenko8bcbf822015-07-24 21:24:02 +03002051 unsigned int i;
Xander Huff3ff13f12015-01-13 16:15:51 -06002052
2053 switch (sset) {
2054 case ETH_SS_STATS:
2055 for (i = 0; i < GEM_STATS_LEN; i++, p += ETH_GSTRING_LEN)
2056 memcpy(p, gem_statistics[i].stat_string,
2057 ETH_GSTRING_LEN);
2058 break;
2059 }
2060}
2061
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002062static struct net_device_stats *macb_get_stats(struct net_device *dev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002063{
2064 struct macb *bp = netdev_priv(dev);
2065 struct net_device_stats *nstat = &bp->stats;
Jamie Ilesa494ed82011-03-09 16:26:35 +00002066 struct macb_stats *hwstat = &bp->hw_stats.macb;
2067
2068 if (macb_is_gem(bp))
2069 return gem_get_stats(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002070
frederic RODO6c36a702007-07-12 19:07:24 +02002071 /* read stats from hardware */
2072 macb_update_stats(bp);
2073
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002074 /* Convert HW stats into netdevice stats */
2075 nstat->rx_errors = (hwstat->rx_fcs_errors +
2076 hwstat->rx_align_errors +
2077 hwstat->rx_resource_errors +
2078 hwstat->rx_overruns +
2079 hwstat->rx_oversize_pkts +
2080 hwstat->rx_jabbers +
2081 hwstat->rx_undersize_pkts +
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002082 hwstat->rx_length_mismatch);
2083 nstat->tx_errors = (hwstat->tx_late_cols +
2084 hwstat->tx_excessive_cols +
2085 hwstat->tx_underruns +
Wolfgang Steinwender716723c2015-04-10 11:42:56 +02002086 hwstat->tx_carrier_errors +
2087 hwstat->sqe_test_errors);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002088 nstat->collisions = (hwstat->tx_single_cols +
2089 hwstat->tx_multiple_cols +
2090 hwstat->tx_excessive_cols);
2091 nstat->rx_length_errors = (hwstat->rx_oversize_pkts +
2092 hwstat->rx_jabbers +
2093 hwstat->rx_undersize_pkts +
2094 hwstat->rx_length_mismatch);
Alexander Steinb19f7f72011-04-13 05:03:24 +00002095 nstat->rx_over_errors = hwstat->rx_resource_errors +
2096 hwstat->rx_overruns;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002097 nstat->rx_crc_errors = hwstat->rx_fcs_errors;
2098 nstat->rx_frame_errors = hwstat->rx_align_errors;
2099 nstat->rx_fifo_errors = hwstat->rx_overruns;
2100 /* XXX: What does "missed" mean? */
2101 nstat->tx_aborted_errors = hwstat->tx_excessive_cols;
2102 nstat->tx_carrier_errors = hwstat->tx_carrier_errors;
2103 nstat->tx_fifo_errors = hwstat->tx_underruns;
2104 /* Don't know about heartbeat or window errors... */
2105
2106 return nstat;
2107}
2108
2109static int macb_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2110{
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
frederic RODO6c36a702007-07-12 19:07:24 +02002114 if (!phydev)
2115 return -ENODEV;
2116
2117 return phy_ethtool_gset(phydev, cmd);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002118}
2119
2120static int macb_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2121{
2122 struct macb *bp = netdev_priv(dev);
frederic RODO6c36a702007-07-12 19:07:24 +02002123 struct phy_device *phydev = bp->phy_dev;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002124
frederic RODO6c36a702007-07-12 19:07:24 +02002125 if (!phydev)
2126 return -ENODEV;
2127
2128 return phy_ethtool_sset(phydev, cmd);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002129}
2130
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002131static int macb_get_regs_len(struct net_device *netdev)
2132{
2133 return MACB_GREGS_NBR * sizeof(u32);
2134}
2135
2136static void macb_get_regs(struct net_device *dev, struct ethtool_regs *regs,
2137 void *p)
2138{
2139 struct macb *bp = netdev_priv(dev);
2140 unsigned int tail, head;
2141 u32 *regs_buff = p;
2142
2143 regs->version = (macb_readl(bp, MID) & ((1 << MACB_REV_SIZE) - 1))
2144 | MACB_GREGS_VERSION;
2145
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002146 tail = macb_tx_ring_wrap(bp->queues[0].tx_tail);
2147 head = macb_tx_ring_wrap(bp->queues[0].tx_head);
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002148
2149 regs_buff[0] = macb_readl(bp, NCR);
2150 regs_buff[1] = macb_or_gem_readl(bp, NCFGR);
2151 regs_buff[2] = macb_readl(bp, NSR);
2152 regs_buff[3] = macb_readl(bp, TSR);
2153 regs_buff[4] = macb_readl(bp, RBQP);
2154 regs_buff[5] = macb_readl(bp, TBQP);
2155 regs_buff[6] = macb_readl(bp, RSR);
2156 regs_buff[7] = macb_readl(bp, IMR);
2157
2158 regs_buff[8] = tail;
2159 regs_buff[9] = head;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002160 regs_buff[10] = macb_tx_dma(&bp->queues[0], tail);
2161 regs_buff[11] = macb_tx_dma(&bp->queues[0], head);
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002162
Neil Armstrongce721a72016-01-05 14:39:16 +01002163 if (!(bp->caps & MACB_CAPS_USRIO_DISABLED))
2164 regs_buff[12] = macb_or_gem_readl(bp, USRIO);
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002165 if (macb_is_gem(bp)) {
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002166 regs_buff[13] = gem_readl(bp, DMACFG);
2167 }
2168}
2169
Sergio Prado3e2a5e12016-02-09 12:07:16 -02002170static void macb_get_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
2171{
2172 struct macb *bp = netdev_priv(netdev);
2173
2174 wol->supported = 0;
2175 wol->wolopts = 0;
2176
2177 if (bp->wol & MACB_WOL_HAS_MAGIC_PACKET) {
2178 wol->supported = WAKE_MAGIC;
2179
2180 if (bp->wol & MACB_WOL_ENABLED)
2181 wol->wolopts |= WAKE_MAGIC;
2182 }
2183}
2184
2185static int macb_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
2186{
2187 struct macb *bp = netdev_priv(netdev);
2188
2189 if (!(bp->wol & MACB_WOL_HAS_MAGIC_PACKET) ||
2190 (wol->wolopts & ~WAKE_MAGIC))
2191 return -EOPNOTSUPP;
2192
2193 if (wol->wolopts & WAKE_MAGIC)
2194 bp->wol |= MACB_WOL_ENABLED;
2195 else
2196 bp->wol &= ~MACB_WOL_ENABLED;
2197
2198 device_set_wakeup_enable(&bp->pdev->dev, bp->wol & MACB_WOL_ENABLED);
2199
2200 return 0;
2201}
2202
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002203static const struct ethtool_ops macb_ethtool_ops = {
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002204 .get_settings = macb_get_settings,
2205 .set_settings = macb_set_settings,
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002206 .get_regs_len = macb_get_regs_len,
2207 .get_regs = macb_get_regs,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002208 .get_link = ethtool_op_get_link,
Richard Cochran17f393e2012-04-03 22:59:31 +00002209 .get_ts_info = ethtool_op_get_ts_info,
Sergio Prado3e2a5e12016-02-09 12:07:16 -02002210 .get_wol = macb_get_wol,
2211 .set_wol = macb_set_wol,
Xander Huff8cd5a562015-01-15 15:55:20 -06002212};
Xander Huff8cd5a562015-01-15 15:55:20 -06002213
Lad, Prabhakar8093b1c2015-02-05 16:21:07 +00002214static const struct ethtool_ops gem_ethtool_ops = {
Xander Huff8cd5a562015-01-15 15:55:20 -06002215 .get_settings = macb_get_settings,
2216 .set_settings = macb_set_settings,
2217 .get_regs_len = macb_get_regs_len,
2218 .get_regs = macb_get_regs,
2219 .get_link = ethtool_op_get_link,
2220 .get_ts_info = ethtool_op_get_ts_info,
Xander Huff3ff13f12015-01-13 16:15:51 -06002221 .get_ethtool_stats = gem_get_ethtool_stats,
2222 .get_strings = gem_get_ethtool_strings,
2223 .get_sset_count = gem_get_sset_count,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002224};
2225
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002226static int macb_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002227{
2228 struct macb *bp = netdev_priv(dev);
frederic RODO6c36a702007-07-12 19:07:24 +02002229 struct phy_device *phydev = bp->phy_dev;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002230
2231 if (!netif_running(dev))
2232 return -EINVAL;
2233
frederic RODO6c36a702007-07-12 19:07:24 +02002234 if (!phydev)
2235 return -ENODEV;
2236
Richard Cochran28b04112010-07-17 08:48:55 +00002237 return phy_mii_ioctl(phydev, rq, cmd);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002238}
2239
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02002240static int macb_set_features(struct net_device *netdev,
2241 netdev_features_t features)
2242{
2243 struct macb *bp = netdev_priv(netdev);
2244 netdev_features_t changed = features ^ netdev->features;
2245
2246 /* TX checksum offload */
2247 if ((changed & NETIF_F_HW_CSUM) && macb_is_gem(bp)) {
2248 u32 dmacfg;
2249
2250 dmacfg = gem_readl(bp, DMACFG);
2251 if (features & NETIF_F_HW_CSUM)
2252 dmacfg |= GEM_BIT(TXCOEN);
2253 else
2254 dmacfg &= ~GEM_BIT(TXCOEN);
2255 gem_writel(bp, DMACFG, dmacfg);
2256 }
2257
Cyrille Pitchen924ec532014-07-24 13:51:01 +02002258 /* RX checksum offload */
2259 if ((changed & NETIF_F_RXCSUM) && macb_is_gem(bp)) {
2260 u32 netcfg;
2261
2262 netcfg = gem_readl(bp, NCFGR);
2263 if (features & NETIF_F_RXCSUM &&
2264 !(netdev->flags & IFF_PROMISC))
2265 netcfg |= GEM_BIT(RXCOEN);
2266 else
2267 netcfg &= ~GEM_BIT(RXCOEN);
2268 gem_writel(bp, NCFGR, netcfg);
2269 }
2270
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02002271 return 0;
2272}
2273
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00002274static const struct net_device_ops macb_netdev_ops = {
2275 .ndo_open = macb_open,
2276 .ndo_stop = macb_close,
2277 .ndo_start_xmit = macb_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00002278 .ndo_set_rx_mode = macb_set_rx_mode,
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00002279 .ndo_get_stats = macb_get_stats,
2280 .ndo_do_ioctl = macb_ioctl,
2281 .ndo_validate_addr = eth_validate_addr,
Harini Katakama5898ea2015-05-06 22:27:18 +05302282 .ndo_change_mtu = macb_change_mtu,
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00002283 .ndo_set_mac_address = eth_mac_addr,
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07002284#ifdef CONFIG_NET_POLL_CONTROLLER
2285 .ndo_poll_controller = macb_poll_controller,
2286#endif
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02002287 .ndo_set_features = macb_set_features,
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00002288};
2289
Nicolas Ferree1755872014-07-24 13:50:58 +02002290/*
Nicolas Ferread783472015-03-31 15:02:02 +02002291 * Configure peripheral capabilities according to device tree
Nicolas Ferree1755872014-07-24 13:50:58 +02002292 * and integration options used
2293 */
Nicolas Ferref6970502015-03-31 15:02:01 +02002294static void macb_configure_caps(struct macb *bp, const struct macb_config *dt_conf)
Nicolas Ferree1755872014-07-24 13:50:58 +02002295{
2296 u32 dcfg;
Nicolas Ferree1755872014-07-24 13:50:58 +02002297
Nicolas Ferref6970502015-03-31 15:02:01 +02002298 if (dt_conf)
2299 bp->caps = dt_conf->caps;
2300
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03002301 if (hw_is_gem(bp->regs, bp->native_io)) {
Nicolas Ferree1755872014-07-24 13:50:58 +02002302 bp->caps |= MACB_CAPS_MACB_IS_GEM;
2303
Nicolas Ferree1755872014-07-24 13:50:58 +02002304 dcfg = gem_readl(bp, DCFG1);
2305 if (GEM_BFEXT(IRQCOR, dcfg) == 0)
2306 bp->caps |= MACB_CAPS_ISR_CLEAR_ON_WRITE;
2307 dcfg = gem_readl(bp, DCFG2);
2308 if ((dcfg & (GEM_BIT(RX_PKT_BUFF) | GEM_BIT(TX_PKT_BUFF))) == 0)
2309 bp->caps |= MACB_CAPS_FIFO_MODE;
2310 }
2311
Andy Shevchenkoa35919e2015-07-24 21:24:01 +03002312 dev_dbg(&bp->pdev->dev, "Cadence caps 0x%08x\n", bp->caps);
Nicolas Ferree1755872014-07-24 13:50:58 +02002313}
2314
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002315static void macb_probe_queues(void __iomem *mem,
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03002316 bool native_io,
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002317 unsigned int *queue_mask,
2318 unsigned int *num_queues)
2319{
2320 unsigned int hw_q;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002321
2322 *queue_mask = 0x1;
2323 *num_queues = 1;
2324
Nicolas Ferreda120112015-03-31 15:02:00 +02002325 /* is it macb or gem ?
2326 *
2327 * We need to read directly from the hardware here because
2328 * we are early in the probe process and don't have the
2329 * MACB_CAPS_MACB_IS_GEM flag positioned
2330 */
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03002331 if (!hw_is_gem(mem, native_io))
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002332 return;
2333
2334 /* bit 0 is never set but queue 0 always exists */
Arun Chandrana50dad32015-02-18 16:59:35 +05302335 *queue_mask = readl_relaxed(mem + GEM_DCFG6) & 0xff;
2336
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002337 *queue_mask |= 0x1;
2338
2339 for (hw_q = 1; hw_q < MACB_MAX_QUEUES; ++hw_q)
2340 if (*queue_mask & (1 << hw_q))
2341 (*num_queues)++;
2342}
2343
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002344static int macb_clk_init(struct platform_device *pdev, struct clk **pclk,
2345 struct clk **hclk, struct clk **tx_clk)
2346{
2347 int err;
2348
2349 *pclk = devm_clk_get(&pdev->dev, "pclk");
2350 if (IS_ERR(*pclk)) {
2351 err = PTR_ERR(*pclk);
2352 dev_err(&pdev->dev, "failed to get macb_clk (%u)\n", err);
2353 return err;
2354 }
2355
2356 *hclk = devm_clk_get(&pdev->dev, "hclk");
2357 if (IS_ERR(*hclk)) {
2358 err = PTR_ERR(*hclk);
2359 dev_err(&pdev->dev, "failed to get hclk (%u)\n", err);
2360 return err;
2361 }
2362
2363 *tx_clk = devm_clk_get(&pdev->dev, "tx_clk");
2364 if (IS_ERR(*tx_clk))
2365 *tx_clk = NULL;
2366
2367 err = clk_prepare_enable(*pclk);
2368 if (err) {
2369 dev_err(&pdev->dev, "failed to enable pclk (%u)\n", err);
2370 return err;
2371 }
2372
2373 err = clk_prepare_enable(*hclk);
2374 if (err) {
2375 dev_err(&pdev->dev, "failed to enable hclk (%u)\n", err);
2376 goto err_disable_pclk;
2377 }
2378
2379 err = clk_prepare_enable(*tx_clk);
2380 if (err) {
2381 dev_err(&pdev->dev, "failed to enable tx_clk (%u)\n", err);
2382 goto err_disable_hclk;
2383 }
2384
2385 return 0;
2386
2387err_disable_hclk:
2388 clk_disable_unprepare(*hclk);
2389
2390err_disable_pclk:
2391 clk_disable_unprepare(*pclk);
2392
2393 return err;
2394}
2395
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002396static int macb_init(struct platform_device *pdev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002397{
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002398 struct net_device *dev = platform_get_drvdata(pdev);
Nicolas Ferrebfa09142015-03-31 15:01:59 +02002399 unsigned int hw_q, q;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002400 struct macb *bp = netdev_priv(dev);
2401 struct macb_queue *queue;
2402 int err;
2403 u32 val;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002404
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002405 /* set the queue register mapping once for all: queue0 has a special
2406 * register mapping but we don't want to test the queue index then
2407 * compute the corresponding register offset at run time.
2408 */
Cyrille Pitchencf250de2014-12-15 15:13:32 +01002409 for (hw_q = 0, q = 0; hw_q < MACB_MAX_QUEUES; ++hw_q) {
Nicolas Ferrebfa09142015-03-31 15:01:59 +02002410 if (!(bp->queue_mask & (1 << hw_q)))
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002411 continue;
Jamie Iles461845d2011-03-08 20:19:23 +00002412
Cyrille Pitchencf250de2014-12-15 15:13:32 +01002413 queue = &bp->queues[q];
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002414 queue->bp = bp;
2415 if (hw_q) {
2416 queue->ISR = GEM_ISR(hw_q - 1);
2417 queue->IER = GEM_IER(hw_q - 1);
2418 queue->IDR = GEM_IDR(hw_q - 1);
2419 queue->IMR = GEM_IMR(hw_q - 1);
2420 queue->TBQP = GEM_TBQP(hw_q - 1);
2421 } else {
2422 /* queue0 uses legacy registers */
2423 queue->ISR = MACB_ISR;
2424 queue->IER = MACB_IER;
2425 queue->IDR = MACB_IDR;
2426 queue->IMR = MACB_IMR;
2427 queue->TBQP = MACB_TBQP;
Soren Brinkmanne1824df2013-12-10 16:07:23 -08002428 }
Soren Brinkmanne1824df2013-12-10 16:07:23 -08002429
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002430 /* get irq: here we use the linux queue index, not the hardware
2431 * queue index. the queue irq definitions in the device tree
2432 * must remove the optional gaps that could exist in the
2433 * hardware queue mask.
2434 */
Cyrille Pitchencf250de2014-12-15 15:13:32 +01002435 queue->irq = platform_get_irq(pdev, q);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002436 err = devm_request_irq(&pdev->dev, queue->irq, macb_interrupt,
Punnaiah Choudary Kalluri20488232015-03-06 18:29:12 +01002437 IRQF_SHARED, dev->name, queue);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002438 if (err) {
2439 dev_err(&pdev->dev,
2440 "Unable to request IRQ %d (error %d)\n",
2441 queue->irq, err);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002442 return err;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002443 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002444
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002445 INIT_WORK(&queue->tx_error_task, macb_tx_error_task);
Cyrille Pitchencf250de2014-12-15 15:13:32 +01002446 q++;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002447 }
2448
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00002449 dev->netdev_ops = &macb_netdev_ops;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002450 netif_napi_add(dev, &bp->napi, macb_poll, 64);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002451
Nicolas Ferre4df95132013-06-04 21:57:12 +00002452 /* setup appropriated routines according to adapter type */
2453 if (macb_is_gem(bp)) {
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02002454 bp->max_tx_length = GEM_MAX_TX_LEN;
Nicolas Ferre4df95132013-06-04 21:57:12 +00002455 bp->macbgem_ops.mog_alloc_rx_buffers = gem_alloc_rx_buffers;
2456 bp->macbgem_ops.mog_free_rx_buffers = gem_free_rx_buffers;
2457 bp->macbgem_ops.mog_init_rings = gem_init_rings;
2458 bp->macbgem_ops.mog_rx = gem_rx;
Xander Huff8cd5a562015-01-15 15:55:20 -06002459 dev->ethtool_ops = &gem_ethtool_ops;
Nicolas Ferre4df95132013-06-04 21:57:12 +00002460 } else {
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02002461 bp->max_tx_length = MACB_MAX_TX_LEN;
Nicolas Ferre4df95132013-06-04 21:57:12 +00002462 bp->macbgem_ops.mog_alloc_rx_buffers = macb_alloc_rx_buffers;
2463 bp->macbgem_ops.mog_free_rx_buffers = macb_free_rx_buffers;
2464 bp->macbgem_ops.mog_init_rings = macb_init_rings;
2465 bp->macbgem_ops.mog_rx = macb_rx;
Xander Huff8cd5a562015-01-15 15:55:20 -06002466 dev->ethtool_ops = &macb_ethtool_ops;
Nicolas Ferre4df95132013-06-04 21:57:12 +00002467 }
2468
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02002469 /* Set features */
2470 dev->hw_features = NETIF_F_SG;
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02002471 /* Checksum offload is only available on gem with packet buffer */
2472 if (macb_is_gem(bp) && !(bp->caps & MACB_CAPS_FIFO_MODE))
Cyrille Pitchen924ec532014-07-24 13:51:01 +02002473 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02002474 if (bp->caps & MACB_CAPS_SG_DISABLED)
2475 dev->hw_features &= ~NETIF_F_SG;
2476 dev->features = dev->hw_features;
2477
Neil Armstrongce721a72016-01-05 14:39:16 +01002478 if (!(bp->caps & MACB_CAPS_USRIO_DISABLED)) {
2479 val = 0;
2480 if (bp->phy_interface == PHY_INTERFACE_MODE_RGMII)
2481 val = GEM_BIT(RGMII);
2482 else if (bp->phy_interface == PHY_INTERFACE_MODE_RMII &&
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01002483 (bp->caps & MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII))
Neil Armstrongce721a72016-01-05 14:39:16 +01002484 val = MACB_BIT(RMII);
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01002485 else if (!(bp->caps & MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII))
Neil Armstrongce721a72016-01-05 14:39:16 +01002486 val = MACB_BIT(MII);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002487
Neil Armstrongce721a72016-01-05 14:39:16 +01002488 if (bp->caps & MACB_CAPS_USRIO_HAS_CLKEN)
2489 val |= MACB_BIT(CLKEN);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002490
Neil Armstrongce721a72016-01-05 14:39:16 +01002491 macb_or_gem_writel(bp, USRIO, val);
2492 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002493
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002494 /* Set MII management clock divider */
2495 val = macb_mdc_clk_div(bp);
2496 val |= macb_dbw(bp);
Punnaiah Choudary Kalluri022be252015-11-18 09:03:50 +05302497 if (bp->phy_interface == PHY_INTERFACE_MODE_SGMII)
2498 val |= GEM_BIT(SGMIIEN) | GEM_BIT(PCSSEL);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002499 macb_writel(bp, NCFGR, val);
2500
2501 return 0;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002502}
2503
2504#if defined(CONFIG_OF)
2505/* 1518 rounded up */
2506#define AT91ETHER_MAX_RBUFF_SZ 0x600
2507/* max number of receive buffers */
2508#define AT91ETHER_MAX_RX_DESCR 9
2509
2510/* Initialize and start the Receiver and Transmit subsystems */
2511static int at91ether_start(struct net_device *dev)
2512{
2513 struct macb *lp = netdev_priv(dev);
2514 dma_addr_t addr;
2515 u32 ctl;
2516 int i;
2517
2518 lp->rx_ring = dma_alloc_coherent(&lp->pdev->dev,
2519 (AT91ETHER_MAX_RX_DESCR *
2520 sizeof(struct macb_dma_desc)),
2521 &lp->rx_ring_dma, GFP_KERNEL);
2522 if (!lp->rx_ring)
2523 return -ENOMEM;
2524
2525 lp->rx_buffers = dma_alloc_coherent(&lp->pdev->dev,
2526 AT91ETHER_MAX_RX_DESCR *
2527 AT91ETHER_MAX_RBUFF_SZ,
2528 &lp->rx_buffers_dma, GFP_KERNEL);
2529 if (!lp->rx_buffers) {
2530 dma_free_coherent(&lp->pdev->dev,
2531 AT91ETHER_MAX_RX_DESCR *
2532 sizeof(struct macb_dma_desc),
2533 lp->rx_ring, lp->rx_ring_dma);
2534 lp->rx_ring = NULL;
2535 return -ENOMEM;
2536 }
2537
2538 addr = lp->rx_buffers_dma;
2539 for (i = 0; i < AT91ETHER_MAX_RX_DESCR; i++) {
2540 lp->rx_ring[i].addr = addr;
2541 lp->rx_ring[i].ctrl = 0;
2542 addr += AT91ETHER_MAX_RBUFF_SZ;
2543 }
2544
2545 /* Set the Wrap bit on the last descriptor */
2546 lp->rx_ring[AT91ETHER_MAX_RX_DESCR - 1].addr |= MACB_BIT(RX_WRAP);
2547
2548 /* Reset buffer index */
2549 lp->rx_tail = 0;
2550
2551 /* Program address of descriptor list in Rx Buffer Queue register */
2552 macb_writel(lp, RBQP, lp->rx_ring_dma);
2553
2554 /* Enable Receive and Transmit */
2555 ctl = macb_readl(lp, NCR);
2556 macb_writel(lp, NCR, ctl | MACB_BIT(RE) | MACB_BIT(TE));
2557
2558 return 0;
2559}
2560
2561/* Open the ethernet interface */
2562static int at91ether_open(struct net_device *dev)
2563{
2564 struct macb *lp = netdev_priv(dev);
2565 u32 ctl;
2566 int ret;
2567
2568 /* Clear internal statistics */
2569 ctl = macb_readl(lp, NCR);
2570 macb_writel(lp, NCR, ctl | MACB_BIT(CLRSTAT));
2571
2572 macb_set_hwaddr(lp);
2573
2574 ret = at91ether_start(dev);
2575 if (ret)
2576 return ret;
2577
2578 /* Enable MAC interrupts */
2579 macb_writel(lp, IER, MACB_BIT(RCOMP) |
2580 MACB_BIT(RXUBR) |
2581 MACB_BIT(ISR_TUND) |
2582 MACB_BIT(ISR_RLE) |
2583 MACB_BIT(TCOMP) |
2584 MACB_BIT(ISR_ROVR) |
2585 MACB_BIT(HRESP));
2586
2587 /* schedule a link state check */
2588 phy_start(lp->phy_dev);
2589
2590 netif_start_queue(dev);
2591
2592 return 0;
2593}
2594
2595/* Close the interface */
2596static int at91ether_close(struct net_device *dev)
2597{
2598 struct macb *lp = netdev_priv(dev);
2599 u32 ctl;
2600
2601 /* Disable Receiver and Transmitter */
2602 ctl = macb_readl(lp, NCR);
2603 macb_writel(lp, NCR, ctl & ~(MACB_BIT(TE) | MACB_BIT(RE)));
2604
2605 /* Disable MAC interrupts */
2606 macb_writel(lp, IDR, MACB_BIT(RCOMP) |
2607 MACB_BIT(RXUBR) |
2608 MACB_BIT(ISR_TUND) |
2609 MACB_BIT(ISR_RLE) |
2610 MACB_BIT(TCOMP) |
2611 MACB_BIT(ISR_ROVR) |
2612 MACB_BIT(HRESP));
2613
2614 netif_stop_queue(dev);
2615
2616 dma_free_coherent(&lp->pdev->dev,
2617 AT91ETHER_MAX_RX_DESCR *
2618 sizeof(struct macb_dma_desc),
2619 lp->rx_ring, lp->rx_ring_dma);
2620 lp->rx_ring = NULL;
2621
2622 dma_free_coherent(&lp->pdev->dev,
2623 AT91ETHER_MAX_RX_DESCR * AT91ETHER_MAX_RBUFF_SZ,
2624 lp->rx_buffers, lp->rx_buffers_dma);
2625 lp->rx_buffers = NULL;
2626
2627 return 0;
2628}
2629
2630/* Transmit packet */
2631static int at91ether_start_xmit(struct sk_buff *skb, struct net_device *dev)
2632{
2633 struct macb *lp = netdev_priv(dev);
2634
2635 if (macb_readl(lp, TSR) & MACB_BIT(RM9200_BNQ)) {
2636 netif_stop_queue(dev);
2637
2638 /* Store packet information (to free when Tx completed) */
2639 lp->skb = skb;
2640 lp->skb_length = skb->len;
2641 lp->skb_physaddr = dma_map_single(NULL, skb->data, skb->len,
2642 DMA_TO_DEVICE);
2643
2644 /* Set address of the data in the Transmit Address register */
2645 macb_writel(lp, TAR, lp->skb_physaddr);
2646 /* Set length of the packet in the Transmit Control register */
2647 macb_writel(lp, TCR, skb->len);
2648
2649 } else {
2650 netdev_err(dev, "%s called, but device is busy!\n", __func__);
2651 return NETDEV_TX_BUSY;
2652 }
2653
2654 return NETDEV_TX_OK;
2655}
2656
2657/* Extract received frame from buffer descriptors and sent to upper layers.
2658 * (Called from interrupt context)
2659 */
2660static void at91ether_rx(struct net_device *dev)
2661{
2662 struct macb *lp = netdev_priv(dev);
2663 unsigned char *p_recv;
2664 struct sk_buff *skb;
2665 unsigned int pktlen;
2666
2667 while (lp->rx_ring[lp->rx_tail].addr & MACB_BIT(RX_USED)) {
2668 p_recv = lp->rx_buffers + lp->rx_tail * AT91ETHER_MAX_RBUFF_SZ;
2669 pktlen = MACB_BF(RX_FRMLEN, lp->rx_ring[lp->rx_tail].ctrl);
2670 skb = netdev_alloc_skb(dev, pktlen + 2);
2671 if (skb) {
2672 skb_reserve(skb, 2);
2673 memcpy(skb_put(skb, pktlen), p_recv, pktlen);
2674
2675 skb->protocol = eth_type_trans(skb, dev);
2676 lp->stats.rx_packets++;
2677 lp->stats.rx_bytes += pktlen;
2678 netif_rx(skb);
2679 } else {
2680 lp->stats.rx_dropped++;
2681 }
2682
2683 if (lp->rx_ring[lp->rx_tail].ctrl & MACB_BIT(RX_MHASH_MATCH))
2684 lp->stats.multicast++;
2685
2686 /* reset ownership bit */
2687 lp->rx_ring[lp->rx_tail].addr &= ~MACB_BIT(RX_USED);
2688
2689 /* wrap after last buffer */
2690 if (lp->rx_tail == AT91ETHER_MAX_RX_DESCR - 1)
2691 lp->rx_tail = 0;
2692 else
2693 lp->rx_tail++;
2694 }
2695}
2696
2697/* MAC interrupt handler */
2698static irqreturn_t at91ether_interrupt(int irq, void *dev_id)
2699{
2700 struct net_device *dev = dev_id;
2701 struct macb *lp = netdev_priv(dev);
2702 u32 intstatus, ctl;
2703
2704 /* MAC Interrupt Status register indicates what interrupts are pending.
2705 * It is automatically cleared once read.
2706 */
2707 intstatus = macb_readl(lp, ISR);
2708
2709 /* Receive complete */
2710 if (intstatus & MACB_BIT(RCOMP))
2711 at91ether_rx(dev);
2712
2713 /* Transmit complete */
2714 if (intstatus & MACB_BIT(TCOMP)) {
2715 /* The TCOM bit is set even if the transmission failed */
2716 if (intstatus & (MACB_BIT(ISR_TUND) | MACB_BIT(ISR_RLE)))
2717 lp->stats.tx_errors++;
2718
2719 if (lp->skb) {
2720 dev_kfree_skb_irq(lp->skb);
2721 lp->skb = NULL;
2722 dma_unmap_single(NULL, lp->skb_physaddr,
2723 lp->skb_length, DMA_TO_DEVICE);
2724 lp->stats.tx_packets++;
2725 lp->stats.tx_bytes += lp->skb_length;
2726 }
2727 netif_wake_queue(dev);
2728 }
2729
2730 /* Work-around for EMAC Errata section 41.3.1 */
2731 if (intstatus & MACB_BIT(RXUBR)) {
2732 ctl = macb_readl(lp, NCR);
2733 macb_writel(lp, NCR, ctl & ~MACB_BIT(RE));
2734 macb_writel(lp, NCR, ctl | MACB_BIT(RE));
2735 }
2736
2737 if (intstatus & MACB_BIT(ISR_ROVR))
2738 netdev_err(dev, "ROVR error\n");
2739
2740 return IRQ_HANDLED;
2741}
2742
2743#ifdef CONFIG_NET_POLL_CONTROLLER
2744static void at91ether_poll_controller(struct net_device *dev)
2745{
2746 unsigned long flags;
2747
2748 local_irq_save(flags);
2749 at91ether_interrupt(dev->irq, dev);
2750 local_irq_restore(flags);
2751}
2752#endif
2753
2754static const struct net_device_ops at91ether_netdev_ops = {
2755 .ndo_open = at91ether_open,
2756 .ndo_stop = at91ether_close,
2757 .ndo_start_xmit = at91ether_start_xmit,
2758 .ndo_get_stats = macb_get_stats,
2759 .ndo_set_rx_mode = macb_set_rx_mode,
2760 .ndo_set_mac_address = eth_mac_addr,
2761 .ndo_do_ioctl = macb_ioctl,
2762 .ndo_validate_addr = eth_validate_addr,
2763 .ndo_change_mtu = eth_change_mtu,
2764#ifdef CONFIG_NET_POLL_CONTROLLER
2765 .ndo_poll_controller = at91ether_poll_controller,
2766#endif
2767};
2768
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002769static int at91ether_clk_init(struct platform_device *pdev, struct clk **pclk,
2770 struct clk **hclk, struct clk **tx_clk)
2771{
2772 int err;
2773
2774 *hclk = NULL;
2775 *tx_clk = NULL;
2776
2777 *pclk = devm_clk_get(&pdev->dev, "ether_clk");
2778 if (IS_ERR(*pclk))
2779 return PTR_ERR(*pclk);
2780
2781 err = clk_prepare_enable(*pclk);
2782 if (err) {
2783 dev_err(&pdev->dev, "failed to enable pclk (%u)\n", err);
2784 return err;
2785 }
2786
2787 return 0;
2788}
2789
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002790static int at91ether_init(struct platform_device *pdev)
2791{
2792 struct net_device *dev = platform_get_drvdata(pdev);
2793 struct macb *bp = netdev_priv(dev);
2794 int err;
2795 u32 reg;
2796
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002797 dev->netdev_ops = &at91ether_netdev_ops;
2798 dev->ethtool_ops = &macb_ethtool_ops;
2799
2800 err = devm_request_irq(&pdev->dev, dev->irq, at91ether_interrupt,
2801 0, dev->name, dev);
2802 if (err)
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002803 return err;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002804
2805 macb_writel(bp, NCR, 0);
2806
2807 reg = MACB_BF(CLK, MACB_CLK_DIV32) | MACB_BIT(BIG);
2808 if (bp->phy_interface == PHY_INTERFACE_MODE_RMII)
2809 reg |= MACB_BIT(RM9200_RMII);
2810
2811 macb_writel(bp, NCFGR, reg);
2812
2813 return 0;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002814}
2815
David S. Miller3cef5c52015-03-09 23:38:02 -04002816static const struct macb_config at91sam9260_config = {
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01002817 .caps = MACB_CAPS_USRIO_HAS_CLKEN | MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002818 .clk_init = macb_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002819 .init = macb_init,
2820};
2821
David S. Miller3cef5c52015-03-09 23:38:02 -04002822static const struct macb_config pc302gem_config = {
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002823 .caps = MACB_CAPS_SG_DISABLED | MACB_CAPS_GIGABIT_MODE_AVAILABLE,
2824 .dma_burst_length = 16,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002825 .clk_init = macb_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002826 .init = macb_init,
2827};
2828
Cyrille Pitchen5c8fe712015-06-18 16:27:23 +02002829static const struct macb_config sama5d2_config = {
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01002830 .caps = MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
Cyrille Pitchen5c8fe712015-06-18 16:27:23 +02002831 .dma_burst_length = 16,
2832 .clk_init = macb_clk_init,
2833 .init = macb_init,
2834};
2835
David S. Miller3cef5c52015-03-09 23:38:02 -04002836static const struct macb_config sama5d3_config = {
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01002837 .caps = MACB_CAPS_SG_DISABLED | MACB_CAPS_GIGABIT_MODE_AVAILABLE
2838 | MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002839 .dma_burst_length = 16,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002840 .clk_init = macb_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002841 .init = macb_init,
2842};
2843
David S. Miller3cef5c52015-03-09 23:38:02 -04002844static const struct macb_config sama5d4_config = {
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01002845 .caps = MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002846 .dma_burst_length = 4,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002847 .clk_init = macb_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002848 .init = macb_init,
2849};
2850
David S. Miller3cef5c52015-03-09 23:38:02 -04002851static const struct macb_config emac_config = {
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002852 .clk_init = at91ether_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002853 .init = at91ether_init,
2854};
2855
Neil Armstronge611b5b2016-01-05 14:39:17 +01002856static const struct macb_config np4_config = {
2857 .caps = MACB_CAPS_USRIO_DISABLED,
2858 .clk_init = macb_clk_init,
2859 .init = macb_init,
2860};
David S. Miller36583eb2015-05-23 01:22:35 -04002861
Harini Katakam7b61f9c2015-05-06 22:27:16 +05302862static const struct macb_config zynqmp_config = {
Punnaiah Choudary Kalluri7baaa902015-07-06 10:02:53 +05302863 .caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE | MACB_CAPS_JUMBO,
Harini Katakam7b61f9c2015-05-06 22:27:16 +05302864 .dma_burst_length = 16,
2865 .clk_init = macb_clk_init,
2866 .init = macb_init,
Harini Katakam98b5a0f42015-05-06 22:27:17 +05302867 .jumbo_max_len = 10240,
Harini Katakam7b61f9c2015-05-06 22:27:16 +05302868};
2869
Nathan Sullivan222ca8e2015-05-22 09:22:10 -05002870static const struct macb_config zynq_config = {
Punnaiah Choudary Kalluri7baaa902015-07-06 10:02:53 +05302871 .caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE | MACB_CAPS_NO_GIGABIT_HALF,
Nathan Sullivan222ca8e2015-05-22 09:22:10 -05002872 .dma_burst_length = 16,
2873 .clk_init = macb_clk_init,
2874 .init = macb_init,
2875};
2876
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002877static const struct of_device_id macb_dt_ids[] = {
2878 { .compatible = "cdns,at32ap7000-macb" },
2879 { .compatible = "cdns,at91sam9260-macb", .data = &at91sam9260_config },
2880 { .compatible = "cdns,macb" },
Neil Armstronge611b5b2016-01-05 14:39:17 +01002881 { .compatible = "cdns,np4-macb", .data = &np4_config },
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002882 { .compatible = "cdns,pc302-gem", .data = &pc302gem_config },
2883 { .compatible = "cdns,gem", .data = &pc302gem_config },
Cyrille Pitchen5c8fe712015-06-18 16:27:23 +02002884 { .compatible = "atmel,sama5d2-gem", .data = &sama5d2_config },
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002885 { .compatible = "atmel,sama5d3-gem", .data = &sama5d3_config },
2886 { .compatible = "atmel,sama5d4-gem", .data = &sama5d4_config },
2887 { .compatible = "cdns,at91rm9200-emac", .data = &emac_config },
2888 { .compatible = "cdns,emac", .data = &emac_config },
Harini Katakam7b61f9c2015-05-06 22:27:16 +05302889 { .compatible = "cdns,zynqmp-gem", .data = &zynqmp_config},
Nathan Sullivan222ca8e2015-05-22 09:22:10 -05002890 { .compatible = "cdns,zynq-gem", .data = &zynq_config },
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002891 { /* sentinel */ }
2892};
2893MODULE_DEVICE_TABLE(of, macb_dt_ids);
2894#endif /* CONFIG_OF */
2895
2896static int macb_probe(struct platform_device *pdev)
2897{
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002898 int (*clk_init)(struct platform_device *, struct clk **,
2899 struct clk **, struct clk **)
2900 = macb_clk_init;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002901 int (*init)(struct platform_device *) = macb_init;
2902 struct device_node *np = pdev->dev.of_node;
Gregory CLEMENT270c4992015-12-17 10:51:04 +01002903 struct device_node *phy_node;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002904 const struct macb_config *macb_config = NULL;
Sudip Mukherjee36df7452016-01-25 11:43:09 +05302905 struct clk *pclk, *hclk = NULL, *tx_clk = NULL;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002906 unsigned int queue_mask, num_queues;
2907 struct macb_platform_data *pdata;
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03002908 bool native_io;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002909 struct phy_device *phydev;
2910 struct net_device *dev;
2911 struct resource *regs;
2912 void __iomem *mem;
2913 const char *mac;
2914 struct macb *bp;
2915 int err;
2916
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03002917 regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2918 mem = devm_ioremap_resource(&pdev->dev, regs);
2919 if (IS_ERR(mem))
2920 return PTR_ERR(mem);
2921
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002922 if (np) {
2923 const struct of_device_id *match;
2924
2925 match = of_match_node(macb_dt_ids, np);
2926 if (match && match->data) {
2927 macb_config = match->data;
2928 clk_init = macb_config->clk_init;
2929 init = macb_config->init;
2930 }
2931 }
2932
2933 err = clk_init(pdev, &pclk, &hclk, &tx_clk);
2934 if (err)
2935 return err;
2936
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03002937 native_io = hw_is_native_io(mem);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002938
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03002939 macb_probe_queues(mem, native_io, &queue_mask, &num_queues);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002940 dev = alloc_etherdev_mq(sizeof(*bp), num_queues);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002941 if (!dev) {
2942 err = -ENOMEM;
2943 goto err_disable_clocks;
2944 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002945
2946 dev->base_addr = regs->start;
2947
2948 SET_NETDEV_DEV(dev, &pdev->dev);
2949
2950 bp = netdev_priv(dev);
2951 bp->pdev = pdev;
2952 bp->dev = dev;
2953 bp->regs = mem;
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03002954 bp->native_io = native_io;
2955 if (native_io) {
David S. Miller7a6e0702015-07-27 14:24:48 -07002956 bp->macb_reg_readl = hw_readl_native;
2957 bp->macb_reg_writel = hw_writel_native;
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03002958 } else {
David S. Miller7a6e0702015-07-27 14:24:48 -07002959 bp->macb_reg_readl = hw_readl;
2960 bp->macb_reg_writel = hw_writel;
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03002961 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002962 bp->num_queues = num_queues;
Nicolas Ferrebfa09142015-03-31 15:01:59 +02002963 bp->queue_mask = queue_mask;
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002964 if (macb_config)
2965 bp->dma_burst_length = macb_config->dma_burst_length;
2966 bp->pclk = pclk;
2967 bp->hclk = hclk;
2968 bp->tx_clk = tx_clk;
Andy Shevchenkof36dbe62015-07-24 21:24:00 +03002969 if (macb_config)
Harini Katakam98b5a0f42015-05-06 22:27:17 +05302970 bp->jumbo_max_len = macb_config->jumbo_max_len;
Harini Katakam98b5a0f42015-05-06 22:27:17 +05302971
Sergio Prado3e2a5e12016-02-09 12:07:16 -02002972 bp->wol = 0;
Sergio Prado7c4a1d02016-02-16 21:10:45 -02002973 if (of_get_property(np, "magic-packet", NULL))
Sergio Prado3e2a5e12016-02-09 12:07:16 -02002974 bp->wol |= MACB_WOL_HAS_MAGIC_PACKET;
2975 device_init_wakeup(&pdev->dev, bp->wol & MACB_WOL_HAS_MAGIC_PACKET);
2976
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002977 spin_lock_init(&bp->lock);
2978
Nicolas Ferread783472015-03-31 15:02:02 +02002979 /* setup capabilities */
Nicolas Ferref6970502015-03-31 15:02:01 +02002980 macb_configure_caps(bp, macb_config);
2981
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002982 platform_set_drvdata(pdev, dev);
2983
2984 dev->irq = platform_get_irq(pdev, 0);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002985 if (dev->irq < 0) {
2986 err = dev->irq;
2987 goto err_disable_clocks;
2988 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002989
2990 mac = of_get_mac_address(np);
Guenter Roeck50907042013-04-02 09:35:09 +00002991 if (mac)
2992 memcpy(bp->dev->dev_addr, mac, ETH_ALEN);
2993 else
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +01002994 macb_get_hwaddr(bp);
frederic RODO6c36a702007-07-12 19:07:24 +02002995
Gregory CLEMENT5833e052015-12-11 11:34:53 +01002996 /* Power up the PHY if there is a GPIO reset */
Gregory CLEMENT270c4992015-12-17 10:51:04 +01002997 phy_node = of_get_next_available_child(np, NULL);
2998 if (phy_node) {
2999 int gpio = of_get_named_gpio(phy_node, "reset-gpios", 0);
Charles Keepax0e3e7992016-03-28 13:47:42 +01003000 if (gpio_is_valid(gpio)) {
Gregory CLEMENT270c4992015-12-17 10:51:04 +01003001 bp->reset_gpio = gpio_to_desc(gpio);
Charles Keepax0e3e7992016-03-28 13:47:42 +01003002 gpiod_direction_output(bp->reset_gpio, 1);
3003 }
Gregory CLEMENT270c4992015-12-17 10:51:04 +01003004 }
3005 of_node_put(phy_node);
Gregory CLEMENT5833e052015-12-11 11:34:53 +01003006
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003007 err = of_get_phy_mode(np);
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +01003008 if (err < 0) {
Jingoo Hanc607a0d2013-08-30 14:12:21 +09003009 pdata = dev_get_platdata(&pdev->dev);
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +01003010 if (pdata && pdata->is_rmii)
3011 bp->phy_interface = PHY_INTERFACE_MODE_RMII;
3012 else
3013 bp->phy_interface = PHY_INTERFACE_MODE_MII;
3014 } else {
3015 bp->phy_interface = err;
3016 }
3017
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003018 /* IP specific init */
3019 err = init(pdev);
3020 if (err)
3021 goto err_out_free_netdev;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003022
Florian Fainellicf669662016-05-02 18:38:45 -07003023 err = macb_mii_init(bp);
3024 if (err)
3025 goto err_out_free_netdev;
3026
3027 phydev = bp->phy_dev;
3028
3029 netif_carrier_off(dev);
3030
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003031 err = register_netdev(dev);
3032 if (err) {
3033 dev_err(&pdev->dev, "Cannot register net device, aborting.\n");
Florian Fainellicf669662016-05-02 18:38:45 -07003034 goto err_out_unregister_mdio;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003035 }
3036
Florian Fainellicf669662016-05-02 18:38:45 -07003037 phy_attached_info(phydev);
Nicolas Ferre03fc4722012-07-03 23:14:13 +00003038
Bo Shen58798232014-09-13 01:57:49 +02003039 netdev_info(dev, "Cadence %s rev 0x%08x at 0x%08lx irq %d (%pM)\n",
3040 macb_is_gem(bp) ? "GEM" : "MACB", macb_readl(bp, MID),
3041 dev->base_addr, dev->irq, dev->dev_addr);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003042
3043 return 0;
3044
Florian Fainellicf669662016-05-02 18:38:45 -07003045err_out_unregister_mdio:
3046 phy_disconnect(bp->phy_dev);
3047 mdiobus_unregister(bp->mii_bus);
3048 mdiobus_free(bp->mii_bus);
3049
3050 /* Shutdown the PHY if there is a GPIO reset */
3051 if (bp->reset_gpio)
3052 gpiod_set_value(bp->reset_gpio, 0);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003053
Cyrille Pitchencf250de2014-12-15 15:13:32 +01003054err_out_free_netdev:
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003055 free_netdev(dev);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003056
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003057err_disable_clocks:
3058 clk_disable_unprepare(tx_clk);
3059 clk_disable_unprepare(hclk);
3060 clk_disable_unprepare(pclk);
3061
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003062 return err;
3063}
3064
Nicolae Rosia9e86d7662015-01-22 17:31:05 +00003065static int macb_remove(struct platform_device *pdev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003066{
3067 struct net_device *dev;
3068 struct macb *bp;
3069
3070 dev = platform_get_drvdata(pdev);
3071
3072 if (dev) {
3073 bp = netdev_priv(dev);
Atsushi Nemoto84b79012008-04-10 23:30:07 +09003074 if (bp->phy_dev)
3075 phy_disconnect(bp->phy_dev);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07003076 mdiobus_unregister(bp->mii_bus);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07003077 mdiobus_free(bp->mii_bus);
Gregory CLEMENT5833e052015-12-11 11:34:53 +01003078
3079 /* Shutdown the PHY if there is a GPIO reset */
Charles Keepax0e3e7992016-03-28 13:47:42 +01003080 if (bp->reset_gpio)
3081 gpiod_set_value(bp->reset_gpio, 0);
Gregory CLEMENT5833e052015-12-11 11:34:53 +01003082
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003083 unregister_netdev(dev);
Cyrille Pitchen93b31f42015-03-07 07:23:31 +01003084 clk_disable_unprepare(bp->tx_clk);
Steffen Trumtrarace58012013-03-27 23:07:07 +00003085 clk_disable_unprepare(bp->hclk);
Steffen Trumtrarace58012013-03-27 23:07:07 +00003086 clk_disable_unprepare(bp->pclk);
Cyrille Pitchene965be72014-12-15 15:13:31 +01003087 free_netdev(dev);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003088 }
3089
3090 return 0;
3091}
3092
Michal Simekd23823d2015-01-23 09:36:03 +01003093static int __maybe_unused macb_suspend(struct device *dev)
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01003094{
Soren Brinkmann0dfc3e12013-12-10 16:07:19 -08003095 struct platform_device *pdev = to_platform_device(dev);
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01003096 struct net_device *netdev = platform_get_drvdata(pdev);
3097 struct macb *bp = netdev_priv(netdev);
3098
Nicolas Ferre03fc4722012-07-03 23:14:13 +00003099 netif_carrier_off(netdev);
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01003100 netif_device_detach(netdev);
3101
Sergio Prado3e2a5e12016-02-09 12:07:16 -02003102 if (bp->wol & MACB_WOL_ENABLED) {
3103 macb_writel(bp, IER, MACB_BIT(WOL));
3104 macb_writel(bp, WOL, MACB_BIT(MAG));
3105 enable_irq_wake(bp->queues[0].irq);
3106 } else {
3107 clk_disable_unprepare(bp->tx_clk);
3108 clk_disable_unprepare(bp->hclk);
3109 clk_disable_unprepare(bp->pclk);
3110 }
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01003111
3112 return 0;
3113}
3114
Michal Simekd23823d2015-01-23 09:36:03 +01003115static int __maybe_unused macb_resume(struct device *dev)
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01003116{
Soren Brinkmann0dfc3e12013-12-10 16:07:19 -08003117 struct platform_device *pdev = to_platform_device(dev);
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01003118 struct net_device *netdev = platform_get_drvdata(pdev);
3119 struct macb *bp = netdev_priv(netdev);
3120
Sergio Prado3e2a5e12016-02-09 12:07:16 -02003121 if (bp->wol & MACB_WOL_ENABLED) {
3122 macb_writel(bp, IDR, MACB_BIT(WOL));
3123 macb_writel(bp, WOL, 0);
3124 disable_irq_wake(bp->queues[0].irq);
3125 } else {
3126 clk_prepare_enable(bp->pclk);
3127 clk_prepare_enable(bp->hclk);
3128 clk_prepare_enable(bp->tx_clk);
3129 }
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01003130
3131 netif_device_attach(netdev);
3132
3133 return 0;
3134}
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01003135
Soren Brinkmann0dfc3e12013-12-10 16:07:19 -08003136static SIMPLE_DEV_PM_OPS(macb_pm_ops, macb_suspend, macb_resume);
3137
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003138static struct platform_driver macb_driver = {
Nicolae Rosia9e86d7662015-01-22 17:31:05 +00003139 .probe = macb_probe,
3140 .remove = macb_remove,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003141 .driver = {
3142 .name = "macb",
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +01003143 .of_match_table = of_match_ptr(macb_dt_ids),
Soren Brinkmann0dfc3e12013-12-10 16:07:19 -08003144 .pm = &macb_pm_ops,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003145 },
3146};
3147
Nicolae Rosia9e86d7662015-01-22 17:31:05 +00003148module_platform_driver(macb_driver);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003149
3150MODULE_LICENSE("GPL");
Jamie Ilesf75ba502011-11-08 10:12:32 +00003151MODULE_DESCRIPTION("Cadence MACB/GEM Ethernet driver");
Jean Delvaree05503e2011-05-18 16:49:24 +02003152MODULE_AUTHOR("Haavard Skinnemoen (Atmel)");
Kay Sievers72abb462008-04-18 13:50:44 -07003153MODULE_ALIAS("platform:macb");