blob: eec3200ade4a5f8fa1a126c812fa01926b648510 [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
Moritz Fischer64ec42f2016-03-29 19:11:12 -070064/* Graceful stop timeouts in us. We should allow up to
Nicolas Ferree86cd532012-10-31 06:04:57 +000065 * 1 frame time (10 Mbits/s, full-duplex, ignoring collisions)
66 */
67#define MACB_HALT_TIMEOUT 1230
Haavard Skinnemoen89e57852006-11-09 14:51:17 +010068
Havard Skinnemoen55054a12012-10-31 06:04:55 +000069/* Ring buffer accessors */
70static unsigned int macb_tx_ring_wrap(unsigned int index)
71{
72 return index & (TX_RING_SIZE - 1);
73}
74
Cyrille Pitchen02c958d2014-12-12 13:26:44 +010075static struct macb_dma_desc *macb_tx_desc(struct macb_queue *queue,
76 unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +000077{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +010078 return &queue->tx_ring[macb_tx_ring_wrap(index)];
Havard Skinnemoen55054a12012-10-31 06:04:55 +000079}
80
Cyrille Pitchen02c958d2014-12-12 13:26:44 +010081static struct macb_tx_skb *macb_tx_skb(struct macb_queue *queue,
82 unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +000083{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +010084 return &queue->tx_skb[macb_tx_ring_wrap(index)];
Havard Skinnemoen55054a12012-10-31 06:04:55 +000085}
86
Cyrille Pitchen02c958d2014-12-12 13:26:44 +010087static dma_addr_t macb_tx_dma(struct macb_queue *queue, unsigned int index)
Havard Skinnemoen55054a12012-10-31 06:04:55 +000088{
89 dma_addr_t offset;
90
91 offset = macb_tx_ring_wrap(index) * sizeof(struct macb_dma_desc);
92
Cyrille Pitchen02c958d2014-12-12 13:26:44 +010093 return queue->tx_ring_dma + offset;
Havard Skinnemoen55054a12012-10-31 06:04:55 +000094}
95
96static unsigned int macb_rx_ring_wrap(unsigned int index)
97{
98 return index & (RX_RING_SIZE - 1);
99}
100
101static struct macb_dma_desc *macb_rx_desc(struct macb *bp, unsigned int index)
102{
103 return &bp->rx_ring[macb_rx_ring_wrap(index)];
104}
105
106static void *macb_rx_buffer(struct macb *bp, unsigned int index)
107{
Nicolas Ferre1b447912013-06-04 21:57:11 +0000108 return bp->rx_buffers + bp->rx_buffer_size * macb_rx_ring_wrap(index);
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000109}
110
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +0300111/* I/O accessors */
112static u32 hw_readl_native(struct macb *bp, int offset)
113{
114 return __raw_readl(bp->regs + offset);
115}
116
117static void hw_writel_native(struct macb *bp, int offset, u32 value)
118{
119 __raw_writel(value, bp->regs + offset);
120}
121
122static u32 hw_readl(struct macb *bp, int offset)
123{
124 return readl_relaxed(bp->regs + offset);
125}
126
127static void hw_writel(struct macb *bp, int offset, u32 value)
128{
129 writel_relaxed(value, bp->regs + offset);
130}
131
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700132/* Find the CPU endianness by using the loopback bit of NCR register. When the
Moritz Fischer88023be2016-03-29 19:11:15 -0700133 * CPU is in big endian we need to program swapped mode for management
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +0300134 * descriptor access.
135 */
136static bool hw_is_native_io(void __iomem *addr)
137{
138 u32 value = MACB_BIT(LLB);
139
140 __raw_writel(value, addr + MACB_NCR);
141 value = __raw_readl(addr + MACB_NCR);
142
143 /* Write 0 back to disable everything */
144 __raw_writel(0, addr + MACB_NCR);
145
146 return value == MACB_BIT(LLB);
147}
148
149static bool hw_is_gem(void __iomem *addr, bool native_io)
150{
151 u32 id;
152
153 if (native_io)
154 id = __raw_readl(addr + MACB_MID);
155 else
156 id = readl_relaxed(addr + MACB_MID);
157
158 return MACB_BFEXT(IDNUM, id) >= 0x2;
159}
160
Cyrille Pitchen421d9df2015-03-07 07:23:32 +0100161static void macb_set_hwaddr(struct macb *bp)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100162{
163 u32 bottom;
164 u16 top;
165
166 bottom = cpu_to_le32(*((u32 *)bp->dev->dev_addr));
Jamie Ilesf75ba502011-11-08 10:12:32 +0000167 macb_or_gem_writel(bp, SA1B, bottom);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100168 top = cpu_to_le16(*((u16 *)(bp->dev->dev_addr + 4)));
Jamie Ilesf75ba502011-11-08 10:12:32 +0000169 macb_or_gem_writel(bp, SA1T, top);
Joachim Eastwood3629a6c2012-11-11 13:56:28 +0000170
171 /* Clear unused address register sets */
172 macb_or_gem_writel(bp, SA2B, 0);
173 macb_or_gem_writel(bp, SA2T, 0);
174 macb_or_gem_writel(bp, SA3B, 0);
175 macb_or_gem_writel(bp, SA3T, 0);
176 macb_or_gem_writel(bp, SA4B, 0);
177 macb_or_gem_writel(bp, SA4T, 0);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100178}
179
Cyrille Pitchen421d9df2015-03-07 07:23:32 +0100180static void macb_get_hwaddr(struct macb *bp)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100181{
Joachim Eastwoodd25e78a2012-11-07 08:14:51 +0000182 struct macb_platform_data *pdata;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100183 u32 bottom;
184 u16 top;
185 u8 addr[6];
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000186 int i;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100187
Jingoo Hanc607a0d2013-08-30 14:12:21 +0900188 pdata = dev_get_platdata(&bp->pdev->dev);
Joachim Eastwoodd25e78a2012-11-07 08:14:51 +0000189
Moritz Fischeraa50b552016-03-29 19:11:13 -0700190 /* Check all 4 address register for valid address */
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000191 for (i = 0; i < 4; i++) {
192 bottom = macb_or_gem_readl(bp, SA1B + i * 8);
193 top = macb_or_gem_readl(bp, SA1T + i * 8);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100194
Joachim Eastwoodd25e78a2012-11-07 08:14:51 +0000195 if (pdata && pdata->rev_eth_addr) {
196 addr[5] = bottom & 0xff;
197 addr[4] = (bottom >> 8) & 0xff;
198 addr[3] = (bottom >> 16) & 0xff;
199 addr[2] = (bottom >> 24) & 0xff;
200 addr[1] = top & 0xff;
201 addr[0] = (top & 0xff00) >> 8;
202 } else {
203 addr[0] = bottom & 0xff;
204 addr[1] = (bottom >> 8) & 0xff;
205 addr[2] = (bottom >> 16) & 0xff;
206 addr[3] = (bottom >> 24) & 0xff;
207 addr[4] = top & 0xff;
208 addr[5] = (top >> 8) & 0xff;
209 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100210
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000211 if (is_valid_ether_addr(addr)) {
212 memcpy(bp->dev->dev_addr, addr, sizeof(addr));
213 return;
214 }
Sven Schnelled1d57412008-06-09 16:33:57 -0700215 }
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000216
Andy Shevchenkoa35919e2015-07-24 21:24:01 +0300217 dev_info(&bp->pdev->dev, "invalid hw address, using random\n");
Joachim Eastwood17b8bb32012-11-07 08:14:50 +0000218 eth_hw_addr_random(bp->dev);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100219}
220
frederic RODO6c36a702007-07-12 19:07:24 +0200221static int macb_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100222{
frederic RODO6c36a702007-07-12 19:07:24 +0200223 struct macb *bp = bus->priv;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100224 int value;
225
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100226 macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_SOF)
227 | MACB_BF(RW, MACB_MAN_READ)
frederic RODO6c36a702007-07-12 19:07:24 +0200228 | MACB_BF(PHYA, mii_id)
229 | MACB_BF(REGA, regnum)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100230 | MACB_BF(CODE, MACB_MAN_CODE)));
231
frederic RODO6c36a702007-07-12 19:07:24 +0200232 /* wait for end of transfer */
233 while (!MACB_BFEXT(IDLE, macb_readl(bp, NSR)))
234 cpu_relax();
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100235
236 value = MACB_BFEXT(DATA, macb_readl(bp, MAN));
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100237
238 return value;
239}
240
frederic RODO6c36a702007-07-12 19:07:24 +0200241static int macb_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
242 u16 value)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100243{
frederic RODO6c36a702007-07-12 19:07:24 +0200244 struct macb *bp = bus->priv;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100245
246 macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_SOF)
247 | MACB_BF(RW, MACB_MAN_WRITE)
frederic RODO6c36a702007-07-12 19:07:24 +0200248 | MACB_BF(PHYA, mii_id)
249 | MACB_BF(REGA, regnum)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100250 | MACB_BF(CODE, MACB_MAN_CODE)
frederic RODO6c36a702007-07-12 19:07:24 +0200251 | MACB_BF(DATA, value)));
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100252
frederic RODO6c36a702007-07-12 19:07:24 +0200253 /* wait for end of transfer */
254 while (!MACB_BFEXT(IDLE, macb_readl(bp, NSR)))
255 cpu_relax();
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100256
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100257 return 0;
258}
259
Soren Brinkmanne1824df2013-12-10 16:07:23 -0800260/**
261 * macb_set_tx_clk() - Set a clock to a new frequency
262 * @clk Pointer to the clock to change
263 * @rate New frequency in Hz
264 * @dev Pointer to the struct net_device
265 */
266static void macb_set_tx_clk(struct clk *clk, int speed, struct net_device *dev)
267{
268 long ferr, rate, rate_rounded;
269
Cyrille Pitchen93b31f42015-03-07 07:23:31 +0100270 if (!clk)
271 return;
272
Soren Brinkmanne1824df2013-12-10 16:07:23 -0800273 switch (speed) {
274 case SPEED_10:
275 rate = 2500000;
276 break;
277 case SPEED_100:
278 rate = 25000000;
279 break;
280 case SPEED_1000:
281 rate = 125000000;
282 break;
283 default:
Soren Brinkmann9319e472013-12-10 20:57:57 -0800284 return;
Soren Brinkmanne1824df2013-12-10 16:07:23 -0800285 }
286
287 rate_rounded = clk_round_rate(clk, rate);
288 if (rate_rounded < 0)
289 return;
290
291 /* RGMII allows 50 ppm frequency error. Test and warn if this limit
292 * is not satisfied.
293 */
294 ferr = abs(rate_rounded - rate);
295 ferr = DIV_ROUND_UP(ferr, rate / 100000);
296 if (ferr > 5)
297 netdev_warn(dev, "unable to generate target frequency: %ld Hz\n",
Moritz Fischeraa50b552016-03-29 19:11:13 -0700298 rate);
Soren Brinkmanne1824df2013-12-10 16:07:23 -0800299
300 if (clk_set_rate(clk, rate_rounded))
301 netdev_err(dev, "adjusting tx_clk failed.\n");
302}
303
frederic RODO6c36a702007-07-12 19:07:24 +0200304static void macb_handle_link_change(struct net_device *dev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100305{
frederic RODO6c36a702007-07-12 19:07:24 +0200306 struct macb *bp = netdev_priv(dev);
307 struct phy_device *phydev = bp->phy_dev;
308 unsigned long flags;
frederic RODO6c36a702007-07-12 19:07:24 +0200309 int status_change = 0;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100310
frederic RODO6c36a702007-07-12 19:07:24 +0200311 spin_lock_irqsave(&bp->lock, flags);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100312
frederic RODO6c36a702007-07-12 19:07:24 +0200313 if (phydev->link) {
314 if ((bp->speed != phydev->speed) ||
315 (bp->duplex != phydev->duplex)) {
316 u32 reg;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100317
frederic RODO6c36a702007-07-12 19:07:24 +0200318 reg = macb_readl(bp, NCFGR);
319 reg &= ~(MACB_BIT(SPD) | MACB_BIT(FD));
Patrice Vilchez140b7552012-10-31 06:04:50 +0000320 if (macb_is_gem(bp))
321 reg &= ~GEM_BIT(GBE);
frederic RODO6c36a702007-07-12 19:07:24 +0200322
323 if (phydev->duplex)
324 reg |= MACB_BIT(FD);
Atsushi Nemoto179956f2008-02-21 22:50:54 +0900325 if (phydev->speed == SPEED_100)
frederic RODO6c36a702007-07-12 19:07:24 +0200326 reg |= MACB_BIT(SPD);
Nicolas Ferree1755872014-07-24 13:50:58 +0200327 if (phydev->speed == SPEED_1000 &&
328 bp->caps & MACB_CAPS_GIGABIT_MODE_AVAILABLE)
Patrice Vilchez140b7552012-10-31 06:04:50 +0000329 reg |= GEM_BIT(GBE);
frederic RODO6c36a702007-07-12 19:07:24 +0200330
Patrice Vilchez140b7552012-10-31 06:04:50 +0000331 macb_or_gem_writel(bp, NCFGR, reg);
frederic RODO6c36a702007-07-12 19:07:24 +0200332
333 bp->speed = phydev->speed;
334 bp->duplex = phydev->duplex;
335 status_change = 1;
336 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100337 }
338
frederic RODO6c36a702007-07-12 19:07:24 +0200339 if (phydev->link != bp->link) {
Anton Vorontsovc8f15682008-07-22 15:41:24 -0700340 if (!phydev->link) {
frederic RODO6c36a702007-07-12 19:07:24 +0200341 bp->speed = 0;
342 bp->duplex = -1;
343 }
344 bp->link = phydev->link;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100345
frederic RODO6c36a702007-07-12 19:07:24 +0200346 status_change = 1;
347 }
348
349 spin_unlock_irqrestore(&bp->lock, flags);
350
351 if (status_change) {
Nicolas Ferre03fc4722012-07-03 23:14:13 +0000352 if (phydev->link) {
Jaeden Amero2c29b232015-03-12 18:07:54 -0500353 /* Update the TX clock rate if and only if the link is
354 * up and there has been a link change.
355 */
356 macb_set_tx_clk(bp->tx_clk, phydev->speed, dev);
357
Nicolas Ferre03fc4722012-07-03 23:14:13 +0000358 netif_carrier_on(dev);
Jamie Ilesc220f8c2011-03-08 20:27:08 +0000359 netdev_info(dev, "link up (%d/%s)\n",
360 phydev->speed,
361 phydev->duplex == DUPLEX_FULL ?
362 "Full" : "Half");
Nicolas Ferre03fc4722012-07-03 23:14:13 +0000363 } else {
364 netif_carrier_off(dev);
Jamie Ilesc220f8c2011-03-08 20:27:08 +0000365 netdev_info(dev, "link down\n");
Nicolas Ferre03fc4722012-07-03 23:14:13 +0000366 }
frederic RODO6c36a702007-07-12 19:07:24 +0200367 }
368}
369
370/* based on au1000_eth. c*/
371static int macb_mii_probe(struct net_device *dev)
372{
373 struct macb *bp = netdev_priv(dev);
Joachim Eastwood2dbfdbb2012-11-11 13:56:27 +0000374 struct macb_platform_data *pdata;
Jiri Pirko7455a762010-02-08 05:12:08 +0000375 struct phy_device *phydev;
Joachim Eastwood2dbfdbb2012-11-11 13:56:27 +0000376 int phy_irq;
Jiri Pirko7455a762010-02-08 05:12:08 +0000377 int ret;
frederic RODO6c36a702007-07-12 19:07:24 +0200378
Jiri Pirko7455a762010-02-08 05:12:08 +0000379 phydev = phy_find_first(bp->mii_bus);
frederic RODO6c36a702007-07-12 19:07:24 +0200380 if (!phydev) {
Jamie Ilesc220f8c2011-03-08 20:27:08 +0000381 netdev_err(dev, "no PHY found\n");
Boris BREZILLON7daa78e2013-08-27 14:36:14 +0200382 return -ENXIO;
frederic RODO6c36a702007-07-12 19:07:24 +0200383 }
384
Joachim Eastwood2dbfdbb2012-11-11 13:56:27 +0000385 pdata = dev_get_platdata(&bp->pdev->dev);
386 if (pdata && gpio_is_valid(pdata->phy_irq_pin)) {
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700387 ret = devm_gpio_request(&bp->pdev->dev, pdata->phy_irq_pin,
388 "phy int");
Joachim Eastwood2dbfdbb2012-11-11 13:56:27 +0000389 if (!ret) {
390 phy_irq = gpio_to_irq(pdata->phy_irq_pin);
391 phydev->irq = (phy_irq < 0) ? PHY_POLL : phy_irq;
392 }
393 }
frederic RODO6c36a702007-07-12 19:07:24 +0200394
395 /* attach the mac to the phy */
Florian Fainellif9a8f832013-01-14 00:52:52 +0000396 ret = phy_connect_direct(dev, phydev, &macb_handle_link_change,
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +0100397 bp->phy_interface);
Jiri Pirko7455a762010-02-08 05:12:08 +0000398 if (ret) {
Jamie Ilesc220f8c2011-03-08 20:27:08 +0000399 netdev_err(dev, "Could not attach to PHY\n");
Jiri Pirko7455a762010-02-08 05:12:08 +0000400 return ret;
frederic RODO6c36a702007-07-12 19:07:24 +0200401 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100402
frederic RODO6c36a702007-07-12 19:07:24 +0200403 /* mask with MAC supported features */
Nicolas Ferree1755872014-07-24 13:50:58 +0200404 if (macb_is_gem(bp) && bp->caps & MACB_CAPS_GIGABIT_MODE_AVAILABLE)
Patrice Vilchez140b7552012-10-31 06:04:50 +0000405 phydev->supported &= PHY_GBIT_FEATURES;
406 else
407 phydev->supported &= PHY_BASIC_FEATURES;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100408
Nathan Sullivan222ca8e2015-05-22 09:22:10 -0500409 if (bp->caps & MACB_CAPS_NO_GIGABIT_HALF)
410 phydev->supported &= ~SUPPORTED_1000baseT_Half;
411
frederic RODO6c36a702007-07-12 19:07:24 +0200412 phydev->advertising = phydev->supported;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100413
frederic RODO6c36a702007-07-12 19:07:24 +0200414 bp->link = 0;
415 bp->speed = 0;
416 bp->duplex = -1;
417 bp->phy_dev = phydev;
418
419 return 0;
420}
421
Cyrille Pitchen421d9df2015-03-07 07:23:32 +0100422static int macb_mii_init(struct macb *bp)
frederic RODO6c36a702007-07-12 19:07:24 +0200423{
Jamie Iles84e0cdb2011-03-08 20:17:06 +0000424 struct macb_platform_data *pdata;
Boris BREZILLON148cbb52013-08-22 17:57:28 +0200425 struct device_node *np;
frederic RODO6c36a702007-07-12 19:07:24 +0200426 int err = -ENXIO, i;
427
Uwe Kleine-Koenig3dbda772009-07-23 08:31:31 +0200428 /* Enable management port */
frederic RODO6c36a702007-07-12 19:07:24 +0200429 macb_writel(bp, NCR, MACB_BIT(MPE));
430
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700431 bp->mii_bus = mdiobus_alloc();
Moritz Fischeraa50b552016-03-29 19:11:13 -0700432 if (!bp->mii_bus) {
frederic RODO6c36a702007-07-12 19:07:24 +0200433 err = -ENOMEM;
434 goto err_out;
435 }
436
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700437 bp->mii_bus->name = "MACB_mii_bus";
438 bp->mii_bus->read = &macb_mdio_read;
439 bp->mii_bus->write = &macb_mdio_write;
Florian Fainelli98d5e572012-01-09 23:59:11 +0000440 snprintf(bp->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
Moritz Fischeraa50b552016-03-29 19:11:13 -0700441 bp->pdev->name, bp->pdev->id);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700442 bp->mii_bus->priv = bp;
443 bp->mii_bus->parent = &bp->dev->dev;
Jingoo Hanc607a0d2013-08-30 14:12:21 +0900444 pdata = dev_get_platdata(&bp->pdev->dev);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700445
Jamie Iles91523942011-02-28 04:05:25 +0000446 dev_set_drvdata(&bp->dev->dev, bp->mii_bus);
frederic RODO6c36a702007-07-12 19:07:24 +0200447
Boris BREZILLON148cbb52013-08-22 17:57:28 +0200448 np = bp->pdev->dev.of_node;
449 if (np) {
450 /* try dt phy registration */
451 err = of_mdiobus_register(bp->mii_bus, np);
452
453 /* fallback to standard phy registration if no phy were
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700454 * found during dt phy registration
455 */
Boris BREZILLON148cbb52013-08-22 17:57:28 +0200456 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);
461 if (IS_ERR(phydev)) {
462 err = PTR_ERR(phydev);
463 break;
464 }
465 }
466
467 if (err)
468 goto err_out_unregister_bus;
469 }
470 } else {
Boris BREZILLON148cbb52013-08-22 17:57:28 +0200471 if (pdata)
472 bp->mii_bus->phy_mask = pdata->phy_mask;
473
474 err = mdiobus_register(bp->mii_bus);
475 }
476
477 if (err)
Andrew Lunne7f4dc32016-01-06 20:11:15 +0100478 goto err_out_free_mdiobus;
frederic RODO6c36a702007-07-12 19:07:24 +0200479
Boris BREZILLON7daa78e2013-08-27 14:36:14 +0200480 err = macb_mii_probe(bp->dev);
481 if (err)
frederic RODO6c36a702007-07-12 19:07:24 +0200482 goto err_out_unregister_bus;
frederic RODO6c36a702007-07-12 19:07:24 +0200483
484 return 0;
485
486err_out_unregister_bus:
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700487 mdiobus_unregister(bp->mii_bus);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -0700488err_out_free_mdiobus:
489 mdiobus_free(bp->mii_bus);
frederic RODO6c36a702007-07-12 19:07:24 +0200490err_out:
491 return err;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100492}
493
494static void macb_update_stats(struct macb *bp)
495{
Jamie Ilesa494ed82011-03-09 16:26:35 +0000496 u32 *p = &bp->hw_stats.macb.rx_pause_frames;
497 u32 *end = &bp->hw_stats.macb.tx_pause_frames + 1;
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +0300498 int offset = MACB_PFR;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100499
500 WARN_ON((unsigned long)(end - p - 1) != (MACB_TPF - MACB_PFR) / 4);
501
Moritz Fischer96ec6312016-03-29 19:11:11 -0700502 for (; p < end; p++, offset += 4)
David S. Miller7a6e0702015-07-27 14:24:48 -0700503 *p += bp->macb_reg_readl(bp, offset);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100504}
505
Nicolas Ferree86cd532012-10-31 06:04:57 +0000506static int macb_halt_tx(struct macb *bp)
507{
508 unsigned long halt_time, timeout;
509 u32 status;
510
511 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(THALT));
512
513 timeout = jiffies + usecs_to_jiffies(MACB_HALT_TIMEOUT);
514 do {
515 halt_time = jiffies;
516 status = macb_readl(bp, TSR);
517 if (!(status & MACB_BIT(TGO)))
518 return 0;
519
520 usleep_range(10, 250);
521 } while (time_before(halt_time, timeout));
522
523 return -ETIMEDOUT;
524}
525
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200526static void macb_tx_unmap(struct macb *bp, struct macb_tx_skb *tx_skb)
527{
528 if (tx_skb->mapping) {
529 if (tx_skb->mapped_as_page)
530 dma_unmap_page(&bp->pdev->dev, tx_skb->mapping,
531 tx_skb->size, DMA_TO_DEVICE);
532 else
533 dma_unmap_single(&bp->pdev->dev, tx_skb->mapping,
534 tx_skb->size, DMA_TO_DEVICE);
535 tx_skb->mapping = 0;
536 }
537
538 if (tx_skb->skb) {
539 dev_kfree_skb_any(tx_skb->skb);
540 tx_skb->skb = NULL;
541 }
542}
543
Nicolas Ferree86cd532012-10-31 06:04:57 +0000544static void macb_tx_error_task(struct work_struct *work)
545{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100546 struct macb_queue *queue = container_of(work, struct macb_queue,
547 tx_error_task);
548 struct macb *bp = queue->bp;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000549 struct macb_tx_skb *tx_skb;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100550 struct macb_dma_desc *desc;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000551 struct sk_buff *skb;
552 unsigned int tail;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100553 unsigned long flags;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000554
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100555 netdev_vdbg(bp->dev, "macb_tx_error_task: q = %u, t = %u, h = %u\n",
556 (unsigned int)(queue - bp->queues),
557 queue->tx_tail, queue->tx_head);
558
559 /* Prevent the queue IRQ handlers from running: each of them may call
560 * macb_tx_interrupt(), which in turn may call netif_wake_subqueue().
561 * As explained below, we have to halt the transmission before updating
562 * TBQP registers so we call netif_tx_stop_all_queues() to notify the
563 * network engine about the macb/gem being halted.
564 */
565 spin_lock_irqsave(&bp->lock, flags);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000566
567 /* Make sure nobody is trying to queue up new packets */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100568 netif_tx_stop_all_queues(bp->dev);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000569
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700570 /* Stop transmission now
Nicolas Ferree86cd532012-10-31 06:04:57 +0000571 * (in case we have just queued new packets)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100572 * macb/gem must be halted to write TBQP register
Nicolas Ferree86cd532012-10-31 06:04:57 +0000573 */
574 if (macb_halt_tx(bp))
575 /* Just complain for now, reinitializing TX path can be good */
576 netdev_err(bp->dev, "BUG: halt tx timed out\n");
577
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700578 /* Treat frames in TX queue including the ones that caused the error.
Nicolas Ferree86cd532012-10-31 06:04:57 +0000579 * Free transmit buffers in upper layer.
580 */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100581 for (tail = queue->tx_tail; tail != queue->tx_head; tail++) {
582 u32 ctrl;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000583
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100584 desc = macb_tx_desc(queue, tail);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000585 ctrl = desc->ctrl;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100586 tx_skb = macb_tx_skb(queue, tail);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000587 skb = tx_skb->skb;
588
589 if (ctrl & MACB_BIT(TX_USED)) {
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200590 /* skb is set for the last buffer of the frame */
591 while (!skb) {
592 macb_tx_unmap(bp, tx_skb);
593 tail++;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100594 tx_skb = macb_tx_skb(queue, tail);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200595 skb = tx_skb->skb;
596 }
597
598 /* ctrl still refers to the first buffer descriptor
599 * since it's the only one written back by the hardware
600 */
601 if (!(ctrl & MACB_BIT(TX_BUF_EXHAUSTED))) {
602 netdev_vdbg(bp->dev, "txerr skb %u (data %p) TX complete\n",
603 macb_tx_ring_wrap(tail), skb->data);
604 bp->stats.tx_packets++;
605 bp->stats.tx_bytes += skb->len;
606 }
Nicolas Ferree86cd532012-10-31 06:04:57 +0000607 } else {
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700608 /* "Buffers exhausted mid-frame" errors may only happen
609 * if the driver is buggy, so complain loudly about
610 * those. Statistics are updated by hardware.
Nicolas Ferree86cd532012-10-31 06:04:57 +0000611 */
612 if (ctrl & MACB_BIT(TX_BUF_EXHAUSTED))
613 netdev_err(bp->dev,
614 "BUG: TX buffers exhausted mid-frame\n");
615
616 desc->ctrl = ctrl | MACB_BIT(TX_USED);
617 }
618
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200619 macb_tx_unmap(bp, tx_skb);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000620 }
621
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100622 /* Set end of TX queue */
623 desc = macb_tx_desc(queue, 0);
624 desc->addr = 0;
625 desc->ctrl = MACB_BIT(TX_USED);
626
Nicolas Ferree86cd532012-10-31 06:04:57 +0000627 /* Make descriptor updates visible to hardware */
628 wmb();
629
630 /* Reinitialize the TX desc queue */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100631 queue_writel(queue, TBQP, queue->tx_ring_dma);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000632 /* Make TX ring reflect state of hardware */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100633 queue->tx_head = 0;
634 queue->tx_tail = 0;
Nicolas Ferree86cd532012-10-31 06:04:57 +0000635
636 /* Housework before enabling TX IRQ */
637 macb_writel(bp, TSR, macb_readl(bp, TSR));
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100638 queue_writel(queue, IER, MACB_TX_INT_FLAGS);
639
640 /* Now we are ready to start transmission again */
641 netif_tx_start_all_queues(bp->dev);
642 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TSTART));
643
644 spin_unlock_irqrestore(&bp->lock, flags);
Nicolas Ferree86cd532012-10-31 06:04:57 +0000645}
646
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100647static void macb_tx_interrupt(struct macb_queue *queue)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100648{
649 unsigned int tail;
650 unsigned int head;
651 u32 status;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100652 struct macb *bp = queue->bp;
653 u16 queue_index = queue - bp->queues;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100654
655 status = macb_readl(bp, TSR);
656 macb_writel(bp, TSR, status);
657
Nicolas Ferre581df9e2013-05-14 03:00:16 +0000658 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100659 queue_writel(queue, ISR, MACB_BIT(TCOMP));
Steffen Trumtrar749a2b62013-03-27 23:07:05 +0000660
Nicolas Ferree86cd532012-10-31 06:04:57 +0000661 netdev_vdbg(bp->dev, "macb_tx_interrupt status = 0x%03lx\n",
Moritz Fischeraa50b552016-03-29 19:11:13 -0700662 (unsigned long)status);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100663
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100664 head = queue->tx_head;
665 for (tail = queue->tx_tail; tail != head; tail++) {
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000666 struct macb_tx_skb *tx_skb;
667 struct sk_buff *skb;
668 struct macb_dma_desc *desc;
669 u32 ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100670
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100671 desc = macb_tx_desc(queue, tail);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100672
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000673 /* Make hw descriptor updates visible to CPU */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100674 rmb();
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000675
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000676 ctrl = desc->ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100677
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200678 /* TX_USED bit is only set by hardware on the very first buffer
679 * descriptor of the transmitted frame.
680 */
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000681 if (!(ctrl & MACB_BIT(TX_USED)))
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100682 break;
683
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200684 /* Process all buffers of the current transmitted frame */
685 for (;; tail++) {
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100686 tx_skb = macb_tx_skb(queue, tail);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200687 skb = tx_skb->skb;
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000688
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +0200689 /* First, update TX stats if needed */
690 if (skb) {
691 netdev_vdbg(bp->dev, "skb %u (data %p) TX complete\n",
692 macb_tx_ring_wrap(tail), skb->data);
693 bp->stats.tx_packets++;
694 bp->stats.tx_bytes += skb->len;
695 }
696
697 /* Now we can safely release resources */
698 macb_tx_unmap(bp, tx_skb);
699
700 /* skb is set only for the last buffer of the frame.
701 * WARNING: at this point skb has been freed by
702 * macb_tx_unmap().
703 */
704 if (skb)
705 break;
706 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100707 }
708
Cyrille Pitchen02c958d2014-12-12 13:26:44 +0100709 queue->tx_tail = tail;
710 if (__netif_subqueue_stopped(bp->dev, queue_index) &&
711 CIRC_CNT(queue->tx_head, queue->tx_tail,
712 TX_RING_SIZE) <= MACB_TX_WAKEUP_THRESH)
713 netif_wake_subqueue(bp->dev, queue_index);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100714}
715
Nicolas Ferre4df95132013-06-04 21:57:12 +0000716static void gem_rx_refill(struct macb *bp)
717{
718 unsigned int entry;
719 struct sk_buff *skb;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000720 dma_addr_t paddr;
721
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700722 while (CIRC_SPACE(bp->rx_prepared_head, bp->rx_tail,
723 RX_RING_SIZE) > 0) {
Nicolas Ferre4df95132013-06-04 21:57:12 +0000724 entry = macb_rx_ring_wrap(bp->rx_prepared_head);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000725
726 /* Make hw descriptor updates visible to CPU */
727 rmb();
728
Nicolas Ferre4df95132013-06-04 21:57:12 +0000729 bp->rx_prepared_head++;
730
Moritz Fischeraa50b552016-03-29 19:11:13 -0700731 if (!bp->rx_skbuff[entry]) {
Nicolas Ferre4df95132013-06-04 21:57:12 +0000732 /* allocate sk_buff for this free entry in ring */
733 skb = netdev_alloc_skb(bp->dev, bp->rx_buffer_size);
Moritz Fischeraa50b552016-03-29 19:11:13 -0700734 if (unlikely(!skb)) {
Nicolas Ferre4df95132013-06-04 21:57:12 +0000735 netdev_err(bp->dev,
736 "Unable to allocate sk_buff\n");
737 break;
738 }
Nicolas Ferre4df95132013-06-04 21:57:12 +0000739
740 /* now fill corresponding descriptor entry */
741 paddr = dma_map_single(&bp->pdev->dev, skb->data,
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700742 bp->rx_buffer_size,
743 DMA_FROM_DEVICE);
Soren Brinkmann92030902014-03-04 08:46:39 -0800744 if (dma_mapping_error(&bp->pdev->dev, paddr)) {
745 dev_kfree_skb(skb);
746 break;
747 }
748
749 bp->rx_skbuff[entry] = skb;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000750
751 if (entry == RX_RING_SIZE - 1)
752 paddr |= MACB_BIT(RX_WRAP);
753 bp->rx_ring[entry].addr = paddr;
754 bp->rx_ring[entry].ctrl = 0;
755
756 /* properly align Ethernet header */
757 skb_reserve(skb, NET_IP_ALIGN);
Punnaiah Choudary Kallurid4c216c2015-04-29 08:34:46 +0530758 } else {
759 bp->rx_ring[entry].addr &= ~MACB_BIT(RX_USED);
760 bp->rx_ring[entry].ctrl = 0;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000761 }
762 }
763
764 /* Make descriptor updates visible to hardware */
765 wmb();
766
767 netdev_vdbg(bp->dev, "rx ring: prepared head %d, tail %d\n",
Moritz Fischeraa50b552016-03-29 19:11:13 -0700768 bp->rx_prepared_head, bp->rx_tail);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000769}
770
771/* Mark DMA descriptors from begin up to and not including end as unused */
772static void discard_partial_frame(struct macb *bp, unsigned int begin,
773 unsigned int end)
774{
775 unsigned int frag;
776
777 for (frag = begin; frag != end; frag++) {
778 struct macb_dma_desc *desc = macb_rx_desc(bp, frag);
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700779
Nicolas Ferre4df95132013-06-04 21:57:12 +0000780 desc->addr &= ~MACB_BIT(RX_USED);
781 }
782
783 /* Make descriptor updates visible to hardware */
784 wmb();
785
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700786 /* When this happens, the hardware stats registers for
Nicolas Ferre4df95132013-06-04 21:57:12 +0000787 * whatever caused this is updated, so we don't have to record
788 * anything.
789 */
790}
791
792static int gem_rx(struct macb *bp, int budget)
793{
794 unsigned int len;
795 unsigned int entry;
796 struct sk_buff *skb;
797 struct macb_dma_desc *desc;
798 int count = 0;
799
800 while (count < budget) {
801 u32 addr, ctrl;
802
803 entry = macb_rx_ring_wrap(bp->rx_tail);
804 desc = &bp->rx_ring[entry];
805
806 /* Make hw descriptor updates visible to CPU */
807 rmb();
808
809 addr = desc->addr;
810 ctrl = desc->ctrl;
811
812 if (!(addr & MACB_BIT(RX_USED)))
813 break;
814
Nicolas Ferre4df95132013-06-04 21:57:12 +0000815 bp->rx_tail++;
816 count++;
817
818 if (!(ctrl & MACB_BIT(RX_SOF) && ctrl & MACB_BIT(RX_EOF))) {
819 netdev_err(bp->dev,
820 "not whole frame pointed by descriptor\n");
821 bp->stats.rx_dropped++;
822 break;
823 }
824 skb = bp->rx_skbuff[entry];
825 if (unlikely(!skb)) {
826 netdev_err(bp->dev,
827 "inconsistent Rx descriptor chain\n");
828 bp->stats.rx_dropped++;
829 break;
830 }
831 /* now everything is ready for receiving packet */
832 bp->rx_skbuff[entry] = NULL;
Harini Katakam98b5a0f42015-05-06 22:27:17 +0530833 len = ctrl & bp->rx_frm_len_mask;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000834
835 netdev_vdbg(bp->dev, "gem_rx %u (len %u)\n", entry, len);
836
837 skb_put(skb, len);
838 addr = MACB_BF(RX_WADDR, MACB_BFEXT(RX_WADDR, addr));
839 dma_unmap_single(&bp->pdev->dev, addr,
Soren Brinkmann48330e082014-03-04 08:46:40 -0800840 bp->rx_buffer_size, DMA_FROM_DEVICE);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000841
842 skb->protocol = eth_type_trans(skb, bp->dev);
843 skb_checksum_none_assert(skb);
Cyrille Pitchen924ec532014-07-24 13:51:01 +0200844 if (bp->dev->features & NETIF_F_RXCSUM &&
845 !(bp->dev->flags & IFF_PROMISC) &&
846 GEM_BFEXT(RX_CSUM, ctrl) & GEM_RX_CSUM_CHECKED_MASK)
847 skb->ip_summed = CHECKSUM_UNNECESSARY;
Nicolas Ferre4df95132013-06-04 21:57:12 +0000848
849 bp->stats.rx_packets++;
850 bp->stats.rx_bytes += skb->len;
851
852#if defined(DEBUG) && defined(VERBOSE_DEBUG)
853 netdev_vdbg(bp->dev, "received skb of length %u, csum: %08x\n",
854 skb->len, skb->csum);
855 print_hex_dump(KERN_DEBUG, " mac: ", DUMP_PREFIX_ADDRESS, 16, 1,
Cyrille Pitchen51f83012014-12-11 11:15:54 +0100856 skb_mac_header(skb), 16, true);
Nicolas Ferre4df95132013-06-04 21:57:12 +0000857 print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_ADDRESS, 16, 1,
858 skb->data, 32, true);
859#endif
860
861 netif_receive_skb(skb);
862 }
863
864 gem_rx_refill(bp);
865
866 return count;
867}
868
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100869static int macb_rx_frame(struct macb *bp, unsigned int first_frag,
870 unsigned int last_frag)
871{
872 unsigned int len;
873 unsigned int frag;
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +0000874 unsigned int offset;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100875 struct sk_buff *skb;
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000876 struct macb_dma_desc *desc;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100877
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000878 desc = macb_rx_desc(bp, last_frag);
Harini Katakam98b5a0f42015-05-06 22:27:17 +0530879 len = desc->ctrl & bp->rx_frm_len_mask;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100880
Havard Skinnemoena268adb2012-10-31 06:04:52 +0000881 netdev_vdbg(bp->dev, "macb_rx_frame frags %u - %u (len %u)\n",
Moritz Fischeraa50b552016-03-29 19:11:13 -0700882 macb_rx_ring_wrap(first_frag),
883 macb_rx_ring_wrap(last_frag), len);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100884
Moritz Fischer64ec42f2016-03-29 19:11:12 -0700885 /* The ethernet header starts NET_IP_ALIGN bytes into the
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +0000886 * first buffer. Since the header is 14 bytes, this makes the
887 * payload word-aligned.
888 *
889 * Instead of calling skb_reserve(NET_IP_ALIGN), we just copy
890 * the two padding bytes into the skb so that we avoid hitting
891 * the slowpath in memcpy(), and pull them off afterwards.
892 */
893 skb = netdev_alloc_skb(bp->dev, len + NET_IP_ALIGN);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100894 if (!skb) {
895 bp->stats.rx_dropped++;
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000896 for (frag = first_frag; ; frag++) {
897 desc = macb_rx_desc(bp, frag);
898 desc->addr &= ~MACB_BIT(RX_USED);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100899 if (frag == last_frag)
900 break;
901 }
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000902
903 /* Make descriptor updates visible to hardware */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100904 wmb();
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000905
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100906 return 1;
907 }
908
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +0000909 offset = 0;
910 len += NET_IP_ALIGN;
Eric Dumazetbc8acf22010-09-02 13:07:41 -0700911 skb_checksum_none_assert(skb);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100912 skb_put(skb, len);
913
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000914 for (frag = first_frag; ; frag++) {
Nicolas Ferre1b447912013-06-04 21:57:11 +0000915 unsigned int frag_len = bp->rx_buffer_size;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100916
917 if (offset + frag_len > len) {
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +0100918 if (unlikely(frag != last_frag)) {
919 dev_kfree_skb_any(skb);
920 return -1;
921 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100922 frag_len = len - offset;
923 }
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300924 skb_copy_to_linear_data_offset(skb, offset,
Moritz Fischeraa50b552016-03-29 19:11:13 -0700925 macb_rx_buffer(bp, frag),
926 frag_len);
Nicolas Ferre1b447912013-06-04 21:57:11 +0000927 offset += bp->rx_buffer_size;
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000928 desc = macb_rx_desc(bp, frag);
929 desc->addr &= ~MACB_BIT(RX_USED);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100930
931 if (frag == last_frag)
932 break;
933 }
934
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000935 /* Make descriptor updates visible to hardware */
936 wmb();
937
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +0000938 __skb_pull(skb, NET_IP_ALIGN);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100939 skb->protocol = eth_type_trans(skb, bp->dev);
940
941 bp->stats.rx_packets++;
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +0000942 bp->stats.rx_bytes += skb->len;
Havard Skinnemoena268adb2012-10-31 06:04:52 +0000943 netdev_vdbg(bp->dev, "received skb of length %u, csum: %08x\n",
Moritz Fischeraa50b552016-03-29 19:11:13 -0700944 skb->len, skb->csum);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100945 netif_receive_skb(skb);
946
947 return 0;
948}
949
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +0100950static inline void macb_init_rx_ring(struct macb *bp)
951{
952 dma_addr_t addr;
953 int i;
954
955 addr = bp->rx_buffers_dma;
956 for (i = 0; i < RX_RING_SIZE; i++) {
957 bp->rx_ring[i].addr = addr;
958 bp->rx_ring[i].ctrl = 0;
959 addr += bp->rx_buffer_size;
960 }
961 bp->rx_ring[RX_RING_SIZE - 1].addr |= MACB_BIT(RX_WRAP);
962}
963
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100964static int macb_rx(struct macb *bp, int budget)
965{
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +0100966 bool reset_rx_queue = false;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100967 int received = 0;
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000968 unsigned int tail;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100969 int first_frag = -1;
970
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000971 for (tail = bp->rx_tail; budget > 0; tail++) {
972 struct macb_dma_desc *desc = macb_rx_desc(bp, tail);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100973 u32 addr, ctrl;
974
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000975 /* Make hw descriptor updates visible to CPU */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100976 rmb();
Havard Skinnemoen03dbe052012-10-31 06:04:51 +0000977
Havard Skinnemoen55054a12012-10-31 06:04:55 +0000978 addr = desc->addr;
979 ctrl = desc->ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100980
981 if (!(addr & MACB_BIT(RX_USED)))
982 break;
983
984 if (ctrl & MACB_BIT(RX_SOF)) {
985 if (first_frag != -1)
986 discard_partial_frame(bp, first_frag, tail);
987 first_frag = tail;
988 }
989
990 if (ctrl & MACB_BIT(RX_EOF)) {
991 int dropped;
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +0100992
993 if (unlikely(first_frag == -1)) {
994 reset_rx_queue = true;
995 continue;
996 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100997
998 dropped = macb_rx_frame(bp, first_frag, tail);
999 first_frag = -1;
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001000 if (unlikely(dropped < 0)) {
1001 reset_rx_queue = true;
1002 continue;
1003 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001004 if (!dropped) {
1005 received++;
1006 budget--;
1007 }
1008 }
1009 }
1010
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001011 if (unlikely(reset_rx_queue)) {
1012 unsigned long flags;
1013 u32 ctrl;
1014
1015 netdev_err(bp->dev, "RX queue corruption: reset it\n");
1016
1017 spin_lock_irqsave(&bp->lock, flags);
1018
1019 ctrl = macb_readl(bp, NCR);
1020 macb_writel(bp, NCR, ctrl & ~MACB_BIT(RE));
1021
1022 macb_init_rx_ring(bp);
1023 macb_writel(bp, RBQP, bp->rx_ring_dma);
1024
1025 macb_writel(bp, NCR, ctrl | MACB_BIT(RE));
1026
1027 spin_unlock_irqrestore(&bp->lock, flags);
1028 return received;
1029 }
1030
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001031 if (first_frag != -1)
1032 bp->rx_tail = first_frag;
1033 else
1034 bp->rx_tail = tail;
1035
1036 return received;
1037}
1038
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001039static int macb_poll(struct napi_struct *napi, int budget)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001040{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001041 struct macb *bp = container_of(napi, struct macb, napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001042 int work_done;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001043 u32 status;
1044
1045 status = macb_readl(bp, RSR);
1046 macb_writel(bp, RSR, status);
1047
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001048 work_done = 0;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001049
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001050 netdev_vdbg(bp->dev, "poll: status = %08lx, budget = %d\n",
Moritz Fischeraa50b552016-03-29 19:11:13 -07001051 (unsigned long)status, budget);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001052
Nicolas Ferre4df95132013-06-04 21:57:12 +00001053 work_done = bp->macbgem_ops.mog_rx(bp, budget);
Joshua Hokeb3363692010-10-25 01:44:22 +00001054 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08001055 napi_complete(napi);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001056
Nicolas Ferre8770e912013-02-12 11:08:48 +01001057 /* Packets received while interrupts were disabled */
1058 status = macb_readl(bp, RSR);
Soren Brinkmann504ad982014-05-04 15:43:01 -07001059 if (status) {
Soren Brinkmann02f7a342014-05-04 15:43:00 -07001060 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1061 macb_writel(bp, ISR, MACB_BIT(RCOMP));
Nicolas Ferre8770e912013-02-12 11:08:48 +01001062 napi_reschedule(napi);
Soren Brinkmann02f7a342014-05-04 15:43:00 -07001063 } else {
1064 macb_writel(bp, IER, MACB_RX_INT_FLAGS);
1065 }
Joshua Hokeb3363692010-10-25 01:44:22 +00001066 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001067
1068 /* TODO: Handle errors */
1069
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001070 return work_done;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001071}
1072
1073static irqreturn_t macb_interrupt(int irq, void *dev_id)
1074{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001075 struct macb_queue *queue = dev_id;
1076 struct macb *bp = queue->bp;
1077 struct net_device *dev = bp->dev;
Nathan Sullivanbfbb92c2015-05-05 15:00:25 -05001078 u32 status, ctrl;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001079
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001080 status = queue_readl(queue, ISR);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001081
1082 if (unlikely(!status))
1083 return IRQ_NONE;
1084
1085 spin_lock(&bp->lock);
1086
1087 while (status) {
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001088 /* close possible race with dev_close */
1089 if (unlikely(!netif_running(dev))) {
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001090 queue_writel(queue, IDR, -1);
Nathan Sullivan24468372016-01-14 13:27:27 -06001091 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1092 queue_writel(queue, ISR, -1);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001093 break;
1094 }
1095
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001096 netdev_vdbg(bp->dev, "queue = %u, isr = 0x%08lx\n",
1097 (unsigned int)(queue - bp->queues),
1098 (unsigned long)status);
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001099
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001100 if (status & MACB_RX_INT_FLAGS) {
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001101 /* There's no point taking any more interrupts
Joshua Hokeb3363692010-10-25 01:44:22 +00001102 * until we have processed the buffers. The
1103 * scheduling call may fail if the poll routine
1104 * is already scheduled, so disable interrupts
1105 * now.
1106 */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001107 queue_writel(queue, IDR, MACB_RX_INT_FLAGS);
Nicolas Ferre581df9e2013-05-14 03:00:16 +00001108 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001109 queue_writel(queue, ISR, MACB_BIT(RCOMP));
Joshua Hokeb3363692010-10-25 01:44:22 +00001110
Ben Hutchings288379f2009-01-19 16:43:59 -08001111 if (napi_schedule_prep(&bp->napi)) {
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001112 netdev_vdbg(bp->dev, "scheduling RX softirq\n");
Ben Hutchings288379f2009-01-19 16:43:59 -08001113 __napi_schedule(&bp->napi);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001114 }
1115 }
1116
Nicolas Ferree86cd532012-10-31 06:04:57 +00001117 if (unlikely(status & (MACB_TX_ERR_FLAGS))) {
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001118 queue_writel(queue, IDR, MACB_TX_INT_FLAGS);
1119 schedule_work(&queue->tx_error_task);
Soren Brinkmann6a027b72014-05-04 15:42:59 -07001120
1121 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001122 queue_writel(queue, ISR, MACB_TX_ERR_FLAGS);
Soren Brinkmann6a027b72014-05-04 15:42:59 -07001123
Nicolas Ferree86cd532012-10-31 06:04:57 +00001124 break;
1125 }
1126
1127 if (status & MACB_BIT(TCOMP))
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001128 macb_tx_interrupt(queue);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001129
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001130 /* Link change detection isn't possible with RMII, so we'll
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001131 * add that if/when we get our hands on a full-blown MII PHY.
1132 */
1133
Nathan Sullivan86b5e7d2015-05-13 17:01:36 -05001134 /* There is a hardware issue under heavy load where DMA can
1135 * stop, this causes endless "used buffer descriptor read"
1136 * interrupts but it can be cleared by re-enabling RX. See
1137 * the at91 manual, section 41.3.1 or the Zynq manual
1138 * section 16.7.4 for details.
1139 */
Nathan Sullivanbfbb92c2015-05-05 15:00:25 -05001140 if (status & MACB_BIT(RXUBR)) {
1141 ctrl = macb_readl(bp, NCR);
1142 macb_writel(bp, NCR, ctrl & ~MACB_BIT(RE));
1143 macb_writel(bp, NCR, ctrl | MACB_BIT(RE));
1144
1145 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchenba504992016-03-24 15:40:04 +01001146 queue_writel(queue, ISR, MACB_BIT(RXUBR));
Nathan Sullivanbfbb92c2015-05-05 15:00:25 -05001147 }
1148
Alexander Steinb19f7f72011-04-13 05:03:24 +00001149 if (status & MACB_BIT(ISR_ROVR)) {
1150 /* We missed at least one packet */
Jamie Ilesf75ba502011-11-08 10:12:32 +00001151 if (macb_is_gem(bp))
1152 bp->hw_stats.gem.rx_overruns++;
1153 else
1154 bp->hw_stats.macb.rx_overruns++;
Soren Brinkmann6a027b72014-05-04 15:42:59 -07001155
1156 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001157 queue_writel(queue, ISR, MACB_BIT(ISR_ROVR));
Alexander Steinb19f7f72011-04-13 05:03:24 +00001158 }
1159
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001160 if (status & MACB_BIT(HRESP)) {
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001161 /* TODO: Reset the hardware, and maybe move the
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001162 * netdev_err to a lower-priority context as well
1163 * (work queue?)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001164 */
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001165 netdev_err(dev, "DMA bus error: HRESP not OK\n");
Soren Brinkmann6a027b72014-05-04 15:42:59 -07001166
1167 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001168 queue_writel(queue, ISR, MACB_BIT(HRESP));
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001169 }
1170
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001171 status = queue_readl(queue, ISR);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001172 }
1173
1174 spin_unlock(&bp->lock);
1175
1176 return IRQ_HANDLED;
1177}
1178
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001179#ifdef CONFIG_NET_POLL_CONTROLLER
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001180/* Polling receive - used by netconsole and other diagnostic tools
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001181 * to allow network i/o with interrupts disabled.
1182 */
1183static void macb_poll_controller(struct net_device *dev)
1184{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001185 struct macb *bp = netdev_priv(dev);
1186 struct macb_queue *queue;
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001187 unsigned long flags;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001188 unsigned int q;
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001189
1190 local_irq_save(flags);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001191 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
1192 macb_interrupt(dev->irq, queue);
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07001193 local_irq_restore(flags);
1194}
1195#endif
1196
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001197static unsigned int macb_tx_map(struct macb *bp,
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001198 struct macb_queue *queue,
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001199 struct sk_buff *skb)
1200{
1201 dma_addr_t mapping;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001202 unsigned int len, entry, i, tx_head = queue->tx_head;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001203 struct macb_tx_skb *tx_skb = NULL;
1204 struct macb_dma_desc *desc;
1205 unsigned int offset, size, count = 0;
1206 unsigned int f, nr_frags = skb_shinfo(skb)->nr_frags;
1207 unsigned int eof = 1;
1208 u32 ctrl;
1209
1210 /* First, map non-paged data */
1211 len = skb_headlen(skb);
1212 offset = 0;
1213 while (len) {
1214 size = min(len, bp->max_tx_length);
1215 entry = macb_tx_ring_wrap(tx_head);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001216 tx_skb = &queue->tx_skb[entry];
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001217
1218 mapping = dma_map_single(&bp->pdev->dev,
1219 skb->data + offset,
1220 size, DMA_TO_DEVICE);
1221 if (dma_mapping_error(&bp->pdev->dev, mapping))
1222 goto dma_error;
1223
1224 /* Save info to properly release resources */
1225 tx_skb->skb = NULL;
1226 tx_skb->mapping = mapping;
1227 tx_skb->size = size;
1228 tx_skb->mapped_as_page = false;
1229
1230 len -= size;
1231 offset += size;
1232 count++;
1233 tx_head++;
1234 }
1235
1236 /* Then, map paged data from fragments */
1237 for (f = 0; f < nr_frags; f++) {
1238 const skb_frag_t *frag = &skb_shinfo(skb)->frags[f];
1239
1240 len = skb_frag_size(frag);
1241 offset = 0;
1242 while (len) {
1243 size = min(len, bp->max_tx_length);
1244 entry = macb_tx_ring_wrap(tx_head);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001245 tx_skb = &queue->tx_skb[entry];
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001246
1247 mapping = skb_frag_dma_map(&bp->pdev->dev, frag,
1248 offset, size, DMA_TO_DEVICE);
1249 if (dma_mapping_error(&bp->pdev->dev, mapping))
1250 goto dma_error;
1251
1252 /* Save info to properly release resources */
1253 tx_skb->skb = NULL;
1254 tx_skb->mapping = mapping;
1255 tx_skb->size = size;
1256 tx_skb->mapped_as_page = true;
1257
1258 len -= size;
1259 offset += size;
1260 count++;
1261 tx_head++;
1262 }
1263 }
1264
1265 /* Should never happen */
Moritz Fischeraa50b552016-03-29 19:11:13 -07001266 if (unlikely(!tx_skb)) {
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001267 netdev_err(bp->dev, "BUG! empty skb!\n");
1268 return 0;
1269 }
1270
1271 /* This is the last buffer of the frame: save socket buffer */
1272 tx_skb->skb = skb;
1273
1274 /* Update TX ring: update buffer descriptors in reverse order
1275 * to avoid race condition
1276 */
1277
1278 /* Set 'TX_USED' bit in buffer descriptor at tx_head position
1279 * to set the end of TX queue
1280 */
1281 i = tx_head;
1282 entry = macb_tx_ring_wrap(i);
1283 ctrl = MACB_BIT(TX_USED);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001284 desc = &queue->tx_ring[entry];
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001285 desc->ctrl = ctrl;
1286
1287 do {
1288 i--;
1289 entry = macb_tx_ring_wrap(i);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001290 tx_skb = &queue->tx_skb[entry];
1291 desc = &queue->tx_ring[entry];
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001292
1293 ctrl = (u32)tx_skb->size;
1294 if (eof) {
1295 ctrl |= MACB_BIT(TX_LAST);
1296 eof = 0;
1297 }
1298 if (unlikely(entry == (TX_RING_SIZE - 1)))
1299 ctrl |= MACB_BIT(TX_WRAP);
1300
1301 /* Set TX buffer descriptor */
1302 desc->addr = tx_skb->mapping;
1303 /* desc->addr must be visible to hardware before clearing
1304 * 'TX_USED' bit in desc->ctrl.
1305 */
1306 wmb();
1307 desc->ctrl = ctrl;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001308 } while (i != queue->tx_head);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001309
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001310 queue->tx_head = tx_head;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001311
1312 return count;
1313
1314dma_error:
1315 netdev_err(bp->dev, "TX DMA map failed\n");
1316
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001317 for (i = queue->tx_head; i != tx_head; i++) {
1318 tx_skb = macb_tx_skb(queue, i);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001319
1320 macb_tx_unmap(bp, tx_skb);
1321 }
1322
1323 return 0;
1324}
1325
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001326static int macb_start_xmit(struct sk_buff *skb, struct net_device *dev)
1327{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001328 u16 queue_index = skb_get_queue_mapping(skb);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001329 struct macb *bp = netdev_priv(dev);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001330 struct macb_queue *queue = &bp->queues[queue_index];
Dongdong Deng48719532009-08-23 19:49:07 -07001331 unsigned long flags;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001332 unsigned int count, nr_frags, frag_size, f;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001333
Havard Skinnemoena268adb2012-10-31 06:04:52 +00001334#if defined(DEBUG) && defined(VERBOSE_DEBUG)
1335 netdev_vdbg(bp->dev,
Moritz Fischeraa50b552016-03-29 19:11:13 -07001336 "start_xmit: queue %hu len %u head %p data %p tail %p end %p\n",
1337 queue_index, skb->len, skb->head, skb->data,
1338 skb_tail_pointer(skb), skb_end_pointer(skb));
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001339 print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_OFFSET, 16, 1,
1340 skb->data, 16, true);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001341#endif
1342
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001343 /* Count how many TX buffer descriptors are needed to send this
1344 * socket buffer: skb fragments of jumbo frames may need to be
Moritz Fischeraa50b552016-03-29 19:11:13 -07001345 * split into many buffer descriptors.
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001346 */
Andy Shevchenko94b295e2015-07-24 21:24:03 +03001347 count = DIV_ROUND_UP(skb_headlen(skb), bp->max_tx_length);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001348 nr_frags = skb_shinfo(skb)->nr_frags;
1349 for (f = 0; f < nr_frags; f++) {
1350 frag_size = skb_frag_size(&skb_shinfo(skb)->frags[f]);
Andy Shevchenko94b295e2015-07-24 21:24:03 +03001351 count += DIV_ROUND_UP(frag_size, bp->max_tx_length);
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001352 }
1353
Dongdong Deng48719532009-08-23 19:49:07 -07001354 spin_lock_irqsave(&bp->lock, flags);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001355
1356 /* This is a hard error, log it. */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001357 if (CIRC_SPACE(queue->tx_head, queue->tx_tail, TX_RING_SIZE) < count) {
1358 netif_stop_subqueue(dev, queue_index);
Dongdong Deng48719532009-08-23 19:49:07 -07001359 spin_unlock_irqrestore(&bp->lock, flags);
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001360 netdev_dbg(bp->dev, "tx_head = %u, tx_tail = %u\n",
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001361 queue->tx_head, queue->tx_tail);
Patrick McHardy5b548142009-06-12 06:22:29 +00001362 return NETDEV_TX_BUSY;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001363 }
1364
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02001365 /* Map socket buffer for DMA transfer */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001366 if (!macb_tx_map(bp, queue, skb)) {
Eric W. Biedermanc88b5b62014-03-15 16:08:27 -07001367 dev_kfree_skb_any(skb);
Soren Brinkmann92030902014-03-04 08:46:39 -08001368 goto unlock;
1369 }
Havard Skinnemoen55054a12012-10-31 06:04:55 +00001370
Havard Skinnemoen03dbe052012-10-31 06:04:51 +00001371 /* Make newly initialized descriptor visible to hardware */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001372 wmb();
1373
Richard Cochrane0720922011-06-19 21:51:28 +00001374 skb_tx_timestamp(skb);
1375
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001376 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TSTART));
1377
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001378 if (CIRC_SPACE(queue->tx_head, queue->tx_tail, TX_RING_SIZE) < 1)
1379 netif_stop_subqueue(dev, queue_index);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001380
Soren Brinkmann92030902014-03-04 08:46:39 -08001381unlock:
Dongdong Deng48719532009-08-23 19:49:07 -07001382 spin_unlock_irqrestore(&bp->lock, flags);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001383
Patrick McHardy6ed10652009-06-23 06:03:08 +00001384 return NETDEV_TX_OK;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001385}
1386
Nicolas Ferre4df95132013-06-04 21:57:12 +00001387static void macb_init_rx_buffer_size(struct macb *bp, size_t size)
Nicolas Ferre1b447912013-06-04 21:57:11 +00001388{
1389 if (!macb_is_gem(bp)) {
1390 bp->rx_buffer_size = MACB_RX_BUFFER_SIZE;
1391 } else {
Nicolas Ferre4df95132013-06-04 21:57:12 +00001392 bp->rx_buffer_size = size;
Nicolas Ferre1b447912013-06-04 21:57:11 +00001393
Nicolas Ferre1b447912013-06-04 21:57:11 +00001394 if (bp->rx_buffer_size % RX_BUFFER_MULTIPLE) {
Nicolas Ferre4df95132013-06-04 21:57:12 +00001395 netdev_dbg(bp->dev,
Moritz Fischeraa50b552016-03-29 19:11:13 -07001396 "RX buffer must be multiple of %d bytes, expanding\n",
1397 RX_BUFFER_MULTIPLE);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001398 bp->rx_buffer_size =
Nicolas Ferre4df95132013-06-04 21:57:12 +00001399 roundup(bp->rx_buffer_size, RX_BUFFER_MULTIPLE);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001400 }
Nicolas Ferre1b447912013-06-04 21:57:11 +00001401 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00001402
1403 netdev_dbg(bp->dev, "mtu [%u] rx_buffer_size [%Zu]\n",
1404 bp->dev->mtu, bp->rx_buffer_size);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001405}
1406
Nicolas Ferre4df95132013-06-04 21:57:12 +00001407static void gem_free_rx_buffers(struct macb *bp)
1408{
1409 struct sk_buff *skb;
1410 struct macb_dma_desc *desc;
1411 dma_addr_t addr;
1412 int i;
1413
1414 if (!bp->rx_skbuff)
1415 return;
1416
1417 for (i = 0; i < RX_RING_SIZE; i++) {
1418 skb = bp->rx_skbuff[i];
1419
Moritz Fischeraa50b552016-03-29 19:11:13 -07001420 if (!skb)
Nicolas Ferre4df95132013-06-04 21:57:12 +00001421 continue;
1422
1423 desc = &bp->rx_ring[i];
1424 addr = MACB_BF(RX_WADDR, MACB_BFEXT(RX_WADDR, desc->addr));
Soren Brinkmannccd6d0a2014-05-04 15:42:58 -07001425 dma_unmap_single(&bp->pdev->dev, addr, bp->rx_buffer_size,
Nicolas Ferre4df95132013-06-04 21:57:12 +00001426 DMA_FROM_DEVICE);
1427 dev_kfree_skb_any(skb);
1428 skb = NULL;
1429 }
1430
1431 kfree(bp->rx_skbuff);
1432 bp->rx_skbuff = NULL;
1433}
1434
1435static void macb_free_rx_buffers(struct macb *bp)
1436{
1437 if (bp->rx_buffers) {
1438 dma_free_coherent(&bp->pdev->dev,
1439 RX_RING_SIZE * bp->rx_buffer_size,
1440 bp->rx_buffers, bp->rx_buffers_dma);
1441 bp->rx_buffers = NULL;
1442 }
1443}
Nicolas Ferre1b447912013-06-04 21:57:11 +00001444
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001445static void macb_free_consistent(struct macb *bp)
1446{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001447 struct macb_queue *queue;
1448 unsigned int q;
1449
Nicolas Ferre4df95132013-06-04 21:57:12 +00001450 bp->macbgem_ops.mog_free_rx_buffers(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001451 if (bp->rx_ring) {
1452 dma_free_coherent(&bp->pdev->dev, RX_RING_BYTES,
1453 bp->rx_ring, bp->rx_ring_dma);
1454 bp->rx_ring = NULL;
1455 }
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001456
1457 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1458 kfree(queue->tx_skb);
1459 queue->tx_skb = NULL;
1460 if (queue->tx_ring) {
1461 dma_free_coherent(&bp->pdev->dev, TX_RING_BYTES,
1462 queue->tx_ring, queue->tx_ring_dma);
1463 queue->tx_ring = NULL;
1464 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001465 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00001466}
1467
1468static int gem_alloc_rx_buffers(struct macb *bp)
1469{
1470 int size;
1471
1472 size = RX_RING_SIZE * sizeof(struct sk_buff *);
1473 bp->rx_skbuff = kzalloc(size, GFP_KERNEL);
1474 if (!bp->rx_skbuff)
1475 return -ENOMEM;
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001476
1477 netdev_dbg(bp->dev,
1478 "Allocated %d RX struct sk_buff entries at %p\n",
1479 RX_RING_SIZE, bp->rx_skbuff);
Nicolas Ferre4df95132013-06-04 21:57:12 +00001480 return 0;
1481}
1482
1483static int macb_alloc_rx_buffers(struct macb *bp)
1484{
1485 int size;
1486
1487 size = RX_RING_SIZE * bp->rx_buffer_size;
1488 bp->rx_buffers = dma_alloc_coherent(&bp->pdev->dev, size,
1489 &bp->rx_buffers_dma, GFP_KERNEL);
1490 if (!bp->rx_buffers)
1491 return -ENOMEM;
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001492
1493 netdev_dbg(bp->dev,
1494 "Allocated RX buffers of %d bytes at %08lx (mapped %p)\n",
1495 size, (unsigned long)bp->rx_buffers_dma, bp->rx_buffers);
Nicolas Ferre4df95132013-06-04 21:57:12 +00001496 return 0;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001497}
1498
1499static int macb_alloc_consistent(struct macb *bp)
1500{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001501 struct macb_queue *queue;
1502 unsigned int q;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001503 int size;
1504
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001505 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1506 size = TX_RING_BYTES;
1507 queue->tx_ring = dma_alloc_coherent(&bp->pdev->dev, size,
1508 &queue->tx_ring_dma,
1509 GFP_KERNEL);
1510 if (!queue->tx_ring)
1511 goto out_err;
1512 netdev_dbg(bp->dev,
1513 "Allocated TX ring for queue %u of %d bytes at %08lx (mapped %p)\n",
1514 q, size, (unsigned long)queue->tx_ring_dma,
1515 queue->tx_ring);
1516
1517 size = TX_RING_SIZE * sizeof(struct macb_tx_skb);
1518 queue->tx_skb = kmalloc(size, GFP_KERNEL);
1519 if (!queue->tx_skb)
1520 goto out_err;
1521 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001522
1523 size = RX_RING_BYTES;
1524 bp->rx_ring = dma_alloc_coherent(&bp->pdev->dev, size,
1525 &bp->rx_ring_dma, GFP_KERNEL);
1526 if (!bp->rx_ring)
1527 goto out_err;
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001528 netdev_dbg(bp->dev,
1529 "Allocated RX ring of %d bytes at %08lx (mapped %p)\n",
1530 size, (unsigned long)bp->rx_ring_dma, bp->rx_ring);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001531
Nicolas Ferre4df95132013-06-04 21:57:12 +00001532 if (bp->macbgem_ops.mog_alloc_rx_buffers(bp))
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001533 goto out_err;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001534
1535 return 0;
1536
1537out_err:
1538 macb_free_consistent(bp);
1539 return -ENOMEM;
1540}
1541
Nicolas Ferre4df95132013-06-04 21:57:12 +00001542static void gem_init_rings(struct macb *bp)
1543{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001544 struct macb_queue *queue;
1545 unsigned int q;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001546 int i;
1547
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001548 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1549 for (i = 0; i < TX_RING_SIZE; i++) {
1550 queue->tx_ring[i].addr = 0;
1551 queue->tx_ring[i].ctrl = MACB_BIT(TX_USED);
1552 }
1553 queue->tx_ring[TX_RING_SIZE - 1].ctrl |= MACB_BIT(TX_WRAP);
1554 queue->tx_head = 0;
1555 queue->tx_tail = 0;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001556 }
Nicolas Ferre4df95132013-06-04 21:57:12 +00001557
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001558 bp->rx_tail = 0;
1559 bp->rx_prepared_head = 0;
Nicolas Ferre4df95132013-06-04 21:57:12 +00001560
1561 gem_rx_refill(bp);
1562}
1563
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001564static void macb_init_rings(struct macb *bp)
1565{
1566 int i;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001567
Cyrille Pitchen9ba723b2016-03-25 10:37:34 +01001568 macb_init_rx_ring(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001569
1570 for (i = 0; i < TX_RING_SIZE; i++) {
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001571 bp->queues[0].tx_ring[i].addr = 0;
1572 bp->queues[0].tx_ring[i].ctrl = MACB_BIT(TX_USED);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001573 }
Ben Shelton21d35152015-04-22 17:28:54 -05001574 bp->queues[0].tx_head = 0;
1575 bp->queues[0].tx_tail = 0;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001576 bp->queues[0].tx_ring[TX_RING_SIZE - 1].ctrl |= MACB_BIT(TX_WRAP);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001577
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001578 bp->rx_tail = 0;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001579}
1580
1581static void macb_reset_hw(struct macb *bp)
1582{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001583 struct macb_queue *queue;
1584 unsigned int q;
1585
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001586 /* Disable RX and TX (XXX: Should we halt the transmission
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001587 * more gracefully?)
1588 */
1589 macb_writel(bp, NCR, 0);
1590
1591 /* Clear the stats registers (XXX: Update stats first?) */
1592 macb_writel(bp, NCR, MACB_BIT(CLRSTAT));
1593
1594 /* Clear all status flags */
Joachim Eastwood95ebcea2012-10-22 08:45:31 +00001595 macb_writel(bp, TSR, -1);
1596 macb_writel(bp, RSR, -1);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001597
1598 /* Disable all interrupts */
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001599 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1600 queue_writel(queue, IDR, -1);
1601 queue_readl(queue, ISR);
Nathan Sullivan24468372016-01-14 13:27:27 -06001602 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1603 queue_writel(queue, ISR, -1);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001604 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001605}
1606
Jamie Iles70c9f3d2011-03-09 16:22:54 +00001607static u32 gem_mdc_clk_div(struct macb *bp)
1608{
1609 u32 config;
1610 unsigned long pclk_hz = clk_get_rate(bp->pclk);
1611
1612 if (pclk_hz <= 20000000)
1613 config = GEM_BF(CLK, GEM_CLK_DIV8);
1614 else if (pclk_hz <= 40000000)
1615 config = GEM_BF(CLK, GEM_CLK_DIV16);
1616 else if (pclk_hz <= 80000000)
1617 config = GEM_BF(CLK, GEM_CLK_DIV32);
1618 else if (pclk_hz <= 120000000)
1619 config = GEM_BF(CLK, GEM_CLK_DIV48);
1620 else if (pclk_hz <= 160000000)
1621 config = GEM_BF(CLK, GEM_CLK_DIV64);
1622 else
1623 config = GEM_BF(CLK, GEM_CLK_DIV96);
1624
1625 return config;
1626}
1627
1628static u32 macb_mdc_clk_div(struct macb *bp)
1629{
1630 u32 config;
1631 unsigned long pclk_hz;
1632
1633 if (macb_is_gem(bp))
1634 return gem_mdc_clk_div(bp);
1635
1636 pclk_hz = clk_get_rate(bp->pclk);
1637 if (pclk_hz <= 20000000)
1638 config = MACB_BF(CLK, MACB_CLK_DIV8);
1639 else if (pclk_hz <= 40000000)
1640 config = MACB_BF(CLK, MACB_CLK_DIV16);
1641 else if (pclk_hz <= 80000000)
1642 config = MACB_BF(CLK, MACB_CLK_DIV32);
1643 else
1644 config = MACB_BF(CLK, MACB_CLK_DIV64);
1645
1646 return config;
1647}
1648
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001649/* Get the DMA bus width field of the network configuration register that we
Jamie Iles757a03c2011-03-09 16:29:59 +00001650 * should program. We find the width from decoding the design configuration
1651 * register to find the maximum supported data bus width.
1652 */
1653static u32 macb_dbw(struct macb *bp)
1654{
1655 if (!macb_is_gem(bp))
1656 return 0;
1657
1658 switch (GEM_BFEXT(DBWDEF, gem_readl(bp, DCFG1))) {
1659 case 4:
1660 return GEM_BF(DBW, GEM_DBW128);
1661 case 2:
1662 return GEM_BF(DBW, GEM_DBW64);
1663 case 1:
1664 default:
1665 return GEM_BF(DBW, GEM_DBW32);
1666 }
1667}
1668
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001669/* Configure the receive DMA engine
Nicolas Ferreb3e3bd712012-11-23 03:49:01 +00001670 * - use the correct receive buffer size
Nicolas Ferree1755872014-07-24 13:50:58 +02001671 * - set best burst length for DMA operations
Nicolas Ferreb3e3bd712012-11-23 03:49:01 +00001672 * (if not supported by FIFO, it will fallback to default)
1673 * - set both rx/tx packet buffers to full memory size
1674 * These are configurable parameters for GEM.
Jamie Iles0116da42011-03-14 17:38:30 +00001675 */
1676static void macb_configure_dma(struct macb *bp)
1677{
1678 u32 dmacfg;
1679
1680 if (macb_is_gem(bp)) {
1681 dmacfg = gem_readl(bp, DMACFG) & ~GEM_BF(RXBS, -1L);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001682 dmacfg |= GEM_BF(RXBS, bp->rx_buffer_size / RX_BUFFER_MULTIPLE);
Nicolas Ferree1755872014-07-24 13:50:58 +02001683 if (bp->dma_burst_length)
1684 dmacfg = GEM_BFINS(FBLDO, bp->dma_burst_length, dmacfg);
Nicolas Ferreb3e3bd712012-11-23 03:49:01 +00001685 dmacfg |= GEM_BIT(TXPBMS) | GEM_BF(RXBMS, -1L);
Arun Chandrana50dad32015-02-18 16:59:35 +05301686 dmacfg &= ~GEM_BIT(ENDIA_PKT);
Arun Chandran62f69242015-03-01 11:38:02 +05301687
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03001688 if (bp->native_io)
Arun Chandran62f69242015-03-01 11:38:02 +05301689 dmacfg &= ~GEM_BIT(ENDIA_DESC);
1690 else
1691 dmacfg |= GEM_BIT(ENDIA_DESC); /* CPU in big endian */
1692
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02001693 if (bp->dev->features & NETIF_F_HW_CSUM)
1694 dmacfg |= GEM_BIT(TXCOEN);
1695 else
1696 dmacfg &= ~GEM_BIT(TXCOEN);
Nicolas Ferree1755872014-07-24 13:50:58 +02001697 netdev_dbg(bp->dev, "Cadence configure DMA with 0x%08x\n",
1698 dmacfg);
Jamie Iles0116da42011-03-14 17:38:30 +00001699 gem_writel(bp, DMACFG, dmacfg);
1700 }
1701}
1702
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001703static void macb_init_hw(struct macb *bp)
1704{
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001705 struct macb_queue *queue;
1706 unsigned int q;
1707
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001708 u32 config;
1709
1710 macb_reset_hw(bp);
Joachim Eastwood314bccc2012-11-07 08:14:52 +00001711 macb_set_hwaddr(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001712
Jamie Iles70c9f3d2011-03-09 16:22:54 +00001713 config = macb_mdc_clk_div(bp);
Punnaiah Choudary Kalluri022be252015-11-18 09:03:50 +05301714 if (bp->phy_interface == PHY_INTERFACE_MODE_SGMII)
1715 config |= GEM_BIT(SGMIIEN) | GEM_BIT(PCSSEL);
Havard Skinnemoen29bc2e12012-10-31 06:04:58 +00001716 config |= MACB_BF(RBOF, NET_IP_ALIGN); /* Make eth data aligned */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001717 config |= MACB_BIT(PAE); /* PAuse Enable */
1718 config |= MACB_BIT(DRFCS); /* Discard Rx FCS */
Dan Carpentera104a6b2015-05-12 21:15:24 +03001719 if (bp->caps & MACB_CAPS_JUMBO)
Harini Katakam98b5a0f42015-05-06 22:27:17 +05301720 config |= MACB_BIT(JFRAME); /* Enable jumbo frames */
1721 else
1722 config |= MACB_BIT(BIG); /* Receive oversized frames */
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001723 if (bp->dev->flags & IFF_PROMISC)
1724 config |= MACB_BIT(CAF); /* Copy All Frames */
Cyrille Pitchen924ec532014-07-24 13:51:01 +02001725 else if (macb_is_gem(bp) && bp->dev->features & NETIF_F_RXCSUM)
1726 config |= GEM_BIT(RXCOEN);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001727 if (!(bp->dev->flags & IFF_BROADCAST))
1728 config |= MACB_BIT(NBC); /* No BroadCast */
Jamie Iles757a03c2011-03-09 16:29:59 +00001729 config |= macb_dbw(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001730 macb_writel(bp, NCFGR, config);
Dan Carpentera104a6b2015-05-12 21:15:24 +03001731 if ((bp->caps & MACB_CAPS_JUMBO) && bp->jumbo_max_len)
Harini Katakam98b5a0f42015-05-06 22:27:17 +05301732 gem_writel(bp, JML, bp->jumbo_max_len);
Vitalii Demianets26cdfb42012-11-02 07:09:24 +00001733 bp->speed = SPEED_10;
1734 bp->duplex = DUPLEX_HALF;
Harini Katakam98b5a0f42015-05-06 22:27:17 +05301735 bp->rx_frm_len_mask = MACB_RX_FRMLEN_MASK;
Dan Carpentera104a6b2015-05-12 21:15:24 +03001736 if (bp->caps & MACB_CAPS_JUMBO)
Harini Katakam98b5a0f42015-05-06 22:27:17 +05301737 bp->rx_frm_len_mask = MACB_RX_JFRMLEN_MASK;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001738
Jamie Iles0116da42011-03-14 17:38:30 +00001739 macb_configure_dma(bp);
1740
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001741 /* Initialize TX and RX buffers */
1742 macb_writel(bp, RBQP, bp->rx_ring_dma);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001743 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1744 queue_writel(queue, TBQP, queue->tx_ring_dma);
1745
1746 /* Enable interrupts */
1747 queue_writel(queue, IER,
1748 MACB_RX_INT_FLAGS |
1749 MACB_TX_INT_FLAGS |
1750 MACB_BIT(HRESP));
1751 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001752
1753 /* Enable TX and RX */
frederic RODO6c36a702007-07-12 19:07:24 +02001754 macb_writel(bp, NCR, MACB_BIT(RE) | MACB_BIT(TE) | MACB_BIT(MPE));
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001755}
1756
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001757/* The hash address register is 64 bits long and takes up two
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001758 * locations in the memory map. The least significant bits are stored
1759 * in EMAC_HSL and the most significant bits in EMAC_HSH.
1760 *
1761 * The unicast hash enable and the multicast hash enable bits in the
1762 * network configuration register enable the reception of hash matched
1763 * frames. The destination address is reduced to a 6 bit index into
1764 * the 64 bit hash register using the following hash function. The
1765 * hash function is an exclusive or of every sixth bit of the
1766 * destination address.
1767 *
1768 * hi[5] = da[5] ^ da[11] ^ da[17] ^ da[23] ^ da[29] ^ da[35] ^ da[41] ^ da[47]
1769 * hi[4] = da[4] ^ da[10] ^ da[16] ^ da[22] ^ da[28] ^ da[34] ^ da[40] ^ da[46]
1770 * hi[3] = da[3] ^ da[09] ^ da[15] ^ da[21] ^ da[27] ^ da[33] ^ da[39] ^ da[45]
1771 * hi[2] = da[2] ^ da[08] ^ da[14] ^ da[20] ^ da[26] ^ da[32] ^ da[38] ^ da[44]
1772 * hi[1] = da[1] ^ da[07] ^ da[13] ^ da[19] ^ da[25] ^ da[31] ^ da[37] ^ da[43]
1773 * hi[0] = da[0] ^ da[06] ^ da[12] ^ da[18] ^ da[24] ^ da[30] ^ da[36] ^ da[42]
1774 *
1775 * da[0] represents the least significant bit of the first byte
1776 * received, that is, the multicast/unicast indicator, and da[47]
1777 * represents the most significant bit of the last byte received. If
1778 * the hash index, hi[n], points to a bit that is set in the hash
1779 * register then the frame will be matched according to whether the
1780 * frame is multicast or unicast. A multicast match will be signalled
1781 * if the multicast hash enable bit is set, da[0] is 1 and the hash
1782 * index points to a bit set in the hash register. A unicast match
1783 * will be signalled if the unicast hash enable bit is set, da[0] is 0
1784 * and the hash index points to a bit set in the hash register. To
1785 * receive all multicast frames, the hash register should be set with
1786 * all ones and the multicast hash enable bit should be set in the
1787 * network configuration register.
1788 */
1789
1790static inline int hash_bit_value(int bitnr, __u8 *addr)
1791{
1792 if (addr[bitnr / 8] & (1 << (bitnr % 8)))
1793 return 1;
1794 return 0;
1795}
1796
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001797/* Return the hash index value for the specified address. */
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001798static int hash_get_index(__u8 *addr)
1799{
1800 int i, j, bitval;
1801 int hash_index = 0;
1802
1803 for (j = 0; j < 6; j++) {
1804 for (i = 0, bitval = 0; i < 8; i++)
Xander Huff2fa45e22015-01-15 15:55:19 -06001805 bitval ^= hash_bit_value(i * 6 + j, addr);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001806
1807 hash_index |= (bitval << j);
1808 }
1809
1810 return hash_index;
1811}
1812
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001813/* Add multicast addresses to the internal multicast-hash table. */
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001814static void macb_sethashtable(struct net_device *dev)
1815{
Jiri Pirko22bedad32010-04-01 21:22:57 +00001816 struct netdev_hw_addr *ha;
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001817 unsigned long mc_filter[2];
Jiri Pirkof9dcbcc2010-02-23 09:19:49 +00001818 unsigned int bitnr;
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001819 struct macb *bp = netdev_priv(dev);
1820
Moritz Fischeraa50b552016-03-29 19:11:13 -07001821 mc_filter[0] = 0;
1822 mc_filter[1] = 0;
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001823
Jiri Pirko22bedad32010-04-01 21:22:57 +00001824 netdev_for_each_mc_addr(ha, dev) {
1825 bitnr = hash_get_index(ha->addr);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001826 mc_filter[bitnr >> 5] |= 1 << (bitnr & 31);
1827 }
1828
Jamie Ilesf75ba502011-11-08 10:12:32 +00001829 macb_or_gem_writel(bp, HRB, mc_filter[0]);
1830 macb_or_gem_writel(bp, HRT, mc_filter[1]);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001831}
1832
Moritz Fischer64ec42f2016-03-29 19:11:12 -07001833/* Enable/Disable promiscuous and multicast modes. */
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01001834static void macb_set_rx_mode(struct net_device *dev)
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001835{
1836 unsigned long cfg;
1837 struct macb *bp = netdev_priv(dev);
1838
1839 cfg = macb_readl(bp, NCFGR);
1840
Cyrille Pitchen924ec532014-07-24 13:51:01 +02001841 if (dev->flags & IFF_PROMISC) {
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001842 /* Enable promiscuous mode */
1843 cfg |= MACB_BIT(CAF);
Cyrille Pitchen924ec532014-07-24 13:51:01 +02001844
1845 /* Disable RX checksum offload */
1846 if (macb_is_gem(bp))
1847 cfg &= ~GEM_BIT(RXCOEN);
1848 } else {
1849 /* Disable promiscuous mode */
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001850 cfg &= ~MACB_BIT(CAF);
1851
Cyrille Pitchen924ec532014-07-24 13:51:01 +02001852 /* Enable RX checksum offload only if requested */
1853 if (macb_is_gem(bp) && dev->features & NETIF_F_RXCSUM)
1854 cfg |= GEM_BIT(RXCOEN);
1855 }
1856
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001857 if (dev->flags & IFF_ALLMULTI) {
1858 /* Enable all multicast mode */
Jamie Ilesf75ba502011-11-08 10:12:32 +00001859 macb_or_gem_writel(bp, HRB, -1);
1860 macb_or_gem_writel(bp, HRT, -1);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001861 cfg |= MACB_BIT(NCFGR_MTI);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001862 } else if (!netdev_mc_empty(dev)) {
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001863 /* Enable specific multicasts */
1864 macb_sethashtable(dev);
1865 cfg |= MACB_BIT(NCFGR_MTI);
1866 } else if (dev->flags & (~IFF_ALLMULTI)) {
1867 /* Disable all multicast mode */
Jamie Ilesf75ba502011-11-08 10:12:32 +00001868 macb_or_gem_writel(bp, HRB, 0);
1869 macb_or_gem_writel(bp, HRT, 0);
Patrice Vilchez446ebd02007-07-12 19:07:25 +02001870 cfg &= ~MACB_BIT(NCFGR_MTI);
1871 }
1872
1873 macb_writel(bp, NCFGR, cfg);
1874}
1875
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001876static int macb_open(struct net_device *dev)
1877{
1878 struct macb *bp = netdev_priv(dev);
Nicolas Ferre4df95132013-06-04 21:57:12 +00001879 size_t bufsz = dev->mtu + ETH_HLEN + ETH_FCS_LEN + NET_IP_ALIGN;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001880 int err;
1881
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001882 netdev_dbg(bp->dev, "open\n");
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001883
Nicolas Ferre03fc4722012-07-03 23:14:13 +00001884 /* carrier starts down */
1885 netif_carrier_off(dev);
1886
frederic RODO6c36a702007-07-12 19:07:24 +02001887 /* if the phy is not yet register, retry later*/
1888 if (!bp->phy_dev)
1889 return -EAGAIN;
1890
Nicolas Ferre1b447912013-06-04 21:57:11 +00001891 /* RX buffers initialization */
Nicolas Ferre4df95132013-06-04 21:57:12 +00001892 macb_init_rx_buffer_size(bp, bufsz);
Nicolas Ferre1b447912013-06-04 21:57:11 +00001893
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001894 err = macb_alloc_consistent(bp);
1895 if (err) {
Jamie Ilesc220f8c2011-03-08 20:27:08 +00001896 netdev_err(dev, "Unable to allocate DMA memory (error %d)\n",
1897 err);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001898 return err;
1899 }
1900
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001901 napi_enable(&bp->napi);
1902
Nicolas Ferre4df95132013-06-04 21:57:12 +00001903 bp->macbgem_ops.mog_init_rings(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001904 macb_init_hw(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001905
frederic RODO6c36a702007-07-12 19:07:24 +02001906 /* schedule a link state check */
1907 phy_start(bp->phy_dev);
1908
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001909 netif_tx_start_all_queues(dev);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001910
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001911 return 0;
1912}
1913
1914static int macb_close(struct net_device *dev)
1915{
1916 struct macb *bp = netdev_priv(dev);
1917 unsigned long flags;
1918
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01001919 netif_tx_stop_all_queues(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001920 napi_disable(&bp->napi);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001921
frederic RODO6c36a702007-07-12 19:07:24 +02001922 if (bp->phy_dev)
1923 phy_stop(bp->phy_dev);
1924
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001925 spin_lock_irqsave(&bp->lock, flags);
1926 macb_reset_hw(bp);
1927 netif_carrier_off(dev);
1928 spin_unlock_irqrestore(&bp->lock, flags);
1929
1930 macb_free_consistent(bp);
1931
1932 return 0;
1933}
1934
Harini Katakama5898ea2015-05-06 22:27:18 +05301935static int macb_change_mtu(struct net_device *dev, int new_mtu)
1936{
1937 struct macb *bp = netdev_priv(dev);
1938 u32 max_mtu;
1939
1940 if (netif_running(dev))
1941 return -EBUSY;
1942
1943 max_mtu = ETH_DATA_LEN;
Dan Carpentera104a6b2015-05-12 21:15:24 +03001944 if (bp->caps & MACB_CAPS_JUMBO)
Harini Katakama5898ea2015-05-06 22:27:18 +05301945 max_mtu = gem_readl(bp, JML) - ETH_HLEN - ETH_FCS_LEN;
1946
1947 if ((new_mtu > max_mtu) || (new_mtu < GEM_MTU_MIN_SIZE))
1948 return -EINVAL;
1949
1950 dev->mtu = new_mtu;
1951
1952 return 0;
1953}
1954
Jamie Ilesa494ed82011-03-09 16:26:35 +00001955static void gem_update_stats(struct macb *bp)
1956{
Andy Shevchenko8bcbf822015-07-24 21:24:02 +03001957 unsigned int i;
Jamie Ilesa494ed82011-03-09 16:26:35 +00001958 u32 *p = &bp->hw_stats.gem.tx_octets_31_0;
Jamie Ilesa494ed82011-03-09 16:26:35 +00001959
Xander Huff3ff13f12015-01-13 16:15:51 -06001960 for (i = 0; i < GEM_STATS_LEN; ++i, ++p) {
1961 u32 offset = gem_statistics[i].offset;
David S. Miller7a6e0702015-07-27 14:24:48 -07001962 u64 val = bp->macb_reg_readl(bp, offset);
Xander Huff3ff13f12015-01-13 16:15:51 -06001963
1964 bp->ethtool_stats[i] += val;
1965 *p += val;
1966
1967 if (offset == GEM_OCTTXL || offset == GEM_OCTRXL) {
1968 /* Add GEM_OCTTXH, GEM_OCTRXH */
David S. Miller7a6e0702015-07-27 14:24:48 -07001969 val = bp->macb_reg_readl(bp, offset + 4);
Xander Huff2fa45e22015-01-15 15:55:19 -06001970 bp->ethtool_stats[i] += ((u64)val) << 32;
Xander Huff3ff13f12015-01-13 16:15:51 -06001971 *(++p) += val;
1972 }
1973 }
Jamie Ilesa494ed82011-03-09 16:26:35 +00001974}
1975
1976static struct net_device_stats *gem_get_stats(struct macb *bp)
1977{
1978 struct gem_stats *hwstat = &bp->hw_stats.gem;
1979 struct net_device_stats *nstat = &bp->stats;
1980
1981 gem_update_stats(bp);
1982
1983 nstat->rx_errors = (hwstat->rx_frame_check_sequence_errors +
1984 hwstat->rx_alignment_errors +
1985 hwstat->rx_resource_errors +
1986 hwstat->rx_overruns +
1987 hwstat->rx_oversize_frames +
1988 hwstat->rx_jabbers +
1989 hwstat->rx_undersized_frames +
1990 hwstat->rx_length_field_frame_errors);
1991 nstat->tx_errors = (hwstat->tx_late_collisions +
1992 hwstat->tx_excessive_collisions +
1993 hwstat->tx_underrun +
1994 hwstat->tx_carrier_sense_errors);
1995 nstat->multicast = hwstat->rx_multicast_frames;
1996 nstat->collisions = (hwstat->tx_single_collision_frames +
1997 hwstat->tx_multiple_collision_frames +
1998 hwstat->tx_excessive_collisions);
1999 nstat->rx_length_errors = (hwstat->rx_oversize_frames +
2000 hwstat->rx_jabbers +
2001 hwstat->rx_undersized_frames +
2002 hwstat->rx_length_field_frame_errors);
2003 nstat->rx_over_errors = hwstat->rx_resource_errors;
2004 nstat->rx_crc_errors = hwstat->rx_frame_check_sequence_errors;
2005 nstat->rx_frame_errors = hwstat->rx_alignment_errors;
2006 nstat->rx_fifo_errors = hwstat->rx_overruns;
2007 nstat->tx_aborted_errors = hwstat->tx_excessive_collisions;
2008 nstat->tx_carrier_errors = hwstat->tx_carrier_sense_errors;
2009 nstat->tx_fifo_errors = hwstat->tx_underrun;
2010
2011 return nstat;
2012}
2013
Xander Huff3ff13f12015-01-13 16:15:51 -06002014static void gem_get_ethtool_stats(struct net_device *dev,
2015 struct ethtool_stats *stats, u64 *data)
2016{
2017 struct macb *bp;
2018
2019 bp = netdev_priv(dev);
2020 gem_update_stats(bp);
Xander Huff2fa45e22015-01-15 15:55:19 -06002021 memcpy(data, &bp->ethtool_stats, sizeof(u64) * GEM_STATS_LEN);
Xander Huff3ff13f12015-01-13 16:15:51 -06002022}
2023
2024static int gem_get_sset_count(struct net_device *dev, int sset)
2025{
2026 switch (sset) {
2027 case ETH_SS_STATS:
2028 return GEM_STATS_LEN;
2029 default:
2030 return -EOPNOTSUPP;
2031 }
2032}
2033
2034static void gem_get_ethtool_strings(struct net_device *dev, u32 sset, u8 *p)
2035{
Andy Shevchenko8bcbf822015-07-24 21:24:02 +03002036 unsigned int i;
Xander Huff3ff13f12015-01-13 16:15:51 -06002037
2038 switch (sset) {
2039 case ETH_SS_STATS:
2040 for (i = 0; i < GEM_STATS_LEN; i++, p += ETH_GSTRING_LEN)
2041 memcpy(p, gem_statistics[i].stat_string,
2042 ETH_GSTRING_LEN);
2043 break;
2044 }
2045}
2046
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002047static struct net_device_stats *macb_get_stats(struct net_device *dev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002048{
2049 struct macb *bp = netdev_priv(dev);
2050 struct net_device_stats *nstat = &bp->stats;
Jamie Ilesa494ed82011-03-09 16:26:35 +00002051 struct macb_stats *hwstat = &bp->hw_stats.macb;
2052
2053 if (macb_is_gem(bp))
2054 return gem_get_stats(bp);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002055
frederic RODO6c36a702007-07-12 19:07:24 +02002056 /* read stats from hardware */
2057 macb_update_stats(bp);
2058
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002059 /* Convert HW stats into netdevice stats */
2060 nstat->rx_errors = (hwstat->rx_fcs_errors +
2061 hwstat->rx_align_errors +
2062 hwstat->rx_resource_errors +
2063 hwstat->rx_overruns +
2064 hwstat->rx_oversize_pkts +
2065 hwstat->rx_jabbers +
2066 hwstat->rx_undersize_pkts +
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002067 hwstat->rx_length_mismatch);
2068 nstat->tx_errors = (hwstat->tx_late_cols +
2069 hwstat->tx_excessive_cols +
2070 hwstat->tx_underruns +
Wolfgang Steinwender716723c2015-04-10 11:42:56 +02002071 hwstat->tx_carrier_errors +
2072 hwstat->sqe_test_errors);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002073 nstat->collisions = (hwstat->tx_single_cols +
2074 hwstat->tx_multiple_cols +
2075 hwstat->tx_excessive_cols);
2076 nstat->rx_length_errors = (hwstat->rx_oversize_pkts +
2077 hwstat->rx_jabbers +
2078 hwstat->rx_undersize_pkts +
2079 hwstat->rx_length_mismatch);
Alexander Steinb19f7f72011-04-13 05:03:24 +00002080 nstat->rx_over_errors = hwstat->rx_resource_errors +
2081 hwstat->rx_overruns;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002082 nstat->rx_crc_errors = hwstat->rx_fcs_errors;
2083 nstat->rx_frame_errors = hwstat->rx_align_errors;
2084 nstat->rx_fifo_errors = hwstat->rx_overruns;
2085 /* XXX: What does "missed" mean? */
2086 nstat->tx_aborted_errors = hwstat->tx_excessive_cols;
2087 nstat->tx_carrier_errors = hwstat->tx_carrier_errors;
2088 nstat->tx_fifo_errors = hwstat->tx_underruns;
2089 /* Don't know about heartbeat or window errors... */
2090
2091 return nstat;
2092}
2093
2094static int macb_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2095{
2096 struct macb *bp = netdev_priv(dev);
frederic RODO6c36a702007-07-12 19:07:24 +02002097 struct phy_device *phydev = bp->phy_dev;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002098
frederic RODO6c36a702007-07-12 19:07:24 +02002099 if (!phydev)
2100 return -ENODEV;
2101
2102 return phy_ethtool_gset(phydev, cmd);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002103}
2104
2105static int macb_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2106{
2107 struct macb *bp = netdev_priv(dev);
frederic RODO6c36a702007-07-12 19:07:24 +02002108 struct phy_device *phydev = bp->phy_dev;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002109
frederic RODO6c36a702007-07-12 19:07:24 +02002110 if (!phydev)
2111 return -ENODEV;
2112
2113 return phy_ethtool_sset(phydev, cmd);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002114}
2115
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002116static int macb_get_regs_len(struct net_device *netdev)
2117{
2118 return MACB_GREGS_NBR * sizeof(u32);
2119}
2120
2121static void macb_get_regs(struct net_device *dev, struct ethtool_regs *regs,
2122 void *p)
2123{
2124 struct macb *bp = netdev_priv(dev);
2125 unsigned int tail, head;
2126 u32 *regs_buff = p;
2127
2128 regs->version = (macb_readl(bp, MID) & ((1 << MACB_REV_SIZE) - 1))
2129 | MACB_GREGS_VERSION;
2130
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002131 tail = macb_tx_ring_wrap(bp->queues[0].tx_tail);
2132 head = macb_tx_ring_wrap(bp->queues[0].tx_head);
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002133
2134 regs_buff[0] = macb_readl(bp, NCR);
2135 regs_buff[1] = macb_or_gem_readl(bp, NCFGR);
2136 regs_buff[2] = macb_readl(bp, NSR);
2137 regs_buff[3] = macb_readl(bp, TSR);
2138 regs_buff[4] = macb_readl(bp, RBQP);
2139 regs_buff[5] = macb_readl(bp, TBQP);
2140 regs_buff[6] = macb_readl(bp, RSR);
2141 regs_buff[7] = macb_readl(bp, IMR);
2142
2143 regs_buff[8] = tail;
2144 regs_buff[9] = head;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002145 regs_buff[10] = macb_tx_dma(&bp->queues[0], tail);
2146 regs_buff[11] = macb_tx_dma(&bp->queues[0], head);
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002147
Neil Armstrongce721a72016-01-05 14:39:16 +01002148 if (!(bp->caps & MACB_CAPS_USRIO_DISABLED))
2149 regs_buff[12] = macb_or_gem_readl(bp, USRIO);
Moritz Fischer64ec42f2016-03-29 19:11:12 -07002150 if (macb_is_gem(bp))
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002151 regs_buff[13] = gem_readl(bp, DMACFG);
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002152}
2153
Sergio Prado3e2a5e12016-02-09 12:07:16 -02002154static void macb_get_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
2155{
2156 struct macb *bp = netdev_priv(netdev);
2157
2158 wol->supported = 0;
2159 wol->wolopts = 0;
2160
2161 if (bp->wol & MACB_WOL_HAS_MAGIC_PACKET) {
2162 wol->supported = WAKE_MAGIC;
2163
2164 if (bp->wol & MACB_WOL_ENABLED)
2165 wol->wolopts |= WAKE_MAGIC;
2166 }
2167}
2168
2169static int macb_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
2170{
2171 struct macb *bp = netdev_priv(netdev);
2172
2173 if (!(bp->wol & MACB_WOL_HAS_MAGIC_PACKET) ||
2174 (wol->wolopts & ~WAKE_MAGIC))
2175 return -EOPNOTSUPP;
2176
2177 if (wol->wolopts & WAKE_MAGIC)
2178 bp->wol |= MACB_WOL_ENABLED;
2179 else
2180 bp->wol &= ~MACB_WOL_ENABLED;
2181
2182 device_set_wakeup_enable(&bp->pdev->dev, bp->wol & MACB_WOL_ENABLED);
2183
2184 return 0;
2185}
2186
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002187static const struct ethtool_ops macb_ethtool_ops = {
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002188 .get_settings = macb_get_settings,
2189 .set_settings = macb_set_settings,
Nicolas Ferred1d1b532012-10-31 06:04:56 +00002190 .get_regs_len = macb_get_regs_len,
2191 .get_regs = macb_get_regs,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002192 .get_link = ethtool_op_get_link,
Richard Cochran17f393e2012-04-03 22:59:31 +00002193 .get_ts_info = ethtool_op_get_ts_info,
Sergio Prado3e2a5e12016-02-09 12:07:16 -02002194 .get_wol = macb_get_wol,
2195 .set_wol = macb_set_wol,
Xander Huff8cd5a562015-01-15 15:55:20 -06002196};
Xander Huff8cd5a562015-01-15 15:55:20 -06002197
Lad, Prabhakar8093b1c2015-02-05 16:21:07 +00002198static const struct ethtool_ops gem_ethtool_ops = {
Xander Huff8cd5a562015-01-15 15:55:20 -06002199 .get_settings = macb_get_settings,
2200 .set_settings = macb_set_settings,
2201 .get_regs_len = macb_get_regs_len,
2202 .get_regs = macb_get_regs,
2203 .get_link = ethtool_op_get_link,
2204 .get_ts_info = ethtool_op_get_ts_info,
Xander Huff3ff13f12015-01-13 16:15:51 -06002205 .get_ethtool_stats = gem_get_ethtool_stats,
2206 .get_strings = gem_get_ethtool_strings,
2207 .get_sset_count = gem_get_sset_count,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002208};
2209
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002210static int macb_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002211{
2212 struct macb *bp = netdev_priv(dev);
frederic RODO6c36a702007-07-12 19:07:24 +02002213 struct phy_device *phydev = bp->phy_dev;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002214
2215 if (!netif_running(dev))
2216 return -EINVAL;
2217
frederic RODO6c36a702007-07-12 19:07:24 +02002218 if (!phydev)
2219 return -ENODEV;
2220
Richard Cochran28b04112010-07-17 08:48:55 +00002221 return phy_mii_ioctl(phydev, rq, cmd);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002222}
2223
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02002224static int macb_set_features(struct net_device *netdev,
2225 netdev_features_t features)
2226{
2227 struct macb *bp = netdev_priv(netdev);
2228 netdev_features_t changed = features ^ netdev->features;
2229
2230 /* TX checksum offload */
2231 if ((changed & NETIF_F_HW_CSUM) && macb_is_gem(bp)) {
2232 u32 dmacfg;
2233
2234 dmacfg = gem_readl(bp, DMACFG);
2235 if (features & NETIF_F_HW_CSUM)
2236 dmacfg |= GEM_BIT(TXCOEN);
2237 else
2238 dmacfg &= ~GEM_BIT(TXCOEN);
2239 gem_writel(bp, DMACFG, dmacfg);
2240 }
2241
Cyrille Pitchen924ec532014-07-24 13:51:01 +02002242 /* RX checksum offload */
2243 if ((changed & NETIF_F_RXCSUM) && macb_is_gem(bp)) {
2244 u32 netcfg;
2245
2246 netcfg = gem_readl(bp, NCFGR);
2247 if (features & NETIF_F_RXCSUM &&
2248 !(netdev->flags & IFF_PROMISC))
2249 netcfg |= GEM_BIT(RXCOEN);
2250 else
2251 netcfg &= ~GEM_BIT(RXCOEN);
2252 gem_writel(bp, NCFGR, netcfg);
2253 }
2254
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02002255 return 0;
2256}
2257
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00002258static const struct net_device_ops macb_netdev_ops = {
2259 .ndo_open = macb_open,
2260 .ndo_stop = macb_close,
2261 .ndo_start_xmit = macb_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00002262 .ndo_set_rx_mode = macb_set_rx_mode,
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00002263 .ndo_get_stats = macb_get_stats,
2264 .ndo_do_ioctl = macb_ioctl,
2265 .ndo_validate_addr = eth_validate_addr,
Harini Katakama5898ea2015-05-06 22:27:18 +05302266 .ndo_change_mtu = macb_change_mtu,
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00002267 .ndo_set_mac_address = eth_mac_addr,
Thomas Petazzoni6e8cf5c2009-05-04 11:08:41 -07002268#ifdef CONFIG_NET_POLL_CONTROLLER
2269 .ndo_poll_controller = macb_poll_controller,
2270#endif
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02002271 .ndo_set_features = macb_set_features,
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00002272};
2273
Moritz Fischer64ec42f2016-03-29 19:11:12 -07002274/* Configure peripheral capabilities according to device tree
Nicolas Ferree1755872014-07-24 13:50:58 +02002275 * and integration options used
2276 */
Moritz Fischer64ec42f2016-03-29 19:11:12 -07002277static void macb_configure_caps(struct macb *bp,
2278 const struct macb_config *dt_conf)
Nicolas Ferree1755872014-07-24 13:50:58 +02002279{
2280 u32 dcfg;
Nicolas Ferree1755872014-07-24 13:50:58 +02002281
Nicolas Ferref6970502015-03-31 15:02:01 +02002282 if (dt_conf)
2283 bp->caps = dt_conf->caps;
2284
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03002285 if (hw_is_gem(bp->regs, bp->native_io)) {
Nicolas Ferree1755872014-07-24 13:50:58 +02002286 bp->caps |= MACB_CAPS_MACB_IS_GEM;
2287
Nicolas Ferree1755872014-07-24 13:50:58 +02002288 dcfg = gem_readl(bp, DCFG1);
2289 if (GEM_BFEXT(IRQCOR, dcfg) == 0)
2290 bp->caps |= MACB_CAPS_ISR_CLEAR_ON_WRITE;
2291 dcfg = gem_readl(bp, DCFG2);
2292 if ((dcfg & (GEM_BIT(RX_PKT_BUFF) | GEM_BIT(TX_PKT_BUFF))) == 0)
2293 bp->caps |= MACB_CAPS_FIFO_MODE;
2294 }
2295
Andy Shevchenkoa35919e2015-07-24 21:24:01 +03002296 dev_dbg(&bp->pdev->dev, "Cadence caps 0x%08x\n", bp->caps);
Nicolas Ferree1755872014-07-24 13:50:58 +02002297}
2298
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002299static void macb_probe_queues(void __iomem *mem,
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03002300 bool native_io,
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002301 unsigned int *queue_mask,
2302 unsigned int *num_queues)
2303{
2304 unsigned int hw_q;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002305
2306 *queue_mask = 0x1;
2307 *num_queues = 1;
2308
Nicolas Ferreda120112015-03-31 15:02:00 +02002309 /* is it macb or gem ?
2310 *
2311 * We need to read directly from the hardware here because
2312 * we are early in the probe process and don't have the
2313 * MACB_CAPS_MACB_IS_GEM flag positioned
2314 */
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03002315 if (!hw_is_gem(mem, native_io))
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002316 return;
2317
2318 /* bit 0 is never set but queue 0 always exists */
Arun Chandrana50dad32015-02-18 16:59:35 +05302319 *queue_mask = readl_relaxed(mem + GEM_DCFG6) & 0xff;
2320
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002321 *queue_mask |= 0x1;
2322
2323 for (hw_q = 1; hw_q < MACB_MAX_QUEUES; ++hw_q)
2324 if (*queue_mask & (1 << hw_q))
2325 (*num_queues)++;
2326}
2327
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002328static int macb_clk_init(struct platform_device *pdev, struct clk **pclk,
2329 struct clk **hclk, struct clk **tx_clk)
2330{
2331 int err;
2332
2333 *pclk = devm_clk_get(&pdev->dev, "pclk");
2334 if (IS_ERR(*pclk)) {
2335 err = PTR_ERR(*pclk);
2336 dev_err(&pdev->dev, "failed to get macb_clk (%u)\n", err);
2337 return err;
2338 }
2339
2340 *hclk = devm_clk_get(&pdev->dev, "hclk");
2341 if (IS_ERR(*hclk)) {
2342 err = PTR_ERR(*hclk);
2343 dev_err(&pdev->dev, "failed to get hclk (%u)\n", err);
2344 return err;
2345 }
2346
2347 *tx_clk = devm_clk_get(&pdev->dev, "tx_clk");
2348 if (IS_ERR(*tx_clk))
2349 *tx_clk = NULL;
2350
2351 err = clk_prepare_enable(*pclk);
2352 if (err) {
2353 dev_err(&pdev->dev, "failed to enable pclk (%u)\n", err);
2354 return err;
2355 }
2356
2357 err = clk_prepare_enable(*hclk);
2358 if (err) {
2359 dev_err(&pdev->dev, "failed to enable hclk (%u)\n", err);
2360 goto err_disable_pclk;
2361 }
2362
2363 err = clk_prepare_enable(*tx_clk);
2364 if (err) {
2365 dev_err(&pdev->dev, "failed to enable tx_clk (%u)\n", err);
2366 goto err_disable_hclk;
2367 }
2368
2369 return 0;
2370
2371err_disable_hclk:
2372 clk_disable_unprepare(*hclk);
2373
2374err_disable_pclk:
2375 clk_disable_unprepare(*pclk);
2376
2377 return err;
2378}
2379
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002380static int macb_init(struct platform_device *pdev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002381{
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002382 struct net_device *dev = platform_get_drvdata(pdev);
Nicolas Ferrebfa09142015-03-31 15:01:59 +02002383 unsigned int hw_q, q;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002384 struct macb *bp = netdev_priv(dev);
2385 struct macb_queue *queue;
2386 int err;
2387 u32 val;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002388
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002389 /* set the queue register mapping once for all: queue0 has a special
2390 * register mapping but we don't want to test the queue index then
2391 * compute the corresponding register offset at run time.
2392 */
Cyrille Pitchencf250de2014-12-15 15:13:32 +01002393 for (hw_q = 0, q = 0; hw_q < MACB_MAX_QUEUES; ++hw_q) {
Nicolas Ferrebfa09142015-03-31 15:01:59 +02002394 if (!(bp->queue_mask & (1 << hw_q)))
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002395 continue;
Jamie Iles461845d2011-03-08 20:19:23 +00002396
Cyrille Pitchencf250de2014-12-15 15:13:32 +01002397 queue = &bp->queues[q];
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002398 queue->bp = bp;
2399 if (hw_q) {
2400 queue->ISR = GEM_ISR(hw_q - 1);
2401 queue->IER = GEM_IER(hw_q - 1);
2402 queue->IDR = GEM_IDR(hw_q - 1);
2403 queue->IMR = GEM_IMR(hw_q - 1);
2404 queue->TBQP = GEM_TBQP(hw_q - 1);
2405 } else {
2406 /* queue0 uses legacy registers */
2407 queue->ISR = MACB_ISR;
2408 queue->IER = MACB_IER;
2409 queue->IDR = MACB_IDR;
2410 queue->IMR = MACB_IMR;
2411 queue->TBQP = MACB_TBQP;
Soren Brinkmanne1824df2013-12-10 16:07:23 -08002412 }
Soren Brinkmanne1824df2013-12-10 16:07:23 -08002413
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002414 /* get irq: here we use the linux queue index, not the hardware
2415 * queue index. the queue irq definitions in the device tree
2416 * must remove the optional gaps that could exist in the
2417 * hardware queue mask.
2418 */
Cyrille Pitchencf250de2014-12-15 15:13:32 +01002419 queue->irq = platform_get_irq(pdev, q);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002420 err = devm_request_irq(&pdev->dev, queue->irq, macb_interrupt,
Punnaiah Choudary Kalluri20488232015-03-06 18:29:12 +01002421 IRQF_SHARED, dev->name, queue);
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002422 if (err) {
2423 dev_err(&pdev->dev,
2424 "Unable to request IRQ %d (error %d)\n",
2425 queue->irq, err);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002426 return err;
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002427 }
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002428
Cyrille Pitchen02c958d2014-12-12 13:26:44 +01002429 INIT_WORK(&queue->tx_error_task, macb_tx_error_task);
Cyrille Pitchencf250de2014-12-15 15:13:32 +01002430 q++;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002431 }
2432
Alexander Beregalov5f1fa992009-04-11 07:42:26 +00002433 dev->netdev_ops = &macb_netdev_ops;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002434 netif_napi_add(dev, &bp->napi, macb_poll, 64);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002435
Nicolas Ferre4df95132013-06-04 21:57:12 +00002436 /* setup appropriated routines according to adapter type */
2437 if (macb_is_gem(bp)) {
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02002438 bp->max_tx_length = GEM_MAX_TX_LEN;
Nicolas Ferre4df95132013-06-04 21:57:12 +00002439 bp->macbgem_ops.mog_alloc_rx_buffers = gem_alloc_rx_buffers;
2440 bp->macbgem_ops.mog_free_rx_buffers = gem_free_rx_buffers;
2441 bp->macbgem_ops.mog_init_rings = gem_init_rings;
2442 bp->macbgem_ops.mog_rx = gem_rx;
Xander Huff8cd5a562015-01-15 15:55:20 -06002443 dev->ethtool_ops = &gem_ethtool_ops;
Nicolas Ferre4df95132013-06-04 21:57:12 +00002444 } else {
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02002445 bp->max_tx_length = MACB_MAX_TX_LEN;
Nicolas Ferre4df95132013-06-04 21:57:12 +00002446 bp->macbgem_ops.mog_alloc_rx_buffers = macb_alloc_rx_buffers;
2447 bp->macbgem_ops.mog_free_rx_buffers = macb_free_rx_buffers;
2448 bp->macbgem_ops.mog_init_rings = macb_init_rings;
2449 bp->macbgem_ops.mog_rx = macb_rx;
Xander Huff8cd5a562015-01-15 15:55:20 -06002450 dev->ethtool_ops = &macb_ethtool_ops;
Nicolas Ferre4df95132013-06-04 21:57:12 +00002451 }
2452
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02002453 /* Set features */
2454 dev->hw_features = NETIF_F_SG;
Cyrille Pitchen85ff3d82014-07-24 13:51:00 +02002455 /* Checksum offload is only available on gem with packet buffer */
2456 if (macb_is_gem(bp) && !(bp->caps & MACB_CAPS_FIFO_MODE))
Cyrille Pitchen924ec532014-07-24 13:51:01 +02002457 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
Cyrille Pitchena4c35ed32014-07-24 13:50:59 +02002458 if (bp->caps & MACB_CAPS_SG_DISABLED)
2459 dev->hw_features &= ~NETIF_F_SG;
2460 dev->features = dev->hw_features;
2461
Neil Armstrongce721a72016-01-05 14:39:16 +01002462 if (!(bp->caps & MACB_CAPS_USRIO_DISABLED)) {
2463 val = 0;
2464 if (bp->phy_interface == PHY_INTERFACE_MODE_RGMII)
2465 val = GEM_BIT(RGMII);
2466 else if (bp->phy_interface == PHY_INTERFACE_MODE_RMII &&
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01002467 (bp->caps & MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII))
Neil Armstrongce721a72016-01-05 14:39:16 +01002468 val = MACB_BIT(RMII);
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01002469 else if (!(bp->caps & MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII))
Neil Armstrongce721a72016-01-05 14:39:16 +01002470 val = MACB_BIT(MII);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01002471
Neil Armstrongce721a72016-01-05 14:39:16 +01002472 if (bp->caps & MACB_CAPS_USRIO_HAS_CLKEN)
2473 val |= MACB_BIT(CLKEN);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002474
Neil Armstrongce721a72016-01-05 14:39:16 +01002475 macb_or_gem_writel(bp, USRIO, val);
2476 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002477
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002478 /* Set MII management clock divider */
2479 val = macb_mdc_clk_div(bp);
2480 val |= macb_dbw(bp);
Punnaiah Choudary Kalluri022be252015-11-18 09:03:50 +05302481 if (bp->phy_interface == PHY_INTERFACE_MODE_SGMII)
2482 val |= GEM_BIT(SGMIIEN) | GEM_BIT(PCSSEL);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002483 macb_writel(bp, NCFGR, val);
2484
2485 return 0;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002486}
2487
2488#if defined(CONFIG_OF)
2489/* 1518 rounded up */
2490#define AT91ETHER_MAX_RBUFF_SZ 0x600
2491/* max number of receive buffers */
2492#define AT91ETHER_MAX_RX_DESCR 9
2493
2494/* Initialize and start the Receiver and Transmit subsystems */
2495static int at91ether_start(struct net_device *dev)
2496{
2497 struct macb *lp = netdev_priv(dev);
2498 dma_addr_t addr;
2499 u32 ctl;
2500 int i;
2501
2502 lp->rx_ring = dma_alloc_coherent(&lp->pdev->dev,
2503 (AT91ETHER_MAX_RX_DESCR *
2504 sizeof(struct macb_dma_desc)),
2505 &lp->rx_ring_dma, GFP_KERNEL);
2506 if (!lp->rx_ring)
2507 return -ENOMEM;
2508
2509 lp->rx_buffers = dma_alloc_coherent(&lp->pdev->dev,
2510 AT91ETHER_MAX_RX_DESCR *
2511 AT91ETHER_MAX_RBUFF_SZ,
2512 &lp->rx_buffers_dma, GFP_KERNEL);
2513 if (!lp->rx_buffers) {
2514 dma_free_coherent(&lp->pdev->dev,
2515 AT91ETHER_MAX_RX_DESCR *
2516 sizeof(struct macb_dma_desc),
2517 lp->rx_ring, lp->rx_ring_dma);
2518 lp->rx_ring = NULL;
2519 return -ENOMEM;
2520 }
2521
2522 addr = lp->rx_buffers_dma;
2523 for (i = 0; i < AT91ETHER_MAX_RX_DESCR; i++) {
2524 lp->rx_ring[i].addr = addr;
2525 lp->rx_ring[i].ctrl = 0;
2526 addr += AT91ETHER_MAX_RBUFF_SZ;
2527 }
2528
2529 /* Set the Wrap bit on the last descriptor */
2530 lp->rx_ring[AT91ETHER_MAX_RX_DESCR - 1].addr |= MACB_BIT(RX_WRAP);
2531
2532 /* Reset buffer index */
2533 lp->rx_tail = 0;
2534
2535 /* Program address of descriptor list in Rx Buffer Queue register */
2536 macb_writel(lp, RBQP, lp->rx_ring_dma);
2537
2538 /* Enable Receive and Transmit */
2539 ctl = macb_readl(lp, NCR);
2540 macb_writel(lp, NCR, ctl | MACB_BIT(RE) | MACB_BIT(TE));
2541
2542 return 0;
2543}
2544
2545/* Open the ethernet interface */
2546static int at91ether_open(struct net_device *dev)
2547{
2548 struct macb *lp = netdev_priv(dev);
2549 u32 ctl;
2550 int ret;
2551
2552 /* Clear internal statistics */
2553 ctl = macb_readl(lp, NCR);
2554 macb_writel(lp, NCR, ctl | MACB_BIT(CLRSTAT));
2555
2556 macb_set_hwaddr(lp);
2557
2558 ret = at91ether_start(dev);
2559 if (ret)
2560 return ret;
2561
2562 /* Enable MAC interrupts */
2563 macb_writel(lp, IER, MACB_BIT(RCOMP) |
2564 MACB_BIT(RXUBR) |
2565 MACB_BIT(ISR_TUND) |
2566 MACB_BIT(ISR_RLE) |
2567 MACB_BIT(TCOMP) |
2568 MACB_BIT(ISR_ROVR) |
2569 MACB_BIT(HRESP));
2570
2571 /* schedule a link state check */
2572 phy_start(lp->phy_dev);
2573
2574 netif_start_queue(dev);
2575
2576 return 0;
2577}
2578
2579/* Close the interface */
2580static int at91ether_close(struct net_device *dev)
2581{
2582 struct macb *lp = netdev_priv(dev);
2583 u32 ctl;
2584
2585 /* Disable Receiver and Transmitter */
2586 ctl = macb_readl(lp, NCR);
2587 macb_writel(lp, NCR, ctl & ~(MACB_BIT(TE) | MACB_BIT(RE)));
2588
2589 /* Disable MAC interrupts */
2590 macb_writel(lp, IDR, MACB_BIT(RCOMP) |
2591 MACB_BIT(RXUBR) |
2592 MACB_BIT(ISR_TUND) |
2593 MACB_BIT(ISR_RLE) |
2594 MACB_BIT(TCOMP) |
2595 MACB_BIT(ISR_ROVR) |
2596 MACB_BIT(HRESP));
2597
2598 netif_stop_queue(dev);
2599
2600 dma_free_coherent(&lp->pdev->dev,
2601 AT91ETHER_MAX_RX_DESCR *
2602 sizeof(struct macb_dma_desc),
2603 lp->rx_ring, lp->rx_ring_dma);
2604 lp->rx_ring = NULL;
2605
2606 dma_free_coherent(&lp->pdev->dev,
2607 AT91ETHER_MAX_RX_DESCR * AT91ETHER_MAX_RBUFF_SZ,
2608 lp->rx_buffers, lp->rx_buffers_dma);
2609 lp->rx_buffers = NULL;
2610
2611 return 0;
2612}
2613
2614/* Transmit packet */
2615static int at91ether_start_xmit(struct sk_buff *skb, struct net_device *dev)
2616{
2617 struct macb *lp = netdev_priv(dev);
2618
2619 if (macb_readl(lp, TSR) & MACB_BIT(RM9200_BNQ)) {
2620 netif_stop_queue(dev);
2621
2622 /* Store packet information (to free when Tx completed) */
2623 lp->skb = skb;
2624 lp->skb_length = skb->len;
2625 lp->skb_physaddr = dma_map_single(NULL, skb->data, skb->len,
2626 DMA_TO_DEVICE);
2627
2628 /* Set address of the data in the Transmit Address register */
2629 macb_writel(lp, TAR, lp->skb_physaddr);
2630 /* Set length of the packet in the Transmit Control register */
2631 macb_writel(lp, TCR, skb->len);
2632
2633 } else {
2634 netdev_err(dev, "%s called, but device is busy!\n", __func__);
2635 return NETDEV_TX_BUSY;
2636 }
2637
2638 return NETDEV_TX_OK;
2639}
2640
2641/* Extract received frame from buffer descriptors and sent to upper layers.
2642 * (Called from interrupt context)
2643 */
2644static void at91ether_rx(struct net_device *dev)
2645{
2646 struct macb *lp = netdev_priv(dev);
2647 unsigned char *p_recv;
2648 struct sk_buff *skb;
2649 unsigned int pktlen;
2650
2651 while (lp->rx_ring[lp->rx_tail].addr & MACB_BIT(RX_USED)) {
2652 p_recv = lp->rx_buffers + lp->rx_tail * AT91ETHER_MAX_RBUFF_SZ;
2653 pktlen = MACB_BF(RX_FRMLEN, lp->rx_ring[lp->rx_tail].ctrl);
2654 skb = netdev_alloc_skb(dev, pktlen + 2);
2655 if (skb) {
2656 skb_reserve(skb, 2);
2657 memcpy(skb_put(skb, pktlen), p_recv, pktlen);
2658
2659 skb->protocol = eth_type_trans(skb, dev);
2660 lp->stats.rx_packets++;
2661 lp->stats.rx_bytes += pktlen;
2662 netif_rx(skb);
2663 } else {
2664 lp->stats.rx_dropped++;
2665 }
2666
2667 if (lp->rx_ring[lp->rx_tail].ctrl & MACB_BIT(RX_MHASH_MATCH))
2668 lp->stats.multicast++;
2669
2670 /* reset ownership bit */
2671 lp->rx_ring[lp->rx_tail].addr &= ~MACB_BIT(RX_USED);
2672
2673 /* wrap after last buffer */
2674 if (lp->rx_tail == AT91ETHER_MAX_RX_DESCR - 1)
2675 lp->rx_tail = 0;
2676 else
2677 lp->rx_tail++;
2678 }
2679}
2680
2681/* MAC interrupt handler */
2682static irqreturn_t at91ether_interrupt(int irq, void *dev_id)
2683{
2684 struct net_device *dev = dev_id;
2685 struct macb *lp = netdev_priv(dev);
2686 u32 intstatus, ctl;
2687
2688 /* MAC Interrupt Status register indicates what interrupts are pending.
2689 * It is automatically cleared once read.
2690 */
2691 intstatus = macb_readl(lp, ISR);
2692
2693 /* Receive complete */
2694 if (intstatus & MACB_BIT(RCOMP))
2695 at91ether_rx(dev);
2696
2697 /* Transmit complete */
2698 if (intstatus & MACB_BIT(TCOMP)) {
2699 /* The TCOM bit is set even if the transmission failed */
2700 if (intstatus & (MACB_BIT(ISR_TUND) | MACB_BIT(ISR_RLE)))
2701 lp->stats.tx_errors++;
2702
2703 if (lp->skb) {
2704 dev_kfree_skb_irq(lp->skb);
2705 lp->skb = NULL;
2706 dma_unmap_single(NULL, lp->skb_physaddr,
2707 lp->skb_length, DMA_TO_DEVICE);
2708 lp->stats.tx_packets++;
2709 lp->stats.tx_bytes += lp->skb_length;
2710 }
2711 netif_wake_queue(dev);
2712 }
2713
2714 /* Work-around for EMAC Errata section 41.3.1 */
2715 if (intstatus & MACB_BIT(RXUBR)) {
2716 ctl = macb_readl(lp, NCR);
2717 macb_writel(lp, NCR, ctl & ~MACB_BIT(RE));
2718 macb_writel(lp, NCR, ctl | MACB_BIT(RE));
2719 }
2720
2721 if (intstatus & MACB_BIT(ISR_ROVR))
2722 netdev_err(dev, "ROVR error\n");
2723
2724 return IRQ_HANDLED;
2725}
2726
2727#ifdef CONFIG_NET_POLL_CONTROLLER
2728static void at91ether_poll_controller(struct net_device *dev)
2729{
2730 unsigned long flags;
2731
2732 local_irq_save(flags);
2733 at91ether_interrupt(dev->irq, dev);
2734 local_irq_restore(flags);
2735}
2736#endif
2737
2738static const struct net_device_ops at91ether_netdev_ops = {
2739 .ndo_open = at91ether_open,
2740 .ndo_stop = at91ether_close,
2741 .ndo_start_xmit = at91ether_start_xmit,
2742 .ndo_get_stats = macb_get_stats,
2743 .ndo_set_rx_mode = macb_set_rx_mode,
2744 .ndo_set_mac_address = eth_mac_addr,
2745 .ndo_do_ioctl = macb_ioctl,
2746 .ndo_validate_addr = eth_validate_addr,
2747 .ndo_change_mtu = eth_change_mtu,
2748#ifdef CONFIG_NET_POLL_CONTROLLER
2749 .ndo_poll_controller = at91ether_poll_controller,
2750#endif
2751};
2752
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002753static int at91ether_clk_init(struct platform_device *pdev, struct clk **pclk,
2754 struct clk **hclk, struct clk **tx_clk)
2755{
2756 int err;
2757
2758 *hclk = NULL;
2759 *tx_clk = NULL;
2760
2761 *pclk = devm_clk_get(&pdev->dev, "ether_clk");
2762 if (IS_ERR(*pclk))
2763 return PTR_ERR(*pclk);
2764
2765 err = clk_prepare_enable(*pclk);
2766 if (err) {
2767 dev_err(&pdev->dev, "failed to enable pclk (%u)\n", err);
2768 return err;
2769 }
2770
2771 return 0;
2772}
2773
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002774static int at91ether_init(struct platform_device *pdev)
2775{
2776 struct net_device *dev = platform_get_drvdata(pdev);
2777 struct macb *bp = netdev_priv(dev);
2778 int err;
2779 u32 reg;
2780
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002781 dev->netdev_ops = &at91ether_netdev_ops;
2782 dev->ethtool_ops = &macb_ethtool_ops;
2783
2784 err = devm_request_irq(&pdev->dev, dev->irq, at91ether_interrupt,
2785 0, dev->name, dev);
2786 if (err)
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002787 return err;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002788
2789 macb_writel(bp, NCR, 0);
2790
2791 reg = MACB_BF(CLK, MACB_CLK_DIV32) | MACB_BIT(BIG);
2792 if (bp->phy_interface == PHY_INTERFACE_MODE_RMII)
2793 reg |= MACB_BIT(RM9200_RMII);
2794
2795 macb_writel(bp, NCFGR, reg);
2796
2797 return 0;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002798}
2799
David S. Miller3cef5c52015-03-09 23:38:02 -04002800static const struct macb_config at91sam9260_config = {
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01002801 .caps = MACB_CAPS_USRIO_HAS_CLKEN | MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002802 .clk_init = macb_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002803 .init = macb_init,
2804};
2805
David S. Miller3cef5c52015-03-09 23:38:02 -04002806static const struct macb_config pc302gem_config = {
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002807 .caps = MACB_CAPS_SG_DISABLED | MACB_CAPS_GIGABIT_MODE_AVAILABLE,
2808 .dma_burst_length = 16,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002809 .clk_init = macb_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002810 .init = macb_init,
2811};
2812
Cyrille Pitchen5c8fe712015-06-18 16:27:23 +02002813static const struct macb_config sama5d2_config = {
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01002814 .caps = MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
Cyrille Pitchen5c8fe712015-06-18 16:27:23 +02002815 .dma_burst_length = 16,
2816 .clk_init = macb_clk_init,
2817 .init = macb_init,
2818};
2819
David S. Miller3cef5c52015-03-09 23:38:02 -04002820static const struct macb_config sama5d3_config = {
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01002821 .caps = MACB_CAPS_SG_DISABLED | MACB_CAPS_GIGABIT_MODE_AVAILABLE
2822 | MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002823 .dma_burst_length = 16,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002824 .clk_init = macb_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002825 .init = macb_init,
2826};
2827
David S. Miller3cef5c52015-03-09 23:38:02 -04002828static const struct macb_config sama5d4_config = {
Nicolas Ferre6bdaa5e2016-03-10 16:44:32 +01002829 .caps = MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002830 .dma_burst_length = 4,
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002831 .clk_init = macb_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002832 .init = macb_init,
2833};
2834
David S. Miller3cef5c52015-03-09 23:38:02 -04002835static const struct macb_config emac_config = {
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002836 .clk_init = at91ether_clk_init,
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002837 .init = at91ether_init,
2838};
2839
Neil Armstronge611b5b2016-01-05 14:39:17 +01002840static const struct macb_config np4_config = {
2841 .caps = MACB_CAPS_USRIO_DISABLED,
2842 .clk_init = macb_clk_init,
2843 .init = macb_init,
2844};
David S. Miller36583eb2015-05-23 01:22:35 -04002845
Harini Katakam7b61f9c2015-05-06 22:27:16 +05302846static const struct macb_config zynqmp_config = {
Punnaiah Choudary Kalluri7baaa902015-07-06 10:02:53 +05302847 .caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE | MACB_CAPS_JUMBO,
Harini Katakam7b61f9c2015-05-06 22:27:16 +05302848 .dma_burst_length = 16,
2849 .clk_init = macb_clk_init,
2850 .init = macb_init,
Harini Katakam98b5a0f42015-05-06 22:27:17 +05302851 .jumbo_max_len = 10240,
Harini Katakam7b61f9c2015-05-06 22:27:16 +05302852};
2853
Nathan Sullivan222ca8e2015-05-22 09:22:10 -05002854static const struct macb_config zynq_config = {
Punnaiah Choudary Kalluri7baaa902015-07-06 10:02:53 +05302855 .caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE | MACB_CAPS_NO_GIGABIT_HALF,
Nathan Sullivan222ca8e2015-05-22 09:22:10 -05002856 .dma_burst_length = 16,
2857 .clk_init = macb_clk_init,
2858 .init = macb_init,
2859};
2860
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002861static const struct of_device_id macb_dt_ids[] = {
2862 { .compatible = "cdns,at32ap7000-macb" },
2863 { .compatible = "cdns,at91sam9260-macb", .data = &at91sam9260_config },
2864 { .compatible = "cdns,macb" },
Neil Armstronge611b5b2016-01-05 14:39:17 +01002865 { .compatible = "cdns,np4-macb", .data = &np4_config },
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002866 { .compatible = "cdns,pc302-gem", .data = &pc302gem_config },
2867 { .compatible = "cdns,gem", .data = &pc302gem_config },
Cyrille Pitchen5c8fe712015-06-18 16:27:23 +02002868 { .compatible = "atmel,sama5d2-gem", .data = &sama5d2_config },
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002869 { .compatible = "atmel,sama5d3-gem", .data = &sama5d3_config },
2870 { .compatible = "atmel,sama5d4-gem", .data = &sama5d4_config },
2871 { .compatible = "cdns,at91rm9200-emac", .data = &emac_config },
2872 { .compatible = "cdns,emac", .data = &emac_config },
Harini Katakam7b61f9c2015-05-06 22:27:16 +05302873 { .compatible = "cdns,zynqmp-gem", .data = &zynqmp_config},
Nathan Sullivan222ca8e2015-05-22 09:22:10 -05002874 { .compatible = "cdns,zynq-gem", .data = &zynq_config },
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002875 { /* sentinel */ }
2876};
2877MODULE_DEVICE_TABLE(of, macb_dt_ids);
2878#endif /* CONFIG_OF */
2879
2880static int macb_probe(struct platform_device *pdev)
2881{
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002882 int (*clk_init)(struct platform_device *, struct clk **,
2883 struct clk **, struct clk **)
2884 = macb_clk_init;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002885 int (*init)(struct platform_device *) = macb_init;
2886 struct device_node *np = pdev->dev.of_node;
Gregory CLEMENT270c4992015-12-17 10:51:04 +01002887 struct device_node *phy_node;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002888 const struct macb_config *macb_config = NULL;
Sudip Mukherjee36df7452016-01-25 11:43:09 +05302889 struct clk *pclk, *hclk = NULL, *tx_clk = NULL;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002890 unsigned int queue_mask, num_queues;
2891 struct macb_platform_data *pdata;
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03002892 bool native_io;
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002893 struct phy_device *phydev;
2894 struct net_device *dev;
2895 struct resource *regs;
2896 void __iomem *mem;
2897 const char *mac;
2898 struct macb *bp;
2899 int err;
2900
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03002901 regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2902 mem = devm_ioremap_resource(&pdev->dev, regs);
2903 if (IS_ERR(mem))
2904 return PTR_ERR(mem);
2905
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002906 if (np) {
2907 const struct of_device_id *match;
2908
2909 match = of_match_node(macb_dt_ids, np);
2910 if (match && match->data) {
2911 macb_config = match->data;
2912 clk_init = macb_config->clk_init;
2913 init = macb_config->init;
2914 }
2915 }
2916
2917 err = clk_init(pdev, &pclk, &hclk, &tx_clk);
2918 if (err)
2919 return err;
2920
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03002921 native_io = hw_is_native_io(mem);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002922
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03002923 macb_probe_queues(mem, native_io, &queue_mask, &num_queues);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002924 dev = alloc_etherdev_mq(sizeof(*bp), num_queues);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002925 if (!dev) {
2926 err = -ENOMEM;
2927 goto err_disable_clocks;
2928 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002929
2930 dev->base_addr = regs->start;
2931
2932 SET_NETDEV_DEV(dev, &pdev->dev);
2933
2934 bp = netdev_priv(dev);
2935 bp->pdev = pdev;
2936 bp->dev = dev;
2937 bp->regs = mem;
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03002938 bp->native_io = native_io;
2939 if (native_io) {
David S. Miller7a6e0702015-07-27 14:24:48 -07002940 bp->macb_reg_readl = hw_readl_native;
2941 bp->macb_reg_writel = hw_writel_native;
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03002942 } else {
David S. Miller7a6e0702015-07-27 14:24:48 -07002943 bp->macb_reg_readl = hw_readl;
2944 bp->macb_reg_writel = hw_writel;
Andy Shevchenkof2ce8a92015-07-24 21:23:59 +03002945 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002946 bp->num_queues = num_queues;
Nicolas Ferrebfa09142015-03-31 15:01:59 +02002947 bp->queue_mask = queue_mask;
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002948 if (macb_config)
2949 bp->dma_burst_length = macb_config->dma_burst_length;
2950 bp->pclk = pclk;
2951 bp->hclk = hclk;
2952 bp->tx_clk = tx_clk;
Andy Shevchenkof36dbe62015-07-24 21:24:00 +03002953 if (macb_config)
Harini Katakam98b5a0f42015-05-06 22:27:17 +05302954 bp->jumbo_max_len = macb_config->jumbo_max_len;
Harini Katakam98b5a0f42015-05-06 22:27:17 +05302955
Sergio Prado3e2a5e12016-02-09 12:07:16 -02002956 bp->wol = 0;
Sergio Prado7c4a1d02016-02-16 21:10:45 -02002957 if (of_get_property(np, "magic-packet", NULL))
Sergio Prado3e2a5e12016-02-09 12:07:16 -02002958 bp->wol |= MACB_WOL_HAS_MAGIC_PACKET;
2959 device_init_wakeup(&pdev->dev, bp->wol & MACB_WOL_HAS_MAGIC_PACKET);
2960
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002961 spin_lock_init(&bp->lock);
2962
Nicolas Ferread783472015-03-31 15:02:02 +02002963 /* setup capabilities */
Nicolas Ferref6970502015-03-31 15:02:01 +02002964 macb_configure_caps(bp, macb_config);
2965
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002966 platform_set_drvdata(pdev, dev);
2967
2968 dev->irq = platform_get_irq(pdev, 0);
Nicolas Ferrec69618b2015-03-31 15:02:03 +02002969 if (dev->irq < 0) {
2970 err = dev->irq;
2971 goto err_disable_clocks;
2972 }
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002973
2974 mac = of_get_mac_address(np);
Guenter Roeck50907042013-04-02 09:35:09 +00002975 if (mac)
Moritz Fischereefb52d2016-03-29 19:11:14 -07002976 ether_addr_copy(bp->dev->dev_addr, mac);
Guenter Roeck50907042013-04-02 09:35:09 +00002977 else
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +01002978 macb_get_hwaddr(bp);
frederic RODO6c36a702007-07-12 19:07:24 +02002979
Gregory CLEMENT5833e052015-12-11 11:34:53 +01002980 /* Power up the PHY if there is a GPIO reset */
Gregory CLEMENT270c4992015-12-17 10:51:04 +01002981 phy_node = of_get_next_available_child(np, NULL);
2982 if (phy_node) {
2983 int gpio = of_get_named_gpio(phy_node, "reset-gpios", 0);
Moritz Fischer64ec42f2016-03-29 19:11:12 -07002984
Charles Keepax0e3e7992016-03-28 13:47:42 +01002985 if (gpio_is_valid(gpio)) {
Gregory CLEMENT270c4992015-12-17 10:51:04 +01002986 bp->reset_gpio = gpio_to_desc(gpio);
Charles Keepax0e3e7992016-03-28 13:47:42 +01002987 gpiod_direction_output(bp->reset_gpio, 1);
2988 }
Gregory CLEMENT270c4992015-12-17 10:51:04 +01002989 }
2990 of_node_put(phy_node);
Gregory CLEMENT5833e052015-12-11 11:34:53 +01002991
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01002992 err = of_get_phy_mode(np);
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +01002993 if (err < 0) {
Jingoo Hanc607a0d2013-08-30 14:12:21 +09002994 pdata = dev_get_platdata(&pdev->dev);
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +01002995 if (pdata && pdata->is_rmii)
2996 bp->phy_interface = PHY_INTERFACE_MODE_RMII;
2997 else
2998 bp->phy_interface = PHY_INTERFACE_MODE_MII;
2999 } else {
3000 bp->phy_interface = err;
3001 }
3002
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003003 /* IP specific init */
3004 err = init(pdev);
3005 if (err)
3006 goto err_out_free_netdev;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003007
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003008 err = register_netdev(dev);
3009 if (err) {
3010 dev_err(&pdev->dev, "Cannot register net device, aborting.\n");
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003011 goto err_out_unregister_netdev;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003012 }
3013
Nicolas Ferre72ca8202013-04-14 22:04:33 +00003014 err = macb_mii_init(bp);
3015 if (err)
frederic RODO6c36a702007-07-12 19:07:24 +02003016 goto err_out_unregister_netdev;
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003017
Nicolas Ferre03fc4722012-07-03 23:14:13 +00003018 netif_carrier_off(dev);
3019
Bo Shen58798232014-09-13 01:57:49 +02003020 netdev_info(dev, "Cadence %s rev 0x%08x at 0x%08lx irq %d (%pM)\n",
3021 macb_is_gem(bp) ? "GEM" : "MACB", macb_readl(bp, MID),
3022 dev->base_addr, dev->irq, dev->dev_addr);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003023
frederic RODO6c36a702007-07-12 19:07:24 +02003024 phydev = bp->phy_dev;
Andrew Lunn22209432016-01-06 20:11:13 +01003025 phy_attached_info(phydev);
frederic RODO6c36a702007-07-12 19:07:24 +02003026
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003027 return 0;
3028
frederic RODO6c36a702007-07-12 19:07:24 +02003029err_out_unregister_netdev:
3030 unregister_netdev(dev);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003031
Cyrille Pitchencf250de2014-12-15 15:13:32 +01003032err_out_free_netdev:
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003033 free_netdev(dev);
Cyrille Pitchen421d9df2015-03-07 07:23:32 +01003034
Nicolas Ferrec69618b2015-03-31 15:02:03 +02003035err_disable_clocks:
3036 clk_disable_unprepare(tx_clk);
3037 clk_disable_unprepare(hclk);
3038 clk_disable_unprepare(pclk);
3039
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003040 return err;
3041}
3042
Nicolae Rosia9e86d7662015-01-22 17:31:05 +00003043static int macb_remove(struct platform_device *pdev)
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003044{
3045 struct net_device *dev;
3046 struct macb *bp;
3047
3048 dev = platform_get_drvdata(pdev);
3049
3050 if (dev) {
3051 bp = netdev_priv(dev);
Atsushi Nemoto84b79012008-04-10 23:30:07 +09003052 if (bp->phy_dev)
3053 phy_disconnect(bp->phy_dev);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07003054 mdiobus_unregister(bp->mii_bus);
Lennert Buytenhek298cf9b2008-10-08 16:29:57 -07003055 mdiobus_free(bp->mii_bus);
Gregory CLEMENT5833e052015-12-11 11:34:53 +01003056
3057 /* Shutdown the PHY if there is a GPIO reset */
Charles Keepax0e3e7992016-03-28 13:47:42 +01003058 if (bp->reset_gpio)
3059 gpiod_set_value(bp->reset_gpio, 0);
Gregory CLEMENT5833e052015-12-11 11:34:53 +01003060
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003061 unregister_netdev(dev);
Cyrille Pitchen93b31f42015-03-07 07:23:31 +01003062 clk_disable_unprepare(bp->tx_clk);
Steffen Trumtrarace58012013-03-27 23:07:07 +00003063 clk_disable_unprepare(bp->hclk);
Steffen Trumtrarace58012013-03-27 23:07:07 +00003064 clk_disable_unprepare(bp->pclk);
Cyrille Pitchene965be72014-12-15 15:13:31 +01003065 free_netdev(dev);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003066 }
3067
3068 return 0;
3069}
3070
Michal Simekd23823d2015-01-23 09:36:03 +01003071static int __maybe_unused macb_suspend(struct device *dev)
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01003072{
Soren Brinkmann0dfc3e12013-12-10 16:07:19 -08003073 struct platform_device *pdev = to_platform_device(dev);
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01003074 struct net_device *netdev = platform_get_drvdata(pdev);
3075 struct macb *bp = netdev_priv(netdev);
3076
Nicolas Ferre03fc4722012-07-03 23:14:13 +00003077 netif_carrier_off(netdev);
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01003078 netif_device_detach(netdev);
3079
Sergio Prado3e2a5e12016-02-09 12:07:16 -02003080 if (bp->wol & MACB_WOL_ENABLED) {
3081 macb_writel(bp, IER, MACB_BIT(WOL));
3082 macb_writel(bp, WOL, MACB_BIT(MAG));
3083 enable_irq_wake(bp->queues[0].irq);
3084 } else {
3085 clk_disable_unprepare(bp->tx_clk);
3086 clk_disable_unprepare(bp->hclk);
3087 clk_disable_unprepare(bp->pclk);
3088 }
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01003089
3090 return 0;
3091}
3092
Michal Simekd23823d2015-01-23 09:36:03 +01003093static int __maybe_unused macb_resume(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
Sergio Prado3e2a5e12016-02-09 12:07:16 -02003099 if (bp->wol & MACB_WOL_ENABLED) {
3100 macb_writel(bp, IDR, MACB_BIT(WOL));
3101 macb_writel(bp, WOL, 0);
3102 disable_irq_wake(bp->queues[0].irq);
3103 } else {
3104 clk_prepare_enable(bp->pclk);
3105 clk_prepare_enable(bp->hclk);
3106 clk_prepare_enable(bp->tx_clk);
3107 }
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01003108
3109 netif_device_attach(netdev);
3110
3111 return 0;
3112}
Haavard Skinnemoenc1f598f2008-03-04 13:39:29 +01003113
Soren Brinkmann0dfc3e12013-12-10 16:07:19 -08003114static SIMPLE_DEV_PM_OPS(macb_pm_ops, macb_suspend, macb_resume);
3115
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003116static struct platform_driver macb_driver = {
Nicolae Rosia9e86d7662015-01-22 17:31:05 +00003117 .probe = macb_probe,
3118 .remove = macb_remove,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003119 .driver = {
3120 .name = "macb",
Jean-Christophe PLAGNIOL-VILLARDfb97a842011-11-18 15:29:25 +01003121 .of_match_table = of_match_ptr(macb_dt_ids),
Soren Brinkmann0dfc3e12013-12-10 16:07:19 -08003122 .pm = &macb_pm_ops,
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003123 },
3124};
3125
Nicolae Rosia9e86d7662015-01-22 17:31:05 +00003126module_platform_driver(macb_driver);
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01003127
3128MODULE_LICENSE("GPL");
Jamie Ilesf75ba502011-11-08 10:12:32 +00003129MODULE_DESCRIPTION("Cadence MACB/GEM Ethernet driver");
Jean Delvaree05503e2011-05-18 16:49:24 +02003130MODULE_AUTHOR("Haavard Skinnemoen (Atmel)");
Kay Sievers72abb462008-04-18 13:50:44 -07003131MODULE_ALIAS("platform:macb");