Loading...
1/*
2 * Cadence MACB/GEM Ethernet Controller driver
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
11#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
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>
17#include <linux/circ_buf.h>
18#include <linux/slab.h>
19#include <linux/init.h>
20#include <linux/io.h>
21#include <linux/gpio.h>
22#include <linux/gpio/consumer.h>
23#include <linux/interrupt.h>
24#include <linux/netdevice.h>
25#include <linux/etherdevice.h>
26#include <linux/dma-mapping.h>
27#include <linux/platform_data/macb.h>
28#include <linux/platform_device.h>
29#include <linux/phy.h>
30#include <linux/of.h>
31#include <linux/of_device.h>
32#include <linux/of_gpio.h>
33#include <linux/of_mdio.h>
34#include <linux/of_net.h>
35#include <linux/ip.h>
36#include <linux/udp.h>
37#include <linux/tcp.h>
38#include "macb.h"
39
40#define MACB_RX_BUFFER_SIZE 128
41#define RX_BUFFER_MULTIPLE 64 /* bytes */
42
43#define DEFAULT_RX_RING_SIZE 512 /* must be power of 2 */
44#define MIN_RX_RING_SIZE 64
45#define MAX_RX_RING_SIZE 8192
46#define RX_RING_BYTES(bp) (macb_dma_desc_get_size(bp) \
47 * (bp)->rx_ring_size)
48
49#define DEFAULT_TX_RING_SIZE 512 /* must be power of 2 */
50#define MIN_TX_RING_SIZE 64
51#define MAX_TX_RING_SIZE 4096
52#define TX_RING_BYTES(bp) (macb_dma_desc_get_size(bp) \
53 * (bp)->tx_ring_size)
54
55/* level of occupied TX descriptors under which we wake up TX process */
56#define MACB_TX_WAKEUP_THRESH(bp) (3 * (bp)->tx_ring_size / 4)
57
58#define MACB_RX_INT_FLAGS (MACB_BIT(RCOMP) | MACB_BIT(RXUBR) \
59 | MACB_BIT(ISR_ROVR))
60#define MACB_TX_ERR_FLAGS (MACB_BIT(ISR_TUND) \
61 | MACB_BIT(ISR_RLE) \
62 | MACB_BIT(TXERR))
63#define MACB_TX_INT_FLAGS (MACB_TX_ERR_FLAGS | MACB_BIT(TCOMP))
64
65/* Max length of transmit frame must be a multiple of 8 bytes */
66#define MACB_TX_LEN_ALIGN 8
67#define MACB_MAX_TX_LEN ((unsigned int)((1 << MACB_TX_FRMLEN_SIZE) - 1) & ~((unsigned int)(MACB_TX_LEN_ALIGN - 1)))
68#define GEM_MAX_TX_LEN ((unsigned int)((1 << GEM_TX_FRMLEN_SIZE) - 1) & ~((unsigned int)(MACB_TX_LEN_ALIGN - 1)))
69
70#define GEM_MTU_MIN_SIZE ETH_MIN_MTU
71#define MACB_NETIF_LSO NETIF_F_TSO
72
73#define MACB_WOL_HAS_MAGIC_PACKET (0x1 << 0)
74#define MACB_WOL_ENABLED (0x1 << 1)
75
76/* Graceful stop timeouts in us. We should allow up to
77 * 1 frame time (10 Mbits/s, full-duplex, ignoring collisions)
78 */
79#define MACB_HALT_TIMEOUT 1230
80
81/* DMA buffer descriptor might be different size
82 * depends on hardware configuration:
83 *
84 * 1. dma address width 32 bits:
85 * word 1: 32 bit address of Data Buffer
86 * word 2: control
87 *
88 * 2. dma address width 64 bits:
89 * word 1: 32 bit address of Data Buffer
90 * word 2: control
91 * word 3: upper 32 bit address of Data Buffer
92 * word 4: unused
93 *
94 * 3. dma address width 32 bits with hardware timestamping:
95 * word 1: 32 bit address of Data Buffer
96 * word 2: control
97 * word 3: timestamp word 1
98 * word 4: timestamp word 2
99 *
100 * 4. dma address width 64 bits with hardware timestamping:
101 * word 1: 32 bit address of Data Buffer
102 * word 2: control
103 * word 3: upper 32 bit address of Data Buffer
104 * word 4: unused
105 * word 5: timestamp word 1
106 * word 6: timestamp word 2
107 */
108static unsigned int macb_dma_desc_get_size(struct macb *bp)
109{
110#ifdef MACB_EXT_DESC
111 unsigned int desc_size;
112
113 switch (bp->hw_dma_cap) {
114 case HW_DMA_CAP_64B:
115 desc_size = sizeof(struct macb_dma_desc)
116 + sizeof(struct macb_dma_desc_64);
117 break;
118 case HW_DMA_CAP_PTP:
119 desc_size = sizeof(struct macb_dma_desc)
120 + sizeof(struct macb_dma_desc_ptp);
121 break;
122 case HW_DMA_CAP_64B_PTP:
123 desc_size = sizeof(struct macb_dma_desc)
124 + sizeof(struct macb_dma_desc_64)
125 + sizeof(struct macb_dma_desc_ptp);
126 break;
127 default:
128 desc_size = sizeof(struct macb_dma_desc);
129 }
130 return desc_size;
131#endif
132 return sizeof(struct macb_dma_desc);
133}
134
135static unsigned int macb_adj_dma_desc_idx(struct macb *bp, unsigned int desc_idx)
136{
137#ifdef MACB_EXT_DESC
138 switch (bp->hw_dma_cap) {
139 case HW_DMA_CAP_64B:
140 case HW_DMA_CAP_PTP:
141 desc_idx <<= 1;
142 break;
143 case HW_DMA_CAP_64B_PTP:
144 desc_idx *= 3;
145 break;
146 default:
147 break;
148 }
149#endif
150 return desc_idx;
151}
152
153#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
154static struct macb_dma_desc_64 *macb_64b_desc(struct macb *bp, struct macb_dma_desc *desc)
155{
156 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
157 return (struct macb_dma_desc_64 *)((void *)desc + sizeof(struct macb_dma_desc));
158 return NULL;
159}
160#endif
161
162/* Ring buffer accessors */
163static unsigned int macb_tx_ring_wrap(struct macb *bp, unsigned int index)
164{
165 return index & (bp->tx_ring_size - 1);
166}
167
168static struct macb_dma_desc *macb_tx_desc(struct macb_queue *queue,
169 unsigned int index)
170{
171 index = macb_tx_ring_wrap(queue->bp, index);
172 index = macb_adj_dma_desc_idx(queue->bp, index);
173 return &queue->tx_ring[index];
174}
175
176static struct macb_tx_skb *macb_tx_skb(struct macb_queue *queue,
177 unsigned int index)
178{
179 return &queue->tx_skb[macb_tx_ring_wrap(queue->bp, index)];
180}
181
182static dma_addr_t macb_tx_dma(struct macb_queue *queue, unsigned int index)
183{
184 dma_addr_t offset;
185
186 offset = macb_tx_ring_wrap(queue->bp, index) *
187 macb_dma_desc_get_size(queue->bp);
188
189 return queue->tx_ring_dma + offset;
190}
191
192static unsigned int macb_rx_ring_wrap(struct macb *bp, unsigned int index)
193{
194 return index & (bp->rx_ring_size - 1);
195}
196
197static struct macb_dma_desc *macb_rx_desc(struct macb_queue *queue, unsigned int index)
198{
199 index = macb_rx_ring_wrap(queue->bp, index);
200 index = macb_adj_dma_desc_idx(queue->bp, index);
201 return &queue->rx_ring[index];
202}
203
204static void *macb_rx_buffer(struct macb_queue *queue, unsigned int index)
205{
206 return queue->rx_buffers + queue->bp->rx_buffer_size *
207 macb_rx_ring_wrap(queue->bp, index);
208}
209
210/* I/O accessors */
211static u32 hw_readl_native(struct macb *bp, int offset)
212{
213 return __raw_readl(bp->regs + offset);
214}
215
216static void hw_writel_native(struct macb *bp, int offset, u32 value)
217{
218 __raw_writel(value, bp->regs + offset);
219}
220
221static u32 hw_readl(struct macb *bp, int offset)
222{
223 return readl_relaxed(bp->regs + offset);
224}
225
226static void hw_writel(struct macb *bp, int offset, u32 value)
227{
228 writel_relaxed(value, bp->regs + offset);
229}
230
231/* Find the CPU endianness by using the loopback bit of NCR register. When the
232 * CPU is in big endian we need to program swapped mode for management
233 * descriptor access.
234 */
235static bool hw_is_native_io(void __iomem *addr)
236{
237 u32 value = MACB_BIT(LLB);
238
239 __raw_writel(value, addr + MACB_NCR);
240 value = __raw_readl(addr + MACB_NCR);
241
242 /* Write 0 back to disable everything */
243 __raw_writel(0, addr + MACB_NCR);
244
245 return value == MACB_BIT(LLB);
246}
247
248static bool hw_is_gem(void __iomem *addr, bool native_io)
249{
250 u32 id;
251
252 if (native_io)
253 id = __raw_readl(addr + MACB_MID);
254 else
255 id = readl_relaxed(addr + MACB_MID);
256
257 return MACB_BFEXT(IDNUM, id) >= 0x2;
258}
259
260static void macb_set_hwaddr(struct macb *bp)
261{
262 u32 bottom;
263 u16 top;
264
265 bottom = cpu_to_le32(*((u32 *)bp->dev->dev_addr));
266 macb_or_gem_writel(bp, SA1B, bottom);
267 top = cpu_to_le16(*((u16 *)(bp->dev->dev_addr + 4)));
268 macb_or_gem_writel(bp, SA1T, top);
269
270 /* Clear unused address register sets */
271 macb_or_gem_writel(bp, SA2B, 0);
272 macb_or_gem_writel(bp, SA2T, 0);
273 macb_or_gem_writel(bp, SA3B, 0);
274 macb_or_gem_writel(bp, SA3T, 0);
275 macb_or_gem_writel(bp, SA4B, 0);
276 macb_or_gem_writel(bp, SA4T, 0);
277}
278
279static void macb_get_hwaddr(struct macb *bp)
280{
281 struct macb_platform_data *pdata;
282 u32 bottom;
283 u16 top;
284 u8 addr[6];
285 int i;
286
287 pdata = dev_get_platdata(&bp->pdev->dev);
288
289 /* Check all 4 address register for valid address */
290 for (i = 0; i < 4; i++) {
291 bottom = macb_or_gem_readl(bp, SA1B + i * 8);
292 top = macb_or_gem_readl(bp, SA1T + i * 8);
293
294 if (pdata && pdata->rev_eth_addr) {
295 addr[5] = bottom & 0xff;
296 addr[4] = (bottom >> 8) & 0xff;
297 addr[3] = (bottom >> 16) & 0xff;
298 addr[2] = (bottom >> 24) & 0xff;
299 addr[1] = top & 0xff;
300 addr[0] = (top & 0xff00) >> 8;
301 } else {
302 addr[0] = bottom & 0xff;
303 addr[1] = (bottom >> 8) & 0xff;
304 addr[2] = (bottom >> 16) & 0xff;
305 addr[3] = (bottom >> 24) & 0xff;
306 addr[4] = top & 0xff;
307 addr[5] = (top >> 8) & 0xff;
308 }
309
310 if (is_valid_ether_addr(addr)) {
311 memcpy(bp->dev->dev_addr, addr, sizeof(addr));
312 return;
313 }
314 }
315
316 dev_info(&bp->pdev->dev, "invalid hw address, using random\n");
317 eth_hw_addr_random(bp->dev);
318}
319
320static int macb_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
321{
322 struct macb *bp = bus->priv;
323 int value;
324
325 macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_SOF)
326 | MACB_BF(RW, MACB_MAN_READ)
327 | MACB_BF(PHYA, mii_id)
328 | MACB_BF(REGA, regnum)
329 | MACB_BF(CODE, MACB_MAN_CODE)));
330
331 /* wait for end of transfer */
332 while (!MACB_BFEXT(IDLE, macb_readl(bp, NSR)))
333 cpu_relax();
334
335 value = MACB_BFEXT(DATA, macb_readl(bp, MAN));
336
337 return value;
338}
339
340static int macb_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
341 u16 value)
342{
343 struct macb *bp = bus->priv;
344
345 macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_SOF)
346 | MACB_BF(RW, MACB_MAN_WRITE)
347 | MACB_BF(PHYA, mii_id)
348 | MACB_BF(REGA, regnum)
349 | MACB_BF(CODE, MACB_MAN_CODE)
350 | MACB_BF(DATA, value)));
351
352 /* wait for end of transfer */
353 while (!MACB_BFEXT(IDLE, macb_readl(bp, NSR)))
354 cpu_relax();
355
356 return 0;
357}
358
359/**
360 * macb_set_tx_clk() - Set a clock to a new frequency
361 * @clk Pointer to the clock to change
362 * @rate New frequency in Hz
363 * @dev Pointer to the struct net_device
364 */
365static void macb_set_tx_clk(struct clk *clk, int speed, struct net_device *dev)
366{
367 long ferr, rate, rate_rounded;
368
369 if (!clk)
370 return;
371
372 switch (speed) {
373 case SPEED_10:
374 rate = 2500000;
375 break;
376 case SPEED_100:
377 rate = 25000000;
378 break;
379 case SPEED_1000:
380 rate = 125000000;
381 break;
382 default:
383 return;
384 }
385
386 rate_rounded = clk_round_rate(clk, rate);
387 if (rate_rounded < 0)
388 return;
389
390 /* RGMII allows 50 ppm frequency error. Test and warn if this limit
391 * is not satisfied.
392 */
393 ferr = abs(rate_rounded - rate);
394 ferr = DIV_ROUND_UP(ferr, rate / 100000);
395 if (ferr > 5)
396 netdev_warn(dev, "unable to generate target frequency: %ld Hz\n",
397 rate);
398
399 if (clk_set_rate(clk, rate_rounded))
400 netdev_err(dev, "adjusting tx_clk failed.\n");
401}
402
403static void macb_handle_link_change(struct net_device *dev)
404{
405 struct macb *bp = netdev_priv(dev);
406 struct phy_device *phydev = dev->phydev;
407 unsigned long flags;
408 int status_change = 0;
409
410 spin_lock_irqsave(&bp->lock, flags);
411
412 if (phydev->link) {
413 if ((bp->speed != phydev->speed) ||
414 (bp->duplex != phydev->duplex)) {
415 u32 reg;
416
417 reg = macb_readl(bp, NCFGR);
418 reg &= ~(MACB_BIT(SPD) | MACB_BIT(FD));
419 if (macb_is_gem(bp))
420 reg &= ~GEM_BIT(GBE);
421
422 if (phydev->duplex)
423 reg |= MACB_BIT(FD);
424 if (phydev->speed == SPEED_100)
425 reg |= MACB_BIT(SPD);
426 if (phydev->speed == SPEED_1000 &&
427 bp->caps & MACB_CAPS_GIGABIT_MODE_AVAILABLE)
428 reg |= GEM_BIT(GBE);
429
430 macb_or_gem_writel(bp, NCFGR, reg);
431
432 bp->speed = phydev->speed;
433 bp->duplex = phydev->duplex;
434 status_change = 1;
435 }
436 }
437
438 if (phydev->link != bp->link) {
439 if (!phydev->link) {
440 bp->speed = 0;
441 bp->duplex = -1;
442 }
443 bp->link = phydev->link;
444
445 status_change = 1;
446 }
447
448 spin_unlock_irqrestore(&bp->lock, flags);
449
450 if (status_change) {
451 if (phydev->link) {
452 /* Update the TX clock rate if and only if the link is
453 * up and there has been a link change.
454 */
455 macb_set_tx_clk(bp->tx_clk, phydev->speed, dev);
456
457 netif_carrier_on(dev);
458 netdev_info(dev, "link up (%d/%s)\n",
459 phydev->speed,
460 phydev->duplex == DUPLEX_FULL ?
461 "Full" : "Half");
462 } else {
463 netif_carrier_off(dev);
464 netdev_info(dev, "link down\n");
465 }
466 }
467}
468
469/* based on au1000_eth. c*/
470static int macb_mii_probe(struct net_device *dev)
471{
472 struct macb *bp = netdev_priv(dev);
473 struct macb_platform_data *pdata;
474 struct phy_device *phydev;
475 struct device_node *np;
476 int phy_irq, ret, i;
477
478 pdata = dev_get_platdata(&bp->pdev->dev);
479 np = bp->pdev->dev.of_node;
480 ret = 0;
481
482 if (np) {
483 if (of_phy_is_fixed_link(np)) {
484 if (of_phy_register_fixed_link(np) < 0) {
485 dev_err(&bp->pdev->dev,
486 "broken fixed-link specification\n");
487 return -ENODEV;
488 }
489 bp->phy_node = of_node_get(np);
490 } else {
491 bp->phy_node = of_parse_phandle(np, "phy-handle", 0);
492 /* fallback to standard phy registration if no
493 * phy-handle was found nor any phy found during
494 * dt phy registration
495 */
496 if (!bp->phy_node && !phy_find_first(bp->mii_bus)) {
497 for (i = 0; i < PHY_MAX_ADDR; i++) {
498 struct phy_device *phydev;
499
500 phydev = mdiobus_scan(bp->mii_bus, i);
501 if (IS_ERR(phydev) &&
502 PTR_ERR(phydev) != -ENODEV) {
503 ret = PTR_ERR(phydev);
504 break;
505 }
506 }
507
508 if (ret)
509 return -ENODEV;
510 }
511 }
512 }
513
514 if (bp->phy_node) {
515 phydev = of_phy_connect(dev, bp->phy_node,
516 &macb_handle_link_change, 0,
517 bp->phy_interface);
518 if (!phydev)
519 return -ENODEV;
520 } else {
521 phydev = phy_find_first(bp->mii_bus);
522 if (!phydev) {
523 netdev_err(dev, "no PHY found\n");
524 return -ENXIO;
525 }
526
527 if (pdata) {
528 if (gpio_is_valid(pdata->phy_irq_pin)) {
529 ret = devm_gpio_request(&bp->pdev->dev,
530 pdata->phy_irq_pin, "phy int");
531 if (!ret) {
532 phy_irq = gpio_to_irq(pdata->phy_irq_pin);
533 phydev->irq = (phy_irq < 0) ? PHY_POLL : phy_irq;
534 }
535 } else {
536 phydev->irq = PHY_POLL;
537 }
538 }
539
540 /* attach the mac to the phy */
541 ret = phy_connect_direct(dev, phydev, &macb_handle_link_change,
542 bp->phy_interface);
543 if (ret) {
544 netdev_err(dev, "Could not attach to PHY\n");
545 return ret;
546 }
547 }
548
549 /* mask with MAC supported features */
550 if (macb_is_gem(bp) && bp->caps & MACB_CAPS_GIGABIT_MODE_AVAILABLE)
551 phydev->supported &= PHY_GBIT_FEATURES;
552 else
553 phydev->supported &= PHY_BASIC_FEATURES;
554
555 if (bp->caps & MACB_CAPS_NO_GIGABIT_HALF)
556 phydev->supported &= ~SUPPORTED_1000baseT_Half;
557
558 phydev->advertising = phydev->supported;
559
560 bp->link = 0;
561 bp->speed = 0;
562 bp->duplex = -1;
563
564 return 0;
565}
566
567static int macb_mii_init(struct macb *bp)
568{
569 struct macb_platform_data *pdata;
570 struct device_node *np;
571 int err;
572
573 /* Enable management port */
574 macb_writel(bp, NCR, MACB_BIT(MPE));
575
576 bp->mii_bus = mdiobus_alloc();
577 if (!bp->mii_bus) {
578 err = -ENOMEM;
579 goto err_out;
580 }
581
582 bp->mii_bus->name = "MACB_mii_bus";
583 bp->mii_bus->read = &macb_mdio_read;
584 bp->mii_bus->write = &macb_mdio_write;
585 snprintf(bp->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
586 bp->pdev->name, bp->pdev->id);
587 bp->mii_bus->priv = bp;
588 bp->mii_bus->parent = &bp->pdev->dev;
589 pdata = dev_get_platdata(&bp->pdev->dev);
590
591 dev_set_drvdata(&bp->dev->dev, bp->mii_bus);
592
593 np = bp->pdev->dev.of_node;
594
595 if (np) {
596 err = of_mdiobus_register(bp->mii_bus, np);
597 } else {
598 if (pdata)
599 bp->mii_bus->phy_mask = pdata->phy_mask;
600
601 err = mdiobus_register(bp->mii_bus);
602 }
603
604 if (err)
605 goto err_out_free_mdiobus;
606
607 err = macb_mii_probe(bp->dev);
608 if (err)
609 goto err_out_unregister_bus;
610
611 return 0;
612
613err_out_unregister_bus:
614 mdiobus_unregister(bp->mii_bus);
615 if (np && of_phy_is_fixed_link(np))
616 of_phy_deregister_fixed_link(np);
617err_out_free_mdiobus:
618 of_node_put(bp->phy_node);
619 mdiobus_free(bp->mii_bus);
620err_out:
621 return err;
622}
623
624static void macb_update_stats(struct macb *bp)
625{
626 u32 *p = &bp->hw_stats.macb.rx_pause_frames;
627 u32 *end = &bp->hw_stats.macb.tx_pause_frames + 1;
628 int offset = MACB_PFR;
629
630 WARN_ON((unsigned long)(end - p - 1) != (MACB_TPF - MACB_PFR) / 4);
631
632 for (; p < end; p++, offset += 4)
633 *p += bp->macb_reg_readl(bp, offset);
634}
635
636static int macb_halt_tx(struct macb *bp)
637{
638 unsigned long halt_time, timeout;
639 u32 status;
640
641 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(THALT));
642
643 timeout = jiffies + usecs_to_jiffies(MACB_HALT_TIMEOUT);
644 do {
645 halt_time = jiffies;
646 status = macb_readl(bp, TSR);
647 if (!(status & MACB_BIT(TGO)))
648 return 0;
649
650 usleep_range(10, 250);
651 } while (time_before(halt_time, timeout));
652
653 return -ETIMEDOUT;
654}
655
656static void macb_tx_unmap(struct macb *bp, struct macb_tx_skb *tx_skb)
657{
658 if (tx_skb->mapping) {
659 if (tx_skb->mapped_as_page)
660 dma_unmap_page(&bp->pdev->dev, tx_skb->mapping,
661 tx_skb->size, DMA_TO_DEVICE);
662 else
663 dma_unmap_single(&bp->pdev->dev, tx_skb->mapping,
664 tx_skb->size, DMA_TO_DEVICE);
665 tx_skb->mapping = 0;
666 }
667
668 if (tx_skb->skb) {
669 dev_kfree_skb_any(tx_skb->skb);
670 tx_skb->skb = NULL;
671 }
672}
673
674static void macb_set_addr(struct macb *bp, struct macb_dma_desc *desc, dma_addr_t addr)
675{
676#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
677 struct macb_dma_desc_64 *desc_64;
678
679 if (bp->hw_dma_cap & HW_DMA_CAP_64B) {
680 desc_64 = macb_64b_desc(bp, desc);
681 desc_64->addrh = upper_32_bits(addr);
682 }
683#endif
684 desc->addr = lower_32_bits(addr);
685}
686
687static dma_addr_t macb_get_addr(struct macb *bp, struct macb_dma_desc *desc)
688{
689 dma_addr_t addr = 0;
690#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
691 struct macb_dma_desc_64 *desc_64;
692
693 if (bp->hw_dma_cap & HW_DMA_CAP_64B) {
694 desc_64 = macb_64b_desc(bp, desc);
695 addr = ((u64)(desc_64->addrh) << 32);
696 }
697#endif
698 addr |= MACB_BF(RX_WADDR, MACB_BFEXT(RX_WADDR, desc->addr));
699 return addr;
700}
701
702static void macb_tx_error_task(struct work_struct *work)
703{
704 struct macb_queue *queue = container_of(work, struct macb_queue,
705 tx_error_task);
706 struct macb *bp = queue->bp;
707 struct macb_tx_skb *tx_skb;
708 struct macb_dma_desc *desc;
709 struct sk_buff *skb;
710 unsigned int tail;
711 unsigned long flags;
712
713 netdev_vdbg(bp->dev, "macb_tx_error_task: q = %u, t = %u, h = %u\n",
714 (unsigned int)(queue - bp->queues),
715 queue->tx_tail, queue->tx_head);
716
717 /* Prevent the queue IRQ handlers from running: each of them may call
718 * macb_tx_interrupt(), which in turn may call netif_wake_subqueue().
719 * As explained below, we have to halt the transmission before updating
720 * TBQP registers so we call netif_tx_stop_all_queues() to notify the
721 * network engine about the macb/gem being halted.
722 */
723 spin_lock_irqsave(&bp->lock, flags);
724
725 /* Make sure nobody is trying to queue up new packets */
726 netif_tx_stop_all_queues(bp->dev);
727
728 /* Stop transmission now
729 * (in case we have just queued new packets)
730 * macb/gem must be halted to write TBQP register
731 */
732 if (macb_halt_tx(bp))
733 /* Just complain for now, reinitializing TX path can be good */
734 netdev_err(bp->dev, "BUG: halt tx timed out\n");
735
736 /* Treat frames in TX queue including the ones that caused the error.
737 * Free transmit buffers in upper layer.
738 */
739 for (tail = queue->tx_tail; tail != queue->tx_head; tail++) {
740 u32 ctrl;
741
742 desc = macb_tx_desc(queue, tail);
743 ctrl = desc->ctrl;
744 tx_skb = macb_tx_skb(queue, tail);
745 skb = tx_skb->skb;
746
747 if (ctrl & MACB_BIT(TX_USED)) {
748 /* skb is set for the last buffer of the frame */
749 while (!skb) {
750 macb_tx_unmap(bp, tx_skb);
751 tail++;
752 tx_skb = macb_tx_skb(queue, tail);
753 skb = tx_skb->skb;
754 }
755
756 /* ctrl still refers to the first buffer descriptor
757 * since it's the only one written back by the hardware
758 */
759 if (!(ctrl & MACB_BIT(TX_BUF_EXHAUSTED))) {
760 netdev_vdbg(bp->dev, "txerr skb %u (data %p) TX complete\n",
761 macb_tx_ring_wrap(bp, tail),
762 skb->data);
763 bp->dev->stats.tx_packets++;
764 queue->stats.tx_packets++;
765 bp->dev->stats.tx_bytes += skb->len;
766 queue->stats.tx_bytes += skb->len;
767 }
768 } else {
769 /* "Buffers exhausted mid-frame" errors may only happen
770 * if the driver is buggy, so complain loudly about
771 * those. Statistics are updated by hardware.
772 */
773 if (ctrl & MACB_BIT(TX_BUF_EXHAUSTED))
774 netdev_err(bp->dev,
775 "BUG: TX buffers exhausted mid-frame\n");
776
777 desc->ctrl = ctrl | MACB_BIT(TX_USED);
778 }
779
780 macb_tx_unmap(bp, tx_skb);
781 }
782
783 /* Set end of TX queue */
784 desc = macb_tx_desc(queue, 0);
785 macb_set_addr(bp, desc, 0);
786 desc->ctrl = MACB_BIT(TX_USED);
787
788 /* Make descriptor updates visible to hardware */
789 wmb();
790
791 /* Reinitialize the TX desc queue */
792 queue_writel(queue, TBQP, lower_32_bits(queue->tx_ring_dma));
793#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
794 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
795 queue_writel(queue, TBQPH, upper_32_bits(queue->tx_ring_dma));
796#endif
797 /* Make TX ring reflect state of hardware */
798 queue->tx_head = 0;
799 queue->tx_tail = 0;
800
801 /* Housework before enabling TX IRQ */
802 macb_writel(bp, TSR, macb_readl(bp, TSR));
803 queue_writel(queue, IER, MACB_TX_INT_FLAGS);
804
805 /* Now we are ready to start transmission again */
806 netif_tx_start_all_queues(bp->dev);
807 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TSTART));
808
809 spin_unlock_irqrestore(&bp->lock, flags);
810}
811
812static void macb_tx_interrupt(struct macb_queue *queue)
813{
814 unsigned int tail;
815 unsigned int head;
816 u32 status;
817 struct macb *bp = queue->bp;
818 u16 queue_index = queue - bp->queues;
819
820 status = macb_readl(bp, TSR);
821 macb_writel(bp, TSR, status);
822
823 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
824 queue_writel(queue, ISR, MACB_BIT(TCOMP));
825
826 netdev_vdbg(bp->dev, "macb_tx_interrupt status = 0x%03lx\n",
827 (unsigned long)status);
828
829 head = queue->tx_head;
830 for (tail = queue->tx_tail; tail != head; tail++) {
831 struct macb_tx_skb *tx_skb;
832 struct sk_buff *skb;
833 struct macb_dma_desc *desc;
834 u32 ctrl;
835
836 desc = macb_tx_desc(queue, tail);
837
838 /* Make hw descriptor updates visible to CPU */
839 rmb();
840
841 ctrl = desc->ctrl;
842
843 /* TX_USED bit is only set by hardware on the very first buffer
844 * descriptor of the transmitted frame.
845 */
846 if (!(ctrl & MACB_BIT(TX_USED)))
847 break;
848
849 /* Process all buffers of the current transmitted frame */
850 for (;; tail++) {
851 tx_skb = macb_tx_skb(queue, tail);
852 skb = tx_skb->skb;
853
854 /* First, update TX stats if needed */
855 if (skb) {
856 if (gem_ptp_do_txstamp(queue, skb, desc) == 0) {
857 /* skb now belongs to timestamp buffer
858 * and will be removed later
859 */
860 tx_skb->skb = NULL;
861 }
862 netdev_vdbg(bp->dev, "skb %u (data %p) TX complete\n",
863 macb_tx_ring_wrap(bp, tail),
864 skb->data);
865 bp->dev->stats.tx_packets++;
866 queue->stats.tx_packets++;
867 bp->dev->stats.tx_bytes += skb->len;
868 queue->stats.tx_bytes += skb->len;
869 }
870
871 /* Now we can safely release resources */
872 macb_tx_unmap(bp, tx_skb);
873
874 /* skb is set only for the last buffer of the frame.
875 * WARNING: at this point skb has been freed by
876 * macb_tx_unmap().
877 */
878 if (skb)
879 break;
880 }
881 }
882
883 queue->tx_tail = tail;
884 if (__netif_subqueue_stopped(bp->dev, queue_index) &&
885 CIRC_CNT(queue->tx_head, queue->tx_tail,
886 bp->tx_ring_size) <= MACB_TX_WAKEUP_THRESH(bp))
887 netif_wake_subqueue(bp->dev, queue_index);
888}
889
890static void gem_rx_refill(struct macb_queue *queue)
891{
892 unsigned int entry;
893 struct sk_buff *skb;
894 dma_addr_t paddr;
895 struct macb *bp = queue->bp;
896 struct macb_dma_desc *desc;
897
898 while (CIRC_SPACE(queue->rx_prepared_head, queue->rx_tail,
899 bp->rx_ring_size) > 0) {
900 entry = macb_rx_ring_wrap(bp, queue->rx_prepared_head);
901
902 /* Make hw descriptor updates visible to CPU */
903 rmb();
904
905 queue->rx_prepared_head++;
906 desc = macb_rx_desc(queue, entry);
907
908 if (!queue->rx_skbuff[entry]) {
909 /* allocate sk_buff for this free entry in ring */
910 skb = netdev_alloc_skb(bp->dev, bp->rx_buffer_size);
911 if (unlikely(!skb)) {
912 netdev_err(bp->dev,
913 "Unable to allocate sk_buff\n");
914 break;
915 }
916
917 /* now fill corresponding descriptor entry */
918 paddr = dma_map_single(&bp->pdev->dev, skb->data,
919 bp->rx_buffer_size,
920 DMA_FROM_DEVICE);
921 if (dma_mapping_error(&bp->pdev->dev, paddr)) {
922 dev_kfree_skb(skb);
923 break;
924 }
925
926 queue->rx_skbuff[entry] = skb;
927
928 if (entry == bp->rx_ring_size - 1)
929 paddr |= MACB_BIT(RX_WRAP);
930 macb_set_addr(bp, desc, paddr);
931 desc->ctrl = 0;
932
933 /* properly align Ethernet header */
934 skb_reserve(skb, NET_IP_ALIGN);
935 } else {
936 desc->addr &= ~MACB_BIT(RX_USED);
937 desc->ctrl = 0;
938 }
939 }
940
941 /* Make descriptor updates visible to hardware */
942 wmb();
943
944 netdev_vdbg(bp->dev, "rx ring: queue: %p, prepared head %d, tail %d\n",
945 queue, queue->rx_prepared_head, queue->rx_tail);
946}
947
948/* Mark DMA descriptors from begin up to and not including end as unused */
949static void discard_partial_frame(struct macb_queue *queue, unsigned int begin,
950 unsigned int end)
951{
952 unsigned int frag;
953
954 for (frag = begin; frag != end; frag++) {
955 struct macb_dma_desc *desc = macb_rx_desc(queue, frag);
956
957 desc->addr &= ~MACB_BIT(RX_USED);
958 }
959
960 /* Make descriptor updates visible to hardware */
961 wmb();
962
963 /* When this happens, the hardware stats registers for
964 * whatever caused this is updated, so we don't have to record
965 * anything.
966 */
967}
968
969static int gem_rx(struct macb_queue *queue, int budget)
970{
971 struct macb *bp = queue->bp;
972 unsigned int len;
973 unsigned int entry;
974 struct sk_buff *skb;
975 struct macb_dma_desc *desc;
976 int count = 0;
977
978 while (count < budget) {
979 u32 ctrl;
980 dma_addr_t addr;
981 bool rxused;
982
983 entry = macb_rx_ring_wrap(bp, queue->rx_tail);
984 desc = macb_rx_desc(queue, entry);
985
986 /* Make hw descriptor updates visible to CPU */
987 rmb();
988
989 rxused = (desc->addr & MACB_BIT(RX_USED)) ? true : false;
990 addr = macb_get_addr(bp, desc);
991 ctrl = desc->ctrl;
992
993 if (!rxused)
994 break;
995
996 queue->rx_tail++;
997 count++;
998
999 if (!(ctrl & MACB_BIT(RX_SOF) && ctrl & MACB_BIT(RX_EOF))) {
1000 netdev_err(bp->dev,
1001 "not whole frame pointed by descriptor\n");
1002 bp->dev->stats.rx_dropped++;
1003 queue->stats.rx_dropped++;
1004 break;
1005 }
1006 skb = queue->rx_skbuff[entry];
1007 if (unlikely(!skb)) {
1008 netdev_err(bp->dev,
1009 "inconsistent Rx descriptor chain\n");
1010 bp->dev->stats.rx_dropped++;
1011 queue->stats.rx_dropped++;
1012 break;
1013 }
1014 /* now everything is ready for receiving packet */
1015 queue->rx_skbuff[entry] = NULL;
1016 len = ctrl & bp->rx_frm_len_mask;
1017
1018 netdev_vdbg(bp->dev, "gem_rx %u (len %u)\n", entry, len);
1019
1020 skb_put(skb, len);
1021 dma_unmap_single(&bp->pdev->dev, addr,
1022 bp->rx_buffer_size, DMA_FROM_DEVICE);
1023
1024 skb->protocol = eth_type_trans(skb, bp->dev);
1025 skb_checksum_none_assert(skb);
1026 if (bp->dev->features & NETIF_F_RXCSUM &&
1027 !(bp->dev->flags & IFF_PROMISC) &&
1028 GEM_BFEXT(RX_CSUM, ctrl) & GEM_RX_CSUM_CHECKED_MASK)
1029 skb->ip_summed = CHECKSUM_UNNECESSARY;
1030
1031 bp->dev->stats.rx_packets++;
1032 queue->stats.rx_packets++;
1033 bp->dev->stats.rx_bytes += skb->len;
1034 queue->stats.rx_bytes += skb->len;
1035
1036 gem_ptp_do_rxstamp(bp, skb, desc);
1037
1038#if defined(DEBUG) && defined(VERBOSE_DEBUG)
1039 netdev_vdbg(bp->dev, "received skb of length %u, csum: %08x\n",
1040 skb->len, skb->csum);
1041 print_hex_dump(KERN_DEBUG, " mac: ", DUMP_PREFIX_ADDRESS, 16, 1,
1042 skb_mac_header(skb), 16, true);
1043 print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_ADDRESS, 16, 1,
1044 skb->data, 32, true);
1045#endif
1046
1047 netif_receive_skb(skb);
1048 }
1049
1050 gem_rx_refill(queue);
1051
1052 return count;
1053}
1054
1055static int macb_rx_frame(struct macb_queue *queue, unsigned int first_frag,
1056 unsigned int last_frag)
1057{
1058 unsigned int len;
1059 unsigned int frag;
1060 unsigned int offset;
1061 struct sk_buff *skb;
1062 struct macb_dma_desc *desc;
1063 struct macb *bp = queue->bp;
1064
1065 desc = macb_rx_desc(queue, last_frag);
1066 len = desc->ctrl & bp->rx_frm_len_mask;
1067
1068 netdev_vdbg(bp->dev, "macb_rx_frame frags %u - %u (len %u)\n",
1069 macb_rx_ring_wrap(bp, first_frag),
1070 macb_rx_ring_wrap(bp, last_frag), len);
1071
1072 /* The ethernet header starts NET_IP_ALIGN bytes into the
1073 * first buffer. Since the header is 14 bytes, this makes the
1074 * payload word-aligned.
1075 *
1076 * Instead of calling skb_reserve(NET_IP_ALIGN), we just copy
1077 * the two padding bytes into the skb so that we avoid hitting
1078 * the slowpath in memcpy(), and pull them off afterwards.
1079 */
1080 skb = netdev_alloc_skb(bp->dev, len + NET_IP_ALIGN);
1081 if (!skb) {
1082 bp->dev->stats.rx_dropped++;
1083 for (frag = first_frag; ; frag++) {
1084 desc = macb_rx_desc(queue, frag);
1085 desc->addr &= ~MACB_BIT(RX_USED);
1086 if (frag == last_frag)
1087 break;
1088 }
1089
1090 /* Make descriptor updates visible to hardware */
1091 wmb();
1092
1093 return 1;
1094 }
1095
1096 offset = 0;
1097 len += NET_IP_ALIGN;
1098 skb_checksum_none_assert(skb);
1099 skb_put(skb, len);
1100
1101 for (frag = first_frag; ; frag++) {
1102 unsigned int frag_len = bp->rx_buffer_size;
1103
1104 if (offset + frag_len > len) {
1105 if (unlikely(frag != last_frag)) {
1106 dev_kfree_skb_any(skb);
1107 return -1;
1108 }
1109 frag_len = len - offset;
1110 }
1111 skb_copy_to_linear_data_offset(skb, offset,
1112 macb_rx_buffer(queue, frag),
1113 frag_len);
1114 offset += bp->rx_buffer_size;
1115 desc = macb_rx_desc(queue, frag);
1116 desc->addr &= ~MACB_BIT(RX_USED);
1117
1118 if (frag == last_frag)
1119 break;
1120 }
1121
1122 /* Make descriptor updates visible to hardware */
1123 wmb();
1124
1125 __skb_pull(skb, NET_IP_ALIGN);
1126 skb->protocol = eth_type_trans(skb, bp->dev);
1127
1128 bp->dev->stats.rx_packets++;
1129 bp->dev->stats.rx_bytes += skb->len;
1130 netdev_vdbg(bp->dev, "received skb of length %u, csum: %08x\n",
1131 skb->len, skb->csum);
1132 netif_receive_skb(skb);
1133
1134 return 0;
1135}
1136
1137static inline void macb_init_rx_ring(struct macb_queue *queue)
1138{
1139 struct macb *bp = queue->bp;
1140 dma_addr_t addr;
1141 struct macb_dma_desc *desc = NULL;
1142 int i;
1143
1144 addr = queue->rx_buffers_dma;
1145 for (i = 0; i < bp->rx_ring_size; i++) {
1146 desc = macb_rx_desc(queue, i);
1147 macb_set_addr(bp, desc, addr);
1148 desc->ctrl = 0;
1149 addr += bp->rx_buffer_size;
1150 }
1151 desc->addr |= MACB_BIT(RX_WRAP);
1152 queue->rx_tail = 0;
1153}
1154
1155static int macb_rx(struct macb_queue *queue, int budget)
1156{
1157 struct macb *bp = queue->bp;
1158 bool reset_rx_queue = false;
1159 int received = 0;
1160 unsigned int tail;
1161 int first_frag = -1;
1162
1163 for (tail = queue->rx_tail; budget > 0; tail++) {
1164 struct macb_dma_desc *desc = macb_rx_desc(queue, tail);
1165 u32 ctrl;
1166
1167 /* Make hw descriptor updates visible to CPU */
1168 rmb();
1169
1170 ctrl = desc->ctrl;
1171
1172 if (!(desc->addr & MACB_BIT(RX_USED)))
1173 break;
1174
1175 if (ctrl & MACB_BIT(RX_SOF)) {
1176 if (first_frag != -1)
1177 discard_partial_frame(queue, first_frag, tail);
1178 first_frag = tail;
1179 }
1180
1181 if (ctrl & MACB_BIT(RX_EOF)) {
1182 int dropped;
1183
1184 if (unlikely(first_frag == -1)) {
1185 reset_rx_queue = true;
1186 continue;
1187 }
1188
1189 dropped = macb_rx_frame(queue, first_frag, tail);
1190 first_frag = -1;
1191 if (unlikely(dropped < 0)) {
1192 reset_rx_queue = true;
1193 continue;
1194 }
1195 if (!dropped) {
1196 received++;
1197 budget--;
1198 }
1199 }
1200 }
1201
1202 if (unlikely(reset_rx_queue)) {
1203 unsigned long flags;
1204 u32 ctrl;
1205
1206 netdev_err(bp->dev, "RX queue corruption: reset it\n");
1207
1208 spin_lock_irqsave(&bp->lock, flags);
1209
1210 ctrl = macb_readl(bp, NCR);
1211 macb_writel(bp, NCR, ctrl & ~MACB_BIT(RE));
1212
1213 macb_init_rx_ring(queue);
1214 queue_writel(queue, RBQP, queue->rx_ring_dma);
1215
1216 macb_writel(bp, NCR, ctrl | MACB_BIT(RE));
1217
1218 spin_unlock_irqrestore(&bp->lock, flags);
1219 return received;
1220 }
1221
1222 if (first_frag != -1)
1223 queue->rx_tail = first_frag;
1224 else
1225 queue->rx_tail = tail;
1226
1227 return received;
1228}
1229
1230static int macb_poll(struct napi_struct *napi, int budget)
1231{
1232 struct macb_queue *queue = container_of(napi, struct macb_queue, napi);
1233 struct macb *bp = queue->bp;
1234 int work_done;
1235 u32 status;
1236
1237 status = macb_readl(bp, RSR);
1238 macb_writel(bp, RSR, status);
1239
1240 netdev_vdbg(bp->dev, "poll: status = %08lx, budget = %d\n",
1241 (unsigned long)status, budget);
1242
1243 work_done = bp->macbgem_ops.mog_rx(queue, budget);
1244 if (work_done < budget) {
1245 napi_complete_done(napi, work_done);
1246
1247 /* Packets received while interrupts were disabled */
1248 status = macb_readl(bp, RSR);
1249 if (status) {
1250 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1251 queue_writel(queue, ISR, MACB_BIT(RCOMP));
1252 napi_reschedule(napi);
1253 } else {
1254 queue_writel(queue, IER, MACB_RX_INT_FLAGS);
1255 }
1256 }
1257
1258 /* TODO: Handle errors */
1259
1260 return work_done;
1261}
1262
1263static void macb_hresp_error_task(unsigned long data)
1264{
1265 struct macb *bp = (struct macb *)data;
1266 struct net_device *dev = bp->dev;
1267 struct macb_queue *queue = bp->queues;
1268 unsigned int q;
1269 u32 ctrl;
1270
1271 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1272 queue_writel(queue, IDR, MACB_RX_INT_FLAGS |
1273 MACB_TX_INT_FLAGS |
1274 MACB_BIT(HRESP));
1275 }
1276 ctrl = macb_readl(bp, NCR);
1277 ctrl &= ~(MACB_BIT(RE) | MACB_BIT(TE));
1278 macb_writel(bp, NCR, ctrl);
1279
1280 netif_tx_stop_all_queues(dev);
1281 netif_carrier_off(dev);
1282
1283 bp->macbgem_ops.mog_init_rings(bp);
1284
1285 /* Initialize TX and RX buffers */
1286 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1287 queue_writel(queue, RBQP, lower_32_bits(queue->rx_ring_dma));
1288#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
1289 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
1290 queue_writel(queue, RBQPH,
1291 upper_32_bits(queue->rx_ring_dma));
1292#endif
1293 queue_writel(queue, TBQP, lower_32_bits(queue->tx_ring_dma));
1294#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
1295 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
1296 queue_writel(queue, TBQPH,
1297 upper_32_bits(queue->tx_ring_dma));
1298#endif
1299
1300 /* Enable interrupts */
1301 queue_writel(queue, IER,
1302 MACB_RX_INT_FLAGS |
1303 MACB_TX_INT_FLAGS |
1304 MACB_BIT(HRESP));
1305 }
1306
1307 ctrl |= MACB_BIT(RE) | MACB_BIT(TE);
1308 macb_writel(bp, NCR, ctrl);
1309
1310 netif_carrier_on(dev);
1311 netif_tx_start_all_queues(dev);
1312}
1313
1314static irqreturn_t macb_interrupt(int irq, void *dev_id)
1315{
1316 struct macb_queue *queue = dev_id;
1317 struct macb *bp = queue->bp;
1318 struct net_device *dev = bp->dev;
1319 u32 status, ctrl;
1320
1321 status = queue_readl(queue, ISR);
1322
1323 if (unlikely(!status))
1324 return IRQ_NONE;
1325
1326 spin_lock(&bp->lock);
1327
1328 while (status) {
1329 /* close possible race with dev_close */
1330 if (unlikely(!netif_running(dev))) {
1331 queue_writel(queue, IDR, -1);
1332 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1333 queue_writel(queue, ISR, -1);
1334 break;
1335 }
1336
1337 netdev_vdbg(bp->dev, "queue = %u, isr = 0x%08lx\n",
1338 (unsigned int)(queue - bp->queues),
1339 (unsigned long)status);
1340
1341 if (status & MACB_RX_INT_FLAGS) {
1342 /* There's no point taking any more interrupts
1343 * until we have processed the buffers. The
1344 * scheduling call may fail if the poll routine
1345 * is already scheduled, so disable interrupts
1346 * now.
1347 */
1348 queue_writel(queue, IDR, MACB_RX_INT_FLAGS);
1349 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1350 queue_writel(queue, ISR, MACB_BIT(RCOMP));
1351
1352 if (napi_schedule_prep(&queue->napi)) {
1353 netdev_vdbg(bp->dev, "scheduling RX softirq\n");
1354 __napi_schedule(&queue->napi);
1355 }
1356 }
1357
1358 if (unlikely(status & (MACB_TX_ERR_FLAGS))) {
1359 queue_writel(queue, IDR, MACB_TX_INT_FLAGS);
1360 schedule_work(&queue->tx_error_task);
1361
1362 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1363 queue_writel(queue, ISR, MACB_TX_ERR_FLAGS);
1364
1365 break;
1366 }
1367
1368 if (status & MACB_BIT(TCOMP))
1369 macb_tx_interrupt(queue);
1370
1371 /* Link change detection isn't possible with RMII, so we'll
1372 * add that if/when we get our hands on a full-blown MII PHY.
1373 */
1374
1375 /* There is a hardware issue under heavy load where DMA can
1376 * stop, this causes endless "used buffer descriptor read"
1377 * interrupts but it can be cleared by re-enabling RX. See
1378 * the at91 manual, section 41.3.1 or the Zynq manual
1379 * section 16.7.4 for details.
1380 */
1381 if (status & MACB_BIT(RXUBR)) {
1382 ctrl = macb_readl(bp, NCR);
1383 macb_writel(bp, NCR, ctrl & ~MACB_BIT(RE));
1384 wmb();
1385 macb_writel(bp, NCR, ctrl | MACB_BIT(RE));
1386
1387 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1388 queue_writel(queue, ISR, MACB_BIT(RXUBR));
1389 }
1390
1391 if (status & MACB_BIT(ISR_ROVR)) {
1392 /* We missed at least one packet */
1393 if (macb_is_gem(bp))
1394 bp->hw_stats.gem.rx_overruns++;
1395 else
1396 bp->hw_stats.macb.rx_overruns++;
1397
1398 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1399 queue_writel(queue, ISR, MACB_BIT(ISR_ROVR));
1400 }
1401
1402 if (status & MACB_BIT(HRESP)) {
1403 tasklet_schedule(&bp->hresp_err_tasklet);
1404 netdev_err(dev, "DMA bus error: HRESP not OK\n");
1405
1406 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1407 queue_writel(queue, ISR, MACB_BIT(HRESP));
1408 }
1409 status = queue_readl(queue, ISR);
1410 }
1411
1412 spin_unlock(&bp->lock);
1413
1414 return IRQ_HANDLED;
1415}
1416
1417#ifdef CONFIG_NET_POLL_CONTROLLER
1418/* Polling receive - used by netconsole and other diagnostic tools
1419 * to allow network i/o with interrupts disabled.
1420 */
1421static void macb_poll_controller(struct net_device *dev)
1422{
1423 struct macb *bp = netdev_priv(dev);
1424 struct macb_queue *queue;
1425 unsigned long flags;
1426 unsigned int q;
1427
1428 local_irq_save(flags);
1429 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
1430 macb_interrupt(dev->irq, queue);
1431 local_irq_restore(flags);
1432}
1433#endif
1434
1435static unsigned int macb_tx_map(struct macb *bp,
1436 struct macb_queue *queue,
1437 struct sk_buff *skb,
1438 unsigned int hdrlen)
1439{
1440 dma_addr_t mapping;
1441 unsigned int len, entry, i, tx_head = queue->tx_head;
1442 struct macb_tx_skb *tx_skb = NULL;
1443 struct macb_dma_desc *desc;
1444 unsigned int offset, size, count = 0;
1445 unsigned int f, nr_frags = skb_shinfo(skb)->nr_frags;
1446 unsigned int eof = 1, mss_mfs = 0;
1447 u32 ctrl, lso_ctrl = 0, seq_ctrl = 0;
1448
1449 /* LSO */
1450 if (skb_shinfo(skb)->gso_size != 0) {
1451 if (ip_hdr(skb)->protocol == IPPROTO_UDP)
1452 /* UDP - UFO */
1453 lso_ctrl = MACB_LSO_UFO_ENABLE;
1454 else
1455 /* TCP - TSO */
1456 lso_ctrl = MACB_LSO_TSO_ENABLE;
1457 }
1458
1459 /* First, map non-paged data */
1460 len = skb_headlen(skb);
1461
1462 /* first buffer length */
1463 size = hdrlen;
1464
1465 offset = 0;
1466 while (len) {
1467 entry = macb_tx_ring_wrap(bp, tx_head);
1468 tx_skb = &queue->tx_skb[entry];
1469
1470 mapping = dma_map_single(&bp->pdev->dev,
1471 skb->data + offset,
1472 size, DMA_TO_DEVICE);
1473 if (dma_mapping_error(&bp->pdev->dev, mapping))
1474 goto dma_error;
1475
1476 /* Save info to properly release resources */
1477 tx_skb->skb = NULL;
1478 tx_skb->mapping = mapping;
1479 tx_skb->size = size;
1480 tx_skb->mapped_as_page = false;
1481
1482 len -= size;
1483 offset += size;
1484 count++;
1485 tx_head++;
1486
1487 size = min(len, bp->max_tx_length);
1488 }
1489
1490 /* Then, map paged data from fragments */
1491 for (f = 0; f < nr_frags; f++) {
1492 const skb_frag_t *frag = &skb_shinfo(skb)->frags[f];
1493
1494 len = skb_frag_size(frag);
1495 offset = 0;
1496 while (len) {
1497 size = min(len, bp->max_tx_length);
1498 entry = macb_tx_ring_wrap(bp, tx_head);
1499 tx_skb = &queue->tx_skb[entry];
1500
1501 mapping = skb_frag_dma_map(&bp->pdev->dev, frag,
1502 offset, size, DMA_TO_DEVICE);
1503 if (dma_mapping_error(&bp->pdev->dev, mapping))
1504 goto dma_error;
1505
1506 /* Save info to properly release resources */
1507 tx_skb->skb = NULL;
1508 tx_skb->mapping = mapping;
1509 tx_skb->size = size;
1510 tx_skb->mapped_as_page = true;
1511
1512 len -= size;
1513 offset += size;
1514 count++;
1515 tx_head++;
1516 }
1517 }
1518
1519 /* Should never happen */
1520 if (unlikely(!tx_skb)) {
1521 netdev_err(bp->dev, "BUG! empty skb!\n");
1522 return 0;
1523 }
1524
1525 /* This is the last buffer of the frame: save socket buffer */
1526 tx_skb->skb = skb;
1527
1528 /* Update TX ring: update buffer descriptors in reverse order
1529 * to avoid race condition
1530 */
1531
1532 /* Set 'TX_USED' bit in buffer descriptor at tx_head position
1533 * to set the end of TX queue
1534 */
1535 i = tx_head;
1536 entry = macb_tx_ring_wrap(bp, i);
1537 ctrl = MACB_BIT(TX_USED);
1538 desc = macb_tx_desc(queue, entry);
1539 desc->ctrl = ctrl;
1540
1541 if (lso_ctrl) {
1542 if (lso_ctrl == MACB_LSO_UFO_ENABLE)
1543 /* include header and FCS in value given to h/w */
1544 mss_mfs = skb_shinfo(skb)->gso_size +
1545 skb_transport_offset(skb) +
1546 ETH_FCS_LEN;
1547 else /* TSO */ {
1548 mss_mfs = skb_shinfo(skb)->gso_size;
1549 /* TCP Sequence Number Source Select
1550 * can be set only for TSO
1551 */
1552 seq_ctrl = 0;
1553 }
1554 }
1555
1556 do {
1557 i--;
1558 entry = macb_tx_ring_wrap(bp, i);
1559 tx_skb = &queue->tx_skb[entry];
1560 desc = macb_tx_desc(queue, entry);
1561
1562 ctrl = (u32)tx_skb->size;
1563 if (eof) {
1564 ctrl |= MACB_BIT(TX_LAST);
1565 eof = 0;
1566 }
1567 if (unlikely(entry == (bp->tx_ring_size - 1)))
1568 ctrl |= MACB_BIT(TX_WRAP);
1569
1570 /* First descriptor is header descriptor */
1571 if (i == queue->tx_head) {
1572 ctrl |= MACB_BF(TX_LSO, lso_ctrl);
1573 ctrl |= MACB_BF(TX_TCP_SEQ_SRC, seq_ctrl);
1574 } else
1575 /* Only set MSS/MFS on payload descriptors
1576 * (second or later descriptor)
1577 */
1578 ctrl |= MACB_BF(MSS_MFS, mss_mfs);
1579
1580 /* Set TX buffer descriptor */
1581 macb_set_addr(bp, desc, tx_skb->mapping);
1582 /* desc->addr must be visible to hardware before clearing
1583 * 'TX_USED' bit in desc->ctrl.
1584 */
1585 wmb();
1586 desc->ctrl = ctrl;
1587 } while (i != queue->tx_head);
1588
1589 queue->tx_head = tx_head;
1590
1591 return count;
1592
1593dma_error:
1594 netdev_err(bp->dev, "TX DMA map failed\n");
1595
1596 for (i = queue->tx_head; i != tx_head; i++) {
1597 tx_skb = macb_tx_skb(queue, i);
1598
1599 macb_tx_unmap(bp, tx_skb);
1600 }
1601
1602 return 0;
1603}
1604
1605static netdev_features_t macb_features_check(struct sk_buff *skb,
1606 struct net_device *dev,
1607 netdev_features_t features)
1608{
1609 unsigned int nr_frags, f;
1610 unsigned int hdrlen;
1611
1612 /* Validate LSO compatibility */
1613
1614 /* there is only one buffer */
1615 if (!skb_is_nonlinear(skb))
1616 return features;
1617
1618 /* length of header */
1619 hdrlen = skb_transport_offset(skb);
1620 if (ip_hdr(skb)->protocol == IPPROTO_TCP)
1621 hdrlen += tcp_hdrlen(skb);
1622
1623 /* For LSO:
1624 * When software supplies two or more payload buffers all payload buffers
1625 * apart from the last must be a multiple of 8 bytes in size.
1626 */
1627 if (!IS_ALIGNED(skb_headlen(skb) - hdrlen, MACB_TX_LEN_ALIGN))
1628 return features & ~MACB_NETIF_LSO;
1629
1630 nr_frags = skb_shinfo(skb)->nr_frags;
1631 /* No need to check last fragment */
1632 nr_frags--;
1633 for (f = 0; f < nr_frags; f++) {
1634 const skb_frag_t *frag = &skb_shinfo(skb)->frags[f];
1635
1636 if (!IS_ALIGNED(skb_frag_size(frag), MACB_TX_LEN_ALIGN))
1637 return features & ~MACB_NETIF_LSO;
1638 }
1639 return features;
1640}
1641
1642static inline int macb_clear_csum(struct sk_buff *skb)
1643{
1644 /* no change for packets without checksum offloading */
1645 if (skb->ip_summed != CHECKSUM_PARTIAL)
1646 return 0;
1647
1648 /* make sure we can modify the header */
1649 if (unlikely(skb_cow_head(skb, 0)))
1650 return -1;
1651
1652 /* initialize checksum field
1653 * This is required - at least for Zynq, which otherwise calculates
1654 * wrong UDP header checksums for UDP packets with UDP data len <=2
1655 */
1656 *(__sum16 *)(skb_checksum_start(skb) + skb->csum_offset) = 0;
1657 return 0;
1658}
1659
1660static int macb_start_xmit(struct sk_buff *skb, struct net_device *dev)
1661{
1662 u16 queue_index = skb_get_queue_mapping(skb);
1663 struct macb *bp = netdev_priv(dev);
1664 struct macb_queue *queue = &bp->queues[queue_index];
1665 unsigned long flags;
1666 unsigned int desc_cnt, nr_frags, frag_size, f;
1667 unsigned int hdrlen;
1668 bool is_lso, is_udp = 0;
1669
1670 is_lso = (skb_shinfo(skb)->gso_size != 0);
1671
1672 if (is_lso) {
1673 is_udp = !!(ip_hdr(skb)->protocol == IPPROTO_UDP);
1674
1675 /* length of headers */
1676 if (is_udp)
1677 /* only queue eth + ip headers separately for UDP */
1678 hdrlen = skb_transport_offset(skb);
1679 else
1680 hdrlen = skb_transport_offset(skb) + tcp_hdrlen(skb);
1681 if (skb_headlen(skb) < hdrlen) {
1682 netdev_err(bp->dev, "Error - LSO headers fragmented!!!\n");
1683 /* if this is required, would need to copy to single buffer */
1684 return NETDEV_TX_BUSY;
1685 }
1686 } else
1687 hdrlen = min(skb_headlen(skb), bp->max_tx_length);
1688
1689#if defined(DEBUG) && defined(VERBOSE_DEBUG)
1690 netdev_vdbg(bp->dev,
1691 "start_xmit: queue %hu len %u head %p data %p tail %p end %p\n",
1692 queue_index, skb->len, skb->head, skb->data,
1693 skb_tail_pointer(skb), skb_end_pointer(skb));
1694 print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_OFFSET, 16, 1,
1695 skb->data, 16, true);
1696#endif
1697
1698 /* Count how many TX buffer descriptors are needed to send this
1699 * socket buffer: skb fragments of jumbo frames may need to be
1700 * split into many buffer descriptors.
1701 */
1702 if (is_lso && (skb_headlen(skb) > hdrlen))
1703 /* extra header descriptor if also payload in first buffer */
1704 desc_cnt = DIV_ROUND_UP((skb_headlen(skb) - hdrlen), bp->max_tx_length) + 1;
1705 else
1706 desc_cnt = DIV_ROUND_UP(skb_headlen(skb), bp->max_tx_length);
1707 nr_frags = skb_shinfo(skb)->nr_frags;
1708 for (f = 0; f < nr_frags; f++) {
1709 frag_size = skb_frag_size(&skb_shinfo(skb)->frags[f]);
1710 desc_cnt += DIV_ROUND_UP(frag_size, bp->max_tx_length);
1711 }
1712
1713 spin_lock_irqsave(&bp->lock, flags);
1714
1715 /* This is a hard error, log it. */
1716 if (CIRC_SPACE(queue->tx_head, queue->tx_tail,
1717 bp->tx_ring_size) < desc_cnt) {
1718 netif_stop_subqueue(dev, queue_index);
1719 spin_unlock_irqrestore(&bp->lock, flags);
1720 netdev_dbg(bp->dev, "tx_head = %u, tx_tail = %u\n",
1721 queue->tx_head, queue->tx_tail);
1722 return NETDEV_TX_BUSY;
1723 }
1724
1725 if (macb_clear_csum(skb)) {
1726 dev_kfree_skb_any(skb);
1727 goto unlock;
1728 }
1729
1730 /* Map socket buffer for DMA transfer */
1731 if (!macb_tx_map(bp, queue, skb, hdrlen)) {
1732 dev_kfree_skb_any(skb);
1733 goto unlock;
1734 }
1735
1736 /* Make newly initialized descriptor visible to hardware */
1737 wmb();
1738 skb_tx_timestamp(skb);
1739
1740 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TSTART));
1741
1742 if (CIRC_SPACE(queue->tx_head, queue->tx_tail, bp->tx_ring_size) < 1)
1743 netif_stop_subqueue(dev, queue_index);
1744
1745unlock:
1746 spin_unlock_irqrestore(&bp->lock, flags);
1747
1748 return NETDEV_TX_OK;
1749}
1750
1751static void macb_init_rx_buffer_size(struct macb *bp, size_t size)
1752{
1753 if (!macb_is_gem(bp)) {
1754 bp->rx_buffer_size = MACB_RX_BUFFER_SIZE;
1755 } else {
1756 bp->rx_buffer_size = size;
1757
1758 if (bp->rx_buffer_size % RX_BUFFER_MULTIPLE) {
1759 netdev_dbg(bp->dev,
1760 "RX buffer must be multiple of %d bytes, expanding\n",
1761 RX_BUFFER_MULTIPLE);
1762 bp->rx_buffer_size =
1763 roundup(bp->rx_buffer_size, RX_BUFFER_MULTIPLE);
1764 }
1765 }
1766
1767 netdev_dbg(bp->dev, "mtu [%u] rx_buffer_size [%zu]\n",
1768 bp->dev->mtu, bp->rx_buffer_size);
1769}
1770
1771static void gem_free_rx_buffers(struct macb *bp)
1772{
1773 struct sk_buff *skb;
1774 struct macb_dma_desc *desc;
1775 struct macb_queue *queue;
1776 dma_addr_t addr;
1777 unsigned int q;
1778 int i;
1779
1780 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1781 if (!queue->rx_skbuff)
1782 continue;
1783
1784 for (i = 0; i < bp->rx_ring_size; i++) {
1785 skb = queue->rx_skbuff[i];
1786
1787 if (!skb)
1788 continue;
1789
1790 desc = macb_rx_desc(queue, i);
1791 addr = macb_get_addr(bp, desc);
1792
1793 dma_unmap_single(&bp->pdev->dev, addr, bp->rx_buffer_size,
1794 DMA_FROM_DEVICE);
1795 dev_kfree_skb_any(skb);
1796 skb = NULL;
1797 }
1798
1799 kfree(queue->rx_skbuff);
1800 queue->rx_skbuff = NULL;
1801 }
1802}
1803
1804static void macb_free_rx_buffers(struct macb *bp)
1805{
1806 struct macb_queue *queue = &bp->queues[0];
1807
1808 if (queue->rx_buffers) {
1809 dma_free_coherent(&bp->pdev->dev,
1810 bp->rx_ring_size * bp->rx_buffer_size,
1811 queue->rx_buffers, queue->rx_buffers_dma);
1812 queue->rx_buffers = NULL;
1813 }
1814}
1815
1816static void macb_free_consistent(struct macb *bp)
1817{
1818 struct macb_queue *queue;
1819 unsigned int q;
1820
1821 queue = &bp->queues[0];
1822 bp->macbgem_ops.mog_free_rx_buffers(bp);
1823 if (queue->rx_ring) {
1824 dma_free_coherent(&bp->pdev->dev, RX_RING_BYTES(bp),
1825 queue->rx_ring, queue->rx_ring_dma);
1826 queue->rx_ring = NULL;
1827 }
1828
1829 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1830 kfree(queue->tx_skb);
1831 queue->tx_skb = NULL;
1832 if (queue->tx_ring) {
1833 dma_free_coherent(&bp->pdev->dev, TX_RING_BYTES(bp),
1834 queue->tx_ring, queue->tx_ring_dma);
1835 queue->tx_ring = NULL;
1836 }
1837 }
1838}
1839
1840static int gem_alloc_rx_buffers(struct macb *bp)
1841{
1842 struct macb_queue *queue;
1843 unsigned int q;
1844 int size;
1845
1846 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1847 size = bp->rx_ring_size * sizeof(struct sk_buff *);
1848 queue->rx_skbuff = kzalloc(size, GFP_KERNEL);
1849 if (!queue->rx_skbuff)
1850 return -ENOMEM;
1851 else
1852 netdev_dbg(bp->dev,
1853 "Allocated %d RX struct sk_buff entries at %p\n",
1854 bp->rx_ring_size, queue->rx_skbuff);
1855 }
1856 return 0;
1857}
1858
1859static int macb_alloc_rx_buffers(struct macb *bp)
1860{
1861 struct macb_queue *queue = &bp->queues[0];
1862 int size;
1863
1864 size = bp->rx_ring_size * bp->rx_buffer_size;
1865 queue->rx_buffers = dma_alloc_coherent(&bp->pdev->dev, size,
1866 &queue->rx_buffers_dma, GFP_KERNEL);
1867 if (!queue->rx_buffers)
1868 return -ENOMEM;
1869
1870 netdev_dbg(bp->dev,
1871 "Allocated RX buffers of %d bytes at %08lx (mapped %p)\n",
1872 size, (unsigned long)queue->rx_buffers_dma, queue->rx_buffers);
1873 return 0;
1874}
1875
1876static int macb_alloc_consistent(struct macb *bp)
1877{
1878 struct macb_queue *queue;
1879 unsigned int q;
1880 int size;
1881
1882 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1883 size = TX_RING_BYTES(bp);
1884 queue->tx_ring = dma_alloc_coherent(&bp->pdev->dev, size,
1885 &queue->tx_ring_dma,
1886 GFP_KERNEL);
1887 if (!queue->tx_ring)
1888 goto out_err;
1889 netdev_dbg(bp->dev,
1890 "Allocated TX ring for queue %u of %d bytes at %08lx (mapped %p)\n",
1891 q, size, (unsigned long)queue->tx_ring_dma,
1892 queue->tx_ring);
1893
1894 size = bp->tx_ring_size * sizeof(struct macb_tx_skb);
1895 queue->tx_skb = kmalloc(size, GFP_KERNEL);
1896 if (!queue->tx_skb)
1897 goto out_err;
1898
1899 size = RX_RING_BYTES(bp);
1900 queue->rx_ring = dma_alloc_coherent(&bp->pdev->dev, size,
1901 &queue->rx_ring_dma, GFP_KERNEL);
1902 if (!queue->rx_ring)
1903 goto out_err;
1904 netdev_dbg(bp->dev,
1905 "Allocated RX ring of %d bytes at %08lx (mapped %p)\n",
1906 size, (unsigned long)queue->rx_ring_dma, queue->rx_ring);
1907 }
1908 if (bp->macbgem_ops.mog_alloc_rx_buffers(bp))
1909 goto out_err;
1910
1911 return 0;
1912
1913out_err:
1914 macb_free_consistent(bp);
1915 return -ENOMEM;
1916}
1917
1918static void gem_init_rings(struct macb *bp)
1919{
1920 struct macb_queue *queue;
1921 struct macb_dma_desc *desc = NULL;
1922 unsigned int q;
1923 int i;
1924
1925 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1926 for (i = 0; i < bp->tx_ring_size; i++) {
1927 desc = macb_tx_desc(queue, i);
1928 macb_set_addr(bp, desc, 0);
1929 desc->ctrl = MACB_BIT(TX_USED);
1930 }
1931 desc->ctrl |= MACB_BIT(TX_WRAP);
1932 queue->tx_head = 0;
1933 queue->tx_tail = 0;
1934
1935 queue->rx_tail = 0;
1936 queue->rx_prepared_head = 0;
1937
1938 gem_rx_refill(queue);
1939 }
1940
1941}
1942
1943static void macb_init_rings(struct macb *bp)
1944{
1945 int i;
1946 struct macb_dma_desc *desc = NULL;
1947
1948 macb_init_rx_ring(&bp->queues[0]);
1949
1950 for (i = 0; i < bp->tx_ring_size; i++) {
1951 desc = macb_tx_desc(&bp->queues[0], i);
1952 macb_set_addr(bp, desc, 0);
1953 desc->ctrl = MACB_BIT(TX_USED);
1954 }
1955 bp->queues[0].tx_head = 0;
1956 bp->queues[0].tx_tail = 0;
1957 desc->ctrl |= MACB_BIT(TX_WRAP);
1958}
1959
1960static void macb_reset_hw(struct macb *bp)
1961{
1962 struct macb_queue *queue;
1963 unsigned int q;
1964
1965 /* Disable RX and TX (XXX: Should we halt the transmission
1966 * more gracefully?)
1967 */
1968 macb_writel(bp, NCR, 0);
1969
1970 /* Clear the stats registers (XXX: Update stats first?) */
1971 macb_writel(bp, NCR, MACB_BIT(CLRSTAT));
1972
1973 /* Clear all status flags */
1974 macb_writel(bp, TSR, -1);
1975 macb_writel(bp, RSR, -1);
1976
1977 /* Disable all interrupts */
1978 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1979 queue_writel(queue, IDR, -1);
1980 queue_readl(queue, ISR);
1981 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1982 queue_writel(queue, ISR, -1);
1983 }
1984}
1985
1986static u32 gem_mdc_clk_div(struct macb *bp)
1987{
1988 u32 config;
1989 unsigned long pclk_hz = clk_get_rate(bp->pclk);
1990
1991 if (pclk_hz <= 20000000)
1992 config = GEM_BF(CLK, GEM_CLK_DIV8);
1993 else if (pclk_hz <= 40000000)
1994 config = GEM_BF(CLK, GEM_CLK_DIV16);
1995 else if (pclk_hz <= 80000000)
1996 config = GEM_BF(CLK, GEM_CLK_DIV32);
1997 else if (pclk_hz <= 120000000)
1998 config = GEM_BF(CLK, GEM_CLK_DIV48);
1999 else if (pclk_hz <= 160000000)
2000 config = GEM_BF(CLK, GEM_CLK_DIV64);
2001 else
2002 config = GEM_BF(CLK, GEM_CLK_DIV96);
2003
2004 return config;
2005}
2006
2007static u32 macb_mdc_clk_div(struct macb *bp)
2008{
2009 u32 config;
2010 unsigned long pclk_hz;
2011
2012 if (macb_is_gem(bp))
2013 return gem_mdc_clk_div(bp);
2014
2015 pclk_hz = clk_get_rate(bp->pclk);
2016 if (pclk_hz <= 20000000)
2017 config = MACB_BF(CLK, MACB_CLK_DIV8);
2018 else if (pclk_hz <= 40000000)
2019 config = MACB_BF(CLK, MACB_CLK_DIV16);
2020 else if (pclk_hz <= 80000000)
2021 config = MACB_BF(CLK, MACB_CLK_DIV32);
2022 else
2023 config = MACB_BF(CLK, MACB_CLK_DIV64);
2024
2025 return config;
2026}
2027
2028/* Get the DMA bus width field of the network configuration register that we
2029 * should program. We find the width from decoding the design configuration
2030 * register to find the maximum supported data bus width.
2031 */
2032static u32 macb_dbw(struct macb *bp)
2033{
2034 if (!macb_is_gem(bp))
2035 return 0;
2036
2037 switch (GEM_BFEXT(DBWDEF, gem_readl(bp, DCFG1))) {
2038 case 4:
2039 return GEM_BF(DBW, GEM_DBW128);
2040 case 2:
2041 return GEM_BF(DBW, GEM_DBW64);
2042 case 1:
2043 default:
2044 return GEM_BF(DBW, GEM_DBW32);
2045 }
2046}
2047
2048/* Configure the receive DMA engine
2049 * - use the correct receive buffer size
2050 * - set best burst length for DMA operations
2051 * (if not supported by FIFO, it will fallback to default)
2052 * - set both rx/tx packet buffers to full memory size
2053 * These are configurable parameters for GEM.
2054 */
2055static void macb_configure_dma(struct macb *bp)
2056{
2057 struct macb_queue *queue;
2058 u32 buffer_size;
2059 unsigned int q;
2060 u32 dmacfg;
2061
2062 buffer_size = bp->rx_buffer_size / RX_BUFFER_MULTIPLE;
2063 if (macb_is_gem(bp)) {
2064 dmacfg = gem_readl(bp, DMACFG) & ~GEM_BF(RXBS, -1L);
2065 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
2066 if (q)
2067 queue_writel(queue, RBQS, buffer_size);
2068 else
2069 dmacfg |= GEM_BF(RXBS, buffer_size);
2070 }
2071 if (bp->dma_burst_length)
2072 dmacfg = GEM_BFINS(FBLDO, bp->dma_burst_length, dmacfg);
2073 dmacfg |= GEM_BIT(TXPBMS) | GEM_BF(RXBMS, -1L);
2074 dmacfg &= ~GEM_BIT(ENDIA_PKT);
2075
2076 if (bp->native_io)
2077 dmacfg &= ~GEM_BIT(ENDIA_DESC);
2078 else
2079 dmacfg |= GEM_BIT(ENDIA_DESC); /* CPU in big endian */
2080
2081 if (bp->dev->features & NETIF_F_HW_CSUM)
2082 dmacfg |= GEM_BIT(TXCOEN);
2083 else
2084 dmacfg &= ~GEM_BIT(TXCOEN);
2085
2086#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
2087 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
2088 dmacfg |= GEM_BIT(ADDR64);
2089#endif
2090#ifdef CONFIG_MACB_USE_HWSTAMP
2091 if (bp->hw_dma_cap & HW_DMA_CAP_PTP)
2092 dmacfg |= GEM_BIT(RXEXT) | GEM_BIT(TXEXT);
2093#endif
2094 netdev_dbg(bp->dev, "Cadence configure DMA with 0x%08x\n",
2095 dmacfg);
2096 gem_writel(bp, DMACFG, dmacfg);
2097 }
2098}
2099
2100static void macb_init_hw(struct macb *bp)
2101{
2102 struct macb_queue *queue;
2103 unsigned int q;
2104
2105 u32 config;
2106
2107 macb_reset_hw(bp);
2108 macb_set_hwaddr(bp);
2109
2110 config = macb_mdc_clk_div(bp);
2111 if (bp->phy_interface == PHY_INTERFACE_MODE_SGMII)
2112 config |= GEM_BIT(SGMIIEN) | GEM_BIT(PCSSEL);
2113 config |= MACB_BF(RBOF, NET_IP_ALIGN); /* Make eth data aligned */
2114 config |= MACB_BIT(PAE); /* PAuse Enable */
2115 config |= MACB_BIT(DRFCS); /* Discard Rx FCS */
2116 if (bp->caps & MACB_CAPS_JUMBO)
2117 config |= MACB_BIT(JFRAME); /* Enable jumbo frames */
2118 else
2119 config |= MACB_BIT(BIG); /* Receive oversized frames */
2120 if (bp->dev->flags & IFF_PROMISC)
2121 config |= MACB_BIT(CAF); /* Copy All Frames */
2122 else if (macb_is_gem(bp) && bp->dev->features & NETIF_F_RXCSUM)
2123 config |= GEM_BIT(RXCOEN);
2124 if (!(bp->dev->flags & IFF_BROADCAST))
2125 config |= MACB_BIT(NBC); /* No BroadCast */
2126 config |= macb_dbw(bp);
2127 macb_writel(bp, NCFGR, config);
2128 if ((bp->caps & MACB_CAPS_JUMBO) && bp->jumbo_max_len)
2129 gem_writel(bp, JML, bp->jumbo_max_len);
2130 bp->speed = SPEED_10;
2131 bp->duplex = DUPLEX_HALF;
2132 bp->rx_frm_len_mask = MACB_RX_FRMLEN_MASK;
2133 if (bp->caps & MACB_CAPS_JUMBO)
2134 bp->rx_frm_len_mask = MACB_RX_JFRMLEN_MASK;
2135
2136 macb_configure_dma(bp);
2137
2138 /* Initialize TX and RX buffers */
2139 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
2140 queue_writel(queue, RBQP, lower_32_bits(queue->rx_ring_dma));
2141#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
2142 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
2143 queue_writel(queue, RBQPH, upper_32_bits(queue->rx_ring_dma));
2144#endif
2145 queue_writel(queue, TBQP, lower_32_bits(queue->tx_ring_dma));
2146#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
2147 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
2148 queue_writel(queue, TBQPH, upper_32_bits(queue->tx_ring_dma));
2149#endif
2150
2151 /* Enable interrupts */
2152 queue_writel(queue, IER,
2153 MACB_RX_INT_FLAGS |
2154 MACB_TX_INT_FLAGS |
2155 MACB_BIT(HRESP));
2156 }
2157
2158 /* Enable TX and RX */
2159 macb_writel(bp, NCR, MACB_BIT(RE) | MACB_BIT(TE) | MACB_BIT(MPE));
2160}
2161
2162/* The hash address register is 64 bits long and takes up two
2163 * locations in the memory map. The least significant bits are stored
2164 * in EMAC_HSL and the most significant bits in EMAC_HSH.
2165 *
2166 * The unicast hash enable and the multicast hash enable bits in the
2167 * network configuration register enable the reception of hash matched
2168 * frames. The destination address is reduced to a 6 bit index into
2169 * the 64 bit hash register using the following hash function. The
2170 * hash function is an exclusive or of every sixth bit of the
2171 * destination address.
2172 *
2173 * hi[5] = da[5] ^ da[11] ^ da[17] ^ da[23] ^ da[29] ^ da[35] ^ da[41] ^ da[47]
2174 * hi[4] = da[4] ^ da[10] ^ da[16] ^ da[22] ^ da[28] ^ da[34] ^ da[40] ^ da[46]
2175 * hi[3] = da[3] ^ da[09] ^ da[15] ^ da[21] ^ da[27] ^ da[33] ^ da[39] ^ da[45]
2176 * hi[2] = da[2] ^ da[08] ^ da[14] ^ da[20] ^ da[26] ^ da[32] ^ da[38] ^ da[44]
2177 * hi[1] = da[1] ^ da[07] ^ da[13] ^ da[19] ^ da[25] ^ da[31] ^ da[37] ^ da[43]
2178 * hi[0] = da[0] ^ da[06] ^ da[12] ^ da[18] ^ da[24] ^ da[30] ^ da[36] ^ da[42]
2179 *
2180 * da[0] represents the least significant bit of the first byte
2181 * received, that is, the multicast/unicast indicator, and da[47]
2182 * represents the most significant bit of the last byte received. If
2183 * the hash index, hi[n], points to a bit that is set in the hash
2184 * register then the frame will be matched according to whether the
2185 * frame is multicast or unicast. A multicast match will be signalled
2186 * if the multicast hash enable bit is set, da[0] is 1 and the hash
2187 * index points to a bit set in the hash register. A unicast match
2188 * will be signalled if the unicast hash enable bit is set, da[0] is 0
2189 * and the hash index points to a bit set in the hash register. To
2190 * receive all multicast frames, the hash register should be set with
2191 * all ones and the multicast hash enable bit should be set in the
2192 * network configuration register.
2193 */
2194
2195static inline int hash_bit_value(int bitnr, __u8 *addr)
2196{
2197 if (addr[bitnr / 8] & (1 << (bitnr % 8)))
2198 return 1;
2199 return 0;
2200}
2201
2202/* Return the hash index value for the specified address. */
2203static int hash_get_index(__u8 *addr)
2204{
2205 int i, j, bitval;
2206 int hash_index = 0;
2207
2208 for (j = 0; j < 6; j++) {
2209 for (i = 0, bitval = 0; i < 8; i++)
2210 bitval ^= hash_bit_value(i * 6 + j, addr);
2211
2212 hash_index |= (bitval << j);
2213 }
2214
2215 return hash_index;
2216}
2217
2218/* Add multicast addresses to the internal multicast-hash table. */
2219static void macb_sethashtable(struct net_device *dev)
2220{
2221 struct netdev_hw_addr *ha;
2222 unsigned long mc_filter[2];
2223 unsigned int bitnr;
2224 struct macb *bp = netdev_priv(dev);
2225
2226 mc_filter[0] = 0;
2227 mc_filter[1] = 0;
2228
2229 netdev_for_each_mc_addr(ha, dev) {
2230 bitnr = hash_get_index(ha->addr);
2231 mc_filter[bitnr >> 5] |= 1 << (bitnr & 31);
2232 }
2233
2234 macb_or_gem_writel(bp, HRB, mc_filter[0]);
2235 macb_or_gem_writel(bp, HRT, mc_filter[1]);
2236}
2237
2238/* Enable/Disable promiscuous and multicast modes. */
2239static void macb_set_rx_mode(struct net_device *dev)
2240{
2241 unsigned long cfg;
2242 struct macb *bp = netdev_priv(dev);
2243
2244 cfg = macb_readl(bp, NCFGR);
2245
2246 if (dev->flags & IFF_PROMISC) {
2247 /* Enable promiscuous mode */
2248 cfg |= MACB_BIT(CAF);
2249
2250 /* Disable RX checksum offload */
2251 if (macb_is_gem(bp))
2252 cfg &= ~GEM_BIT(RXCOEN);
2253 } else {
2254 /* Disable promiscuous mode */
2255 cfg &= ~MACB_BIT(CAF);
2256
2257 /* Enable RX checksum offload only if requested */
2258 if (macb_is_gem(bp) && dev->features & NETIF_F_RXCSUM)
2259 cfg |= GEM_BIT(RXCOEN);
2260 }
2261
2262 if (dev->flags & IFF_ALLMULTI) {
2263 /* Enable all multicast mode */
2264 macb_or_gem_writel(bp, HRB, -1);
2265 macb_or_gem_writel(bp, HRT, -1);
2266 cfg |= MACB_BIT(NCFGR_MTI);
2267 } else if (!netdev_mc_empty(dev)) {
2268 /* Enable specific multicasts */
2269 macb_sethashtable(dev);
2270 cfg |= MACB_BIT(NCFGR_MTI);
2271 } else if (dev->flags & (~IFF_ALLMULTI)) {
2272 /* Disable all multicast mode */
2273 macb_or_gem_writel(bp, HRB, 0);
2274 macb_or_gem_writel(bp, HRT, 0);
2275 cfg &= ~MACB_BIT(NCFGR_MTI);
2276 }
2277
2278 macb_writel(bp, NCFGR, cfg);
2279}
2280
2281static int macb_open(struct net_device *dev)
2282{
2283 struct macb *bp = netdev_priv(dev);
2284 size_t bufsz = dev->mtu + ETH_HLEN + ETH_FCS_LEN + NET_IP_ALIGN;
2285 struct macb_queue *queue;
2286 unsigned int q;
2287 int err;
2288
2289 netdev_dbg(bp->dev, "open\n");
2290
2291 /* carrier starts down */
2292 netif_carrier_off(dev);
2293
2294 /* if the phy is not yet register, retry later*/
2295 if (!dev->phydev)
2296 return -EAGAIN;
2297
2298 /* RX buffers initialization */
2299 macb_init_rx_buffer_size(bp, bufsz);
2300
2301 err = macb_alloc_consistent(bp);
2302 if (err) {
2303 netdev_err(dev, "Unable to allocate DMA memory (error %d)\n",
2304 err);
2305 return err;
2306 }
2307
2308 bp->macbgem_ops.mog_init_rings(bp);
2309 macb_init_hw(bp);
2310
2311 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
2312 napi_enable(&queue->napi);
2313
2314 /* schedule a link state check */
2315 phy_start(dev->phydev);
2316
2317 netif_tx_start_all_queues(dev);
2318
2319 if (bp->ptp_info)
2320 bp->ptp_info->ptp_init(dev);
2321
2322 return 0;
2323}
2324
2325static int macb_close(struct net_device *dev)
2326{
2327 struct macb *bp = netdev_priv(dev);
2328 struct macb_queue *queue;
2329 unsigned long flags;
2330 unsigned int q;
2331
2332 netif_tx_stop_all_queues(dev);
2333
2334 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
2335 napi_disable(&queue->napi);
2336
2337 if (dev->phydev)
2338 phy_stop(dev->phydev);
2339
2340 spin_lock_irqsave(&bp->lock, flags);
2341 macb_reset_hw(bp);
2342 netif_carrier_off(dev);
2343 spin_unlock_irqrestore(&bp->lock, flags);
2344
2345 macb_free_consistent(bp);
2346
2347 if (bp->ptp_info)
2348 bp->ptp_info->ptp_remove(dev);
2349
2350 return 0;
2351}
2352
2353static int macb_change_mtu(struct net_device *dev, int new_mtu)
2354{
2355 if (netif_running(dev))
2356 return -EBUSY;
2357
2358 dev->mtu = new_mtu;
2359
2360 return 0;
2361}
2362
2363static void gem_update_stats(struct macb *bp)
2364{
2365 struct macb_queue *queue;
2366 unsigned int i, q, idx;
2367 unsigned long *stat;
2368
2369 u32 *p = &bp->hw_stats.gem.tx_octets_31_0;
2370
2371 for (i = 0; i < GEM_STATS_LEN; ++i, ++p) {
2372 u32 offset = gem_statistics[i].offset;
2373 u64 val = bp->macb_reg_readl(bp, offset);
2374
2375 bp->ethtool_stats[i] += val;
2376 *p += val;
2377
2378 if (offset == GEM_OCTTXL || offset == GEM_OCTRXL) {
2379 /* Add GEM_OCTTXH, GEM_OCTRXH */
2380 val = bp->macb_reg_readl(bp, offset + 4);
2381 bp->ethtool_stats[i] += ((u64)val) << 32;
2382 *(++p) += val;
2383 }
2384 }
2385
2386 idx = GEM_STATS_LEN;
2387 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
2388 for (i = 0, stat = &queue->stats.first; i < QUEUE_STATS_LEN; ++i, ++stat)
2389 bp->ethtool_stats[idx++] = *stat;
2390}
2391
2392static struct net_device_stats *gem_get_stats(struct macb *bp)
2393{
2394 struct gem_stats *hwstat = &bp->hw_stats.gem;
2395 struct net_device_stats *nstat = &bp->dev->stats;
2396
2397 gem_update_stats(bp);
2398
2399 nstat->rx_errors = (hwstat->rx_frame_check_sequence_errors +
2400 hwstat->rx_alignment_errors +
2401 hwstat->rx_resource_errors +
2402 hwstat->rx_overruns +
2403 hwstat->rx_oversize_frames +
2404 hwstat->rx_jabbers +
2405 hwstat->rx_undersized_frames +
2406 hwstat->rx_length_field_frame_errors);
2407 nstat->tx_errors = (hwstat->tx_late_collisions +
2408 hwstat->tx_excessive_collisions +
2409 hwstat->tx_underrun +
2410 hwstat->tx_carrier_sense_errors);
2411 nstat->multicast = hwstat->rx_multicast_frames;
2412 nstat->collisions = (hwstat->tx_single_collision_frames +
2413 hwstat->tx_multiple_collision_frames +
2414 hwstat->tx_excessive_collisions);
2415 nstat->rx_length_errors = (hwstat->rx_oversize_frames +
2416 hwstat->rx_jabbers +
2417 hwstat->rx_undersized_frames +
2418 hwstat->rx_length_field_frame_errors);
2419 nstat->rx_over_errors = hwstat->rx_resource_errors;
2420 nstat->rx_crc_errors = hwstat->rx_frame_check_sequence_errors;
2421 nstat->rx_frame_errors = hwstat->rx_alignment_errors;
2422 nstat->rx_fifo_errors = hwstat->rx_overruns;
2423 nstat->tx_aborted_errors = hwstat->tx_excessive_collisions;
2424 nstat->tx_carrier_errors = hwstat->tx_carrier_sense_errors;
2425 nstat->tx_fifo_errors = hwstat->tx_underrun;
2426
2427 return nstat;
2428}
2429
2430static void gem_get_ethtool_stats(struct net_device *dev,
2431 struct ethtool_stats *stats, u64 *data)
2432{
2433 struct macb *bp;
2434
2435 bp = netdev_priv(dev);
2436 gem_update_stats(bp);
2437 memcpy(data, &bp->ethtool_stats, sizeof(u64)
2438 * (GEM_STATS_LEN + QUEUE_STATS_LEN * MACB_MAX_QUEUES));
2439}
2440
2441static int gem_get_sset_count(struct net_device *dev, int sset)
2442{
2443 struct macb *bp = netdev_priv(dev);
2444
2445 switch (sset) {
2446 case ETH_SS_STATS:
2447 return GEM_STATS_LEN + bp->num_queues * QUEUE_STATS_LEN;
2448 default:
2449 return -EOPNOTSUPP;
2450 }
2451}
2452
2453static void gem_get_ethtool_strings(struct net_device *dev, u32 sset, u8 *p)
2454{
2455 char stat_string[ETH_GSTRING_LEN];
2456 struct macb *bp = netdev_priv(dev);
2457 struct macb_queue *queue;
2458 unsigned int i;
2459 unsigned int q;
2460
2461 switch (sset) {
2462 case ETH_SS_STATS:
2463 for (i = 0; i < GEM_STATS_LEN; i++, p += ETH_GSTRING_LEN)
2464 memcpy(p, gem_statistics[i].stat_string,
2465 ETH_GSTRING_LEN);
2466
2467 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
2468 for (i = 0; i < QUEUE_STATS_LEN; i++, p += ETH_GSTRING_LEN) {
2469 snprintf(stat_string, ETH_GSTRING_LEN, "q%d_%s",
2470 q, queue_statistics[i].stat_string);
2471 memcpy(p, stat_string, ETH_GSTRING_LEN);
2472 }
2473 }
2474 break;
2475 }
2476}
2477
2478static struct net_device_stats *macb_get_stats(struct net_device *dev)
2479{
2480 struct macb *bp = netdev_priv(dev);
2481 struct net_device_stats *nstat = &bp->dev->stats;
2482 struct macb_stats *hwstat = &bp->hw_stats.macb;
2483
2484 if (macb_is_gem(bp))
2485 return gem_get_stats(bp);
2486
2487 /* read stats from hardware */
2488 macb_update_stats(bp);
2489
2490 /* Convert HW stats into netdevice stats */
2491 nstat->rx_errors = (hwstat->rx_fcs_errors +
2492 hwstat->rx_align_errors +
2493 hwstat->rx_resource_errors +
2494 hwstat->rx_overruns +
2495 hwstat->rx_oversize_pkts +
2496 hwstat->rx_jabbers +
2497 hwstat->rx_undersize_pkts +
2498 hwstat->rx_length_mismatch);
2499 nstat->tx_errors = (hwstat->tx_late_cols +
2500 hwstat->tx_excessive_cols +
2501 hwstat->tx_underruns +
2502 hwstat->tx_carrier_errors +
2503 hwstat->sqe_test_errors);
2504 nstat->collisions = (hwstat->tx_single_cols +
2505 hwstat->tx_multiple_cols +
2506 hwstat->tx_excessive_cols);
2507 nstat->rx_length_errors = (hwstat->rx_oversize_pkts +
2508 hwstat->rx_jabbers +
2509 hwstat->rx_undersize_pkts +
2510 hwstat->rx_length_mismatch);
2511 nstat->rx_over_errors = hwstat->rx_resource_errors +
2512 hwstat->rx_overruns;
2513 nstat->rx_crc_errors = hwstat->rx_fcs_errors;
2514 nstat->rx_frame_errors = hwstat->rx_align_errors;
2515 nstat->rx_fifo_errors = hwstat->rx_overruns;
2516 /* XXX: What does "missed" mean? */
2517 nstat->tx_aborted_errors = hwstat->tx_excessive_cols;
2518 nstat->tx_carrier_errors = hwstat->tx_carrier_errors;
2519 nstat->tx_fifo_errors = hwstat->tx_underruns;
2520 /* Don't know about heartbeat or window errors... */
2521
2522 return nstat;
2523}
2524
2525static int macb_get_regs_len(struct net_device *netdev)
2526{
2527 return MACB_GREGS_NBR * sizeof(u32);
2528}
2529
2530static void macb_get_regs(struct net_device *dev, struct ethtool_regs *regs,
2531 void *p)
2532{
2533 struct macb *bp = netdev_priv(dev);
2534 unsigned int tail, head;
2535 u32 *regs_buff = p;
2536
2537 regs->version = (macb_readl(bp, MID) & ((1 << MACB_REV_SIZE) - 1))
2538 | MACB_GREGS_VERSION;
2539
2540 tail = macb_tx_ring_wrap(bp, bp->queues[0].tx_tail);
2541 head = macb_tx_ring_wrap(bp, bp->queues[0].tx_head);
2542
2543 regs_buff[0] = macb_readl(bp, NCR);
2544 regs_buff[1] = macb_or_gem_readl(bp, NCFGR);
2545 regs_buff[2] = macb_readl(bp, NSR);
2546 regs_buff[3] = macb_readl(bp, TSR);
2547 regs_buff[4] = macb_readl(bp, RBQP);
2548 regs_buff[5] = macb_readl(bp, TBQP);
2549 regs_buff[6] = macb_readl(bp, RSR);
2550 regs_buff[7] = macb_readl(bp, IMR);
2551
2552 regs_buff[8] = tail;
2553 regs_buff[9] = head;
2554 regs_buff[10] = macb_tx_dma(&bp->queues[0], tail);
2555 regs_buff[11] = macb_tx_dma(&bp->queues[0], head);
2556
2557 if (!(bp->caps & MACB_CAPS_USRIO_DISABLED))
2558 regs_buff[12] = macb_or_gem_readl(bp, USRIO);
2559 if (macb_is_gem(bp))
2560 regs_buff[13] = gem_readl(bp, DMACFG);
2561}
2562
2563static void macb_get_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
2564{
2565 struct macb *bp = netdev_priv(netdev);
2566
2567 wol->supported = 0;
2568 wol->wolopts = 0;
2569
2570 if (bp->wol & MACB_WOL_HAS_MAGIC_PACKET) {
2571 wol->supported = WAKE_MAGIC;
2572
2573 if (bp->wol & MACB_WOL_ENABLED)
2574 wol->wolopts |= WAKE_MAGIC;
2575 }
2576}
2577
2578static int macb_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
2579{
2580 struct macb *bp = netdev_priv(netdev);
2581
2582 if (!(bp->wol & MACB_WOL_HAS_MAGIC_PACKET) ||
2583 (wol->wolopts & ~WAKE_MAGIC))
2584 return -EOPNOTSUPP;
2585
2586 if (wol->wolopts & WAKE_MAGIC)
2587 bp->wol |= MACB_WOL_ENABLED;
2588 else
2589 bp->wol &= ~MACB_WOL_ENABLED;
2590
2591 device_set_wakeup_enable(&bp->pdev->dev, bp->wol & MACB_WOL_ENABLED);
2592
2593 return 0;
2594}
2595
2596static void macb_get_ringparam(struct net_device *netdev,
2597 struct ethtool_ringparam *ring)
2598{
2599 struct macb *bp = netdev_priv(netdev);
2600
2601 ring->rx_max_pending = MAX_RX_RING_SIZE;
2602 ring->tx_max_pending = MAX_TX_RING_SIZE;
2603
2604 ring->rx_pending = bp->rx_ring_size;
2605 ring->tx_pending = bp->tx_ring_size;
2606}
2607
2608static int macb_set_ringparam(struct net_device *netdev,
2609 struct ethtool_ringparam *ring)
2610{
2611 struct macb *bp = netdev_priv(netdev);
2612 u32 new_rx_size, new_tx_size;
2613 unsigned int reset = 0;
2614
2615 if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
2616 return -EINVAL;
2617
2618 new_rx_size = clamp_t(u32, ring->rx_pending,
2619 MIN_RX_RING_SIZE, MAX_RX_RING_SIZE);
2620 new_rx_size = roundup_pow_of_two(new_rx_size);
2621
2622 new_tx_size = clamp_t(u32, ring->tx_pending,
2623 MIN_TX_RING_SIZE, MAX_TX_RING_SIZE);
2624 new_tx_size = roundup_pow_of_two(new_tx_size);
2625
2626 if ((new_tx_size == bp->tx_ring_size) &&
2627 (new_rx_size == bp->rx_ring_size)) {
2628 /* nothing to do */
2629 return 0;
2630 }
2631
2632 if (netif_running(bp->dev)) {
2633 reset = 1;
2634 macb_close(bp->dev);
2635 }
2636
2637 bp->rx_ring_size = new_rx_size;
2638 bp->tx_ring_size = new_tx_size;
2639
2640 if (reset)
2641 macb_open(bp->dev);
2642
2643 return 0;
2644}
2645
2646#ifdef CONFIG_MACB_USE_HWSTAMP
2647static unsigned int gem_get_tsu_rate(struct macb *bp)
2648{
2649 struct clk *tsu_clk;
2650 unsigned int tsu_rate;
2651
2652 tsu_clk = devm_clk_get(&bp->pdev->dev, "tsu_clk");
2653 if (!IS_ERR(tsu_clk))
2654 tsu_rate = clk_get_rate(tsu_clk);
2655 /* try pclk instead */
2656 else if (!IS_ERR(bp->pclk)) {
2657 tsu_clk = bp->pclk;
2658 tsu_rate = clk_get_rate(tsu_clk);
2659 } else
2660 return -ENOTSUPP;
2661 return tsu_rate;
2662}
2663
2664static s32 gem_get_ptp_max_adj(void)
2665{
2666 return 64000000;
2667}
2668
2669static int gem_get_ts_info(struct net_device *dev,
2670 struct ethtool_ts_info *info)
2671{
2672 struct macb *bp = netdev_priv(dev);
2673
2674 if ((bp->hw_dma_cap & HW_DMA_CAP_PTP) == 0) {
2675 ethtool_op_get_ts_info(dev, info);
2676 return 0;
2677 }
2678
2679 info->so_timestamping =
2680 SOF_TIMESTAMPING_TX_SOFTWARE |
2681 SOF_TIMESTAMPING_RX_SOFTWARE |
2682 SOF_TIMESTAMPING_SOFTWARE |
2683 SOF_TIMESTAMPING_TX_HARDWARE |
2684 SOF_TIMESTAMPING_RX_HARDWARE |
2685 SOF_TIMESTAMPING_RAW_HARDWARE;
2686 info->tx_types =
2687 (1 << HWTSTAMP_TX_ONESTEP_SYNC) |
2688 (1 << HWTSTAMP_TX_OFF) |
2689 (1 << HWTSTAMP_TX_ON);
2690 info->rx_filters =
2691 (1 << HWTSTAMP_FILTER_NONE) |
2692 (1 << HWTSTAMP_FILTER_ALL);
2693
2694 info->phc_index = bp->ptp_clock ? ptp_clock_index(bp->ptp_clock) : -1;
2695
2696 return 0;
2697}
2698
2699static struct macb_ptp_info gem_ptp_info = {
2700 .ptp_init = gem_ptp_init,
2701 .ptp_remove = gem_ptp_remove,
2702 .get_ptp_max_adj = gem_get_ptp_max_adj,
2703 .get_tsu_rate = gem_get_tsu_rate,
2704 .get_ts_info = gem_get_ts_info,
2705 .get_hwtst = gem_get_hwtst,
2706 .set_hwtst = gem_set_hwtst,
2707};
2708#endif
2709
2710static int macb_get_ts_info(struct net_device *netdev,
2711 struct ethtool_ts_info *info)
2712{
2713 struct macb *bp = netdev_priv(netdev);
2714
2715 if (bp->ptp_info)
2716 return bp->ptp_info->get_ts_info(netdev, info);
2717
2718 return ethtool_op_get_ts_info(netdev, info);
2719}
2720
2721static void gem_enable_flow_filters(struct macb *bp, bool enable)
2722{
2723 struct ethtool_rx_fs_item *item;
2724 u32 t2_scr;
2725 int num_t2_scr;
2726
2727 num_t2_scr = GEM_BFEXT(T2SCR, gem_readl(bp, DCFG8));
2728
2729 list_for_each_entry(item, &bp->rx_fs_list.list, list) {
2730 struct ethtool_rx_flow_spec *fs = &item->fs;
2731 struct ethtool_tcpip4_spec *tp4sp_m;
2732
2733 if (fs->location >= num_t2_scr)
2734 continue;
2735
2736 t2_scr = gem_readl_n(bp, SCRT2, fs->location);
2737
2738 /* enable/disable screener regs for the flow entry */
2739 t2_scr = GEM_BFINS(ETHTEN, enable, t2_scr);
2740
2741 /* only enable fields with no masking */
2742 tp4sp_m = &(fs->m_u.tcp_ip4_spec);
2743
2744 if (enable && (tp4sp_m->ip4src == 0xFFFFFFFF))
2745 t2_scr = GEM_BFINS(CMPAEN, 1, t2_scr);
2746 else
2747 t2_scr = GEM_BFINS(CMPAEN, 0, t2_scr);
2748
2749 if (enable && (tp4sp_m->ip4dst == 0xFFFFFFFF))
2750 t2_scr = GEM_BFINS(CMPBEN, 1, t2_scr);
2751 else
2752 t2_scr = GEM_BFINS(CMPBEN, 0, t2_scr);
2753
2754 if (enable && ((tp4sp_m->psrc == 0xFFFF) || (tp4sp_m->pdst == 0xFFFF)))
2755 t2_scr = GEM_BFINS(CMPCEN, 1, t2_scr);
2756 else
2757 t2_scr = GEM_BFINS(CMPCEN, 0, t2_scr);
2758
2759 gem_writel_n(bp, SCRT2, fs->location, t2_scr);
2760 }
2761}
2762
2763static void gem_prog_cmp_regs(struct macb *bp, struct ethtool_rx_flow_spec *fs)
2764{
2765 struct ethtool_tcpip4_spec *tp4sp_v, *tp4sp_m;
2766 uint16_t index = fs->location;
2767 u32 w0, w1, t2_scr;
2768 bool cmp_a = false;
2769 bool cmp_b = false;
2770 bool cmp_c = false;
2771
2772 tp4sp_v = &(fs->h_u.tcp_ip4_spec);
2773 tp4sp_m = &(fs->m_u.tcp_ip4_spec);
2774
2775 /* ignore field if any masking set */
2776 if (tp4sp_m->ip4src == 0xFFFFFFFF) {
2777 /* 1st compare reg - IP source address */
2778 w0 = 0;
2779 w1 = 0;
2780 w0 = tp4sp_v->ip4src;
2781 w1 = GEM_BFINS(T2DISMSK, 1, w1); /* 32-bit compare */
2782 w1 = GEM_BFINS(T2CMPOFST, GEM_T2COMPOFST_ETYPE, w1);
2783 w1 = GEM_BFINS(T2OFST, ETYPE_SRCIP_OFFSET, w1);
2784 gem_writel_n(bp, T2CMPW0, T2CMP_OFST(GEM_IP4SRC_CMP(index)), w0);
2785 gem_writel_n(bp, T2CMPW1, T2CMP_OFST(GEM_IP4SRC_CMP(index)), w1);
2786 cmp_a = true;
2787 }
2788
2789 /* ignore field if any masking set */
2790 if (tp4sp_m->ip4dst == 0xFFFFFFFF) {
2791 /* 2nd compare reg - IP destination address */
2792 w0 = 0;
2793 w1 = 0;
2794 w0 = tp4sp_v->ip4dst;
2795 w1 = GEM_BFINS(T2DISMSK, 1, w1); /* 32-bit compare */
2796 w1 = GEM_BFINS(T2CMPOFST, GEM_T2COMPOFST_ETYPE, w1);
2797 w1 = GEM_BFINS(T2OFST, ETYPE_DSTIP_OFFSET, w1);
2798 gem_writel_n(bp, T2CMPW0, T2CMP_OFST(GEM_IP4DST_CMP(index)), w0);
2799 gem_writel_n(bp, T2CMPW1, T2CMP_OFST(GEM_IP4DST_CMP(index)), w1);
2800 cmp_b = true;
2801 }
2802
2803 /* ignore both port fields if masking set in both */
2804 if ((tp4sp_m->psrc == 0xFFFF) || (tp4sp_m->pdst == 0xFFFF)) {
2805 /* 3rd compare reg - source port, destination port */
2806 w0 = 0;
2807 w1 = 0;
2808 w1 = GEM_BFINS(T2CMPOFST, GEM_T2COMPOFST_IPHDR, w1);
2809 if (tp4sp_m->psrc == tp4sp_m->pdst) {
2810 w0 = GEM_BFINS(T2MASK, tp4sp_v->psrc, w0);
2811 w0 = GEM_BFINS(T2CMP, tp4sp_v->pdst, w0);
2812 w1 = GEM_BFINS(T2DISMSK, 1, w1); /* 32-bit compare */
2813 w1 = GEM_BFINS(T2OFST, IPHDR_SRCPORT_OFFSET, w1);
2814 } else {
2815 /* only one port definition */
2816 w1 = GEM_BFINS(T2DISMSK, 0, w1); /* 16-bit compare */
2817 w0 = GEM_BFINS(T2MASK, 0xFFFF, w0);
2818 if (tp4sp_m->psrc == 0xFFFF) { /* src port */
2819 w0 = GEM_BFINS(T2CMP, tp4sp_v->psrc, w0);
2820 w1 = GEM_BFINS(T2OFST, IPHDR_SRCPORT_OFFSET, w1);
2821 } else { /* dst port */
2822 w0 = GEM_BFINS(T2CMP, tp4sp_v->pdst, w0);
2823 w1 = GEM_BFINS(T2OFST, IPHDR_DSTPORT_OFFSET, w1);
2824 }
2825 }
2826 gem_writel_n(bp, T2CMPW0, T2CMP_OFST(GEM_PORT_CMP(index)), w0);
2827 gem_writel_n(bp, T2CMPW1, T2CMP_OFST(GEM_PORT_CMP(index)), w1);
2828 cmp_c = true;
2829 }
2830
2831 t2_scr = 0;
2832 t2_scr = GEM_BFINS(QUEUE, (fs->ring_cookie) & 0xFF, t2_scr);
2833 t2_scr = GEM_BFINS(ETHT2IDX, SCRT2_ETHT, t2_scr);
2834 if (cmp_a)
2835 t2_scr = GEM_BFINS(CMPA, GEM_IP4SRC_CMP(index), t2_scr);
2836 if (cmp_b)
2837 t2_scr = GEM_BFINS(CMPB, GEM_IP4DST_CMP(index), t2_scr);
2838 if (cmp_c)
2839 t2_scr = GEM_BFINS(CMPC, GEM_PORT_CMP(index), t2_scr);
2840 gem_writel_n(bp, SCRT2, index, t2_scr);
2841}
2842
2843static int gem_add_flow_filter(struct net_device *netdev,
2844 struct ethtool_rxnfc *cmd)
2845{
2846 struct macb *bp = netdev_priv(netdev);
2847 struct ethtool_rx_flow_spec *fs = &cmd->fs;
2848 struct ethtool_rx_fs_item *item, *newfs;
2849 unsigned long flags;
2850 int ret = -EINVAL;
2851 bool added = false;
2852
2853 newfs = kmalloc(sizeof(*newfs), GFP_KERNEL);
2854 if (newfs == NULL)
2855 return -ENOMEM;
2856 memcpy(&newfs->fs, fs, sizeof(newfs->fs));
2857
2858 netdev_dbg(netdev,
2859 "Adding flow filter entry,type=%u,queue=%u,loc=%u,src=%08X,dst=%08X,ps=%u,pd=%u\n",
2860 fs->flow_type, (int)fs->ring_cookie, fs->location,
2861 htonl(fs->h_u.tcp_ip4_spec.ip4src),
2862 htonl(fs->h_u.tcp_ip4_spec.ip4dst),
2863 htons(fs->h_u.tcp_ip4_spec.psrc), htons(fs->h_u.tcp_ip4_spec.pdst));
2864
2865 spin_lock_irqsave(&bp->rx_fs_lock, flags);
2866
2867 /* find correct place to add in list */
2868 list_for_each_entry(item, &bp->rx_fs_list.list, list) {
2869 if (item->fs.location > newfs->fs.location) {
2870 list_add_tail(&newfs->list, &item->list);
2871 added = true;
2872 break;
2873 } else if (item->fs.location == fs->location) {
2874 netdev_err(netdev, "Rule not added: location %d not free!\n",
2875 fs->location);
2876 ret = -EBUSY;
2877 goto err;
2878 }
2879 }
2880 if (!added)
2881 list_add_tail(&newfs->list, &bp->rx_fs_list.list);
2882
2883 gem_prog_cmp_regs(bp, fs);
2884 bp->rx_fs_list.count++;
2885 /* enable filtering if NTUPLE on */
2886 if (netdev->features & NETIF_F_NTUPLE)
2887 gem_enable_flow_filters(bp, 1);
2888
2889 spin_unlock_irqrestore(&bp->rx_fs_lock, flags);
2890 return 0;
2891
2892err:
2893 spin_unlock_irqrestore(&bp->rx_fs_lock, flags);
2894 kfree(newfs);
2895 return ret;
2896}
2897
2898static int gem_del_flow_filter(struct net_device *netdev,
2899 struct ethtool_rxnfc *cmd)
2900{
2901 struct macb *bp = netdev_priv(netdev);
2902 struct ethtool_rx_fs_item *item;
2903 struct ethtool_rx_flow_spec *fs;
2904 unsigned long flags;
2905
2906 spin_lock_irqsave(&bp->rx_fs_lock, flags);
2907
2908 list_for_each_entry(item, &bp->rx_fs_list.list, list) {
2909 if (item->fs.location == cmd->fs.location) {
2910 /* disable screener regs for the flow entry */
2911 fs = &(item->fs);
2912 netdev_dbg(netdev,
2913 "Deleting flow filter entry,type=%u,queue=%u,loc=%u,src=%08X,dst=%08X,ps=%u,pd=%u\n",
2914 fs->flow_type, (int)fs->ring_cookie, fs->location,
2915 htonl(fs->h_u.tcp_ip4_spec.ip4src),
2916 htonl(fs->h_u.tcp_ip4_spec.ip4dst),
2917 htons(fs->h_u.tcp_ip4_spec.psrc),
2918 htons(fs->h_u.tcp_ip4_spec.pdst));
2919
2920 gem_writel_n(bp, SCRT2, fs->location, 0);
2921
2922 list_del(&item->list);
2923 bp->rx_fs_list.count--;
2924 spin_unlock_irqrestore(&bp->rx_fs_lock, flags);
2925 kfree(item);
2926 return 0;
2927 }
2928 }
2929
2930 spin_unlock_irqrestore(&bp->rx_fs_lock, flags);
2931 return -EINVAL;
2932}
2933
2934static int gem_get_flow_entry(struct net_device *netdev,
2935 struct ethtool_rxnfc *cmd)
2936{
2937 struct macb *bp = netdev_priv(netdev);
2938 struct ethtool_rx_fs_item *item;
2939
2940 list_for_each_entry(item, &bp->rx_fs_list.list, list) {
2941 if (item->fs.location == cmd->fs.location) {
2942 memcpy(&cmd->fs, &item->fs, sizeof(cmd->fs));
2943 return 0;
2944 }
2945 }
2946 return -EINVAL;
2947}
2948
2949static int gem_get_all_flow_entries(struct net_device *netdev,
2950 struct ethtool_rxnfc *cmd, u32 *rule_locs)
2951{
2952 struct macb *bp = netdev_priv(netdev);
2953 struct ethtool_rx_fs_item *item;
2954 uint32_t cnt = 0;
2955
2956 list_for_each_entry(item, &bp->rx_fs_list.list, list) {
2957 if (cnt == cmd->rule_cnt)
2958 return -EMSGSIZE;
2959 rule_locs[cnt] = item->fs.location;
2960 cnt++;
2961 }
2962 cmd->data = bp->max_tuples;
2963 cmd->rule_cnt = cnt;
2964
2965 return 0;
2966}
2967
2968static int gem_get_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *cmd,
2969 u32 *rule_locs)
2970{
2971 struct macb *bp = netdev_priv(netdev);
2972 int ret = 0;
2973
2974 switch (cmd->cmd) {
2975 case ETHTOOL_GRXRINGS:
2976 cmd->data = bp->num_queues;
2977 break;
2978 case ETHTOOL_GRXCLSRLCNT:
2979 cmd->rule_cnt = bp->rx_fs_list.count;
2980 break;
2981 case ETHTOOL_GRXCLSRULE:
2982 ret = gem_get_flow_entry(netdev, cmd);
2983 break;
2984 case ETHTOOL_GRXCLSRLALL:
2985 ret = gem_get_all_flow_entries(netdev, cmd, rule_locs);
2986 break;
2987 default:
2988 netdev_err(netdev,
2989 "Command parameter %d is not supported\n", cmd->cmd);
2990 ret = -EOPNOTSUPP;
2991 }
2992
2993 return ret;
2994}
2995
2996static int gem_set_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *cmd)
2997{
2998 struct macb *bp = netdev_priv(netdev);
2999 int ret;
3000
3001 switch (cmd->cmd) {
3002 case ETHTOOL_SRXCLSRLINS:
3003 if ((cmd->fs.location >= bp->max_tuples)
3004 || (cmd->fs.ring_cookie >= bp->num_queues)) {
3005 ret = -EINVAL;
3006 break;
3007 }
3008 ret = gem_add_flow_filter(netdev, cmd);
3009 break;
3010 case ETHTOOL_SRXCLSRLDEL:
3011 ret = gem_del_flow_filter(netdev, cmd);
3012 break;
3013 default:
3014 netdev_err(netdev,
3015 "Command parameter %d is not supported\n", cmd->cmd);
3016 ret = -EOPNOTSUPP;
3017 }
3018
3019 return ret;
3020}
3021
3022static const struct ethtool_ops macb_ethtool_ops = {
3023 .get_regs_len = macb_get_regs_len,
3024 .get_regs = macb_get_regs,
3025 .get_link = ethtool_op_get_link,
3026 .get_ts_info = ethtool_op_get_ts_info,
3027 .get_wol = macb_get_wol,
3028 .set_wol = macb_set_wol,
3029 .get_link_ksettings = phy_ethtool_get_link_ksettings,
3030 .set_link_ksettings = phy_ethtool_set_link_ksettings,
3031 .get_ringparam = macb_get_ringparam,
3032 .set_ringparam = macb_set_ringparam,
3033};
3034
3035static const struct ethtool_ops gem_ethtool_ops = {
3036 .get_regs_len = macb_get_regs_len,
3037 .get_regs = macb_get_regs,
3038 .get_link = ethtool_op_get_link,
3039 .get_ts_info = macb_get_ts_info,
3040 .get_ethtool_stats = gem_get_ethtool_stats,
3041 .get_strings = gem_get_ethtool_strings,
3042 .get_sset_count = gem_get_sset_count,
3043 .get_link_ksettings = phy_ethtool_get_link_ksettings,
3044 .set_link_ksettings = phy_ethtool_set_link_ksettings,
3045 .get_ringparam = macb_get_ringparam,
3046 .set_ringparam = macb_set_ringparam,
3047 .get_rxnfc = gem_get_rxnfc,
3048 .set_rxnfc = gem_set_rxnfc,
3049};
3050
3051static int macb_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
3052{
3053 struct phy_device *phydev = dev->phydev;
3054 struct macb *bp = netdev_priv(dev);
3055
3056 if (!netif_running(dev))
3057 return -EINVAL;
3058
3059 if (!phydev)
3060 return -ENODEV;
3061
3062 if (!bp->ptp_info)
3063 return phy_mii_ioctl(phydev, rq, cmd);
3064
3065 switch (cmd) {
3066 case SIOCSHWTSTAMP:
3067 return bp->ptp_info->set_hwtst(dev, rq, cmd);
3068 case SIOCGHWTSTAMP:
3069 return bp->ptp_info->get_hwtst(dev, rq);
3070 default:
3071 return phy_mii_ioctl(phydev, rq, cmd);
3072 }
3073}
3074
3075static int macb_set_features(struct net_device *netdev,
3076 netdev_features_t features)
3077{
3078 struct macb *bp = netdev_priv(netdev);
3079 netdev_features_t changed = features ^ netdev->features;
3080
3081 /* TX checksum offload */
3082 if ((changed & NETIF_F_HW_CSUM) && macb_is_gem(bp)) {
3083 u32 dmacfg;
3084
3085 dmacfg = gem_readl(bp, DMACFG);
3086 if (features & NETIF_F_HW_CSUM)
3087 dmacfg |= GEM_BIT(TXCOEN);
3088 else
3089 dmacfg &= ~GEM_BIT(TXCOEN);
3090 gem_writel(bp, DMACFG, dmacfg);
3091 }
3092
3093 /* RX checksum offload */
3094 if ((changed & NETIF_F_RXCSUM) && macb_is_gem(bp)) {
3095 u32 netcfg;
3096
3097 netcfg = gem_readl(bp, NCFGR);
3098 if (features & NETIF_F_RXCSUM &&
3099 !(netdev->flags & IFF_PROMISC))
3100 netcfg |= GEM_BIT(RXCOEN);
3101 else
3102 netcfg &= ~GEM_BIT(RXCOEN);
3103 gem_writel(bp, NCFGR, netcfg);
3104 }
3105
3106 /* RX Flow Filters */
3107 if ((changed & NETIF_F_NTUPLE) && macb_is_gem(bp)) {
3108 bool turn_on = features & NETIF_F_NTUPLE;
3109
3110 gem_enable_flow_filters(bp, turn_on);
3111 }
3112 return 0;
3113}
3114
3115static const struct net_device_ops macb_netdev_ops = {
3116 .ndo_open = macb_open,
3117 .ndo_stop = macb_close,
3118 .ndo_start_xmit = macb_start_xmit,
3119 .ndo_set_rx_mode = macb_set_rx_mode,
3120 .ndo_get_stats = macb_get_stats,
3121 .ndo_do_ioctl = macb_ioctl,
3122 .ndo_validate_addr = eth_validate_addr,
3123 .ndo_change_mtu = macb_change_mtu,
3124 .ndo_set_mac_address = eth_mac_addr,
3125#ifdef CONFIG_NET_POLL_CONTROLLER
3126 .ndo_poll_controller = macb_poll_controller,
3127#endif
3128 .ndo_set_features = macb_set_features,
3129 .ndo_features_check = macb_features_check,
3130};
3131
3132/* Configure peripheral capabilities according to device tree
3133 * and integration options used
3134 */
3135static void macb_configure_caps(struct macb *bp,
3136 const struct macb_config *dt_conf)
3137{
3138 u32 dcfg;
3139
3140 if (dt_conf)
3141 bp->caps = dt_conf->caps;
3142
3143 if (hw_is_gem(bp->regs, bp->native_io)) {
3144 bp->caps |= MACB_CAPS_MACB_IS_GEM;
3145
3146 dcfg = gem_readl(bp, DCFG1);
3147 if (GEM_BFEXT(IRQCOR, dcfg) == 0)
3148 bp->caps |= MACB_CAPS_ISR_CLEAR_ON_WRITE;
3149 dcfg = gem_readl(bp, DCFG2);
3150 if ((dcfg & (GEM_BIT(RX_PKT_BUFF) | GEM_BIT(TX_PKT_BUFF))) == 0)
3151 bp->caps |= MACB_CAPS_FIFO_MODE;
3152#ifdef CONFIG_MACB_USE_HWSTAMP
3153 if (gem_has_ptp(bp)) {
3154 if (!GEM_BFEXT(TSU, gem_readl(bp, DCFG5)))
3155 pr_err("GEM doesn't support hardware ptp.\n");
3156 else {
3157 bp->hw_dma_cap |= HW_DMA_CAP_PTP;
3158 bp->ptp_info = &gem_ptp_info;
3159 }
3160 }
3161#endif
3162 }
3163
3164 dev_dbg(&bp->pdev->dev, "Cadence caps 0x%08x\n", bp->caps);
3165}
3166
3167static void macb_probe_queues(void __iomem *mem,
3168 bool native_io,
3169 unsigned int *queue_mask,
3170 unsigned int *num_queues)
3171{
3172 unsigned int hw_q;
3173
3174 *queue_mask = 0x1;
3175 *num_queues = 1;
3176
3177 /* is it macb or gem ?
3178 *
3179 * We need to read directly from the hardware here because
3180 * we are early in the probe process and don't have the
3181 * MACB_CAPS_MACB_IS_GEM flag positioned
3182 */
3183 if (!hw_is_gem(mem, native_io))
3184 return;
3185
3186 /* bit 0 is never set but queue 0 always exists */
3187 *queue_mask = readl_relaxed(mem + GEM_DCFG6) & 0xff;
3188
3189 *queue_mask |= 0x1;
3190
3191 for (hw_q = 1; hw_q < MACB_MAX_QUEUES; ++hw_q)
3192 if (*queue_mask & (1 << hw_q))
3193 (*num_queues)++;
3194}
3195
3196static int macb_clk_init(struct platform_device *pdev, struct clk **pclk,
3197 struct clk **hclk, struct clk **tx_clk,
3198 struct clk **rx_clk)
3199{
3200 struct macb_platform_data *pdata;
3201 int err;
3202
3203 pdata = dev_get_platdata(&pdev->dev);
3204 if (pdata) {
3205 *pclk = pdata->pclk;
3206 *hclk = pdata->hclk;
3207 } else {
3208 *pclk = devm_clk_get(&pdev->dev, "pclk");
3209 *hclk = devm_clk_get(&pdev->dev, "hclk");
3210 }
3211
3212 if (IS_ERR(*pclk)) {
3213 err = PTR_ERR(*pclk);
3214 dev_err(&pdev->dev, "failed to get macb_clk (%u)\n", err);
3215 return err;
3216 }
3217
3218 if (IS_ERR(*hclk)) {
3219 err = PTR_ERR(*hclk);
3220 dev_err(&pdev->dev, "failed to get hclk (%u)\n", err);
3221 return err;
3222 }
3223
3224 *tx_clk = devm_clk_get(&pdev->dev, "tx_clk");
3225 if (IS_ERR(*tx_clk))
3226 *tx_clk = NULL;
3227
3228 *rx_clk = devm_clk_get(&pdev->dev, "rx_clk");
3229 if (IS_ERR(*rx_clk))
3230 *rx_clk = NULL;
3231
3232 err = clk_prepare_enable(*pclk);
3233 if (err) {
3234 dev_err(&pdev->dev, "failed to enable pclk (%u)\n", err);
3235 return err;
3236 }
3237
3238 err = clk_prepare_enable(*hclk);
3239 if (err) {
3240 dev_err(&pdev->dev, "failed to enable hclk (%u)\n", err);
3241 goto err_disable_pclk;
3242 }
3243
3244 err = clk_prepare_enable(*tx_clk);
3245 if (err) {
3246 dev_err(&pdev->dev, "failed to enable tx_clk (%u)\n", err);
3247 goto err_disable_hclk;
3248 }
3249
3250 err = clk_prepare_enable(*rx_clk);
3251 if (err) {
3252 dev_err(&pdev->dev, "failed to enable rx_clk (%u)\n", err);
3253 goto err_disable_txclk;
3254 }
3255
3256 return 0;
3257
3258err_disable_txclk:
3259 clk_disable_unprepare(*tx_clk);
3260
3261err_disable_hclk:
3262 clk_disable_unprepare(*hclk);
3263
3264err_disable_pclk:
3265 clk_disable_unprepare(*pclk);
3266
3267 return err;
3268}
3269
3270static int macb_init(struct platform_device *pdev)
3271{
3272 struct net_device *dev = platform_get_drvdata(pdev);
3273 unsigned int hw_q, q;
3274 struct macb *bp = netdev_priv(dev);
3275 struct macb_queue *queue;
3276 int err;
3277 u32 val, reg;
3278
3279 bp->tx_ring_size = DEFAULT_TX_RING_SIZE;
3280 bp->rx_ring_size = DEFAULT_RX_RING_SIZE;
3281
3282 /* set the queue register mapping once for all: queue0 has a special
3283 * register mapping but we don't want to test the queue index then
3284 * compute the corresponding register offset at run time.
3285 */
3286 for (hw_q = 0, q = 0; hw_q < MACB_MAX_QUEUES; ++hw_q) {
3287 if (!(bp->queue_mask & (1 << hw_q)))
3288 continue;
3289
3290 queue = &bp->queues[q];
3291 queue->bp = bp;
3292 netif_napi_add(dev, &queue->napi, macb_poll, 64);
3293 if (hw_q) {
3294 queue->ISR = GEM_ISR(hw_q - 1);
3295 queue->IER = GEM_IER(hw_q - 1);
3296 queue->IDR = GEM_IDR(hw_q - 1);
3297 queue->IMR = GEM_IMR(hw_q - 1);
3298 queue->TBQP = GEM_TBQP(hw_q - 1);
3299 queue->RBQP = GEM_RBQP(hw_q - 1);
3300 queue->RBQS = GEM_RBQS(hw_q - 1);
3301#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
3302 if (bp->hw_dma_cap & HW_DMA_CAP_64B) {
3303 queue->TBQPH = GEM_TBQPH(hw_q - 1);
3304 queue->RBQPH = GEM_RBQPH(hw_q - 1);
3305 }
3306#endif
3307 } else {
3308 /* queue0 uses legacy registers */
3309 queue->ISR = MACB_ISR;
3310 queue->IER = MACB_IER;
3311 queue->IDR = MACB_IDR;
3312 queue->IMR = MACB_IMR;
3313 queue->TBQP = MACB_TBQP;
3314 queue->RBQP = MACB_RBQP;
3315#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
3316 if (bp->hw_dma_cap & HW_DMA_CAP_64B) {
3317 queue->TBQPH = MACB_TBQPH;
3318 queue->RBQPH = MACB_RBQPH;
3319 }
3320#endif
3321 }
3322
3323 /* get irq: here we use the linux queue index, not the hardware
3324 * queue index. the queue irq definitions in the device tree
3325 * must remove the optional gaps that could exist in the
3326 * hardware queue mask.
3327 */
3328 queue->irq = platform_get_irq(pdev, q);
3329 err = devm_request_irq(&pdev->dev, queue->irq, macb_interrupt,
3330 IRQF_SHARED, dev->name, queue);
3331 if (err) {
3332 dev_err(&pdev->dev,
3333 "Unable to request IRQ %d (error %d)\n",
3334 queue->irq, err);
3335 return err;
3336 }
3337
3338 INIT_WORK(&queue->tx_error_task, macb_tx_error_task);
3339 q++;
3340 }
3341
3342 dev->netdev_ops = &macb_netdev_ops;
3343
3344 /* setup appropriated routines according to adapter type */
3345 if (macb_is_gem(bp)) {
3346 bp->max_tx_length = GEM_MAX_TX_LEN;
3347 bp->macbgem_ops.mog_alloc_rx_buffers = gem_alloc_rx_buffers;
3348 bp->macbgem_ops.mog_free_rx_buffers = gem_free_rx_buffers;
3349 bp->macbgem_ops.mog_init_rings = gem_init_rings;
3350 bp->macbgem_ops.mog_rx = gem_rx;
3351 dev->ethtool_ops = &gem_ethtool_ops;
3352 } else {
3353 bp->max_tx_length = MACB_MAX_TX_LEN;
3354 bp->macbgem_ops.mog_alloc_rx_buffers = macb_alloc_rx_buffers;
3355 bp->macbgem_ops.mog_free_rx_buffers = macb_free_rx_buffers;
3356 bp->macbgem_ops.mog_init_rings = macb_init_rings;
3357 bp->macbgem_ops.mog_rx = macb_rx;
3358 dev->ethtool_ops = &macb_ethtool_ops;
3359 }
3360
3361 /* Set features */
3362 dev->hw_features = NETIF_F_SG;
3363
3364 /* Check LSO capability */
3365 if (GEM_BFEXT(PBUF_LSO, gem_readl(bp, DCFG6)))
3366 dev->hw_features |= MACB_NETIF_LSO;
3367
3368 /* Checksum offload is only available on gem with packet buffer */
3369 if (macb_is_gem(bp) && !(bp->caps & MACB_CAPS_FIFO_MODE))
3370 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
3371 if (bp->caps & MACB_CAPS_SG_DISABLED)
3372 dev->hw_features &= ~NETIF_F_SG;
3373 dev->features = dev->hw_features;
3374
3375 /* Check RX Flow Filters support.
3376 * Max Rx flows set by availability of screeners & compare regs:
3377 * each 4-tuple define requires 1 T2 screener reg + 3 compare regs
3378 */
3379 reg = gem_readl(bp, DCFG8);
3380 bp->max_tuples = min((GEM_BFEXT(SCR2CMP, reg) / 3),
3381 GEM_BFEXT(T2SCR, reg));
3382 if (bp->max_tuples > 0) {
3383 /* also needs one ethtype match to check IPv4 */
3384 if (GEM_BFEXT(SCR2ETH, reg) > 0) {
3385 /* program this reg now */
3386 reg = 0;
3387 reg = GEM_BFINS(ETHTCMP, (uint16_t)ETH_P_IP, reg);
3388 gem_writel_n(bp, ETHT, SCRT2_ETHT, reg);
3389 /* Filtering is supported in hw but don't enable it in kernel now */
3390 dev->hw_features |= NETIF_F_NTUPLE;
3391 /* init Rx flow definitions */
3392 INIT_LIST_HEAD(&bp->rx_fs_list.list);
3393 bp->rx_fs_list.count = 0;
3394 spin_lock_init(&bp->rx_fs_lock);
3395 } else
3396 bp->max_tuples = 0;
3397 }
3398
3399 if (!(bp->caps & MACB_CAPS_USRIO_DISABLED)) {
3400 val = 0;
3401 if (bp->phy_interface == PHY_INTERFACE_MODE_RGMII)
3402 val = GEM_BIT(RGMII);
3403 else if (bp->phy_interface == PHY_INTERFACE_MODE_RMII &&
3404 (bp->caps & MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII))
3405 val = MACB_BIT(RMII);
3406 else if (!(bp->caps & MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII))
3407 val = MACB_BIT(MII);
3408
3409 if (bp->caps & MACB_CAPS_USRIO_HAS_CLKEN)
3410 val |= MACB_BIT(CLKEN);
3411
3412 macb_or_gem_writel(bp, USRIO, val);
3413 }
3414
3415 /* Set MII management clock divider */
3416 val = macb_mdc_clk_div(bp);
3417 val |= macb_dbw(bp);
3418 if (bp->phy_interface == PHY_INTERFACE_MODE_SGMII)
3419 val |= GEM_BIT(SGMIIEN) | GEM_BIT(PCSSEL);
3420 macb_writel(bp, NCFGR, val);
3421
3422 return 0;
3423}
3424
3425#if defined(CONFIG_OF)
3426/* 1518 rounded up */
3427#define AT91ETHER_MAX_RBUFF_SZ 0x600
3428/* max number of receive buffers */
3429#define AT91ETHER_MAX_RX_DESCR 9
3430
3431/* Initialize and start the Receiver and Transmit subsystems */
3432static int at91ether_start(struct net_device *dev)
3433{
3434 struct macb *lp = netdev_priv(dev);
3435 struct macb_queue *q = &lp->queues[0];
3436 struct macb_dma_desc *desc;
3437 dma_addr_t addr;
3438 u32 ctl;
3439 int i;
3440
3441 q->rx_ring = dma_alloc_coherent(&lp->pdev->dev,
3442 (AT91ETHER_MAX_RX_DESCR *
3443 macb_dma_desc_get_size(lp)),
3444 &q->rx_ring_dma, GFP_KERNEL);
3445 if (!q->rx_ring)
3446 return -ENOMEM;
3447
3448 q->rx_buffers = dma_alloc_coherent(&lp->pdev->dev,
3449 AT91ETHER_MAX_RX_DESCR *
3450 AT91ETHER_MAX_RBUFF_SZ,
3451 &q->rx_buffers_dma, GFP_KERNEL);
3452 if (!q->rx_buffers) {
3453 dma_free_coherent(&lp->pdev->dev,
3454 AT91ETHER_MAX_RX_DESCR *
3455 macb_dma_desc_get_size(lp),
3456 q->rx_ring, q->rx_ring_dma);
3457 q->rx_ring = NULL;
3458 return -ENOMEM;
3459 }
3460
3461 addr = q->rx_buffers_dma;
3462 for (i = 0; i < AT91ETHER_MAX_RX_DESCR; i++) {
3463 desc = macb_rx_desc(q, i);
3464 macb_set_addr(lp, desc, addr);
3465 desc->ctrl = 0;
3466 addr += AT91ETHER_MAX_RBUFF_SZ;
3467 }
3468
3469 /* Set the Wrap bit on the last descriptor */
3470 desc->addr |= MACB_BIT(RX_WRAP);
3471
3472 /* Reset buffer index */
3473 q->rx_tail = 0;
3474
3475 /* Program address of descriptor list in Rx Buffer Queue register */
3476 macb_writel(lp, RBQP, q->rx_ring_dma);
3477
3478 /* Enable Receive and Transmit */
3479 ctl = macb_readl(lp, NCR);
3480 macb_writel(lp, NCR, ctl | MACB_BIT(RE) | MACB_BIT(TE));
3481
3482 return 0;
3483}
3484
3485/* Open the ethernet interface */
3486static int at91ether_open(struct net_device *dev)
3487{
3488 struct macb *lp = netdev_priv(dev);
3489 u32 ctl;
3490 int ret;
3491
3492 /* Clear internal statistics */
3493 ctl = macb_readl(lp, NCR);
3494 macb_writel(lp, NCR, ctl | MACB_BIT(CLRSTAT));
3495
3496 macb_set_hwaddr(lp);
3497
3498 ret = at91ether_start(dev);
3499 if (ret)
3500 return ret;
3501
3502 /* Enable MAC interrupts */
3503 macb_writel(lp, IER, MACB_BIT(RCOMP) |
3504 MACB_BIT(RXUBR) |
3505 MACB_BIT(ISR_TUND) |
3506 MACB_BIT(ISR_RLE) |
3507 MACB_BIT(TCOMP) |
3508 MACB_BIT(ISR_ROVR) |
3509 MACB_BIT(HRESP));
3510
3511 /* schedule a link state check */
3512 phy_start(dev->phydev);
3513
3514 netif_start_queue(dev);
3515
3516 return 0;
3517}
3518
3519/* Close the interface */
3520static int at91ether_close(struct net_device *dev)
3521{
3522 struct macb *lp = netdev_priv(dev);
3523 struct macb_queue *q = &lp->queues[0];
3524 u32 ctl;
3525
3526 /* Disable Receiver and Transmitter */
3527 ctl = macb_readl(lp, NCR);
3528 macb_writel(lp, NCR, ctl & ~(MACB_BIT(TE) | MACB_BIT(RE)));
3529
3530 /* Disable MAC interrupts */
3531 macb_writel(lp, IDR, MACB_BIT(RCOMP) |
3532 MACB_BIT(RXUBR) |
3533 MACB_BIT(ISR_TUND) |
3534 MACB_BIT(ISR_RLE) |
3535 MACB_BIT(TCOMP) |
3536 MACB_BIT(ISR_ROVR) |
3537 MACB_BIT(HRESP));
3538
3539 netif_stop_queue(dev);
3540
3541 dma_free_coherent(&lp->pdev->dev,
3542 AT91ETHER_MAX_RX_DESCR *
3543 macb_dma_desc_get_size(lp),
3544 q->rx_ring, q->rx_ring_dma);
3545 q->rx_ring = NULL;
3546
3547 dma_free_coherent(&lp->pdev->dev,
3548 AT91ETHER_MAX_RX_DESCR * AT91ETHER_MAX_RBUFF_SZ,
3549 q->rx_buffers, q->rx_buffers_dma);
3550 q->rx_buffers = NULL;
3551
3552 return 0;
3553}
3554
3555/* Transmit packet */
3556static int at91ether_start_xmit(struct sk_buff *skb, struct net_device *dev)
3557{
3558 struct macb *lp = netdev_priv(dev);
3559
3560 if (macb_readl(lp, TSR) & MACB_BIT(RM9200_BNQ)) {
3561 netif_stop_queue(dev);
3562
3563 /* Store packet information (to free when Tx completed) */
3564 lp->skb = skb;
3565 lp->skb_length = skb->len;
3566 lp->skb_physaddr = dma_map_single(NULL, skb->data, skb->len,
3567 DMA_TO_DEVICE);
3568 if (dma_mapping_error(NULL, lp->skb_physaddr)) {
3569 dev_kfree_skb_any(skb);
3570 dev->stats.tx_dropped++;
3571 netdev_err(dev, "%s: DMA mapping error\n", __func__);
3572 return NETDEV_TX_OK;
3573 }
3574
3575 /* Set address of the data in the Transmit Address register */
3576 macb_writel(lp, TAR, lp->skb_physaddr);
3577 /* Set length of the packet in the Transmit Control register */
3578 macb_writel(lp, TCR, skb->len);
3579
3580 } else {
3581 netdev_err(dev, "%s called, but device is busy!\n", __func__);
3582 return NETDEV_TX_BUSY;
3583 }
3584
3585 return NETDEV_TX_OK;
3586}
3587
3588/* Extract received frame from buffer descriptors and sent to upper layers.
3589 * (Called from interrupt context)
3590 */
3591static void at91ether_rx(struct net_device *dev)
3592{
3593 struct macb *lp = netdev_priv(dev);
3594 struct macb_queue *q = &lp->queues[0];
3595 struct macb_dma_desc *desc;
3596 unsigned char *p_recv;
3597 struct sk_buff *skb;
3598 unsigned int pktlen;
3599
3600 desc = macb_rx_desc(q, q->rx_tail);
3601 while (desc->addr & MACB_BIT(RX_USED)) {
3602 p_recv = q->rx_buffers + q->rx_tail * AT91ETHER_MAX_RBUFF_SZ;
3603 pktlen = MACB_BF(RX_FRMLEN, desc->ctrl);
3604 skb = netdev_alloc_skb(dev, pktlen + 2);
3605 if (skb) {
3606 skb_reserve(skb, 2);
3607 skb_put_data(skb, p_recv, pktlen);
3608
3609 skb->protocol = eth_type_trans(skb, dev);
3610 dev->stats.rx_packets++;
3611 dev->stats.rx_bytes += pktlen;
3612 netif_rx(skb);
3613 } else {
3614 dev->stats.rx_dropped++;
3615 }
3616
3617 if (desc->ctrl & MACB_BIT(RX_MHASH_MATCH))
3618 dev->stats.multicast++;
3619
3620 /* reset ownership bit */
3621 desc->addr &= ~MACB_BIT(RX_USED);
3622
3623 /* wrap after last buffer */
3624 if (q->rx_tail == AT91ETHER_MAX_RX_DESCR - 1)
3625 q->rx_tail = 0;
3626 else
3627 q->rx_tail++;
3628
3629 desc = macb_rx_desc(q, q->rx_tail);
3630 }
3631}
3632
3633/* MAC interrupt handler */
3634static irqreturn_t at91ether_interrupt(int irq, void *dev_id)
3635{
3636 struct net_device *dev = dev_id;
3637 struct macb *lp = netdev_priv(dev);
3638 u32 intstatus, ctl;
3639
3640 /* MAC Interrupt Status register indicates what interrupts are pending.
3641 * It is automatically cleared once read.
3642 */
3643 intstatus = macb_readl(lp, ISR);
3644
3645 /* Receive complete */
3646 if (intstatus & MACB_BIT(RCOMP))
3647 at91ether_rx(dev);
3648
3649 /* Transmit complete */
3650 if (intstatus & MACB_BIT(TCOMP)) {
3651 /* The TCOM bit is set even if the transmission failed */
3652 if (intstatus & (MACB_BIT(ISR_TUND) | MACB_BIT(ISR_RLE)))
3653 dev->stats.tx_errors++;
3654
3655 if (lp->skb) {
3656 dev_kfree_skb_irq(lp->skb);
3657 lp->skb = NULL;
3658 dma_unmap_single(NULL, lp->skb_physaddr,
3659 lp->skb_length, DMA_TO_DEVICE);
3660 dev->stats.tx_packets++;
3661 dev->stats.tx_bytes += lp->skb_length;
3662 }
3663 netif_wake_queue(dev);
3664 }
3665
3666 /* Work-around for EMAC Errata section 41.3.1 */
3667 if (intstatus & MACB_BIT(RXUBR)) {
3668 ctl = macb_readl(lp, NCR);
3669 macb_writel(lp, NCR, ctl & ~MACB_BIT(RE));
3670 wmb();
3671 macb_writel(lp, NCR, ctl | MACB_BIT(RE));
3672 }
3673
3674 if (intstatus & MACB_BIT(ISR_ROVR))
3675 netdev_err(dev, "ROVR error\n");
3676
3677 return IRQ_HANDLED;
3678}
3679
3680#ifdef CONFIG_NET_POLL_CONTROLLER
3681static void at91ether_poll_controller(struct net_device *dev)
3682{
3683 unsigned long flags;
3684
3685 local_irq_save(flags);
3686 at91ether_interrupt(dev->irq, dev);
3687 local_irq_restore(flags);
3688}
3689#endif
3690
3691static const struct net_device_ops at91ether_netdev_ops = {
3692 .ndo_open = at91ether_open,
3693 .ndo_stop = at91ether_close,
3694 .ndo_start_xmit = at91ether_start_xmit,
3695 .ndo_get_stats = macb_get_stats,
3696 .ndo_set_rx_mode = macb_set_rx_mode,
3697 .ndo_set_mac_address = eth_mac_addr,
3698 .ndo_do_ioctl = macb_ioctl,
3699 .ndo_validate_addr = eth_validate_addr,
3700#ifdef CONFIG_NET_POLL_CONTROLLER
3701 .ndo_poll_controller = at91ether_poll_controller,
3702#endif
3703};
3704
3705static int at91ether_clk_init(struct platform_device *pdev, struct clk **pclk,
3706 struct clk **hclk, struct clk **tx_clk,
3707 struct clk **rx_clk)
3708{
3709 int err;
3710
3711 *hclk = NULL;
3712 *tx_clk = NULL;
3713 *rx_clk = NULL;
3714
3715 *pclk = devm_clk_get(&pdev->dev, "ether_clk");
3716 if (IS_ERR(*pclk))
3717 return PTR_ERR(*pclk);
3718
3719 err = clk_prepare_enable(*pclk);
3720 if (err) {
3721 dev_err(&pdev->dev, "failed to enable pclk (%u)\n", err);
3722 return err;
3723 }
3724
3725 return 0;
3726}
3727
3728static int at91ether_init(struct platform_device *pdev)
3729{
3730 struct net_device *dev = platform_get_drvdata(pdev);
3731 struct macb *bp = netdev_priv(dev);
3732 int err;
3733 u32 reg;
3734
3735 dev->netdev_ops = &at91ether_netdev_ops;
3736 dev->ethtool_ops = &macb_ethtool_ops;
3737
3738 err = devm_request_irq(&pdev->dev, dev->irq, at91ether_interrupt,
3739 0, dev->name, dev);
3740 if (err)
3741 return err;
3742
3743 macb_writel(bp, NCR, 0);
3744
3745 reg = MACB_BF(CLK, MACB_CLK_DIV32) | MACB_BIT(BIG);
3746 if (bp->phy_interface == PHY_INTERFACE_MODE_RMII)
3747 reg |= MACB_BIT(RM9200_RMII);
3748
3749 macb_writel(bp, NCFGR, reg);
3750
3751 return 0;
3752}
3753
3754static const struct macb_config at91sam9260_config = {
3755 .caps = MACB_CAPS_USRIO_HAS_CLKEN | MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
3756 .clk_init = macb_clk_init,
3757 .init = macb_init,
3758};
3759
3760static const struct macb_config pc302gem_config = {
3761 .caps = MACB_CAPS_SG_DISABLED | MACB_CAPS_GIGABIT_MODE_AVAILABLE,
3762 .dma_burst_length = 16,
3763 .clk_init = macb_clk_init,
3764 .init = macb_init,
3765};
3766
3767static const struct macb_config sama5d2_config = {
3768 .caps = MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
3769 .dma_burst_length = 16,
3770 .clk_init = macb_clk_init,
3771 .init = macb_init,
3772};
3773
3774static const struct macb_config sama5d3_config = {
3775 .caps = MACB_CAPS_SG_DISABLED | MACB_CAPS_GIGABIT_MODE_AVAILABLE
3776 | MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII | MACB_CAPS_JUMBO,
3777 .dma_burst_length = 16,
3778 .clk_init = macb_clk_init,
3779 .init = macb_init,
3780 .jumbo_max_len = 10240,
3781};
3782
3783static const struct macb_config sama5d4_config = {
3784 .caps = MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
3785 .dma_burst_length = 4,
3786 .clk_init = macb_clk_init,
3787 .init = macb_init,
3788};
3789
3790static const struct macb_config emac_config = {
3791 .clk_init = at91ether_clk_init,
3792 .init = at91ether_init,
3793};
3794
3795static const struct macb_config np4_config = {
3796 .caps = MACB_CAPS_USRIO_DISABLED,
3797 .clk_init = macb_clk_init,
3798 .init = macb_init,
3799};
3800
3801static const struct macb_config zynqmp_config = {
3802 .caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE |
3803 MACB_CAPS_JUMBO |
3804 MACB_CAPS_GEM_HAS_PTP,
3805 .dma_burst_length = 16,
3806 .clk_init = macb_clk_init,
3807 .init = macb_init,
3808 .jumbo_max_len = 10240,
3809};
3810
3811static const struct macb_config zynq_config = {
3812 .caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE | MACB_CAPS_NO_GIGABIT_HALF,
3813 .dma_burst_length = 16,
3814 .clk_init = macb_clk_init,
3815 .init = macb_init,
3816};
3817
3818static const struct of_device_id macb_dt_ids[] = {
3819 { .compatible = "cdns,at32ap7000-macb" },
3820 { .compatible = "cdns,at91sam9260-macb", .data = &at91sam9260_config },
3821 { .compatible = "cdns,macb" },
3822 { .compatible = "cdns,np4-macb", .data = &np4_config },
3823 { .compatible = "cdns,pc302-gem", .data = &pc302gem_config },
3824 { .compatible = "cdns,gem", .data = &pc302gem_config },
3825 { .compatible = "atmel,sama5d2-gem", .data = &sama5d2_config },
3826 { .compatible = "atmel,sama5d3-gem", .data = &sama5d3_config },
3827 { .compatible = "atmel,sama5d4-gem", .data = &sama5d4_config },
3828 { .compatible = "cdns,at91rm9200-emac", .data = &emac_config },
3829 { .compatible = "cdns,emac", .data = &emac_config },
3830 { .compatible = "cdns,zynqmp-gem", .data = &zynqmp_config},
3831 { .compatible = "cdns,zynq-gem", .data = &zynq_config },
3832 { /* sentinel */ }
3833};
3834MODULE_DEVICE_TABLE(of, macb_dt_ids);
3835#endif /* CONFIG_OF */
3836
3837static const struct macb_config default_gem_config = {
3838 .caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE |
3839 MACB_CAPS_JUMBO |
3840 MACB_CAPS_GEM_HAS_PTP,
3841 .dma_burst_length = 16,
3842 .clk_init = macb_clk_init,
3843 .init = macb_init,
3844 .jumbo_max_len = 10240,
3845};
3846
3847static int macb_probe(struct platform_device *pdev)
3848{
3849 const struct macb_config *macb_config = &default_gem_config;
3850 int (*clk_init)(struct platform_device *, struct clk **,
3851 struct clk **, struct clk **, struct clk **)
3852 = macb_config->clk_init;
3853 int (*init)(struct platform_device *) = macb_config->init;
3854 struct device_node *np = pdev->dev.of_node;
3855 struct clk *pclk, *hclk = NULL, *tx_clk = NULL, *rx_clk = NULL;
3856 unsigned int queue_mask, num_queues;
3857 struct macb_platform_data *pdata;
3858 bool native_io;
3859 struct phy_device *phydev;
3860 struct net_device *dev;
3861 struct resource *regs;
3862 void __iomem *mem;
3863 const char *mac;
3864 struct macb *bp;
3865 int err;
3866
3867 regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
3868 mem = devm_ioremap_resource(&pdev->dev, regs);
3869 if (IS_ERR(mem))
3870 return PTR_ERR(mem);
3871
3872 if (np) {
3873 const struct of_device_id *match;
3874
3875 match = of_match_node(macb_dt_ids, np);
3876 if (match && match->data) {
3877 macb_config = match->data;
3878 clk_init = macb_config->clk_init;
3879 init = macb_config->init;
3880 }
3881 }
3882
3883 err = clk_init(pdev, &pclk, &hclk, &tx_clk, &rx_clk);
3884 if (err)
3885 return err;
3886
3887 native_io = hw_is_native_io(mem);
3888
3889 macb_probe_queues(mem, native_io, &queue_mask, &num_queues);
3890 dev = alloc_etherdev_mq(sizeof(*bp), num_queues);
3891 if (!dev) {
3892 err = -ENOMEM;
3893 goto err_disable_clocks;
3894 }
3895
3896 dev->base_addr = regs->start;
3897
3898 SET_NETDEV_DEV(dev, &pdev->dev);
3899
3900 bp = netdev_priv(dev);
3901 bp->pdev = pdev;
3902 bp->dev = dev;
3903 bp->regs = mem;
3904 bp->native_io = native_io;
3905 if (native_io) {
3906 bp->macb_reg_readl = hw_readl_native;
3907 bp->macb_reg_writel = hw_writel_native;
3908 } else {
3909 bp->macb_reg_readl = hw_readl;
3910 bp->macb_reg_writel = hw_writel;
3911 }
3912 bp->num_queues = num_queues;
3913 bp->queue_mask = queue_mask;
3914 if (macb_config)
3915 bp->dma_burst_length = macb_config->dma_burst_length;
3916 bp->pclk = pclk;
3917 bp->hclk = hclk;
3918 bp->tx_clk = tx_clk;
3919 bp->rx_clk = rx_clk;
3920 if (macb_config)
3921 bp->jumbo_max_len = macb_config->jumbo_max_len;
3922
3923 bp->wol = 0;
3924 if (of_get_property(np, "magic-packet", NULL))
3925 bp->wol |= MACB_WOL_HAS_MAGIC_PACKET;
3926 device_init_wakeup(&pdev->dev, bp->wol & MACB_WOL_HAS_MAGIC_PACKET);
3927
3928 spin_lock_init(&bp->lock);
3929
3930 /* setup capabilities */
3931 macb_configure_caps(bp, macb_config);
3932
3933#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
3934 if (GEM_BFEXT(DAW64, gem_readl(bp, DCFG6))) {
3935 dma_set_mask(&pdev->dev, DMA_BIT_MASK(44));
3936 bp->hw_dma_cap |= HW_DMA_CAP_64B;
3937 }
3938#endif
3939 platform_set_drvdata(pdev, dev);
3940
3941 dev->irq = platform_get_irq(pdev, 0);
3942 if (dev->irq < 0) {
3943 err = dev->irq;
3944 goto err_out_free_netdev;
3945 }
3946
3947 /* MTU range: 68 - 1500 or 10240 */
3948 dev->min_mtu = GEM_MTU_MIN_SIZE;
3949 if (bp->caps & MACB_CAPS_JUMBO)
3950 dev->max_mtu = gem_readl(bp, JML) - ETH_HLEN - ETH_FCS_LEN;
3951 else
3952 dev->max_mtu = ETH_DATA_LEN;
3953
3954 mac = of_get_mac_address(np);
3955 if (mac) {
3956 ether_addr_copy(bp->dev->dev_addr, mac);
3957 } else {
3958 err = of_get_nvmem_mac_address(np, bp->dev->dev_addr);
3959 if (err) {
3960 if (err == -EPROBE_DEFER)
3961 goto err_out_free_netdev;
3962 macb_get_hwaddr(bp);
3963 }
3964 }
3965
3966 err = of_get_phy_mode(np);
3967 if (err < 0) {
3968 pdata = dev_get_platdata(&pdev->dev);
3969 if (pdata && pdata->is_rmii)
3970 bp->phy_interface = PHY_INTERFACE_MODE_RMII;
3971 else
3972 bp->phy_interface = PHY_INTERFACE_MODE_MII;
3973 } else {
3974 bp->phy_interface = err;
3975 }
3976
3977 /* IP specific init */
3978 err = init(pdev);
3979 if (err)
3980 goto err_out_free_netdev;
3981
3982 err = macb_mii_init(bp);
3983 if (err)
3984 goto err_out_free_netdev;
3985
3986 phydev = dev->phydev;
3987
3988 netif_carrier_off(dev);
3989
3990 err = register_netdev(dev);
3991 if (err) {
3992 dev_err(&pdev->dev, "Cannot register net device, aborting.\n");
3993 goto err_out_unregister_mdio;
3994 }
3995
3996 tasklet_init(&bp->hresp_err_tasklet, macb_hresp_error_task,
3997 (unsigned long)bp);
3998
3999 phy_attached_info(phydev);
4000
4001 netdev_info(dev, "Cadence %s rev 0x%08x at 0x%08lx irq %d (%pM)\n",
4002 macb_is_gem(bp) ? "GEM" : "MACB", macb_readl(bp, MID),
4003 dev->base_addr, dev->irq, dev->dev_addr);
4004
4005 return 0;
4006
4007err_out_unregister_mdio:
4008 phy_disconnect(dev->phydev);
4009 mdiobus_unregister(bp->mii_bus);
4010 of_node_put(bp->phy_node);
4011 if (np && of_phy_is_fixed_link(np))
4012 of_phy_deregister_fixed_link(np);
4013 mdiobus_free(bp->mii_bus);
4014
4015err_out_free_netdev:
4016 free_netdev(dev);
4017
4018err_disable_clocks:
4019 clk_disable_unprepare(tx_clk);
4020 clk_disable_unprepare(hclk);
4021 clk_disable_unprepare(pclk);
4022 clk_disable_unprepare(rx_clk);
4023
4024 return err;
4025}
4026
4027static int macb_remove(struct platform_device *pdev)
4028{
4029 struct net_device *dev;
4030 struct macb *bp;
4031 struct device_node *np = pdev->dev.of_node;
4032
4033 dev = platform_get_drvdata(pdev);
4034
4035 if (dev) {
4036 bp = netdev_priv(dev);
4037 if (dev->phydev)
4038 phy_disconnect(dev->phydev);
4039 mdiobus_unregister(bp->mii_bus);
4040 if (np && of_phy_is_fixed_link(np))
4041 of_phy_deregister_fixed_link(np);
4042 dev->phydev = NULL;
4043 mdiobus_free(bp->mii_bus);
4044
4045 unregister_netdev(dev);
4046 clk_disable_unprepare(bp->tx_clk);
4047 clk_disable_unprepare(bp->hclk);
4048 clk_disable_unprepare(bp->pclk);
4049 clk_disable_unprepare(bp->rx_clk);
4050 of_node_put(bp->phy_node);
4051 free_netdev(dev);
4052 }
4053
4054 return 0;
4055}
4056
4057static int __maybe_unused macb_suspend(struct device *dev)
4058{
4059 struct platform_device *pdev = to_platform_device(dev);
4060 struct net_device *netdev = platform_get_drvdata(pdev);
4061 struct macb *bp = netdev_priv(netdev);
4062
4063 netif_carrier_off(netdev);
4064 netif_device_detach(netdev);
4065
4066 if (bp->wol & MACB_WOL_ENABLED) {
4067 macb_writel(bp, IER, MACB_BIT(WOL));
4068 macb_writel(bp, WOL, MACB_BIT(MAG));
4069 enable_irq_wake(bp->queues[0].irq);
4070 } else {
4071 clk_disable_unprepare(bp->tx_clk);
4072 clk_disable_unprepare(bp->hclk);
4073 clk_disable_unprepare(bp->pclk);
4074 clk_disable_unprepare(bp->rx_clk);
4075 }
4076
4077 return 0;
4078}
4079
4080static int __maybe_unused macb_resume(struct device *dev)
4081{
4082 struct platform_device *pdev = to_platform_device(dev);
4083 struct net_device *netdev = platform_get_drvdata(pdev);
4084 struct macb *bp = netdev_priv(netdev);
4085
4086 if (bp->wol & MACB_WOL_ENABLED) {
4087 macb_writel(bp, IDR, MACB_BIT(WOL));
4088 macb_writel(bp, WOL, 0);
4089 disable_irq_wake(bp->queues[0].irq);
4090 } else {
4091 clk_prepare_enable(bp->pclk);
4092 clk_prepare_enable(bp->hclk);
4093 clk_prepare_enable(bp->tx_clk);
4094 clk_prepare_enable(bp->rx_clk);
4095 }
4096
4097 netif_device_attach(netdev);
4098
4099 return 0;
4100}
4101
4102static SIMPLE_DEV_PM_OPS(macb_pm_ops, macb_suspend, macb_resume);
4103
4104static struct platform_driver macb_driver = {
4105 .probe = macb_probe,
4106 .remove = macb_remove,
4107 .driver = {
4108 .name = "macb",
4109 .of_match_table = of_match_ptr(macb_dt_ids),
4110 .pm = &macb_pm_ops,
4111 },
4112};
4113
4114module_platform_driver(macb_driver);
4115
4116MODULE_LICENSE("GPL");
4117MODULE_DESCRIPTION("Cadence MACB/GEM Ethernet driver");
4118MODULE_AUTHOR("Haavard Skinnemoen (Atmel)");
4119MODULE_ALIAS("platform:macb");
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Cadence MACB/GEM Ethernet Controller driver
4 *
5 * Copyright (C) 2004-2006 Atmel Corporation
6 */
7
8#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9#include <linux/clk.h>
10#include <linux/clk-provider.h>
11#include <linux/crc32.h>
12#include <linux/module.h>
13#include <linux/moduleparam.h>
14#include <linux/kernel.h>
15#include <linux/types.h>
16#include <linux/circ_buf.h>
17#include <linux/slab.h>
18#include <linux/init.h>
19#include <linux/io.h>
20#include <linux/gpio.h>
21#include <linux/gpio/consumer.h>
22#include <linux/interrupt.h>
23#include <linux/netdevice.h>
24#include <linux/etherdevice.h>
25#include <linux/dma-mapping.h>
26#include <linux/platform_device.h>
27#include <linux/phylink.h>
28#include <linux/of.h>
29#include <linux/of_gpio.h>
30#include <linux/of_mdio.h>
31#include <linux/of_net.h>
32#include <linux/ip.h>
33#include <linux/udp.h>
34#include <linux/tcp.h>
35#include <linux/iopoll.h>
36#include <linux/phy/phy.h>
37#include <linux/pm_runtime.h>
38#include <linux/ptp_classify.h>
39#include <linux/reset.h>
40#include <linux/firmware/xlnx-zynqmp.h>
41#include <linux/inetdevice.h>
42#include "macb.h"
43
44/* This structure is only used for MACB on SiFive FU540 devices */
45struct sifive_fu540_macb_mgmt {
46 void __iomem *reg;
47 unsigned long rate;
48 struct clk_hw hw;
49};
50
51#define MACB_RX_BUFFER_SIZE 128
52#define RX_BUFFER_MULTIPLE 64 /* bytes */
53
54#define DEFAULT_RX_RING_SIZE 512 /* must be power of 2 */
55#define MIN_RX_RING_SIZE 64
56#define MAX_RX_RING_SIZE 8192
57#define RX_RING_BYTES(bp) (macb_dma_desc_get_size(bp) \
58 * (bp)->rx_ring_size)
59
60#define DEFAULT_TX_RING_SIZE 512 /* must be power of 2 */
61#define MIN_TX_RING_SIZE 64
62#define MAX_TX_RING_SIZE 4096
63#define TX_RING_BYTES(bp) (macb_dma_desc_get_size(bp) \
64 * (bp)->tx_ring_size)
65
66/* level of occupied TX descriptors under which we wake up TX process */
67#define MACB_TX_WAKEUP_THRESH(bp) (3 * (bp)->tx_ring_size / 4)
68
69#define MACB_RX_INT_FLAGS (MACB_BIT(RCOMP) | MACB_BIT(ISR_ROVR))
70#define MACB_TX_ERR_FLAGS (MACB_BIT(ISR_TUND) \
71 | MACB_BIT(ISR_RLE) \
72 | MACB_BIT(TXERR))
73#define MACB_TX_INT_FLAGS (MACB_TX_ERR_FLAGS | MACB_BIT(TCOMP) \
74 | MACB_BIT(TXUBR))
75
76/* Max length of transmit frame must be a multiple of 8 bytes */
77#define MACB_TX_LEN_ALIGN 8
78#define MACB_MAX_TX_LEN ((unsigned int)((1 << MACB_TX_FRMLEN_SIZE) - 1) & ~((unsigned int)(MACB_TX_LEN_ALIGN - 1)))
79/* Limit maximum TX length as per Cadence TSO errata. This is to avoid a
80 * false amba_error in TX path from the DMA assuming there is not enough
81 * space in the SRAM (16KB) even when there is.
82 */
83#define GEM_MAX_TX_LEN (unsigned int)(0x3FC0)
84
85#define GEM_MTU_MIN_SIZE ETH_MIN_MTU
86#define MACB_NETIF_LSO NETIF_F_TSO
87
88#define MACB_WOL_ENABLED BIT(0)
89
90#define HS_SPEED_10000M 4
91#define MACB_SERDES_RATE_10G 1
92
93/* Graceful stop timeouts in us. We should allow up to
94 * 1 frame time (10 Mbits/s, full-duplex, ignoring collisions)
95 */
96#define MACB_HALT_TIMEOUT 14000
97#define MACB_PM_TIMEOUT 100 /* ms */
98
99#define MACB_MDIO_TIMEOUT 1000000 /* in usecs */
100
101/* DMA buffer descriptor might be different size
102 * depends on hardware configuration:
103 *
104 * 1. dma address width 32 bits:
105 * word 1: 32 bit address of Data Buffer
106 * word 2: control
107 *
108 * 2. dma address width 64 bits:
109 * word 1: 32 bit address of Data Buffer
110 * word 2: control
111 * word 3: upper 32 bit address of Data Buffer
112 * word 4: unused
113 *
114 * 3. dma address width 32 bits with hardware timestamping:
115 * word 1: 32 bit address of Data Buffer
116 * word 2: control
117 * word 3: timestamp word 1
118 * word 4: timestamp word 2
119 *
120 * 4. dma address width 64 bits with hardware timestamping:
121 * word 1: 32 bit address of Data Buffer
122 * word 2: control
123 * word 3: upper 32 bit address of Data Buffer
124 * word 4: unused
125 * word 5: timestamp word 1
126 * word 6: timestamp word 2
127 */
128static unsigned int macb_dma_desc_get_size(struct macb *bp)
129{
130#ifdef MACB_EXT_DESC
131 unsigned int desc_size;
132
133 switch (bp->hw_dma_cap) {
134 case HW_DMA_CAP_64B:
135 desc_size = sizeof(struct macb_dma_desc)
136 + sizeof(struct macb_dma_desc_64);
137 break;
138 case HW_DMA_CAP_PTP:
139 desc_size = sizeof(struct macb_dma_desc)
140 + sizeof(struct macb_dma_desc_ptp);
141 break;
142 case HW_DMA_CAP_64B_PTP:
143 desc_size = sizeof(struct macb_dma_desc)
144 + sizeof(struct macb_dma_desc_64)
145 + sizeof(struct macb_dma_desc_ptp);
146 break;
147 default:
148 desc_size = sizeof(struct macb_dma_desc);
149 }
150 return desc_size;
151#endif
152 return sizeof(struct macb_dma_desc);
153}
154
155static unsigned int macb_adj_dma_desc_idx(struct macb *bp, unsigned int desc_idx)
156{
157#ifdef MACB_EXT_DESC
158 switch (bp->hw_dma_cap) {
159 case HW_DMA_CAP_64B:
160 case HW_DMA_CAP_PTP:
161 desc_idx <<= 1;
162 break;
163 case HW_DMA_CAP_64B_PTP:
164 desc_idx *= 3;
165 break;
166 default:
167 break;
168 }
169#endif
170 return desc_idx;
171}
172
173#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
174static struct macb_dma_desc_64 *macb_64b_desc(struct macb *bp, struct macb_dma_desc *desc)
175{
176 return (struct macb_dma_desc_64 *)((void *)desc
177 + sizeof(struct macb_dma_desc));
178}
179#endif
180
181/* Ring buffer accessors */
182static unsigned int macb_tx_ring_wrap(struct macb *bp, unsigned int index)
183{
184 return index & (bp->tx_ring_size - 1);
185}
186
187static struct macb_dma_desc *macb_tx_desc(struct macb_queue *queue,
188 unsigned int index)
189{
190 index = macb_tx_ring_wrap(queue->bp, index);
191 index = macb_adj_dma_desc_idx(queue->bp, index);
192 return &queue->tx_ring[index];
193}
194
195static struct macb_tx_skb *macb_tx_skb(struct macb_queue *queue,
196 unsigned int index)
197{
198 return &queue->tx_skb[macb_tx_ring_wrap(queue->bp, index)];
199}
200
201static dma_addr_t macb_tx_dma(struct macb_queue *queue, unsigned int index)
202{
203 dma_addr_t offset;
204
205 offset = macb_tx_ring_wrap(queue->bp, index) *
206 macb_dma_desc_get_size(queue->bp);
207
208 return queue->tx_ring_dma + offset;
209}
210
211static unsigned int macb_rx_ring_wrap(struct macb *bp, unsigned int index)
212{
213 return index & (bp->rx_ring_size - 1);
214}
215
216static struct macb_dma_desc *macb_rx_desc(struct macb_queue *queue, unsigned int index)
217{
218 index = macb_rx_ring_wrap(queue->bp, index);
219 index = macb_adj_dma_desc_idx(queue->bp, index);
220 return &queue->rx_ring[index];
221}
222
223static void *macb_rx_buffer(struct macb_queue *queue, unsigned int index)
224{
225 return queue->rx_buffers + queue->bp->rx_buffer_size *
226 macb_rx_ring_wrap(queue->bp, index);
227}
228
229/* I/O accessors */
230static u32 hw_readl_native(struct macb *bp, int offset)
231{
232 return __raw_readl(bp->regs + offset);
233}
234
235static void hw_writel_native(struct macb *bp, int offset, u32 value)
236{
237 __raw_writel(value, bp->regs + offset);
238}
239
240static u32 hw_readl(struct macb *bp, int offset)
241{
242 return readl_relaxed(bp->regs + offset);
243}
244
245static void hw_writel(struct macb *bp, int offset, u32 value)
246{
247 writel_relaxed(value, bp->regs + offset);
248}
249
250/* Find the CPU endianness by using the loopback bit of NCR register. When the
251 * CPU is in big endian we need to program swapped mode for management
252 * descriptor access.
253 */
254static bool hw_is_native_io(void __iomem *addr)
255{
256 u32 value = MACB_BIT(LLB);
257
258 __raw_writel(value, addr + MACB_NCR);
259 value = __raw_readl(addr + MACB_NCR);
260
261 /* Write 0 back to disable everything */
262 __raw_writel(0, addr + MACB_NCR);
263
264 return value == MACB_BIT(LLB);
265}
266
267static bool hw_is_gem(void __iomem *addr, bool native_io)
268{
269 u32 id;
270
271 if (native_io)
272 id = __raw_readl(addr + MACB_MID);
273 else
274 id = readl_relaxed(addr + MACB_MID);
275
276 return MACB_BFEXT(IDNUM, id) >= 0x2;
277}
278
279static void macb_set_hwaddr(struct macb *bp)
280{
281 u32 bottom;
282 u16 top;
283
284 bottom = cpu_to_le32(*((u32 *)bp->dev->dev_addr));
285 macb_or_gem_writel(bp, SA1B, bottom);
286 top = cpu_to_le16(*((u16 *)(bp->dev->dev_addr + 4)));
287 macb_or_gem_writel(bp, SA1T, top);
288
289 if (gem_has_ptp(bp)) {
290 gem_writel(bp, RXPTPUNI, bottom);
291 gem_writel(bp, TXPTPUNI, bottom);
292 }
293
294 /* Clear unused address register sets */
295 macb_or_gem_writel(bp, SA2B, 0);
296 macb_or_gem_writel(bp, SA2T, 0);
297 macb_or_gem_writel(bp, SA3B, 0);
298 macb_or_gem_writel(bp, SA3T, 0);
299 macb_or_gem_writel(bp, SA4B, 0);
300 macb_or_gem_writel(bp, SA4T, 0);
301}
302
303static void macb_get_hwaddr(struct macb *bp)
304{
305 u32 bottom;
306 u16 top;
307 u8 addr[6];
308 int i;
309
310 /* Check all 4 address register for valid address */
311 for (i = 0; i < 4; i++) {
312 bottom = macb_or_gem_readl(bp, SA1B + i * 8);
313 top = macb_or_gem_readl(bp, SA1T + i * 8);
314
315 addr[0] = bottom & 0xff;
316 addr[1] = (bottom >> 8) & 0xff;
317 addr[2] = (bottom >> 16) & 0xff;
318 addr[3] = (bottom >> 24) & 0xff;
319 addr[4] = top & 0xff;
320 addr[5] = (top >> 8) & 0xff;
321
322 if (is_valid_ether_addr(addr)) {
323 eth_hw_addr_set(bp->dev, addr);
324 return;
325 }
326 }
327
328 dev_info(&bp->pdev->dev, "invalid hw address, using random\n");
329 eth_hw_addr_random(bp->dev);
330}
331
332static int macb_mdio_wait_for_idle(struct macb *bp)
333{
334 u32 val;
335
336 return readx_poll_timeout(MACB_READ_NSR, bp, val, val & MACB_BIT(IDLE),
337 1, MACB_MDIO_TIMEOUT);
338}
339
340static int macb_mdio_read_c22(struct mii_bus *bus, int mii_id, int regnum)
341{
342 struct macb *bp = bus->priv;
343 int status;
344
345 status = pm_runtime_resume_and_get(&bp->pdev->dev);
346 if (status < 0)
347 goto mdio_pm_exit;
348
349 status = macb_mdio_wait_for_idle(bp);
350 if (status < 0)
351 goto mdio_read_exit;
352
353 macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_C22_SOF)
354 | MACB_BF(RW, MACB_MAN_C22_READ)
355 | MACB_BF(PHYA, mii_id)
356 | MACB_BF(REGA, regnum)
357 | MACB_BF(CODE, MACB_MAN_C22_CODE)));
358
359 status = macb_mdio_wait_for_idle(bp);
360 if (status < 0)
361 goto mdio_read_exit;
362
363 status = MACB_BFEXT(DATA, macb_readl(bp, MAN));
364
365mdio_read_exit:
366 pm_runtime_mark_last_busy(&bp->pdev->dev);
367 pm_runtime_put_autosuspend(&bp->pdev->dev);
368mdio_pm_exit:
369 return status;
370}
371
372static int macb_mdio_read_c45(struct mii_bus *bus, int mii_id, int devad,
373 int regnum)
374{
375 struct macb *bp = bus->priv;
376 int status;
377
378 status = pm_runtime_get_sync(&bp->pdev->dev);
379 if (status < 0) {
380 pm_runtime_put_noidle(&bp->pdev->dev);
381 goto mdio_pm_exit;
382 }
383
384 status = macb_mdio_wait_for_idle(bp);
385 if (status < 0)
386 goto mdio_read_exit;
387
388 macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_C45_SOF)
389 | MACB_BF(RW, MACB_MAN_C45_ADDR)
390 | MACB_BF(PHYA, mii_id)
391 | MACB_BF(REGA, devad & 0x1F)
392 | MACB_BF(DATA, regnum & 0xFFFF)
393 | MACB_BF(CODE, MACB_MAN_C45_CODE)));
394
395 status = macb_mdio_wait_for_idle(bp);
396 if (status < 0)
397 goto mdio_read_exit;
398
399 macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_C45_SOF)
400 | MACB_BF(RW, MACB_MAN_C45_READ)
401 | MACB_BF(PHYA, mii_id)
402 | MACB_BF(REGA, devad & 0x1F)
403 | MACB_BF(CODE, MACB_MAN_C45_CODE)));
404
405 status = macb_mdio_wait_for_idle(bp);
406 if (status < 0)
407 goto mdio_read_exit;
408
409 status = MACB_BFEXT(DATA, macb_readl(bp, MAN));
410
411mdio_read_exit:
412 pm_runtime_mark_last_busy(&bp->pdev->dev);
413 pm_runtime_put_autosuspend(&bp->pdev->dev);
414mdio_pm_exit:
415 return status;
416}
417
418static int macb_mdio_write_c22(struct mii_bus *bus, int mii_id, int regnum,
419 u16 value)
420{
421 struct macb *bp = bus->priv;
422 int status;
423
424 status = pm_runtime_resume_and_get(&bp->pdev->dev);
425 if (status < 0)
426 goto mdio_pm_exit;
427
428 status = macb_mdio_wait_for_idle(bp);
429 if (status < 0)
430 goto mdio_write_exit;
431
432 macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_C22_SOF)
433 | MACB_BF(RW, MACB_MAN_C22_WRITE)
434 | MACB_BF(PHYA, mii_id)
435 | MACB_BF(REGA, regnum)
436 | MACB_BF(CODE, MACB_MAN_C22_CODE)
437 | MACB_BF(DATA, value)));
438
439 status = macb_mdio_wait_for_idle(bp);
440 if (status < 0)
441 goto mdio_write_exit;
442
443mdio_write_exit:
444 pm_runtime_mark_last_busy(&bp->pdev->dev);
445 pm_runtime_put_autosuspend(&bp->pdev->dev);
446mdio_pm_exit:
447 return status;
448}
449
450static int macb_mdio_write_c45(struct mii_bus *bus, int mii_id,
451 int devad, int regnum,
452 u16 value)
453{
454 struct macb *bp = bus->priv;
455 int status;
456
457 status = pm_runtime_get_sync(&bp->pdev->dev);
458 if (status < 0) {
459 pm_runtime_put_noidle(&bp->pdev->dev);
460 goto mdio_pm_exit;
461 }
462
463 status = macb_mdio_wait_for_idle(bp);
464 if (status < 0)
465 goto mdio_write_exit;
466
467 macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_C45_SOF)
468 | MACB_BF(RW, MACB_MAN_C45_ADDR)
469 | MACB_BF(PHYA, mii_id)
470 | MACB_BF(REGA, devad & 0x1F)
471 | MACB_BF(DATA, regnum & 0xFFFF)
472 | MACB_BF(CODE, MACB_MAN_C45_CODE)));
473
474 status = macb_mdio_wait_for_idle(bp);
475 if (status < 0)
476 goto mdio_write_exit;
477
478 macb_writel(bp, MAN, (MACB_BF(SOF, MACB_MAN_C45_SOF)
479 | MACB_BF(RW, MACB_MAN_C45_WRITE)
480 | MACB_BF(PHYA, mii_id)
481 | MACB_BF(REGA, devad & 0x1F)
482 | MACB_BF(CODE, MACB_MAN_C45_CODE)
483 | MACB_BF(DATA, value)));
484
485 status = macb_mdio_wait_for_idle(bp);
486 if (status < 0)
487 goto mdio_write_exit;
488
489mdio_write_exit:
490 pm_runtime_mark_last_busy(&bp->pdev->dev);
491 pm_runtime_put_autosuspend(&bp->pdev->dev);
492mdio_pm_exit:
493 return status;
494}
495
496static void macb_init_buffers(struct macb *bp)
497{
498 struct macb_queue *queue;
499 unsigned int q;
500
501 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
502 queue_writel(queue, RBQP, lower_32_bits(queue->rx_ring_dma));
503#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
504 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
505 queue_writel(queue, RBQPH,
506 upper_32_bits(queue->rx_ring_dma));
507#endif
508 queue_writel(queue, TBQP, lower_32_bits(queue->tx_ring_dma));
509#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
510 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
511 queue_writel(queue, TBQPH,
512 upper_32_bits(queue->tx_ring_dma));
513#endif
514 }
515}
516
517/**
518 * macb_set_tx_clk() - Set a clock to a new frequency
519 * @bp: pointer to struct macb
520 * @speed: New frequency in Hz
521 */
522static void macb_set_tx_clk(struct macb *bp, int speed)
523{
524 long ferr, rate, rate_rounded;
525
526 if (!bp->tx_clk || (bp->caps & MACB_CAPS_CLK_HW_CHG))
527 return;
528
529 /* In case of MII the PHY is the clock master */
530 if (bp->phy_interface == PHY_INTERFACE_MODE_MII)
531 return;
532
533 switch (speed) {
534 case SPEED_10:
535 rate = 2500000;
536 break;
537 case SPEED_100:
538 rate = 25000000;
539 break;
540 case SPEED_1000:
541 rate = 125000000;
542 break;
543 default:
544 return;
545 }
546
547 rate_rounded = clk_round_rate(bp->tx_clk, rate);
548 if (rate_rounded < 0)
549 return;
550
551 /* RGMII allows 50 ppm frequency error. Test and warn if this limit
552 * is not satisfied.
553 */
554 ferr = abs(rate_rounded - rate);
555 ferr = DIV_ROUND_UP(ferr, rate / 100000);
556 if (ferr > 5)
557 netdev_warn(bp->dev,
558 "unable to generate target frequency: %ld Hz\n",
559 rate);
560
561 if (clk_set_rate(bp->tx_clk, rate_rounded))
562 netdev_err(bp->dev, "adjusting tx_clk failed.\n");
563}
564
565static void macb_usx_pcs_link_up(struct phylink_pcs *pcs, unsigned int neg_mode,
566 phy_interface_t interface, int speed,
567 int duplex)
568{
569 struct macb *bp = container_of(pcs, struct macb, phylink_usx_pcs);
570 u32 config;
571
572 config = gem_readl(bp, USX_CONTROL);
573 config = GEM_BFINS(SERDES_RATE, MACB_SERDES_RATE_10G, config);
574 config = GEM_BFINS(USX_CTRL_SPEED, HS_SPEED_10000M, config);
575 config &= ~(GEM_BIT(TX_SCR_BYPASS) | GEM_BIT(RX_SCR_BYPASS));
576 config |= GEM_BIT(TX_EN);
577 gem_writel(bp, USX_CONTROL, config);
578}
579
580static void macb_usx_pcs_get_state(struct phylink_pcs *pcs,
581 struct phylink_link_state *state)
582{
583 struct macb *bp = container_of(pcs, struct macb, phylink_usx_pcs);
584 u32 val;
585
586 state->speed = SPEED_10000;
587 state->duplex = 1;
588 state->an_complete = 1;
589
590 val = gem_readl(bp, USX_STATUS);
591 state->link = !!(val & GEM_BIT(USX_BLOCK_LOCK));
592 val = gem_readl(bp, NCFGR);
593 if (val & GEM_BIT(PAE))
594 state->pause = MLO_PAUSE_RX;
595}
596
597static int macb_usx_pcs_config(struct phylink_pcs *pcs,
598 unsigned int neg_mode,
599 phy_interface_t interface,
600 const unsigned long *advertising,
601 bool permit_pause_to_mac)
602{
603 struct macb *bp = container_of(pcs, struct macb, phylink_usx_pcs);
604
605 gem_writel(bp, USX_CONTROL, gem_readl(bp, USX_CONTROL) |
606 GEM_BIT(SIGNAL_OK));
607
608 return 0;
609}
610
611static void macb_pcs_get_state(struct phylink_pcs *pcs,
612 struct phylink_link_state *state)
613{
614 state->link = 0;
615}
616
617static void macb_pcs_an_restart(struct phylink_pcs *pcs)
618{
619 /* Not supported */
620}
621
622static int macb_pcs_config(struct phylink_pcs *pcs,
623 unsigned int neg_mode,
624 phy_interface_t interface,
625 const unsigned long *advertising,
626 bool permit_pause_to_mac)
627{
628 return 0;
629}
630
631static const struct phylink_pcs_ops macb_phylink_usx_pcs_ops = {
632 .pcs_get_state = macb_usx_pcs_get_state,
633 .pcs_config = macb_usx_pcs_config,
634 .pcs_link_up = macb_usx_pcs_link_up,
635};
636
637static const struct phylink_pcs_ops macb_phylink_pcs_ops = {
638 .pcs_get_state = macb_pcs_get_state,
639 .pcs_an_restart = macb_pcs_an_restart,
640 .pcs_config = macb_pcs_config,
641};
642
643static void macb_mac_config(struct phylink_config *config, unsigned int mode,
644 const struct phylink_link_state *state)
645{
646 struct net_device *ndev = to_net_dev(config->dev);
647 struct macb *bp = netdev_priv(ndev);
648 unsigned long flags;
649 u32 old_ctrl, ctrl;
650 u32 old_ncr, ncr;
651
652 spin_lock_irqsave(&bp->lock, flags);
653
654 old_ctrl = ctrl = macb_or_gem_readl(bp, NCFGR);
655 old_ncr = ncr = macb_or_gem_readl(bp, NCR);
656
657 if (bp->caps & MACB_CAPS_MACB_IS_EMAC) {
658 if (state->interface == PHY_INTERFACE_MODE_RMII)
659 ctrl |= MACB_BIT(RM9200_RMII);
660 } else if (macb_is_gem(bp)) {
661 ctrl &= ~(GEM_BIT(SGMIIEN) | GEM_BIT(PCSSEL));
662 ncr &= ~GEM_BIT(ENABLE_HS_MAC);
663
664 if (state->interface == PHY_INTERFACE_MODE_SGMII) {
665 ctrl |= GEM_BIT(SGMIIEN) | GEM_BIT(PCSSEL);
666 } else if (state->interface == PHY_INTERFACE_MODE_10GBASER) {
667 ctrl |= GEM_BIT(PCSSEL);
668 ncr |= GEM_BIT(ENABLE_HS_MAC);
669 } else if (bp->caps & MACB_CAPS_MIIONRGMII &&
670 bp->phy_interface == PHY_INTERFACE_MODE_MII) {
671 ncr |= MACB_BIT(MIIONRGMII);
672 }
673 }
674
675 /* Apply the new configuration, if any */
676 if (old_ctrl ^ ctrl)
677 macb_or_gem_writel(bp, NCFGR, ctrl);
678
679 if (old_ncr ^ ncr)
680 macb_or_gem_writel(bp, NCR, ncr);
681
682 /* Disable AN for SGMII fixed link configuration, enable otherwise.
683 * Must be written after PCSSEL is set in NCFGR,
684 * otherwise writes will not take effect.
685 */
686 if (macb_is_gem(bp) && state->interface == PHY_INTERFACE_MODE_SGMII) {
687 u32 pcsctrl, old_pcsctrl;
688
689 old_pcsctrl = gem_readl(bp, PCSCNTRL);
690 if (mode == MLO_AN_FIXED)
691 pcsctrl = old_pcsctrl & ~GEM_BIT(PCSAUTONEG);
692 else
693 pcsctrl = old_pcsctrl | GEM_BIT(PCSAUTONEG);
694 if (old_pcsctrl != pcsctrl)
695 gem_writel(bp, PCSCNTRL, pcsctrl);
696 }
697
698 spin_unlock_irqrestore(&bp->lock, flags);
699}
700
701static void macb_mac_link_down(struct phylink_config *config, unsigned int mode,
702 phy_interface_t interface)
703{
704 struct net_device *ndev = to_net_dev(config->dev);
705 struct macb *bp = netdev_priv(ndev);
706 struct macb_queue *queue;
707 unsigned int q;
708 u32 ctrl;
709
710 if (!(bp->caps & MACB_CAPS_MACB_IS_EMAC))
711 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
712 queue_writel(queue, IDR,
713 bp->rx_intr_mask | MACB_TX_INT_FLAGS | MACB_BIT(HRESP));
714
715 /* Disable Rx and Tx */
716 ctrl = macb_readl(bp, NCR) & ~(MACB_BIT(RE) | MACB_BIT(TE));
717 macb_writel(bp, NCR, ctrl);
718
719 netif_tx_stop_all_queues(ndev);
720}
721
722static void macb_mac_link_up(struct phylink_config *config,
723 struct phy_device *phy,
724 unsigned int mode, phy_interface_t interface,
725 int speed, int duplex,
726 bool tx_pause, bool rx_pause)
727{
728 struct net_device *ndev = to_net_dev(config->dev);
729 struct macb *bp = netdev_priv(ndev);
730 struct macb_queue *queue;
731 unsigned long flags;
732 unsigned int q;
733 u32 ctrl;
734
735 spin_lock_irqsave(&bp->lock, flags);
736
737 ctrl = macb_or_gem_readl(bp, NCFGR);
738
739 ctrl &= ~(MACB_BIT(SPD) | MACB_BIT(FD));
740
741 if (speed == SPEED_100)
742 ctrl |= MACB_BIT(SPD);
743
744 if (duplex)
745 ctrl |= MACB_BIT(FD);
746
747 if (!(bp->caps & MACB_CAPS_MACB_IS_EMAC)) {
748 ctrl &= ~MACB_BIT(PAE);
749 if (macb_is_gem(bp)) {
750 ctrl &= ~GEM_BIT(GBE);
751
752 if (speed == SPEED_1000)
753 ctrl |= GEM_BIT(GBE);
754 }
755
756 if (rx_pause)
757 ctrl |= MACB_BIT(PAE);
758
759 /* Initialize rings & buffers as clearing MACB_BIT(TE) in link down
760 * cleared the pipeline and control registers.
761 */
762 bp->macbgem_ops.mog_init_rings(bp);
763 macb_init_buffers(bp);
764
765 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
766 queue_writel(queue, IER,
767 bp->rx_intr_mask | MACB_TX_INT_FLAGS | MACB_BIT(HRESP));
768 }
769
770 macb_or_gem_writel(bp, NCFGR, ctrl);
771
772 if (bp->phy_interface == PHY_INTERFACE_MODE_10GBASER)
773 gem_writel(bp, HS_MAC_CONFIG, GEM_BFINS(HS_MAC_SPEED, HS_SPEED_10000M,
774 gem_readl(bp, HS_MAC_CONFIG)));
775
776 spin_unlock_irqrestore(&bp->lock, flags);
777
778 if (!(bp->caps & MACB_CAPS_MACB_IS_EMAC))
779 macb_set_tx_clk(bp, speed);
780
781 /* Enable Rx and Tx; Enable PTP unicast */
782 ctrl = macb_readl(bp, NCR);
783 if (gem_has_ptp(bp))
784 ctrl |= MACB_BIT(PTPUNI);
785
786 macb_writel(bp, NCR, ctrl | MACB_BIT(RE) | MACB_BIT(TE));
787
788 netif_tx_wake_all_queues(ndev);
789}
790
791static struct phylink_pcs *macb_mac_select_pcs(struct phylink_config *config,
792 phy_interface_t interface)
793{
794 struct net_device *ndev = to_net_dev(config->dev);
795 struct macb *bp = netdev_priv(ndev);
796
797 if (interface == PHY_INTERFACE_MODE_10GBASER)
798 return &bp->phylink_usx_pcs;
799 else if (interface == PHY_INTERFACE_MODE_SGMII)
800 return &bp->phylink_sgmii_pcs;
801 else
802 return NULL;
803}
804
805static const struct phylink_mac_ops macb_phylink_ops = {
806 .mac_select_pcs = macb_mac_select_pcs,
807 .mac_config = macb_mac_config,
808 .mac_link_down = macb_mac_link_down,
809 .mac_link_up = macb_mac_link_up,
810};
811
812static bool macb_phy_handle_exists(struct device_node *dn)
813{
814 dn = of_parse_phandle(dn, "phy-handle", 0);
815 of_node_put(dn);
816 return dn != NULL;
817}
818
819static int macb_phylink_connect(struct macb *bp)
820{
821 struct device_node *dn = bp->pdev->dev.of_node;
822 struct net_device *dev = bp->dev;
823 struct phy_device *phydev;
824 int ret;
825
826 if (dn)
827 ret = phylink_of_phy_connect(bp->phylink, dn, 0);
828
829 if (!dn || (ret && !macb_phy_handle_exists(dn))) {
830 phydev = phy_find_first(bp->mii_bus);
831 if (!phydev) {
832 netdev_err(dev, "no PHY found\n");
833 return -ENXIO;
834 }
835
836 /* attach the mac to the phy */
837 ret = phylink_connect_phy(bp->phylink, phydev);
838 }
839
840 if (ret) {
841 netdev_err(dev, "Could not attach PHY (%d)\n", ret);
842 return ret;
843 }
844
845 phylink_start(bp->phylink);
846
847 return 0;
848}
849
850static void macb_get_pcs_fixed_state(struct phylink_config *config,
851 struct phylink_link_state *state)
852{
853 struct net_device *ndev = to_net_dev(config->dev);
854 struct macb *bp = netdev_priv(ndev);
855
856 state->link = (macb_readl(bp, NSR) & MACB_BIT(NSR_LINK)) != 0;
857}
858
859/* based on au1000_eth. c*/
860static int macb_mii_probe(struct net_device *dev)
861{
862 struct macb *bp = netdev_priv(dev);
863
864 bp->phylink_sgmii_pcs.ops = &macb_phylink_pcs_ops;
865 bp->phylink_sgmii_pcs.neg_mode = true;
866 bp->phylink_usx_pcs.ops = &macb_phylink_usx_pcs_ops;
867 bp->phylink_usx_pcs.neg_mode = true;
868
869 bp->phylink_config.dev = &dev->dev;
870 bp->phylink_config.type = PHYLINK_NETDEV;
871 bp->phylink_config.mac_managed_pm = true;
872
873 if (bp->phy_interface == PHY_INTERFACE_MODE_SGMII) {
874 bp->phylink_config.poll_fixed_state = true;
875 bp->phylink_config.get_fixed_state = macb_get_pcs_fixed_state;
876 }
877
878 bp->phylink_config.mac_capabilities = MAC_ASYM_PAUSE |
879 MAC_10 | MAC_100;
880
881 __set_bit(PHY_INTERFACE_MODE_MII,
882 bp->phylink_config.supported_interfaces);
883 __set_bit(PHY_INTERFACE_MODE_RMII,
884 bp->phylink_config.supported_interfaces);
885
886 /* Determine what modes are supported */
887 if (macb_is_gem(bp) && (bp->caps & MACB_CAPS_GIGABIT_MODE_AVAILABLE)) {
888 bp->phylink_config.mac_capabilities |= MAC_1000FD;
889 if (!(bp->caps & MACB_CAPS_NO_GIGABIT_HALF))
890 bp->phylink_config.mac_capabilities |= MAC_1000HD;
891
892 __set_bit(PHY_INTERFACE_MODE_GMII,
893 bp->phylink_config.supported_interfaces);
894 phy_interface_set_rgmii(bp->phylink_config.supported_interfaces);
895
896 if (bp->caps & MACB_CAPS_PCS)
897 __set_bit(PHY_INTERFACE_MODE_SGMII,
898 bp->phylink_config.supported_interfaces);
899
900 if (bp->caps & MACB_CAPS_HIGH_SPEED) {
901 __set_bit(PHY_INTERFACE_MODE_10GBASER,
902 bp->phylink_config.supported_interfaces);
903 bp->phylink_config.mac_capabilities |= MAC_10000FD;
904 }
905 }
906
907 bp->phylink = phylink_create(&bp->phylink_config, bp->pdev->dev.fwnode,
908 bp->phy_interface, &macb_phylink_ops);
909 if (IS_ERR(bp->phylink)) {
910 netdev_err(dev, "Could not create a phylink instance (%ld)\n",
911 PTR_ERR(bp->phylink));
912 return PTR_ERR(bp->phylink);
913 }
914
915 return 0;
916}
917
918static int macb_mdiobus_register(struct macb *bp, struct device_node *mdio_np)
919{
920 struct device_node *child, *np = bp->pdev->dev.of_node;
921
922 /* If we have a child named mdio, probe it instead of looking for PHYs
923 * directly under the MAC node
924 */
925 if (mdio_np)
926 return of_mdiobus_register(bp->mii_bus, mdio_np);
927
928 /* Only create the PHY from the device tree if at least one PHY is
929 * described. Otherwise scan the entire MDIO bus. We do this to support
930 * old device tree that did not follow the best practices and did not
931 * describe their network PHYs.
932 */
933 for_each_available_child_of_node(np, child)
934 if (of_mdiobus_child_is_phy(child)) {
935 /* The loop increments the child refcount,
936 * decrement it before returning.
937 */
938 of_node_put(child);
939
940 return of_mdiobus_register(bp->mii_bus, np);
941 }
942
943 return mdiobus_register(bp->mii_bus);
944}
945
946static int macb_mii_init(struct macb *bp)
947{
948 struct device_node *mdio_np, *np = bp->pdev->dev.of_node;
949 int err = -ENXIO;
950
951 /* With fixed-link, we don't need to register the MDIO bus,
952 * except if we have a child named "mdio" in the device tree.
953 * In that case, some devices may be attached to the MACB's MDIO bus.
954 */
955 mdio_np = of_get_child_by_name(np, "mdio");
956 if (!mdio_np && of_phy_is_fixed_link(np))
957 return macb_mii_probe(bp->dev);
958
959 /* Enable management port */
960 macb_writel(bp, NCR, MACB_BIT(MPE));
961
962 bp->mii_bus = mdiobus_alloc();
963 if (!bp->mii_bus) {
964 err = -ENOMEM;
965 goto err_out;
966 }
967
968 bp->mii_bus->name = "MACB_mii_bus";
969 bp->mii_bus->read = &macb_mdio_read_c22;
970 bp->mii_bus->write = &macb_mdio_write_c22;
971 bp->mii_bus->read_c45 = &macb_mdio_read_c45;
972 bp->mii_bus->write_c45 = &macb_mdio_write_c45;
973 snprintf(bp->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
974 bp->pdev->name, bp->pdev->id);
975 bp->mii_bus->priv = bp;
976 bp->mii_bus->parent = &bp->pdev->dev;
977
978 dev_set_drvdata(&bp->dev->dev, bp->mii_bus);
979
980 err = macb_mdiobus_register(bp, mdio_np);
981 if (err)
982 goto err_out_free_mdiobus;
983
984 err = macb_mii_probe(bp->dev);
985 if (err)
986 goto err_out_unregister_bus;
987
988 return 0;
989
990err_out_unregister_bus:
991 mdiobus_unregister(bp->mii_bus);
992err_out_free_mdiobus:
993 mdiobus_free(bp->mii_bus);
994err_out:
995 of_node_put(mdio_np);
996
997 return err;
998}
999
1000static void macb_update_stats(struct macb *bp)
1001{
1002 u32 *p = &bp->hw_stats.macb.rx_pause_frames;
1003 u32 *end = &bp->hw_stats.macb.tx_pause_frames + 1;
1004 int offset = MACB_PFR;
1005
1006 WARN_ON((unsigned long)(end - p - 1) != (MACB_TPF - MACB_PFR) / 4);
1007
1008 for (; p < end; p++, offset += 4)
1009 *p += bp->macb_reg_readl(bp, offset);
1010}
1011
1012static int macb_halt_tx(struct macb *bp)
1013{
1014 unsigned long halt_time, timeout;
1015 u32 status;
1016
1017 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(THALT));
1018
1019 timeout = jiffies + usecs_to_jiffies(MACB_HALT_TIMEOUT);
1020 do {
1021 halt_time = jiffies;
1022 status = macb_readl(bp, TSR);
1023 if (!(status & MACB_BIT(TGO)))
1024 return 0;
1025
1026 udelay(250);
1027 } while (time_before(halt_time, timeout));
1028
1029 return -ETIMEDOUT;
1030}
1031
1032static void macb_tx_unmap(struct macb *bp, struct macb_tx_skb *tx_skb, int budget)
1033{
1034 if (tx_skb->mapping) {
1035 if (tx_skb->mapped_as_page)
1036 dma_unmap_page(&bp->pdev->dev, tx_skb->mapping,
1037 tx_skb->size, DMA_TO_DEVICE);
1038 else
1039 dma_unmap_single(&bp->pdev->dev, tx_skb->mapping,
1040 tx_skb->size, DMA_TO_DEVICE);
1041 tx_skb->mapping = 0;
1042 }
1043
1044 if (tx_skb->skb) {
1045 napi_consume_skb(tx_skb->skb, budget);
1046 tx_skb->skb = NULL;
1047 }
1048}
1049
1050static void macb_set_addr(struct macb *bp, struct macb_dma_desc *desc, dma_addr_t addr)
1051{
1052#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
1053 struct macb_dma_desc_64 *desc_64;
1054
1055 if (bp->hw_dma_cap & HW_DMA_CAP_64B) {
1056 desc_64 = macb_64b_desc(bp, desc);
1057 desc_64->addrh = upper_32_bits(addr);
1058 /* The low bits of RX address contain the RX_USED bit, clearing
1059 * of which allows packet RX. Make sure the high bits are also
1060 * visible to HW at that point.
1061 */
1062 dma_wmb();
1063 }
1064#endif
1065 desc->addr = lower_32_bits(addr);
1066}
1067
1068static dma_addr_t macb_get_addr(struct macb *bp, struct macb_dma_desc *desc)
1069{
1070 dma_addr_t addr = 0;
1071#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
1072 struct macb_dma_desc_64 *desc_64;
1073
1074 if (bp->hw_dma_cap & HW_DMA_CAP_64B) {
1075 desc_64 = macb_64b_desc(bp, desc);
1076 addr = ((u64)(desc_64->addrh) << 32);
1077 }
1078#endif
1079 addr |= MACB_BF(RX_WADDR, MACB_BFEXT(RX_WADDR, desc->addr));
1080#ifdef CONFIG_MACB_USE_HWSTAMP
1081 if (bp->hw_dma_cap & HW_DMA_CAP_PTP)
1082 addr &= ~GEM_BIT(DMA_RXVALID);
1083#endif
1084 return addr;
1085}
1086
1087static void macb_tx_error_task(struct work_struct *work)
1088{
1089 struct macb_queue *queue = container_of(work, struct macb_queue,
1090 tx_error_task);
1091 bool halt_timeout = false;
1092 struct macb *bp = queue->bp;
1093 struct macb_tx_skb *tx_skb;
1094 struct macb_dma_desc *desc;
1095 struct sk_buff *skb;
1096 unsigned int tail;
1097 unsigned long flags;
1098
1099 netdev_vdbg(bp->dev, "macb_tx_error_task: q = %u, t = %u, h = %u\n",
1100 (unsigned int)(queue - bp->queues),
1101 queue->tx_tail, queue->tx_head);
1102
1103 /* Prevent the queue NAPI TX poll from running, as it calls
1104 * macb_tx_complete(), which in turn may call netif_wake_subqueue().
1105 * As explained below, we have to halt the transmission before updating
1106 * TBQP registers so we call netif_tx_stop_all_queues() to notify the
1107 * network engine about the macb/gem being halted.
1108 */
1109 napi_disable(&queue->napi_tx);
1110 spin_lock_irqsave(&bp->lock, flags);
1111
1112 /* Make sure nobody is trying to queue up new packets */
1113 netif_tx_stop_all_queues(bp->dev);
1114
1115 /* Stop transmission now
1116 * (in case we have just queued new packets)
1117 * macb/gem must be halted to write TBQP register
1118 */
1119 if (macb_halt_tx(bp)) {
1120 netdev_err(bp->dev, "BUG: halt tx timed out\n");
1121 macb_writel(bp, NCR, macb_readl(bp, NCR) & (~MACB_BIT(TE)));
1122 halt_timeout = true;
1123 }
1124
1125 /* Treat frames in TX queue including the ones that caused the error.
1126 * Free transmit buffers in upper layer.
1127 */
1128 for (tail = queue->tx_tail; tail != queue->tx_head; tail++) {
1129 u32 ctrl;
1130
1131 desc = macb_tx_desc(queue, tail);
1132 ctrl = desc->ctrl;
1133 tx_skb = macb_tx_skb(queue, tail);
1134 skb = tx_skb->skb;
1135
1136 if (ctrl & MACB_BIT(TX_USED)) {
1137 /* skb is set for the last buffer of the frame */
1138 while (!skb) {
1139 macb_tx_unmap(bp, tx_skb, 0);
1140 tail++;
1141 tx_skb = macb_tx_skb(queue, tail);
1142 skb = tx_skb->skb;
1143 }
1144
1145 /* ctrl still refers to the first buffer descriptor
1146 * since it's the only one written back by the hardware
1147 */
1148 if (!(ctrl & MACB_BIT(TX_BUF_EXHAUSTED))) {
1149 netdev_vdbg(bp->dev, "txerr skb %u (data %p) TX complete\n",
1150 macb_tx_ring_wrap(bp, tail),
1151 skb->data);
1152 bp->dev->stats.tx_packets++;
1153 queue->stats.tx_packets++;
1154 bp->dev->stats.tx_bytes += skb->len;
1155 queue->stats.tx_bytes += skb->len;
1156 }
1157 } else {
1158 /* "Buffers exhausted mid-frame" errors may only happen
1159 * if the driver is buggy, so complain loudly about
1160 * those. Statistics are updated by hardware.
1161 */
1162 if (ctrl & MACB_BIT(TX_BUF_EXHAUSTED))
1163 netdev_err(bp->dev,
1164 "BUG: TX buffers exhausted mid-frame\n");
1165
1166 desc->ctrl = ctrl | MACB_BIT(TX_USED);
1167 }
1168
1169 macb_tx_unmap(bp, tx_skb, 0);
1170 }
1171
1172 /* Set end of TX queue */
1173 desc = macb_tx_desc(queue, 0);
1174 macb_set_addr(bp, desc, 0);
1175 desc->ctrl = MACB_BIT(TX_USED);
1176
1177 /* Make descriptor updates visible to hardware */
1178 wmb();
1179
1180 /* Reinitialize the TX desc queue */
1181 queue_writel(queue, TBQP, lower_32_bits(queue->tx_ring_dma));
1182#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
1183 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
1184 queue_writel(queue, TBQPH, upper_32_bits(queue->tx_ring_dma));
1185#endif
1186 /* Make TX ring reflect state of hardware */
1187 queue->tx_head = 0;
1188 queue->tx_tail = 0;
1189
1190 /* Housework before enabling TX IRQ */
1191 macb_writel(bp, TSR, macb_readl(bp, TSR));
1192 queue_writel(queue, IER, MACB_TX_INT_FLAGS);
1193
1194 if (halt_timeout)
1195 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TE));
1196
1197 /* Now we are ready to start transmission again */
1198 netif_tx_start_all_queues(bp->dev);
1199 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TSTART));
1200
1201 spin_unlock_irqrestore(&bp->lock, flags);
1202 napi_enable(&queue->napi_tx);
1203}
1204
1205static bool ptp_one_step_sync(struct sk_buff *skb)
1206{
1207 struct ptp_header *hdr;
1208 unsigned int ptp_class;
1209 u8 msgtype;
1210
1211 /* No need to parse packet if PTP TS is not involved */
1212 if (likely(!(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)))
1213 goto not_oss;
1214
1215 /* Identify and return whether PTP one step sync is being processed */
1216 ptp_class = ptp_classify_raw(skb);
1217 if (ptp_class == PTP_CLASS_NONE)
1218 goto not_oss;
1219
1220 hdr = ptp_parse_header(skb, ptp_class);
1221 if (!hdr)
1222 goto not_oss;
1223
1224 if (hdr->flag_field[0] & PTP_FLAG_TWOSTEP)
1225 goto not_oss;
1226
1227 msgtype = ptp_get_msgtype(hdr, ptp_class);
1228 if (msgtype == PTP_MSGTYPE_SYNC)
1229 return true;
1230
1231not_oss:
1232 return false;
1233}
1234
1235static int macb_tx_complete(struct macb_queue *queue, int budget)
1236{
1237 struct macb *bp = queue->bp;
1238 u16 queue_index = queue - bp->queues;
1239 unsigned int tail;
1240 unsigned int head;
1241 int packets = 0;
1242
1243 spin_lock(&queue->tx_ptr_lock);
1244 head = queue->tx_head;
1245 for (tail = queue->tx_tail; tail != head && packets < budget; tail++) {
1246 struct macb_tx_skb *tx_skb;
1247 struct sk_buff *skb;
1248 struct macb_dma_desc *desc;
1249 u32 ctrl;
1250
1251 desc = macb_tx_desc(queue, tail);
1252
1253 /* Make hw descriptor updates visible to CPU */
1254 rmb();
1255
1256 ctrl = desc->ctrl;
1257
1258 /* TX_USED bit is only set by hardware on the very first buffer
1259 * descriptor of the transmitted frame.
1260 */
1261 if (!(ctrl & MACB_BIT(TX_USED)))
1262 break;
1263
1264 /* Process all buffers of the current transmitted frame */
1265 for (;; tail++) {
1266 tx_skb = macb_tx_skb(queue, tail);
1267 skb = tx_skb->skb;
1268
1269 /* First, update TX stats if needed */
1270 if (skb) {
1271 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) &&
1272 !ptp_one_step_sync(skb))
1273 gem_ptp_do_txstamp(bp, skb, desc);
1274
1275 netdev_vdbg(bp->dev, "skb %u (data %p) TX complete\n",
1276 macb_tx_ring_wrap(bp, tail),
1277 skb->data);
1278 bp->dev->stats.tx_packets++;
1279 queue->stats.tx_packets++;
1280 bp->dev->stats.tx_bytes += skb->len;
1281 queue->stats.tx_bytes += skb->len;
1282 packets++;
1283 }
1284
1285 /* Now we can safely release resources */
1286 macb_tx_unmap(bp, tx_skb, budget);
1287
1288 /* skb is set only for the last buffer of the frame.
1289 * WARNING: at this point skb has been freed by
1290 * macb_tx_unmap().
1291 */
1292 if (skb)
1293 break;
1294 }
1295 }
1296
1297 queue->tx_tail = tail;
1298 if (__netif_subqueue_stopped(bp->dev, queue_index) &&
1299 CIRC_CNT(queue->tx_head, queue->tx_tail,
1300 bp->tx_ring_size) <= MACB_TX_WAKEUP_THRESH(bp))
1301 netif_wake_subqueue(bp->dev, queue_index);
1302 spin_unlock(&queue->tx_ptr_lock);
1303
1304 return packets;
1305}
1306
1307static void gem_rx_refill(struct macb_queue *queue)
1308{
1309 unsigned int entry;
1310 struct sk_buff *skb;
1311 dma_addr_t paddr;
1312 struct macb *bp = queue->bp;
1313 struct macb_dma_desc *desc;
1314
1315 while (CIRC_SPACE(queue->rx_prepared_head, queue->rx_tail,
1316 bp->rx_ring_size) > 0) {
1317 entry = macb_rx_ring_wrap(bp, queue->rx_prepared_head);
1318
1319 /* Make hw descriptor updates visible to CPU */
1320 rmb();
1321
1322 desc = macb_rx_desc(queue, entry);
1323
1324 if (!queue->rx_skbuff[entry]) {
1325 /* allocate sk_buff for this free entry in ring */
1326 skb = netdev_alloc_skb(bp->dev, bp->rx_buffer_size);
1327 if (unlikely(!skb)) {
1328 netdev_err(bp->dev,
1329 "Unable to allocate sk_buff\n");
1330 break;
1331 }
1332
1333 /* now fill corresponding descriptor entry */
1334 paddr = dma_map_single(&bp->pdev->dev, skb->data,
1335 bp->rx_buffer_size,
1336 DMA_FROM_DEVICE);
1337 if (dma_mapping_error(&bp->pdev->dev, paddr)) {
1338 dev_kfree_skb(skb);
1339 break;
1340 }
1341
1342 queue->rx_skbuff[entry] = skb;
1343
1344 if (entry == bp->rx_ring_size - 1)
1345 paddr |= MACB_BIT(RX_WRAP);
1346 desc->ctrl = 0;
1347 /* Setting addr clears RX_USED and allows reception,
1348 * make sure ctrl is cleared first to avoid a race.
1349 */
1350 dma_wmb();
1351 macb_set_addr(bp, desc, paddr);
1352
1353 /* properly align Ethernet header */
1354 skb_reserve(skb, NET_IP_ALIGN);
1355 } else {
1356 desc->ctrl = 0;
1357 dma_wmb();
1358 desc->addr &= ~MACB_BIT(RX_USED);
1359 }
1360 queue->rx_prepared_head++;
1361 }
1362
1363 /* Make descriptor updates visible to hardware */
1364 wmb();
1365
1366 netdev_vdbg(bp->dev, "rx ring: queue: %p, prepared head %d, tail %d\n",
1367 queue, queue->rx_prepared_head, queue->rx_tail);
1368}
1369
1370/* Mark DMA descriptors from begin up to and not including end as unused */
1371static void discard_partial_frame(struct macb_queue *queue, unsigned int begin,
1372 unsigned int end)
1373{
1374 unsigned int frag;
1375
1376 for (frag = begin; frag != end; frag++) {
1377 struct macb_dma_desc *desc = macb_rx_desc(queue, frag);
1378
1379 desc->addr &= ~MACB_BIT(RX_USED);
1380 }
1381
1382 /* Make descriptor updates visible to hardware */
1383 wmb();
1384
1385 /* When this happens, the hardware stats registers for
1386 * whatever caused this is updated, so we don't have to record
1387 * anything.
1388 */
1389}
1390
1391static int gem_rx(struct macb_queue *queue, struct napi_struct *napi,
1392 int budget)
1393{
1394 struct macb *bp = queue->bp;
1395 unsigned int len;
1396 unsigned int entry;
1397 struct sk_buff *skb;
1398 struct macb_dma_desc *desc;
1399 int count = 0;
1400
1401 while (count < budget) {
1402 u32 ctrl;
1403 dma_addr_t addr;
1404 bool rxused;
1405
1406 entry = macb_rx_ring_wrap(bp, queue->rx_tail);
1407 desc = macb_rx_desc(queue, entry);
1408
1409 /* Make hw descriptor updates visible to CPU */
1410 rmb();
1411
1412 rxused = (desc->addr & MACB_BIT(RX_USED)) ? true : false;
1413 addr = macb_get_addr(bp, desc);
1414
1415 if (!rxused)
1416 break;
1417
1418 /* Ensure ctrl is at least as up-to-date as rxused */
1419 dma_rmb();
1420
1421 ctrl = desc->ctrl;
1422
1423 queue->rx_tail++;
1424 count++;
1425
1426 if (!(ctrl & MACB_BIT(RX_SOF) && ctrl & MACB_BIT(RX_EOF))) {
1427 netdev_err(bp->dev,
1428 "not whole frame pointed by descriptor\n");
1429 bp->dev->stats.rx_dropped++;
1430 queue->stats.rx_dropped++;
1431 break;
1432 }
1433 skb = queue->rx_skbuff[entry];
1434 if (unlikely(!skb)) {
1435 netdev_err(bp->dev,
1436 "inconsistent Rx descriptor chain\n");
1437 bp->dev->stats.rx_dropped++;
1438 queue->stats.rx_dropped++;
1439 break;
1440 }
1441 /* now everything is ready for receiving packet */
1442 queue->rx_skbuff[entry] = NULL;
1443 len = ctrl & bp->rx_frm_len_mask;
1444
1445 netdev_vdbg(bp->dev, "gem_rx %u (len %u)\n", entry, len);
1446
1447 skb_put(skb, len);
1448 dma_unmap_single(&bp->pdev->dev, addr,
1449 bp->rx_buffer_size, DMA_FROM_DEVICE);
1450
1451 skb->protocol = eth_type_trans(skb, bp->dev);
1452 skb_checksum_none_assert(skb);
1453 if (bp->dev->features & NETIF_F_RXCSUM &&
1454 !(bp->dev->flags & IFF_PROMISC) &&
1455 GEM_BFEXT(RX_CSUM, ctrl) & GEM_RX_CSUM_CHECKED_MASK)
1456 skb->ip_summed = CHECKSUM_UNNECESSARY;
1457
1458 bp->dev->stats.rx_packets++;
1459 queue->stats.rx_packets++;
1460 bp->dev->stats.rx_bytes += skb->len;
1461 queue->stats.rx_bytes += skb->len;
1462
1463 gem_ptp_do_rxstamp(bp, skb, desc);
1464
1465#if defined(DEBUG) && defined(VERBOSE_DEBUG)
1466 netdev_vdbg(bp->dev, "received skb of length %u, csum: %08x\n",
1467 skb->len, skb->csum);
1468 print_hex_dump(KERN_DEBUG, " mac: ", DUMP_PREFIX_ADDRESS, 16, 1,
1469 skb_mac_header(skb), 16, true);
1470 print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_ADDRESS, 16, 1,
1471 skb->data, 32, true);
1472#endif
1473
1474 napi_gro_receive(napi, skb);
1475 }
1476
1477 gem_rx_refill(queue);
1478
1479 return count;
1480}
1481
1482static int macb_rx_frame(struct macb_queue *queue, struct napi_struct *napi,
1483 unsigned int first_frag, unsigned int last_frag)
1484{
1485 unsigned int len;
1486 unsigned int frag;
1487 unsigned int offset;
1488 struct sk_buff *skb;
1489 struct macb_dma_desc *desc;
1490 struct macb *bp = queue->bp;
1491
1492 desc = macb_rx_desc(queue, last_frag);
1493 len = desc->ctrl & bp->rx_frm_len_mask;
1494
1495 netdev_vdbg(bp->dev, "macb_rx_frame frags %u - %u (len %u)\n",
1496 macb_rx_ring_wrap(bp, first_frag),
1497 macb_rx_ring_wrap(bp, last_frag), len);
1498
1499 /* The ethernet header starts NET_IP_ALIGN bytes into the
1500 * first buffer. Since the header is 14 bytes, this makes the
1501 * payload word-aligned.
1502 *
1503 * Instead of calling skb_reserve(NET_IP_ALIGN), we just copy
1504 * the two padding bytes into the skb so that we avoid hitting
1505 * the slowpath in memcpy(), and pull them off afterwards.
1506 */
1507 skb = netdev_alloc_skb(bp->dev, len + NET_IP_ALIGN);
1508 if (!skb) {
1509 bp->dev->stats.rx_dropped++;
1510 for (frag = first_frag; ; frag++) {
1511 desc = macb_rx_desc(queue, frag);
1512 desc->addr &= ~MACB_BIT(RX_USED);
1513 if (frag == last_frag)
1514 break;
1515 }
1516
1517 /* Make descriptor updates visible to hardware */
1518 wmb();
1519
1520 return 1;
1521 }
1522
1523 offset = 0;
1524 len += NET_IP_ALIGN;
1525 skb_checksum_none_assert(skb);
1526 skb_put(skb, len);
1527
1528 for (frag = first_frag; ; frag++) {
1529 unsigned int frag_len = bp->rx_buffer_size;
1530
1531 if (offset + frag_len > len) {
1532 if (unlikely(frag != last_frag)) {
1533 dev_kfree_skb_any(skb);
1534 return -1;
1535 }
1536 frag_len = len - offset;
1537 }
1538 skb_copy_to_linear_data_offset(skb, offset,
1539 macb_rx_buffer(queue, frag),
1540 frag_len);
1541 offset += bp->rx_buffer_size;
1542 desc = macb_rx_desc(queue, frag);
1543 desc->addr &= ~MACB_BIT(RX_USED);
1544
1545 if (frag == last_frag)
1546 break;
1547 }
1548
1549 /* Make descriptor updates visible to hardware */
1550 wmb();
1551
1552 __skb_pull(skb, NET_IP_ALIGN);
1553 skb->protocol = eth_type_trans(skb, bp->dev);
1554
1555 bp->dev->stats.rx_packets++;
1556 bp->dev->stats.rx_bytes += skb->len;
1557 netdev_vdbg(bp->dev, "received skb of length %u, csum: %08x\n",
1558 skb->len, skb->csum);
1559 napi_gro_receive(napi, skb);
1560
1561 return 0;
1562}
1563
1564static inline void macb_init_rx_ring(struct macb_queue *queue)
1565{
1566 struct macb *bp = queue->bp;
1567 dma_addr_t addr;
1568 struct macb_dma_desc *desc = NULL;
1569 int i;
1570
1571 addr = queue->rx_buffers_dma;
1572 for (i = 0; i < bp->rx_ring_size; i++) {
1573 desc = macb_rx_desc(queue, i);
1574 macb_set_addr(bp, desc, addr);
1575 desc->ctrl = 0;
1576 addr += bp->rx_buffer_size;
1577 }
1578 desc->addr |= MACB_BIT(RX_WRAP);
1579 queue->rx_tail = 0;
1580}
1581
1582static int macb_rx(struct macb_queue *queue, struct napi_struct *napi,
1583 int budget)
1584{
1585 struct macb *bp = queue->bp;
1586 bool reset_rx_queue = false;
1587 int received = 0;
1588 unsigned int tail;
1589 int first_frag = -1;
1590
1591 for (tail = queue->rx_tail; budget > 0; tail++) {
1592 struct macb_dma_desc *desc = macb_rx_desc(queue, tail);
1593 u32 ctrl;
1594
1595 /* Make hw descriptor updates visible to CPU */
1596 rmb();
1597
1598 if (!(desc->addr & MACB_BIT(RX_USED)))
1599 break;
1600
1601 /* Ensure ctrl is at least as up-to-date as addr */
1602 dma_rmb();
1603
1604 ctrl = desc->ctrl;
1605
1606 if (ctrl & MACB_BIT(RX_SOF)) {
1607 if (first_frag != -1)
1608 discard_partial_frame(queue, first_frag, tail);
1609 first_frag = tail;
1610 }
1611
1612 if (ctrl & MACB_BIT(RX_EOF)) {
1613 int dropped;
1614
1615 if (unlikely(first_frag == -1)) {
1616 reset_rx_queue = true;
1617 continue;
1618 }
1619
1620 dropped = macb_rx_frame(queue, napi, first_frag, tail);
1621 first_frag = -1;
1622 if (unlikely(dropped < 0)) {
1623 reset_rx_queue = true;
1624 continue;
1625 }
1626 if (!dropped) {
1627 received++;
1628 budget--;
1629 }
1630 }
1631 }
1632
1633 if (unlikely(reset_rx_queue)) {
1634 unsigned long flags;
1635 u32 ctrl;
1636
1637 netdev_err(bp->dev, "RX queue corruption: reset it\n");
1638
1639 spin_lock_irqsave(&bp->lock, flags);
1640
1641 ctrl = macb_readl(bp, NCR);
1642 macb_writel(bp, NCR, ctrl & ~MACB_BIT(RE));
1643
1644 macb_init_rx_ring(queue);
1645 queue_writel(queue, RBQP, queue->rx_ring_dma);
1646
1647 macb_writel(bp, NCR, ctrl | MACB_BIT(RE));
1648
1649 spin_unlock_irqrestore(&bp->lock, flags);
1650 return received;
1651 }
1652
1653 if (first_frag != -1)
1654 queue->rx_tail = first_frag;
1655 else
1656 queue->rx_tail = tail;
1657
1658 return received;
1659}
1660
1661static bool macb_rx_pending(struct macb_queue *queue)
1662{
1663 struct macb *bp = queue->bp;
1664 unsigned int entry;
1665 struct macb_dma_desc *desc;
1666
1667 entry = macb_rx_ring_wrap(bp, queue->rx_tail);
1668 desc = macb_rx_desc(queue, entry);
1669
1670 /* Make hw descriptor updates visible to CPU */
1671 rmb();
1672
1673 return (desc->addr & MACB_BIT(RX_USED)) != 0;
1674}
1675
1676static int macb_rx_poll(struct napi_struct *napi, int budget)
1677{
1678 struct macb_queue *queue = container_of(napi, struct macb_queue, napi_rx);
1679 struct macb *bp = queue->bp;
1680 int work_done;
1681
1682 work_done = bp->macbgem_ops.mog_rx(queue, napi, budget);
1683
1684 netdev_vdbg(bp->dev, "RX poll: queue = %u, work_done = %d, budget = %d\n",
1685 (unsigned int)(queue - bp->queues), work_done, budget);
1686
1687 if (work_done < budget && napi_complete_done(napi, work_done)) {
1688 queue_writel(queue, IER, bp->rx_intr_mask);
1689
1690 /* Packet completions only seem to propagate to raise
1691 * interrupts when interrupts are enabled at the time, so if
1692 * packets were received while interrupts were disabled,
1693 * they will not cause another interrupt to be generated when
1694 * interrupts are re-enabled.
1695 * Check for this case here to avoid losing a wakeup. This can
1696 * potentially race with the interrupt handler doing the same
1697 * actions if an interrupt is raised just after enabling them,
1698 * but this should be harmless.
1699 */
1700 if (macb_rx_pending(queue)) {
1701 queue_writel(queue, IDR, bp->rx_intr_mask);
1702 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1703 queue_writel(queue, ISR, MACB_BIT(RCOMP));
1704 netdev_vdbg(bp->dev, "poll: packets pending, reschedule\n");
1705 napi_schedule(napi);
1706 }
1707 }
1708
1709 /* TODO: Handle errors */
1710
1711 return work_done;
1712}
1713
1714static void macb_tx_restart(struct macb_queue *queue)
1715{
1716 struct macb *bp = queue->bp;
1717 unsigned int head_idx, tbqp;
1718
1719 spin_lock(&queue->tx_ptr_lock);
1720
1721 if (queue->tx_head == queue->tx_tail)
1722 goto out_tx_ptr_unlock;
1723
1724 tbqp = queue_readl(queue, TBQP) / macb_dma_desc_get_size(bp);
1725 tbqp = macb_adj_dma_desc_idx(bp, macb_tx_ring_wrap(bp, tbqp));
1726 head_idx = macb_adj_dma_desc_idx(bp, macb_tx_ring_wrap(bp, queue->tx_head));
1727
1728 if (tbqp == head_idx)
1729 goto out_tx_ptr_unlock;
1730
1731 spin_lock_irq(&bp->lock);
1732 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TSTART));
1733 spin_unlock_irq(&bp->lock);
1734
1735out_tx_ptr_unlock:
1736 spin_unlock(&queue->tx_ptr_lock);
1737}
1738
1739static bool macb_tx_complete_pending(struct macb_queue *queue)
1740{
1741 bool retval = false;
1742
1743 spin_lock(&queue->tx_ptr_lock);
1744 if (queue->tx_head != queue->tx_tail) {
1745 /* Make hw descriptor updates visible to CPU */
1746 rmb();
1747
1748 if (macb_tx_desc(queue, queue->tx_tail)->ctrl & MACB_BIT(TX_USED))
1749 retval = true;
1750 }
1751 spin_unlock(&queue->tx_ptr_lock);
1752 return retval;
1753}
1754
1755static int macb_tx_poll(struct napi_struct *napi, int budget)
1756{
1757 struct macb_queue *queue = container_of(napi, struct macb_queue, napi_tx);
1758 struct macb *bp = queue->bp;
1759 int work_done;
1760
1761 work_done = macb_tx_complete(queue, budget);
1762
1763 rmb(); // ensure txubr_pending is up to date
1764 if (queue->txubr_pending) {
1765 queue->txubr_pending = false;
1766 netdev_vdbg(bp->dev, "poll: tx restart\n");
1767 macb_tx_restart(queue);
1768 }
1769
1770 netdev_vdbg(bp->dev, "TX poll: queue = %u, work_done = %d, budget = %d\n",
1771 (unsigned int)(queue - bp->queues), work_done, budget);
1772
1773 if (work_done < budget && napi_complete_done(napi, work_done)) {
1774 queue_writel(queue, IER, MACB_BIT(TCOMP));
1775
1776 /* Packet completions only seem to propagate to raise
1777 * interrupts when interrupts are enabled at the time, so if
1778 * packets were sent while interrupts were disabled,
1779 * they will not cause another interrupt to be generated when
1780 * interrupts are re-enabled.
1781 * Check for this case here to avoid losing a wakeup. This can
1782 * potentially race with the interrupt handler doing the same
1783 * actions if an interrupt is raised just after enabling them,
1784 * but this should be harmless.
1785 */
1786 if (macb_tx_complete_pending(queue)) {
1787 queue_writel(queue, IDR, MACB_BIT(TCOMP));
1788 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1789 queue_writel(queue, ISR, MACB_BIT(TCOMP));
1790 netdev_vdbg(bp->dev, "TX poll: packets pending, reschedule\n");
1791 napi_schedule(napi);
1792 }
1793 }
1794
1795 return work_done;
1796}
1797
1798static void macb_hresp_error_task(struct work_struct *work)
1799{
1800 struct macb *bp = from_work(bp, work, hresp_err_bh_work);
1801 struct net_device *dev = bp->dev;
1802 struct macb_queue *queue;
1803 unsigned int q;
1804 u32 ctrl;
1805
1806 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
1807 queue_writel(queue, IDR, bp->rx_intr_mask |
1808 MACB_TX_INT_FLAGS |
1809 MACB_BIT(HRESP));
1810 }
1811 ctrl = macb_readl(bp, NCR);
1812 ctrl &= ~(MACB_BIT(RE) | MACB_BIT(TE));
1813 macb_writel(bp, NCR, ctrl);
1814
1815 netif_tx_stop_all_queues(dev);
1816 netif_carrier_off(dev);
1817
1818 bp->macbgem_ops.mog_init_rings(bp);
1819
1820 /* Initialize TX and RX buffers */
1821 macb_init_buffers(bp);
1822
1823 /* Enable interrupts */
1824 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
1825 queue_writel(queue, IER,
1826 bp->rx_intr_mask |
1827 MACB_TX_INT_FLAGS |
1828 MACB_BIT(HRESP));
1829
1830 ctrl |= MACB_BIT(RE) | MACB_BIT(TE);
1831 macb_writel(bp, NCR, ctrl);
1832
1833 netif_carrier_on(dev);
1834 netif_tx_start_all_queues(dev);
1835}
1836
1837static irqreturn_t macb_wol_interrupt(int irq, void *dev_id)
1838{
1839 struct macb_queue *queue = dev_id;
1840 struct macb *bp = queue->bp;
1841 u32 status;
1842
1843 status = queue_readl(queue, ISR);
1844
1845 if (unlikely(!status))
1846 return IRQ_NONE;
1847
1848 spin_lock(&bp->lock);
1849
1850 if (status & MACB_BIT(WOL)) {
1851 queue_writel(queue, IDR, MACB_BIT(WOL));
1852 macb_writel(bp, WOL, 0);
1853 netdev_vdbg(bp->dev, "MACB WoL: queue = %u, isr = 0x%08lx\n",
1854 (unsigned int)(queue - bp->queues),
1855 (unsigned long)status);
1856 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1857 queue_writel(queue, ISR, MACB_BIT(WOL));
1858 pm_wakeup_event(&bp->pdev->dev, 0);
1859 }
1860
1861 spin_unlock(&bp->lock);
1862
1863 return IRQ_HANDLED;
1864}
1865
1866static irqreturn_t gem_wol_interrupt(int irq, void *dev_id)
1867{
1868 struct macb_queue *queue = dev_id;
1869 struct macb *bp = queue->bp;
1870 u32 status;
1871
1872 status = queue_readl(queue, ISR);
1873
1874 if (unlikely(!status))
1875 return IRQ_NONE;
1876
1877 spin_lock(&bp->lock);
1878
1879 if (status & GEM_BIT(WOL)) {
1880 queue_writel(queue, IDR, GEM_BIT(WOL));
1881 gem_writel(bp, WOL, 0);
1882 netdev_vdbg(bp->dev, "GEM WoL: queue = %u, isr = 0x%08lx\n",
1883 (unsigned int)(queue - bp->queues),
1884 (unsigned long)status);
1885 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1886 queue_writel(queue, ISR, GEM_BIT(WOL));
1887 pm_wakeup_event(&bp->pdev->dev, 0);
1888 }
1889
1890 spin_unlock(&bp->lock);
1891
1892 return IRQ_HANDLED;
1893}
1894
1895static irqreturn_t macb_interrupt(int irq, void *dev_id)
1896{
1897 struct macb_queue *queue = dev_id;
1898 struct macb *bp = queue->bp;
1899 struct net_device *dev = bp->dev;
1900 u32 status, ctrl;
1901
1902 status = queue_readl(queue, ISR);
1903
1904 if (unlikely(!status))
1905 return IRQ_NONE;
1906
1907 spin_lock(&bp->lock);
1908
1909 while (status) {
1910 /* close possible race with dev_close */
1911 if (unlikely(!netif_running(dev))) {
1912 queue_writel(queue, IDR, -1);
1913 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1914 queue_writel(queue, ISR, -1);
1915 break;
1916 }
1917
1918 netdev_vdbg(bp->dev, "queue = %u, isr = 0x%08lx\n",
1919 (unsigned int)(queue - bp->queues),
1920 (unsigned long)status);
1921
1922 if (status & bp->rx_intr_mask) {
1923 /* There's no point taking any more interrupts
1924 * until we have processed the buffers. The
1925 * scheduling call may fail if the poll routine
1926 * is already scheduled, so disable interrupts
1927 * now.
1928 */
1929 queue_writel(queue, IDR, bp->rx_intr_mask);
1930 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1931 queue_writel(queue, ISR, MACB_BIT(RCOMP));
1932
1933 if (napi_schedule_prep(&queue->napi_rx)) {
1934 netdev_vdbg(bp->dev, "scheduling RX softirq\n");
1935 __napi_schedule(&queue->napi_rx);
1936 }
1937 }
1938
1939 if (status & (MACB_BIT(TCOMP) |
1940 MACB_BIT(TXUBR))) {
1941 queue_writel(queue, IDR, MACB_BIT(TCOMP));
1942 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1943 queue_writel(queue, ISR, MACB_BIT(TCOMP) |
1944 MACB_BIT(TXUBR));
1945
1946 if (status & MACB_BIT(TXUBR)) {
1947 queue->txubr_pending = true;
1948 wmb(); // ensure softirq can see update
1949 }
1950
1951 if (napi_schedule_prep(&queue->napi_tx)) {
1952 netdev_vdbg(bp->dev, "scheduling TX softirq\n");
1953 __napi_schedule(&queue->napi_tx);
1954 }
1955 }
1956
1957 if (unlikely(status & (MACB_TX_ERR_FLAGS))) {
1958 queue_writel(queue, IDR, MACB_TX_INT_FLAGS);
1959 schedule_work(&queue->tx_error_task);
1960
1961 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1962 queue_writel(queue, ISR, MACB_TX_ERR_FLAGS);
1963
1964 break;
1965 }
1966
1967 /* Link change detection isn't possible with RMII, so we'll
1968 * add that if/when we get our hands on a full-blown MII PHY.
1969 */
1970
1971 /* There is a hardware issue under heavy load where DMA can
1972 * stop, this causes endless "used buffer descriptor read"
1973 * interrupts but it can be cleared by re-enabling RX. See
1974 * the at91rm9200 manual, section 41.3.1 or the Zynq manual
1975 * section 16.7.4 for details. RXUBR is only enabled for
1976 * these two versions.
1977 */
1978 if (status & MACB_BIT(RXUBR)) {
1979 ctrl = macb_readl(bp, NCR);
1980 macb_writel(bp, NCR, ctrl & ~MACB_BIT(RE));
1981 wmb();
1982 macb_writel(bp, NCR, ctrl | MACB_BIT(RE));
1983
1984 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1985 queue_writel(queue, ISR, MACB_BIT(RXUBR));
1986 }
1987
1988 if (status & MACB_BIT(ISR_ROVR)) {
1989 /* We missed at least one packet */
1990 spin_lock(&bp->stats_lock);
1991 if (macb_is_gem(bp))
1992 bp->hw_stats.gem.rx_overruns++;
1993 else
1994 bp->hw_stats.macb.rx_overruns++;
1995 spin_unlock(&bp->stats_lock);
1996
1997 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
1998 queue_writel(queue, ISR, MACB_BIT(ISR_ROVR));
1999 }
2000
2001 if (status & MACB_BIT(HRESP)) {
2002 queue_work(system_bh_wq, &bp->hresp_err_bh_work);
2003 netdev_err(dev, "DMA bus error: HRESP not OK\n");
2004
2005 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
2006 queue_writel(queue, ISR, MACB_BIT(HRESP));
2007 }
2008 status = queue_readl(queue, ISR);
2009 }
2010
2011 spin_unlock(&bp->lock);
2012
2013 return IRQ_HANDLED;
2014}
2015
2016#ifdef CONFIG_NET_POLL_CONTROLLER
2017/* Polling receive - used by netconsole and other diagnostic tools
2018 * to allow network i/o with interrupts disabled.
2019 */
2020static void macb_poll_controller(struct net_device *dev)
2021{
2022 struct macb *bp = netdev_priv(dev);
2023 struct macb_queue *queue;
2024 unsigned long flags;
2025 unsigned int q;
2026
2027 local_irq_save(flags);
2028 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
2029 macb_interrupt(dev->irq, queue);
2030 local_irq_restore(flags);
2031}
2032#endif
2033
2034static unsigned int macb_tx_map(struct macb *bp,
2035 struct macb_queue *queue,
2036 struct sk_buff *skb,
2037 unsigned int hdrlen)
2038{
2039 dma_addr_t mapping;
2040 unsigned int len, entry, i, tx_head = queue->tx_head;
2041 struct macb_tx_skb *tx_skb = NULL;
2042 struct macb_dma_desc *desc;
2043 unsigned int offset, size, count = 0;
2044 unsigned int f, nr_frags = skb_shinfo(skb)->nr_frags;
2045 unsigned int eof = 1, mss_mfs = 0;
2046 u32 ctrl, lso_ctrl = 0, seq_ctrl = 0;
2047
2048 /* LSO */
2049 if (skb_shinfo(skb)->gso_size != 0) {
2050 if (ip_hdr(skb)->protocol == IPPROTO_UDP)
2051 /* UDP - UFO */
2052 lso_ctrl = MACB_LSO_UFO_ENABLE;
2053 else
2054 /* TCP - TSO */
2055 lso_ctrl = MACB_LSO_TSO_ENABLE;
2056 }
2057
2058 /* First, map non-paged data */
2059 len = skb_headlen(skb);
2060
2061 /* first buffer length */
2062 size = hdrlen;
2063
2064 offset = 0;
2065 while (len) {
2066 entry = macb_tx_ring_wrap(bp, tx_head);
2067 tx_skb = &queue->tx_skb[entry];
2068
2069 mapping = dma_map_single(&bp->pdev->dev,
2070 skb->data + offset,
2071 size, DMA_TO_DEVICE);
2072 if (dma_mapping_error(&bp->pdev->dev, mapping))
2073 goto dma_error;
2074
2075 /* Save info to properly release resources */
2076 tx_skb->skb = NULL;
2077 tx_skb->mapping = mapping;
2078 tx_skb->size = size;
2079 tx_skb->mapped_as_page = false;
2080
2081 len -= size;
2082 offset += size;
2083 count++;
2084 tx_head++;
2085
2086 size = min(len, bp->max_tx_length);
2087 }
2088
2089 /* Then, map paged data from fragments */
2090 for (f = 0; f < nr_frags; f++) {
2091 const skb_frag_t *frag = &skb_shinfo(skb)->frags[f];
2092
2093 len = skb_frag_size(frag);
2094 offset = 0;
2095 while (len) {
2096 size = min(len, bp->max_tx_length);
2097 entry = macb_tx_ring_wrap(bp, tx_head);
2098 tx_skb = &queue->tx_skb[entry];
2099
2100 mapping = skb_frag_dma_map(&bp->pdev->dev, frag,
2101 offset, size, DMA_TO_DEVICE);
2102 if (dma_mapping_error(&bp->pdev->dev, mapping))
2103 goto dma_error;
2104
2105 /* Save info to properly release resources */
2106 tx_skb->skb = NULL;
2107 tx_skb->mapping = mapping;
2108 tx_skb->size = size;
2109 tx_skb->mapped_as_page = true;
2110
2111 len -= size;
2112 offset += size;
2113 count++;
2114 tx_head++;
2115 }
2116 }
2117
2118 /* Should never happen */
2119 if (unlikely(!tx_skb)) {
2120 netdev_err(bp->dev, "BUG! empty skb!\n");
2121 return 0;
2122 }
2123
2124 /* This is the last buffer of the frame: save socket buffer */
2125 tx_skb->skb = skb;
2126
2127 /* Update TX ring: update buffer descriptors in reverse order
2128 * to avoid race condition
2129 */
2130
2131 /* Set 'TX_USED' bit in buffer descriptor at tx_head position
2132 * to set the end of TX queue
2133 */
2134 i = tx_head;
2135 entry = macb_tx_ring_wrap(bp, i);
2136 ctrl = MACB_BIT(TX_USED);
2137 desc = macb_tx_desc(queue, entry);
2138 desc->ctrl = ctrl;
2139
2140 if (lso_ctrl) {
2141 if (lso_ctrl == MACB_LSO_UFO_ENABLE)
2142 /* include header and FCS in value given to h/w */
2143 mss_mfs = skb_shinfo(skb)->gso_size +
2144 skb_transport_offset(skb) +
2145 ETH_FCS_LEN;
2146 else /* TSO */ {
2147 mss_mfs = skb_shinfo(skb)->gso_size;
2148 /* TCP Sequence Number Source Select
2149 * can be set only for TSO
2150 */
2151 seq_ctrl = 0;
2152 }
2153 }
2154
2155 do {
2156 i--;
2157 entry = macb_tx_ring_wrap(bp, i);
2158 tx_skb = &queue->tx_skb[entry];
2159 desc = macb_tx_desc(queue, entry);
2160
2161 ctrl = (u32)tx_skb->size;
2162 if (eof) {
2163 ctrl |= MACB_BIT(TX_LAST);
2164 eof = 0;
2165 }
2166 if (unlikely(entry == (bp->tx_ring_size - 1)))
2167 ctrl |= MACB_BIT(TX_WRAP);
2168
2169 /* First descriptor is header descriptor */
2170 if (i == queue->tx_head) {
2171 ctrl |= MACB_BF(TX_LSO, lso_ctrl);
2172 ctrl |= MACB_BF(TX_TCP_SEQ_SRC, seq_ctrl);
2173 if ((bp->dev->features & NETIF_F_HW_CSUM) &&
2174 skb->ip_summed != CHECKSUM_PARTIAL && !lso_ctrl &&
2175 !ptp_one_step_sync(skb))
2176 ctrl |= MACB_BIT(TX_NOCRC);
2177 } else
2178 /* Only set MSS/MFS on payload descriptors
2179 * (second or later descriptor)
2180 */
2181 ctrl |= MACB_BF(MSS_MFS, mss_mfs);
2182
2183 /* Set TX buffer descriptor */
2184 macb_set_addr(bp, desc, tx_skb->mapping);
2185 /* desc->addr must be visible to hardware before clearing
2186 * 'TX_USED' bit in desc->ctrl.
2187 */
2188 wmb();
2189 desc->ctrl = ctrl;
2190 } while (i != queue->tx_head);
2191
2192 queue->tx_head = tx_head;
2193
2194 return count;
2195
2196dma_error:
2197 netdev_err(bp->dev, "TX DMA map failed\n");
2198
2199 for (i = queue->tx_head; i != tx_head; i++) {
2200 tx_skb = macb_tx_skb(queue, i);
2201
2202 macb_tx_unmap(bp, tx_skb, 0);
2203 }
2204
2205 return 0;
2206}
2207
2208static netdev_features_t macb_features_check(struct sk_buff *skb,
2209 struct net_device *dev,
2210 netdev_features_t features)
2211{
2212 unsigned int nr_frags, f;
2213 unsigned int hdrlen;
2214
2215 /* Validate LSO compatibility */
2216
2217 /* there is only one buffer or protocol is not UDP */
2218 if (!skb_is_nonlinear(skb) || (ip_hdr(skb)->protocol != IPPROTO_UDP))
2219 return features;
2220
2221 /* length of header */
2222 hdrlen = skb_transport_offset(skb);
2223
2224 /* For UFO only:
2225 * When software supplies two or more payload buffers all payload buffers
2226 * apart from the last must be a multiple of 8 bytes in size.
2227 */
2228 if (!IS_ALIGNED(skb_headlen(skb) - hdrlen, MACB_TX_LEN_ALIGN))
2229 return features & ~MACB_NETIF_LSO;
2230
2231 nr_frags = skb_shinfo(skb)->nr_frags;
2232 /* No need to check last fragment */
2233 nr_frags--;
2234 for (f = 0; f < nr_frags; f++) {
2235 const skb_frag_t *frag = &skb_shinfo(skb)->frags[f];
2236
2237 if (!IS_ALIGNED(skb_frag_size(frag), MACB_TX_LEN_ALIGN))
2238 return features & ~MACB_NETIF_LSO;
2239 }
2240 return features;
2241}
2242
2243static inline int macb_clear_csum(struct sk_buff *skb)
2244{
2245 /* no change for packets without checksum offloading */
2246 if (skb->ip_summed != CHECKSUM_PARTIAL)
2247 return 0;
2248
2249 /* make sure we can modify the header */
2250 if (unlikely(skb_cow_head(skb, 0)))
2251 return -1;
2252
2253 /* initialize checksum field
2254 * This is required - at least for Zynq, which otherwise calculates
2255 * wrong UDP header checksums for UDP packets with UDP data len <=2
2256 */
2257 *(__sum16 *)(skb_checksum_start(skb) + skb->csum_offset) = 0;
2258 return 0;
2259}
2260
2261static int macb_pad_and_fcs(struct sk_buff **skb, struct net_device *ndev)
2262{
2263 bool cloned = skb_cloned(*skb) || skb_header_cloned(*skb) ||
2264 skb_is_nonlinear(*skb);
2265 int padlen = ETH_ZLEN - (*skb)->len;
2266 int tailroom = skb_tailroom(*skb);
2267 struct sk_buff *nskb;
2268 u32 fcs;
2269
2270 if (!(ndev->features & NETIF_F_HW_CSUM) ||
2271 !((*skb)->ip_summed != CHECKSUM_PARTIAL) ||
2272 skb_shinfo(*skb)->gso_size || ptp_one_step_sync(*skb))
2273 return 0;
2274
2275 if (padlen <= 0) {
2276 /* FCS could be appeded to tailroom. */
2277 if (tailroom >= ETH_FCS_LEN)
2278 goto add_fcs;
2279 /* No room for FCS, need to reallocate skb. */
2280 else
2281 padlen = ETH_FCS_LEN;
2282 } else {
2283 /* Add room for FCS. */
2284 padlen += ETH_FCS_LEN;
2285 }
2286
2287 if (cloned || tailroom < padlen) {
2288 nskb = skb_copy_expand(*skb, 0, padlen, GFP_ATOMIC);
2289 if (!nskb)
2290 return -ENOMEM;
2291
2292 dev_consume_skb_any(*skb);
2293 *skb = nskb;
2294 }
2295
2296 if (padlen > ETH_FCS_LEN)
2297 skb_put_zero(*skb, padlen - ETH_FCS_LEN);
2298
2299add_fcs:
2300 /* set FCS to packet */
2301 fcs = crc32_le(~0, (*skb)->data, (*skb)->len);
2302 fcs = ~fcs;
2303
2304 skb_put_u8(*skb, fcs & 0xff);
2305 skb_put_u8(*skb, (fcs >> 8) & 0xff);
2306 skb_put_u8(*skb, (fcs >> 16) & 0xff);
2307 skb_put_u8(*skb, (fcs >> 24) & 0xff);
2308
2309 return 0;
2310}
2311
2312static netdev_tx_t macb_start_xmit(struct sk_buff *skb, struct net_device *dev)
2313{
2314 u16 queue_index = skb_get_queue_mapping(skb);
2315 struct macb *bp = netdev_priv(dev);
2316 struct macb_queue *queue = &bp->queues[queue_index];
2317 unsigned int desc_cnt, nr_frags, frag_size, f;
2318 unsigned int hdrlen;
2319 bool is_lso;
2320 netdev_tx_t ret = NETDEV_TX_OK;
2321
2322 if (macb_clear_csum(skb)) {
2323 dev_kfree_skb_any(skb);
2324 return ret;
2325 }
2326
2327 if (macb_pad_and_fcs(&skb, dev)) {
2328 dev_kfree_skb_any(skb);
2329 return ret;
2330 }
2331
2332#ifdef CONFIG_MACB_USE_HWSTAMP
2333 if ((skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) &&
2334 (bp->hw_dma_cap & HW_DMA_CAP_PTP))
2335 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
2336#endif
2337
2338 is_lso = (skb_shinfo(skb)->gso_size != 0);
2339
2340 if (is_lso) {
2341 /* length of headers */
2342 if (ip_hdr(skb)->protocol == IPPROTO_UDP)
2343 /* only queue eth + ip headers separately for UDP */
2344 hdrlen = skb_transport_offset(skb);
2345 else
2346 hdrlen = skb_tcp_all_headers(skb);
2347 if (skb_headlen(skb) < hdrlen) {
2348 netdev_err(bp->dev, "Error - LSO headers fragmented!!!\n");
2349 /* if this is required, would need to copy to single buffer */
2350 return NETDEV_TX_BUSY;
2351 }
2352 } else
2353 hdrlen = min(skb_headlen(skb), bp->max_tx_length);
2354
2355#if defined(DEBUG) && defined(VERBOSE_DEBUG)
2356 netdev_vdbg(bp->dev,
2357 "start_xmit: queue %hu len %u head %p data %p tail %p end %p\n",
2358 queue_index, skb->len, skb->head, skb->data,
2359 skb_tail_pointer(skb), skb_end_pointer(skb));
2360 print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_OFFSET, 16, 1,
2361 skb->data, 16, true);
2362#endif
2363
2364 /* Count how many TX buffer descriptors are needed to send this
2365 * socket buffer: skb fragments of jumbo frames may need to be
2366 * split into many buffer descriptors.
2367 */
2368 if (is_lso && (skb_headlen(skb) > hdrlen))
2369 /* extra header descriptor if also payload in first buffer */
2370 desc_cnt = DIV_ROUND_UP((skb_headlen(skb) - hdrlen), bp->max_tx_length) + 1;
2371 else
2372 desc_cnt = DIV_ROUND_UP(skb_headlen(skb), bp->max_tx_length);
2373 nr_frags = skb_shinfo(skb)->nr_frags;
2374 for (f = 0; f < nr_frags; f++) {
2375 frag_size = skb_frag_size(&skb_shinfo(skb)->frags[f]);
2376 desc_cnt += DIV_ROUND_UP(frag_size, bp->max_tx_length);
2377 }
2378
2379 spin_lock_bh(&queue->tx_ptr_lock);
2380
2381 /* This is a hard error, log it. */
2382 if (CIRC_SPACE(queue->tx_head, queue->tx_tail,
2383 bp->tx_ring_size) < desc_cnt) {
2384 netif_stop_subqueue(dev, queue_index);
2385 netdev_dbg(bp->dev, "tx_head = %u, tx_tail = %u\n",
2386 queue->tx_head, queue->tx_tail);
2387 ret = NETDEV_TX_BUSY;
2388 goto unlock;
2389 }
2390
2391 /* Map socket buffer for DMA transfer */
2392 if (!macb_tx_map(bp, queue, skb, hdrlen)) {
2393 dev_kfree_skb_any(skb);
2394 goto unlock;
2395 }
2396
2397 /* Make newly initialized descriptor visible to hardware */
2398 wmb();
2399 skb_tx_timestamp(skb);
2400
2401 spin_lock_irq(&bp->lock);
2402 macb_writel(bp, NCR, macb_readl(bp, NCR) | MACB_BIT(TSTART));
2403 spin_unlock_irq(&bp->lock);
2404
2405 if (CIRC_SPACE(queue->tx_head, queue->tx_tail, bp->tx_ring_size) < 1)
2406 netif_stop_subqueue(dev, queue_index);
2407
2408unlock:
2409 spin_unlock_bh(&queue->tx_ptr_lock);
2410
2411 return ret;
2412}
2413
2414static void macb_init_rx_buffer_size(struct macb *bp, size_t size)
2415{
2416 if (!macb_is_gem(bp)) {
2417 bp->rx_buffer_size = MACB_RX_BUFFER_SIZE;
2418 } else {
2419 bp->rx_buffer_size = size;
2420
2421 if (bp->rx_buffer_size % RX_BUFFER_MULTIPLE) {
2422 netdev_dbg(bp->dev,
2423 "RX buffer must be multiple of %d bytes, expanding\n",
2424 RX_BUFFER_MULTIPLE);
2425 bp->rx_buffer_size =
2426 roundup(bp->rx_buffer_size, RX_BUFFER_MULTIPLE);
2427 }
2428 }
2429
2430 netdev_dbg(bp->dev, "mtu [%u] rx_buffer_size [%zu]\n",
2431 bp->dev->mtu, bp->rx_buffer_size);
2432}
2433
2434static void gem_free_rx_buffers(struct macb *bp)
2435{
2436 struct sk_buff *skb;
2437 struct macb_dma_desc *desc;
2438 struct macb_queue *queue;
2439 dma_addr_t addr;
2440 unsigned int q;
2441 int i;
2442
2443 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
2444 if (!queue->rx_skbuff)
2445 continue;
2446
2447 for (i = 0; i < bp->rx_ring_size; i++) {
2448 skb = queue->rx_skbuff[i];
2449
2450 if (!skb)
2451 continue;
2452
2453 desc = macb_rx_desc(queue, i);
2454 addr = macb_get_addr(bp, desc);
2455
2456 dma_unmap_single(&bp->pdev->dev, addr, bp->rx_buffer_size,
2457 DMA_FROM_DEVICE);
2458 dev_kfree_skb_any(skb);
2459 skb = NULL;
2460 }
2461
2462 kfree(queue->rx_skbuff);
2463 queue->rx_skbuff = NULL;
2464 }
2465}
2466
2467static void macb_free_rx_buffers(struct macb *bp)
2468{
2469 struct macb_queue *queue = &bp->queues[0];
2470
2471 if (queue->rx_buffers) {
2472 dma_free_coherent(&bp->pdev->dev,
2473 bp->rx_ring_size * bp->rx_buffer_size,
2474 queue->rx_buffers, queue->rx_buffers_dma);
2475 queue->rx_buffers = NULL;
2476 }
2477}
2478
2479static void macb_free_consistent(struct macb *bp)
2480{
2481 struct macb_queue *queue;
2482 unsigned int q;
2483 int size;
2484
2485 if (bp->rx_ring_tieoff) {
2486 dma_free_coherent(&bp->pdev->dev, macb_dma_desc_get_size(bp),
2487 bp->rx_ring_tieoff, bp->rx_ring_tieoff_dma);
2488 bp->rx_ring_tieoff = NULL;
2489 }
2490
2491 bp->macbgem_ops.mog_free_rx_buffers(bp);
2492
2493 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
2494 kfree(queue->tx_skb);
2495 queue->tx_skb = NULL;
2496 if (queue->tx_ring) {
2497 size = TX_RING_BYTES(bp) + bp->tx_bd_rd_prefetch;
2498 dma_free_coherent(&bp->pdev->dev, size,
2499 queue->tx_ring, queue->tx_ring_dma);
2500 queue->tx_ring = NULL;
2501 }
2502 if (queue->rx_ring) {
2503 size = RX_RING_BYTES(bp) + bp->rx_bd_rd_prefetch;
2504 dma_free_coherent(&bp->pdev->dev, size,
2505 queue->rx_ring, queue->rx_ring_dma);
2506 queue->rx_ring = NULL;
2507 }
2508 }
2509}
2510
2511static int gem_alloc_rx_buffers(struct macb *bp)
2512{
2513 struct macb_queue *queue;
2514 unsigned int q;
2515 int size;
2516
2517 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
2518 size = bp->rx_ring_size * sizeof(struct sk_buff *);
2519 queue->rx_skbuff = kzalloc(size, GFP_KERNEL);
2520 if (!queue->rx_skbuff)
2521 return -ENOMEM;
2522 else
2523 netdev_dbg(bp->dev,
2524 "Allocated %d RX struct sk_buff entries at %p\n",
2525 bp->rx_ring_size, queue->rx_skbuff);
2526 }
2527 return 0;
2528}
2529
2530static int macb_alloc_rx_buffers(struct macb *bp)
2531{
2532 struct macb_queue *queue = &bp->queues[0];
2533 int size;
2534
2535 size = bp->rx_ring_size * bp->rx_buffer_size;
2536 queue->rx_buffers = dma_alloc_coherent(&bp->pdev->dev, size,
2537 &queue->rx_buffers_dma, GFP_KERNEL);
2538 if (!queue->rx_buffers)
2539 return -ENOMEM;
2540
2541 netdev_dbg(bp->dev,
2542 "Allocated RX buffers of %d bytes at %08lx (mapped %p)\n",
2543 size, (unsigned long)queue->rx_buffers_dma, queue->rx_buffers);
2544 return 0;
2545}
2546
2547static int macb_alloc_consistent(struct macb *bp)
2548{
2549 struct macb_queue *queue;
2550 unsigned int q;
2551 int size;
2552
2553 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
2554 size = TX_RING_BYTES(bp) + bp->tx_bd_rd_prefetch;
2555 queue->tx_ring = dma_alloc_coherent(&bp->pdev->dev, size,
2556 &queue->tx_ring_dma,
2557 GFP_KERNEL);
2558 if (!queue->tx_ring)
2559 goto out_err;
2560 netdev_dbg(bp->dev,
2561 "Allocated TX ring for queue %u of %d bytes at %08lx (mapped %p)\n",
2562 q, size, (unsigned long)queue->tx_ring_dma,
2563 queue->tx_ring);
2564
2565 size = bp->tx_ring_size * sizeof(struct macb_tx_skb);
2566 queue->tx_skb = kmalloc(size, GFP_KERNEL);
2567 if (!queue->tx_skb)
2568 goto out_err;
2569
2570 size = RX_RING_BYTES(bp) + bp->rx_bd_rd_prefetch;
2571 queue->rx_ring = dma_alloc_coherent(&bp->pdev->dev, size,
2572 &queue->rx_ring_dma, GFP_KERNEL);
2573 if (!queue->rx_ring)
2574 goto out_err;
2575 netdev_dbg(bp->dev,
2576 "Allocated RX ring of %d bytes at %08lx (mapped %p)\n",
2577 size, (unsigned long)queue->rx_ring_dma, queue->rx_ring);
2578 }
2579 if (bp->macbgem_ops.mog_alloc_rx_buffers(bp))
2580 goto out_err;
2581
2582 /* Required for tie off descriptor for PM cases */
2583 if (!(bp->caps & MACB_CAPS_QUEUE_DISABLE)) {
2584 bp->rx_ring_tieoff = dma_alloc_coherent(&bp->pdev->dev,
2585 macb_dma_desc_get_size(bp),
2586 &bp->rx_ring_tieoff_dma,
2587 GFP_KERNEL);
2588 if (!bp->rx_ring_tieoff)
2589 goto out_err;
2590 }
2591
2592 return 0;
2593
2594out_err:
2595 macb_free_consistent(bp);
2596 return -ENOMEM;
2597}
2598
2599static void macb_init_tieoff(struct macb *bp)
2600{
2601 struct macb_dma_desc *desc = bp->rx_ring_tieoff;
2602
2603 if (bp->caps & MACB_CAPS_QUEUE_DISABLE)
2604 return;
2605 /* Setup a wrapping descriptor with no free slots
2606 * (WRAP and USED) to tie off/disable unused RX queues.
2607 */
2608 macb_set_addr(bp, desc, MACB_BIT(RX_WRAP) | MACB_BIT(RX_USED));
2609 desc->ctrl = 0;
2610}
2611
2612static void gem_init_rings(struct macb *bp)
2613{
2614 struct macb_queue *queue;
2615 struct macb_dma_desc *desc = NULL;
2616 unsigned int q;
2617 int i;
2618
2619 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
2620 for (i = 0; i < bp->tx_ring_size; i++) {
2621 desc = macb_tx_desc(queue, i);
2622 macb_set_addr(bp, desc, 0);
2623 desc->ctrl = MACB_BIT(TX_USED);
2624 }
2625 desc->ctrl |= MACB_BIT(TX_WRAP);
2626 queue->tx_head = 0;
2627 queue->tx_tail = 0;
2628
2629 queue->rx_tail = 0;
2630 queue->rx_prepared_head = 0;
2631
2632 gem_rx_refill(queue);
2633 }
2634
2635 macb_init_tieoff(bp);
2636}
2637
2638static void macb_init_rings(struct macb *bp)
2639{
2640 int i;
2641 struct macb_dma_desc *desc = NULL;
2642
2643 macb_init_rx_ring(&bp->queues[0]);
2644
2645 for (i = 0; i < bp->tx_ring_size; i++) {
2646 desc = macb_tx_desc(&bp->queues[0], i);
2647 macb_set_addr(bp, desc, 0);
2648 desc->ctrl = MACB_BIT(TX_USED);
2649 }
2650 bp->queues[0].tx_head = 0;
2651 bp->queues[0].tx_tail = 0;
2652 desc->ctrl |= MACB_BIT(TX_WRAP);
2653
2654 macb_init_tieoff(bp);
2655}
2656
2657static void macb_reset_hw(struct macb *bp)
2658{
2659 struct macb_queue *queue;
2660 unsigned int q;
2661 u32 ctrl = macb_readl(bp, NCR);
2662
2663 /* Disable RX and TX (XXX: Should we halt the transmission
2664 * more gracefully?)
2665 */
2666 ctrl &= ~(MACB_BIT(RE) | MACB_BIT(TE));
2667
2668 /* Clear the stats registers (XXX: Update stats first?) */
2669 ctrl |= MACB_BIT(CLRSTAT);
2670
2671 macb_writel(bp, NCR, ctrl);
2672
2673 /* Clear all status flags */
2674 macb_writel(bp, TSR, -1);
2675 macb_writel(bp, RSR, -1);
2676
2677 /* Disable RX partial store and forward and reset watermark value */
2678 gem_writel(bp, PBUFRXCUT, 0);
2679
2680 /* Disable all interrupts */
2681 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
2682 queue_writel(queue, IDR, -1);
2683 queue_readl(queue, ISR);
2684 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
2685 queue_writel(queue, ISR, -1);
2686 }
2687}
2688
2689static u32 gem_mdc_clk_div(struct macb *bp)
2690{
2691 u32 config;
2692 unsigned long pclk_hz = clk_get_rate(bp->pclk);
2693
2694 if (pclk_hz <= 20000000)
2695 config = GEM_BF(CLK, GEM_CLK_DIV8);
2696 else if (pclk_hz <= 40000000)
2697 config = GEM_BF(CLK, GEM_CLK_DIV16);
2698 else if (pclk_hz <= 80000000)
2699 config = GEM_BF(CLK, GEM_CLK_DIV32);
2700 else if (pclk_hz <= 120000000)
2701 config = GEM_BF(CLK, GEM_CLK_DIV48);
2702 else if (pclk_hz <= 160000000)
2703 config = GEM_BF(CLK, GEM_CLK_DIV64);
2704 else if (pclk_hz <= 240000000)
2705 config = GEM_BF(CLK, GEM_CLK_DIV96);
2706 else if (pclk_hz <= 320000000)
2707 config = GEM_BF(CLK, GEM_CLK_DIV128);
2708 else
2709 config = GEM_BF(CLK, GEM_CLK_DIV224);
2710
2711 return config;
2712}
2713
2714static u32 macb_mdc_clk_div(struct macb *bp)
2715{
2716 u32 config;
2717 unsigned long pclk_hz;
2718
2719 if (macb_is_gem(bp))
2720 return gem_mdc_clk_div(bp);
2721
2722 pclk_hz = clk_get_rate(bp->pclk);
2723 if (pclk_hz <= 20000000)
2724 config = MACB_BF(CLK, MACB_CLK_DIV8);
2725 else if (pclk_hz <= 40000000)
2726 config = MACB_BF(CLK, MACB_CLK_DIV16);
2727 else if (pclk_hz <= 80000000)
2728 config = MACB_BF(CLK, MACB_CLK_DIV32);
2729 else
2730 config = MACB_BF(CLK, MACB_CLK_DIV64);
2731
2732 return config;
2733}
2734
2735/* Get the DMA bus width field of the network configuration register that we
2736 * should program. We find the width from decoding the design configuration
2737 * register to find the maximum supported data bus width.
2738 */
2739static u32 macb_dbw(struct macb *bp)
2740{
2741 if (!macb_is_gem(bp))
2742 return 0;
2743
2744 switch (GEM_BFEXT(DBWDEF, gem_readl(bp, DCFG1))) {
2745 case 4:
2746 return GEM_BF(DBW, GEM_DBW128);
2747 case 2:
2748 return GEM_BF(DBW, GEM_DBW64);
2749 case 1:
2750 default:
2751 return GEM_BF(DBW, GEM_DBW32);
2752 }
2753}
2754
2755/* Configure the receive DMA engine
2756 * - use the correct receive buffer size
2757 * - set best burst length for DMA operations
2758 * (if not supported by FIFO, it will fallback to default)
2759 * - set both rx/tx packet buffers to full memory size
2760 * These are configurable parameters for GEM.
2761 */
2762static void macb_configure_dma(struct macb *bp)
2763{
2764 struct macb_queue *queue;
2765 u32 buffer_size;
2766 unsigned int q;
2767 u32 dmacfg;
2768
2769 buffer_size = bp->rx_buffer_size / RX_BUFFER_MULTIPLE;
2770 if (macb_is_gem(bp)) {
2771 dmacfg = gem_readl(bp, DMACFG) & ~GEM_BF(RXBS, -1L);
2772 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
2773 if (q)
2774 queue_writel(queue, RBQS, buffer_size);
2775 else
2776 dmacfg |= GEM_BF(RXBS, buffer_size);
2777 }
2778 if (bp->dma_burst_length)
2779 dmacfg = GEM_BFINS(FBLDO, bp->dma_burst_length, dmacfg);
2780 dmacfg |= GEM_BIT(TXPBMS) | GEM_BF(RXBMS, -1L);
2781 dmacfg &= ~GEM_BIT(ENDIA_PKT);
2782
2783 if (bp->native_io)
2784 dmacfg &= ~GEM_BIT(ENDIA_DESC);
2785 else
2786 dmacfg |= GEM_BIT(ENDIA_DESC); /* CPU in big endian */
2787
2788 if (bp->dev->features & NETIF_F_HW_CSUM)
2789 dmacfg |= GEM_BIT(TXCOEN);
2790 else
2791 dmacfg &= ~GEM_BIT(TXCOEN);
2792
2793 dmacfg &= ~GEM_BIT(ADDR64);
2794#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
2795 if (bp->hw_dma_cap & HW_DMA_CAP_64B)
2796 dmacfg |= GEM_BIT(ADDR64);
2797#endif
2798#ifdef CONFIG_MACB_USE_HWSTAMP
2799 if (bp->hw_dma_cap & HW_DMA_CAP_PTP)
2800 dmacfg |= GEM_BIT(RXEXT) | GEM_BIT(TXEXT);
2801#endif
2802 netdev_dbg(bp->dev, "Cadence configure DMA with 0x%08x\n",
2803 dmacfg);
2804 gem_writel(bp, DMACFG, dmacfg);
2805 }
2806}
2807
2808static void macb_init_hw(struct macb *bp)
2809{
2810 u32 config;
2811
2812 macb_reset_hw(bp);
2813 macb_set_hwaddr(bp);
2814
2815 config = macb_mdc_clk_div(bp);
2816 config |= MACB_BF(RBOF, NET_IP_ALIGN); /* Make eth data aligned */
2817 config |= MACB_BIT(DRFCS); /* Discard Rx FCS */
2818 if (bp->caps & MACB_CAPS_JUMBO)
2819 config |= MACB_BIT(JFRAME); /* Enable jumbo frames */
2820 else
2821 config |= MACB_BIT(BIG); /* Receive oversized frames */
2822 if (bp->dev->flags & IFF_PROMISC)
2823 config |= MACB_BIT(CAF); /* Copy All Frames */
2824 else if (macb_is_gem(bp) && bp->dev->features & NETIF_F_RXCSUM)
2825 config |= GEM_BIT(RXCOEN);
2826 if (!(bp->dev->flags & IFF_BROADCAST))
2827 config |= MACB_BIT(NBC); /* No BroadCast */
2828 config |= macb_dbw(bp);
2829 macb_writel(bp, NCFGR, config);
2830 if ((bp->caps & MACB_CAPS_JUMBO) && bp->jumbo_max_len)
2831 gem_writel(bp, JML, bp->jumbo_max_len);
2832 bp->rx_frm_len_mask = MACB_RX_FRMLEN_MASK;
2833 if (bp->caps & MACB_CAPS_JUMBO)
2834 bp->rx_frm_len_mask = MACB_RX_JFRMLEN_MASK;
2835
2836 macb_configure_dma(bp);
2837
2838 /* Enable RX partial store and forward and set watermark */
2839 if (bp->rx_watermark)
2840 gem_writel(bp, PBUFRXCUT, (bp->rx_watermark | GEM_BIT(ENCUTTHRU)));
2841}
2842
2843/* The hash address register is 64 bits long and takes up two
2844 * locations in the memory map. The least significant bits are stored
2845 * in EMAC_HSL and the most significant bits in EMAC_HSH.
2846 *
2847 * The unicast hash enable and the multicast hash enable bits in the
2848 * network configuration register enable the reception of hash matched
2849 * frames. The destination address is reduced to a 6 bit index into
2850 * the 64 bit hash register using the following hash function. The
2851 * hash function is an exclusive or of every sixth bit of the
2852 * destination address.
2853 *
2854 * hi[5] = da[5] ^ da[11] ^ da[17] ^ da[23] ^ da[29] ^ da[35] ^ da[41] ^ da[47]
2855 * hi[4] = da[4] ^ da[10] ^ da[16] ^ da[22] ^ da[28] ^ da[34] ^ da[40] ^ da[46]
2856 * hi[3] = da[3] ^ da[09] ^ da[15] ^ da[21] ^ da[27] ^ da[33] ^ da[39] ^ da[45]
2857 * hi[2] = da[2] ^ da[08] ^ da[14] ^ da[20] ^ da[26] ^ da[32] ^ da[38] ^ da[44]
2858 * hi[1] = da[1] ^ da[07] ^ da[13] ^ da[19] ^ da[25] ^ da[31] ^ da[37] ^ da[43]
2859 * hi[0] = da[0] ^ da[06] ^ da[12] ^ da[18] ^ da[24] ^ da[30] ^ da[36] ^ da[42]
2860 *
2861 * da[0] represents the least significant bit of the first byte
2862 * received, that is, the multicast/unicast indicator, and da[47]
2863 * represents the most significant bit of the last byte received. If
2864 * the hash index, hi[n], points to a bit that is set in the hash
2865 * register then the frame will be matched according to whether the
2866 * frame is multicast or unicast. A multicast match will be signalled
2867 * if the multicast hash enable bit is set, da[0] is 1 and the hash
2868 * index points to a bit set in the hash register. A unicast match
2869 * will be signalled if the unicast hash enable bit is set, da[0] is 0
2870 * and the hash index points to a bit set in the hash register. To
2871 * receive all multicast frames, the hash register should be set with
2872 * all ones and the multicast hash enable bit should be set in the
2873 * network configuration register.
2874 */
2875
2876static inline int hash_bit_value(int bitnr, __u8 *addr)
2877{
2878 if (addr[bitnr / 8] & (1 << (bitnr % 8)))
2879 return 1;
2880 return 0;
2881}
2882
2883/* Return the hash index value for the specified address. */
2884static int hash_get_index(__u8 *addr)
2885{
2886 int i, j, bitval;
2887 int hash_index = 0;
2888
2889 for (j = 0; j < 6; j++) {
2890 for (i = 0, bitval = 0; i < 8; i++)
2891 bitval ^= hash_bit_value(i * 6 + j, addr);
2892
2893 hash_index |= (bitval << j);
2894 }
2895
2896 return hash_index;
2897}
2898
2899/* Add multicast addresses to the internal multicast-hash table. */
2900static void macb_sethashtable(struct net_device *dev)
2901{
2902 struct netdev_hw_addr *ha;
2903 unsigned long mc_filter[2];
2904 unsigned int bitnr;
2905 struct macb *bp = netdev_priv(dev);
2906
2907 mc_filter[0] = 0;
2908 mc_filter[1] = 0;
2909
2910 netdev_for_each_mc_addr(ha, dev) {
2911 bitnr = hash_get_index(ha->addr);
2912 mc_filter[bitnr >> 5] |= 1 << (bitnr & 31);
2913 }
2914
2915 macb_or_gem_writel(bp, HRB, mc_filter[0]);
2916 macb_or_gem_writel(bp, HRT, mc_filter[1]);
2917}
2918
2919/* Enable/Disable promiscuous and multicast modes. */
2920static void macb_set_rx_mode(struct net_device *dev)
2921{
2922 unsigned long cfg;
2923 struct macb *bp = netdev_priv(dev);
2924
2925 cfg = macb_readl(bp, NCFGR);
2926
2927 if (dev->flags & IFF_PROMISC) {
2928 /* Enable promiscuous mode */
2929 cfg |= MACB_BIT(CAF);
2930
2931 /* Disable RX checksum offload */
2932 if (macb_is_gem(bp))
2933 cfg &= ~GEM_BIT(RXCOEN);
2934 } else {
2935 /* Disable promiscuous mode */
2936 cfg &= ~MACB_BIT(CAF);
2937
2938 /* Enable RX checksum offload only if requested */
2939 if (macb_is_gem(bp) && dev->features & NETIF_F_RXCSUM)
2940 cfg |= GEM_BIT(RXCOEN);
2941 }
2942
2943 if (dev->flags & IFF_ALLMULTI) {
2944 /* Enable all multicast mode */
2945 macb_or_gem_writel(bp, HRB, -1);
2946 macb_or_gem_writel(bp, HRT, -1);
2947 cfg |= MACB_BIT(NCFGR_MTI);
2948 } else if (!netdev_mc_empty(dev)) {
2949 /* Enable specific multicasts */
2950 macb_sethashtable(dev);
2951 cfg |= MACB_BIT(NCFGR_MTI);
2952 } else if (dev->flags & (~IFF_ALLMULTI)) {
2953 /* Disable all multicast mode */
2954 macb_or_gem_writel(bp, HRB, 0);
2955 macb_or_gem_writel(bp, HRT, 0);
2956 cfg &= ~MACB_BIT(NCFGR_MTI);
2957 }
2958
2959 macb_writel(bp, NCFGR, cfg);
2960}
2961
2962static int macb_open(struct net_device *dev)
2963{
2964 size_t bufsz = dev->mtu + ETH_HLEN + ETH_FCS_LEN + NET_IP_ALIGN;
2965 struct macb *bp = netdev_priv(dev);
2966 struct macb_queue *queue;
2967 unsigned int q;
2968 int err;
2969
2970 netdev_dbg(bp->dev, "open\n");
2971
2972 err = pm_runtime_resume_and_get(&bp->pdev->dev);
2973 if (err < 0)
2974 return err;
2975
2976 /* RX buffers initialization */
2977 macb_init_rx_buffer_size(bp, bufsz);
2978
2979 err = macb_alloc_consistent(bp);
2980 if (err) {
2981 netdev_err(dev, "Unable to allocate DMA memory (error %d)\n",
2982 err);
2983 goto pm_exit;
2984 }
2985
2986 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
2987 napi_enable(&queue->napi_rx);
2988 napi_enable(&queue->napi_tx);
2989 }
2990
2991 macb_init_hw(bp);
2992
2993 err = phy_power_on(bp->sgmii_phy);
2994 if (err)
2995 goto reset_hw;
2996
2997 err = macb_phylink_connect(bp);
2998 if (err)
2999 goto phy_off;
3000
3001 netif_tx_start_all_queues(dev);
3002
3003 if (bp->ptp_info)
3004 bp->ptp_info->ptp_init(dev);
3005
3006 return 0;
3007
3008phy_off:
3009 phy_power_off(bp->sgmii_phy);
3010
3011reset_hw:
3012 macb_reset_hw(bp);
3013 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
3014 napi_disable(&queue->napi_rx);
3015 napi_disable(&queue->napi_tx);
3016 }
3017 macb_free_consistent(bp);
3018pm_exit:
3019 pm_runtime_put_sync(&bp->pdev->dev);
3020 return err;
3021}
3022
3023static int macb_close(struct net_device *dev)
3024{
3025 struct macb *bp = netdev_priv(dev);
3026 struct macb_queue *queue;
3027 unsigned long flags;
3028 unsigned int q;
3029
3030 netif_tx_stop_all_queues(dev);
3031
3032 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
3033 napi_disable(&queue->napi_rx);
3034 napi_disable(&queue->napi_tx);
3035 }
3036
3037 phylink_stop(bp->phylink);
3038 phylink_disconnect_phy(bp->phylink);
3039
3040 phy_power_off(bp->sgmii_phy);
3041
3042 spin_lock_irqsave(&bp->lock, flags);
3043 macb_reset_hw(bp);
3044 netif_carrier_off(dev);
3045 spin_unlock_irqrestore(&bp->lock, flags);
3046
3047 macb_free_consistent(bp);
3048
3049 if (bp->ptp_info)
3050 bp->ptp_info->ptp_remove(dev);
3051
3052 pm_runtime_put(&bp->pdev->dev);
3053
3054 return 0;
3055}
3056
3057static int macb_change_mtu(struct net_device *dev, int new_mtu)
3058{
3059 if (netif_running(dev))
3060 return -EBUSY;
3061
3062 WRITE_ONCE(dev->mtu, new_mtu);
3063
3064 return 0;
3065}
3066
3067static int macb_set_mac_addr(struct net_device *dev, void *addr)
3068{
3069 int err;
3070
3071 err = eth_mac_addr(dev, addr);
3072 if (err < 0)
3073 return err;
3074
3075 macb_set_hwaddr(netdev_priv(dev));
3076 return 0;
3077}
3078
3079static void gem_update_stats(struct macb *bp)
3080{
3081 struct macb_queue *queue;
3082 unsigned int i, q, idx;
3083 unsigned long *stat;
3084
3085 u32 *p = &bp->hw_stats.gem.tx_octets_31_0;
3086
3087 for (i = 0; i < GEM_STATS_LEN; ++i, ++p) {
3088 u32 offset = gem_statistics[i].offset;
3089 u64 val = bp->macb_reg_readl(bp, offset);
3090
3091 bp->ethtool_stats[i] += val;
3092 *p += val;
3093
3094 if (offset == GEM_OCTTXL || offset == GEM_OCTRXL) {
3095 /* Add GEM_OCTTXH, GEM_OCTRXH */
3096 val = bp->macb_reg_readl(bp, offset + 4);
3097 bp->ethtool_stats[i] += ((u64)val) << 32;
3098 *(++p) += val;
3099 }
3100 }
3101
3102 idx = GEM_STATS_LEN;
3103 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue)
3104 for (i = 0, stat = &queue->stats.first; i < QUEUE_STATS_LEN; ++i, ++stat)
3105 bp->ethtool_stats[idx++] = *stat;
3106}
3107
3108static struct net_device_stats *gem_get_stats(struct macb *bp)
3109{
3110 struct gem_stats *hwstat = &bp->hw_stats.gem;
3111 struct net_device_stats *nstat = &bp->dev->stats;
3112
3113 if (!netif_running(bp->dev))
3114 return nstat;
3115
3116 spin_lock_irq(&bp->stats_lock);
3117 gem_update_stats(bp);
3118
3119 nstat->rx_errors = (hwstat->rx_frame_check_sequence_errors +
3120 hwstat->rx_alignment_errors +
3121 hwstat->rx_resource_errors +
3122 hwstat->rx_overruns +
3123 hwstat->rx_oversize_frames +
3124 hwstat->rx_jabbers +
3125 hwstat->rx_undersized_frames +
3126 hwstat->rx_length_field_frame_errors);
3127 nstat->tx_errors = (hwstat->tx_late_collisions +
3128 hwstat->tx_excessive_collisions +
3129 hwstat->tx_underrun +
3130 hwstat->tx_carrier_sense_errors);
3131 nstat->multicast = hwstat->rx_multicast_frames;
3132 nstat->collisions = (hwstat->tx_single_collision_frames +
3133 hwstat->tx_multiple_collision_frames +
3134 hwstat->tx_excessive_collisions);
3135 nstat->rx_length_errors = (hwstat->rx_oversize_frames +
3136 hwstat->rx_jabbers +
3137 hwstat->rx_undersized_frames +
3138 hwstat->rx_length_field_frame_errors);
3139 nstat->rx_over_errors = hwstat->rx_resource_errors;
3140 nstat->rx_crc_errors = hwstat->rx_frame_check_sequence_errors;
3141 nstat->rx_frame_errors = hwstat->rx_alignment_errors;
3142 nstat->rx_fifo_errors = hwstat->rx_overruns;
3143 nstat->tx_aborted_errors = hwstat->tx_excessive_collisions;
3144 nstat->tx_carrier_errors = hwstat->tx_carrier_sense_errors;
3145 nstat->tx_fifo_errors = hwstat->tx_underrun;
3146 spin_unlock_irq(&bp->stats_lock);
3147
3148 return nstat;
3149}
3150
3151static void gem_get_ethtool_stats(struct net_device *dev,
3152 struct ethtool_stats *stats, u64 *data)
3153{
3154 struct macb *bp = netdev_priv(dev);
3155
3156 spin_lock_irq(&bp->stats_lock);
3157 gem_update_stats(bp);
3158 memcpy(data, &bp->ethtool_stats, sizeof(u64)
3159 * (GEM_STATS_LEN + QUEUE_STATS_LEN * MACB_MAX_QUEUES));
3160 spin_unlock_irq(&bp->stats_lock);
3161}
3162
3163static int gem_get_sset_count(struct net_device *dev, int sset)
3164{
3165 struct macb *bp = netdev_priv(dev);
3166
3167 switch (sset) {
3168 case ETH_SS_STATS:
3169 return GEM_STATS_LEN + bp->num_queues * QUEUE_STATS_LEN;
3170 default:
3171 return -EOPNOTSUPP;
3172 }
3173}
3174
3175static void gem_get_ethtool_strings(struct net_device *dev, u32 sset, u8 *p)
3176{
3177 char stat_string[ETH_GSTRING_LEN];
3178 struct macb *bp = netdev_priv(dev);
3179 struct macb_queue *queue;
3180 unsigned int i;
3181 unsigned int q;
3182
3183 switch (sset) {
3184 case ETH_SS_STATS:
3185 for (i = 0; i < GEM_STATS_LEN; i++, p += ETH_GSTRING_LEN)
3186 memcpy(p, gem_statistics[i].stat_string,
3187 ETH_GSTRING_LEN);
3188
3189 for (q = 0, queue = bp->queues; q < bp->num_queues; ++q, ++queue) {
3190 for (i = 0; i < QUEUE_STATS_LEN; i++, p += ETH_GSTRING_LEN) {
3191 snprintf(stat_string, ETH_GSTRING_LEN, "q%d_%s",
3192 q, queue_statistics[i].stat_string);
3193 memcpy(p, stat_string, ETH_GSTRING_LEN);
3194 }
3195 }
3196 break;
3197 }
3198}
3199
3200static struct net_device_stats *macb_get_stats(struct net_device *dev)
3201{
3202 struct macb *bp = netdev_priv(dev);
3203 struct net_device_stats *nstat = &bp->dev->stats;
3204 struct macb_stats *hwstat = &bp->hw_stats.macb;
3205
3206 if (macb_is_gem(bp))
3207 return gem_get_stats(bp);
3208
3209 /* read stats from hardware */
3210 spin_lock_irq(&bp->stats_lock);
3211 macb_update_stats(bp);
3212
3213 /* Convert HW stats into netdevice stats */
3214 nstat->rx_errors = (hwstat->rx_fcs_errors +
3215 hwstat->rx_align_errors +
3216 hwstat->rx_resource_errors +
3217 hwstat->rx_overruns +
3218 hwstat->rx_oversize_pkts +
3219 hwstat->rx_jabbers +
3220 hwstat->rx_undersize_pkts +
3221 hwstat->rx_length_mismatch);
3222 nstat->tx_errors = (hwstat->tx_late_cols +
3223 hwstat->tx_excessive_cols +
3224 hwstat->tx_underruns +
3225 hwstat->tx_carrier_errors +
3226 hwstat->sqe_test_errors);
3227 nstat->collisions = (hwstat->tx_single_cols +
3228 hwstat->tx_multiple_cols +
3229 hwstat->tx_excessive_cols);
3230 nstat->rx_length_errors = (hwstat->rx_oversize_pkts +
3231 hwstat->rx_jabbers +
3232 hwstat->rx_undersize_pkts +
3233 hwstat->rx_length_mismatch);
3234 nstat->rx_over_errors = hwstat->rx_resource_errors +
3235 hwstat->rx_overruns;
3236 nstat->rx_crc_errors = hwstat->rx_fcs_errors;
3237 nstat->rx_frame_errors = hwstat->rx_align_errors;
3238 nstat->rx_fifo_errors = hwstat->rx_overruns;
3239 /* XXX: What does "missed" mean? */
3240 nstat->tx_aborted_errors = hwstat->tx_excessive_cols;
3241 nstat->tx_carrier_errors = hwstat->tx_carrier_errors;
3242 nstat->tx_fifo_errors = hwstat->tx_underruns;
3243 /* Don't know about heartbeat or window errors... */
3244 spin_unlock_irq(&bp->stats_lock);
3245
3246 return nstat;
3247}
3248
3249static int macb_get_regs_len(struct net_device *netdev)
3250{
3251 return MACB_GREGS_NBR * sizeof(u32);
3252}
3253
3254static void macb_get_regs(struct net_device *dev, struct ethtool_regs *regs,
3255 void *p)
3256{
3257 struct macb *bp = netdev_priv(dev);
3258 unsigned int tail, head;
3259 u32 *regs_buff = p;
3260
3261 regs->version = (macb_readl(bp, MID) & ((1 << MACB_REV_SIZE) - 1))
3262 | MACB_GREGS_VERSION;
3263
3264 tail = macb_tx_ring_wrap(bp, bp->queues[0].tx_tail);
3265 head = macb_tx_ring_wrap(bp, bp->queues[0].tx_head);
3266
3267 regs_buff[0] = macb_readl(bp, NCR);
3268 regs_buff[1] = macb_or_gem_readl(bp, NCFGR);
3269 regs_buff[2] = macb_readl(bp, NSR);
3270 regs_buff[3] = macb_readl(bp, TSR);
3271 regs_buff[4] = macb_readl(bp, RBQP);
3272 regs_buff[5] = macb_readl(bp, TBQP);
3273 regs_buff[6] = macb_readl(bp, RSR);
3274 regs_buff[7] = macb_readl(bp, IMR);
3275
3276 regs_buff[8] = tail;
3277 regs_buff[9] = head;
3278 regs_buff[10] = macb_tx_dma(&bp->queues[0], tail);
3279 regs_buff[11] = macb_tx_dma(&bp->queues[0], head);
3280
3281 if (!(bp->caps & MACB_CAPS_USRIO_DISABLED))
3282 regs_buff[12] = macb_or_gem_readl(bp, USRIO);
3283 if (macb_is_gem(bp))
3284 regs_buff[13] = gem_readl(bp, DMACFG);
3285}
3286
3287static void macb_get_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
3288{
3289 struct macb *bp = netdev_priv(netdev);
3290
3291 phylink_ethtool_get_wol(bp->phylink, wol);
3292 wol->supported |= (WAKE_MAGIC | WAKE_ARP);
3293
3294 /* Add macb wolopts to phy wolopts */
3295 wol->wolopts |= bp->wolopts;
3296}
3297
3298static int macb_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
3299{
3300 struct macb *bp = netdev_priv(netdev);
3301 int ret;
3302
3303 /* Pass the order to phylink layer */
3304 ret = phylink_ethtool_set_wol(bp->phylink, wol);
3305 /* Don't manage WoL on MAC, if PHY set_wol() fails */
3306 if (ret && ret != -EOPNOTSUPP)
3307 return ret;
3308
3309 bp->wolopts = (wol->wolopts & WAKE_MAGIC) ? WAKE_MAGIC : 0;
3310 bp->wolopts |= (wol->wolopts & WAKE_ARP) ? WAKE_ARP : 0;
3311 bp->wol = (wol->wolopts) ? MACB_WOL_ENABLED : 0;
3312
3313 device_set_wakeup_enable(&bp->pdev->dev, bp->wol);
3314
3315 return 0;
3316}
3317
3318static int macb_get_link_ksettings(struct net_device *netdev,
3319 struct ethtool_link_ksettings *kset)
3320{
3321 struct macb *bp = netdev_priv(netdev);
3322
3323 return phylink_ethtool_ksettings_get(bp->phylink, kset);
3324}
3325
3326static int macb_set_link_ksettings(struct net_device *netdev,
3327 const struct ethtool_link_ksettings *kset)
3328{
3329 struct macb *bp = netdev_priv(netdev);
3330
3331 return phylink_ethtool_ksettings_set(bp->phylink, kset);
3332}
3333
3334static void macb_get_ringparam(struct net_device *netdev,
3335 struct ethtool_ringparam *ring,
3336 struct kernel_ethtool_ringparam *kernel_ring,
3337 struct netlink_ext_ack *extack)
3338{
3339 struct macb *bp = netdev_priv(netdev);
3340
3341 ring->rx_max_pending = MAX_RX_RING_SIZE;
3342 ring->tx_max_pending = MAX_TX_RING_SIZE;
3343
3344 ring->rx_pending = bp->rx_ring_size;
3345 ring->tx_pending = bp->tx_ring_size;
3346}
3347
3348static int macb_set_ringparam(struct net_device *netdev,
3349 struct ethtool_ringparam *ring,
3350 struct kernel_ethtool_ringparam *kernel_ring,
3351 struct netlink_ext_ack *extack)
3352{
3353 struct macb *bp = netdev_priv(netdev);
3354 u32 new_rx_size, new_tx_size;
3355 unsigned int reset = 0;
3356
3357 if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
3358 return -EINVAL;
3359
3360 new_rx_size = clamp_t(u32, ring->rx_pending,
3361 MIN_RX_RING_SIZE, MAX_RX_RING_SIZE);
3362 new_rx_size = roundup_pow_of_two(new_rx_size);
3363
3364 new_tx_size = clamp_t(u32, ring->tx_pending,
3365 MIN_TX_RING_SIZE, MAX_TX_RING_SIZE);
3366 new_tx_size = roundup_pow_of_two(new_tx_size);
3367
3368 if ((new_tx_size == bp->tx_ring_size) &&
3369 (new_rx_size == bp->rx_ring_size)) {
3370 /* nothing to do */
3371 return 0;
3372 }
3373
3374 if (netif_running(bp->dev)) {
3375 reset = 1;
3376 macb_close(bp->dev);
3377 }
3378
3379 bp->rx_ring_size = new_rx_size;
3380 bp->tx_ring_size = new_tx_size;
3381
3382 if (reset)
3383 macb_open(bp->dev);
3384
3385 return 0;
3386}
3387
3388#ifdef CONFIG_MACB_USE_HWSTAMP
3389static unsigned int gem_get_tsu_rate(struct macb *bp)
3390{
3391 struct clk *tsu_clk;
3392 unsigned int tsu_rate;
3393
3394 tsu_clk = devm_clk_get(&bp->pdev->dev, "tsu_clk");
3395 if (!IS_ERR(tsu_clk))
3396 tsu_rate = clk_get_rate(tsu_clk);
3397 /* try pclk instead */
3398 else if (!IS_ERR(bp->pclk)) {
3399 tsu_clk = bp->pclk;
3400 tsu_rate = clk_get_rate(tsu_clk);
3401 } else
3402 return -ENOTSUPP;
3403 return tsu_rate;
3404}
3405
3406static s32 gem_get_ptp_max_adj(void)
3407{
3408 return 64000000;
3409}
3410
3411static int gem_get_ts_info(struct net_device *dev,
3412 struct kernel_ethtool_ts_info *info)
3413{
3414 struct macb *bp = netdev_priv(dev);
3415
3416 if ((bp->hw_dma_cap & HW_DMA_CAP_PTP) == 0) {
3417 ethtool_op_get_ts_info(dev, info);
3418 return 0;
3419 }
3420
3421 info->so_timestamping =
3422 SOF_TIMESTAMPING_TX_SOFTWARE |
3423 SOF_TIMESTAMPING_TX_HARDWARE |
3424 SOF_TIMESTAMPING_RX_HARDWARE |
3425 SOF_TIMESTAMPING_RAW_HARDWARE;
3426 info->tx_types =
3427 (1 << HWTSTAMP_TX_ONESTEP_SYNC) |
3428 (1 << HWTSTAMP_TX_OFF) |
3429 (1 << HWTSTAMP_TX_ON);
3430 info->rx_filters =
3431 (1 << HWTSTAMP_FILTER_NONE) |
3432 (1 << HWTSTAMP_FILTER_ALL);
3433
3434 if (bp->ptp_clock)
3435 info->phc_index = ptp_clock_index(bp->ptp_clock);
3436
3437 return 0;
3438}
3439
3440static struct macb_ptp_info gem_ptp_info = {
3441 .ptp_init = gem_ptp_init,
3442 .ptp_remove = gem_ptp_remove,
3443 .get_ptp_max_adj = gem_get_ptp_max_adj,
3444 .get_tsu_rate = gem_get_tsu_rate,
3445 .get_ts_info = gem_get_ts_info,
3446 .get_hwtst = gem_get_hwtst,
3447 .set_hwtst = gem_set_hwtst,
3448};
3449#endif
3450
3451static int macb_get_ts_info(struct net_device *netdev,
3452 struct kernel_ethtool_ts_info *info)
3453{
3454 struct macb *bp = netdev_priv(netdev);
3455
3456 if (bp->ptp_info)
3457 return bp->ptp_info->get_ts_info(netdev, info);
3458
3459 return ethtool_op_get_ts_info(netdev, info);
3460}
3461
3462static void gem_enable_flow_filters(struct macb *bp, bool enable)
3463{
3464 struct net_device *netdev = bp->dev;
3465 struct ethtool_rx_fs_item *item;
3466 u32 t2_scr;
3467 int num_t2_scr;
3468
3469 if (!(netdev->features & NETIF_F_NTUPLE))
3470 return;
3471
3472 num_t2_scr = GEM_BFEXT(T2SCR, gem_readl(bp, DCFG8));
3473
3474 list_for_each_entry(item, &bp->rx_fs_list.list, list) {
3475 struct ethtool_rx_flow_spec *fs = &item->fs;
3476 struct ethtool_tcpip4_spec *tp4sp_m;
3477
3478 if (fs->location >= num_t2_scr)
3479 continue;
3480
3481 t2_scr = gem_readl_n(bp, SCRT2, fs->location);
3482
3483 /* enable/disable screener regs for the flow entry */
3484 t2_scr = GEM_BFINS(ETHTEN, enable, t2_scr);
3485
3486 /* only enable fields with no masking */
3487 tp4sp_m = &(fs->m_u.tcp_ip4_spec);
3488
3489 if (enable && (tp4sp_m->ip4src == 0xFFFFFFFF))
3490 t2_scr = GEM_BFINS(CMPAEN, 1, t2_scr);
3491 else
3492 t2_scr = GEM_BFINS(CMPAEN, 0, t2_scr);
3493
3494 if (enable && (tp4sp_m->ip4dst == 0xFFFFFFFF))
3495 t2_scr = GEM_BFINS(CMPBEN, 1, t2_scr);
3496 else
3497 t2_scr = GEM_BFINS(CMPBEN, 0, t2_scr);
3498
3499 if (enable && ((tp4sp_m->psrc == 0xFFFF) || (tp4sp_m->pdst == 0xFFFF)))
3500 t2_scr = GEM_BFINS(CMPCEN, 1, t2_scr);
3501 else
3502 t2_scr = GEM_BFINS(CMPCEN, 0, t2_scr);
3503
3504 gem_writel_n(bp, SCRT2, fs->location, t2_scr);
3505 }
3506}
3507
3508static void gem_prog_cmp_regs(struct macb *bp, struct ethtool_rx_flow_spec *fs)
3509{
3510 struct ethtool_tcpip4_spec *tp4sp_v, *tp4sp_m;
3511 uint16_t index = fs->location;
3512 u32 w0, w1, t2_scr;
3513 bool cmp_a = false;
3514 bool cmp_b = false;
3515 bool cmp_c = false;
3516
3517 if (!macb_is_gem(bp))
3518 return;
3519
3520 tp4sp_v = &(fs->h_u.tcp_ip4_spec);
3521 tp4sp_m = &(fs->m_u.tcp_ip4_spec);
3522
3523 /* ignore field if any masking set */
3524 if (tp4sp_m->ip4src == 0xFFFFFFFF) {
3525 /* 1st compare reg - IP source address */
3526 w0 = 0;
3527 w1 = 0;
3528 w0 = tp4sp_v->ip4src;
3529 w1 = GEM_BFINS(T2DISMSK, 1, w1); /* 32-bit compare */
3530 w1 = GEM_BFINS(T2CMPOFST, GEM_T2COMPOFST_ETYPE, w1);
3531 w1 = GEM_BFINS(T2OFST, ETYPE_SRCIP_OFFSET, w1);
3532 gem_writel_n(bp, T2CMPW0, T2CMP_OFST(GEM_IP4SRC_CMP(index)), w0);
3533 gem_writel_n(bp, T2CMPW1, T2CMP_OFST(GEM_IP4SRC_CMP(index)), w1);
3534 cmp_a = true;
3535 }
3536
3537 /* ignore field if any masking set */
3538 if (tp4sp_m->ip4dst == 0xFFFFFFFF) {
3539 /* 2nd compare reg - IP destination address */
3540 w0 = 0;
3541 w1 = 0;
3542 w0 = tp4sp_v->ip4dst;
3543 w1 = GEM_BFINS(T2DISMSK, 1, w1); /* 32-bit compare */
3544 w1 = GEM_BFINS(T2CMPOFST, GEM_T2COMPOFST_ETYPE, w1);
3545 w1 = GEM_BFINS(T2OFST, ETYPE_DSTIP_OFFSET, w1);
3546 gem_writel_n(bp, T2CMPW0, T2CMP_OFST(GEM_IP4DST_CMP(index)), w0);
3547 gem_writel_n(bp, T2CMPW1, T2CMP_OFST(GEM_IP4DST_CMP(index)), w1);
3548 cmp_b = true;
3549 }
3550
3551 /* ignore both port fields if masking set in both */
3552 if ((tp4sp_m->psrc == 0xFFFF) || (tp4sp_m->pdst == 0xFFFF)) {
3553 /* 3rd compare reg - source port, destination port */
3554 w0 = 0;
3555 w1 = 0;
3556 w1 = GEM_BFINS(T2CMPOFST, GEM_T2COMPOFST_IPHDR, w1);
3557 if (tp4sp_m->psrc == tp4sp_m->pdst) {
3558 w0 = GEM_BFINS(T2MASK, tp4sp_v->psrc, w0);
3559 w0 = GEM_BFINS(T2CMP, tp4sp_v->pdst, w0);
3560 w1 = GEM_BFINS(T2DISMSK, 1, w1); /* 32-bit compare */
3561 w1 = GEM_BFINS(T2OFST, IPHDR_SRCPORT_OFFSET, w1);
3562 } else {
3563 /* only one port definition */
3564 w1 = GEM_BFINS(T2DISMSK, 0, w1); /* 16-bit compare */
3565 w0 = GEM_BFINS(T2MASK, 0xFFFF, w0);
3566 if (tp4sp_m->psrc == 0xFFFF) { /* src port */
3567 w0 = GEM_BFINS(T2CMP, tp4sp_v->psrc, w0);
3568 w1 = GEM_BFINS(T2OFST, IPHDR_SRCPORT_OFFSET, w1);
3569 } else { /* dst port */
3570 w0 = GEM_BFINS(T2CMP, tp4sp_v->pdst, w0);
3571 w1 = GEM_BFINS(T2OFST, IPHDR_DSTPORT_OFFSET, w1);
3572 }
3573 }
3574 gem_writel_n(bp, T2CMPW0, T2CMP_OFST(GEM_PORT_CMP(index)), w0);
3575 gem_writel_n(bp, T2CMPW1, T2CMP_OFST(GEM_PORT_CMP(index)), w1);
3576 cmp_c = true;
3577 }
3578
3579 t2_scr = 0;
3580 t2_scr = GEM_BFINS(QUEUE, (fs->ring_cookie) & 0xFF, t2_scr);
3581 t2_scr = GEM_BFINS(ETHT2IDX, SCRT2_ETHT, t2_scr);
3582 if (cmp_a)
3583 t2_scr = GEM_BFINS(CMPA, GEM_IP4SRC_CMP(index), t2_scr);
3584 if (cmp_b)
3585 t2_scr = GEM_BFINS(CMPB, GEM_IP4DST_CMP(index), t2_scr);
3586 if (cmp_c)
3587 t2_scr = GEM_BFINS(CMPC, GEM_PORT_CMP(index), t2_scr);
3588 gem_writel_n(bp, SCRT2, index, t2_scr);
3589}
3590
3591static int gem_add_flow_filter(struct net_device *netdev,
3592 struct ethtool_rxnfc *cmd)
3593{
3594 struct macb *bp = netdev_priv(netdev);
3595 struct ethtool_rx_flow_spec *fs = &cmd->fs;
3596 struct ethtool_rx_fs_item *item, *newfs;
3597 unsigned long flags;
3598 int ret = -EINVAL;
3599 bool added = false;
3600
3601 newfs = kmalloc(sizeof(*newfs), GFP_KERNEL);
3602 if (newfs == NULL)
3603 return -ENOMEM;
3604 memcpy(&newfs->fs, fs, sizeof(newfs->fs));
3605
3606 netdev_dbg(netdev,
3607 "Adding flow filter entry,type=%u,queue=%u,loc=%u,src=%08X,dst=%08X,ps=%u,pd=%u\n",
3608 fs->flow_type, (int)fs->ring_cookie, fs->location,
3609 htonl(fs->h_u.tcp_ip4_spec.ip4src),
3610 htonl(fs->h_u.tcp_ip4_spec.ip4dst),
3611 be16_to_cpu(fs->h_u.tcp_ip4_spec.psrc),
3612 be16_to_cpu(fs->h_u.tcp_ip4_spec.pdst));
3613
3614 spin_lock_irqsave(&bp->rx_fs_lock, flags);
3615
3616 /* find correct place to add in list */
3617 list_for_each_entry(item, &bp->rx_fs_list.list, list) {
3618 if (item->fs.location > newfs->fs.location) {
3619 list_add_tail(&newfs->list, &item->list);
3620 added = true;
3621 break;
3622 } else if (item->fs.location == fs->location) {
3623 netdev_err(netdev, "Rule not added: location %d not free!\n",
3624 fs->location);
3625 ret = -EBUSY;
3626 goto err;
3627 }
3628 }
3629 if (!added)
3630 list_add_tail(&newfs->list, &bp->rx_fs_list.list);
3631
3632 gem_prog_cmp_regs(bp, fs);
3633 bp->rx_fs_list.count++;
3634 /* enable filtering if NTUPLE on */
3635 gem_enable_flow_filters(bp, 1);
3636
3637 spin_unlock_irqrestore(&bp->rx_fs_lock, flags);
3638 return 0;
3639
3640err:
3641 spin_unlock_irqrestore(&bp->rx_fs_lock, flags);
3642 kfree(newfs);
3643 return ret;
3644}
3645
3646static int gem_del_flow_filter(struct net_device *netdev,
3647 struct ethtool_rxnfc *cmd)
3648{
3649 struct macb *bp = netdev_priv(netdev);
3650 struct ethtool_rx_fs_item *item;
3651 struct ethtool_rx_flow_spec *fs;
3652 unsigned long flags;
3653
3654 spin_lock_irqsave(&bp->rx_fs_lock, flags);
3655
3656 list_for_each_entry(item, &bp->rx_fs_list.list, list) {
3657 if (item->fs.location == cmd->fs.location) {
3658 /* disable screener regs for the flow entry */
3659 fs = &(item->fs);
3660 netdev_dbg(netdev,
3661 "Deleting flow filter entry,type=%u,queue=%u,loc=%u,src=%08X,dst=%08X,ps=%u,pd=%u\n",
3662 fs->flow_type, (int)fs->ring_cookie, fs->location,
3663 htonl(fs->h_u.tcp_ip4_spec.ip4src),
3664 htonl(fs->h_u.tcp_ip4_spec.ip4dst),
3665 be16_to_cpu(fs->h_u.tcp_ip4_spec.psrc),
3666 be16_to_cpu(fs->h_u.tcp_ip4_spec.pdst));
3667
3668 gem_writel_n(bp, SCRT2, fs->location, 0);
3669
3670 list_del(&item->list);
3671 bp->rx_fs_list.count--;
3672 spin_unlock_irqrestore(&bp->rx_fs_lock, flags);
3673 kfree(item);
3674 return 0;
3675 }
3676 }
3677
3678 spin_unlock_irqrestore(&bp->rx_fs_lock, flags);
3679 return -EINVAL;
3680}
3681
3682static int gem_get_flow_entry(struct net_device *netdev,
3683 struct ethtool_rxnfc *cmd)
3684{
3685 struct macb *bp = netdev_priv(netdev);
3686 struct ethtool_rx_fs_item *item;
3687
3688 list_for_each_entry(item, &bp->rx_fs_list.list, list) {
3689 if (item->fs.location == cmd->fs.location) {
3690 memcpy(&cmd->fs, &item->fs, sizeof(cmd->fs));
3691 return 0;
3692 }
3693 }
3694 return -EINVAL;
3695}
3696
3697static int gem_get_all_flow_entries(struct net_device *netdev,
3698 struct ethtool_rxnfc *cmd, u32 *rule_locs)
3699{
3700 struct macb *bp = netdev_priv(netdev);
3701 struct ethtool_rx_fs_item *item;
3702 uint32_t cnt = 0;
3703
3704 list_for_each_entry(item, &bp->rx_fs_list.list, list) {
3705 if (cnt == cmd->rule_cnt)
3706 return -EMSGSIZE;
3707 rule_locs[cnt] = item->fs.location;
3708 cnt++;
3709 }
3710 cmd->data = bp->max_tuples;
3711 cmd->rule_cnt = cnt;
3712
3713 return 0;
3714}
3715
3716static int gem_get_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *cmd,
3717 u32 *rule_locs)
3718{
3719 struct macb *bp = netdev_priv(netdev);
3720 int ret = 0;
3721
3722 switch (cmd->cmd) {
3723 case ETHTOOL_GRXRINGS:
3724 cmd->data = bp->num_queues;
3725 break;
3726 case ETHTOOL_GRXCLSRLCNT:
3727 cmd->rule_cnt = bp->rx_fs_list.count;
3728 break;
3729 case ETHTOOL_GRXCLSRULE:
3730 ret = gem_get_flow_entry(netdev, cmd);
3731 break;
3732 case ETHTOOL_GRXCLSRLALL:
3733 ret = gem_get_all_flow_entries(netdev, cmd, rule_locs);
3734 break;
3735 default:
3736 netdev_err(netdev,
3737 "Command parameter %d is not supported\n", cmd->cmd);
3738 ret = -EOPNOTSUPP;
3739 }
3740
3741 return ret;
3742}
3743
3744static int gem_set_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *cmd)
3745{
3746 struct macb *bp = netdev_priv(netdev);
3747 int ret;
3748
3749 switch (cmd->cmd) {
3750 case ETHTOOL_SRXCLSRLINS:
3751 if ((cmd->fs.location >= bp->max_tuples)
3752 || (cmd->fs.ring_cookie >= bp->num_queues)) {
3753 ret = -EINVAL;
3754 break;
3755 }
3756 ret = gem_add_flow_filter(netdev, cmd);
3757 break;
3758 case ETHTOOL_SRXCLSRLDEL:
3759 ret = gem_del_flow_filter(netdev, cmd);
3760 break;
3761 default:
3762 netdev_err(netdev,
3763 "Command parameter %d is not supported\n", cmd->cmd);
3764 ret = -EOPNOTSUPP;
3765 }
3766
3767 return ret;
3768}
3769
3770static const struct ethtool_ops macb_ethtool_ops = {
3771 .get_regs_len = macb_get_regs_len,
3772 .get_regs = macb_get_regs,
3773 .get_link = ethtool_op_get_link,
3774 .get_ts_info = ethtool_op_get_ts_info,
3775 .get_wol = macb_get_wol,
3776 .set_wol = macb_set_wol,
3777 .get_link_ksettings = macb_get_link_ksettings,
3778 .set_link_ksettings = macb_set_link_ksettings,
3779 .get_ringparam = macb_get_ringparam,
3780 .set_ringparam = macb_set_ringparam,
3781};
3782
3783static const struct ethtool_ops gem_ethtool_ops = {
3784 .get_regs_len = macb_get_regs_len,
3785 .get_regs = macb_get_regs,
3786 .get_wol = macb_get_wol,
3787 .set_wol = macb_set_wol,
3788 .get_link = ethtool_op_get_link,
3789 .get_ts_info = macb_get_ts_info,
3790 .get_ethtool_stats = gem_get_ethtool_stats,
3791 .get_strings = gem_get_ethtool_strings,
3792 .get_sset_count = gem_get_sset_count,
3793 .get_link_ksettings = macb_get_link_ksettings,
3794 .set_link_ksettings = macb_set_link_ksettings,
3795 .get_ringparam = macb_get_ringparam,
3796 .set_ringparam = macb_set_ringparam,
3797 .get_rxnfc = gem_get_rxnfc,
3798 .set_rxnfc = gem_set_rxnfc,
3799};
3800
3801static int macb_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
3802{
3803 struct macb *bp = netdev_priv(dev);
3804
3805 if (!netif_running(dev))
3806 return -EINVAL;
3807
3808 return phylink_mii_ioctl(bp->phylink, rq, cmd);
3809}
3810
3811static int macb_hwtstamp_get(struct net_device *dev,
3812 struct kernel_hwtstamp_config *cfg)
3813{
3814 struct macb *bp = netdev_priv(dev);
3815
3816 if (!netif_running(dev))
3817 return -EINVAL;
3818
3819 if (!bp->ptp_info)
3820 return -EOPNOTSUPP;
3821
3822 return bp->ptp_info->get_hwtst(dev, cfg);
3823}
3824
3825static int macb_hwtstamp_set(struct net_device *dev,
3826 struct kernel_hwtstamp_config *cfg,
3827 struct netlink_ext_ack *extack)
3828{
3829 struct macb *bp = netdev_priv(dev);
3830
3831 if (!netif_running(dev))
3832 return -EINVAL;
3833
3834 if (!bp->ptp_info)
3835 return -EOPNOTSUPP;
3836
3837 return bp->ptp_info->set_hwtst(dev, cfg, extack);
3838}
3839
3840static inline void macb_set_txcsum_feature(struct macb *bp,
3841 netdev_features_t features)
3842{
3843 u32 val;
3844
3845 if (!macb_is_gem(bp))
3846 return;
3847
3848 val = gem_readl(bp, DMACFG);
3849 if (features & NETIF_F_HW_CSUM)
3850 val |= GEM_BIT(TXCOEN);
3851 else
3852 val &= ~GEM_BIT(TXCOEN);
3853
3854 gem_writel(bp, DMACFG, val);
3855}
3856
3857static inline void macb_set_rxcsum_feature(struct macb *bp,
3858 netdev_features_t features)
3859{
3860 struct net_device *netdev = bp->dev;
3861 u32 val;
3862
3863 if (!macb_is_gem(bp))
3864 return;
3865
3866 val = gem_readl(bp, NCFGR);
3867 if ((features & NETIF_F_RXCSUM) && !(netdev->flags & IFF_PROMISC))
3868 val |= GEM_BIT(RXCOEN);
3869 else
3870 val &= ~GEM_BIT(RXCOEN);
3871
3872 gem_writel(bp, NCFGR, val);
3873}
3874
3875static inline void macb_set_rxflow_feature(struct macb *bp,
3876 netdev_features_t features)
3877{
3878 if (!macb_is_gem(bp))
3879 return;
3880
3881 gem_enable_flow_filters(bp, !!(features & NETIF_F_NTUPLE));
3882}
3883
3884static int macb_set_features(struct net_device *netdev,
3885 netdev_features_t features)
3886{
3887 struct macb *bp = netdev_priv(netdev);
3888 netdev_features_t changed = features ^ netdev->features;
3889
3890 /* TX checksum offload */
3891 if (changed & NETIF_F_HW_CSUM)
3892 macb_set_txcsum_feature(bp, features);
3893
3894 /* RX checksum offload */
3895 if (changed & NETIF_F_RXCSUM)
3896 macb_set_rxcsum_feature(bp, features);
3897
3898 /* RX Flow Filters */
3899 if (changed & NETIF_F_NTUPLE)
3900 macb_set_rxflow_feature(bp, features);
3901
3902 return 0;
3903}
3904
3905static void macb_restore_features(struct macb *bp)
3906{
3907 struct net_device *netdev = bp->dev;
3908 netdev_features_t features = netdev->features;
3909 struct ethtool_rx_fs_item *item;
3910
3911 /* TX checksum offload */
3912 macb_set_txcsum_feature(bp, features);
3913
3914 /* RX checksum offload */
3915 macb_set_rxcsum_feature(bp, features);
3916
3917 /* RX Flow Filters */
3918 list_for_each_entry(item, &bp->rx_fs_list.list, list)
3919 gem_prog_cmp_regs(bp, &item->fs);
3920
3921 macb_set_rxflow_feature(bp, features);
3922}
3923
3924static const struct net_device_ops macb_netdev_ops = {
3925 .ndo_open = macb_open,
3926 .ndo_stop = macb_close,
3927 .ndo_start_xmit = macb_start_xmit,
3928 .ndo_set_rx_mode = macb_set_rx_mode,
3929 .ndo_get_stats = macb_get_stats,
3930 .ndo_eth_ioctl = macb_ioctl,
3931 .ndo_validate_addr = eth_validate_addr,
3932 .ndo_change_mtu = macb_change_mtu,
3933 .ndo_set_mac_address = macb_set_mac_addr,
3934#ifdef CONFIG_NET_POLL_CONTROLLER
3935 .ndo_poll_controller = macb_poll_controller,
3936#endif
3937 .ndo_set_features = macb_set_features,
3938 .ndo_features_check = macb_features_check,
3939 .ndo_hwtstamp_set = macb_hwtstamp_set,
3940 .ndo_hwtstamp_get = macb_hwtstamp_get,
3941};
3942
3943/* Configure peripheral capabilities according to device tree
3944 * and integration options used
3945 */
3946static void macb_configure_caps(struct macb *bp,
3947 const struct macb_config *dt_conf)
3948{
3949 u32 dcfg;
3950
3951 if (dt_conf)
3952 bp->caps = dt_conf->caps;
3953
3954 if (hw_is_gem(bp->regs, bp->native_io)) {
3955 bp->caps |= MACB_CAPS_MACB_IS_GEM;
3956
3957 dcfg = gem_readl(bp, DCFG1);
3958 if (GEM_BFEXT(IRQCOR, dcfg) == 0)
3959 bp->caps |= MACB_CAPS_ISR_CLEAR_ON_WRITE;
3960 if (GEM_BFEXT(NO_PCS, dcfg) == 0)
3961 bp->caps |= MACB_CAPS_PCS;
3962 dcfg = gem_readl(bp, DCFG12);
3963 if (GEM_BFEXT(HIGH_SPEED, dcfg) == 1)
3964 bp->caps |= MACB_CAPS_HIGH_SPEED;
3965 dcfg = gem_readl(bp, DCFG2);
3966 if ((dcfg & (GEM_BIT(RX_PKT_BUFF) | GEM_BIT(TX_PKT_BUFF))) == 0)
3967 bp->caps |= MACB_CAPS_FIFO_MODE;
3968 if (gem_has_ptp(bp)) {
3969 if (!GEM_BFEXT(TSU, gem_readl(bp, DCFG5)))
3970 dev_err(&bp->pdev->dev,
3971 "GEM doesn't support hardware ptp.\n");
3972 else {
3973#ifdef CONFIG_MACB_USE_HWSTAMP
3974 bp->hw_dma_cap |= HW_DMA_CAP_PTP;
3975 bp->ptp_info = &gem_ptp_info;
3976#endif
3977 }
3978 }
3979 }
3980
3981 dev_dbg(&bp->pdev->dev, "Cadence caps 0x%08x\n", bp->caps);
3982}
3983
3984static void macb_probe_queues(void __iomem *mem,
3985 bool native_io,
3986 unsigned int *queue_mask,
3987 unsigned int *num_queues)
3988{
3989 *queue_mask = 0x1;
3990 *num_queues = 1;
3991
3992 /* is it macb or gem ?
3993 *
3994 * We need to read directly from the hardware here because
3995 * we are early in the probe process and don't have the
3996 * MACB_CAPS_MACB_IS_GEM flag positioned
3997 */
3998 if (!hw_is_gem(mem, native_io))
3999 return;
4000
4001 /* bit 0 is never set but queue 0 always exists */
4002 *queue_mask |= readl_relaxed(mem + GEM_DCFG6) & 0xff;
4003 *num_queues = hweight32(*queue_mask);
4004}
4005
4006static void macb_clks_disable(struct clk *pclk, struct clk *hclk, struct clk *tx_clk,
4007 struct clk *rx_clk, struct clk *tsu_clk)
4008{
4009 struct clk_bulk_data clks[] = {
4010 { .clk = tsu_clk, },
4011 { .clk = rx_clk, },
4012 { .clk = pclk, },
4013 { .clk = hclk, },
4014 { .clk = tx_clk },
4015 };
4016
4017 clk_bulk_disable_unprepare(ARRAY_SIZE(clks), clks);
4018}
4019
4020static int macb_clk_init(struct platform_device *pdev, struct clk **pclk,
4021 struct clk **hclk, struct clk **tx_clk,
4022 struct clk **rx_clk, struct clk **tsu_clk)
4023{
4024 struct macb_platform_data *pdata;
4025 int err;
4026
4027 pdata = dev_get_platdata(&pdev->dev);
4028 if (pdata) {
4029 *pclk = pdata->pclk;
4030 *hclk = pdata->hclk;
4031 } else {
4032 *pclk = devm_clk_get(&pdev->dev, "pclk");
4033 *hclk = devm_clk_get(&pdev->dev, "hclk");
4034 }
4035
4036 if (IS_ERR_OR_NULL(*pclk))
4037 return dev_err_probe(&pdev->dev,
4038 IS_ERR(*pclk) ? PTR_ERR(*pclk) : -ENODEV,
4039 "failed to get pclk\n");
4040
4041 if (IS_ERR_OR_NULL(*hclk))
4042 return dev_err_probe(&pdev->dev,
4043 IS_ERR(*hclk) ? PTR_ERR(*hclk) : -ENODEV,
4044 "failed to get hclk\n");
4045
4046 *tx_clk = devm_clk_get_optional(&pdev->dev, "tx_clk");
4047 if (IS_ERR(*tx_clk))
4048 return PTR_ERR(*tx_clk);
4049
4050 *rx_clk = devm_clk_get_optional(&pdev->dev, "rx_clk");
4051 if (IS_ERR(*rx_clk))
4052 return PTR_ERR(*rx_clk);
4053
4054 *tsu_clk = devm_clk_get_optional(&pdev->dev, "tsu_clk");
4055 if (IS_ERR(*tsu_clk))
4056 return PTR_ERR(*tsu_clk);
4057
4058 err = clk_prepare_enable(*pclk);
4059 if (err) {
4060 dev_err(&pdev->dev, "failed to enable pclk (%d)\n", err);
4061 return err;
4062 }
4063
4064 err = clk_prepare_enable(*hclk);
4065 if (err) {
4066 dev_err(&pdev->dev, "failed to enable hclk (%d)\n", err);
4067 goto err_disable_pclk;
4068 }
4069
4070 err = clk_prepare_enable(*tx_clk);
4071 if (err) {
4072 dev_err(&pdev->dev, "failed to enable tx_clk (%d)\n", err);
4073 goto err_disable_hclk;
4074 }
4075
4076 err = clk_prepare_enable(*rx_clk);
4077 if (err) {
4078 dev_err(&pdev->dev, "failed to enable rx_clk (%d)\n", err);
4079 goto err_disable_txclk;
4080 }
4081
4082 err = clk_prepare_enable(*tsu_clk);
4083 if (err) {
4084 dev_err(&pdev->dev, "failed to enable tsu_clk (%d)\n", err);
4085 goto err_disable_rxclk;
4086 }
4087
4088 return 0;
4089
4090err_disable_rxclk:
4091 clk_disable_unprepare(*rx_clk);
4092
4093err_disable_txclk:
4094 clk_disable_unprepare(*tx_clk);
4095
4096err_disable_hclk:
4097 clk_disable_unprepare(*hclk);
4098
4099err_disable_pclk:
4100 clk_disable_unprepare(*pclk);
4101
4102 return err;
4103}
4104
4105static int macb_init(struct platform_device *pdev)
4106{
4107 struct net_device *dev = platform_get_drvdata(pdev);
4108 unsigned int hw_q, q;
4109 struct macb *bp = netdev_priv(dev);
4110 struct macb_queue *queue;
4111 int err;
4112 u32 val, reg;
4113
4114 bp->tx_ring_size = DEFAULT_TX_RING_SIZE;
4115 bp->rx_ring_size = DEFAULT_RX_RING_SIZE;
4116
4117 /* set the queue register mapping once for all: queue0 has a special
4118 * register mapping but we don't want to test the queue index then
4119 * compute the corresponding register offset at run time.
4120 */
4121 for (hw_q = 0, q = 0; hw_q < MACB_MAX_QUEUES; ++hw_q) {
4122 if (!(bp->queue_mask & (1 << hw_q)))
4123 continue;
4124
4125 queue = &bp->queues[q];
4126 queue->bp = bp;
4127 spin_lock_init(&queue->tx_ptr_lock);
4128 netif_napi_add(dev, &queue->napi_rx, macb_rx_poll);
4129 netif_napi_add(dev, &queue->napi_tx, macb_tx_poll);
4130 if (hw_q) {
4131 queue->ISR = GEM_ISR(hw_q - 1);
4132 queue->IER = GEM_IER(hw_q - 1);
4133 queue->IDR = GEM_IDR(hw_q - 1);
4134 queue->IMR = GEM_IMR(hw_q - 1);
4135 queue->TBQP = GEM_TBQP(hw_q - 1);
4136 queue->RBQP = GEM_RBQP(hw_q - 1);
4137 queue->RBQS = GEM_RBQS(hw_q - 1);
4138#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
4139 if (bp->hw_dma_cap & HW_DMA_CAP_64B) {
4140 queue->TBQPH = GEM_TBQPH(hw_q - 1);
4141 queue->RBQPH = GEM_RBQPH(hw_q - 1);
4142 }
4143#endif
4144 } else {
4145 /* queue0 uses legacy registers */
4146 queue->ISR = MACB_ISR;
4147 queue->IER = MACB_IER;
4148 queue->IDR = MACB_IDR;
4149 queue->IMR = MACB_IMR;
4150 queue->TBQP = MACB_TBQP;
4151 queue->RBQP = MACB_RBQP;
4152#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
4153 if (bp->hw_dma_cap & HW_DMA_CAP_64B) {
4154 queue->TBQPH = MACB_TBQPH;
4155 queue->RBQPH = MACB_RBQPH;
4156 }
4157#endif
4158 }
4159
4160 /* get irq: here we use the linux queue index, not the hardware
4161 * queue index. the queue irq definitions in the device tree
4162 * must remove the optional gaps that could exist in the
4163 * hardware queue mask.
4164 */
4165 queue->irq = platform_get_irq(pdev, q);
4166 err = devm_request_irq(&pdev->dev, queue->irq, macb_interrupt,
4167 IRQF_SHARED, dev->name, queue);
4168 if (err) {
4169 dev_err(&pdev->dev,
4170 "Unable to request IRQ %d (error %d)\n",
4171 queue->irq, err);
4172 return err;
4173 }
4174
4175 INIT_WORK(&queue->tx_error_task, macb_tx_error_task);
4176 q++;
4177 }
4178
4179 dev->netdev_ops = &macb_netdev_ops;
4180
4181 /* setup appropriated routines according to adapter type */
4182 if (macb_is_gem(bp)) {
4183 bp->macbgem_ops.mog_alloc_rx_buffers = gem_alloc_rx_buffers;
4184 bp->macbgem_ops.mog_free_rx_buffers = gem_free_rx_buffers;
4185 bp->macbgem_ops.mog_init_rings = gem_init_rings;
4186 bp->macbgem_ops.mog_rx = gem_rx;
4187 dev->ethtool_ops = &gem_ethtool_ops;
4188 } else {
4189 bp->macbgem_ops.mog_alloc_rx_buffers = macb_alloc_rx_buffers;
4190 bp->macbgem_ops.mog_free_rx_buffers = macb_free_rx_buffers;
4191 bp->macbgem_ops.mog_init_rings = macb_init_rings;
4192 bp->macbgem_ops.mog_rx = macb_rx;
4193 dev->ethtool_ops = &macb_ethtool_ops;
4194 }
4195
4196 netdev_sw_irq_coalesce_default_on(dev);
4197
4198 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
4199
4200 /* Set features */
4201 dev->hw_features = NETIF_F_SG;
4202
4203 /* Check LSO capability */
4204 if (GEM_BFEXT(PBUF_LSO, gem_readl(bp, DCFG6)))
4205 dev->hw_features |= MACB_NETIF_LSO;
4206
4207 /* Checksum offload is only available on gem with packet buffer */
4208 if (macb_is_gem(bp) && !(bp->caps & MACB_CAPS_FIFO_MODE))
4209 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
4210 if (bp->caps & MACB_CAPS_SG_DISABLED)
4211 dev->hw_features &= ~NETIF_F_SG;
4212 dev->features = dev->hw_features;
4213
4214 /* Check RX Flow Filters support.
4215 * Max Rx flows set by availability of screeners & compare regs:
4216 * each 4-tuple define requires 1 T2 screener reg + 3 compare regs
4217 */
4218 reg = gem_readl(bp, DCFG8);
4219 bp->max_tuples = min((GEM_BFEXT(SCR2CMP, reg) / 3),
4220 GEM_BFEXT(T2SCR, reg));
4221 INIT_LIST_HEAD(&bp->rx_fs_list.list);
4222 if (bp->max_tuples > 0) {
4223 /* also needs one ethtype match to check IPv4 */
4224 if (GEM_BFEXT(SCR2ETH, reg) > 0) {
4225 /* program this reg now */
4226 reg = 0;
4227 reg = GEM_BFINS(ETHTCMP, (uint16_t)ETH_P_IP, reg);
4228 gem_writel_n(bp, ETHT, SCRT2_ETHT, reg);
4229 /* Filtering is supported in hw but don't enable it in kernel now */
4230 dev->hw_features |= NETIF_F_NTUPLE;
4231 /* init Rx flow definitions */
4232 bp->rx_fs_list.count = 0;
4233 spin_lock_init(&bp->rx_fs_lock);
4234 } else
4235 bp->max_tuples = 0;
4236 }
4237
4238 if (!(bp->caps & MACB_CAPS_USRIO_DISABLED)) {
4239 val = 0;
4240 if (phy_interface_mode_is_rgmii(bp->phy_interface))
4241 val = bp->usrio->rgmii;
4242 else if (bp->phy_interface == PHY_INTERFACE_MODE_RMII &&
4243 (bp->caps & MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII))
4244 val = bp->usrio->rmii;
4245 else if (!(bp->caps & MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII))
4246 val = bp->usrio->mii;
4247
4248 if (bp->caps & MACB_CAPS_USRIO_HAS_CLKEN)
4249 val |= bp->usrio->refclk;
4250
4251 macb_or_gem_writel(bp, USRIO, val);
4252 }
4253
4254 /* Set MII management clock divider */
4255 val = macb_mdc_clk_div(bp);
4256 val |= macb_dbw(bp);
4257 if (bp->phy_interface == PHY_INTERFACE_MODE_SGMII)
4258 val |= GEM_BIT(SGMIIEN) | GEM_BIT(PCSSEL);
4259 macb_writel(bp, NCFGR, val);
4260
4261 return 0;
4262}
4263
4264static const struct macb_usrio_config macb_default_usrio = {
4265 .mii = MACB_BIT(MII),
4266 .rmii = MACB_BIT(RMII),
4267 .rgmii = GEM_BIT(RGMII),
4268 .refclk = MACB_BIT(CLKEN),
4269};
4270
4271#if defined(CONFIG_OF)
4272/* 1518 rounded up */
4273#define AT91ETHER_MAX_RBUFF_SZ 0x600
4274/* max number of receive buffers */
4275#define AT91ETHER_MAX_RX_DESCR 9
4276
4277static struct sifive_fu540_macb_mgmt *mgmt;
4278
4279static int at91ether_alloc_coherent(struct macb *lp)
4280{
4281 struct macb_queue *q = &lp->queues[0];
4282
4283 q->rx_ring = dma_alloc_coherent(&lp->pdev->dev,
4284 (AT91ETHER_MAX_RX_DESCR *
4285 macb_dma_desc_get_size(lp)),
4286 &q->rx_ring_dma, GFP_KERNEL);
4287 if (!q->rx_ring)
4288 return -ENOMEM;
4289
4290 q->rx_buffers = dma_alloc_coherent(&lp->pdev->dev,
4291 AT91ETHER_MAX_RX_DESCR *
4292 AT91ETHER_MAX_RBUFF_SZ,
4293 &q->rx_buffers_dma, GFP_KERNEL);
4294 if (!q->rx_buffers) {
4295 dma_free_coherent(&lp->pdev->dev,
4296 AT91ETHER_MAX_RX_DESCR *
4297 macb_dma_desc_get_size(lp),
4298 q->rx_ring, q->rx_ring_dma);
4299 q->rx_ring = NULL;
4300 return -ENOMEM;
4301 }
4302
4303 return 0;
4304}
4305
4306static void at91ether_free_coherent(struct macb *lp)
4307{
4308 struct macb_queue *q = &lp->queues[0];
4309
4310 if (q->rx_ring) {
4311 dma_free_coherent(&lp->pdev->dev,
4312 AT91ETHER_MAX_RX_DESCR *
4313 macb_dma_desc_get_size(lp),
4314 q->rx_ring, q->rx_ring_dma);
4315 q->rx_ring = NULL;
4316 }
4317
4318 if (q->rx_buffers) {
4319 dma_free_coherent(&lp->pdev->dev,
4320 AT91ETHER_MAX_RX_DESCR *
4321 AT91ETHER_MAX_RBUFF_SZ,
4322 q->rx_buffers, q->rx_buffers_dma);
4323 q->rx_buffers = NULL;
4324 }
4325}
4326
4327/* Initialize and start the Receiver and Transmit subsystems */
4328static int at91ether_start(struct macb *lp)
4329{
4330 struct macb_queue *q = &lp->queues[0];
4331 struct macb_dma_desc *desc;
4332 dma_addr_t addr;
4333 u32 ctl;
4334 int i, ret;
4335
4336 ret = at91ether_alloc_coherent(lp);
4337 if (ret)
4338 return ret;
4339
4340 addr = q->rx_buffers_dma;
4341 for (i = 0; i < AT91ETHER_MAX_RX_DESCR; i++) {
4342 desc = macb_rx_desc(q, i);
4343 macb_set_addr(lp, desc, addr);
4344 desc->ctrl = 0;
4345 addr += AT91ETHER_MAX_RBUFF_SZ;
4346 }
4347
4348 /* Set the Wrap bit on the last descriptor */
4349 desc->addr |= MACB_BIT(RX_WRAP);
4350
4351 /* Reset buffer index */
4352 q->rx_tail = 0;
4353
4354 /* Program address of descriptor list in Rx Buffer Queue register */
4355 macb_writel(lp, RBQP, q->rx_ring_dma);
4356
4357 /* Enable Receive and Transmit */
4358 ctl = macb_readl(lp, NCR);
4359 macb_writel(lp, NCR, ctl | MACB_BIT(RE) | MACB_BIT(TE));
4360
4361 /* Enable MAC interrupts */
4362 macb_writel(lp, IER, MACB_BIT(RCOMP) |
4363 MACB_BIT(RXUBR) |
4364 MACB_BIT(ISR_TUND) |
4365 MACB_BIT(ISR_RLE) |
4366 MACB_BIT(TCOMP) |
4367 MACB_BIT(ISR_ROVR) |
4368 MACB_BIT(HRESP));
4369
4370 return 0;
4371}
4372
4373static void at91ether_stop(struct macb *lp)
4374{
4375 u32 ctl;
4376
4377 /* Disable MAC interrupts */
4378 macb_writel(lp, IDR, MACB_BIT(RCOMP) |
4379 MACB_BIT(RXUBR) |
4380 MACB_BIT(ISR_TUND) |
4381 MACB_BIT(ISR_RLE) |
4382 MACB_BIT(TCOMP) |
4383 MACB_BIT(ISR_ROVR) |
4384 MACB_BIT(HRESP));
4385
4386 /* Disable Receiver and Transmitter */
4387 ctl = macb_readl(lp, NCR);
4388 macb_writel(lp, NCR, ctl & ~(MACB_BIT(TE) | MACB_BIT(RE)));
4389
4390 /* Free resources. */
4391 at91ether_free_coherent(lp);
4392}
4393
4394/* Open the ethernet interface */
4395static int at91ether_open(struct net_device *dev)
4396{
4397 struct macb *lp = netdev_priv(dev);
4398 u32 ctl;
4399 int ret;
4400
4401 ret = pm_runtime_resume_and_get(&lp->pdev->dev);
4402 if (ret < 0)
4403 return ret;
4404
4405 /* Clear internal statistics */
4406 ctl = macb_readl(lp, NCR);
4407 macb_writel(lp, NCR, ctl | MACB_BIT(CLRSTAT));
4408
4409 macb_set_hwaddr(lp);
4410
4411 ret = at91ether_start(lp);
4412 if (ret)
4413 goto pm_exit;
4414
4415 ret = macb_phylink_connect(lp);
4416 if (ret)
4417 goto stop;
4418
4419 netif_start_queue(dev);
4420
4421 return 0;
4422
4423stop:
4424 at91ether_stop(lp);
4425pm_exit:
4426 pm_runtime_put_sync(&lp->pdev->dev);
4427 return ret;
4428}
4429
4430/* Close the interface */
4431static int at91ether_close(struct net_device *dev)
4432{
4433 struct macb *lp = netdev_priv(dev);
4434
4435 netif_stop_queue(dev);
4436
4437 phylink_stop(lp->phylink);
4438 phylink_disconnect_phy(lp->phylink);
4439
4440 at91ether_stop(lp);
4441
4442 return pm_runtime_put(&lp->pdev->dev);
4443}
4444
4445/* Transmit packet */
4446static netdev_tx_t at91ether_start_xmit(struct sk_buff *skb,
4447 struct net_device *dev)
4448{
4449 struct macb *lp = netdev_priv(dev);
4450
4451 if (macb_readl(lp, TSR) & MACB_BIT(RM9200_BNQ)) {
4452 int desc = 0;
4453
4454 netif_stop_queue(dev);
4455
4456 /* Store packet information (to free when Tx completed) */
4457 lp->rm9200_txq[desc].skb = skb;
4458 lp->rm9200_txq[desc].size = skb->len;
4459 lp->rm9200_txq[desc].mapping = dma_map_single(&lp->pdev->dev, skb->data,
4460 skb->len, DMA_TO_DEVICE);
4461 if (dma_mapping_error(&lp->pdev->dev, lp->rm9200_txq[desc].mapping)) {
4462 dev_kfree_skb_any(skb);
4463 dev->stats.tx_dropped++;
4464 netdev_err(dev, "%s: DMA mapping error\n", __func__);
4465 return NETDEV_TX_OK;
4466 }
4467
4468 /* Set address of the data in the Transmit Address register */
4469 macb_writel(lp, TAR, lp->rm9200_txq[desc].mapping);
4470 /* Set length of the packet in the Transmit Control register */
4471 macb_writel(lp, TCR, skb->len);
4472
4473 } else {
4474 netdev_err(dev, "%s called, but device is busy!\n", __func__);
4475 return NETDEV_TX_BUSY;
4476 }
4477
4478 return NETDEV_TX_OK;
4479}
4480
4481/* Extract received frame from buffer descriptors and sent to upper layers.
4482 * (Called from interrupt context)
4483 */
4484static void at91ether_rx(struct net_device *dev)
4485{
4486 struct macb *lp = netdev_priv(dev);
4487 struct macb_queue *q = &lp->queues[0];
4488 struct macb_dma_desc *desc;
4489 unsigned char *p_recv;
4490 struct sk_buff *skb;
4491 unsigned int pktlen;
4492
4493 desc = macb_rx_desc(q, q->rx_tail);
4494 while (desc->addr & MACB_BIT(RX_USED)) {
4495 p_recv = q->rx_buffers + q->rx_tail * AT91ETHER_MAX_RBUFF_SZ;
4496 pktlen = MACB_BF(RX_FRMLEN, desc->ctrl);
4497 skb = netdev_alloc_skb(dev, pktlen + 2);
4498 if (skb) {
4499 skb_reserve(skb, 2);
4500 skb_put_data(skb, p_recv, pktlen);
4501
4502 skb->protocol = eth_type_trans(skb, dev);
4503 dev->stats.rx_packets++;
4504 dev->stats.rx_bytes += pktlen;
4505 netif_rx(skb);
4506 } else {
4507 dev->stats.rx_dropped++;
4508 }
4509
4510 if (desc->ctrl & MACB_BIT(RX_MHASH_MATCH))
4511 dev->stats.multicast++;
4512
4513 /* reset ownership bit */
4514 desc->addr &= ~MACB_BIT(RX_USED);
4515
4516 /* wrap after last buffer */
4517 if (q->rx_tail == AT91ETHER_MAX_RX_DESCR - 1)
4518 q->rx_tail = 0;
4519 else
4520 q->rx_tail++;
4521
4522 desc = macb_rx_desc(q, q->rx_tail);
4523 }
4524}
4525
4526/* MAC interrupt handler */
4527static irqreturn_t at91ether_interrupt(int irq, void *dev_id)
4528{
4529 struct net_device *dev = dev_id;
4530 struct macb *lp = netdev_priv(dev);
4531 u32 intstatus, ctl;
4532 unsigned int desc;
4533
4534 /* MAC Interrupt Status register indicates what interrupts are pending.
4535 * It is automatically cleared once read.
4536 */
4537 intstatus = macb_readl(lp, ISR);
4538
4539 /* Receive complete */
4540 if (intstatus & MACB_BIT(RCOMP))
4541 at91ether_rx(dev);
4542
4543 /* Transmit complete */
4544 if (intstatus & MACB_BIT(TCOMP)) {
4545 /* The TCOM bit is set even if the transmission failed */
4546 if (intstatus & (MACB_BIT(ISR_TUND) | MACB_BIT(ISR_RLE)))
4547 dev->stats.tx_errors++;
4548
4549 desc = 0;
4550 if (lp->rm9200_txq[desc].skb) {
4551 dev_consume_skb_irq(lp->rm9200_txq[desc].skb);
4552 lp->rm9200_txq[desc].skb = NULL;
4553 dma_unmap_single(&lp->pdev->dev, lp->rm9200_txq[desc].mapping,
4554 lp->rm9200_txq[desc].size, DMA_TO_DEVICE);
4555 dev->stats.tx_packets++;
4556 dev->stats.tx_bytes += lp->rm9200_txq[desc].size;
4557 }
4558 netif_wake_queue(dev);
4559 }
4560
4561 /* Work-around for EMAC Errata section 41.3.1 */
4562 if (intstatus & MACB_BIT(RXUBR)) {
4563 ctl = macb_readl(lp, NCR);
4564 macb_writel(lp, NCR, ctl & ~MACB_BIT(RE));
4565 wmb();
4566 macb_writel(lp, NCR, ctl | MACB_BIT(RE));
4567 }
4568
4569 if (intstatus & MACB_BIT(ISR_ROVR))
4570 netdev_err(dev, "ROVR error\n");
4571
4572 return IRQ_HANDLED;
4573}
4574
4575#ifdef CONFIG_NET_POLL_CONTROLLER
4576static void at91ether_poll_controller(struct net_device *dev)
4577{
4578 unsigned long flags;
4579
4580 local_irq_save(flags);
4581 at91ether_interrupt(dev->irq, dev);
4582 local_irq_restore(flags);
4583}
4584#endif
4585
4586static const struct net_device_ops at91ether_netdev_ops = {
4587 .ndo_open = at91ether_open,
4588 .ndo_stop = at91ether_close,
4589 .ndo_start_xmit = at91ether_start_xmit,
4590 .ndo_get_stats = macb_get_stats,
4591 .ndo_set_rx_mode = macb_set_rx_mode,
4592 .ndo_set_mac_address = eth_mac_addr,
4593 .ndo_eth_ioctl = macb_ioctl,
4594 .ndo_validate_addr = eth_validate_addr,
4595#ifdef CONFIG_NET_POLL_CONTROLLER
4596 .ndo_poll_controller = at91ether_poll_controller,
4597#endif
4598 .ndo_hwtstamp_set = macb_hwtstamp_set,
4599 .ndo_hwtstamp_get = macb_hwtstamp_get,
4600};
4601
4602static int at91ether_clk_init(struct platform_device *pdev, struct clk **pclk,
4603 struct clk **hclk, struct clk **tx_clk,
4604 struct clk **rx_clk, struct clk **tsu_clk)
4605{
4606 int err;
4607
4608 *hclk = NULL;
4609 *tx_clk = NULL;
4610 *rx_clk = NULL;
4611 *tsu_clk = NULL;
4612
4613 *pclk = devm_clk_get(&pdev->dev, "ether_clk");
4614 if (IS_ERR(*pclk))
4615 return PTR_ERR(*pclk);
4616
4617 err = clk_prepare_enable(*pclk);
4618 if (err) {
4619 dev_err(&pdev->dev, "failed to enable pclk (%d)\n", err);
4620 return err;
4621 }
4622
4623 return 0;
4624}
4625
4626static int at91ether_init(struct platform_device *pdev)
4627{
4628 struct net_device *dev = platform_get_drvdata(pdev);
4629 struct macb *bp = netdev_priv(dev);
4630 int err;
4631
4632 bp->queues[0].bp = bp;
4633
4634 dev->netdev_ops = &at91ether_netdev_ops;
4635 dev->ethtool_ops = &macb_ethtool_ops;
4636
4637 err = devm_request_irq(&pdev->dev, dev->irq, at91ether_interrupt,
4638 0, dev->name, dev);
4639 if (err)
4640 return err;
4641
4642 macb_writel(bp, NCR, 0);
4643
4644 macb_writel(bp, NCFGR, MACB_BF(CLK, MACB_CLK_DIV32) | MACB_BIT(BIG));
4645
4646 return 0;
4647}
4648
4649static unsigned long fu540_macb_tx_recalc_rate(struct clk_hw *hw,
4650 unsigned long parent_rate)
4651{
4652 return mgmt->rate;
4653}
4654
4655static long fu540_macb_tx_round_rate(struct clk_hw *hw, unsigned long rate,
4656 unsigned long *parent_rate)
4657{
4658 if (WARN_ON(rate < 2500000))
4659 return 2500000;
4660 else if (rate == 2500000)
4661 return 2500000;
4662 else if (WARN_ON(rate < 13750000))
4663 return 2500000;
4664 else if (WARN_ON(rate < 25000000))
4665 return 25000000;
4666 else if (rate == 25000000)
4667 return 25000000;
4668 else if (WARN_ON(rate < 75000000))
4669 return 25000000;
4670 else if (WARN_ON(rate < 125000000))
4671 return 125000000;
4672 else if (rate == 125000000)
4673 return 125000000;
4674
4675 WARN_ON(rate > 125000000);
4676
4677 return 125000000;
4678}
4679
4680static int fu540_macb_tx_set_rate(struct clk_hw *hw, unsigned long rate,
4681 unsigned long parent_rate)
4682{
4683 rate = fu540_macb_tx_round_rate(hw, rate, &parent_rate);
4684 if (rate != 125000000)
4685 iowrite32(1, mgmt->reg);
4686 else
4687 iowrite32(0, mgmt->reg);
4688 mgmt->rate = rate;
4689
4690 return 0;
4691}
4692
4693static const struct clk_ops fu540_c000_ops = {
4694 .recalc_rate = fu540_macb_tx_recalc_rate,
4695 .round_rate = fu540_macb_tx_round_rate,
4696 .set_rate = fu540_macb_tx_set_rate,
4697};
4698
4699static int fu540_c000_clk_init(struct platform_device *pdev, struct clk **pclk,
4700 struct clk **hclk, struct clk **tx_clk,
4701 struct clk **rx_clk, struct clk **tsu_clk)
4702{
4703 struct clk_init_data init;
4704 int err = 0;
4705
4706 err = macb_clk_init(pdev, pclk, hclk, tx_clk, rx_clk, tsu_clk);
4707 if (err)
4708 return err;
4709
4710 mgmt = devm_kzalloc(&pdev->dev, sizeof(*mgmt), GFP_KERNEL);
4711 if (!mgmt) {
4712 err = -ENOMEM;
4713 goto err_disable_clks;
4714 }
4715
4716 init.name = "sifive-gemgxl-mgmt";
4717 init.ops = &fu540_c000_ops;
4718 init.flags = 0;
4719 init.num_parents = 0;
4720
4721 mgmt->rate = 0;
4722 mgmt->hw.init = &init;
4723
4724 *tx_clk = devm_clk_register(&pdev->dev, &mgmt->hw);
4725 if (IS_ERR(*tx_clk)) {
4726 err = PTR_ERR(*tx_clk);
4727 goto err_disable_clks;
4728 }
4729
4730 err = clk_prepare_enable(*tx_clk);
4731 if (err) {
4732 dev_err(&pdev->dev, "failed to enable tx_clk (%u)\n", err);
4733 *tx_clk = NULL;
4734 goto err_disable_clks;
4735 } else {
4736 dev_info(&pdev->dev, "Registered clk switch '%s'\n", init.name);
4737 }
4738
4739 return 0;
4740
4741err_disable_clks:
4742 macb_clks_disable(*pclk, *hclk, *tx_clk, *rx_clk, *tsu_clk);
4743
4744 return err;
4745}
4746
4747static int fu540_c000_init(struct platform_device *pdev)
4748{
4749 mgmt->reg = devm_platform_ioremap_resource(pdev, 1);
4750 if (IS_ERR(mgmt->reg))
4751 return PTR_ERR(mgmt->reg);
4752
4753 return macb_init(pdev);
4754}
4755
4756static int init_reset_optional(struct platform_device *pdev)
4757{
4758 struct net_device *dev = platform_get_drvdata(pdev);
4759 struct macb *bp = netdev_priv(dev);
4760 int ret;
4761
4762 if (bp->phy_interface == PHY_INTERFACE_MODE_SGMII) {
4763 /* Ensure PHY device used in SGMII mode is ready */
4764 bp->sgmii_phy = devm_phy_optional_get(&pdev->dev, NULL);
4765
4766 if (IS_ERR(bp->sgmii_phy))
4767 return dev_err_probe(&pdev->dev, PTR_ERR(bp->sgmii_phy),
4768 "failed to get SGMII PHY\n");
4769
4770 ret = phy_init(bp->sgmii_phy);
4771 if (ret)
4772 return dev_err_probe(&pdev->dev, ret,
4773 "failed to init SGMII PHY\n");
4774
4775 ret = zynqmp_pm_is_function_supported(PM_IOCTL, IOCTL_SET_GEM_CONFIG);
4776 if (!ret) {
4777 u32 pm_info[2];
4778
4779 ret = of_property_read_u32_array(pdev->dev.of_node, "power-domains",
4780 pm_info, ARRAY_SIZE(pm_info));
4781 if (ret) {
4782 dev_err(&pdev->dev, "Failed to read power management information\n");
4783 goto err_out_phy_exit;
4784 }
4785 ret = zynqmp_pm_set_gem_config(pm_info[1], GEM_CONFIG_FIXED, 0);
4786 if (ret)
4787 goto err_out_phy_exit;
4788
4789 ret = zynqmp_pm_set_gem_config(pm_info[1], GEM_CONFIG_SGMII_MODE, 1);
4790 if (ret)
4791 goto err_out_phy_exit;
4792 }
4793
4794 }
4795
4796 /* Fully reset controller at hardware level if mapped in device tree */
4797 ret = device_reset_optional(&pdev->dev);
4798 if (ret) {
4799 phy_exit(bp->sgmii_phy);
4800 return dev_err_probe(&pdev->dev, ret, "failed to reset controller");
4801 }
4802
4803 ret = macb_init(pdev);
4804
4805err_out_phy_exit:
4806 if (ret)
4807 phy_exit(bp->sgmii_phy);
4808
4809 return ret;
4810}
4811
4812static const struct macb_usrio_config sama7g5_usrio = {
4813 .mii = 0,
4814 .rmii = 1,
4815 .rgmii = 2,
4816 .refclk = BIT(2),
4817 .hdfctlen = BIT(6),
4818};
4819
4820static const struct macb_config fu540_c000_config = {
4821 .caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE | MACB_CAPS_JUMBO |
4822 MACB_CAPS_GEM_HAS_PTP,
4823 .dma_burst_length = 16,
4824 .clk_init = fu540_c000_clk_init,
4825 .init = fu540_c000_init,
4826 .jumbo_max_len = 10240,
4827 .usrio = &macb_default_usrio,
4828};
4829
4830static const struct macb_config at91sam9260_config = {
4831 .caps = MACB_CAPS_USRIO_HAS_CLKEN | MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
4832 .clk_init = macb_clk_init,
4833 .init = macb_init,
4834 .usrio = &macb_default_usrio,
4835};
4836
4837static const struct macb_config sama5d3macb_config = {
4838 .caps = MACB_CAPS_SG_DISABLED |
4839 MACB_CAPS_USRIO_HAS_CLKEN | MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
4840 .clk_init = macb_clk_init,
4841 .init = macb_init,
4842 .usrio = &macb_default_usrio,
4843};
4844
4845static const struct macb_config pc302gem_config = {
4846 .caps = MACB_CAPS_SG_DISABLED | MACB_CAPS_GIGABIT_MODE_AVAILABLE,
4847 .dma_burst_length = 16,
4848 .clk_init = macb_clk_init,
4849 .init = macb_init,
4850 .usrio = &macb_default_usrio,
4851};
4852
4853static const struct macb_config sama5d2_config = {
4854 .caps = MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII | MACB_CAPS_JUMBO,
4855 .dma_burst_length = 16,
4856 .clk_init = macb_clk_init,
4857 .init = macb_init,
4858 .jumbo_max_len = 10240,
4859 .usrio = &macb_default_usrio,
4860};
4861
4862static const struct macb_config sama5d29_config = {
4863 .caps = MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII | MACB_CAPS_GEM_HAS_PTP,
4864 .dma_burst_length = 16,
4865 .clk_init = macb_clk_init,
4866 .init = macb_init,
4867 .usrio = &macb_default_usrio,
4868};
4869
4870static const struct macb_config sama5d3_config = {
4871 .caps = MACB_CAPS_SG_DISABLED | MACB_CAPS_GIGABIT_MODE_AVAILABLE |
4872 MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII | MACB_CAPS_JUMBO,
4873 .dma_burst_length = 16,
4874 .clk_init = macb_clk_init,
4875 .init = macb_init,
4876 .jumbo_max_len = 10240,
4877 .usrio = &macb_default_usrio,
4878};
4879
4880static const struct macb_config sama5d4_config = {
4881 .caps = MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII,
4882 .dma_burst_length = 4,
4883 .clk_init = macb_clk_init,
4884 .init = macb_init,
4885 .usrio = &macb_default_usrio,
4886};
4887
4888static const struct macb_config emac_config = {
4889 .caps = MACB_CAPS_NEEDS_RSTONUBR | MACB_CAPS_MACB_IS_EMAC,
4890 .clk_init = at91ether_clk_init,
4891 .init = at91ether_init,
4892 .usrio = &macb_default_usrio,
4893};
4894
4895static const struct macb_config np4_config = {
4896 .caps = MACB_CAPS_USRIO_DISABLED,
4897 .clk_init = macb_clk_init,
4898 .init = macb_init,
4899 .usrio = &macb_default_usrio,
4900};
4901
4902static const struct macb_config zynqmp_config = {
4903 .caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE |
4904 MACB_CAPS_JUMBO |
4905 MACB_CAPS_GEM_HAS_PTP | MACB_CAPS_BD_RD_PREFETCH,
4906 .dma_burst_length = 16,
4907 .clk_init = macb_clk_init,
4908 .init = init_reset_optional,
4909 .jumbo_max_len = 10240,
4910 .usrio = &macb_default_usrio,
4911};
4912
4913static const struct macb_config zynq_config = {
4914 .caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE | MACB_CAPS_NO_GIGABIT_HALF |
4915 MACB_CAPS_NEEDS_RSTONUBR,
4916 .dma_burst_length = 16,
4917 .clk_init = macb_clk_init,
4918 .init = macb_init,
4919 .usrio = &macb_default_usrio,
4920};
4921
4922static const struct macb_config mpfs_config = {
4923 .caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE |
4924 MACB_CAPS_JUMBO |
4925 MACB_CAPS_GEM_HAS_PTP,
4926 .dma_burst_length = 16,
4927 .clk_init = macb_clk_init,
4928 .init = init_reset_optional,
4929 .usrio = &macb_default_usrio,
4930 .max_tx_length = 4040, /* Cadence Erratum 1686 */
4931 .jumbo_max_len = 4040,
4932};
4933
4934static const struct macb_config sama7g5_gem_config = {
4935 .caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE | MACB_CAPS_CLK_HW_CHG |
4936 MACB_CAPS_MIIONRGMII | MACB_CAPS_GEM_HAS_PTP,
4937 .dma_burst_length = 16,
4938 .clk_init = macb_clk_init,
4939 .init = macb_init,
4940 .usrio = &sama7g5_usrio,
4941};
4942
4943static const struct macb_config sama7g5_emac_config = {
4944 .caps = MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII |
4945 MACB_CAPS_USRIO_HAS_CLKEN | MACB_CAPS_MIIONRGMII |
4946 MACB_CAPS_GEM_HAS_PTP,
4947 .dma_burst_length = 16,
4948 .clk_init = macb_clk_init,
4949 .init = macb_init,
4950 .usrio = &sama7g5_usrio,
4951};
4952
4953static const struct macb_config versal_config = {
4954 .caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE | MACB_CAPS_JUMBO |
4955 MACB_CAPS_GEM_HAS_PTP | MACB_CAPS_BD_RD_PREFETCH | MACB_CAPS_NEED_TSUCLK |
4956 MACB_CAPS_QUEUE_DISABLE,
4957 .dma_burst_length = 16,
4958 .clk_init = macb_clk_init,
4959 .init = init_reset_optional,
4960 .jumbo_max_len = 10240,
4961 .usrio = &macb_default_usrio,
4962};
4963
4964static const struct of_device_id macb_dt_ids[] = {
4965 { .compatible = "cdns,at91sam9260-macb", .data = &at91sam9260_config },
4966 { .compatible = "cdns,macb" },
4967 { .compatible = "cdns,np4-macb", .data = &np4_config },
4968 { .compatible = "cdns,pc302-gem", .data = &pc302gem_config },
4969 { .compatible = "cdns,gem", .data = &pc302gem_config },
4970 { .compatible = "cdns,sam9x60-macb", .data = &at91sam9260_config },
4971 { .compatible = "atmel,sama5d2-gem", .data = &sama5d2_config },
4972 { .compatible = "atmel,sama5d29-gem", .data = &sama5d29_config },
4973 { .compatible = "atmel,sama5d3-gem", .data = &sama5d3_config },
4974 { .compatible = "atmel,sama5d3-macb", .data = &sama5d3macb_config },
4975 { .compatible = "atmel,sama5d4-gem", .data = &sama5d4_config },
4976 { .compatible = "cdns,at91rm9200-emac", .data = &emac_config },
4977 { .compatible = "cdns,emac", .data = &emac_config },
4978 { .compatible = "cdns,zynqmp-gem", .data = &zynqmp_config}, /* deprecated */
4979 { .compatible = "cdns,zynq-gem", .data = &zynq_config }, /* deprecated */
4980 { .compatible = "sifive,fu540-c000-gem", .data = &fu540_c000_config },
4981 { .compatible = "microchip,mpfs-macb", .data = &mpfs_config },
4982 { .compatible = "microchip,sama7g5-gem", .data = &sama7g5_gem_config },
4983 { .compatible = "microchip,sama7g5-emac", .data = &sama7g5_emac_config },
4984 { .compatible = "xlnx,zynqmp-gem", .data = &zynqmp_config},
4985 { .compatible = "xlnx,zynq-gem", .data = &zynq_config },
4986 { .compatible = "xlnx,versal-gem", .data = &versal_config},
4987 { /* sentinel */ }
4988};
4989MODULE_DEVICE_TABLE(of, macb_dt_ids);
4990#endif /* CONFIG_OF */
4991
4992static const struct macb_config default_gem_config = {
4993 .caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE |
4994 MACB_CAPS_JUMBO |
4995 MACB_CAPS_GEM_HAS_PTP,
4996 .dma_burst_length = 16,
4997 .clk_init = macb_clk_init,
4998 .init = macb_init,
4999 .usrio = &macb_default_usrio,
5000 .jumbo_max_len = 10240,
5001};
5002
5003static int macb_probe(struct platform_device *pdev)
5004{
5005 const struct macb_config *macb_config = &default_gem_config;
5006 int (*clk_init)(struct platform_device *, struct clk **,
5007 struct clk **, struct clk **, struct clk **,
5008 struct clk **) = macb_config->clk_init;
5009 int (*init)(struct platform_device *) = macb_config->init;
5010 struct device_node *np = pdev->dev.of_node;
5011 struct clk *pclk, *hclk = NULL, *tx_clk = NULL, *rx_clk = NULL;
5012 struct clk *tsu_clk = NULL;
5013 unsigned int queue_mask, num_queues;
5014 bool native_io;
5015 phy_interface_t interface;
5016 struct net_device *dev;
5017 struct resource *regs;
5018 u32 wtrmrk_rst_val;
5019 void __iomem *mem;
5020 struct macb *bp;
5021 int err, val;
5022
5023 mem = devm_platform_get_and_ioremap_resource(pdev, 0, ®s);
5024 if (IS_ERR(mem))
5025 return PTR_ERR(mem);
5026
5027 if (np) {
5028 const struct of_device_id *match;
5029
5030 match = of_match_node(macb_dt_ids, np);
5031 if (match && match->data) {
5032 macb_config = match->data;
5033 clk_init = macb_config->clk_init;
5034 init = macb_config->init;
5035 }
5036 }
5037
5038 err = clk_init(pdev, &pclk, &hclk, &tx_clk, &rx_clk, &tsu_clk);
5039 if (err)
5040 return err;
5041
5042 pm_runtime_set_autosuspend_delay(&pdev->dev, MACB_PM_TIMEOUT);
5043 pm_runtime_use_autosuspend(&pdev->dev);
5044 pm_runtime_get_noresume(&pdev->dev);
5045 pm_runtime_set_active(&pdev->dev);
5046 pm_runtime_enable(&pdev->dev);
5047 native_io = hw_is_native_io(mem);
5048
5049 macb_probe_queues(mem, native_io, &queue_mask, &num_queues);
5050 dev = alloc_etherdev_mq(sizeof(*bp), num_queues);
5051 if (!dev) {
5052 err = -ENOMEM;
5053 goto err_disable_clocks;
5054 }
5055
5056 dev->base_addr = regs->start;
5057
5058 SET_NETDEV_DEV(dev, &pdev->dev);
5059
5060 bp = netdev_priv(dev);
5061 bp->pdev = pdev;
5062 bp->dev = dev;
5063 bp->regs = mem;
5064 bp->native_io = native_io;
5065 if (native_io) {
5066 bp->macb_reg_readl = hw_readl_native;
5067 bp->macb_reg_writel = hw_writel_native;
5068 } else {
5069 bp->macb_reg_readl = hw_readl;
5070 bp->macb_reg_writel = hw_writel;
5071 }
5072 bp->num_queues = num_queues;
5073 bp->queue_mask = queue_mask;
5074 if (macb_config)
5075 bp->dma_burst_length = macb_config->dma_burst_length;
5076 bp->pclk = pclk;
5077 bp->hclk = hclk;
5078 bp->tx_clk = tx_clk;
5079 bp->rx_clk = rx_clk;
5080 bp->tsu_clk = tsu_clk;
5081 if (macb_config)
5082 bp->jumbo_max_len = macb_config->jumbo_max_len;
5083
5084 if (!hw_is_gem(bp->regs, bp->native_io))
5085 bp->max_tx_length = MACB_MAX_TX_LEN;
5086 else if (macb_config->max_tx_length)
5087 bp->max_tx_length = macb_config->max_tx_length;
5088 else
5089 bp->max_tx_length = GEM_MAX_TX_LEN;
5090
5091 bp->wol = 0;
5092 device_set_wakeup_capable(&pdev->dev, 1);
5093
5094 bp->usrio = macb_config->usrio;
5095
5096 /* By default we set to partial store and forward mode for zynqmp.
5097 * Disable if not set in devicetree.
5098 */
5099 if (GEM_BFEXT(PBUF_CUTTHRU, gem_readl(bp, DCFG6))) {
5100 err = of_property_read_u32(bp->pdev->dev.of_node,
5101 "cdns,rx-watermark",
5102 &bp->rx_watermark);
5103
5104 if (!err) {
5105 /* Disable partial store and forward in case of error or
5106 * invalid watermark value
5107 */
5108 wtrmrk_rst_val = (1 << (GEM_BFEXT(RX_PBUF_ADDR, gem_readl(bp, DCFG2)))) - 1;
5109 if (bp->rx_watermark > wtrmrk_rst_val || !bp->rx_watermark) {
5110 dev_info(&bp->pdev->dev, "Invalid watermark value\n");
5111 bp->rx_watermark = 0;
5112 }
5113 }
5114 }
5115 spin_lock_init(&bp->lock);
5116 spin_lock_init(&bp->stats_lock);
5117
5118 /* setup capabilities */
5119 macb_configure_caps(bp, macb_config);
5120
5121#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
5122 if (GEM_BFEXT(DAW64, gem_readl(bp, DCFG6))) {
5123 dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(44));
5124 bp->hw_dma_cap |= HW_DMA_CAP_64B;
5125 }
5126#endif
5127 platform_set_drvdata(pdev, dev);
5128
5129 dev->irq = platform_get_irq(pdev, 0);
5130 if (dev->irq < 0) {
5131 err = dev->irq;
5132 goto err_out_free_netdev;
5133 }
5134
5135 /* MTU range: 68 - 1518 or 10240 */
5136 dev->min_mtu = GEM_MTU_MIN_SIZE;
5137 if ((bp->caps & MACB_CAPS_JUMBO) && bp->jumbo_max_len)
5138 dev->max_mtu = bp->jumbo_max_len - ETH_HLEN - ETH_FCS_LEN;
5139 else
5140 dev->max_mtu = 1536 - ETH_HLEN - ETH_FCS_LEN;
5141
5142 if (bp->caps & MACB_CAPS_BD_RD_PREFETCH) {
5143 val = GEM_BFEXT(RXBD_RDBUFF, gem_readl(bp, DCFG10));
5144 if (val)
5145 bp->rx_bd_rd_prefetch = (2 << (val - 1)) *
5146 macb_dma_desc_get_size(bp);
5147
5148 val = GEM_BFEXT(TXBD_RDBUFF, gem_readl(bp, DCFG10));
5149 if (val)
5150 bp->tx_bd_rd_prefetch = (2 << (val - 1)) *
5151 macb_dma_desc_get_size(bp);
5152 }
5153
5154 bp->rx_intr_mask = MACB_RX_INT_FLAGS;
5155 if (bp->caps & MACB_CAPS_NEEDS_RSTONUBR)
5156 bp->rx_intr_mask |= MACB_BIT(RXUBR);
5157
5158 err = of_get_ethdev_address(np, bp->dev);
5159 if (err == -EPROBE_DEFER)
5160 goto err_out_free_netdev;
5161 else if (err)
5162 macb_get_hwaddr(bp);
5163
5164 err = of_get_phy_mode(np, &interface);
5165 if (err)
5166 /* not found in DT, MII by default */
5167 bp->phy_interface = PHY_INTERFACE_MODE_MII;
5168 else
5169 bp->phy_interface = interface;
5170
5171 /* IP specific init */
5172 err = init(pdev);
5173 if (err)
5174 goto err_out_free_netdev;
5175
5176 err = macb_mii_init(bp);
5177 if (err)
5178 goto err_out_phy_exit;
5179
5180 netif_carrier_off(dev);
5181
5182 err = register_netdev(dev);
5183 if (err) {
5184 dev_err(&pdev->dev, "Cannot register net device, aborting.\n");
5185 goto err_out_unregister_mdio;
5186 }
5187
5188 INIT_WORK(&bp->hresp_err_bh_work, macb_hresp_error_task);
5189
5190 netdev_info(dev, "Cadence %s rev 0x%08x at 0x%08lx irq %d (%pM)\n",
5191 macb_is_gem(bp) ? "GEM" : "MACB", macb_readl(bp, MID),
5192 dev->base_addr, dev->irq, dev->dev_addr);
5193
5194 pm_runtime_mark_last_busy(&bp->pdev->dev);
5195 pm_runtime_put_autosuspend(&bp->pdev->dev);
5196
5197 return 0;
5198
5199err_out_unregister_mdio:
5200 mdiobus_unregister(bp->mii_bus);
5201 mdiobus_free(bp->mii_bus);
5202
5203err_out_phy_exit:
5204 phy_exit(bp->sgmii_phy);
5205
5206err_out_free_netdev:
5207 free_netdev(dev);
5208
5209err_disable_clocks:
5210 macb_clks_disable(pclk, hclk, tx_clk, rx_clk, tsu_clk);
5211 pm_runtime_disable(&pdev->dev);
5212 pm_runtime_set_suspended(&pdev->dev);
5213 pm_runtime_dont_use_autosuspend(&pdev->dev);
5214
5215 return err;
5216}
5217
5218static void macb_remove(struct platform_device *pdev)
5219{
5220 struct net_device *dev;
5221 struct macb *bp;
5222
5223 dev = platform_get_drvdata(pdev);
5224
5225 if (dev) {
5226 bp = netdev_priv(dev);
5227 phy_exit(bp->sgmii_phy);
5228 mdiobus_unregister(bp->mii_bus);
5229 mdiobus_free(bp->mii_bus);
5230
5231 unregister_netdev(dev);
5232 cancel_work_sync(&bp->hresp_err_bh_work);
5233 pm_runtime_disable(&pdev->dev);
5234 pm_runtime_dont_use_autosuspend(&pdev->dev);
5235 if (!pm_runtime_suspended(&pdev->dev)) {
5236 macb_clks_disable(bp->pclk, bp->hclk, bp->tx_clk,
5237 bp->rx_clk, bp->tsu_clk);
5238 pm_runtime_set_suspended(&pdev->dev);
5239 }
5240 phylink_destroy(bp->phylink);
5241 free_netdev(dev);
5242 }
5243}
5244
5245static int __maybe_unused macb_suspend(struct device *dev)
5246{
5247 struct net_device *netdev = dev_get_drvdata(dev);
5248 struct macb *bp = netdev_priv(netdev);
5249 struct in_ifaddr *ifa = NULL;
5250 struct macb_queue *queue;
5251 struct in_device *idev;
5252 unsigned long flags;
5253 unsigned int q;
5254 int err;
5255 u32 tmp;
5256
5257 if (!device_may_wakeup(&bp->dev->dev))
5258 phy_exit(bp->sgmii_phy);
5259
5260 if (!netif_running(netdev))
5261 return 0;
5262
5263 if (bp->wol & MACB_WOL_ENABLED) {
5264 /* Check for IP address in WOL ARP mode */
5265 idev = __in_dev_get_rcu(bp->dev);
5266 if (idev)
5267 ifa = rcu_dereference(idev->ifa_list);
5268 if ((bp->wolopts & WAKE_ARP) && !ifa) {
5269 netdev_err(netdev, "IP address not assigned as required by WoL walk ARP\n");
5270 return -EOPNOTSUPP;
5271 }
5272 spin_lock_irqsave(&bp->lock, flags);
5273
5274 /* Disable Tx and Rx engines before disabling the queues,
5275 * this is mandatory as per the IP spec sheet
5276 */
5277 tmp = macb_readl(bp, NCR);
5278 macb_writel(bp, NCR, tmp & ~(MACB_BIT(TE) | MACB_BIT(RE)));
5279 for (q = 0, queue = bp->queues; q < bp->num_queues;
5280 ++q, ++queue) {
5281 /* Disable RX queues */
5282 if (bp->caps & MACB_CAPS_QUEUE_DISABLE) {
5283 queue_writel(queue, RBQP, MACB_BIT(QUEUE_DISABLE));
5284 } else {
5285 /* Tie off RX queues */
5286 queue_writel(queue, RBQP,
5287 lower_32_bits(bp->rx_ring_tieoff_dma));
5288#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
5289 queue_writel(queue, RBQPH,
5290 upper_32_bits(bp->rx_ring_tieoff_dma));
5291#endif
5292 }
5293 /* Disable all interrupts */
5294 queue_writel(queue, IDR, -1);
5295 queue_readl(queue, ISR);
5296 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
5297 queue_writel(queue, ISR, -1);
5298 }
5299 /* Enable Receive engine */
5300 macb_writel(bp, NCR, tmp | MACB_BIT(RE));
5301 /* Flush all status bits */
5302 macb_writel(bp, TSR, -1);
5303 macb_writel(bp, RSR, -1);
5304
5305 tmp = (bp->wolopts & WAKE_MAGIC) ? MACB_BIT(MAG) : 0;
5306 if (bp->wolopts & WAKE_ARP) {
5307 tmp |= MACB_BIT(ARP);
5308 /* write IP address into register */
5309 tmp |= MACB_BFEXT(IP, be32_to_cpu(ifa->ifa_local));
5310 }
5311
5312 /* Change interrupt handler and
5313 * Enable WoL IRQ on queue 0
5314 */
5315 devm_free_irq(dev, bp->queues[0].irq, bp->queues);
5316 if (macb_is_gem(bp)) {
5317 err = devm_request_irq(dev, bp->queues[0].irq, gem_wol_interrupt,
5318 IRQF_SHARED, netdev->name, bp->queues);
5319 if (err) {
5320 dev_err(dev,
5321 "Unable to request IRQ %d (error %d)\n",
5322 bp->queues[0].irq, err);
5323 spin_unlock_irqrestore(&bp->lock, flags);
5324 return err;
5325 }
5326 queue_writel(bp->queues, IER, GEM_BIT(WOL));
5327 gem_writel(bp, WOL, tmp);
5328 } else {
5329 err = devm_request_irq(dev, bp->queues[0].irq, macb_wol_interrupt,
5330 IRQF_SHARED, netdev->name, bp->queues);
5331 if (err) {
5332 dev_err(dev,
5333 "Unable to request IRQ %d (error %d)\n",
5334 bp->queues[0].irq, err);
5335 spin_unlock_irqrestore(&bp->lock, flags);
5336 return err;
5337 }
5338 queue_writel(bp->queues, IER, MACB_BIT(WOL));
5339 macb_writel(bp, WOL, tmp);
5340 }
5341 spin_unlock_irqrestore(&bp->lock, flags);
5342
5343 enable_irq_wake(bp->queues[0].irq);
5344 }
5345
5346 netif_device_detach(netdev);
5347 for (q = 0, queue = bp->queues; q < bp->num_queues;
5348 ++q, ++queue) {
5349 napi_disable(&queue->napi_rx);
5350 napi_disable(&queue->napi_tx);
5351 }
5352
5353 if (!(bp->wol & MACB_WOL_ENABLED)) {
5354 rtnl_lock();
5355 phylink_stop(bp->phylink);
5356 rtnl_unlock();
5357 spin_lock_irqsave(&bp->lock, flags);
5358 macb_reset_hw(bp);
5359 spin_unlock_irqrestore(&bp->lock, flags);
5360 }
5361
5362 if (!(bp->caps & MACB_CAPS_USRIO_DISABLED))
5363 bp->pm_data.usrio = macb_or_gem_readl(bp, USRIO);
5364
5365 if (netdev->hw_features & NETIF_F_NTUPLE)
5366 bp->pm_data.scrt2 = gem_readl_n(bp, ETHT, SCRT2_ETHT);
5367
5368 if (bp->ptp_info)
5369 bp->ptp_info->ptp_remove(netdev);
5370 if (!device_may_wakeup(dev))
5371 pm_runtime_force_suspend(dev);
5372
5373 return 0;
5374}
5375
5376static int __maybe_unused macb_resume(struct device *dev)
5377{
5378 struct net_device *netdev = dev_get_drvdata(dev);
5379 struct macb *bp = netdev_priv(netdev);
5380 struct macb_queue *queue;
5381 unsigned long flags;
5382 unsigned int q;
5383 int err;
5384
5385 if (!device_may_wakeup(&bp->dev->dev))
5386 phy_init(bp->sgmii_phy);
5387
5388 if (!netif_running(netdev))
5389 return 0;
5390
5391 if (!device_may_wakeup(dev))
5392 pm_runtime_force_resume(dev);
5393
5394 if (bp->wol & MACB_WOL_ENABLED) {
5395 spin_lock_irqsave(&bp->lock, flags);
5396 /* Disable WoL */
5397 if (macb_is_gem(bp)) {
5398 queue_writel(bp->queues, IDR, GEM_BIT(WOL));
5399 gem_writel(bp, WOL, 0);
5400 } else {
5401 queue_writel(bp->queues, IDR, MACB_BIT(WOL));
5402 macb_writel(bp, WOL, 0);
5403 }
5404 /* Clear ISR on queue 0 */
5405 queue_readl(bp->queues, ISR);
5406 if (bp->caps & MACB_CAPS_ISR_CLEAR_ON_WRITE)
5407 queue_writel(bp->queues, ISR, -1);
5408 /* Replace interrupt handler on queue 0 */
5409 devm_free_irq(dev, bp->queues[0].irq, bp->queues);
5410 err = devm_request_irq(dev, bp->queues[0].irq, macb_interrupt,
5411 IRQF_SHARED, netdev->name, bp->queues);
5412 if (err) {
5413 dev_err(dev,
5414 "Unable to request IRQ %d (error %d)\n",
5415 bp->queues[0].irq, err);
5416 spin_unlock_irqrestore(&bp->lock, flags);
5417 return err;
5418 }
5419 spin_unlock_irqrestore(&bp->lock, flags);
5420
5421 disable_irq_wake(bp->queues[0].irq);
5422
5423 /* Now make sure we disable phy before moving
5424 * to common restore path
5425 */
5426 rtnl_lock();
5427 phylink_stop(bp->phylink);
5428 rtnl_unlock();
5429 }
5430
5431 for (q = 0, queue = bp->queues; q < bp->num_queues;
5432 ++q, ++queue) {
5433 napi_enable(&queue->napi_rx);
5434 napi_enable(&queue->napi_tx);
5435 }
5436
5437 if (netdev->hw_features & NETIF_F_NTUPLE)
5438 gem_writel_n(bp, ETHT, SCRT2_ETHT, bp->pm_data.scrt2);
5439
5440 if (!(bp->caps & MACB_CAPS_USRIO_DISABLED))
5441 macb_or_gem_writel(bp, USRIO, bp->pm_data.usrio);
5442
5443 macb_writel(bp, NCR, MACB_BIT(MPE));
5444 macb_init_hw(bp);
5445 macb_set_rx_mode(netdev);
5446 macb_restore_features(bp);
5447 rtnl_lock();
5448
5449 phylink_start(bp->phylink);
5450 rtnl_unlock();
5451
5452 netif_device_attach(netdev);
5453 if (bp->ptp_info)
5454 bp->ptp_info->ptp_init(netdev);
5455
5456 return 0;
5457}
5458
5459static int __maybe_unused macb_runtime_suspend(struct device *dev)
5460{
5461 struct net_device *netdev = dev_get_drvdata(dev);
5462 struct macb *bp = netdev_priv(netdev);
5463
5464 if (!(device_may_wakeup(dev)))
5465 macb_clks_disable(bp->pclk, bp->hclk, bp->tx_clk, bp->rx_clk, bp->tsu_clk);
5466 else if (!(bp->caps & MACB_CAPS_NEED_TSUCLK))
5467 macb_clks_disable(NULL, NULL, NULL, NULL, bp->tsu_clk);
5468
5469 return 0;
5470}
5471
5472static int __maybe_unused macb_runtime_resume(struct device *dev)
5473{
5474 struct net_device *netdev = dev_get_drvdata(dev);
5475 struct macb *bp = netdev_priv(netdev);
5476
5477 if (!(device_may_wakeup(dev))) {
5478 clk_prepare_enable(bp->pclk);
5479 clk_prepare_enable(bp->hclk);
5480 clk_prepare_enable(bp->tx_clk);
5481 clk_prepare_enable(bp->rx_clk);
5482 clk_prepare_enable(bp->tsu_clk);
5483 } else if (!(bp->caps & MACB_CAPS_NEED_TSUCLK)) {
5484 clk_prepare_enable(bp->tsu_clk);
5485 }
5486
5487 return 0;
5488}
5489
5490static const struct dev_pm_ops macb_pm_ops = {
5491 SET_SYSTEM_SLEEP_PM_OPS(macb_suspend, macb_resume)
5492 SET_RUNTIME_PM_OPS(macb_runtime_suspend, macb_runtime_resume, NULL)
5493};
5494
5495static struct platform_driver macb_driver = {
5496 .probe = macb_probe,
5497 .remove = macb_remove,
5498 .driver = {
5499 .name = "macb",
5500 .of_match_table = of_match_ptr(macb_dt_ids),
5501 .pm = &macb_pm_ops,
5502 },
5503};
5504
5505module_platform_driver(macb_driver);
5506
5507MODULE_LICENSE("GPL");
5508MODULE_DESCRIPTION("Cadence MACB/GEM Ethernet driver");
5509MODULE_AUTHOR("Haavard Skinnemoen (Atmel)");
5510MODULE_ALIAS("platform:macb");