net: sctp: fix skb leakage in COOKIE ECHO path of chunk->auth_chunk
[deliverable/linux.git] / drivers / net / ethernet / cadence / macb.c
CommitLineData
89e5785f 1/*
f75ba50b 2 * Cadence MACB/GEM Ethernet Controller driver
89e5785f
HS
3 *
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
c220f8cd 11#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
89e5785f
HS
12#include <linux/clk.h>
13#include <linux/module.h>
14#include <linux/moduleparam.h>
15#include <linux/kernel.h>
16#include <linux/types.h>
909a8583 17#include <linux/circ_buf.h>
89e5785f
HS
18#include <linux/slab.h>
19#include <linux/init.h>
60fe716f 20#include <linux/io.h>
2dbfdbb9 21#include <linux/gpio.h>
a6b7a407 22#include <linux/interrupt.h>
89e5785f
HS
23#include <linux/netdevice.h>
24#include <linux/etherdevice.h>
89e5785f 25#include <linux/dma-mapping.h>
84e0cdb0 26#include <linux/platform_data/macb.h>
89e5785f 27#include <linux/platform_device.h>
6c36a707 28#include <linux/phy.h>
b17471f5 29#include <linux/of.h>
fb97a846 30#include <linux/of_device.h>
148cbb53 31#include <linux/of_mdio.h>
fb97a846 32#include <linux/of_net.h>
8ef29f8a 33#include <linux/pinctrl/consumer.h>
89e5785f 34
89e5785f
HS
35#include "macb.h"
36
1b44791a 37#define MACB_RX_BUFFER_SIZE 128
1b44791a 38#define RX_BUFFER_MULTIPLE 64 /* bytes */
55054a16
HS
39#define RX_RING_SIZE 512 /* must be power of 2 */
40#define RX_RING_BYTES (sizeof(struct macb_dma_desc) * RX_RING_SIZE)
89e5785f 41
55054a16
HS
42#define TX_RING_SIZE 128 /* must be power of 2 */
43#define TX_RING_BYTES (sizeof(struct macb_dma_desc) * TX_RING_SIZE)
89e5785f 44
909a8583
NF
45/* level of occupied TX descriptors under which we wake up TX process */
46#define MACB_TX_WAKEUP_THRESH (3 * TX_RING_SIZE / 4)
89e5785f
HS
47
48#define MACB_RX_INT_FLAGS (MACB_BIT(RCOMP) | MACB_BIT(RXUBR) \
49 | MACB_BIT(ISR_ROVR))
e86cd53a
NF
50#define MACB_TX_ERR_FLAGS (MACB_BIT(ISR_TUND) \
51 | MACB_BIT(ISR_RLE) \
52 | MACB_BIT(TXERR))
53#define MACB_TX_INT_FLAGS (MACB_TX_ERR_FLAGS | MACB_BIT(TCOMP))
54
55/*
56 * Graceful stop timeouts in us. We should allow up to
57 * 1 frame time (10 Mbits/s, full-duplex, ignoring collisions)
58 */
59#define MACB_HALT_TIMEOUT 1230
89e5785f 60
55054a16
HS
61/* Ring buffer accessors */
62static unsigned int macb_tx_ring_wrap(unsigned int index)
63{
64 return index & (TX_RING_SIZE - 1);
65}
66
55054a16
HS
67static struct macb_dma_desc *macb_tx_desc(struct macb *bp, unsigned int index)
68{
69 return &bp->tx_ring[macb_tx_ring_wrap(index)];
70}
71
72static struct macb_tx_skb *macb_tx_skb(struct macb *bp, unsigned int index)
73{
74 return &bp->tx_skb[macb_tx_ring_wrap(index)];
75}
76
77static dma_addr_t macb_tx_dma(struct macb *bp, unsigned int index)
78{
79 dma_addr_t offset;
80
81 offset = macb_tx_ring_wrap(index) * sizeof(struct macb_dma_desc);
82
83 return bp->tx_ring_dma + offset;
84}
85
86static unsigned int macb_rx_ring_wrap(unsigned int index)
87{
88 return index & (RX_RING_SIZE - 1);
89}
90
91static struct macb_dma_desc *macb_rx_desc(struct macb *bp, unsigned int index)
92{
93 return &bp->rx_ring[macb_rx_ring_wrap(index)];
94}
95
96static void *macb_rx_buffer(struct macb *bp, unsigned int index)
97{
1b44791a 98 return bp->rx_buffers + bp->rx_buffer_size * macb_rx_ring_wrap(index);
55054a16
HS
99}
100
314bccc4 101void macb_set_hwaddr(struct macb *bp)
89e5785f
HS
102{
103 u32 bottom;
104 u16 top;
105
106 bottom = cpu_to_le32(*((u32 *)bp->dev->dev_addr));
f75ba50b 107 macb_or_gem_writel(bp, SA1B, bottom);
89e5785f 108 top = cpu_to_le16(*((u16 *)(bp->dev->dev_addr + 4)));
f75ba50b 109 macb_or_gem_writel(bp, SA1T, top);
3629a6ce
JE
110
111 /* Clear unused address register sets */
112 macb_or_gem_writel(bp, SA2B, 0);
113 macb_or_gem_writel(bp, SA2T, 0);
114 macb_or_gem_writel(bp, SA3B, 0);
115 macb_or_gem_writel(bp, SA3T, 0);
116 macb_or_gem_writel(bp, SA4B, 0);
117 macb_or_gem_writel(bp, SA4T, 0);
89e5785f 118}
314bccc4 119EXPORT_SYMBOL_GPL(macb_set_hwaddr);
89e5785f 120
314bccc4 121void macb_get_hwaddr(struct macb *bp)
89e5785f 122{
d25e78aa 123 struct macb_platform_data *pdata;
89e5785f
HS
124 u32 bottom;
125 u16 top;
126 u8 addr[6];
17b8bb3e
JE
127 int i;
128
c607a0d9 129 pdata = dev_get_platdata(&bp->pdev->dev);
d25e78aa 130
17b8bb3e
JE
131 /* Check all 4 address register for vaild address */
132 for (i = 0; i < 4; i++) {
133 bottom = macb_or_gem_readl(bp, SA1B + i * 8);
134 top = macb_or_gem_readl(bp, SA1T + i * 8);
135
d25e78aa
JE
136 if (pdata && pdata->rev_eth_addr) {
137 addr[5] = bottom & 0xff;
138 addr[4] = (bottom >> 8) & 0xff;
139 addr[3] = (bottom >> 16) & 0xff;
140 addr[2] = (bottom >> 24) & 0xff;
141 addr[1] = top & 0xff;
142 addr[0] = (top & 0xff00) >> 8;
143 } else {
144 addr[0] = bottom & 0xff;
145 addr[1] = (bottom >> 8) & 0xff;
146 addr[2] = (bottom >> 16) & 0xff;
147 addr[3] = (bottom >> 24) & 0xff;
148 addr[4] = top & 0xff;
149 addr[5] = (top >> 8) & 0xff;
150 }
17b8bb3e
JE
151
152 if (is_valid_ether_addr(addr)) {
153 memcpy(bp->dev->dev_addr, addr, sizeof(addr));
154 return;
155 }
d1d5741d 156 }
17b8bb3e
JE
157
158 netdev_info(bp->dev, "invalid hw address, using random\n");
159 eth_hw_addr_random(bp->dev);
89e5785f 160}
314bccc4 161EXPORT_SYMBOL_GPL(macb_get_hwaddr);
89e5785f 162
6c36a707 163static int macb_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
89e5785f 164{
6c36a707 165 struct macb *bp = bus->priv;
89e5785f
HS
166 int value;
167
89e5785f
HS
168 macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_SOF)
169 | MACB_BF(RW, MACB_MAN_READ)
6c36a707
R
170 | MACB_BF(PHYA, mii_id)
171 | MACB_BF(REGA, regnum)
89e5785f
HS
172 | MACB_BF(CODE, MACB_MAN_CODE)));
173
6c36a707
R
174 /* wait for end of transfer */
175 while (!MACB_BFEXT(IDLE, macb_readl(bp, NSR)))
176 cpu_relax();
89e5785f
HS
177
178 value = MACB_BFEXT(DATA, macb_readl(bp, MAN));
89e5785f
HS
179
180 return value;
181}
182
6c36a707
R
183static int macb_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
184 u16 value)
89e5785f 185{
6c36a707 186 struct macb *bp = bus->priv;
89e5785f
HS
187
188 macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_SOF)
189 | MACB_BF(RW, MACB_MAN_WRITE)
6c36a707
R
190 | MACB_BF(PHYA, mii_id)
191 | MACB_BF(REGA, regnum)
89e5785f 192 | MACB_BF(CODE, MACB_MAN_CODE)
6c36a707 193 | MACB_BF(DATA, value)));
89e5785f 194
6c36a707
R
195 /* wait for end of transfer */
196 while (!MACB_BFEXT(IDLE, macb_readl(bp, NSR)))
197 cpu_relax();
198
199 return 0;
200}
89e5785f 201
6c36a707
R
202static int macb_mdio_reset(struct mii_bus *bus)
203{
204 return 0;
89e5785f
HS
205}
206
e1824dfe
SB
207/**
208 * macb_set_tx_clk() - Set a clock to a new frequency
209 * @clk Pointer to the clock to change
210 * @rate New frequency in Hz
211 * @dev Pointer to the struct net_device
212 */
213static void macb_set_tx_clk(struct clk *clk, int speed, struct net_device *dev)
214{
215 long ferr, rate, rate_rounded;
216
217 switch (speed) {
218 case SPEED_10:
219 rate = 2500000;
220 break;
221 case SPEED_100:
222 rate = 25000000;
223 break;
224 case SPEED_1000:
225 rate = 125000000;
226 break;
227 default:
9319e47c 228 return;
e1824dfe
SB
229 }
230
231 rate_rounded = clk_round_rate(clk, rate);
232 if (rate_rounded < 0)
233 return;
234
235 /* RGMII allows 50 ppm frequency error. Test and warn if this limit
236 * is not satisfied.
237 */
238 ferr = abs(rate_rounded - rate);
239 ferr = DIV_ROUND_UP(ferr, rate / 100000);
240 if (ferr > 5)
241 netdev_warn(dev, "unable to generate target frequency: %ld Hz\n",
242 rate);
243
244 if (clk_set_rate(clk, rate_rounded))
245 netdev_err(dev, "adjusting tx_clk failed.\n");
246}
247
6c36a707 248static void macb_handle_link_change(struct net_device *dev)
89e5785f 249{
6c36a707
R
250 struct macb *bp = netdev_priv(dev);
251 struct phy_device *phydev = bp->phy_dev;
252 unsigned long flags;
89e5785f 253
6c36a707 254 int status_change = 0;
89e5785f 255
6c36a707
R
256 spin_lock_irqsave(&bp->lock, flags);
257
258 if (phydev->link) {
259 if ((bp->speed != phydev->speed) ||
260 (bp->duplex != phydev->duplex)) {
261 u32 reg;
262
263 reg = macb_readl(bp, NCFGR);
264 reg &= ~(MACB_BIT(SPD) | MACB_BIT(FD));
140b7552
PV
265 if (macb_is_gem(bp))
266 reg &= ~GEM_BIT(GBE);
6c36a707
R
267
268 if (phydev->duplex)
269 reg |= MACB_BIT(FD);
179956f4 270 if (phydev->speed == SPEED_100)
6c36a707 271 reg |= MACB_BIT(SPD);
140b7552
PV
272 if (phydev->speed == SPEED_1000)
273 reg |= GEM_BIT(GBE);
6c36a707 274
140b7552 275 macb_or_gem_writel(bp, NCFGR, reg);
6c36a707
R
276
277 bp->speed = phydev->speed;
278 bp->duplex = phydev->duplex;
279 status_change = 1;
280 }
89e5785f
HS
281 }
282
6c36a707 283 if (phydev->link != bp->link) {
c8f15686 284 if (!phydev->link) {
6c36a707
R
285 bp->speed = 0;
286 bp->duplex = -1;
287 }
288 bp->link = phydev->link;
89e5785f 289
6c36a707
R
290 status_change = 1;
291 }
89e5785f 292
6c36a707
R
293 spin_unlock_irqrestore(&bp->lock, flags);
294
e1824dfe
SB
295 if (!IS_ERR(bp->tx_clk))
296 macb_set_tx_clk(bp->tx_clk, phydev->speed, dev);
297
6c36a707 298 if (status_change) {
03fc4721
NF
299 if (phydev->link) {
300 netif_carrier_on(dev);
c220f8cd
JI
301 netdev_info(dev, "link up (%d/%s)\n",
302 phydev->speed,
303 phydev->duplex == DUPLEX_FULL ?
304 "Full" : "Half");
03fc4721
NF
305 } else {
306 netif_carrier_off(dev);
c220f8cd 307 netdev_info(dev, "link down\n");
03fc4721 308 }
6c36a707 309 }
89e5785f
HS
310}
311
6c36a707
R
312/* based on au1000_eth. c*/
313static int macb_mii_probe(struct net_device *dev)
89e5785f 314{
6c36a707 315 struct macb *bp = netdev_priv(dev);
2dbfdbb9 316 struct macb_platform_data *pdata;
7455a76f 317 struct phy_device *phydev;
2dbfdbb9 318 int phy_irq;
7455a76f 319 int ret;
6c36a707 320
7455a76f 321 phydev = phy_find_first(bp->mii_bus);
6c36a707 322 if (!phydev) {
c220f8cd 323 netdev_err(dev, "no PHY found\n");
7daa78e3 324 return -ENXIO;
6c36a707
R
325 }
326
2dbfdbb9
JE
327 pdata = dev_get_platdata(&bp->pdev->dev);
328 if (pdata && gpio_is_valid(pdata->phy_irq_pin)) {
329 ret = devm_gpio_request(&bp->pdev->dev, pdata->phy_irq_pin, "phy int");
330 if (!ret) {
331 phy_irq = gpio_to_irq(pdata->phy_irq_pin);
332 phydev->irq = (phy_irq < 0) ? PHY_POLL : phy_irq;
333 }
334 }
6c36a707
R
335
336 /* attach the mac to the phy */
f9a8f83b 337 ret = phy_connect_direct(dev, phydev, &macb_handle_link_change,
fb97a846 338 bp->phy_interface);
7455a76f 339 if (ret) {
c220f8cd 340 netdev_err(dev, "Could not attach to PHY\n");
7455a76f 341 return ret;
6c36a707
R
342 }
343
344 /* mask with MAC supported features */
140b7552
PV
345 if (macb_is_gem(bp))
346 phydev->supported &= PHY_GBIT_FEATURES;
347 else
348 phydev->supported &= PHY_BASIC_FEATURES;
6c36a707
R
349
350 phydev->advertising = phydev->supported;
351
352 bp->link = 0;
353 bp->speed = 0;
354 bp->duplex = -1;
355 bp->phy_dev = phydev;
356
357 return 0;
89e5785f
HS
358}
359
0005f541 360int macb_mii_init(struct macb *bp)
89e5785f 361{
84e0cdb0 362 struct macb_platform_data *pdata;
148cbb53 363 struct device_node *np;
6c36a707 364 int err = -ENXIO, i;
89e5785f 365
3dbda77e 366 /* Enable management port */
6c36a707 367 macb_writel(bp, NCR, MACB_BIT(MPE));
89e5785f 368
298cf9be
LB
369 bp->mii_bus = mdiobus_alloc();
370 if (bp->mii_bus == NULL) {
371 err = -ENOMEM;
372 goto err_out;
373 }
374
375 bp->mii_bus->name = "MACB_mii_bus";
376 bp->mii_bus->read = &macb_mdio_read;
377 bp->mii_bus->write = &macb_mdio_write;
378 bp->mii_bus->reset = &macb_mdio_reset;
98d5e57e
FF
379 snprintf(bp->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
380 bp->pdev->name, bp->pdev->id);
298cf9be
LB
381 bp->mii_bus->priv = bp;
382 bp->mii_bus->parent = &bp->dev->dev;
c607a0d9 383 pdata = dev_get_platdata(&bp->pdev->dev);
89e5785f 384
298cf9be
LB
385 bp->mii_bus->irq = kmalloc(sizeof(int)*PHY_MAX_ADDR, GFP_KERNEL);
386 if (!bp->mii_bus->irq) {
6c36a707 387 err = -ENOMEM;
298cf9be 388 goto err_out_free_mdiobus;
89e5785f
HS
389 }
390
91523947 391 dev_set_drvdata(&bp->dev->dev, bp->mii_bus);
89e5785f 392
148cbb53
BB
393 np = bp->pdev->dev.of_node;
394 if (np) {
395 /* try dt phy registration */
396 err = of_mdiobus_register(bp->mii_bus, np);
397
398 /* fallback to standard phy registration if no phy were
399 found during dt phy registration */
400 if (!err && !phy_find_first(bp->mii_bus)) {
401 for (i = 0; i < PHY_MAX_ADDR; i++) {
402 struct phy_device *phydev;
403
404 phydev = mdiobus_scan(bp->mii_bus, i);
405 if (IS_ERR(phydev)) {
406 err = PTR_ERR(phydev);
407 break;
408 }
409 }
410
411 if (err)
412 goto err_out_unregister_bus;
413 }
414 } else {
415 for (i = 0; i < PHY_MAX_ADDR; i++)
416 bp->mii_bus->irq[i] = PHY_POLL;
417
418 if (pdata)
419 bp->mii_bus->phy_mask = pdata->phy_mask;
420
421 err = mdiobus_register(bp->mii_bus);
422 }
423
424 if (err)
6c36a707 425 goto err_out_free_mdio_irq;
89e5785f 426
7daa78e3
BB
427 err = macb_mii_probe(bp->dev);
428 if (err)
6c36a707 429 goto err_out_unregister_bus;
89e5785f 430
6c36a707 431 return 0;
89e5785f 432
6c36a707 433err_out_unregister_bus:
298cf9be 434 mdiobus_unregister(bp->mii_bus);
6c36a707 435err_out_free_mdio_irq:
298cf9be
LB
436 kfree(bp->mii_bus->irq);
437err_out_free_mdiobus:
438 mdiobus_free(bp->mii_bus);
6c36a707
R
439err_out:
440 return err;
89e5785f 441}
0005f541 442EXPORT_SYMBOL_GPL(macb_mii_init);
89e5785f
HS
443
444static void macb_update_stats(struct macb *bp)
445{
446 u32 __iomem *reg = bp->regs + MACB_PFR;
a494ed8e
JI
447 u32 *p = &bp->hw_stats.macb.rx_pause_frames;
448 u32 *end = &bp->hw_stats.macb.tx_pause_frames + 1;
89e5785f
HS
449
450 WARN_ON((unsigned long)(end - p - 1) != (MACB_TPF - MACB_PFR) / 4);
451
452 for(; p < end; p++, reg++)
0f0d84e5 453 *p += __raw_readl(reg);
89e5785f
HS
454}
455
e86cd53a 456static int macb_halt_tx(struct macb *bp)
89e5785f 457{
e86cd53a
NF
458 unsigned long halt_time, timeout;
459 u32 status;
89e5785f 460
e86cd53a 461 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(THALT));
89e5785f 462
e86cd53a
NF
463 timeout = jiffies + usecs_to_jiffies(MACB_HALT_TIMEOUT);
464 do {
465 halt_time = jiffies;
466 status = macb_readl(bp, TSR);
467 if (!(status & MACB_BIT(TGO)))
468 return 0;
89e5785f 469
e86cd53a
NF
470 usleep_range(10, 250);
471 } while (time_before(halt_time, timeout));
bdcba151 472
e86cd53a
NF
473 return -ETIMEDOUT;
474}
39eddb4c 475
e86cd53a
NF
476static void macb_tx_error_task(struct work_struct *work)
477{
478 struct macb *bp = container_of(work, struct macb, tx_error_task);
479 struct macb_tx_skb *tx_skb;
480 struct sk_buff *skb;
481 unsigned int tail;
bdcba151 482
e86cd53a
NF
483 netdev_vdbg(bp->dev, "macb_tx_error_task: t = %u, h = %u\n",
484 bp->tx_tail, bp->tx_head);
bdcba151 485
e86cd53a
NF
486 /* Make sure nobody is trying to queue up new packets */
487 netif_stop_queue(bp->dev);
d3e61457 488
e86cd53a
NF
489 /*
490 * Stop transmission now
491 * (in case we have just queued new packets)
492 */
493 if (macb_halt_tx(bp))
494 /* Just complain for now, reinitializing TX path can be good */
495 netdev_err(bp->dev, "BUG: halt tx timed out\n");
bdcba151 496
e86cd53a 497 /* No need for the lock here as nobody will interrupt us anymore */
bdcba151 498
e86cd53a
NF
499 /*
500 * Treat frames in TX queue including the ones that caused the error.
501 * Free transmit buffers in upper layer.
502 */
503 for (tail = bp->tx_tail; tail != bp->tx_head; tail++) {
504 struct macb_dma_desc *desc;
505 u32 ctrl;
55054a16 506
e86cd53a
NF
507 desc = macb_tx_desc(bp, tail);
508 ctrl = desc->ctrl;
509 tx_skb = macb_tx_skb(bp, tail);
510 skb = tx_skb->skb;
bdcba151 511
e86cd53a
NF
512 if (ctrl & MACB_BIT(TX_USED)) {
513 netdev_vdbg(bp->dev, "txerr skb %u (data %p) TX complete\n",
514 macb_tx_ring_wrap(tail), skb->data);
515 bp->stats.tx_packets++;
516 bp->stats.tx_bytes += skb->len;
517 } else {
518 /*
519 * "Buffers exhausted mid-frame" errors may only happen
520 * if the driver is buggy, so complain loudly about those.
521 * Statistics are updated by hardware.
522 */
523 if (ctrl & MACB_BIT(TX_BUF_EXHAUSTED))
524 netdev_err(bp->dev,
525 "BUG: TX buffers exhausted mid-frame\n");
39eddb4c 526
e86cd53a
NF
527 desc->ctrl = ctrl | MACB_BIT(TX_USED);
528 }
529
530 dma_unmap_single(&bp->pdev->dev, tx_skb->mapping, skb->len,
531 DMA_TO_DEVICE);
532 tx_skb->skb = NULL;
533 dev_kfree_skb(skb);
89e5785f
HS
534 }
535
e86cd53a
NF
536 /* Make descriptor updates visible to hardware */
537 wmb();
538
539 /* Reinitialize the TX desc queue */
540 macb_writel(bp, TBQP, bp->tx_ring_dma);
541 /* Make TX ring reflect state of hardware */
542 bp->tx_head = bp->tx_tail = 0;
543
544 /* Now we are ready to start transmission again */
545 netif_wake_queue(bp->dev);
546
547 /* Housework before enabling TX IRQ */
548 macb_writel(bp, TSR, macb_readl(bp, TSR));
549 macb_writel(bp, IER, MACB_TX_INT_FLAGS);
550}
551
552static void macb_tx_interrupt(struct macb *bp)
553{
554 unsigned int tail;
555 unsigned int head;
556 u32 status;
557
558 status = macb_readl(bp, TSR);
559 macb_writel(bp, TSR, status);
560
581df9e1
NF
561 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
562 macb_writel(bp, ISR, MACB_BIT(TCOMP));
749a2b66 563
e86cd53a
NF
564 netdev_vdbg(bp->dev, "macb_tx_interrupt status = 0x%03lx\n",
565 (unsigned long)status);
89e5785f
HS
566
567 head = bp->tx_head;
55054a16
HS
568 for (tail = bp->tx_tail; tail != head; tail++) {
569 struct macb_tx_skb *tx_skb;
570 struct sk_buff *skb;
571 struct macb_dma_desc *desc;
572 u32 ctrl;
89e5785f 573
55054a16 574 desc = macb_tx_desc(bp, tail);
89e5785f 575
03dbe05f 576 /* Make hw descriptor updates visible to CPU */
89e5785f 577 rmb();
03dbe05f 578
55054a16 579 ctrl = desc->ctrl;
89e5785f 580
55054a16 581 if (!(ctrl & MACB_BIT(TX_USED)))
89e5785f
HS
582 break;
583
55054a16
HS
584 tx_skb = macb_tx_skb(bp, tail);
585 skb = tx_skb->skb;
586
a268adb1 587 netdev_vdbg(bp->dev, "skb %u (data %p) TX complete\n",
55054a16
HS
588 macb_tx_ring_wrap(tail), skb->data);
589 dma_unmap_single(&bp->pdev->dev, tx_skb->mapping, skb->len,
89e5785f
HS
590 DMA_TO_DEVICE);
591 bp->stats.tx_packets++;
592 bp->stats.tx_bytes += skb->len;
55054a16 593 tx_skb->skb = NULL;
89e5785f
HS
594 dev_kfree_skb_irq(skb);
595 }
596
597 bp->tx_tail = tail;
55054a16 598 if (netif_queue_stopped(bp->dev)
909a8583
NF
599 && CIRC_CNT(bp->tx_head, bp->tx_tail,
600 TX_RING_SIZE) <= MACB_TX_WAKEUP_THRESH)
89e5785f
HS
601 netif_wake_queue(bp->dev);
602}
603
4df95131
NF
604static void gem_rx_refill(struct macb *bp)
605{
606 unsigned int entry;
607 struct sk_buff *skb;
608 struct macb_dma_desc *desc;
609 dma_addr_t paddr;
610
611 while (CIRC_SPACE(bp->rx_prepared_head, bp->rx_tail, RX_RING_SIZE) > 0) {
612 u32 addr, ctrl;
613
614 entry = macb_rx_ring_wrap(bp->rx_prepared_head);
615 desc = &bp->rx_ring[entry];
616
617 /* Make hw descriptor updates visible to CPU */
618 rmb();
619
620 addr = desc->addr;
621 ctrl = desc->ctrl;
622 bp->rx_prepared_head++;
623
624 if ((addr & MACB_BIT(RX_USED)))
625 continue;
626
627 if (bp->rx_skbuff[entry] == NULL) {
628 /* allocate sk_buff for this free entry in ring */
629 skb = netdev_alloc_skb(bp->dev, bp->rx_buffer_size);
630 if (unlikely(skb == NULL)) {
631 netdev_err(bp->dev,
632 "Unable to allocate sk_buff\n");
633 break;
634 }
635 bp->rx_skbuff[entry] = skb;
636
637 /* now fill corresponding descriptor entry */
638 paddr = dma_map_single(&bp->pdev->dev, skb->data,
639 bp->rx_buffer_size, DMA_FROM_DEVICE);
640
641 if (entry == RX_RING_SIZE - 1)
642 paddr |= MACB_BIT(RX_WRAP);
643 bp->rx_ring[entry].addr = paddr;
644 bp->rx_ring[entry].ctrl = 0;
645
646 /* properly align Ethernet header */
647 skb_reserve(skb, NET_IP_ALIGN);
648 }
649 }
650
651 /* Make descriptor updates visible to hardware */
652 wmb();
653
654 netdev_vdbg(bp->dev, "rx ring: prepared head %d, tail %d\n",
655 bp->rx_prepared_head, bp->rx_tail);
656}
657
658/* Mark DMA descriptors from begin up to and not including end as unused */
659static void discard_partial_frame(struct macb *bp, unsigned int begin,
660 unsigned int end)
661{
662 unsigned int frag;
663
664 for (frag = begin; frag != end; frag++) {
665 struct macb_dma_desc *desc = macb_rx_desc(bp, frag);
666 desc->addr &= ~MACB_BIT(RX_USED);
667 }
668
669 /* Make descriptor updates visible to hardware */
670 wmb();
671
672 /*
673 * When this happens, the hardware stats registers for
674 * whatever caused this is updated, so we don't have to record
675 * anything.
676 */
677}
678
679static int gem_rx(struct macb *bp, int budget)
680{
681 unsigned int len;
682 unsigned int entry;
683 struct sk_buff *skb;
684 struct macb_dma_desc *desc;
685 int count = 0;
686
687 while (count < budget) {
688 u32 addr, ctrl;
689
690 entry = macb_rx_ring_wrap(bp->rx_tail);
691 desc = &bp->rx_ring[entry];
692
693 /* Make hw descriptor updates visible to CPU */
694 rmb();
695
696 addr = desc->addr;
697 ctrl = desc->ctrl;
698
699 if (!(addr & MACB_BIT(RX_USED)))
700 break;
701
702 desc->addr &= ~MACB_BIT(RX_USED);
703 bp->rx_tail++;
704 count++;
705
706 if (!(ctrl & MACB_BIT(RX_SOF) && ctrl & MACB_BIT(RX_EOF))) {
707 netdev_err(bp->dev,
708 "not whole frame pointed by descriptor\n");
709 bp->stats.rx_dropped++;
710 break;
711 }
712 skb = bp->rx_skbuff[entry];
713 if (unlikely(!skb)) {
714 netdev_err(bp->dev,
715 "inconsistent Rx descriptor chain\n");
716 bp->stats.rx_dropped++;
717 break;
718 }
719 /* now everything is ready for receiving packet */
720 bp->rx_skbuff[entry] = NULL;
721 len = MACB_BFEXT(RX_FRMLEN, ctrl);
722
723 netdev_vdbg(bp->dev, "gem_rx %u (len %u)\n", entry, len);
724
725 skb_put(skb, len);
726 addr = MACB_BF(RX_WADDR, MACB_BFEXT(RX_WADDR, addr));
727 dma_unmap_single(&bp->pdev->dev, addr,
728 len, DMA_FROM_DEVICE);
729
730 skb->protocol = eth_type_trans(skb, bp->dev);
731 skb_checksum_none_assert(skb);
732
733 bp->stats.rx_packets++;
734 bp->stats.rx_bytes += skb->len;
735
736#if defined(DEBUG) && defined(VERBOSE_DEBUG)
737 netdev_vdbg(bp->dev, "received skb of length %u, csum: %08x\n",
738 skb->len, skb->csum);
739 print_hex_dump(KERN_DEBUG, " mac: ", DUMP_PREFIX_ADDRESS, 16, 1,
740 skb->mac_header, 16, true);
741 print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_ADDRESS, 16, 1,
742 skb->data, 32, true);
743#endif
744
745 netif_receive_skb(skb);
746 }
747
748 gem_rx_refill(bp);
749
750 return count;
751}
752
89e5785f
HS
753static int macb_rx_frame(struct macb *bp, unsigned int first_frag,
754 unsigned int last_frag)
755{
756 unsigned int len;
757 unsigned int frag;
29bc2e1e 758 unsigned int offset;
89e5785f 759 struct sk_buff *skb;
55054a16 760 struct macb_dma_desc *desc;
89e5785f 761
55054a16
HS
762 desc = macb_rx_desc(bp, last_frag);
763 len = MACB_BFEXT(RX_FRMLEN, desc->ctrl);
89e5785f 764
a268adb1 765 netdev_vdbg(bp->dev, "macb_rx_frame frags %u - %u (len %u)\n",
55054a16
HS
766 macb_rx_ring_wrap(first_frag),
767 macb_rx_ring_wrap(last_frag), len);
89e5785f 768
29bc2e1e
HS
769 /*
770 * The ethernet header starts NET_IP_ALIGN bytes into the
771 * first buffer. Since the header is 14 bytes, this makes the
772 * payload word-aligned.
773 *
774 * Instead of calling skb_reserve(NET_IP_ALIGN), we just copy
775 * the two padding bytes into the skb so that we avoid hitting
776 * the slowpath in memcpy(), and pull them off afterwards.
777 */
778 skb = netdev_alloc_skb(bp->dev, len + NET_IP_ALIGN);
89e5785f
HS
779 if (!skb) {
780 bp->stats.rx_dropped++;
55054a16
HS
781 for (frag = first_frag; ; frag++) {
782 desc = macb_rx_desc(bp, frag);
783 desc->addr &= ~MACB_BIT(RX_USED);
89e5785f
HS
784 if (frag == last_frag)
785 break;
786 }
03dbe05f
HS
787
788 /* Make descriptor updates visible to hardware */
89e5785f 789 wmb();
03dbe05f 790
89e5785f
HS
791 return 1;
792 }
793
29bc2e1e
HS
794 offset = 0;
795 len += NET_IP_ALIGN;
bc8acf2c 796 skb_checksum_none_assert(skb);
89e5785f
HS
797 skb_put(skb, len);
798
55054a16 799 for (frag = first_frag; ; frag++) {
1b44791a 800 unsigned int frag_len = bp->rx_buffer_size;
89e5785f
HS
801
802 if (offset + frag_len > len) {
803 BUG_ON(frag != last_frag);
804 frag_len = len - offset;
805 }
27d7ff46 806 skb_copy_to_linear_data_offset(skb, offset,
55054a16 807 macb_rx_buffer(bp, frag), frag_len);
1b44791a 808 offset += bp->rx_buffer_size;
55054a16
HS
809 desc = macb_rx_desc(bp, frag);
810 desc->addr &= ~MACB_BIT(RX_USED);
89e5785f
HS
811
812 if (frag == last_frag)
813 break;
814 }
815
03dbe05f
HS
816 /* Make descriptor updates visible to hardware */
817 wmb();
818
29bc2e1e 819 __skb_pull(skb, NET_IP_ALIGN);
89e5785f
HS
820 skb->protocol = eth_type_trans(skb, bp->dev);
821
822 bp->stats.rx_packets++;
29bc2e1e 823 bp->stats.rx_bytes += skb->len;
a268adb1 824 netdev_vdbg(bp->dev, "received skb of length %u, csum: %08x\n",
c220f8cd 825 skb->len, skb->csum);
89e5785f
HS
826 netif_receive_skb(skb);
827
828 return 0;
829}
830
89e5785f
HS
831static int macb_rx(struct macb *bp, int budget)
832{
833 int received = 0;
55054a16 834 unsigned int tail;
89e5785f
HS
835 int first_frag = -1;
836
55054a16
HS
837 for (tail = bp->rx_tail; budget > 0; tail++) {
838 struct macb_dma_desc *desc = macb_rx_desc(bp, tail);
89e5785f
HS
839 u32 addr, ctrl;
840
03dbe05f 841 /* Make hw descriptor updates visible to CPU */
89e5785f 842 rmb();
03dbe05f 843
55054a16
HS
844 addr = desc->addr;
845 ctrl = desc->ctrl;
89e5785f
HS
846
847 if (!(addr & MACB_BIT(RX_USED)))
848 break;
849
850 if (ctrl & MACB_BIT(RX_SOF)) {
851 if (first_frag != -1)
852 discard_partial_frame(bp, first_frag, tail);
853 first_frag = tail;
854 }
855
856 if (ctrl & MACB_BIT(RX_EOF)) {
857 int dropped;
858 BUG_ON(first_frag == -1);
859
860 dropped = macb_rx_frame(bp, first_frag, tail);
861 first_frag = -1;
862 if (!dropped) {
863 received++;
864 budget--;
865 }
866 }
867 }
868
869 if (first_frag != -1)
870 bp->rx_tail = first_frag;
871 else
872 bp->rx_tail = tail;
873
874 return received;
875}
876
bea3348e 877static int macb_poll(struct napi_struct *napi, int budget)
89e5785f 878{
bea3348e 879 struct macb *bp = container_of(napi, struct macb, napi);
bea3348e 880 int work_done;
89e5785f
HS
881 u32 status;
882
883 status = macb_readl(bp, RSR);
884 macb_writel(bp, RSR, status);
885
bea3348e 886 work_done = 0;
89e5785f 887
a268adb1 888 netdev_vdbg(bp->dev, "poll: status = %08lx, budget = %d\n",
c220f8cd 889 (unsigned long)status, budget);
89e5785f 890
4df95131 891 work_done = bp->macbgem_ops.mog_rx(bp, budget);
b336369c 892 if (work_done < budget) {
288379f0 893 napi_complete(napi);
89e5785f 894
b336369c
JH
895 /*
896 * We've done what we can to clean the buffers. Make sure we
897 * get notified when new packets arrive.
898 */
899 macb_writel(bp, IER, MACB_RX_INT_FLAGS);
8770e91a
NF
900
901 /* Packets received while interrupts were disabled */
902 status = macb_readl(bp, RSR);
903 if (unlikely(status))
904 napi_reschedule(napi);
b336369c 905 }
89e5785f
HS
906
907 /* TODO: Handle errors */
908
bea3348e 909 return work_done;
89e5785f
HS
910}
911
912static irqreturn_t macb_interrupt(int irq, void *dev_id)
913{
914 struct net_device *dev = dev_id;
915 struct macb *bp = netdev_priv(dev);
916 u32 status;
917
918 status = macb_readl(bp, ISR);
919
920 if (unlikely(!status))
921 return IRQ_NONE;
922
923 spin_lock(&bp->lock);
924
925 while (status) {
89e5785f
HS
926 /* close possible race with dev_close */
927 if (unlikely(!netif_running(dev))) {
95ebcea6 928 macb_writel(bp, IDR, -1);
89e5785f
HS
929 break;
930 }
931
a268adb1
HS
932 netdev_vdbg(bp->dev, "isr = 0x%08lx\n", (unsigned long)status);
933
89e5785f 934 if (status & MACB_RX_INT_FLAGS) {
b336369c
JH
935 /*
936 * There's no point taking any more interrupts
937 * until we have processed the buffers. The
938 * scheduling call may fail if the poll routine
939 * is already scheduled, so disable interrupts
940 * now.
941 */
942 macb_writel(bp, IDR, MACB_RX_INT_FLAGS);
581df9e1
NF
943 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
944 macb_writel(bp, ISR, MACB_BIT(RCOMP));
b336369c 945
288379f0 946 if (napi_schedule_prep(&bp->napi)) {
a268adb1 947 netdev_vdbg(bp->dev, "scheduling RX softirq\n");
288379f0 948 __napi_schedule(&bp->napi);
89e5785f
HS
949 }
950 }
951
e86cd53a
NF
952 if (unlikely(status & (MACB_TX_ERR_FLAGS))) {
953 macb_writel(bp, IDR, MACB_TX_INT_FLAGS);
954 schedule_work(&bp->tx_error_task);
955 break;
956 }
957
958 if (status & MACB_BIT(TCOMP))
959 macb_tx_interrupt(bp);
89e5785f
HS
960
961 /*
962 * Link change detection isn't possible with RMII, so we'll
963 * add that if/when we get our hands on a full-blown MII PHY.
964 */
965
b19f7f71
AS
966 if (status & MACB_BIT(ISR_ROVR)) {
967 /* We missed at least one packet */
f75ba50b
JI
968 if (macb_is_gem(bp))
969 bp->hw_stats.gem.rx_overruns++;
970 else
971 bp->hw_stats.macb.rx_overruns++;
b19f7f71
AS
972 }
973
89e5785f
HS
974 if (status & MACB_BIT(HRESP)) {
975 /*
c220f8cd
JI
976 * TODO: Reset the hardware, and maybe move the
977 * netdev_err to a lower-priority context as well
978 * (work queue?)
89e5785f 979 */
c220f8cd 980 netdev_err(dev, "DMA bus error: HRESP not OK\n");
89e5785f
HS
981 }
982
983 status = macb_readl(bp, ISR);
984 }
985
986 spin_unlock(&bp->lock);
987
988 return IRQ_HANDLED;
989}
990
6e8cf5c0
TP
991#ifdef CONFIG_NET_POLL_CONTROLLER
992/*
993 * Polling receive - used by netconsole and other diagnostic tools
994 * to allow network i/o with interrupts disabled.
995 */
996static void macb_poll_controller(struct net_device *dev)
997{
998 unsigned long flags;
999
1000 local_irq_save(flags);
1001 macb_interrupt(dev->irq, dev);
1002 local_irq_restore(flags);
1003}
1004#endif
1005
89e5785f
HS
1006static int macb_start_xmit(struct sk_buff *skb, struct net_device *dev)
1007{
1008 struct macb *bp = netdev_priv(dev);
1009 dma_addr_t mapping;
1010 unsigned int len, entry;
55054a16
HS
1011 struct macb_dma_desc *desc;
1012 struct macb_tx_skb *tx_skb;
89e5785f 1013 u32 ctrl;
4871953c 1014 unsigned long flags;
89e5785f 1015
a268adb1
HS
1016#if defined(DEBUG) && defined(VERBOSE_DEBUG)
1017 netdev_vdbg(bp->dev,
c220f8cd
JI
1018 "start_xmit: len %u head %p data %p tail %p end %p\n",
1019 skb->len, skb->head, skb->data,
1020 skb_tail_pointer(skb), skb_end_pointer(skb));
1021 print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_OFFSET, 16, 1,
1022 skb->data, 16, true);
89e5785f
HS
1023#endif
1024
1025 len = skb->len;
4871953c 1026 spin_lock_irqsave(&bp->lock, flags);
89e5785f
HS
1027
1028 /* This is a hard error, log it. */
909a8583 1029 if (CIRC_SPACE(bp->tx_head, bp->tx_tail, TX_RING_SIZE) < 1) {
89e5785f 1030 netif_stop_queue(dev);
4871953c 1031 spin_unlock_irqrestore(&bp->lock, flags);
c220f8cd
JI
1032 netdev_err(bp->dev, "BUG! Tx Ring full when queue awake!\n");
1033 netdev_dbg(bp->dev, "tx_head = %u, tx_tail = %u\n",
1034 bp->tx_head, bp->tx_tail);
5b548140 1035 return NETDEV_TX_BUSY;
89e5785f
HS
1036 }
1037
55054a16
HS
1038 entry = macb_tx_ring_wrap(bp->tx_head);
1039 bp->tx_head++;
a268adb1 1040 netdev_vdbg(bp->dev, "Allocated ring entry %u\n", entry);
89e5785f
HS
1041 mapping = dma_map_single(&bp->pdev->dev, skb->data,
1042 len, DMA_TO_DEVICE);
55054a16
HS
1043
1044 tx_skb = &bp->tx_skb[entry];
1045 tx_skb->skb = skb;
1046 tx_skb->mapping = mapping;
a268adb1 1047 netdev_vdbg(bp->dev, "Mapped skb data %p to DMA addr %08lx\n",
c220f8cd 1048 skb->data, (unsigned long)mapping);
89e5785f
HS
1049
1050 ctrl = MACB_BF(TX_FRMLEN, len);
1051 ctrl |= MACB_BIT(TX_LAST);
1052 if (entry == (TX_RING_SIZE - 1))
1053 ctrl |= MACB_BIT(TX_WRAP);
1054
55054a16
HS
1055 desc = &bp->tx_ring[entry];
1056 desc->addr = mapping;
1057 desc->ctrl = ctrl;
03dbe05f
HS
1058
1059 /* Make newly initialized descriptor visible to hardware */
89e5785f
HS
1060 wmb();
1061
e072092f
RC
1062 skb_tx_timestamp(skb);
1063
89e5785f
HS
1064 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TSTART));
1065
909a8583 1066 if (CIRC_SPACE(bp->tx_head, bp->tx_tail, TX_RING_SIZE) < 1)
89e5785f
HS
1067 netif_stop_queue(dev);
1068
4871953c 1069 spin_unlock_irqrestore(&bp->lock, flags);
89e5785f 1070
6ed10654 1071 return NETDEV_TX_OK;
89e5785f
HS
1072}
1073
4df95131 1074static void macb_init_rx_buffer_size(struct macb *bp, size_t size)
1b44791a
NF
1075{
1076 if (!macb_is_gem(bp)) {
1077 bp->rx_buffer_size = MACB_RX_BUFFER_SIZE;
1078 } else {
4df95131 1079 bp->rx_buffer_size = size;
1b44791a 1080
1b44791a 1081 if (bp->rx_buffer_size % RX_BUFFER_MULTIPLE) {
4df95131
NF
1082 netdev_dbg(bp->dev,
1083 "RX buffer must be multiple of %d bytes, expanding\n",
1b44791a
NF
1084 RX_BUFFER_MULTIPLE);
1085 bp->rx_buffer_size =
4df95131 1086 roundup(bp->rx_buffer_size, RX_BUFFER_MULTIPLE);
1b44791a 1087 }
1b44791a 1088 }
4df95131
NF
1089
1090 netdev_dbg(bp->dev, "mtu [%u] rx_buffer_size [%Zu]\n",
1091 bp->dev->mtu, bp->rx_buffer_size);
1b44791a
NF
1092}
1093
4df95131
NF
1094static void gem_free_rx_buffers(struct macb *bp)
1095{
1096 struct sk_buff *skb;
1097 struct macb_dma_desc *desc;
1098 dma_addr_t addr;
1099 int i;
1100
1101 if (!bp->rx_skbuff)
1102 return;
1103
1104 for (i = 0; i < RX_RING_SIZE; i++) {
1105 skb = bp->rx_skbuff[i];
1106
1107 if (skb == NULL)
1108 continue;
1109
1110 desc = &bp->rx_ring[i];
1111 addr = MACB_BF(RX_WADDR, MACB_BFEXT(RX_WADDR, desc->addr));
1112 dma_unmap_single(&bp->pdev->dev, addr, skb->len,
1113 DMA_FROM_DEVICE);
1114 dev_kfree_skb_any(skb);
1115 skb = NULL;
1116 }
1117
1118 kfree(bp->rx_skbuff);
1119 bp->rx_skbuff = NULL;
1120}
1121
1122static void macb_free_rx_buffers(struct macb *bp)
1123{
1124 if (bp->rx_buffers) {
1125 dma_free_coherent(&bp->pdev->dev,
1126 RX_RING_SIZE * bp->rx_buffer_size,
1127 bp->rx_buffers, bp->rx_buffers_dma);
1128 bp->rx_buffers = NULL;
1129 }
1130}
1b44791a 1131
89e5785f
HS
1132static void macb_free_consistent(struct macb *bp)
1133{
1134 if (bp->tx_skb) {
1135 kfree(bp->tx_skb);
1136 bp->tx_skb = NULL;
1137 }
4df95131 1138 bp->macbgem_ops.mog_free_rx_buffers(bp);
89e5785f
HS
1139 if (bp->rx_ring) {
1140 dma_free_coherent(&bp->pdev->dev, RX_RING_BYTES,
1141 bp->rx_ring, bp->rx_ring_dma);
1142 bp->rx_ring = NULL;
1143 }
1144 if (bp->tx_ring) {
1145 dma_free_coherent(&bp->pdev->dev, TX_RING_BYTES,
1146 bp->tx_ring, bp->tx_ring_dma);
1147 bp->tx_ring = NULL;
1148 }
4df95131
NF
1149}
1150
1151static int gem_alloc_rx_buffers(struct macb *bp)
1152{
1153 int size;
1154
1155 size = RX_RING_SIZE * sizeof(struct sk_buff *);
1156 bp->rx_skbuff = kzalloc(size, GFP_KERNEL);
1157 if (!bp->rx_skbuff)
1158 return -ENOMEM;
1159 else
1160 netdev_dbg(bp->dev,
1161 "Allocated %d RX struct sk_buff entries at %p\n",
1162 RX_RING_SIZE, bp->rx_skbuff);
1163 return 0;
1164}
1165
1166static int macb_alloc_rx_buffers(struct macb *bp)
1167{
1168 int size;
1169
1170 size = RX_RING_SIZE * bp->rx_buffer_size;
1171 bp->rx_buffers = dma_alloc_coherent(&bp->pdev->dev, size,
1172 &bp->rx_buffers_dma, GFP_KERNEL);
1173 if (!bp->rx_buffers)
1174 return -ENOMEM;
1175 else
1176 netdev_dbg(bp->dev,
1177 "Allocated RX buffers of %d bytes at %08lx (mapped %p)\n",
1178 size, (unsigned long)bp->rx_buffers_dma, bp->rx_buffers);
1179 return 0;
89e5785f
HS
1180}
1181
1182static int macb_alloc_consistent(struct macb *bp)
1183{
1184 int size;
1185
55054a16 1186 size = TX_RING_SIZE * sizeof(struct macb_tx_skb);
89e5785f
HS
1187 bp->tx_skb = kmalloc(size, GFP_KERNEL);
1188 if (!bp->tx_skb)
1189 goto out_err;
1190
1191 size = RX_RING_BYTES;
1192 bp->rx_ring = dma_alloc_coherent(&bp->pdev->dev, size,
1193 &bp->rx_ring_dma, GFP_KERNEL);
1194 if (!bp->rx_ring)
1195 goto out_err;
c220f8cd
JI
1196 netdev_dbg(bp->dev,
1197 "Allocated RX ring of %d bytes at %08lx (mapped %p)\n",
1198 size, (unsigned long)bp->rx_ring_dma, bp->rx_ring);
89e5785f
HS
1199
1200 size = TX_RING_BYTES;
1201 bp->tx_ring = dma_alloc_coherent(&bp->pdev->dev, size,
1202 &bp->tx_ring_dma, GFP_KERNEL);
1203 if (!bp->tx_ring)
1204 goto out_err;
c220f8cd
JI
1205 netdev_dbg(bp->dev,
1206 "Allocated TX ring of %d bytes at %08lx (mapped %p)\n",
1207 size, (unsigned long)bp->tx_ring_dma, bp->tx_ring);
89e5785f 1208
4df95131 1209 if (bp->macbgem_ops.mog_alloc_rx_buffers(bp))
89e5785f 1210 goto out_err;
89e5785f
HS
1211
1212 return 0;
1213
1214out_err:
1215 macb_free_consistent(bp);
1216 return -ENOMEM;
1217}
1218
4df95131
NF
1219static void gem_init_rings(struct macb *bp)
1220{
1221 int i;
1222
1223 for (i = 0; i < TX_RING_SIZE; i++) {
1224 bp->tx_ring[i].addr = 0;
1225 bp->tx_ring[i].ctrl = MACB_BIT(TX_USED);
1226 }
1227 bp->tx_ring[TX_RING_SIZE - 1].ctrl |= MACB_BIT(TX_WRAP);
1228
1229 bp->rx_tail = bp->rx_prepared_head = bp->tx_head = bp->tx_tail = 0;
1230
1231 gem_rx_refill(bp);
1232}
1233
89e5785f
HS
1234static void macb_init_rings(struct macb *bp)
1235{
1236 int i;
1237 dma_addr_t addr;
1238
1239 addr = bp->rx_buffers_dma;
1240 for (i = 0; i < RX_RING_SIZE; i++) {
1241 bp->rx_ring[i].addr = addr;
1242 bp->rx_ring[i].ctrl = 0;
1b44791a 1243 addr += bp->rx_buffer_size;
89e5785f
HS
1244 }
1245 bp->rx_ring[RX_RING_SIZE - 1].addr |= MACB_BIT(RX_WRAP);
1246
1247 for (i = 0; i < TX_RING_SIZE; i++) {
1248 bp->tx_ring[i].addr = 0;
1249 bp->tx_ring[i].ctrl = MACB_BIT(TX_USED);
1250 }
1251 bp->tx_ring[TX_RING_SIZE - 1].ctrl |= MACB_BIT(TX_WRAP);
1252
1253 bp->rx_tail = bp->tx_head = bp->tx_tail = 0;
1254}
1255
1256static void macb_reset_hw(struct macb *bp)
1257{
89e5785f
HS
1258 /*
1259 * Disable RX and TX (XXX: Should we halt the transmission
1260 * more gracefully?)
1261 */
1262 macb_writel(bp, NCR, 0);
1263
1264 /* Clear the stats registers (XXX: Update stats first?) */
1265 macb_writel(bp, NCR, MACB_BIT(CLRSTAT));
1266
1267 /* Clear all status flags */
95ebcea6
JE
1268 macb_writel(bp, TSR, -1);
1269 macb_writel(bp, RSR, -1);
89e5785f
HS
1270
1271 /* Disable all interrupts */
95ebcea6 1272 macb_writel(bp, IDR, -1);
89e5785f
HS
1273 macb_readl(bp, ISR);
1274}
1275
70c9f3d4
JI
1276static u32 gem_mdc_clk_div(struct macb *bp)
1277{
1278 u32 config;
1279 unsigned long pclk_hz = clk_get_rate(bp->pclk);
1280
1281 if (pclk_hz <= 20000000)
1282 config = GEM_BF(CLK, GEM_CLK_DIV8);
1283 else if (pclk_hz <= 40000000)
1284 config = GEM_BF(CLK, GEM_CLK_DIV16);
1285 else if (pclk_hz <= 80000000)
1286 config = GEM_BF(CLK, GEM_CLK_DIV32);
1287 else if (pclk_hz <= 120000000)
1288 config = GEM_BF(CLK, GEM_CLK_DIV48);
1289 else if (pclk_hz <= 160000000)
1290 config = GEM_BF(CLK, GEM_CLK_DIV64);
1291 else
1292 config = GEM_BF(CLK, GEM_CLK_DIV96);
1293
1294 return config;
1295}
1296
1297static u32 macb_mdc_clk_div(struct macb *bp)
1298{
1299 u32 config;
1300 unsigned long pclk_hz;
1301
1302 if (macb_is_gem(bp))
1303 return gem_mdc_clk_div(bp);
1304
1305 pclk_hz = clk_get_rate(bp->pclk);
1306 if (pclk_hz <= 20000000)
1307 config = MACB_BF(CLK, MACB_CLK_DIV8);
1308 else if (pclk_hz <= 40000000)
1309 config = MACB_BF(CLK, MACB_CLK_DIV16);
1310 else if (pclk_hz <= 80000000)
1311 config = MACB_BF(CLK, MACB_CLK_DIV32);
1312 else
1313 config = MACB_BF(CLK, MACB_CLK_DIV64);
1314
1315 return config;
1316}
1317
757a03c6
JI
1318/*
1319 * Get the DMA bus width field of the network configuration register that we
1320 * should program. We find the width from decoding the design configuration
1321 * register to find the maximum supported data bus width.
1322 */
1323static u32 macb_dbw(struct macb *bp)
1324{
1325 if (!macb_is_gem(bp))
1326 return 0;
1327
1328 switch (GEM_BFEXT(DBWDEF, gem_readl(bp, DCFG1))) {
1329 case 4:
1330 return GEM_BF(DBW, GEM_DBW128);
1331 case 2:
1332 return GEM_BF(DBW, GEM_DBW64);
1333 case 1:
1334 default:
1335 return GEM_BF(DBW, GEM_DBW32);
1336 }
1337}
1338
0116da4f 1339/*
b3e3bd71
NF
1340 * Configure the receive DMA engine
1341 * - use the correct receive buffer size
1342 * - set the possibility to use INCR16 bursts
1343 * (if not supported by FIFO, it will fallback to default)
1344 * - set both rx/tx packet buffers to full memory size
1345 * These are configurable parameters for GEM.
0116da4f
JI
1346 */
1347static void macb_configure_dma(struct macb *bp)
1348{
1349 u32 dmacfg;
1350
1351 if (macb_is_gem(bp)) {
1352 dmacfg = gem_readl(bp, DMACFG) & ~GEM_BF(RXBS, -1L);
1b44791a 1353 dmacfg |= GEM_BF(RXBS, bp->rx_buffer_size / RX_BUFFER_MULTIPLE);
b3e3bd71
NF
1354 dmacfg |= GEM_BF(FBLDO, 16);
1355 dmacfg |= GEM_BIT(TXPBMS) | GEM_BF(RXBMS, -1L);
a1ae385d 1356 dmacfg &= ~GEM_BIT(ENDIA);
0116da4f
JI
1357 gem_writel(bp, DMACFG, dmacfg);
1358 }
1359}
1360
581df9e1
NF
1361/*
1362 * Configure peripheral capacities according to integration options used
1363 */
1364static void macb_configure_caps(struct macb *bp)
1365{
1366 if (macb_is_gem(bp)) {
01276ed2 1367 if (GEM_BFEXT(IRQCOR, gem_readl(bp, DCFG1)) == 0)
581df9e1
NF
1368 bp->caps |= MACB_CAPS_ISR_CLEAR_ON_WRITE;
1369 }
1370}
1371
89e5785f
HS
1372static void macb_init_hw(struct macb *bp)
1373{
1374 u32 config;
1375
1376 macb_reset_hw(bp);
314bccc4 1377 macb_set_hwaddr(bp);
89e5785f 1378
70c9f3d4 1379 config = macb_mdc_clk_div(bp);
29bc2e1e 1380 config |= MACB_BF(RBOF, NET_IP_ALIGN); /* Make eth data aligned */
89e5785f
HS
1381 config |= MACB_BIT(PAE); /* PAuse Enable */
1382 config |= MACB_BIT(DRFCS); /* Discard Rx FCS */
8dd4bd00 1383 config |= MACB_BIT(BIG); /* Receive oversized frames */
89e5785f
HS
1384 if (bp->dev->flags & IFF_PROMISC)
1385 config |= MACB_BIT(CAF); /* Copy All Frames */
1386 if (!(bp->dev->flags & IFF_BROADCAST))
1387 config |= MACB_BIT(NBC); /* No BroadCast */
757a03c6 1388 config |= macb_dbw(bp);
89e5785f 1389 macb_writel(bp, NCFGR, config);
26cdfb49
VD
1390 bp->speed = SPEED_10;
1391 bp->duplex = DUPLEX_HALF;
89e5785f 1392
0116da4f 1393 macb_configure_dma(bp);
581df9e1 1394 macb_configure_caps(bp);
0116da4f 1395
89e5785f
HS
1396 /* Initialize TX and RX buffers */
1397 macb_writel(bp, RBQP, bp->rx_ring_dma);
1398 macb_writel(bp, TBQP, bp->tx_ring_dma);
1399
1400 /* Enable TX and RX */
6c36a707 1401 macb_writel(bp, NCR, MACB_BIT(RE) | MACB_BIT(TE) | MACB_BIT(MPE));
89e5785f
HS
1402
1403 /* Enable interrupts */
e86cd53a
NF
1404 macb_writel(bp, IER, (MACB_RX_INT_FLAGS
1405 | MACB_TX_INT_FLAGS
89e5785f 1406 | MACB_BIT(HRESP)));
89e5785f 1407
89e5785f
HS
1408}
1409
446ebd01
PV
1410/*
1411 * The hash address register is 64 bits long and takes up two
1412 * locations in the memory map. The least significant bits are stored
1413 * in EMAC_HSL and the most significant bits in EMAC_HSH.
1414 *
1415 * The unicast hash enable and the multicast hash enable bits in the
1416 * network configuration register enable the reception of hash matched
1417 * frames. The destination address is reduced to a 6 bit index into
1418 * the 64 bit hash register using the following hash function. The
1419 * hash function is an exclusive or of every sixth bit of the
1420 * destination address.
1421 *
1422 * hi[5] = da[5] ^ da[11] ^ da[17] ^ da[23] ^ da[29] ^ da[35] ^ da[41] ^ da[47]
1423 * hi[4] = da[4] ^ da[10] ^ da[16] ^ da[22] ^ da[28] ^ da[34] ^ da[40] ^ da[46]
1424 * hi[3] = da[3] ^ da[09] ^ da[15] ^ da[21] ^ da[27] ^ da[33] ^ da[39] ^ da[45]
1425 * hi[2] = da[2] ^ da[08] ^ da[14] ^ da[20] ^ da[26] ^ da[32] ^ da[38] ^ da[44]
1426 * hi[1] = da[1] ^ da[07] ^ da[13] ^ da[19] ^ da[25] ^ da[31] ^ da[37] ^ da[43]
1427 * hi[0] = da[0] ^ da[06] ^ da[12] ^ da[18] ^ da[24] ^ da[30] ^ da[36] ^ da[42]
1428 *
1429 * da[0] represents the least significant bit of the first byte
1430 * received, that is, the multicast/unicast indicator, and da[47]
1431 * represents the most significant bit of the last byte received. If
1432 * the hash index, hi[n], points to a bit that is set in the hash
1433 * register then the frame will be matched according to whether the
1434 * frame is multicast or unicast. A multicast match will be signalled
1435 * if the multicast hash enable bit is set, da[0] is 1 and the hash
1436 * index points to a bit set in the hash register. A unicast match
1437 * will be signalled if the unicast hash enable bit is set, da[0] is 0
1438 * and the hash index points to a bit set in the hash register. To
1439 * receive all multicast frames, the hash register should be set with
1440 * all ones and the multicast hash enable bit should be set in the
1441 * network configuration register.
1442 */
1443
1444static inline int hash_bit_value(int bitnr, __u8 *addr)
1445{
1446 if (addr[bitnr / 8] & (1 << (bitnr % 8)))
1447 return 1;
1448 return 0;
1449}
1450
1451/*
1452 * Return the hash index value for the specified address.
1453 */
1454static int hash_get_index(__u8 *addr)
1455{
1456 int i, j, bitval;
1457 int hash_index = 0;
1458
1459 for (j = 0; j < 6; j++) {
1460 for (i = 0, bitval = 0; i < 8; i++)
1461 bitval ^= hash_bit_value(i*6 + j, addr);
1462
1463 hash_index |= (bitval << j);
1464 }
1465
1466 return hash_index;
1467}
1468
1469/*
1470 * Add multicast addresses to the internal multicast-hash table.
1471 */
1472static void macb_sethashtable(struct net_device *dev)
1473{
22bedad3 1474 struct netdev_hw_addr *ha;
446ebd01 1475 unsigned long mc_filter[2];
f9dcbcc9 1476 unsigned int bitnr;
446ebd01
PV
1477 struct macb *bp = netdev_priv(dev);
1478
1479 mc_filter[0] = mc_filter[1] = 0;
1480
22bedad3
JP
1481 netdev_for_each_mc_addr(ha, dev) {
1482 bitnr = hash_get_index(ha->addr);
446ebd01
PV
1483 mc_filter[bitnr >> 5] |= 1 << (bitnr & 31);
1484 }
1485
f75ba50b
JI
1486 macb_or_gem_writel(bp, HRB, mc_filter[0]);
1487 macb_or_gem_writel(bp, HRT, mc_filter[1]);
446ebd01
PV
1488}
1489
1490/*
1491 * Enable/Disable promiscuous and multicast modes.
1492 */
e0da1f14 1493void macb_set_rx_mode(struct net_device *dev)
446ebd01
PV
1494{
1495 unsigned long cfg;
1496 struct macb *bp = netdev_priv(dev);
1497
1498 cfg = macb_readl(bp, NCFGR);
1499
1500 if (dev->flags & IFF_PROMISC)
1501 /* Enable promiscuous mode */
1502 cfg |= MACB_BIT(CAF);
1503 else if (dev->flags & (~IFF_PROMISC))
1504 /* Disable promiscuous mode */
1505 cfg &= ~MACB_BIT(CAF);
1506
1507 if (dev->flags & IFF_ALLMULTI) {
1508 /* Enable all multicast mode */
f75ba50b
JI
1509 macb_or_gem_writel(bp, HRB, -1);
1510 macb_or_gem_writel(bp, HRT, -1);
446ebd01 1511 cfg |= MACB_BIT(NCFGR_MTI);
4cd24eaf 1512 } else if (!netdev_mc_empty(dev)) {
446ebd01
PV
1513 /* Enable specific multicasts */
1514 macb_sethashtable(dev);
1515 cfg |= MACB_BIT(NCFGR_MTI);
1516 } else if (dev->flags & (~IFF_ALLMULTI)) {
1517 /* Disable all multicast mode */
f75ba50b
JI
1518 macb_or_gem_writel(bp, HRB, 0);
1519 macb_or_gem_writel(bp, HRT, 0);
446ebd01
PV
1520 cfg &= ~MACB_BIT(NCFGR_MTI);
1521 }
1522
1523 macb_writel(bp, NCFGR, cfg);
1524}
e0da1f14 1525EXPORT_SYMBOL_GPL(macb_set_rx_mode);
446ebd01 1526
89e5785f
HS
1527static int macb_open(struct net_device *dev)
1528{
1529 struct macb *bp = netdev_priv(dev);
4df95131 1530 size_t bufsz = dev->mtu + ETH_HLEN + ETH_FCS_LEN + NET_IP_ALIGN;
89e5785f
HS
1531 int err;
1532
c220f8cd 1533 netdev_dbg(bp->dev, "open\n");
89e5785f 1534
03fc4721
NF
1535 /* carrier starts down */
1536 netif_carrier_off(dev);
1537
6c36a707
R
1538 /* if the phy is not yet register, retry later*/
1539 if (!bp->phy_dev)
1540 return -EAGAIN;
1b44791a
NF
1541
1542 /* RX buffers initialization */
4df95131 1543 macb_init_rx_buffer_size(bp, bufsz);
6c36a707 1544
89e5785f
HS
1545 err = macb_alloc_consistent(bp);
1546 if (err) {
c220f8cd
JI
1547 netdev_err(dev, "Unable to allocate DMA memory (error %d)\n",
1548 err);
89e5785f
HS
1549 return err;
1550 }
1551
bea3348e
SH
1552 napi_enable(&bp->napi);
1553
4df95131 1554 bp->macbgem_ops.mog_init_rings(bp);
89e5785f 1555 macb_init_hw(bp);
89e5785f 1556
6c36a707
R
1557 /* schedule a link state check */
1558 phy_start(bp->phy_dev);
89e5785f 1559
6c36a707 1560 netif_start_queue(dev);
89e5785f
HS
1561
1562 return 0;
1563}
1564
1565static int macb_close(struct net_device *dev)
1566{
1567 struct macb *bp = netdev_priv(dev);
1568 unsigned long flags;
1569
89e5785f 1570 netif_stop_queue(dev);
bea3348e 1571 napi_disable(&bp->napi);
89e5785f 1572
6c36a707
R
1573 if (bp->phy_dev)
1574 phy_stop(bp->phy_dev);
1575
89e5785f
HS
1576 spin_lock_irqsave(&bp->lock, flags);
1577 macb_reset_hw(bp);
1578 netif_carrier_off(dev);
1579 spin_unlock_irqrestore(&bp->lock, flags);
1580
1581 macb_free_consistent(bp);
1582
1583 return 0;
1584}
1585
a494ed8e
JI
1586static void gem_update_stats(struct macb *bp)
1587{
1588 u32 __iomem *reg = bp->regs + GEM_OTX;
1589 u32 *p = &bp->hw_stats.gem.tx_octets_31_0;
1590 u32 *end = &bp->hw_stats.gem.rx_udp_checksum_errors + 1;
1591
1592 for (; p < end; p++, reg++)
1593 *p += __raw_readl(reg);
1594}
1595
1596static struct net_device_stats *gem_get_stats(struct macb *bp)
1597{
1598 struct gem_stats *hwstat = &bp->hw_stats.gem;
1599 struct net_device_stats *nstat = &bp->stats;
1600
1601 gem_update_stats(bp);
1602
1603 nstat->rx_errors = (hwstat->rx_frame_check_sequence_errors +
1604 hwstat->rx_alignment_errors +
1605 hwstat->rx_resource_errors +
1606 hwstat->rx_overruns +
1607 hwstat->rx_oversize_frames +
1608 hwstat->rx_jabbers +
1609 hwstat->rx_undersized_frames +
1610 hwstat->rx_length_field_frame_errors);
1611 nstat->tx_errors = (hwstat->tx_late_collisions +
1612 hwstat->tx_excessive_collisions +
1613 hwstat->tx_underrun +
1614 hwstat->tx_carrier_sense_errors);
1615 nstat->multicast = hwstat->rx_multicast_frames;
1616 nstat->collisions = (hwstat->tx_single_collision_frames +
1617 hwstat->tx_multiple_collision_frames +
1618 hwstat->tx_excessive_collisions);
1619 nstat->rx_length_errors = (hwstat->rx_oversize_frames +
1620 hwstat->rx_jabbers +
1621 hwstat->rx_undersized_frames +
1622 hwstat->rx_length_field_frame_errors);
1623 nstat->rx_over_errors = hwstat->rx_resource_errors;
1624 nstat->rx_crc_errors = hwstat->rx_frame_check_sequence_errors;
1625 nstat->rx_frame_errors = hwstat->rx_alignment_errors;
1626 nstat->rx_fifo_errors = hwstat->rx_overruns;
1627 nstat->tx_aborted_errors = hwstat->tx_excessive_collisions;
1628 nstat->tx_carrier_errors = hwstat->tx_carrier_sense_errors;
1629 nstat->tx_fifo_errors = hwstat->tx_underrun;
1630
1631 return nstat;
1632}
1633
2ea32eed 1634struct net_device_stats *macb_get_stats(struct net_device *dev)
89e5785f
HS
1635{
1636 struct macb *bp = netdev_priv(dev);
1637 struct net_device_stats *nstat = &bp->stats;
a494ed8e
JI
1638 struct macb_stats *hwstat = &bp->hw_stats.macb;
1639
1640 if (macb_is_gem(bp))
1641 return gem_get_stats(bp);
89e5785f 1642
6c36a707
R
1643 /* read stats from hardware */
1644 macb_update_stats(bp);
1645
89e5785f
HS
1646 /* Convert HW stats into netdevice stats */
1647 nstat->rx_errors = (hwstat->rx_fcs_errors +
1648 hwstat->rx_align_errors +
1649 hwstat->rx_resource_errors +
1650 hwstat->rx_overruns +
1651 hwstat->rx_oversize_pkts +
1652 hwstat->rx_jabbers +
1653 hwstat->rx_undersize_pkts +
1654 hwstat->sqe_test_errors +
1655 hwstat->rx_length_mismatch);
1656 nstat->tx_errors = (hwstat->tx_late_cols +
1657 hwstat->tx_excessive_cols +
1658 hwstat->tx_underruns +
1659 hwstat->tx_carrier_errors);
1660 nstat->collisions = (hwstat->tx_single_cols +
1661 hwstat->tx_multiple_cols +
1662 hwstat->tx_excessive_cols);
1663 nstat->rx_length_errors = (hwstat->rx_oversize_pkts +
1664 hwstat->rx_jabbers +
1665 hwstat->rx_undersize_pkts +
1666 hwstat->rx_length_mismatch);
b19f7f71
AS
1667 nstat->rx_over_errors = hwstat->rx_resource_errors +
1668 hwstat->rx_overruns;
89e5785f
HS
1669 nstat->rx_crc_errors = hwstat->rx_fcs_errors;
1670 nstat->rx_frame_errors = hwstat->rx_align_errors;
1671 nstat->rx_fifo_errors = hwstat->rx_overruns;
1672 /* XXX: What does "missed" mean? */
1673 nstat->tx_aborted_errors = hwstat->tx_excessive_cols;
1674 nstat->tx_carrier_errors = hwstat->tx_carrier_errors;
1675 nstat->tx_fifo_errors = hwstat->tx_underruns;
1676 /* Don't know about heartbeat or window errors... */
1677
1678 return nstat;
1679}
2ea32eed 1680EXPORT_SYMBOL_GPL(macb_get_stats);
89e5785f
HS
1681
1682static int macb_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1683{
1684 struct macb *bp = netdev_priv(dev);
6c36a707
R
1685 struct phy_device *phydev = bp->phy_dev;
1686
1687 if (!phydev)
1688 return -ENODEV;
89e5785f 1689
6c36a707 1690 return phy_ethtool_gset(phydev, cmd);
89e5785f
HS
1691}
1692
1693static int macb_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1694{
1695 struct macb *bp = netdev_priv(dev);
6c36a707 1696 struct phy_device *phydev = bp->phy_dev;
89e5785f 1697
6c36a707
R
1698 if (!phydev)
1699 return -ENODEV;
1700
1701 return phy_ethtool_sset(phydev, cmd);
89e5785f
HS
1702}
1703
d1d1b53d
NF
1704static int macb_get_regs_len(struct net_device *netdev)
1705{
1706 return MACB_GREGS_NBR * sizeof(u32);
1707}
1708
1709static void macb_get_regs(struct net_device *dev, struct ethtool_regs *regs,
1710 void *p)
1711{
1712 struct macb *bp = netdev_priv(dev);
1713 unsigned int tail, head;
1714 u32 *regs_buff = p;
1715
1716 regs->version = (macb_readl(bp, MID) & ((1 << MACB_REV_SIZE) - 1))
1717 | MACB_GREGS_VERSION;
1718
1719 tail = macb_tx_ring_wrap(bp->tx_tail);
1720 head = macb_tx_ring_wrap(bp->tx_head);
1721
1722 regs_buff[0] = macb_readl(bp, NCR);
1723 regs_buff[1] = macb_or_gem_readl(bp, NCFGR);
1724 regs_buff[2] = macb_readl(bp, NSR);
1725 regs_buff[3] = macb_readl(bp, TSR);
1726 regs_buff[4] = macb_readl(bp, RBQP);
1727 regs_buff[5] = macb_readl(bp, TBQP);
1728 regs_buff[6] = macb_readl(bp, RSR);
1729 regs_buff[7] = macb_readl(bp, IMR);
1730
1731 regs_buff[8] = tail;
1732 regs_buff[9] = head;
1733 regs_buff[10] = macb_tx_dma(bp, tail);
1734 regs_buff[11] = macb_tx_dma(bp, head);
1735
1736 if (macb_is_gem(bp)) {
1737 regs_buff[12] = gem_readl(bp, USRIO);
1738 regs_buff[13] = gem_readl(bp, DMACFG);
1739 }
1740}
1741
0005f541 1742const struct ethtool_ops macb_ethtool_ops = {
89e5785f
HS
1743 .get_settings = macb_get_settings,
1744 .set_settings = macb_set_settings,
d1d1b53d
NF
1745 .get_regs_len = macb_get_regs_len,
1746 .get_regs = macb_get_regs,
89e5785f 1747 .get_link = ethtool_op_get_link,
17f393e8 1748 .get_ts_info = ethtool_op_get_ts_info,
89e5785f 1749};
0005f541 1750EXPORT_SYMBOL_GPL(macb_ethtool_ops);
89e5785f 1751
0005f541 1752int macb_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
89e5785f
HS
1753{
1754 struct macb *bp = netdev_priv(dev);
6c36a707 1755 struct phy_device *phydev = bp->phy_dev;
89e5785f
HS
1756
1757 if (!netif_running(dev))
1758 return -EINVAL;
1759
6c36a707
R
1760 if (!phydev)
1761 return -ENODEV;
89e5785f 1762
28b04113 1763 return phy_mii_ioctl(phydev, rq, cmd);
89e5785f 1764}
0005f541 1765EXPORT_SYMBOL_GPL(macb_ioctl);
89e5785f 1766
5f1fa992
AB
1767static const struct net_device_ops macb_netdev_ops = {
1768 .ndo_open = macb_open,
1769 .ndo_stop = macb_close,
1770 .ndo_start_xmit = macb_start_xmit,
afc4b13d 1771 .ndo_set_rx_mode = macb_set_rx_mode,
5f1fa992
AB
1772 .ndo_get_stats = macb_get_stats,
1773 .ndo_do_ioctl = macb_ioctl,
1774 .ndo_validate_addr = eth_validate_addr,
1775 .ndo_change_mtu = eth_change_mtu,
1776 .ndo_set_mac_address = eth_mac_addr,
6e8cf5c0
TP
1777#ifdef CONFIG_NET_POLL_CONTROLLER
1778 .ndo_poll_controller = macb_poll_controller,
1779#endif
5f1fa992
AB
1780};
1781
fb97a846
JCPV
1782#if defined(CONFIG_OF)
1783static const struct of_device_id macb_dt_ids[] = {
1784 { .compatible = "cdns,at32ap7000-macb" },
1785 { .compatible = "cdns,at91sam9260-macb" },
1786 { .compatible = "cdns,macb" },
1787 { .compatible = "cdns,pc302-gem" },
1788 { .compatible = "cdns,gem" },
1789 { /* sentinel */ }
1790};
fb97a846 1791MODULE_DEVICE_TABLE(of, macb_dt_ids);
fb97a846
JCPV
1792#endif
1793
06c3fd6a 1794static int __init macb_probe(struct platform_device *pdev)
89e5785f 1795{
84e0cdb0 1796 struct macb_platform_data *pdata;
89e5785f
HS
1797 struct resource *regs;
1798 struct net_device *dev;
1799 struct macb *bp;
6c36a707 1800 struct phy_device *phydev;
89e5785f
HS
1801 u32 config;
1802 int err = -ENXIO;
8ef29f8a 1803 struct pinctrl *pinctrl;
50907043 1804 const char *mac;
89e5785f
HS
1805
1806 regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1807 if (!regs) {
1808 dev_err(&pdev->dev, "no mmio resource defined\n");
1809 goto err_out;
1810 }
1811
8ef29f8a
JCPV
1812 pinctrl = devm_pinctrl_get_select_default(&pdev->dev);
1813 if (IS_ERR(pinctrl)) {
1814 err = PTR_ERR(pinctrl);
1815 if (err == -EPROBE_DEFER)
1816 goto err_out;
1817
1818 dev_warn(&pdev->dev, "No pinctrl provided\n");
1819 }
1820
89e5785f
HS
1821 err = -ENOMEM;
1822 dev = alloc_etherdev(sizeof(*bp));
41de8d4c 1823 if (!dev)
89e5785f 1824 goto err_out;
89e5785f 1825
89e5785f
HS
1826 SET_NETDEV_DEV(dev, &pdev->dev);
1827
1828 /* TODO: Actually, we have some interesting features... */
1829 dev->features |= 0;
1830
1831 bp = netdev_priv(dev);
1832 bp->pdev = pdev;
1833 bp->dev = dev;
1834
1835 spin_lock_init(&bp->lock);
e86cd53a 1836 INIT_WORK(&bp->tx_error_task, macb_tx_error_task);
89e5785f 1837
b48e0bab 1838 bp->pclk = devm_clk_get(&pdev->dev, "pclk");
0cc8674f 1839 if (IS_ERR(bp->pclk)) {
b48e0bab
SB
1840 err = PTR_ERR(bp->pclk);
1841 dev_err(&pdev->dev, "failed to get macb_clk (%u)\n", err);
0cc8674f
AV
1842 goto err_out_free_dev;
1843 }
461845db 1844
b48e0bab 1845 bp->hclk = devm_clk_get(&pdev->dev, "hclk");
89e5785f 1846 if (IS_ERR(bp->hclk)) {
b48e0bab
SB
1847 err = PTR_ERR(bp->hclk);
1848 dev_err(&pdev->dev, "failed to get hclk (%u)\n", err);
1849 goto err_out_free_dev;
1850 }
1851
e1824dfe
SB
1852 bp->tx_clk = devm_clk_get(&pdev->dev, "tx_clk");
1853
b48e0bab
SB
1854 err = clk_prepare_enable(bp->pclk);
1855 if (err) {
1856 dev_err(&pdev->dev, "failed to enable pclk (%u)\n", err);
1857 goto err_out_free_dev;
1858 }
1859
1860 err = clk_prepare_enable(bp->hclk);
1861 if (err) {
1862 dev_err(&pdev->dev, "failed to enable hclk (%u)\n", err);
1863 goto err_out_disable_pclk;
89e5785f 1864 }
89e5785f 1865
e1824dfe
SB
1866 if (!IS_ERR(bp->tx_clk)) {
1867 err = clk_prepare_enable(bp->tx_clk);
1868 if (err) {
1869 dev_err(&pdev->dev, "failed to enable tx_clk (%u)\n",
1870 err);
1871 goto err_out_disable_hclk;
1872 }
1873 }
1874
60fe716f 1875 bp->regs = devm_ioremap(&pdev->dev, regs->start, resource_size(regs));
89e5785f
HS
1876 if (!bp->regs) {
1877 dev_err(&pdev->dev, "failed to map registers, aborting.\n");
1878 err = -ENOMEM;
1879 goto err_out_disable_clocks;
1880 }
1881
1882 dev->irq = platform_get_irq(pdev, 0);
0a4acf08
SB
1883 err = devm_request_irq(&pdev->dev, dev->irq, macb_interrupt, 0,
1884 dev->name, dev);
89e5785f 1885 if (err) {
c220f8cd
JI
1886 dev_err(&pdev->dev, "Unable to request IRQ %d (error %d)\n",
1887 dev->irq, err);
60fe716f 1888 goto err_out_disable_clocks;
89e5785f
HS
1889 }
1890
5f1fa992 1891 dev->netdev_ops = &macb_netdev_ops;
bea3348e 1892 netif_napi_add(dev, &bp->napi, macb_poll, 64);
89e5785f
HS
1893 dev->ethtool_ops = &macb_ethtool_ops;
1894
1895 dev->base_addr = regs->start;
1896
4df95131
NF
1897 /* setup appropriated routines according to adapter type */
1898 if (macb_is_gem(bp)) {
1899 bp->macbgem_ops.mog_alloc_rx_buffers = gem_alloc_rx_buffers;
1900 bp->macbgem_ops.mog_free_rx_buffers = gem_free_rx_buffers;
1901 bp->macbgem_ops.mog_init_rings = gem_init_rings;
1902 bp->macbgem_ops.mog_rx = gem_rx;
1903 } else {
1904 bp->macbgem_ops.mog_alloc_rx_buffers = macb_alloc_rx_buffers;
1905 bp->macbgem_ops.mog_free_rx_buffers = macb_free_rx_buffers;
1906 bp->macbgem_ops.mog_init_rings = macb_init_rings;
1907 bp->macbgem_ops.mog_rx = macb_rx;
1908 }
1909
89e5785f 1910 /* Set MII management clock divider */
70c9f3d4 1911 config = macb_mdc_clk_div(bp);
757a03c6 1912 config |= macb_dbw(bp);
89e5785f
HS
1913 macb_writel(bp, NCFGR, config);
1914
50907043
GR
1915 mac = of_get_mac_address(pdev->dev.of_node);
1916 if (mac)
1917 memcpy(bp->dev->dev_addr, mac, ETH_ALEN);
1918 else
fb97a846
JCPV
1919 macb_get_hwaddr(bp);
1920
50907043 1921 err = of_get_phy_mode(pdev->dev.of_node);
fb97a846 1922 if (err < 0) {
c607a0d9 1923 pdata = dev_get_platdata(&pdev->dev);
fb97a846
JCPV
1924 if (pdata && pdata->is_rmii)
1925 bp->phy_interface = PHY_INTERFACE_MODE_RMII;
1926 else
1927 bp->phy_interface = PHY_INTERFACE_MODE_MII;
1928 } else {
1929 bp->phy_interface = err;
1930 }
6c36a707 1931
140b7552
PV
1932 if (bp->phy_interface == PHY_INTERFACE_MODE_RGMII)
1933 macb_or_gem_writel(bp, USRIO, GEM_BIT(RGMII));
1934 else if (bp->phy_interface == PHY_INTERFACE_MODE_RMII)
0cc8674f 1935#if defined(CONFIG_ARCH_AT91)
f75ba50b
JI
1936 macb_or_gem_writel(bp, USRIO, (MACB_BIT(RMII) |
1937 MACB_BIT(CLKEN)));
0cc8674f 1938#else
f75ba50b 1939 macb_or_gem_writel(bp, USRIO, 0);
0cc8674f 1940#endif
89e5785f 1941 else
0cc8674f 1942#if defined(CONFIG_ARCH_AT91)
f75ba50b 1943 macb_or_gem_writel(bp, USRIO, MACB_BIT(CLKEN));
0cc8674f 1944#else
f75ba50b 1945 macb_or_gem_writel(bp, USRIO, MACB_BIT(MII));
0cc8674f 1946#endif
89e5785f 1947
89e5785f
HS
1948 err = register_netdev(dev);
1949 if (err) {
1950 dev_err(&pdev->dev, "Cannot register net device, aborting.\n");
0a4acf08 1951 goto err_out_disable_clocks;
89e5785f
HS
1952 }
1953
72ca820b
NF
1954 err = macb_mii_init(bp);
1955 if (err)
6c36a707 1956 goto err_out_unregister_netdev;
89e5785f 1957
6c36a707 1958 platform_set_drvdata(pdev, dev);
89e5785f 1959
03fc4721
NF
1960 netif_carrier_off(dev);
1961
f75ba50b
JI
1962 netdev_info(dev, "Cadence %s at 0x%08lx irq %d (%pM)\n",
1963 macb_is_gem(bp) ? "GEM" : "MACB", dev->base_addr,
1964 dev->irq, dev->dev_addr);
89e5785f 1965
6c36a707 1966 phydev = bp->phy_dev;
c220f8cd
JI
1967 netdev_info(dev, "attached PHY driver [%s] (mii_bus:phy_addr=%s, irq=%d)\n",
1968 phydev->drv->name, dev_name(&phydev->dev), phydev->irq);
6c36a707 1969
89e5785f
HS
1970 return 0;
1971
6c36a707
R
1972err_out_unregister_netdev:
1973 unregister_netdev(dev);
89e5785f 1974err_out_disable_clocks:
e1824dfe
SB
1975 if (!IS_ERR(bp->tx_clk))
1976 clk_disable_unprepare(bp->tx_clk);
1977err_out_disable_hclk:
ace58010 1978 clk_disable_unprepare(bp->hclk);
b48e0bab 1979err_out_disable_pclk:
ace58010 1980 clk_disable_unprepare(bp->pclk);
89e5785f
HS
1981err_out_free_dev:
1982 free_netdev(dev);
1983err_out:
89e5785f
HS
1984 return err;
1985}
1986
06c3fd6a 1987static int __exit macb_remove(struct platform_device *pdev)
89e5785f
HS
1988{
1989 struct net_device *dev;
1990 struct macb *bp;
1991
1992 dev = platform_get_drvdata(pdev);
1993
1994 if (dev) {
1995 bp = netdev_priv(dev);
84b7901f
AN
1996 if (bp->phy_dev)
1997 phy_disconnect(bp->phy_dev);
298cf9be
LB
1998 mdiobus_unregister(bp->mii_bus);
1999 kfree(bp->mii_bus->irq);
2000 mdiobus_free(bp->mii_bus);
89e5785f 2001 unregister_netdev(dev);
e1824dfe
SB
2002 if (!IS_ERR(bp->tx_clk))
2003 clk_disable_unprepare(bp->tx_clk);
ace58010 2004 clk_disable_unprepare(bp->hclk);
ace58010 2005 clk_disable_unprepare(bp->pclk);
89e5785f 2006 free_netdev(dev);
89e5785f
HS
2007 }
2008
2009 return 0;
2010}
2011
c1f598fd 2012#ifdef CONFIG_PM
0dfc3e18 2013static int macb_suspend(struct device *dev)
c1f598fd 2014{
0dfc3e18 2015 struct platform_device *pdev = to_platform_device(dev);
c1f598fd
HS
2016 struct net_device *netdev = platform_get_drvdata(pdev);
2017 struct macb *bp = netdev_priv(netdev);
2018
03fc4721 2019 netif_carrier_off(netdev);
c1f598fd
HS
2020 netif_device_detach(netdev);
2021
e1824dfe
SB
2022 if (!IS_ERR(bp->tx_clk))
2023 clk_disable_unprepare(bp->tx_clk);
ace58010
ST
2024 clk_disable_unprepare(bp->hclk);
2025 clk_disable_unprepare(bp->pclk);
c1f598fd
HS
2026
2027 return 0;
2028}
2029
0dfc3e18 2030static int macb_resume(struct device *dev)
c1f598fd 2031{
0dfc3e18 2032 struct platform_device *pdev = to_platform_device(dev);
c1f598fd
HS
2033 struct net_device *netdev = platform_get_drvdata(pdev);
2034 struct macb *bp = netdev_priv(netdev);
2035
ace58010
ST
2036 clk_prepare_enable(bp->pclk);
2037 clk_prepare_enable(bp->hclk);
e1824dfe
SB
2038 if (!IS_ERR(bp->tx_clk))
2039 clk_prepare_enable(bp->tx_clk);
c1f598fd
HS
2040
2041 netif_device_attach(netdev);
2042
2043 return 0;
2044}
c1f598fd
HS
2045#endif
2046
0dfc3e18
SB
2047static SIMPLE_DEV_PM_OPS(macb_pm_ops, macb_suspend, macb_resume);
2048
89e5785f 2049static struct platform_driver macb_driver = {
06c3fd6a 2050 .remove = __exit_p(macb_remove),
89e5785f
HS
2051 .driver = {
2052 .name = "macb",
72abb461 2053 .owner = THIS_MODULE,
fb97a846 2054 .of_match_table = of_match_ptr(macb_dt_ids),
0dfc3e18 2055 .pm = &macb_pm_ops,
89e5785f
HS
2056 },
2057};
2058
b543a8d8 2059module_platform_driver_probe(macb_driver, macb_probe);
89e5785f
HS
2060
2061MODULE_LICENSE("GPL");
f75ba50b 2062MODULE_DESCRIPTION("Cadence MACB/GEM Ethernet driver");
e05503ef 2063MODULE_AUTHOR("Haavard Skinnemoen (Atmel)");
72abb461 2064MODULE_ALIAS("platform:macb");
This page took 0.99385 seconds and 5 git commands to generate.