1 // SPDX-License-Identifier: GPL-2.0-only
3 * Cadence MACB/GEM Ethernet Controller driver
5 * Copyright (C) 2004-2006 Atmel Corporation
8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
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>
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>
29 #include <linux/of_device.h>
30 #include <linux/of_gpio.h>
31 #include <linux/of_mdio.h>
32 #include <linux/of_net.h>
34 #include <linux/udp.h>
35 #include <linux/tcp.h>
36 #include <linux/iopoll.h>
37 #include <linux/pm_runtime.h>
40 /* This structure is only used for MACB on SiFive FU540 devices */
41 struct sifive_fu540_macb_mgmt
{
47 #define MACB_RX_BUFFER_SIZE 128
48 #define RX_BUFFER_MULTIPLE 64 /* bytes */
50 #define DEFAULT_RX_RING_SIZE 512 /* must be power of 2 */
51 #define MIN_RX_RING_SIZE 64
52 #define MAX_RX_RING_SIZE 8192
53 #define RX_RING_BYTES(bp) (macb_dma_desc_get_size(bp) \
56 #define DEFAULT_TX_RING_SIZE 512 /* must be power of 2 */
57 #define MIN_TX_RING_SIZE 64
58 #define MAX_TX_RING_SIZE 4096
59 #define TX_RING_BYTES(bp) (macb_dma_desc_get_size(bp) \
62 /* level of occupied TX descriptors under which we wake up TX process */
63 #define MACB_TX_WAKEUP_THRESH(bp) (3 * (bp)->tx_ring_size / 4)
65 #define MACB_RX_INT_FLAGS (MACB_BIT(RCOMP) | MACB_BIT(ISR_ROVR))
66 #define MACB_TX_ERR_FLAGS (MACB_BIT(ISR_TUND) \
69 #define MACB_TX_INT_FLAGS (MACB_TX_ERR_FLAGS | MACB_BIT(TCOMP) \
72 /* Max length of transmit frame must be a multiple of 8 bytes */
73 #define MACB_TX_LEN_ALIGN 8
74 #define MACB_MAX_TX_LEN ((unsigned int)((1 << MACB_TX_FRMLEN_SIZE) - 1) & ~((unsigned int)(MACB_TX_LEN_ALIGN - 1)))
75 /* Limit maximum TX length as per Cadence TSO errata. This is to avoid a
76 * false amba_error in TX path from the DMA assuming there is not enough
77 * space in the SRAM (16KB) even when there is.
79 #define GEM_MAX_TX_LEN (unsigned int)(0x3FC0)
81 #define GEM_MTU_MIN_SIZE ETH_MIN_MTU
82 #define MACB_NETIF_LSO NETIF_F_TSO
84 #define MACB_WOL_HAS_MAGIC_PACKET (0x1 << 0)
85 #define MACB_WOL_ENABLED (0x1 << 1)
87 #define HS_SPEED_10000M 4
88 #define MACB_SERDES_RATE_10G 1
90 /* Graceful stop timeouts in us. We should allow up to
91 * 1 frame time (10 Mbits/s, full-duplex, ignoring collisions)
93 #define MACB_HALT_TIMEOUT 1230
95 #define MACB_PM_TIMEOUT 100 /* ms */
97 #define MACB_MDIO_TIMEOUT 1000000 /* in usecs */
99 /* DMA buffer descriptor might be different size
100 * depends on hardware configuration:
102 * 1. dma address width 32 bits:
103 * word 1: 32 bit address of Data Buffer
106 * 2. dma address width 64 bits:
107 * word 1: 32 bit address of Data Buffer
109 * word 3: upper 32 bit address of Data Buffer
112 * 3. dma address width 32 bits with hardware timestamping:
113 * word 1: 32 bit address of Data Buffer
115 * word 3: timestamp word 1
116 * word 4: timestamp word 2
118 * 4. dma address width 64 bits with hardware timestamping:
119 * word 1: 32 bit address of Data Buffer
121 * word 3: upper 32 bit address of Data Buffer
123 * word 5: timestamp word 1
124 * word 6: timestamp word 2
126 static unsigned int macb_dma_desc_get_size(struct macb
*bp
)
129 unsigned int desc_size
;
131 switch (bp
->hw_dma_cap
) {
133 desc_size
= sizeof(struct macb_dma_desc
)
134 + sizeof(struct macb_dma_desc_64
);
137 desc_size
= sizeof(struct macb_dma_desc
)
138 + sizeof(struct macb_dma_desc_ptp
);
140 case HW_DMA_CAP_64B_PTP
:
141 desc_size
= sizeof(struct macb_dma_desc
)
142 + sizeof(struct macb_dma_desc_64
)
143 + sizeof(struct macb_dma_desc_ptp
);
146 desc_size
= sizeof(struct macb_dma_desc
);
150 return sizeof(struct macb_dma_desc
);
153 static unsigned int macb_adj_dma_desc_idx(struct macb
*bp
, unsigned int desc_idx
)
156 switch (bp
->hw_dma_cap
) {
161 case HW_DMA_CAP_64B_PTP
:
171 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
172 static struct macb_dma_desc_64
*macb_64b_desc(struct macb
*bp
, struct macb_dma_desc
*desc
)
174 return (struct macb_dma_desc_64
*)((void *)desc
175 + sizeof(struct macb_dma_desc
));
179 /* Ring buffer accessors */
180 static unsigned int macb_tx_ring_wrap(struct macb
*bp
, unsigned int index
)
182 return index
& (bp
->tx_ring_size
- 1);
185 static struct macb_dma_desc
*macb_tx_desc(struct macb_queue
*queue
,
188 index
= macb_tx_ring_wrap(queue
->bp
, index
);
189 index
= macb_adj_dma_desc_idx(queue
->bp
, index
);
190 return &queue
->tx_ring
[index
];
193 static struct macb_tx_skb
*macb_tx_skb(struct macb_queue
*queue
,
196 return &queue
->tx_skb
[macb_tx_ring_wrap(queue
->bp
, index
)];
199 static dma_addr_t
macb_tx_dma(struct macb_queue
*queue
, unsigned int index
)
203 offset
= macb_tx_ring_wrap(queue
->bp
, index
) *
204 macb_dma_desc_get_size(queue
->bp
);
206 return queue
->tx_ring_dma
+ offset
;
209 static unsigned int macb_rx_ring_wrap(struct macb
*bp
, unsigned int index
)
211 return index
& (bp
->rx_ring_size
- 1);
214 static struct macb_dma_desc
*macb_rx_desc(struct macb_queue
*queue
, unsigned int index
)
216 index
= macb_rx_ring_wrap(queue
->bp
, index
);
217 index
= macb_adj_dma_desc_idx(queue
->bp
, index
);
218 return &queue
->rx_ring
[index
];
221 static void *macb_rx_buffer(struct macb_queue
*queue
, unsigned int index
)
223 return queue
->rx_buffers
+ queue
->bp
->rx_buffer_size
*
224 macb_rx_ring_wrap(queue
->bp
, index
);
228 static u32
hw_readl_native(struct macb
*bp
, int offset
)
230 return __raw_readl(bp
->regs
+ offset
);
233 static void hw_writel_native(struct macb
*bp
, int offset
, u32 value
)
235 __raw_writel(value
, bp
->regs
+ offset
);
238 static u32
hw_readl(struct macb
*bp
, int offset
)
240 return readl_relaxed(bp
->regs
+ offset
);
243 static void hw_writel(struct macb
*bp
, int offset
, u32 value
)
245 writel_relaxed(value
, bp
->regs
+ offset
);
248 /* Find the CPU endianness by using the loopback bit of NCR register. When the
249 * CPU is in big endian we need to program swapped mode for management
252 static bool hw_is_native_io(void __iomem
*addr
)
254 u32 value
= MACB_BIT(LLB
);
256 __raw_writel(value
, addr
+ MACB_NCR
);
257 value
= __raw_readl(addr
+ MACB_NCR
);
259 /* Write 0 back to disable everything */
260 __raw_writel(0, addr
+ MACB_NCR
);
262 return value
== MACB_BIT(LLB
);
265 static bool hw_is_gem(void __iomem
*addr
, bool native_io
)
270 id
= __raw_readl(addr
+ MACB_MID
);
272 id
= readl_relaxed(addr
+ MACB_MID
);
274 return MACB_BFEXT(IDNUM
, id
) >= 0x2;
277 static void macb_set_hwaddr(struct macb
*bp
)
282 bottom
= cpu_to_le32(*((u32
*)bp
->dev
->dev_addr
));
283 macb_or_gem_writel(bp
, SA1B
, bottom
);
284 top
= cpu_to_le16(*((u16
*)(bp
->dev
->dev_addr
+ 4)));
285 macb_or_gem_writel(bp
, SA1T
, top
);
287 /* Clear unused address register sets */
288 macb_or_gem_writel(bp
, SA2B
, 0);
289 macb_or_gem_writel(bp
, SA2T
, 0);
290 macb_or_gem_writel(bp
, SA3B
, 0);
291 macb_or_gem_writel(bp
, SA3T
, 0);
292 macb_or_gem_writel(bp
, SA4B
, 0);
293 macb_or_gem_writel(bp
, SA4T
, 0);
296 static void macb_get_hwaddr(struct macb
*bp
)
303 /* Check all 4 address register for valid address */
304 for (i
= 0; i
< 4; i
++) {
305 bottom
= macb_or_gem_readl(bp
, SA1B
+ i
* 8);
306 top
= macb_or_gem_readl(bp
, SA1T
+ i
* 8);
308 addr
[0] = bottom
& 0xff;
309 addr
[1] = (bottom
>> 8) & 0xff;
310 addr
[2] = (bottom
>> 16) & 0xff;
311 addr
[3] = (bottom
>> 24) & 0xff;
312 addr
[4] = top
& 0xff;
313 addr
[5] = (top
>> 8) & 0xff;
315 if (is_valid_ether_addr(addr
)) {
316 memcpy(bp
->dev
->dev_addr
, addr
, sizeof(addr
));
321 dev_info(&bp
->pdev
->dev
, "invalid hw address, using random\n");
322 eth_hw_addr_random(bp
->dev
);
325 static int macb_mdio_wait_for_idle(struct macb
*bp
)
329 return readx_poll_timeout(MACB_READ_NSR
, bp
, val
, val
& MACB_BIT(IDLE
),
330 1, MACB_MDIO_TIMEOUT
);
333 static int macb_mdio_read(struct mii_bus
*bus
, int mii_id
, int regnum
)
335 struct macb
*bp
= bus
->priv
;
338 status
= pm_runtime_get_sync(&bp
->pdev
->dev
);
340 pm_runtime_put_noidle(&bp
->pdev
->dev
);
344 status
= macb_mdio_wait_for_idle(bp
);
348 if (regnum
& MII_ADDR_C45
) {
349 macb_writel(bp
, MAN
, (MACB_BF(SOF
, MACB_MAN_C45_SOF
)
350 | MACB_BF(RW
, MACB_MAN_C45_ADDR
)
351 | MACB_BF(PHYA
, mii_id
)
352 | MACB_BF(REGA
, (regnum
>> 16) & 0x1F)
353 | MACB_BF(DATA
, regnum
& 0xFFFF)
354 | MACB_BF(CODE
, MACB_MAN_C45_CODE
)));
356 status
= macb_mdio_wait_for_idle(bp
);
360 macb_writel(bp
, MAN
, (MACB_BF(SOF
, MACB_MAN_C45_SOF
)
361 | MACB_BF(RW
, MACB_MAN_C45_READ
)
362 | MACB_BF(PHYA
, mii_id
)
363 | MACB_BF(REGA
, (regnum
>> 16) & 0x1F)
364 | MACB_BF(CODE
, MACB_MAN_C45_CODE
)));
366 macb_writel(bp
, MAN
, (MACB_BF(SOF
, MACB_MAN_C22_SOF
)
367 | MACB_BF(RW
, MACB_MAN_C22_READ
)
368 | MACB_BF(PHYA
, mii_id
)
369 | MACB_BF(REGA
, regnum
)
370 | MACB_BF(CODE
, MACB_MAN_C22_CODE
)));
373 status
= macb_mdio_wait_for_idle(bp
);
377 status
= MACB_BFEXT(DATA
, macb_readl(bp
, MAN
));
380 pm_runtime_mark_last_busy(&bp
->pdev
->dev
);
381 pm_runtime_put_autosuspend(&bp
->pdev
->dev
);
386 static int macb_mdio_write(struct mii_bus
*bus
, int mii_id
, int regnum
,
389 struct macb
*bp
= bus
->priv
;
392 status
= pm_runtime_get_sync(&bp
->pdev
->dev
);
394 pm_runtime_put_noidle(&bp
->pdev
->dev
);
398 status
= macb_mdio_wait_for_idle(bp
);
400 goto mdio_write_exit
;
402 if (regnum
& MII_ADDR_C45
) {
403 macb_writel(bp
, MAN
, (MACB_BF(SOF
, MACB_MAN_C45_SOF
)
404 | MACB_BF(RW
, MACB_MAN_C45_ADDR
)
405 | MACB_BF(PHYA
, mii_id
)
406 | MACB_BF(REGA
, (regnum
>> 16) & 0x1F)
407 | MACB_BF(DATA
, regnum
& 0xFFFF)
408 | MACB_BF(CODE
, MACB_MAN_C45_CODE
)));
410 status
= macb_mdio_wait_for_idle(bp
);
412 goto mdio_write_exit
;
414 macb_writel(bp
, MAN
, (MACB_BF(SOF
, MACB_MAN_C45_SOF
)
415 | MACB_BF(RW
, MACB_MAN_C45_WRITE
)
416 | MACB_BF(PHYA
, mii_id
)
417 | MACB_BF(REGA
, (regnum
>> 16) & 0x1F)
418 | MACB_BF(CODE
, MACB_MAN_C45_CODE
)
419 | MACB_BF(DATA
, value
)));
421 macb_writel(bp
, MAN
, (MACB_BF(SOF
, MACB_MAN_C22_SOF
)
422 | MACB_BF(RW
, MACB_MAN_C22_WRITE
)
423 | MACB_BF(PHYA
, mii_id
)
424 | MACB_BF(REGA
, regnum
)
425 | MACB_BF(CODE
, MACB_MAN_C22_CODE
)
426 | MACB_BF(DATA
, value
)));
429 status
= macb_mdio_wait_for_idle(bp
);
431 goto mdio_write_exit
;
434 pm_runtime_mark_last_busy(&bp
->pdev
->dev
);
435 pm_runtime_put_autosuspend(&bp
->pdev
->dev
);
440 static void macb_init_buffers(struct macb
*bp
)
442 struct macb_queue
*queue
;
445 for (q
= 0, queue
= bp
->queues
; q
< bp
->num_queues
; ++q
, ++queue
) {
446 queue_writel(queue
, RBQP
, lower_32_bits(queue
->rx_ring_dma
));
447 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
448 if (bp
->hw_dma_cap
& HW_DMA_CAP_64B
)
449 queue_writel(queue
, RBQPH
,
450 upper_32_bits(queue
->rx_ring_dma
));
452 queue_writel(queue
, TBQP
, lower_32_bits(queue
->tx_ring_dma
));
453 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
454 if (bp
->hw_dma_cap
& HW_DMA_CAP_64B
)
455 queue_writel(queue
, TBQPH
,
456 upper_32_bits(queue
->tx_ring_dma
));
462 * macb_set_tx_clk() - Set a clock to a new frequency
463 * @bp: pointer to struct macb
464 * @speed: New frequency in Hz
466 static void macb_set_tx_clk(struct macb
*bp
, int speed
)
468 long ferr
, rate
, rate_rounded
;
470 if (!bp
->tx_clk
|| (bp
->caps
& MACB_CAPS_CLK_HW_CHG
))
487 rate_rounded
= clk_round_rate(bp
->tx_clk
, rate
);
488 if (rate_rounded
< 0)
491 /* RGMII allows 50 ppm frequency error. Test and warn if this limit
494 ferr
= abs(rate_rounded
- rate
);
495 ferr
= DIV_ROUND_UP(ferr
, rate
/ 100000);
498 "unable to generate target frequency: %ld Hz\n",
501 if (clk_set_rate(bp
->tx_clk
, rate_rounded
))
502 netdev_err(bp
->dev
, "adjusting tx_clk failed.\n");
505 static void macb_validate(struct phylink_config
*config
,
506 unsigned long *supported
,
507 struct phylink_link_state
*state
)
509 struct net_device
*ndev
= to_net_dev(config
->dev
);
510 __ETHTOOL_DECLARE_LINK_MODE_MASK(mask
) = { 0, };
511 struct macb
*bp
= netdev_priv(ndev
);
513 /* We only support MII, RMII, GMII, RGMII & SGMII. */
514 if (state
->interface
!= PHY_INTERFACE_MODE_NA
&&
515 state
->interface
!= PHY_INTERFACE_MODE_MII
&&
516 state
->interface
!= PHY_INTERFACE_MODE_RMII
&&
517 state
->interface
!= PHY_INTERFACE_MODE_GMII
&&
518 state
->interface
!= PHY_INTERFACE_MODE_SGMII
&&
519 state
->interface
!= PHY_INTERFACE_MODE_10GBASER
&&
520 !phy_interface_mode_is_rgmii(state
->interface
)) {
521 bitmap_zero(supported
, __ETHTOOL_LINK_MODE_MASK_NBITS
);
525 if (!macb_is_gem(bp
) &&
526 (state
->interface
== PHY_INTERFACE_MODE_GMII
||
527 phy_interface_mode_is_rgmii(state
->interface
))) {
528 bitmap_zero(supported
, __ETHTOOL_LINK_MODE_MASK_NBITS
);
532 if (state
->interface
== PHY_INTERFACE_MODE_10GBASER
&&
533 !(bp
->caps
& MACB_CAPS_HIGH_SPEED
&&
534 bp
->caps
& MACB_CAPS_PCS
)) {
535 bitmap_zero(supported
, __ETHTOOL_LINK_MODE_MASK_NBITS
);
539 phylink_set_port_modes(mask
);
540 phylink_set(mask
, Autoneg
);
541 phylink_set(mask
, Asym_Pause
);
543 if (bp
->caps
& MACB_CAPS_GIGABIT_MODE_AVAILABLE
&&
544 (state
->interface
== PHY_INTERFACE_MODE_NA
||
545 state
->interface
== PHY_INTERFACE_MODE_10GBASER
)) {
546 phylink_set(mask
, 10000baseCR_Full
);
547 phylink_set(mask
, 10000baseER_Full
);
548 phylink_set(mask
, 10000baseKR_Full
);
549 phylink_set(mask
, 10000baseLR_Full
);
550 phylink_set(mask
, 10000baseLRM_Full
);
551 phylink_set(mask
, 10000baseSR_Full
);
552 phylink_set(mask
, 10000baseT_Full
);
553 if (state
->interface
!= PHY_INTERFACE_MODE_NA
)
557 phylink_set(mask
, 10baseT_Half
);
558 phylink_set(mask
, 10baseT_Full
);
559 phylink_set(mask
, 100baseT_Half
);
560 phylink_set(mask
, 100baseT_Full
);
562 if (bp
->caps
& MACB_CAPS_GIGABIT_MODE_AVAILABLE
&&
563 (state
->interface
== PHY_INTERFACE_MODE_NA
||
564 state
->interface
== PHY_INTERFACE_MODE_GMII
||
565 state
->interface
== PHY_INTERFACE_MODE_SGMII
||
566 phy_interface_mode_is_rgmii(state
->interface
))) {
567 phylink_set(mask
, 1000baseT_Full
);
568 phylink_set(mask
, 1000baseX_Full
);
570 if (!(bp
->caps
& MACB_CAPS_NO_GIGABIT_HALF
))
571 phylink_set(mask
, 1000baseT_Half
);
574 bitmap_and(supported
, supported
, mask
, __ETHTOOL_LINK_MODE_MASK_NBITS
);
575 bitmap_and(state
->advertising
, state
->advertising
, mask
,
576 __ETHTOOL_LINK_MODE_MASK_NBITS
);
579 static void macb_usx_pcs_link_up(struct phylink_pcs
*pcs
, unsigned int mode
,
580 phy_interface_t interface
, int speed
,
583 struct macb
*bp
= container_of(pcs
, struct macb
, phylink_pcs
);
586 config
= gem_readl(bp
, USX_CONTROL
);
587 config
= GEM_BFINS(SERDES_RATE
, MACB_SERDES_RATE_10G
, config
);
588 config
= GEM_BFINS(USX_CTRL_SPEED
, HS_SPEED_10000M
, config
);
589 config
&= ~(GEM_BIT(TX_SCR_BYPASS
) | GEM_BIT(RX_SCR_BYPASS
));
590 config
|= GEM_BIT(TX_EN
);
591 gem_writel(bp
, USX_CONTROL
, config
);
594 static void macb_usx_pcs_get_state(struct phylink_pcs
*pcs
,
595 struct phylink_link_state
*state
)
597 struct macb
*bp
= container_of(pcs
, struct macb
, phylink_pcs
);
600 state
->speed
= SPEED_10000
;
602 state
->an_complete
= 1;
604 val
= gem_readl(bp
, USX_STATUS
);
605 state
->link
= !!(val
& GEM_BIT(USX_BLOCK_LOCK
));
606 val
= gem_readl(bp
, NCFGR
);
607 if (val
& GEM_BIT(PAE
))
608 state
->pause
= MLO_PAUSE_RX
;
611 static int macb_usx_pcs_config(struct phylink_pcs
*pcs
,
613 phy_interface_t interface
,
614 const unsigned long *advertising
,
615 bool permit_pause_to_mac
)
617 struct macb
*bp
= container_of(pcs
, struct macb
, phylink_pcs
);
619 gem_writel(bp
, USX_CONTROL
, gem_readl(bp
, USX_CONTROL
) |
625 static void macb_pcs_get_state(struct phylink_pcs
*pcs
,
626 struct phylink_link_state
*state
)
631 static void macb_pcs_an_restart(struct phylink_pcs
*pcs
)
636 static int macb_pcs_config(struct phylink_pcs
*pcs
,
638 phy_interface_t interface
,
639 const unsigned long *advertising
,
640 bool permit_pause_to_mac
)
645 static const struct phylink_pcs_ops macb_phylink_usx_pcs_ops
= {
646 .pcs_get_state
= macb_usx_pcs_get_state
,
647 .pcs_config
= macb_usx_pcs_config
,
648 .pcs_link_up
= macb_usx_pcs_link_up
,
651 static const struct phylink_pcs_ops macb_phylink_pcs_ops
= {
652 .pcs_get_state
= macb_pcs_get_state
,
653 .pcs_an_restart
= macb_pcs_an_restart
,
654 .pcs_config
= macb_pcs_config
,
657 static void macb_mac_config(struct phylink_config
*config
, unsigned int mode
,
658 const struct phylink_link_state
*state
)
660 struct net_device
*ndev
= to_net_dev(config
->dev
);
661 struct macb
*bp
= netdev_priv(ndev
);
666 spin_lock_irqsave(&bp
->lock
, flags
);
668 old_ctrl
= ctrl
= macb_or_gem_readl(bp
, NCFGR
);
669 old_ncr
= ncr
= macb_or_gem_readl(bp
, NCR
);
671 if (bp
->caps
& MACB_CAPS_MACB_IS_EMAC
) {
672 if (state
->interface
== PHY_INTERFACE_MODE_RMII
)
673 ctrl
|= MACB_BIT(RM9200_RMII
);
674 } else if (macb_is_gem(bp
)) {
675 ctrl
&= ~(GEM_BIT(SGMIIEN
) | GEM_BIT(PCSSEL
));
676 ncr
&= ~GEM_BIT(ENABLE_HS_MAC
);
678 if (state
->interface
== PHY_INTERFACE_MODE_SGMII
) {
679 ctrl
|= GEM_BIT(SGMIIEN
) | GEM_BIT(PCSSEL
);
680 } else if (state
->interface
== PHY_INTERFACE_MODE_10GBASER
) {
681 ctrl
|= GEM_BIT(PCSSEL
);
682 ncr
|= GEM_BIT(ENABLE_HS_MAC
);
686 /* Apply the new configuration, if any */
688 macb_or_gem_writel(bp
, NCFGR
, ctrl
);
691 macb_or_gem_writel(bp
, NCR
, ncr
);
693 spin_unlock_irqrestore(&bp
->lock
, flags
);
696 static void macb_mac_link_down(struct phylink_config
*config
, unsigned int mode
,
697 phy_interface_t interface
)
699 struct net_device
*ndev
= to_net_dev(config
->dev
);
700 struct macb
*bp
= netdev_priv(ndev
);
701 struct macb_queue
*queue
;
705 if (!(bp
->caps
& MACB_CAPS_MACB_IS_EMAC
))
706 for (q
= 0, queue
= bp
->queues
; q
< bp
->num_queues
; ++q
, ++queue
)
707 queue_writel(queue
, IDR
,
708 bp
->rx_intr_mask
| MACB_TX_INT_FLAGS
| MACB_BIT(HRESP
));
710 /* Disable Rx and Tx */
711 ctrl
= macb_readl(bp
, NCR
) & ~(MACB_BIT(RE
) | MACB_BIT(TE
));
712 macb_writel(bp
, NCR
, ctrl
);
714 netif_tx_stop_all_queues(ndev
);
717 static void macb_mac_link_up(struct phylink_config
*config
,
718 struct phy_device
*phy
,
719 unsigned int mode
, phy_interface_t interface
,
720 int speed
, int duplex
,
721 bool tx_pause
, bool rx_pause
)
723 struct net_device
*ndev
= to_net_dev(config
->dev
);
724 struct macb
*bp
= netdev_priv(ndev
);
725 struct macb_queue
*queue
;
730 spin_lock_irqsave(&bp
->lock
, flags
);
732 ctrl
= macb_or_gem_readl(bp
, NCFGR
);
734 ctrl
&= ~(MACB_BIT(SPD
) | MACB_BIT(FD
));
736 if (speed
== SPEED_100
)
737 ctrl
|= MACB_BIT(SPD
);
740 ctrl
|= MACB_BIT(FD
);
742 if (!(bp
->caps
& MACB_CAPS_MACB_IS_EMAC
)) {
743 ctrl
&= ~MACB_BIT(PAE
);
744 if (macb_is_gem(bp
)) {
745 ctrl
&= ~GEM_BIT(GBE
);
747 if (speed
== SPEED_1000
)
748 ctrl
|= GEM_BIT(GBE
);
752 ctrl
|= MACB_BIT(PAE
);
754 macb_set_tx_clk(bp
, speed
);
756 /* Initialize rings & buffers as clearing MACB_BIT(TE) in link down
757 * cleared the pipeline and control registers.
759 bp
->macbgem_ops
.mog_init_rings(bp
);
760 macb_init_buffers(bp
);
762 for (q
= 0, queue
= bp
->queues
; q
< bp
->num_queues
; ++q
, ++queue
)
763 queue_writel(queue
, IER
,
764 bp
->rx_intr_mask
| MACB_TX_INT_FLAGS
| MACB_BIT(HRESP
));
767 macb_or_gem_writel(bp
, NCFGR
, ctrl
);
769 if (bp
->phy_interface
== PHY_INTERFACE_MODE_10GBASER
)
770 gem_writel(bp
, HS_MAC_CONFIG
, GEM_BFINS(HS_MAC_SPEED
, HS_SPEED_10000M
,
771 gem_readl(bp
, HS_MAC_CONFIG
)));
773 spin_unlock_irqrestore(&bp
->lock
, flags
);
775 /* Enable Rx and Tx */
776 macb_writel(bp
, NCR
, macb_readl(bp
, NCR
) | MACB_BIT(RE
) | MACB_BIT(TE
));
778 netif_tx_wake_all_queues(ndev
);
781 static int macb_mac_prepare(struct phylink_config
*config
, unsigned int mode
,
782 phy_interface_t interface
)
784 struct net_device
*ndev
= to_net_dev(config
->dev
);
785 struct macb
*bp
= netdev_priv(ndev
);
787 if (interface
== PHY_INTERFACE_MODE_10GBASER
)
788 bp
->phylink_pcs
.ops
= &macb_phylink_usx_pcs_ops
;
789 else if (interface
== PHY_INTERFACE_MODE_SGMII
)
790 bp
->phylink_pcs
.ops
= &macb_phylink_pcs_ops
;
792 bp
->phylink_pcs
.ops
= NULL
;
794 if (bp
->phylink_pcs
.ops
)
795 phylink_set_pcs(bp
->phylink
, &bp
->phylink_pcs
);
800 static const struct phylink_mac_ops macb_phylink_ops
= {
801 .validate
= macb_validate
,
802 .mac_prepare
= macb_mac_prepare
,
803 .mac_config
= macb_mac_config
,
804 .mac_link_down
= macb_mac_link_down
,
805 .mac_link_up
= macb_mac_link_up
,
808 static bool macb_phy_handle_exists(struct device_node
*dn
)
810 dn
= of_parse_phandle(dn
, "phy-handle", 0);
815 static int macb_phylink_connect(struct macb
*bp
)
817 struct device_node
*dn
= bp
->pdev
->dev
.of_node
;
818 struct net_device
*dev
= bp
->dev
;
819 struct phy_device
*phydev
;
823 ret
= phylink_of_phy_connect(bp
->phylink
, dn
, 0);
825 if (!dn
|| (ret
&& !macb_phy_handle_exists(dn
))) {
826 phydev
= phy_find_first(bp
->mii_bus
);
828 netdev_err(dev
, "no PHY found\n");
832 /* attach the mac to the phy */
833 ret
= phylink_connect_phy(bp
->phylink
, phydev
);
837 netdev_err(dev
, "Could not attach PHY (%d)\n", ret
);
841 phylink_start(bp
->phylink
);
846 /* based on au1000_eth. c*/
847 static int macb_mii_probe(struct net_device
*dev
)
849 struct macb
*bp
= netdev_priv(dev
);
851 bp
->phylink_config
.dev
= &dev
->dev
;
852 bp
->phylink_config
.type
= PHYLINK_NETDEV
;
854 bp
->phylink
= phylink_create(&bp
->phylink_config
, bp
->pdev
->dev
.fwnode
,
855 bp
->phy_interface
, &macb_phylink_ops
);
856 if (IS_ERR(bp
->phylink
)) {
857 netdev_err(dev
, "Could not create a phylink instance (%ld)\n",
858 PTR_ERR(bp
->phylink
));
859 return PTR_ERR(bp
->phylink
);
865 static int macb_mdiobus_register(struct macb
*bp
)
867 struct device_node
*child
, *np
= bp
->pdev
->dev
.of_node
;
869 if (of_phy_is_fixed_link(np
))
870 return mdiobus_register(bp
->mii_bus
);
872 /* Only create the PHY from the device tree if at least one PHY is
873 * described. Otherwise scan the entire MDIO bus. We do this to support
874 * old device tree that did not follow the best practices and did not
875 * describe their network PHYs.
877 for_each_available_child_of_node(np
, child
)
878 if (of_mdiobus_child_is_phy(child
)) {
879 /* The loop increments the child refcount,
880 * decrement it before returning.
884 return of_mdiobus_register(bp
->mii_bus
, np
);
887 return mdiobus_register(bp
->mii_bus
);
890 static int macb_mii_init(struct macb
*bp
)
894 /* Enable management port */
895 macb_writel(bp
, NCR
, MACB_BIT(MPE
));
897 bp
->mii_bus
= mdiobus_alloc();
903 bp
->mii_bus
->name
= "MACB_mii_bus";
904 bp
->mii_bus
->read
= &macb_mdio_read
;
905 bp
->mii_bus
->write
= &macb_mdio_write
;
906 snprintf(bp
->mii_bus
->id
, MII_BUS_ID_SIZE
, "%s-%x",
907 bp
->pdev
->name
, bp
->pdev
->id
);
908 bp
->mii_bus
->priv
= bp
;
909 bp
->mii_bus
->parent
= &bp
->pdev
->dev
;
911 dev_set_drvdata(&bp
->dev
->dev
, bp
->mii_bus
);
913 err
= macb_mdiobus_register(bp
);
915 goto err_out_free_mdiobus
;
917 err
= macb_mii_probe(bp
->dev
);
919 goto err_out_unregister_bus
;
923 err_out_unregister_bus
:
924 mdiobus_unregister(bp
->mii_bus
);
925 err_out_free_mdiobus
:
926 mdiobus_free(bp
->mii_bus
);
931 static void macb_update_stats(struct macb
*bp
)
933 u32
*p
= &bp
->hw_stats
.macb
.rx_pause_frames
;
934 u32
*end
= &bp
->hw_stats
.macb
.tx_pause_frames
+ 1;
935 int offset
= MACB_PFR
;
937 WARN_ON((unsigned long)(end
- p
- 1) != (MACB_TPF
- MACB_PFR
) / 4);
939 for (; p
< end
; p
++, offset
+= 4)
940 *p
+= bp
->macb_reg_readl(bp
, offset
);
943 static int macb_halt_tx(struct macb
*bp
)
945 unsigned long halt_time
, timeout
;
948 macb_writel(bp
, NCR
, macb_readl(bp
, NCR
) | MACB_BIT(THALT
));
950 timeout
= jiffies
+ usecs_to_jiffies(MACB_HALT_TIMEOUT
);
953 status
= macb_readl(bp
, TSR
);
954 if (!(status
& MACB_BIT(TGO
)))
958 } while (time_before(halt_time
, timeout
));
963 static void macb_tx_unmap(struct macb
*bp
, struct macb_tx_skb
*tx_skb
)
965 if (tx_skb
->mapping
) {
966 if (tx_skb
->mapped_as_page
)
967 dma_unmap_page(&bp
->pdev
->dev
, tx_skb
->mapping
,
968 tx_skb
->size
, DMA_TO_DEVICE
);
970 dma_unmap_single(&bp
->pdev
->dev
, tx_skb
->mapping
,
971 tx_skb
->size
, DMA_TO_DEVICE
);
976 dev_kfree_skb_any(tx_skb
->skb
);
981 static void macb_set_addr(struct macb
*bp
, struct macb_dma_desc
*desc
, dma_addr_t addr
)
983 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
984 struct macb_dma_desc_64
*desc_64
;
986 if (bp
->hw_dma_cap
& HW_DMA_CAP_64B
) {
987 desc_64
= macb_64b_desc(bp
, desc
);
988 desc_64
->addrh
= upper_32_bits(addr
);
989 /* The low bits of RX address contain the RX_USED bit, clearing
990 * of which allows packet RX. Make sure the high bits are also
991 * visible to HW at that point.
996 desc
->addr
= lower_32_bits(addr
);
999 static dma_addr_t
macb_get_addr(struct macb
*bp
, struct macb_dma_desc
*desc
)
1001 dma_addr_t addr
= 0;
1002 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
1003 struct macb_dma_desc_64
*desc_64
;
1005 if (bp
->hw_dma_cap
& HW_DMA_CAP_64B
) {
1006 desc_64
= macb_64b_desc(bp
, desc
);
1007 addr
= ((u64
)(desc_64
->addrh
) << 32);
1010 addr
|= MACB_BF(RX_WADDR
, MACB_BFEXT(RX_WADDR
, desc
->addr
));
1014 static void macb_tx_error_task(struct work_struct
*work
)
1016 struct macb_queue
*queue
= container_of(work
, struct macb_queue
,
1018 struct macb
*bp
= queue
->bp
;
1019 struct macb_tx_skb
*tx_skb
;
1020 struct macb_dma_desc
*desc
;
1021 struct sk_buff
*skb
;
1023 unsigned long flags
;
1025 netdev_vdbg(bp
->dev
, "macb_tx_error_task: q = %u, t = %u, h = %u\n",
1026 (unsigned int)(queue
- bp
->queues
),
1027 queue
->tx_tail
, queue
->tx_head
);
1029 /* Prevent the queue IRQ handlers from running: each of them may call
1030 * macb_tx_interrupt(), which in turn may call netif_wake_subqueue().
1031 * As explained below, we have to halt the transmission before updating
1032 * TBQP registers so we call netif_tx_stop_all_queues() to notify the
1033 * network engine about the macb/gem being halted.
1035 spin_lock_irqsave(&bp
->lock
, flags
);
1037 /* Make sure nobody is trying to queue up new packets */
1038 netif_tx_stop_all_queues(bp
->dev
);
1040 /* Stop transmission now
1041 * (in case we have just queued new packets)
1042 * macb/gem must be halted to write TBQP register
1044 if (macb_halt_tx(bp
))
1045 /* Just complain for now, reinitializing TX path can be good */
1046 netdev_err(bp
->dev
, "BUG: halt tx timed out\n");
1048 /* Treat frames in TX queue including the ones that caused the error.
1049 * Free transmit buffers in upper layer.
1051 for (tail
= queue
->tx_tail
; tail
!= queue
->tx_head
; tail
++) {
1054 desc
= macb_tx_desc(queue
, tail
);
1056 tx_skb
= macb_tx_skb(queue
, tail
);
1059 if (ctrl
& MACB_BIT(TX_USED
)) {
1060 /* skb is set for the last buffer of the frame */
1062 macb_tx_unmap(bp
, tx_skb
);
1064 tx_skb
= macb_tx_skb(queue
, tail
);
1068 /* ctrl still refers to the first buffer descriptor
1069 * since it's the only one written back by the hardware
1071 if (!(ctrl
& MACB_BIT(TX_BUF_EXHAUSTED
))) {
1072 netdev_vdbg(bp
->dev
, "txerr skb %u (data %p) TX complete\n",
1073 macb_tx_ring_wrap(bp
, tail
),
1075 bp
->dev
->stats
.tx_packets
++;
1076 queue
->stats
.tx_packets
++;
1077 bp
->dev
->stats
.tx_bytes
+= skb
->len
;
1078 queue
->stats
.tx_bytes
+= skb
->len
;
1081 /* "Buffers exhausted mid-frame" errors may only happen
1082 * if the driver is buggy, so complain loudly about
1083 * those. Statistics are updated by hardware.
1085 if (ctrl
& MACB_BIT(TX_BUF_EXHAUSTED
))
1087 "BUG: TX buffers exhausted mid-frame\n");
1089 desc
->ctrl
= ctrl
| MACB_BIT(TX_USED
);
1092 macb_tx_unmap(bp
, tx_skb
);
1095 /* Set end of TX queue */
1096 desc
= macb_tx_desc(queue
, 0);
1097 macb_set_addr(bp
, desc
, 0);
1098 desc
->ctrl
= MACB_BIT(TX_USED
);
1100 /* Make descriptor updates visible to hardware */
1103 /* Reinitialize the TX desc queue */
1104 queue_writel(queue
, TBQP
, lower_32_bits(queue
->tx_ring_dma
));
1105 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
1106 if (bp
->hw_dma_cap
& HW_DMA_CAP_64B
)
1107 queue_writel(queue
, TBQPH
, upper_32_bits(queue
->tx_ring_dma
));
1109 /* Make TX ring reflect state of hardware */
1113 /* Housework before enabling TX IRQ */
1114 macb_writel(bp
, TSR
, macb_readl(bp
, TSR
));
1115 queue_writel(queue
, IER
, MACB_TX_INT_FLAGS
);
1117 /* Now we are ready to start transmission again */
1118 netif_tx_start_all_queues(bp
->dev
);
1119 macb_writel(bp
, NCR
, macb_readl(bp
, NCR
) | MACB_BIT(TSTART
));
1121 spin_unlock_irqrestore(&bp
->lock
, flags
);
1124 static void macb_tx_interrupt(struct macb_queue
*queue
)
1129 struct macb
*bp
= queue
->bp
;
1130 u16 queue_index
= queue
- bp
->queues
;
1132 status
= macb_readl(bp
, TSR
);
1133 macb_writel(bp
, TSR
, status
);
1135 if (bp
->caps
& MACB_CAPS_ISR_CLEAR_ON_WRITE
)
1136 queue_writel(queue
, ISR
, MACB_BIT(TCOMP
));
1138 netdev_vdbg(bp
->dev
, "macb_tx_interrupt status = 0x%03lx\n",
1139 (unsigned long)status
);
1141 head
= queue
->tx_head
;
1142 for (tail
= queue
->tx_tail
; tail
!= head
; tail
++) {
1143 struct macb_tx_skb
*tx_skb
;
1144 struct sk_buff
*skb
;
1145 struct macb_dma_desc
*desc
;
1148 desc
= macb_tx_desc(queue
, tail
);
1150 /* Make hw descriptor updates visible to CPU */
1155 /* TX_USED bit is only set by hardware on the very first buffer
1156 * descriptor of the transmitted frame.
1158 if (!(ctrl
& MACB_BIT(TX_USED
)))
1161 /* Process all buffers of the current transmitted frame */
1163 tx_skb
= macb_tx_skb(queue
, tail
);
1166 /* First, update TX stats if needed */
1168 if (unlikely(skb_shinfo(skb
)->tx_flags
&
1170 gem_ptp_do_txstamp(queue
, skb
, desc
) == 0) {
1171 /* skb now belongs to timestamp buffer
1172 * and will be removed later
1176 netdev_vdbg(bp
->dev
, "skb %u (data %p) TX complete\n",
1177 macb_tx_ring_wrap(bp
, tail
),
1179 bp
->dev
->stats
.tx_packets
++;
1180 queue
->stats
.tx_packets
++;
1181 bp
->dev
->stats
.tx_bytes
+= skb
->len
;
1182 queue
->stats
.tx_bytes
+= skb
->len
;
1185 /* Now we can safely release resources */
1186 macb_tx_unmap(bp
, tx_skb
);
1188 /* skb is set only for the last buffer of the frame.
1189 * WARNING: at this point skb has been freed by
1197 queue
->tx_tail
= tail
;
1198 if (__netif_subqueue_stopped(bp
->dev
, queue_index
) &&
1199 CIRC_CNT(queue
->tx_head
, queue
->tx_tail
,
1200 bp
->tx_ring_size
) <= MACB_TX_WAKEUP_THRESH(bp
))
1201 netif_wake_subqueue(bp
->dev
, queue_index
);
1204 static void gem_rx_refill(struct macb_queue
*queue
)
1207 struct sk_buff
*skb
;
1209 struct macb
*bp
= queue
->bp
;
1210 struct macb_dma_desc
*desc
;
1212 while (CIRC_SPACE(queue
->rx_prepared_head
, queue
->rx_tail
,
1213 bp
->rx_ring_size
) > 0) {
1214 entry
= macb_rx_ring_wrap(bp
, queue
->rx_prepared_head
);
1216 /* Make hw descriptor updates visible to CPU */
1219 queue
->rx_prepared_head
++;
1220 desc
= macb_rx_desc(queue
, entry
);
1222 if (!queue
->rx_skbuff
[entry
]) {
1223 /* allocate sk_buff for this free entry in ring */
1224 skb
= netdev_alloc_skb(bp
->dev
, bp
->rx_buffer_size
);
1225 if (unlikely(!skb
)) {
1227 "Unable to allocate sk_buff\n");
1231 /* now fill corresponding descriptor entry */
1232 paddr
= dma_map_single(&bp
->pdev
->dev
, skb
->data
,
1235 if (dma_mapping_error(&bp
->pdev
->dev
, paddr
)) {
1240 queue
->rx_skbuff
[entry
] = skb
;
1242 if (entry
== bp
->rx_ring_size
- 1)
1243 paddr
|= MACB_BIT(RX_WRAP
);
1245 /* Setting addr clears RX_USED and allows reception,
1246 * make sure ctrl is cleared first to avoid a race.
1249 macb_set_addr(bp
, desc
, paddr
);
1251 /* properly align Ethernet header */
1252 skb_reserve(skb
, NET_IP_ALIGN
);
1256 desc
->addr
&= ~MACB_BIT(RX_USED
);
1260 /* Make descriptor updates visible to hardware */
1263 netdev_vdbg(bp
->dev
, "rx ring: queue: %p, prepared head %d, tail %d\n",
1264 queue
, queue
->rx_prepared_head
, queue
->rx_tail
);
1267 /* Mark DMA descriptors from begin up to and not including end as unused */
1268 static void discard_partial_frame(struct macb_queue
*queue
, unsigned int begin
,
1273 for (frag
= begin
; frag
!= end
; frag
++) {
1274 struct macb_dma_desc
*desc
= macb_rx_desc(queue
, frag
);
1276 desc
->addr
&= ~MACB_BIT(RX_USED
);
1279 /* Make descriptor updates visible to hardware */
1282 /* When this happens, the hardware stats registers for
1283 * whatever caused this is updated, so we don't have to record
1288 static int gem_rx(struct macb_queue
*queue
, struct napi_struct
*napi
,
1291 struct macb
*bp
= queue
->bp
;
1294 struct sk_buff
*skb
;
1295 struct macb_dma_desc
*desc
;
1298 while (count
< budget
) {
1303 entry
= macb_rx_ring_wrap(bp
, queue
->rx_tail
);
1304 desc
= macb_rx_desc(queue
, entry
);
1306 /* Make hw descriptor updates visible to CPU */
1309 rxused
= (desc
->addr
& MACB_BIT(RX_USED
)) ? true : false;
1310 addr
= macb_get_addr(bp
, desc
);
1315 /* Ensure ctrl is at least as up-to-date as rxused */
1323 if (!(ctrl
& MACB_BIT(RX_SOF
) && ctrl
& MACB_BIT(RX_EOF
))) {
1325 "not whole frame pointed by descriptor\n");
1326 bp
->dev
->stats
.rx_dropped
++;
1327 queue
->stats
.rx_dropped
++;
1330 skb
= queue
->rx_skbuff
[entry
];
1331 if (unlikely(!skb
)) {
1333 "inconsistent Rx descriptor chain\n");
1334 bp
->dev
->stats
.rx_dropped
++;
1335 queue
->stats
.rx_dropped
++;
1338 /* now everything is ready for receiving packet */
1339 queue
->rx_skbuff
[entry
] = NULL
;
1340 len
= ctrl
& bp
->rx_frm_len_mask
;
1342 netdev_vdbg(bp
->dev
, "gem_rx %u (len %u)\n", entry
, len
);
1345 dma_unmap_single(&bp
->pdev
->dev
, addr
,
1346 bp
->rx_buffer_size
, DMA_FROM_DEVICE
);
1348 skb
->protocol
= eth_type_trans(skb
, bp
->dev
);
1349 skb_checksum_none_assert(skb
);
1350 if (bp
->dev
->features
& NETIF_F_RXCSUM
&&
1351 !(bp
->dev
->flags
& IFF_PROMISC
) &&
1352 GEM_BFEXT(RX_CSUM
, ctrl
) & GEM_RX_CSUM_CHECKED_MASK
)
1353 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
1355 bp
->dev
->stats
.rx_packets
++;
1356 queue
->stats
.rx_packets
++;
1357 bp
->dev
->stats
.rx_bytes
+= skb
->len
;
1358 queue
->stats
.rx_bytes
+= skb
->len
;
1360 gem_ptp_do_rxstamp(bp
, skb
, desc
);
1362 #if defined(DEBUG) && defined(VERBOSE_DEBUG)
1363 netdev_vdbg(bp
->dev
, "received skb of length %u, csum: %08x\n",
1364 skb
->len
, skb
->csum
);
1365 print_hex_dump(KERN_DEBUG
, " mac: ", DUMP_PREFIX_ADDRESS
, 16, 1,
1366 skb_mac_header(skb
), 16, true);
1367 print_hex_dump(KERN_DEBUG
, "data: ", DUMP_PREFIX_ADDRESS
, 16, 1,
1368 skb
->data
, 32, true);
1371 napi_gro_receive(napi
, skb
);
1374 gem_rx_refill(queue
);
1379 static int macb_rx_frame(struct macb_queue
*queue
, struct napi_struct
*napi
,
1380 unsigned int first_frag
, unsigned int last_frag
)
1384 unsigned int offset
;
1385 struct sk_buff
*skb
;
1386 struct macb_dma_desc
*desc
;
1387 struct macb
*bp
= queue
->bp
;
1389 desc
= macb_rx_desc(queue
, last_frag
);
1390 len
= desc
->ctrl
& bp
->rx_frm_len_mask
;
1392 netdev_vdbg(bp
->dev
, "macb_rx_frame frags %u - %u (len %u)\n",
1393 macb_rx_ring_wrap(bp
, first_frag
),
1394 macb_rx_ring_wrap(bp
, last_frag
), len
);
1396 /* The ethernet header starts NET_IP_ALIGN bytes into the
1397 * first buffer. Since the header is 14 bytes, this makes the
1398 * payload word-aligned.
1400 * Instead of calling skb_reserve(NET_IP_ALIGN), we just copy
1401 * the two padding bytes into the skb so that we avoid hitting
1402 * the slowpath in memcpy(), and pull them off afterwards.
1404 skb
= netdev_alloc_skb(bp
->dev
, len
+ NET_IP_ALIGN
);
1406 bp
->dev
->stats
.rx_dropped
++;
1407 for (frag
= first_frag
; ; frag
++) {
1408 desc
= macb_rx_desc(queue
, frag
);
1409 desc
->addr
&= ~MACB_BIT(RX_USED
);
1410 if (frag
== last_frag
)
1414 /* Make descriptor updates visible to hardware */
1421 len
+= NET_IP_ALIGN
;
1422 skb_checksum_none_assert(skb
);
1425 for (frag
= first_frag
; ; frag
++) {
1426 unsigned int frag_len
= bp
->rx_buffer_size
;
1428 if (offset
+ frag_len
> len
) {
1429 if (unlikely(frag
!= last_frag
)) {
1430 dev_kfree_skb_any(skb
);
1433 frag_len
= len
- offset
;
1435 skb_copy_to_linear_data_offset(skb
, offset
,
1436 macb_rx_buffer(queue
, frag
),
1438 offset
+= bp
->rx_buffer_size
;
1439 desc
= macb_rx_desc(queue
, frag
);
1440 desc
->addr
&= ~MACB_BIT(RX_USED
);
1442 if (frag
== last_frag
)
1446 /* Make descriptor updates visible to hardware */
1449 __skb_pull(skb
, NET_IP_ALIGN
);
1450 skb
->protocol
= eth_type_trans(skb
, bp
->dev
);
1452 bp
->dev
->stats
.rx_packets
++;
1453 bp
->dev
->stats
.rx_bytes
+= skb
->len
;
1454 netdev_vdbg(bp
->dev
, "received skb of length %u, csum: %08x\n",
1455 skb
->len
, skb
->csum
);
1456 napi_gro_receive(napi
, skb
);
1461 static inline void macb_init_rx_ring(struct macb_queue
*queue
)
1463 struct macb
*bp
= queue
->bp
;
1465 struct macb_dma_desc
*desc
= NULL
;
1468 addr
= queue
->rx_buffers_dma
;
1469 for (i
= 0; i
< bp
->rx_ring_size
; i
++) {
1470 desc
= macb_rx_desc(queue
, i
);
1471 macb_set_addr(bp
, desc
, addr
);
1473 addr
+= bp
->rx_buffer_size
;
1475 desc
->addr
|= MACB_BIT(RX_WRAP
);
1479 static int macb_rx(struct macb_queue
*queue
, struct napi_struct
*napi
,
1482 struct macb
*bp
= queue
->bp
;
1483 bool reset_rx_queue
= false;
1486 int first_frag
= -1;
1488 for (tail
= queue
->rx_tail
; budget
> 0; tail
++) {
1489 struct macb_dma_desc
*desc
= macb_rx_desc(queue
, tail
);
1492 /* Make hw descriptor updates visible to CPU */
1495 if (!(desc
->addr
& MACB_BIT(RX_USED
)))
1498 /* Ensure ctrl is at least as up-to-date as addr */
1503 if (ctrl
& MACB_BIT(RX_SOF
)) {
1504 if (first_frag
!= -1)
1505 discard_partial_frame(queue
, first_frag
, tail
);
1509 if (ctrl
& MACB_BIT(RX_EOF
)) {
1512 if (unlikely(first_frag
== -1)) {
1513 reset_rx_queue
= true;
1517 dropped
= macb_rx_frame(queue
, napi
, first_frag
, tail
);
1519 if (unlikely(dropped
< 0)) {
1520 reset_rx_queue
= true;
1530 if (unlikely(reset_rx_queue
)) {
1531 unsigned long flags
;
1534 netdev_err(bp
->dev
, "RX queue corruption: reset it\n");
1536 spin_lock_irqsave(&bp
->lock
, flags
);
1538 ctrl
= macb_readl(bp
, NCR
);
1539 macb_writel(bp
, NCR
, ctrl
& ~MACB_BIT(RE
));
1541 macb_init_rx_ring(queue
);
1542 queue_writel(queue
, RBQP
, queue
->rx_ring_dma
);
1544 macb_writel(bp
, NCR
, ctrl
| MACB_BIT(RE
));
1546 spin_unlock_irqrestore(&bp
->lock
, flags
);
1550 if (first_frag
!= -1)
1551 queue
->rx_tail
= first_frag
;
1553 queue
->rx_tail
= tail
;
1558 static int macb_poll(struct napi_struct
*napi
, int budget
)
1560 struct macb_queue
*queue
= container_of(napi
, struct macb_queue
, napi
);
1561 struct macb
*bp
= queue
->bp
;
1565 status
= macb_readl(bp
, RSR
);
1566 macb_writel(bp
, RSR
, status
);
1568 netdev_vdbg(bp
->dev
, "poll: status = %08lx, budget = %d\n",
1569 (unsigned long)status
, budget
);
1571 work_done
= bp
->macbgem_ops
.mog_rx(queue
, napi
, budget
);
1572 if (work_done
< budget
) {
1573 napi_complete_done(napi
, work_done
);
1575 /* Packets received while interrupts were disabled */
1576 status
= macb_readl(bp
, RSR
);
1578 if (bp
->caps
& MACB_CAPS_ISR_CLEAR_ON_WRITE
)
1579 queue_writel(queue
, ISR
, MACB_BIT(RCOMP
));
1580 napi_reschedule(napi
);
1582 queue_writel(queue
, IER
, bp
->rx_intr_mask
);
1586 /* TODO: Handle errors */
1591 static void macb_hresp_error_task(struct tasklet_struct
*t
)
1593 struct macb
*bp
= from_tasklet(bp
, t
, hresp_err_tasklet
);
1594 struct net_device
*dev
= bp
->dev
;
1595 struct macb_queue
*queue
;
1599 for (q
= 0, queue
= bp
->queues
; q
< bp
->num_queues
; ++q
, ++queue
) {
1600 queue_writel(queue
, IDR
, bp
->rx_intr_mask
|
1604 ctrl
= macb_readl(bp
, NCR
);
1605 ctrl
&= ~(MACB_BIT(RE
) | MACB_BIT(TE
));
1606 macb_writel(bp
, NCR
, ctrl
);
1608 netif_tx_stop_all_queues(dev
);
1609 netif_carrier_off(dev
);
1611 bp
->macbgem_ops
.mog_init_rings(bp
);
1613 /* Initialize TX and RX buffers */
1614 macb_init_buffers(bp
);
1616 /* Enable interrupts */
1617 for (q
= 0, queue
= bp
->queues
; q
< bp
->num_queues
; ++q
, ++queue
)
1618 queue_writel(queue
, IER
,
1623 ctrl
|= MACB_BIT(RE
) | MACB_BIT(TE
);
1624 macb_writel(bp
, NCR
, ctrl
);
1626 netif_carrier_on(dev
);
1627 netif_tx_start_all_queues(dev
);
1630 static void macb_tx_restart(struct macb_queue
*queue
)
1632 unsigned int head
= queue
->tx_head
;
1633 unsigned int tail
= queue
->tx_tail
;
1634 struct macb
*bp
= queue
->bp
;
1636 if (bp
->caps
& MACB_CAPS_ISR_CLEAR_ON_WRITE
)
1637 queue_writel(queue
, ISR
, MACB_BIT(TXUBR
));
1642 macb_writel(bp
, NCR
, macb_readl(bp
, NCR
) | MACB_BIT(TSTART
));
1645 static irqreturn_t
macb_wol_interrupt(int irq
, void *dev_id
)
1647 struct macb_queue
*queue
= dev_id
;
1648 struct macb
*bp
= queue
->bp
;
1651 status
= queue_readl(queue
, ISR
);
1653 if (unlikely(!status
))
1656 spin_lock(&bp
->lock
);
1658 if (status
& MACB_BIT(WOL
)) {
1659 queue_writel(queue
, IDR
, MACB_BIT(WOL
));
1660 macb_writel(bp
, WOL
, 0);
1661 netdev_vdbg(bp
->dev
, "MACB WoL: queue = %u, isr = 0x%08lx\n",
1662 (unsigned int)(queue
- bp
->queues
),
1663 (unsigned long)status
);
1664 if (bp
->caps
& MACB_CAPS_ISR_CLEAR_ON_WRITE
)
1665 queue_writel(queue
, ISR
, MACB_BIT(WOL
));
1666 pm_wakeup_event(&bp
->pdev
->dev
, 0);
1669 spin_unlock(&bp
->lock
);
1674 static irqreturn_t
gem_wol_interrupt(int irq
, void *dev_id
)
1676 struct macb_queue
*queue
= dev_id
;
1677 struct macb
*bp
= queue
->bp
;
1680 status
= queue_readl(queue
, ISR
);
1682 if (unlikely(!status
))
1685 spin_lock(&bp
->lock
);
1687 if (status
& GEM_BIT(WOL
)) {
1688 queue_writel(queue
, IDR
, GEM_BIT(WOL
));
1689 gem_writel(bp
, WOL
, 0);
1690 netdev_vdbg(bp
->dev
, "GEM WoL: queue = %u, isr = 0x%08lx\n",
1691 (unsigned int)(queue
- bp
->queues
),
1692 (unsigned long)status
);
1693 if (bp
->caps
& MACB_CAPS_ISR_CLEAR_ON_WRITE
)
1694 queue_writel(queue
, ISR
, GEM_BIT(WOL
));
1695 pm_wakeup_event(&bp
->pdev
->dev
, 0);
1698 spin_unlock(&bp
->lock
);
1703 static irqreturn_t
macb_interrupt(int irq
, void *dev_id
)
1705 struct macb_queue
*queue
= dev_id
;
1706 struct macb
*bp
= queue
->bp
;
1707 struct net_device
*dev
= bp
->dev
;
1710 status
= queue_readl(queue
, ISR
);
1712 if (unlikely(!status
))
1715 spin_lock(&bp
->lock
);
1718 /* close possible race with dev_close */
1719 if (unlikely(!netif_running(dev
))) {
1720 queue_writel(queue
, IDR
, -1);
1721 if (bp
->caps
& MACB_CAPS_ISR_CLEAR_ON_WRITE
)
1722 queue_writel(queue
, ISR
, -1);
1726 netdev_vdbg(bp
->dev
, "queue = %u, isr = 0x%08lx\n",
1727 (unsigned int)(queue
- bp
->queues
),
1728 (unsigned long)status
);
1730 if (status
& bp
->rx_intr_mask
) {
1731 /* There's no point taking any more interrupts
1732 * until we have processed the buffers. The
1733 * scheduling call may fail if the poll routine
1734 * is already scheduled, so disable interrupts
1737 queue_writel(queue
, IDR
, bp
->rx_intr_mask
);
1738 if (bp
->caps
& MACB_CAPS_ISR_CLEAR_ON_WRITE
)
1739 queue_writel(queue
, ISR
, MACB_BIT(RCOMP
));
1741 if (napi_schedule_prep(&queue
->napi
)) {
1742 netdev_vdbg(bp
->dev
, "scheduling RX softirq\n");
1743 __napi_schedule(&queue
->napi
);
1747 if (unlikely(status
& (MACB_TX_ERR_FLAGS
))) {
1748 queue_writel(queue
, IDR
, MACB_TX_INT_FLAGS
);
1749 schedule_work(&queue
->tx_error_task
);
1751 if (bp
->caps
& MACB_CAPS_ISR_CLEAR_ON_WRITE
)
1752 queue_writel(queue
, ISR
, MACB_TX_ERR_FLAGS
);
1757 if (status
& MACB_BIT(TCOMP
))
1758 macb_tx_interrupt(queue
);
1760 if (status
& MACB_BIT(TXUBR
))
1761 macb_tx_restart(queue
);
1763 /* Link change detection isn't possible with RMII, so we'll
1764 * add that if/when we get our hands on a full-blown MII PHY.
1767 /* There is a hardware issue under heavy load where DMA can
1768 * stop, this causes endless "used buffer descriptor read"
1769 * interrupts but it can be cleared by re-enabling RX. See
1770 * the at91rm9200 manual, section 41.3.1 or the Zynq manual
1771 * section 16.7.4 for details. RXUBR is only enabled for
1772 * these two versions.
1774 if (status
& MACB_BIT(RXUBR
)) {
1775 ctrl
= macb_readl(bp
, NCR
);
1776 macb_writel(bp
, NCR
, ctrl
& ~MACB_BIT(RE
));
1778 macb_writel(bp
, NCR
, ctrl
| MACB_BIT(RE
));
1780 if (bp
->caps
& MACB_CAPS_ISR_CLEAR_ON_WRITE
)
1781 queue_writel(queue
, ISR
, MACB_BIT(RXUBR
));
1784 if (status
& MACB_BIT(ISR_ROVR
)) {
1785 /* We missed at least one packet */
1786 if (macb_is_gem(bp
))
1787 bp
->hw_stats
.gem
.rx_overruns
++;
1789 bp
->hw_stats
.macb
.rx_overruns
++;
1791 if (bp
->caps
& MACB_CAPS_ISR_CLEAR_ON_WRITE
)
1792 queue_writel(queue
, ISR
, MACB_BIT(ISR_ROVR
));
1795 if (status
& MACB_BIT(HRESP
)) {
1796 tasklet_schedule(&bp
->hresp_err_tasklet
);
1797 netdev_err(dev
, "DMA bus error: HRESP not OK\n");
1799 if (bp
->caps
& MACB_CAPS_ISR_CLEAR_ON_WRITE
)
1800 queue_writel(queue
, ISR
, MACB_BIT(HRESP
));
1802 status
= queue_readl(queue
, ISR
);
1805 spin_unlock(&bp
->lock
);
1810 #ifdef CONFIG_NET_POLL_CONTROLLER
1811 /* Polling receive - used by netconsole and other diagnostic tools
1812 * to allow network i/o with interrupts disabled.
1814 static void macb_poll_controller(struct net_device
*dev
)
1816 struct macb
*bp
= netdev_priv(dev
);
1817 struct macb_queue
*queue
;
1818 unsigned long flags
;
1821 local_irq_save(flags
);
1822 for (q
= 0, queue
= bp
->queues
; q
< bp
->num_queues
; ++q
, ++queue
)
1823 macb_interrupt(dev
->irq
, queue
);
1824 local_irq_restore(flags
);
1828 static unsigned int macb_tx_map(struct macb
*bp
,
1829 struct macb_queue
*queue
,
1830 struct sk_buff
*skb
,
1831 unsigned int hdrlen
)
1834 unsigned int len
, entry
, i
, tx_head
= queue
->tx_head
;
1835 struct macb_tx_skb
*tx_skb
= NULL
;
1836 struct macb_dma_desc
*desc
;
1837 unsigned int offset
, size
, count
= 0;
1838 unsigned int f
, nr_frags
= skb_shinfo(skb
)->nr_frags
;
1839 unsigned int eof
= 1, mss_mfs
= 0;
1840 u32 ctrl
, lso_ctrl
= 0, seq_ctrl
= 0;
1843 if (skb_shinfo(skb
)->gso_size
!= 0) {
1844 if (ip_hdr(skb
)->protocol
== IPPROTO_UDP
)
1846 lso_ctrl
= MACB_LSO_UFO_ENABLE
;
1849 lso_ctrl
= MACB_LSO_TSO_ENABLE
;
1852 /* First, map non-paged data */
1853 len
= skb_headlen(skb
);
1855 /* first buffer length */
1860 entry
= macb_tx_ring_wrap(bp
, tx_head
);
1861 tx_skb
= &queue
->tx_skb
[entry
];
1863 mapping
= dma_map_single(&bp
->pdev
->dev
,
1865 size
, DMA_TO_DEVICE
);
1866 if (dma_mapping_error(&bp
->pdev
->dev
, mapping
))
1869 /* Save info to properly release resources */
1871 tx_skb
->mapping
= mapping
;
1872 tx_skb
->size
= size
;
1873 tx_skb
->mapped_as_page
= false;
1880 size
= min(len
, bp
->max_tx_length
);
1883 /* Then, map paged data from fragments */
1884 for (f
= 0; f
< nr_frags
; f
++) {
1885 const skb_frag_t
*frag
= &skb_shinfo(skb
)->frags
[f
];
1887 len
= skb_frag_size(frag
);
1890 size
= min(len
, bp
->max_tx_length
);
1891 entry
= macb_tx_ring_wrap(bp
, tx_head
);
1892 tx_skb
= &queue
->tx_skb
[entry
];
1894 mapping
= skb_frag_dma_map(&bp
->pdev
->dev
, frag
,
1895 offset
, size
, DMA_TO_DEVICE
);
1896 if (dma_mapping_error(&bp
->pdev
->dev
, mapping
))
1899 /* Save info to properly release resources */
1901 tx_skb
->mapping
= mapping
;
1902 tx_skb
->size
= size
;
1903 tx_skb
->mapped_as_page
= true;
1912 /* Should never happen */
1913 if (unlikely(!tx_skb
)) {
1914 netdev_err(bp
->dev
, "BUG! empty skb!\n");
1918 /* This is the last buffer of the frame: save socket buffer */
1921 /* Update TX ring: update buffer descriptors in reverse order
1922 * to avoid race condition
1925 /* Set 'TX_USED' bit in buffer descriptor at tx_head position
1926 * to set the end of TX queue
1929 entry
= macb_tx_ring_wrap(bp
, i
);
1930 ctrl
= MACB_BIT(TX_USED
);
1931 desc
= macb_tx_desc(queue
, entry
);
1935 if (lso_ctrl
== MACB_LSO_UFO_ENABLE
)
1936 /* include header and FCS in value given to h/w */
1937 mss_mfs
= skb_shinfo(skb
)->gso_size
+
1938 skb_transport_offset(skb
) +
1941 mss_mfs
= skb_shinfo(skb
)->gso_size
;
1942 /* TCP Sequence Number Source Select
1943 * can be set only for TSO
1951 entry
= macb_tx_ring_wrap(bp
, i
);
1952 tx_skb
= &queue
->tx_skb
[entry
];
1953 desc
= macb_tx_desc(queue
, entry
);
1955 ctrl
= (u32
)tx_skb
->size
;
1957 ctrl
|= MACB_BIT(TX_LAST
);
1960 if (unlikely(entry
== (bp
->tx_ring_size
- 1)))
1961 ctrl
|= MACB_BIT(TX_WRAP
);
1963 /* First descriptor is header descriptor */
1964 if (i
== queue
->tx_head
) {
1965 ctrl
|= MACB_BF(TX_LSO
, lso_ctrl
);
1966 ctrl
|= MACB_BF(TX_TCP_SEQ_SRC
, seq_ctrl
);
1967 if ((bp
->dev
->features
& NETIF_F_HW_CSUM
) &&
1968 skb
->ip_summed
!= CHECKSUM_PARTIAL
&& !lso_ctrl
)
1969 ctrl
|= MACB_BIT(TX_NOCRC
);
1971 /* Only set MSS/MFS on payload descriptors
1972 * (second or later descriptor)
1974 ctrl
|= MACB_BF(MSS_MFS
, mss_mfs
);
1976 /* Set TX buffer descriptor */
1977 macb_set_addr(bp
, desc
, tx_skb
->mapping
);
1978 /* desc->addr must be visible to hardware before clearing
1979 * 'TX_USED' bit in desc->ctrl.
1983 } while (i
!= queue
->tx_head
);
1985 queue
->tx_head
= tx_head
;
1990 netdev_err(bp
->dev
, "TX DMA map failed\n");
1992 for (i
= queue
->tx_head
; i
!= tx_head
; i
++) {
1993 tx_skb
= macb_tx_skb(queue
, i
);
1995 macb_tx_unmap(bp
, tx_skb
);
2001 static netdev_features_t
macb_features_check(struct sk_buff
*skb
,
2002 struct net_device
*dev
,
2003 netdev_features_t features
)
2005 unsigned int nr_frags
, f
;
2006 unsigned int hdrlen
;
2008 /* Validate LSO compatibility */
2010 /* there is only one buffer or protocol is not UDP */
2011 if (!skb_is_nonlinear(skb
) || (ip_hdr(skb
)->protocol
!= IPPROTO_UDP
))
2014 /* length of header */
2015 hdrlen
= skb_transport_offset(skb
);
2018 * When software supplies two or more payload buffers all payload buffers
2019 * apart from the last must be a multiple of 8 bytes in size.
2021 if (!IS_ALIGNED(skb_headlen(skb
) - hdrlen
, MACB_TX_LEN_ALIGN
))
2022 return features
& ~MACB_NETIF_LSO
;
2024 nr_frags
= skb_shinfo(skb
)->nr_frags
;
2025 /* No need to check last fragment */
2027 for (f
= 0; f
< nr_frags
; f
++) {
2028 const skb_frag_t
*frag
= &skb_shinfo(skb
)->frags
[f
];
2030 if (!IS_ALIGNED(skb_frag_size(frag
), MACB_TX_LEN_ALIGN
))
2031 return features
& ~MACB_NETIF_LSO
;
2036 static inline int macb_clear_csum(struct sk_buff
*skb
)
2038 /* no change for packets without checksum offloading */
2039 if (skb
->ip_summed
!= CHECKSUM_PARTIAL
)
2042 /* make sure we can modify the header */
2043 if (unlikely(skb_cow_head(skb
, 0)))
2046 /* initialize checksum field
2047 * This is required - at least for Zynq, which otherwise calculates
2048 * wrong UDP header checksums for UDP packets with UDP data len <=2
2050 *(__sum16
*)(skb_checksum_start(skb
) + skb
->csum_offset
) = 0;
2054 static int macb_pad_and_fcs(struct sk_buff
**skb
, struct net_device
*ndev
)
2056 bool cloned
= skb_cloned(*skb
) || skb_header_cloned(*skb
) ||
2057 skb_is_nonlinear(*skb
);
2058 int padlen
= ETH_ZLEN
- (*skb
)->len
;
2059 int headroom
= skb_headroom(*skb
);
2060 int tailroom
= skb_tailroom(*skb
);
2061 struct sk_buff
*nskb
;
2064 if (!(ndev
->features
& NETIF_F_HW_CSUM
) ||
2065 !((*skb
)->ip_summed
!= CHECKSUM_PARTIAL
) ||
2066 skb_shinfo(*skb
)->gso_size
) /* Not available for GSO */
2070 /* FCS could be appeded to tailroom. */
2071 if (tailroom
>= ETH_FCS_LEN
)
2073 /* FCS could be appeded by moving data to headroom. */
2074 else if (!cloned
&& headroom
+ tailroom
>= ETH_FCS_LEN
)
2076 /* No room for FCS, need to reallocate skb. */
2078 padlen
= ETH_FCS_LEN
;
2080 /* Add room for FCS. */
2081 padlen
+= ETH_FCS_LEN
;
2084 if (!cloned
&& headroom
+ tailroom
>= padlen
) {
2085 (*skb
)->data
= memmove((*skb
)->head
, (*skb
)->data
, (*skb
)->len
);
2086 skb_set_tail_pointer(*skb
, (*skb
)->len
);
2088 nskb
= skb_copy_expand(*skb
, 0, padlen
, GFP_ATOMIC
);
2092 dev_consume_skb_any(*skb
);
2096 if (padlen
> ETH_FCS_LEN
)
2097 skb_put_zero(*skb
, padlen
- ETH_FCS_LEN
);
2100 /* set FCS to packet */
2101 fcs
= crc32_le(~0, (*skb
)->data
, (*skb
)->len
);
2104 skb_put_u8(*skb
, fcs
& 0xff);
2105 skb_put_u8(*skb
, (fcs
>> 8) & 0xff);
2106 skb_put_u8(*skb
, (fcs
>> 16) & 0xff);
2107 skb_put_u8(*skb
, (fcs
>> 24) & 0xff);
2112 static netdev_tx_t
macb_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
2114 u16 queue_index
= skb_get_queue_mapping(skb
);
2115 struct macb
*bp
= netdev_priv(dev
);
2116 struct macb_queue
*queue
= &bp
->queues
[queue_index
];
2117 unsigned long flags
;
2118 unsigned int desc_cnt
, nr_frags
, frag_size
, f
;
2119 unsigned int hdrlen
;
2121 netdev_tx_t ret
= NETDEV_TX_OK
;
2123 if (macb_clear_csum(skb
)) {
2124 dev_kfree_skb_any(skb
);
2128 if (macb_pad_and_fcs(&skb
, dev
)) {
2129 dev_kfree_skb_any(skb
);
2133 is_lso
= (skb_shinfo(skb
)->gso_size
!= 0);
2136 /* length of headers */
2137 if (ip_hdr(skb
)->protocol
== IPPROTO_UDP
)
2138 /* only queue eth + ip headers separately for UDP */
2139 hdrlen
= skb_transport_offset(skb
);
2141 hdrlen
= skb_transport_offset(skb
) + tcp_hdrlen(skb
);
2142 if (skb_headlen(skb
) < hdrlen
) {
2143 netdev_err(bp
->dev
, "Error - LSO headers fragmented!!!\n");
2144 /* if this is required, would need to copy to single buffer */
2145 return NETDEV_TX_BUSY
;
2148 hdrlen
= min(skb_headlen(skb
), bp
->max_tx_length
);
2150 #if defined(DEBUG) && defined(VERBOSE_DEBUG)
2151 netdev_vdbg(bp
->dev
,
2152 "start_xmit: queue %hu len %u head %p data %p tail %p end %p\n",
2153 queue_index
, skb
->len
, skb
->head
, skb
->data
,
2154 skb_tail_pointer(skb
), skb_end_pointer(skb
));
2155 print_hex_dump(KERN_DEBUG
, "data: ", DUMP_PREFIX_OFFSET
, 16, 1,
2156 skb
->data
, 16, true);
2159 /* Count how many TX buffer descriptors are needed to send this
2160 * socket buffer: skb fragments of jumbo frames may need to be
2161 * split into many buffer descriptors.
2163 if (is_lso
&& (skb_headlen(skb
) > hdrlen
))
2164 /* extra header descriptor if also payload in first buffer */
2165 desc_cnt
= DIV_ROUND_UP((skb_headlen(skb
) - hdrlen
), bp
->max_tx_length
) + 1;
2167 desc_cnt
= DIV_ROUND_UP(skb_headlen(skb
), bp
->max_tx_length
);
2168 nr_frags
= skb_shinfo(skb
)->nr_frags
;
2169 for (f
= 0; f
< nr_frags
; f
++) {
2170 frag_size
= skb_frag_size(&skb_shinfo(skb
)->frags
[f
]);
2171 desc_cnt
+= DIV_ROUND_UP(frag_size
, bp
->max_tx_length
);
2174 spin_lock_irqsave(&bp
->lock
, flags
);
2176 /* This is a hard error, log it. */
2177 if (CIRC_SPACE(queue
->tx_head
, queue
->tx_tail
,
2178 bp
->tx_ring_size
) < desc_cnt
) {
2179 netif_stop_subqueue(dev
, queue_index
);
2180 spin_unlock_irqrestore(&bp
->lock
, flags
);
2181 netdev_dbg(bp
->dev
, "tx_head = %u, tx_tail = %u\n",
2182 queue
->tx_head
, queue
->tx_tail
);
2183 return NETDEV_TX_BUSY
;
2186 /* Map socket buffer for DMA transfer */
2187 if (!macb_tx_map(bp
, queue
, skb
, hdrlen
)) {
2188 dev_kfree_skb_any(skb
);
2192 /* Make newly initialized descriptor visible to hardware */
2194 skb_tx_timestamp(skb
);
2196 macb_writel(bp
, NCR
, macb_readl(bp
, NCR
) | MACB_BIT(TSTART
));
2198 if (CIRC_SPACE(queue
->tx_head
, queue
->tx_tail
, bp
->tx_ring_size
) < 1)
2199 netif_stop_subqueue(dev
, queue_index
);
2202 spin_unlock_irqrestore(&bp
->lock
, flags
);
2207 static void macb_init_rx_buffer_size(struct macb
*bp
, size_t size
)
2209 if (!macb_is_gem(bp
)) {
2210 bp
->rx_buffer_size
= MACB_RX_BUFFER_SIZE
;
2212 bp
->rx_buffer_size
= size
;
2214 if (bp
->rx_buffer_size
% RX_BUFFER_MULTIPLE
) {
2216 "RX buffer must be multiple of %d bytes, expanding\n",
2217 RX_BUFFER_MULTIPLE
);
2218 bp
->rx_buffer_size
=
2219 roundup(bp
->rx_buffer_size
, RX_BUFFER_MULTIPLE
);
2223 netdev_dbg(bp
->dev
, "mtu [%u] rx_buffer_size [%zu]\n",
2224 bp
->dev
->mtu
, bp
->rx_buffer_size
);
2227 static void gem_free_rx_buffers(struct macb
*bp
)
2229 struct sk_buff
*skb
;
2230 struct macb_dma_desc
*desc
;
2231 struct macb_queue
*queue
;
2236 for (q
= 0, queue
= bp
->queues
; q
< bp
->num_queues
; ++q
, ++queue
) {
2237 if (!queue
->rx_skbuff
)
2240 for (i
= 0; i
< bp
->rx_ring_size
; i
++) {
2241 skb
= queue
->rx_skbuff
[i
];
2246 desc
= macb_rx_desc(queue
, i
);
2247 addr
= macb_get_addr(bp
, desc
);
2249 dma_unmap_single(&bp
->pdev
->dev
, addr
, bp
->rx_buffer_size
,
2251 dev_kfree_skb_any(skb
);
2255 kfree(queue
->rx_skbuff
);
2256 queue
->rx_skbuff
= NULL
;
2260 static void macb_free_rx_buffers(struct macb
*bp
)
2262 struct macb_queue
*queue
= &bp
->queues
[0];
2264 if (queue
->rx_buffers
) {
2265 dma_free_coherent(&bp
->pdev
->dev
,
2266 bp
->rx_ring_size
* bp
->rx_buffer_size
,
2267 queue
->rx_buffers
, queue
->rx_buffers_dma
);
2268 queue
->rx_buffers
= NULL
;
2272 static void macb_free_consistent(struct macb
*bp
)
2274 struct macb_queue
*queue
;
2278 bp
->macbgem_ops
.mog_free_rx_buffers(bp
);
2280 for (q
= 0, queue
= bp
->queues
; q
< bp
->num_queues
; ++q
, ++queue
) {
2281 kfree(queue
->tx_skb
);
2282 queue
->tx_skb
= NULL
;
2283 if (queue
->tx_ring
) {
2284 size
= TX_RING_BYTES(bp
) + bp
->tx_bd_rd_prefetch
;
2285 dma_free_coherent(&bp
->pdev
->dev
, size
,
2286 queue
->tx_ring
, queue
->tx_ring_dma
);
2287 queue
->tx_ring
= NULL
;
2289 if (queue
->rx_ring
) {
2290 size
= RX_RING_BYTES(bp
) + bp
->rx_bd_rd_prefetch
;
2291 dma_free_coherent(&bp
->pdev
->dev
, size
,
2292 queue
->rx_ring
, queue
->rx_ring_dma
);
2293 queue
->rx_ring
= NULL
;
2298 static int gem_alloc_rx_buffers(struct macb
*bp
)
2300 struct macb_queue
*queue
;
2304 for (q
= 0, queue
= bp
->queues
; q
< bp
->num_queues
; ++q
, ++queue
) {
2305 size
= bp
->rx_ring_size
* sizeof(struct sk_buff
*);
2306 queue
->rx_skbuff
= kzalloc(size
, GFP_KERNEL
);
2307 if (!queue
->rx_skbuff
)
2311 "Allocated %d RX struct sk_buff entries at %p\n",
2312 bp
->rx_ring_size
, queue
->rx_skbuff
);
2317 static int macb_alloc_rx_buffers(struct macb
*bp
)
2319 struct macb_queue
*queue
= &bp
->queues
[0];
2322 size
= bp
->rx_ring_size
* bp
->rx_buffer_size
;
2323 queue
->rx_buffers
= dma_alloc_coherent(&bp
->pdev
->dev
, size
,
2324 &queue
->rx_buffers_dma
, GFP_KERNEL
);
2325 if (!queue
->rx_buffers
)
2329 "Allocated RX buffers of %d bytes at %08lx (mapped %p)\n",
2330 size
, (unsigned long)queue
->rx_buffers_dma
, queue
->rx_buffers
);
2334 static int macb_alloc_consistent(struct macb
*bp
)
2336 struct macb_queue
*queue
;
2340 for (q
= 0, queue
= bp
->queues
; q
< bp
->num_queues
; ++q
, ++queue
) {
2341 size
= TX_RING_BYTES(bp
) + bp
->tx_bd_rd_prefetch
;
2342 queue
->tx_ring
= dma_alloc_coherent(&bp
->pdev
->dev
, size
,
2343 &queue
->tx_ring_dma
,
2345 if (!queue
->tx_ring
)
2348 "Allocated TX ring for queue %u of %d bytes at %08lx (mapped %p)\n",
2349 q
, size
, (unsigned long)queue
->tx_ring_dma
,
2352 size
= bp
->tx_ring_size
* sizeof(struct macb_tx_skb
);
2353 queue
->tx_skb
= kmalloc(size
, GFP_KERNEL
);
2357 size
= RX_RING_BYTES(bp
) + bp
->rx_bd_rd_prefetch
;
2358 queue
->rx_ring
= dma_alloc_coherent(&bp
->pdev
->dev
, size
,
2359 &queue
->rx_ring_dma
, GFP_KERNEL
);
2360 if (!queue
->rx_ring
)
2363 "Allocated RX ring of %d bytes at %08lx (mapped %p)\n",
2364 size
, (unsigned long)queue
->rx_ring_dma
, queue
->rx_ring
);
2366 if (bp
->macbgem_ops
.mog_alloc_rx_buffers(bp
))
2372 macb_free_consistent(bp
);
2376 static void gem_init_rings(struct macb
*bp
)
2378 struct macb_queue
*queue
;
2379 struct macb_dma_desc
*desc
= NULL
;
2383 for (q
= 0, queue
= bp
->queues
; q
< bp
->num_queues
; ++q
, ++queue
) {
2384 for (i
= 0; i
< bp
->tx_ring_size
; i
++) {
2385 desc
= macb_tx_desc(queue
, i
);
2386 macb_set_addr(bp
, desc
, 0);
2387 desc
->ctrl
= MACB_BIT(TX_USED
);
2389 desc
->ctrl
|= MACB_BIT(TX_WRAP
);
2394 queue
->rx_prepared_head
= 0;
2396 gem_rx_refill(queue
);
2401 static void macb_init_rings(struct macb
*bp
)
2404 struct macb_dma_desc
*desc
= NULL
;
2406 macb_init_rx_ring(&bp
->queues
[0]);
2408 for (i
= 0; i
< bp
->tx_ring_size
; i
++) {
2409 desc
= macb_tx_desc(&bp
->queues
[0], i
);
2410 macb_set_addr(bp
, desc
, 0);
2411 desc
->ctrl
= MACB_BIT(TX_USED
);
2413 bp
->queues
[0].tx_head
= 0;
2414 bp
->queues
[0].tx_tail
= 0;
2415 desc
->ctrl
|= MACB_BIT(TX_WRAP
);
2418 static void macb_reset_hw(struct macb
*bp
)
2420 struct macb_queue
*queue
;
2422 u32 ctrl
= macb_readl(bp
, NCR
);
2424 /* Disable RX and TX (XXX: Should we halt the transmission
2427 ctrl
&= ~(MACB_BIT(RE
) | MACB_BIT(TE
));
2429 /* Clear the stats registers (XXX: Update stats first?) */
2430 ctrl
|= MACB_BIT(CLRSTAT
);
2432 macb_writel(bp
, NCR
, ctrl
);
2434 /* Clear all status flags */
2435 macb_writel(bp
, TSR
, -1);
2436 macb_writel(bp
, RSR
, -1);
2438 /* Disable all interrupts */
2439 for (q
= 0, queue
= bp
->queues
; q
< bp
->num_queues
; ++q
, ++queue
) {
2440 queue_writel(queue
, IDR
, -1);
2441 queue_readl(queue
, ISR
);
2442 if (bp
->caps
& MACB_CAPS_ISR_CLEAR_ON_WRITE
)
2443 queue_writel(queue
, ISR
, -1);
2447 static u32
gem_mdc_clk_div(struct macb
*bp
)
2450 unsigned long pclk_hz
= clk_get_rate(bp
->pclk
);
2452 if (pclk_hz
<= 20000000)
2453 config
= GEM_BF(CLK
, GEM_CLK_DIV8
);
2454 else if (pclk_hz
<= 40000000)
2455 config
= GEM_BF(CLK
, GEM_CLK_DIV16
);
2456 else if (pclk_hz
<= 80000000)
2457 config
= GEM_BF(CLK
, GEM_CLK_DIV32
);
2458 else if (pclk_hz
<= 120000000)
2459 config
= GEM_BF(CLK
, GEM_CLK_DIV48
);
2460 else if (pclk_hz
<= 160000000)
2461 config
= GEM_BF(CLK
, GEM_CLK_DIV64
);
2463 config
= GEM_BF(CLK
, GEM_CLK_DIV96
);
2468 static u32
macb_mdc_clk_div(struct macb
*bp
)
2471 unsigned long pclk_hz
;
2473 if (macb_is_gem(bp
))
2474 return gem_mdc_clk_div(bp
);
2476 pclk_hz
= clk_get_rate(bp
->pclk
);
2477 if (pclk_hz
<= 20000000)
2478 config
= MACB_BF(CLK
, MACB_CLK_DIV8
);
2479 else if (pclk_hz
<= 40000000)
2480 config
= MACB_BF(CLK
, MACB_CLK_DIV16
);
2481 else if (pclk_hz
<= 80000000)
2482 config
= MACB_BF(CLK
, MACB_CLK_DIV32
);
2484 config
= MACB_BF(CLK
, MACB_CLK_DIV64
);
2489 /* Get the DMA bus width field of the network configuration register that we
2490 * should program. We find the width from decoding the design configuration
2491 * register to find the maximum supported data bus width.
2493 static u32
macb_dbw(struct macb
*bp
)
2495 if (!macb_is_gem(bp
))
2498 switch (GEM_BFEXT(DBWDEF
, gem_readl(bp
, DCFG1
))) {
2500 return GEM_BF(DBW
, GEM_DBW128
);
2502 return GEM_BF(DBW
, GEM_DBW64
);
2505 return GEM_BF(DBW
, GEM_DBW32
);
2509 /* Configure the receive DMA engine
2510 * - use the correct receive buffer size
2511 * - set best burst length for DMA operations
2512 * (if not supported by FIFO, it will fallback to default)
2513 * - set both rx/tx packet buffers to full memory size
2514 * These are configurable parameters for GEM.
2516 static void macb_configure_dma(struct macb
*bp
)
2518 struct macb_queue
*queue
;
2523 buffer_size
= bp
->rx_buffer_size
/ RX_BUFFER_MULTIPLE
;
2524 if (macb_is_gem(bp
)) {
2525 dmacfg
= gem_readl(bp
, DMACFG
) & ~GEM_BF(RXBS
, -1L);
2526 for (q
= 0, queue
= bp
->queues
; q
< bp
->num_queues
; ++q
, ++queue
) {
2528 queue_writel(queue
, RBQS
, buffer_size
);
2530 dmacfg
|= GEM_BF(RXBS
, buffer_size
);
2532 if (bp
->dma_burst_length
)
2533 dmacfg
= GEM_BFINS(FBLDO
, bp
->dma_burst_length
, dmacfg
);
2534 dmacfg
|= GEM_BIT(TXPBMS
) | GEM_BF(RXBMS
, -1L);
2535 dmacfg
&= ~GEM_BIT(ENDIA_PKT
);
2538 dmacfg
&= ~GEM_BIT(ENDIA_DESC
);
2540 dmacfg
|= GEM_BIT(ENDIA_DESC
); /* CPU in big endian */
2542 if (bp
->dev
->features
& NETIF_F_HW_CSUM
)
2543 dmacfg
|= GEM_BIT(TXCOEN
);
2545 dmacfg
&= ~GEM_BIT(TXCOEN
);
2547 dmacfg
&= ~GEM_BIT(ADDR64
);
2548 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
2549 if (bp
->hw_dma_cap
& HW_DMA_CAP_64B
)
2550 dmacfg
|= GEM_BIT(ADDR64
);
2552 #ifdef CONFIG_MACB_USE_HWSTAMP
2553 if (bp
->hw_dma_cap
& HW_DMA_CAP_PTP
)
2554 dmacfg
|= GEM_BIT(RXEXT
) | GEM_BIT(TXEXT
);
2556 netdev_dbg(bp
->dev
, "Cadence configure DMA with 0x%08x\n",
2558 gem_writel(bp
, DMACFG
, dmacfg
);
2562 static void macb_init_hw(struct macb
*bp
)
2567 macb_set_hwaddr(bp
);
2569 config
= macb_mdc_clk_div(bp
);
2570 config
|= MACB_BF(RBOF
, NET_IP_ALIGN
); /* Make eth data aligned */
2571 config
|= MACB_BIT(DRFCS
); /* Discard Rx FCS */
2572 if (bp
->caps
& MACB_CAPS_JUMBO
)
2573 config
|= MACB_BIT(JFRAME
); /* Enable jumbo frames */
2575 config
|= MACB_BIT(BIG
); /* Receive oversized frames */
2576 if (bp
->dev
->flags
& IFF_PROMISC
)
2577 config
|= MACB_BIT(CAF
); /* Copy All Frames */
2578 else if (macb_is_gem(bp
) && bp
->dev
->features
& NETIF_F_RXCSUM
)
2579 config
|= GEM_BIT(RXCOEN
);
2580 if (!(bp
->dev
->flags
& IFF_BROADCAST
))
2581 config
|= MACB_BIT(NBC
); /* No BroadCast */
2582 config
|= macb_dbw(bp
);
2583 macb_writel(bp
, NCFGR
, config
);
2584 if ((bp
->caps
& MACB_CAPS_JUMBO
) && bp
->jumbo_max_len
)
2585 gem_writel(bp
, JML
, bp
->jumbo_max_len
);
2586 bp
->rx_frm_len_mask
= MACB_RX_FRMLEN_MASK
;
2587 if (bp
->caps
& MACB_CAPS_JUMBO
)
2588 bp
->rx_frm_len_mask
= MACB_RX_JFRMLEN_MASK
;
2590 macb_configure_dma(bp
);
2593 /* The hash address register is 64 bits long and takes up two
2594 * locations in the memory map. The least significant bits are stored
2595 * in EMAC_HSL and the most significant bits in EMAC_HSH.
2597 * The unicast hash enable and the multicast hash enable bits in the
2598 * network configuration register enable the reception of hash matched
2599 * frames. The destination address is reduced to a 6 bit index into
2600 * the 64 bit hash register using the following hash function. The
2601 * hash function is an exclusive or of every sixth bit of the
2602 * destination address.
2604 * hi[5] = da[5] ^ da[11] ^ da[17] ^ da[23] ^ da[29] ^ da[35] ^ da[41] ^ da[47]
2605 * hi[4] = da[4] ^ da[10] ^ da[16] ^ da[22] ^ da[28] ^ da[34] ^ da[40] ^ da[46]
2606 * hi[3] = da[3] ^ da[09] ^ da[15] ^ da[21] ^ da[27] ^ da[33] ^ da[39] ^ da[45]
2607 * hi[2] = da[2] ^ da[08] ^ da[14] ^ da[20] ^ da[26] ^ da[32] ^ da[38] ^ da[44]
2608 * hi[1] = da[1] ^ da[07] ^ da[13] ^ da[19] ^ da[25] ^ da[31] ^ da[37] ^ da[43]
2609 * hi[0] = da[0] ^ da[06] ^ da[12] ^ da[18] ^ da[24] ^ da[30] ^ da[36] ^ da[42]
2611 * da[0] represents the least significant bit of the first byte
2612 * received, that is, the multicast/unicast indicator, and da[47]
2613 * represents the most significant bit of the last byte received. If
2614 * the hash index, hi[n], points to a bit that is set in the hash
2615 * register then the frame will be matched according to whether the
2616 * frame is multicast or unicast. A multicast match will be signalled
2617 * if the multicast hash enable bit is set, da[0] is 1 and the hash
2618 * index points to a bit set in the hash register. A unicast match
2619 * will be signalled if the unicast hash enable bit is set, da[0] is 0
2620 * and the hash index points to a bit set in the hash register. To
2621 * receive all multicast frames, the hash register should be set with
2622 * all ones and the multicast hash enable bit should be set in the
2623 * network configuration register.
2626 static inline int hash_bit_value(int bitnr
, __u8
*addr
)
2628 if (addr
[bitnr
/ 8] & (1 << (bitnr
% 8)))
2633 /* Return the hash index value for the specified address. */
2634 static int hash_get_index(__u8
*addr
)
2639 for (j
= 0; j
< 6; j
++) {
2640 for (i
= 0, bitval
= 0; i
< 8; i
++)
2641 bitval
^= hash_bit_value(i
* 6 + j
, addr
);
2643 hash_index
|= (bitval
<< j
);
2649 /* Add multicast addresses to the internal multicast-hash table. */
2650 static void macb_sethashtable(struct net_device
*dev
)
2652 struct netdev_hw_addr
*ha
;
2653 unsigned long mc_filter
[2];
2655 struct macb
*bp
= netdev_priv(dev
);
2660 netdev_for_each_mc_addr(ha
, dev
) {
2661 bitnr
= hash_get_index(ha
->addr
);
2662 mc_filter
[bitnr
>> 5] |= 1 << (bitnr
& 31);
2665 macb_or_gem_writel(bp
, HRB
, mc_filter
[0]);
2666 macb_or_gem_writel(bp
, HRT
, mc_filter
[1]);
2669 /* Enable/Disable promiscuous and multicast modes. */
2670 static void macb_set_rx_mode(struct net_device
*dev
)
2673 struct macb
*bp
= netdev_priv(dev
);
2675 cfg
= macb_readl(bp
, NCFGR
);
2677 if (dev
->flags
& IFF_PROMISC
) {
2678 /* Enable promiscuous mode */
2679 cfg
|= MACB_BIT(CAF
);
2681 /* Disable RX checksum offload */
2682 if (macb_is_gem(bp
))
2683 cfg
&= ~GEM_BIT(RXCOEN
);
2685 /* Disable promiscuous mode */
2686 cfg
&= ~MACB_BIT(CAF
);
2688 /* Enable RX checksum offload only if requested */
2689 if (macb_is_gem(bp
) && dev
->features
& NETIF_F_RXCSUM
)
2690 cfg
|= GEM_BIT(RXCOEN
);
2693 if (dev
->flags
& IFF_ALLMULTI
) {
2694 /* Enable all multicast mode */
2695 macb_or_gem_writel(bp
, HRB
, -1);
2696 macb_or_gem_writel(bp
, HRT
, -1);
2697 cfg
|= MACB_BIT(NCFGR_MTI
);
2698 } else if (!netdev_mc_empty(dev
)) {
2699 /* Enable specific multicasts */
2700 macb_sethashtable(dev
);
2701 cfg
|= MACB_BIT(NCFGR_MTI
);
2702 } else if (dev
->flags
& (~IFF_ALLMULTI
)) {
2703 /* Disable all multicast mode */
2704 macb_or_gem_writel(bp
, HRB
, 0);
2705 macb_or_gem_writel(bp
, HRT
, 0);
2706 cfg
&= ~MACB_BIT(NCFGR_MTI
);
2709 macb_writel(bp
, NCFGR
, cfg
);
2712 static int macb_open(struct net_device
*dev
)
2714 size_t bufsz
= dev
->mtu
+ ETH_HLEN
+ ETH_FCS_LEN
+ NET_IP_ALIGN
;
2715 struct macb
*bp
= netdev_priv(dev
);
2716 struct macb_queue
*queue
;
2720 netdev_dbg(bp
->dev
, "open\n");
2722 err
= pm_runtime_get_sync(&bp
->pdev
->dev
);
2726 /* RX buffers initialization */
2727 macb_init_rx_buffer_size(bp
, bufsz
);
2729 err
= macb_alloc_consistent(bp
);
2731 netdev_err(dev
, "Unable to allocate DMA memory (error %d)\n",
2736 for (q
= 0, queue
= bp
->queues
; q
< bp
->num_queues
; ++q
, ++queue
)
2737 napi_enable(&queue
->napi
);
2741 err
= macb_phylink_connect(bp
);
2745 netif_tx_start_all_queues(dev
);
2748 bp
->ptp_info
->ptp_init(dev
);
2754 for (q
= 0, queue
= bp
->queues
; q
< bp
->num_queues
; ++q
, ++queue
)
2755 napi_disable(&queue
->napi
);
2756 macb_free_consistent(bp
);
2758 pm_runtime_put_sync(&bp
->pdev
->dev
);
2762 static int macb_close(struct net_device
*dev
)
2764 struct macb
*bp
= netdev_priv(dev
);
2765 struct macb_queue
*queue
;
2766 unsigned long flags
;
2769 netif_tx_stop_all_queues(dev
);
2771 for (q
= 0, queue
= bp
->queues
; q
< bp
->num_queues
; ++q
, ++queue
)
2772 napi_disable(&queue
->napi
);
2774 phylink_stop(bp
->phylink
);
2775 phylink_disconnect_phy(bp
->phylink
);
2777 spin_lock_irqsave(&bp
->lock
, flags
);
2779 netif_carrier_off(dev
);
2780 spin_unlock_irqrestore(&bp
->lock
, flags
);
2782 macb_free_consistent(bp
);
2785 bp
->ptp_info
->ptp_remove(dev
);
2787 pm_runtime_put(&bp
->pdev
->dev
);
2792 static int macb_change_mtu(struct net_device
*dev
, int new_mtu
)
2794 if (netif_running(dev
))
2802 static void gem_update_stats(struct macb
*bp
)
2804 struct macb_queue
*queue
;
2805 unsigned int i
, q
, idx
;
2806 unsigned long *stat
;
2808 u32
*p
= &bp
->hw_stats
.gem
.tx_octets_31_0
;
2810 for (i
= 0; i
< GEM_STATS_LEN
; ++i
, ++p
) {
2811 u32 offset
= gem_statistics
[i
].offset
;
2812 u64 val
= bp
->macb_reg_readl(bp
, offset
);
2814 bp
->ethtool_stats
[i
] += val
;
2817 if (offset
== GEM_OCTTXL
|| offset
== GEM_OCTRXL
) {
2818 /* Add GEM_OCTTXH, GEM_OCTRXH */
2819 val
= bp
->macb_reg_readl(bp
, offset
+ 4);
2820 bp
->ethtool_stats
[i
] += ((u64
)val
) << 32;
2825 idx
= GEM_STATS_LEN
;
2826 for (q
= 0, queue
= bp
->queues
; q
< bp
->num_queues
; ++q
, ++queue
)
2827 for (i
= 0, stat
= &queue
->stats
.first
; i
< QUEUE_STATS_LEN
; ++i
, ++stat
)
2828 bp
->ethtool_stats
[idx
++] = *stat
;
2831 static struct net_device_stats
*gem_get_stats(struct macb
*bp
)
2833 struct gem_stats
*hwstat
= &bp
->hw_stats
.gem
;
2834 struct net_device_stats
*nstat
= &bp
->dev
->stats
;
2836 gem_update_stats(bp
);
2838 nstat
->rx_errors
= (hwstat
->rx_frame_check_sequence_errors
+
2839 hwstat
->rx_alignment_errors
+
2840 hwstat
->rx_resource_errors
+
2841 hwstat
->rx_overruns
+
2842 hwstat
->rx_oversize_frames
+
2843 hwstat
->rx_jabbers
+
2844 hwstat
->rx_undersized_frames
+
2845 hwstat
->rx_length_field_frame_errors
);
2846 nstat
->tx_errors
= (hwstat
->tx_late_collisions
+
2847 hwstat
->tx_excessive_collisions
+
2848 hwstat
->tx_underrun
+
2849 hwstat
->tx_carrier_sense_errors
);
2850 nstat
->multicast
= hwstat
->rx_multicast_frames
;
2851 nstat
->collisions
= (hwstat
->tx_single_collision_frames
+
2852 hwstat
->tx_multiple_collision_frames
+
2853 hwstat
->tx_excessive_collisions
);
2854 nstat
->rx_length_errors
= (hwstat
->rx_oversize_frames
+
2855 hwstat
->rx_jabbers
+
2856 hwstat
->rx_undersized_frames
+
2857 hwstat
->rx_length_field_frame_errors
);
2858 nstat
->rx_over_errors
= hwstat
->rx_resource_errors
;
2859 nstat
->rx_crc_errors
= hwstat
->rx_frame_check_sequence_errors
;
2860 nstat
->rx_frame_errors
= hwstat
->rx_alignment_errors
;
2861 nstat
->rx_fifo_errors
= hwstat
->rx_overruns
;
2862 nstat
->tx_aborted_errors
= hwstat
->tx_excessive_collisions
;
2863 nstat
->tx_carrier_errors
= hwstat
->tx_carrier_sense_errors
;
2864 nstat
->tx_fifo_errors
= hwstat
->tx_underrun
;
2869 static void gem_get_ethtool_stats(struct net_device
*dev
,
2870 struct ethtool_stats
*stats
, u64
*data
)
2874 bp
= netdev_priv(dev
);
2875 gem_update_stats(bp
);
2876 memcpy(data
, &bp
->ethtool_stats
, sizeof(u64
)
2877 * (GEM_STATS_LEN
+ QUEUE_STATS_LEN
* MACB_MAX_QUEUES
));
2880 static int gem_get_sset_count(struct net_device
*dev
, int sset
)
2882 struct macb
*bp
= netdev_priv(dev
);
2886 return GEM_STATS_LEN
+ bp
->num_queues
* QUEUE_STATS_LEN
;
2892 static void gem_get_ethtool_strings(struct net_device
*dev
, u32 sset
, u8
*p
)
2894 char stat_string
[ETH_GSTRING_LEN
];
2895 struct macb
*bp
= netdev_priv(dev
);
2896 struct macb_queue
*queue
;
2902 for (i
= 0; i
< GEM_STATS_LEN
; i
++, p
+= ETH_GSTRING_LEN
)
2903 memcpy(p
, gem_statistics
[i
].stat_string
,
2906 for (q
= 0, queue
= bp
->queues
; q
< bp
->num_queues
; ++q
, ++queue
) {
2907 for (i
= 0; i
< QUEUE_STATS_LEN
; i
++, p
+= ETH_GSTRING_LEN
) {
2908 snprintf(stat_string
, ETH_GSTRING_LEN
, "q%d_%s",
2909 q
, queue_statistics
[i
].stat_string
);
2910 memcpy(p
, stat_string
, ETH_GSTRING_LEN
);
2917 static struct net_device_stats
*macb_get_stats(struct net_device
*dev
)
2919 struct macb
*bp
= netdev_priv(dev
);
2920 struct net_device_stats
*nstat
= &bp
->dev
->stats
;
2921 struct macb_stats
*hwstat
= &bp
->hw_stats
.macb
;
2923 if (macb_is_gem(bp
))
2924 return gem_get_stats(bp
);
2926 /* read stats from hardware */
2927 macb_update_stats(bp
);
2929 /* Convert HW stats into netdevice stats */
2930 nstat
->rx_errors
= (hwstat
->rx_fcs_errors
+
2931 hwstat
->rx_align_errors
+
2932 hwstat
->rx_resource_errors
+
2933 hwstat
->rx_overruns
+
2934 hwstat
->rx_oversize_pkts
+
2935 hwstat
->rx_jabbers
+
2936 hwstat
->rx_undersize_pkts
+
2937 hwstat
->rx_length_mismatch
);
2938 nstat
->tx_errors
= (hwstat
->tx_late_cols
+
2939 hwstat
->tx_excessive_cols
+
2940 hwstat
->tx_underruns
+
2941 hwstat
->tx_carrier_errors
+
2942 hwstat
->sqe_test_errors
);
2943 nstat
->collisions
= (hwstat
->tx_single_cols
+
2944 hwstat
->tx_multiple_cols
+
2945 hwstat
->tx_excessive_cols
);
2946 nstat
->rx_length_errors
= (hwstat
->rx_oversize_pkts
+
2947 hwstat
->rx_jabbers
+
2948 hwstat
->rx_undersize_pkts
+
2949 hwstat
->rx_length_mismatch
);
2950 nstat
->rx_over_errors
= hwstat
->rx_resource_errors
+
2951 hwstat
->rx_overruns
;
2952 nstat
->rx_crc_errors
= hwstat
->rx_fcs_errors
;
2953 nstat
->rx_frame_errors
= hwstat
->rx_align_errors
;
2954 nstat
->rx_fifo_errors
= hwstat
->rx_overruns
;
2955 /* XXX: What does "missed" mean? */
2956 nstat
->tx_aborted_errors
= hwstat
->tx_excessive_cols
;
2957 nstat
->tx_carrier_errors
= hwstat
->tx_carrier_errors
;
2958 nstat
->tx_fifo_errors
= hwstat
->tx_underruns
;
2959 /* Don't know about heartbeat or window errors... */
2964 static int macb_get_regs_len(struct net_device
*netdev
)
2966 return MACB_GREGS_NBR
* sizeof(u32
);
2969 static void macb_get_regs(struct net_device
*dev
, struct ethtool_regs
*regs
,
2972 struct macb
*bp
= netdev_priv(dev
);
2973 unsigned int tail
, head
;
2976 regs
->version
= (macb_readl(bp
, MID
) & ((1 << MACB_REV_SIZE
) - 1))
2977 | MACB_GREGS_VERSION
;
2979 tail
= macb_tx_ring_wrap(bp
, bp
->queues
[0].tx_tail
);
2980 head
= macb_tx_ring_wrap(bp
, bp
->queues
[0].tx_head
);
2982 regs_buff
[0] = macb_readl(bp
, NCR
);
2983 regs_buff
[1] = macb_or_gem_readl(bp
, NCFGR
);
2984 regs_buff
[2] = macb_readl(bp
, NSR
);
2985 regs_buff
[3] = macb_readl(bp
, TSR
);
2986 regs_buff
[4] = macb_readl(bp
, RBQP
);
2987 regs_buff
[5] = macb_readl(bp
, TBQP
);
2988 regs_buff
[6] = macb_readl(bp
, RSR
);
2989 regs_buff
[7] = macb_readl(bp
, IMR
);
2991 regs_buff
[8] = tail
;
2992 regs_buff
[9] = head
;
2993 regs_buff
[10] = macb_tx_dma(&bp
->queues
[0], tail
);
2994 regs_buff
[11] = macb_tx_dma(&bp
->queues
[0], head
);
2996 if (!(bp
->caps
& MACB_CAPS_USRIO_DISABLED
))
2997 regs_buff
[12] = macb_or_gem_readl(bp
, USRIO
);
2998 if (macb_is_gem(bp
))
2999 regs_buff
[13] = gem_readl(bp
, DMACFG
);
3002 static void macb_get_wol(struct net_device
*netdev
, struct ethtool_wolinfo
*wol
)
3004 struct macb
*bp
= netdev_priv(netdev
);
3006 if (bp
->wol
& MACB_WOL_HAS_MAGIC_PACKET
) {
3007 phylink_ethtool_get_wol(bp
->phylink
, wol
);
3008 wol
->supported
|= WAKE_MAGIC
;
3010 if (bp
->wol
& MACB_WOL_ENABLED
)
3011 wol
->wolopts
|= WAKE_MAGIC
;
3015 static int macb_set_wol(struct net_device
*netdev
, struct ethtool_wolinfo
*wol
)
3017 struct macb
*bp
= netdev_priv(netdev
);
3020 /* Pass the order to phylink layer */
3021 ret
= phylink_ethtool_set_wol(bp
->phylink
, wol
);
3022 /* Don't manage WoL on MAC if handled by the PHY
3023 * or if there's a failure in talking to the PHY
3025 if (!ret
|| ret
!= -EOPNOTSUPP
)
3028 if (!(bp
->wol
& MACB_WOL_HAS_MAGIC_PACKET
) ||
3029 (wol
->wolopts
& ~WAKE_MAGIC
))
3032 if (wol
->wolopts
& WAKE_MAGIC
)
3033 bp
->wol
|= MACB_WOL_ENABLED
;
3035 bp
->wol
&= ~MACB_WOL_ENABLED
;
3037 device_set_wakeup_enable(&bp
->pdev
->dev
, bp
->wol
& MACB_WOL_ENABLED
);
3042 static int macb_get_link_ksettings(struct net_device
*netdev
,
3043 struct ethtool_link_ksettings
*kset
)
3045 struct macb
*bp
= netdev_priv(netdev
);
3047 return phylink_ethtool_ksettings_get(bp
->phylink
, kset
);
3050 static int macb_set_link_ksettings(struct net_device
*netdev
,
3051 const struct ethtool_link_ksettings
*kset
)
3053 struct macb
*bp
= netdev_priv(netdev
);
3055 return phylink_ethtool_ksettings_set(bp
->phylink
, kset
);
3058 static void macb_get_ringparam(struct net_device
*netdev
,
3059 struct ethtool_ringparam
*ring
)
3061 struct macb
*bp
= netdev_priv(netdev
);
3063 ring
->rx_max_pending
= MAX_RX_RING_SIZE
;
3064 ring
->tx_max_pending
= MAX_TX_RING_SIZE
;
3066 ring
->rx_pending
= bp
->rx_ring_size
;
3067 ring
->tx_pending
= bp
->tx_ring_size
;
3070 static int macb_set_ringparam(struct net_device
*netdev
,
3071 struct ethtool_ringparam
*ring
)
3073 struct macb
*bp
= netdev_priv(netdev
);
3074 u32 new_rx_size
, new_tx_size
;
3075 unsigned int reset
= 0;
3077 if ((ring
->rx_mini_pending
) || (ring
->rx_jumbo_pending
))
3080 new_rx_size
= clamp_t(u32
, ring
->rx_pending
,
3081 MIN_RX_RING_SIZE
, MAX_RX_RING_SIZE
);
3082 new_rx_size
= roundup_pow_of_two(new_rx_size
);
3084 new_tx_size
= clamp_t(u32
, ring
->tx_pending
,
3085 MIN_TX_RING_SIZE
, MAX_TX_RING_SIZE
);
3086 new_tx_size
= roundup_pow_of_two(new_tx_size
);
3088 if ((new_tx_size
== bp
->tx_ring_size
) &&
3089 (new_rx_size
== bp
->rx_ring_size
)) {
3094 if (netif_running(bp
->dev
)) {
3096 macb_close(bp
->dev
);
3099 bp
->rx_ring_size
= new_rx_size
;
3100 bp
->tx_ring_size
= new_tx_size
;
3108 #ifdef CONFIG_MACB_USE_HWSTAMP
3109 static unsigned int gem_get_tsu_rate(struct macb
*bp
)
3111 struct clk
*tsu_clk
;
3112 unsigned int tsu_rate
;
3114 tsu_clk
= devm_clk_get(&bp
->pdev
->dev
, "tsu_clk");
3115 if (!IS_ERR(tsu_clk
))
3116 tsu_rate
= clk_get_rate(tsu_clk
);
3117 /* try pclk instead */
3118 else if (!IS_ERR(bp
->pclk
)) {
3120 tsu_rate
= clk_get_rate(tsu_clk
);
3126 static s32
gem_get_ptp_max_adj(void)
3131 static int gem_get_ts_info(struct net_device
*dev
,
3132 struct ethtool_ts_info
*info
)
3134 struct macb
*bp
= netdev_priv(dev
);
3136 if ((bp
->hw_dma_cap
& HW_DMA_CAP_PTP
) == 0) {
3137 ethtool_op_get_ts_info(dev
, info
);
3141 info
->so_timestamping
=
3142 SOF_TIMESTAMPING_TX_SOFTWARE
|
3143 SOF_TIMESTAMPING_RX_SOFTWARE
|
3144 SOF_TIMESTAMPING_SOFTWARE
|
3145 SOF_TIMESTAMPING_TX_HARDWARE
|
3146 SOF_TIMESTAMPING_RX_HARDWARE
|
3147 SOF_TIMESTAMPING_RAW_HARDWARE
;
3149 (1 << HWTSTAMP_TX_ONESTEP_SYNC
) |
3150 (1 << HWTSTAMP_TX_OFF
) |
3151 (1 << HWTSTAMP_TX_ON
);
3153 (1 << HWTSTAMP_FILTER_NONE
) |
3154 (1 << HWTSTAMP_FILTER_ALL
);
3156 info
->phc_index
= bp
->ptp_clock
? ptp_clock_index(bp
->ptp_clock
) : -1;
3161 static struct macb_ptp_info gem_ptp_info
= {
3162 .ptp_init
= gem_ptp_init
,
3163 .ptp_remove
= gem_ptp_remove
,
3164 .get_ptp_max_adj
= gem_get_ptp_max_adj
,
3165 .get_tsu_rate
= gem_get_tsu_rate
,
3166 .get_ts_info
= gem_get_ts_info
,
3167 .get_hwtst
= gem_get_hwtst
,
3168 .set_hwtst
= gem_set_hwtst
,
3172 static int macb_get_ts_info(struct net_device
*netdev
,
3173 struct ethtool_ts_info
*info
)
3175 struct macb
*bp
= netdev_priv(netdev
);
3178 return bp
->ptp_info
->get_ts_info(netdev
, info
);
3180 return ethtool_op_get_ts_info(netdev
, info
);
3183 static void gem_enable_flow_filters(struct macb
*bp
, bool enable
)
3185 struct net_device
*netdev
= bp
->dev
;
3186 struct ethtool_rx_fs_item
*item
;
3190 if (!(netdev
->features
& NETIF_F_NTUPLE
))
3193 num_t2_scr
= GEM_BFEXT(T2SCR
, gem_readl(bp
, DCFG8
));
3195 list_for_each_entry(item
, &bp
->rx_fs_list
.list
, list
) {
3196 struct ethtool_rx_flow_spec
*fs
= &item
->fs
;
3197 struct ethtool_tcpip4_spec
*tp4sp_m
;
3199 if (fs
->location
>= num_t2_scr
)
3202 t2_scr
= gem_readl_n(bp
, SCRT2
, fs
->location
);
3204 /* enable/disable screener regs for the flow entry */
3205 t2_scr
= GEM_BFINS(ETHTEN
, enable
, t2_scr
);
3207 /* only enable fields with no masking */
3208 tp4sp_m
= &(fs
->m_u
.tcp_ip4_spec
);
3210 if (enable
&& (tp4sp_m
->ip4src
== 0xFFFFFFFF))
3211 t2_scr
= GEM_BFINS(CMPAEN
, 1, t2_scr
);
3213 t2_scr
= GEM_BFINS(CMPAEN
, 0, t2_scr
);
3215 if (enable
&& (tp4sp_m
->ip4dst
== 0xFFFFFFFF))
3216 t2_scr
= GEM_BFINS(CMPBEN
, 1, t2_scr
);
3218 t2_scr
= GEM_BFINS(CMPBEN
, 0, t2_scr
);
3220 if (enable
&& ((tp4sp_m
->psrc
== 0xFFFF) || (tp4sp_m
->pdst
== 0xFFFF)))
3221 t2_scr
= GEM_BFINS(CMPCEN
, 1, t2_scr
);
3223 t2_scr
= GEM_BFINS(CMPCEN
, 0, t2_scr
);
3225 gem_writel_n(bp
, SCRT2
, fs
->location
, t2_scr
);
3229 static void gem_prog_cmp_regs(struct macb
*bp
, struct ethtool_rx_flow_spec
*fs
)
3231 struct ethtool_tcpip4_spec
*tp4sp_v
, *tp4sp_m
;
3232 uint16_t index
= fs
->location
;
3238 tp4sp_v
= &(fs
->h_u
.tcp_ip4_spec
);
3239 tp4sp_m
= &(fs
->m_u
.tcp_ip4_spec
);
3241 /* ignore field if any masking set */
3242 if (tp4sp_m
->ip4src
== 0xFFFFFFFF) {
3243 /* 1st compare reg - IP source address */
3246 w0
= tp4sp_v
->ip4src
;
3247 w1
= GEM_BFINS(T2DISMSK
, 1, w1
); /* 32-bit compare */
3248 w1
= GEM_BFINS(T2CMPOFST
, GEM_T2COMPOFST_ETYPE
, w1
);
3249 w1
= GEM_BFINS(T2OFST
, ETYPE_SRCIP_OFFSET
, w1
);
3250 gem_writel_n(bp
, T2CMPW0
, T2CMP_OFST(GEM_IP4SRC_CMP(index
)), w0
);
3251 gem_writel_n(bp
, T2CMPW1
, T2CMP_OFST(GEM_IP4SRC_CMP(index
)), w1
);
3255 /* ignore field if any masking set */
3256 if (tp4sp_m
->ip4dst
== 0xFFFFFFFF) {
3257 /* 2nd compare reg - IP destination address */
3260 w0
= tp4sp_v
->ip4dst
;
3261 w1
= GEM_BFINS(T2DISMSK
, 1, w1
); /* 32-bit compare */
3262 w1
= GEM_BFINS(T2CMPOFST
, GEM_T2COMPOFST_ETYPE
, w1
);
3263 w1
= GEM_BFINS(T2OFST
, ETYPE_DSTIP_OFFSET
, w1
);
3264 gem_writel_n(bp
, T2CMPW0
, T2CMP_OFST(GEM_IP4DST_CMP(index
)), w0
);
3265 gem_writel_n(bp
, T2CMPW1
, T2CMP_OFST(GEM_IP4DST_CMP(index
)), w1
);
3269 /* ignore both port fields if masking set in both */
3270 if ((tp4sp_m
->psrc
== 0xFFFF) || (tp4sp_m
->pdst
== 0xFFFF)) {
3271 /* 3rd compare reg - source port, destination port */
3274 w1
= GEM_BFINS(T2CMPOFST
, GEM_T2COMPOFST_IPHDR
, w1
);
3275 if (tp4sp_m
->psrc
== tp4sp_m
->pdst
) {
3276 w0
= GEM_BFINS(T2MASK
, tp4sp_v
->psrc
, w0
);
3277 w0
= GEM_BFINS(T2CMP
, tp4sp_v
->pdst
, w0
);
3278 w1
= GEM_BFINS(T2DISMSK
, 1, w1
); /* 32-bit compare */
3279 w1
= GEM_BFINS(T2OFST
, IPHDR_SRCPORT_OFFSET
, w1
);
3281 /* only one port definition */
3282 w1
= GEM_BFINS(T2DISMSK
, 0, w1
); /* 16-bit compare */
3283 w0
= GEM_BFINS(T2MASK
, 0xFFFF, w0
);
3284 if (tp4sp_m
->psrc
== 0xFFFF) { /* src port */
3285 w0
= GEM_BFINS(T2CMP
, tp4sp_v
->psrc
, w0
);
3286 w1
= GEM_BFINS(T2OFST
, IPHDR_SRCPORT_OFFSET
, w1
);
3287 } else { /* dst port */
3288 w0
= GEM_BFINS(T2CMP
, tp4sp_v
->pdst
, w0
);
3289 w1
= GEM_BFINS(T2OFST
, IPHDR_DSTPORT_OFFSET
, w1
);
3292 gem_writel_n(bp
, T2CMPW0
, T2CMP_OFST(GEM_PORT_CMP(index
)), w0
);
3293 gem_writel_n(bp
, T2CMPW1
, T2CMP_OFST(GEM_PORT_CMP(index
)), w1
);
3298 t2_scr
= GEM_BFINS(QUEUE
, (fs
->ring_cookie
) & 0xFF, t2_scr
);
3299 t2_scr
= GEM_BFINS(ETHT2IDX
, SCRT2_ETHT
, t2_scr
);
3301 t2_scr
= GEM_BFINS(CMPA
, GEM_IP4SRC_CMP(index
), t2_scr
);
3303 t2_scr
= GEM_BFINS(CMPB
, GEM_IP4DST_CMP(index
), t2_scr
);
3305 t2_scr
= GEM_BFINS(CMPC
, GEM_PORT_CMP(index
), t2_scr
);
3306 gem_writel_n(bp
, SCRT2
, index
, t2_scr
);
3309 static int gem_add_flow_filter(struct net_device
*netdev
,
3310 struct ethtool_rxnfc
*cmd
)
3312 struct macb
*bp
= netdev_priv(netdev
);
3313 struct ethtool_rx_flow_spec
*fs
= &cmd
->fs
;
3314 struct ethtool_rx_fs_item
*item
, *newfs
;
3315 unsigned long flags
;
3319 newfs
= kmalloc(sizeof(*newfs
), GFP_KERNEL
);
3322 memcpy(&newfs
->fs
, fs
, sizeof(newfs
->fs
));
3325 "Adding flow filter entry,type=%u,queue=%u,loc=%u,src=%08X,dst=%08X,ps=%u,pd=%u\n",
3326 fs
->flow_type
, (int)fs
->ring_cookie
, fs
->location
,
3327 htonl(fs
->h_u
.tcp_ip4_spec
.ip4src
),
3328 htonl(fs
->h_u
.tcp_ip4_spec
.ip4dst
),
3329 htons(fs
->h_u
.tcp_ip4_spec
.psrc
), htons(fs
->h_u
.tcp_ip4_spec
.pdst
));
3331 spin_lock_irqsave(&bp
->rx_fs_lock
, flags
);
3333 /* find correct place to add in list */
3334 list_for_each_entry(item
, &bp
->rx_fs_list
.list
, list
) {
3335 if (item
->fs
.location
> newfs
->fs
.location
) {
3336 list_add_tail(&newfs
->list
, &item
->list
);
3339 } else if (item
->fs
.location
== fs
->location
) {
3340 netdev_err(netdev
, "Rule not added: location %d not free!\n",
3347 list_add_tail(&newfs
->list
, &bp
->rx_fs_list
.list
);
3349 gem_prog_cmp_regs(bp
, fs
);
3350 bp
->rx_fs_list
.count
++;
3351 /* enable filtering if NTUPLE on */
3352 gem_enable_flow_filters(bp
, 1);
3354 spin_unlock_irqrestore(&bp
->rx_fs_lock
, flags
);
3358 spin_unlock_irqrestore(&bp
->rx_fs_lock
, flags
);
3363 static int gem_del_flow_filter(struct net_device
*netdev
,
3364 struct ethtool_rxnfc
*cmd
)
3366 struct macb
*bp
= netdev_priv(netdev
);
3367 struct ethtool_rx_fs_item
*item
;
3368 struct ethtool_rx_flow_spec
*fs
;
3369 unsigned long flags
;
3371 spin_lock_irqsave(&bp
->rx_fs_lock
, flags
);
3373 list_for_each_entry(item
, &bp
->rx_fs_list
.list
, list
) {
3374 if (item
->fs
.location
== cmd
->fs
.location
) {
3375 /* disable screener regs for the flow entry */
3378 "Deleting flow filter entry,type=%u,queue=%u,loc=%u,src=%08X,dst=%08X,ps=%u,pd=%u\n",
3379 fs
->flow_type
, (int)fs
->ring_cookie
, fs
->location
,
3380 htonl(fs
->h_u
.tcp_ip4_spec
.ip4src
),
3381 htonl(fs
->h_u
.tcp_ip4_spec
.ip4dst
),
3382 htons(fs
->h_u
.tcp_ip4_spec
.psrc
),
3383 htons(fs
->h_u
.tcp_ip4_spec
.pdst
));
3385 gem_writel_n(bp
, SCRT2
, fs
->location
, 0);
3387 list_del(&item
->list
);
3388 bp
->rx_fs_list
.count
--;
3389 spin_unlock_irqrestore(&bp
->rx_fs_lock
, flags
);
3395 spin_unlock_irqrestore(&bp
->rx_fs_lock
, flags
);
3399 static int gem_get_flow_entry(struct net_device
*netdev
,
3400 struct ethtool_rxnfc
*cmd
)
3402 struct macb
*bp
= netdev_priv(netdev
);
3403 struct ethtool_rx_fs_item
*item
;
3405 list_for_each_entry(item
, &bp
->rx_fs_list
.list
, list
) {
3406 if (item
->fs
.location
== cmd
->fs
.location
) {
3407 memcpy(&cmd
->fs
, &item
->fs
, sizeof(cmd
->fs
));
3414 static int gem_get_all_flow_entries(struct net_device
*netdev
,
3415 struct ethtool_rxnfc
*cmd
, u32
*rule_locs
)
3417 struct macb
*bp
= netdev_priv(netdev
);
3418 struct ethtool_rx_fs_item
*item
;
3421 list_for_each_entry(item
, &bp
->rx_fs_list
.list
, list
) {
3422 if (cnt
== cmd
->rule_cnt
)
3424 rule_locs
[cnt
] = item
->fs
.location
;
3427 cmd
->data
= bp
->max_tuples
;
3428 cmd
->rule_cnt
= cnt
;
3433 static int gem_get_rxnfc(struct net_device
*netdev
, struct ethtool_rxnfc
*cmd
,
3436 struct macb
*bp
= netdev_priv(netdev
);
3440 case ETHTOOL_GRXRINGS
:
3441 cmd
->data
= bp
->num_queues
;
3443 case ETHTOOL_GRXCLSRLCNT
:
3444 cmd
->rule_cnt
= bp
->rx_fs_list
.count
;
3446 case ETHTOOL_GRXCLSRULE
:
3447 ret
= gem_get_flow_entry(netdev
, cmd
);
3449 case ETHTOOL_GRXCLSRLALL
:
3450 ret
= gem_get_all_flow_entries(netdev
, cmd
, rule_locs
);
3454 "Command parameter %d is not supported\n", cmd
->cmd
);
3461 static int gem_set_rxnfc(struct net_device
*netdev
, struct ethtool_rxnfc
*cmd
)
3463 struct macb
*bp
= netdev_priv(netdev
);
3467 case ETHTOOL_SRXCLSRLINS
:
3468 if ((cmd
->fs
.location
>= bp
->max_tuples
)
3469 || (cmd
->fs
.ring_cookie
>= bp
->num_queues
)) {
3473 ret
= gem_add_flow_filter(netdev
, cmd
);
3475 case ETHTOOL_SRXCLSRLDEL
:
3476 ret
= gem_del_flow_filter(netdev
, cmd
);
3480 "Command parameter %d is not supported\n", cmd
->cmd
);
3487 static const struct ethtool_ops macb_ethtool_ops
= {
3488 .get_regs_len
= macb_get_regs_len
,
3489 .get_regs
= macb_get_regs
,
3490 .get_link
= ethtool_op_get_link
,
3491 .get_ts_info
= ethtool_op_get_ts_info
,
3492 .get_wol
= macb_get_wol
,
3493 .set_wol
= macb_set_wol
,
3494 .get_link_ksettings
= macb_get_link_ksettings
,
3495 .set_link_ksettings
= macb_set_link_ksettings
,
3496 .get_ringparam
= macb_get_ringparam
,
3497 .set_ringparam
= macb_set_ringparam
,
3500 static const struct ethtool_ops gem_ethtool_ops
= {
3501 .get_regs_len
= macb_get_regs_len
,
3502 .get_regs
= macb_get_regs
,
3503 .get_wol
= macb_get_wol
,
3504 .set_wol
= macb_set_wol
,
3505 .get_link
= ethtool_op_get_link
,
3506 .get_ts_info
= macb_get_ts_info
,
3507 .get_ethtool_stats
= gem_get_ethtool_stats
,
3508 .get_strings
= gem_get_ethtool_strings
,
3509 .get_sset_count
= gem_get_sset_count
,
3510 .get_link_ksettings
= macb_get_link_ksettings
,
3511 .set_link_ksettings
= macb_set_link_ksettings
,
3512 .get_ringparam
= macb_get_ringparam
,
3513 .set_ringparam
= macb_set_ringparam
,
3514 .get_rxnfc
= gem_get_rxnfc
,
3515 .set_rxnfc
= gem_set_rxnfc
,
3518 static int macb_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
3520 struct macb
*bp
= netdev_priv(dev
);
3522 if (!netif_running(dev
))
3528 return bp
->ptp_info
->set_hwtst(dev
, rq
, cmd
);
3530 return bp
->ptp_info
->get_hwtst(dev
, rq
);
3534 return phylink_mii_ioctl(bp
->phylink
, rq
, cmd
);
3537 static inline void macb_set_txcsum_feature(struct macb
*bp
,
3538 netdev_features_t features
)
3542 if (!macb_is_gem(bp
))
3545 val
= gem_readl(bp
, DMACFG
);
3546 if (features
& NETIF_F_HW_CSUM
)
3547 val
|= GEM_BIT(TXCOEN
);
3549 val
&= ~GEM_BIT(TXCOEN
);
3551 gem_writel(bp
, DMACFG
, val
);
3554 static inline void macb_set_rxcsum_feature(struct macb
*bp
,
3555 netdev_features_t features
)
3557 struct net_device
*netdev
= bp
->dev
;
3560 if (!macb_is_gem(bp
))
3563 val
= gem_readl(bp
, NCFGR
);
3564 if ((features
& NETIF_F_RXCSUM
) && !(netdev
->flags
& IFF_PROMISC
))
3565 val
|= GEM_BIT(RXCOEN
);
3567 val
&= ~GEM_BIT(RXCOEN
);
3569 gem_writel(bp
, NCFGR
, val
);
3572 static inline void macb_set_rxflow_feature(struct macb
*bp
,
3573 netdev_features_t features
)
3575 if (!macb_is_gem(bp
))
3578 gem_enable_flow_filters(bp
, !!(features
& NETIF_F_NTUPLE
));
3581 static int macb_set_features(struct net_device
*netdev
,
3582 netdev_features_t features
)
3584 struct macb
*bp
= netdev_priv(netdev
);
3585 netdev_features_t changed
= features
^ netdev
->features
;
3587 /* TX checksum offload */
3588 if (changed
& NETIF_F_HW_CSUM
)
3589 macb_set_txcsum_feature(bp
, features
);
3591 /* RX checksum offload */
3592 if (changed
& NETIF_F_RXCSUM
)
3593 macb_set_rxcsum_feature(bp
, features
);
3595 /* RX Flow Filters */
3596 if (changed
& NETIF_F_NTUPLE
)
3597 macb_set_rxflow_feature(bp
, features
);
3602 static void macb_restore_features(struct macb
*bp
)
3604 struct net_device
*netdev
= bp
->dev
;
3605 netdev_features_t features
= netdev
->features
;
3607 /* TX checksum offload */
3608 macb_set_txcsum_feature(bp
, features
);
3610 /* RX checksum offload */
3611 macb_set_rxcsum_feature(bp
, features
);
3613 /* RX Flow Filters */
3614 macb_set_rxflow_feature(bp
, features
);
3617 static const struct net_device_ops macb_netdev_ops
= {
3618 .ndo_open
= macb_open
,
3619 .ndo_stop
= macb_close
,
3620 .ndo_start_xmit
= macb_start_xmit
,
3621 .ndo_set_rx_mode
= macb_set_rx_mode
,
3622 .ndo_get_stats
= macb_get_stats
,
3623 .ndo_do_ioctl
= macb_ioctl
,
3624 .ndo_validate_addr
= eth_validate_addr
,
3625 .ndo_change_mtu
= macb_change_mtu
,
3626 .ndo_set_mac_address
= eth_mac_addr
,
3627 #ifdef CONFIG_NET_POLL_CONTROLLER
3628 .ndo_poll_controller
= macb_poll_controller
,
3630 .ndo_set_features
= macb_set_features
,
3631 .ndo_features_check
= macb_features_check
,
3634 /* Configure peripheral capabilities according to device tree
3635 * and integration options used
3637 static void macb_configure_caps(struct macb
*bp
,
3638 const struct macb_config
*dt_conf
)
3643 bp
->caps
= dt_conf
->caps
;
3645 if (hw_is_gem(bp
->regs
, bp
->native_io
)) {
3646 bp
->caps
|= MACB_CAPS_MACB_IS_GEM
;
3648 dcfg
= gem_readl(bp
, DCFG1
);
3649 if (GEM_BFEXT(IRQCOR
, dcfg
) == 0)
3650 bp
->caps
|= MACB_CAPS_ISR_CLEAR_ON_WRITE
;
3651 if (GEM_BFEXT(NO_PCS
, dcfg
) == 0)
3652 bp
->caps
|= MACB_CAPS_PCS
;
3653 dcfg
= gem_readl(bp
, DCFG12
);
3654 if (GEM_BFEXT(HIGH_SPEED
, dcfg
) == 1)
3655 bp
->caps
|= MACB_CAPS_HIGH_SPEED
;
3656 dcfg
= gem_readl(bp
, DCFG2
);
3657 if ((dcfg
& (GEM_BIT(RX_PKT_BUFF
) | GEM_BIT(TX_PKT_BUFF
))) == 0)
3658 bp
->caps
|= MACB_CAPS_FIFO_MODE
;
3659 #ifdef CONFIG_MACB_USE_HWSTAMP
3660 if (gem_has_ptp(bp
)) {
3661 if (!GEM_BFEXT(TSU
, gem_readl(bp
, DCFG5
)))
3662 dev_err(&bp
->pdev
->dev
,
3663 "GEM doesn't support hardware ptp.\n");
3665 bp
->hw_dma_cap
|= HW_DMA_CAP_PTP
;
3666 bp
->ptp_info
= &gem_ptp_info
;
3672 dev_dbg(&bp
->pdev
->dev
, "Cadence caps 0x%08x\n", bp
->caps
);
3675 static void macb_probe_queues(void __iomem
*mem
,
3677 unsigned int *queue_mask
,
3678 unsigned int *num_queues
)
3683 /* is it macb or gem ?
3685 * We need to read directly from the hardware here because
3686 * we are early in the probe process and don't have the
3687 * MACB_CAPS_MACB_IS_GEM flag positioned
3689 if (!hw_is_gem(mem
, native_io
))
3692 /* bit 0 is never set but queue 0 always exists */
3693 *queue_mask
|= readl_relaxed(mem
+ GEM_DCFG6
) & 0xff;
3694 *num_queues
= hweight32(*queue_mask
);
3697 static void macb_clks_disable(struct clk
*pclk
, struct clk
*hclk
, struct clk
*tx_clk
,
3698 struct clk
*rx_clk
, struct clk
*tsu_clk
)
3700 struct clk_bulk_data clks
[] = {
3701 { .clk
= tsu_clk
, },
3708 clk_bulk_disable_unprepare(ARRAY_SIZE(clks
), clks
);
3711 static int macb_clk_init(struct platform_device
*pdev
, struct clk
**pclk
,
3712 struct clk
**hclk
, struct clk
**tx_clk
,
3713 struct clk
**rx_clk
, struct clk
**tsu_clk
)
3715 struct macb_platform_data
*pdata
;
3718 pdata
= dev_get_platdata(&pdev
->dev
);
3720 *pclk
= pdata
->pclk
;
3721 *hclk
= pdata
->hclk
;
3723 *pclk
= devm_clk_get(&pdev
->dev
, "pclk");
3724 *hclk
= devm_clk_get(&pdev
->dev
, "hclk");
3727 if (IS_ERR_OR_NULL(*pclk
)) {
3728 err
= IS_ERR(*pclk
) ? PTR_ERR(*pclk
) : -ENODEV
;
3729 dev_err(&pdev
->dev
, "failed to get macb_clk (%d)\n", err
);
3733 if (IS_ERR_OR_NULL(*hclk
)) {
3734 err
= IS_ERR(*hclk
) ? PTR_ERR(*hclk
) : -ENODEV
;
3735 dev_err(&pdev
->dev
, "failed to get hclk (%d)\n", err
);
3739 *tx_clk
= devm_clk_get_optional(&pdev
->dev
, "tx_clk");
3740 if (IS_ERR(*tx_clk
))
3741 return PTR_ERR(*tx_clk
);
3743 *rx_clk
= devm_clk_get_optional(&pdev
->dev
, "rx_clk");
3744 if (IS_ERR(*rx_clk
))
3745 return PTR_ERR(*rx_clk
);
3747 *tsu_clk
= devm_clk_get_optional(&pdev
->dev
, "tsu_clk");
3748 if (IS_ERR(*tsu_clk
))
3749 return PTR_ERR(*tsu_clk
);
3751 err
= clk_prepare_enable(*pclk
);
3753 dev_err(&pdev
->dev
, "failed to enable pclk (%d)\n", err
);
3757 err
= clk_prepare_enable(*hclk
);
3759 dev_err(&pdev
->dev
, "failed to enable hclk (%d)\n", err
);
3760 goto err_disable_pclk
;
3763 err
= clk_prepare_enable(*tx_clk
);
3765 dev_err(&pdev
->dev
, "failed to enable tx_clk (%d)\n", err
);
3766 goto err_disable_hclk
;
3769 err
= clk_prepare_enable(*rx_clk
);
3771 dev_err(&pdev
->dev
, "failed to enable rx_clk (%d)\n", err
);
3772 goto err_disable_txclk
;
3775 err
= clk_prepare_enable(*tsu_clk
);
3777 dev_err(&pdev
->dev
, "failed to enable tsu_clk (%d)\n", err
);
3778 goto err_disable_rxclk
;
3784 clk_disable_unprepare(*rx_clk
);
3787 clk_disable_unprepare(*tx_clk
);
3790 clk_disable_unprepare(*hclk
);
3793 clk_disable_unprepare(*pclk
);
3798 static int macb_init(struct platform_device
*pdev
)
3800 struct net_device
*dev
= platform_get_drvdata(pdev
);
3801 unsigned int hw_q
, q
;
3802 struct macb
*bp
= netdev_priv(dev
);
3803 struct macb_queue
*queue
;
3807 bp
->tx_ring_size
= DEFAULT_TX_RING_SIZE
;
3808 bp
->rx_ring_size
= DEFAULT_RX_RING_SIZE
;
3810 /* set the queue register mapping once for all: queue0 has a special
3811 * register mapping but we don't want to test the queue index then
3812 * compute the corresponding register offset at run time.
3814 for (hw_q
= 0, q
= 0; hw_q
< MACB_MAX_QUEUES
; ++hw_q
) {
3815 if (!(bp
->queue_mask
& (1 << hw_q
)))
3818 queue
= &bp
->queues
[q
];
3820 netif_napi_add(dev
, &queue
->napi
, macb_poll
, NAPI_POLL_WEIGHT
);
3822 queue
->ISR
= GEM_ISR(hw_q
- 1);
3823 queue
->IER
= GEM_IER(hw_q
- 1);
3824 queue
->IDR
= GEM_IDR(hw_q
- 1);
3825 queue
->IMR
= GEM_IMR(hw_q
- 1);
3826 queue
->TBQP
= GEM_TBQP(hw_q
- 1);
3827 queue
->RBQP
= GEM_RBQP(hw_q
- 1);
3828 queue
->RBQS
= GEM_RBQS(hw_q
- 1);
3829 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
3830 if (bp
->hw_dma_cap
& HW_DMA_CAP_64B
) {
3831 queue
->TBQPH
= GEM_TBQPH(hw_q
- 1);
3832 queue
->RBQPH
= GEM_RBQPH(hw_q
- 1);
3836 /* queue0 uses legacy registers */
3837 queue
->ISR
= MACB_ISR
;
3838 queue
->IER
= MACB_IER
;
3839 queue
->IDR
= MACB_IDR
;
3840 queue
->IMR
= MACB_IMR
;
3841 queue
->TBQP
= MACB_TBQP
;
3842 queue
->RBQP
= MACB_RBQP
;
3843 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
3844 if (bp
->hw_dma_cap
& HW_DMA_CAP_64B
) {
3845 queue
->TBQPH
= MACB_TBQPH
;
3846 queue
->RBQPH
= MACB_RBQPH
;
3851 /* get irq: here we use the linux queue index, not the hardware
3852 * queue index. the queue irq definitions in the device tree
3853 * must remove the optional gaps that could exist in the
3854 * hardware queue mask.
3856 queue
->irq
= platform_get_irq(pdev
, q
);
3857 err
= devm_request_irq(&pdev
->dev
, queue
->irq
, macb_interrupt
,
3858 IRQF_SHARED
, dev
->name
, queue
);
3861 "Unable to request IRQ %d (error %d)\n",
3866 INIT_WORK(&queue
->tx_error_task
, macb_tx_error_task
);
3870 dev
->netdev_ops
= &macb_netdev_ops
;
3872 /* setup appropriated routines according to adapter type */
3873 if (macb_is_gem(bp
)) {
3874 bp
->max_tx_length
= GEM_MAX_TX_LEN
;
3875 bp
->macbgem_ops
.mog_alloc_rx_buffers
= gem_alloc_rx_buffers
;
3876 bp
->macbgem_ops
.mog_free_rx_buffers
= gem_free_rx_buffers
;
3877 bp
->macbgem_ops
.mog_init_rings
= gem_init_rings
;
3878 bp
->macbgem_ops
.mog_rx
= gem_rx
;
3879 dev
->ethtool_ops
= &gem_ethtool_ops
;
3881 bp
->max_tx_length
= MACB_MAX_TX_LEN
;
3882 bp
->macbgem_ops
.mog_alloc_rx_buffers
= macb_alloc_rx_buffers
;
3883 bp
->macbgem_ops
.mog_free_rx_buffers
= macb_free_rx_buffers
;
3884 bp
->macbgem_ops
.mog_init_rings
= macb_init_rings
;
3885 bp
->macbgem_ops
.mog_rx
= macb_rx
;
3886 dev
->ethtool_ops
= &macb_ethtool_ops
;
3890 dev
->hw_features
= NETIF_F_SG
;
3892 /* Check LSO capability */
3893 if (GEM_BFEXT(PBUF_LSO
, gem_readl(bp
, DCFG6
)))
3894 dev
->hw_features
|= MACB_NETIF_LSO
;
3896 /* Checksum offload is only available on gem with packet buffer */
3897 if (macb_is_gem(bp
) && !(bp
->caps
& MACB_CAPS_FIFO_MODE
))
3898 dev
->hw_features
|= NETIF_F_HW_CSUM
| NETIF_F_RXCSUM
;
3899 if (bp
->caps
& MACB_CAPS_SG_DISABLED
)
3900 dev
->hw_features
&= ~NETIF_F_SG
;
3901 dev
->features
= dev
->hw_features
;
3903 /* Check RX Flow Filters support.
3904 * Max Rx flows set by availability of screeners & compare regs:
3905 * each 4-tuple define requires 1 T2 screener reg + 3 compare regs
3907 reg
= gem_readl(bp
, DCFG8
);
3908 bp
->max_tuples
= min((GEM_BFEXT(SCR2CMP
, reg
) / 3),
3909 GEM_BFEXT(T2SCR
, reg
));
3910 if (bp
->max_tuples
> 0) {
3911 /* also needs one ethtype match to check IPv4 */
3912 if (GEM_BFEXT(SCR2ETH
, reg
) > 0) {
3913 /* program this reg now */
3915 reg
= GEM_BFINS(ETHTCMP
, (uint16_t)ETH_P_IP
, reg
);
3916 gem_writel_n(bp
, ETHT
, SCRT2_ETHT
, reg
);
3917 /* Filtering is supported in hw but don't enable it in kernel now */
3918 dev
->hw_features
|= NETIF_F_NTUPLE
;
3919 /* init Rx flow definitions */
3920 INIT_LIST_HEAD(&bp
->rx_fs_list
.list
);
3921 bp
->rx_fs_list
.count
= 0;
3922 spin_lock_init(&bp
->rx_fs_lock
);
3927 if (!(bp
->caps
& MACB_CAPS_USRIO_DISABLED
)) {
3929 if (phy_interface_mode_is_rgmii(bp
->phy_interface
))
3930 val
= bp
->usrio
->rgmii
;
3931 else if (bp
->phy_interface
== PHY_INTERFACE_MODE_RMII
&&
3932 (bp
->caps
& MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII
))
3933 val
= bp
->usrio
->rmii
;
3934 else if (!(bp
->caps
& MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII
))
3935 val
= bp
->usrio
->mii
;
3937 if (bp
->caps
& MACB_CAPS_USRIO_HAS_CLKEN
)
3938 val
|= bp
->usrio
->refclk
;
3940 macb_or_gem_writel(bp
, USRIO
, val
);
3943 /* Set MII management clock divider */
3944 val
= macb_mdc_clk_div(bp
);
3945 val
|= macb_dbw(bp
);
3946 if (bp
->phy_interface
== PHY_INTERFACE_MODE_SGMII
)
3947 val
|= GEM_BIT(SGMIIEN
) | GEM_BIT(PCSSEL
);
3948 macb_writel(bp
, NCFGR
, val
);
3953 #if defined(CONFIG_OF)
3954 /* 1518 rounded up */
3955 #define AT91ETHER_MAX_RBUFF_SZ 0x600
3956 /* max number of receive buffers */
3957 #define AT91ETHER_MAX_RX_DESCR 9
3959 static struct sifive_fu540_macb_mgmt
*mgmt
;
3961 static int at91ether_alloc_coherent(struct macb
*lp
)
3963 struct macb_queue
*q
= &lp
->queues
[0];
3965 q
->rx_ring
= dma_alloc_coherent(&lp
->pdev
->dev
,
3966 (AT91ETHER_MAX_RX_DESCR
*
3967 macb_dma_desc_get_size(lp
)),
3968 &q
->rx_ring_dma
, GFP_KERNEL
);
3972 q
->rx_buffers
= dma_alloc_coherent(&lp
->pdev
->dev
,
3973 AT91ETHER_MAX_RX_DESCR
*
3974 AT91ETHER_MAX_RBUFF_SZ
,
3975 &q
->rx_buffers_dma
, GFP_KERNEL
);
3976 if (!q
->rx_buffers
) {
3977 dma_free_coherent(&lp
->pdev
->dev
,
3978 AT91ETHER_MAX_RX_DESCR
*
3979 macb_dma_desc_get_size(lp
),
3980 q
->rx_ring
, q
->rx_ring_dma
);
3988 static void at91ether_free_coherent(struct macb
*lp
)
3990 struct macb_queue
*q
= &lp
->queues
[0];
3993 dma_free_coherent(&lp
->pdev
->dev
,
3994 AT91ETHER_MAX_RX_DESCR
*
3995 macb_dma_desc_get_size(lp
),
3996 q
->rx_ring
, q
->rx_ring_dma
);
4000 if (q
->rx_buffers
) {
4001 dma_free_coherent(&lp
->pdev
->dev
,
4002 AT91ETHER_MAX_RX_DESCR
*
4003 AT91ETHER_MAX_RBUFF_SZ
,
4004 q
->rx_buffers
, q
->rx_buffers_dma
);
4005 q
->rx_buffers
= NULL
;
4009 /* Initialize and start the Receiver and Transmit subsystems */
4010 static int at91ether_start(struct macb
*lp
)
4012 struct macb_queue
*q
= &lp
->queues
[0];
4013 struct macb_dma_desc
*desc
;
4018 ret
= at91ether_alloc_coherent(lp
);
4022 addr
= q
->rx_buffers_dma
;
4023 for (i
= 0; i
< AT91ETHER_MAX_RX_DESCR
; i
++) {
4024 desc
= macb_rx_desc(q
, i
);
4025 macb_set_addr(lp
, desc
, addr
);
4027 addr
+= AT91ETHER_MAX_RBUFF_SZ
;
4030 /* Set the Wrap bit on the last descriptor */
4031 desc
->addr
|= MACB_BIT(RX_WRAP
);
4033 /* Reset buffer index */
4036 /* Program address of descriptor list in Rx Buffer Queue register */
4037 macb_writel(lp
, RBQP
, q
->rx_ring_dma
);
4039 /* Enable Receive and Transmit */
4040 ctl
= macb_readl(lp
, NCR
);
4041 macb_writel(lp
, NCR
, ctl
| MACB_BIT(RE
) | MACB_BIT(TE
));
4043 /* Enable MAC interrupts */
4044 macb_writel(lp
, IER
, MACB_BIT(RCOMP
) |
4046 MACB_BIT(ISR_TUND
) |
4049 MACB_BIT(ISR_ROVR
) |
4055 static void at91ether_stop(struct macb
*lp
)
4059 /* Disable MAC interrupts */
4060 macb_writel(lp
, IDR
, MACB_BIT(RCOMP
) |
4062 MACB_BIT(ISR_TUND
) |
4065 MACB_BIT(ISR_ROVR
) |
4068 /* Disable Receiver and Transmitter */
4069 ctl
= macb_readl(lp
, NCR
);
4070 macb_writel(lp
, NCR
, ctl
& ~(MACB_BIT(TE
) | MACB_BIT(RE
)));
4072 /* Free resources. */
4073 at91ether_free_coherent(lp
);
4076 /* Open the ethernet interface */
4077 static int at91ether_open(struct net_device
*dev
)
4079 struct macb
*lp
= netdev_priv(dev
);
4083 ret
= pm_runtime_get_sync(&lp
->pdev
->dev
);
4085 pm_runtime_put_noidle(&lp
->pdev
->dev
);
4089 /* Clear internal statistics */
4090 ctl
= macb_readl(lp
, NCR
);
4091 macb_writel(lp
, NCR
, ctl
| MACB_BIT(CLRSTAT
));
4093 macb_set_hwaddr(lp
);
4095 ret
= at91ether_start(lp
);
4099 ret
= macb_phylink_connect(lp
);
4103 netif_start_queue(dev
);
4110 pm_runtime_put_sync(&lp
->pdev
->dev
);
4114 /* Close the interface */
4115 static int at91ether_close(struct net_device
*dev
)
4117 struct macb
*lp
= netdev_priv(dev
);
4119 netif_stop_queue(dev
);
4121 phylink_stop(lp
->phylink
);
4122 phylink_disconnect_phy(lp
->phylink
);
4126 return pm_runtime_put(&lp
->pdev
->dev
);
4129 /* Transmit packet */
4130 static netdev_tx_t
at91ether_start_xmit(struct sk_buff
*skb
,
4131 struct net_device
*dev
)
4133 struct macb
*lp
= netdev_priv(dev
);
4135 if (macb_readl(lp
, TSR
) & MACB_BIT(RM9200_BNQ
)) {
4138 netif_stop_queue(dev
);
4140 /* Store packet information (to free when Tx completed) */
4141 lp
->rm9200_txq
[desc
].skb
= skb
;
4142 lp
->rm9200_txq
[desc
].size
= skb
->len
;
4143 lp
->rm9200_txq
[desc
].mapping
= dma_map_single(&lp
->pdev
->dev
, skb
->data
,
4144 skb
->len
, DMA_TO_DEVICE
);
4145 if (dma_mapping_error(&lp
->pdev
->dev
, lp
->rm9200_txq
[desc
].mapping
)) {
4146 dev_kfree_skb_any(skb
);
4147 dev
->stats
.tx_dropped
++;
4148 netdev_err(dev
, "%s: DMA mapping error\n", __func__
);
4149 return NETDEV_TX_OK
;
4152 /* Set address of the data in the Transmit Address register */
4153 macb_writel(lp
, TAR
, lp
->rm9200_txq
[desc
].mapping
);
4154 /* Set length of the packet in the Transmit Control register */
4155 macb_writel(lp
, TCR
, skb
->len
);
4158 netdev_err(dev
, "%s called, but device is busy!\n", __func__
);
4159 return NETDEV_TX_BUSY
;
4162 return NETDEV_TX_OK
;
4165 /* Extract received frame from buffer descriptors and sent to upper layers.
4166 * (Called from interrupt context)
4168 static void at91ether_rx(struct net_device
*dev
)
4170 struct macb
*lp
= netdev_priv(dev
);
4171 struct macb_queue
*q
= &lp
->queues
[0];
4172 struct macb_dma_desc
*desc
;
4173 unsigned char *p_recv
;
4174 struct sk_buff
*skb
;
4175 unsigned int pktlen
;
4177 desc
= macb_rx_desc(q
, q
->rx_tail
);
4178 while (desc
->addr
& MACB_BIT(RX_USED
)) {
4179 p_recv
= q
->rx_buffers
+ q
->rx_tail
* AT91ETHER_MAX_RBUFF_SZ
;
4180 pktlen
= MACB_BF(RX_FRMLEN
, desc
->ctrl
);
4181 skb
= netdev_alloc_skb(dev
, pktlen
+ 2);
4183 skb_reserve(skb
, 2);
4184 skb_put_data(skb
, p_recv
, pktlen
);
4186 skb
->protocol
= eth_type_trans(skb
, dev
);
4187 dev
->stats
.rx_packets
++;
4188 dev
->stats
.rx_bytes
+= pktlen
;
4191 dev
->stats
.rx_dropped
++;
4194 if (desc
->ctrl
& MACB_BIT(RX_MHASH_MATCH
))
4195 dev
->stats
.multicast
++;
4197 /* reset ownership bit */
4198 desc
->addr
&= ~MACB_BIT(RX_USED
);
4200 /* wrap after last buffer */
4201 if (q
->rx_tail
== AT91ETHER_MAX_RX_DESCR
- 1)
4206 desc
= macb_rx_desc(q
, q
->rx_tail
);
4210 /* MAC interrupt handler */
4211 static irqreturn_t
at91ether_interrupt(int irq
, void *dev_id
)
4213 struct net_device
*dev
= dev_id
;
4214 struct macb
*lp
= netdev_priv(dev
);
4218 /* MAC Interrupt Status register indicates what interrupts are pending.
4219 * It is automatically cleared once read.
4221 intstatus
= macb_readl(lp
, ISR
);
4223 /* Receive complete */
4224 if (intstatus
& MACB_BIT(RCOMP
))
4227 /* Transmit complete */
4228 if (intstatus
& MACB_BIT(TCOMP
)) {
4229 /* The TCOM bit is set even if the transmission failed */
4230 if (intstatus
& (MACB_BIT(ISR_TUND
) | MACB_BIT(ISR_RLE
)))
4231 dev
->stats
.tx_errors
++;
4234 if (lp
->rm9200_txq
[desc
].skb
) {
4235 dev_consume_skb_irq(lp
->rm9200_txq
[desc
].skb
);
4236 lp
->rm9200_txq
[desc
].skb
= NULL
;
4237 dma_unmap_single(&lp
->pdev
->dev
, lp
->rm9200_txq
[desc
].mapping
,
4238 lp
->rm9200_txq
[desc
].size
, DMA_TO_DEVICE
);
4239 dev
->stats
.tx_packets
++;
4240 dev
->stats
.tx_bytes
+= lp
->rm9200_txq
[desc
].size
;
4242 netif_wake_queue(dev
);
4245 /* Work-around for EMAC Errata section 41.3.1 */
4246 if (intstatus
& MACB_BIT(RXUBR
)) {
4247 ctl
= macb_readl(lp
, NCR
);
4248 macb_writel(lp
, NCR
, ctl
& ~MACB_BIT(RE
));
4250 macb_writel(lp
, NCR
, ctl
| MACB_BIT(RE
));
4253 if (intstatus
& MACB_BIT(ISR_ROVR
))
4254 netdev_err(dev
, "ROVR error\n");
4259 #ifdef CONFIG_NET_POLL_CONTROLLER
4260 static void at91ether_poll_controller(struct net_device
*dev
)
4262 unsigned long flags
;
4264 local_irq_save(flags
);
4265 at91ether_interrupt(dev
->irq
, dev
);
4266 local_irq_restore(flags
);
4270 static const struct net_device_ops at91ether_netdev_ops
= {
4271 .ndo_open
= at91ether_open
,
4272 .ndo_stop
= at91ether_close
,
4273 .ndo_start_xmit
= at91ether_start_xmit
,
4274 .ndo_get_stats
= macb_get_stats
,
4275 .ndo_set_rx_mode
= macb_set_rx_mode
,
4276 .ndo_set_mac_address
= eth_mac_addr
,
4277 .ndo_do_ioctl
= macb_ioctl
,
4278 .ndo_validate_addr
= eth_validate_addr
,
4279 #ifdef CONFIG_NET_POLL_CONTROLLER
4280 .ndo_poll_controller
= at91ether_poll_controller
,
4284 static int at91ether_clk_init(struct platform_device
*pdev
, struct clk
**pclk
,
4285 struct clk
**hclk
, struct clk
**tx_clk
,
4286 struct clk
**rx_clk
, struct clk
**tsu_clk
)
4295 *pclk
= devm_clk_get(&pdev
->dev
, "ether_clk");
4297 return PTR_ERR(*pclk
);
4299 err
= clk_prepare_enable(*pclk
);
4301 dev_err(&pdev
->dev
, "failed to enable pclk (%d)\n", err
);
4308 static int at91ether_init(struct platform_device
*pdev
)
4310 struct net_device
*dev
= platform_get_drvdata(pdev
);
4311 struct macb
*bp
= netdev_priv(dev
);
4314 bp
->queues
[0].bp
= bp
;
4316 dev
->netdev_ops
= &at91ether_netdev_ops
;
4317 dev
->ethtool_ops
= &macb_ethtool_ops
;
4319 err
= devm_request_irq(&pdev
->dev
, dev
->irq
, at91ether_interrupt
,
4324 macb_writel(bp
, NCR
, 0);
4326 macb_writel(bp
, NCFGR
, MACB_BF(CLK
, MACB_CLK_DIV32
) | MACB_BIT(BIG
));
4331 static unsigned long fu540_macb_tx_recalc_rate(struct clk_hw
*hw
,
4332 unsigned long parent_rate
)
4337 static long fu540_macb_tx_round_rate(struct clk_hw
*hw
, unsigned long rate
,
4338 unsigned long *parent_rate
)
4340 if (WARN_ON(rate
< 2500000))
4342 else if (rate
== 2500000)
4344 else if (WARN_ON(rate
< 13750000))
4346 else if (WARN_ON(rate
< 25000000))
4348 else if (rate
== 25000000)
4350 else if (WARN_ON(rate
< 75000000))
4352 else if (WARN_ON(rate
< 125000000))
4354 else if (rate
== 125000000)
4357 WARN_ON(rate
> 125000000);
4362 static int fu540_macb_tx_set_rate(struct clk_hw
*hw
, unsigned long rate
,
4363 unsigned long parent_rate
)
4365 rate
= fu540_macb_tx_round_rate(hw
, rate
, &parent_rate
);
4366 if (rate
!= 125000000)
4367 iowrite32(1, mgmt
->reg
);
4369 iowrite32(0, mgmt
->reg
);
4375 static const struct clk_ops fu540_c000_ops
= {
4376 .recalc_rate
= fu540_macb_tx_recalc_rate
,
4377 .round_rate
= fu540_macb_tx_round_rate
,
4378 .set_rate
= fu540_macb_tx_set_rate
,
4381 static int fu540_c000_clk_init(struct platform_device
*pdev
, struct clk
**pclk
,
4382 struct clk
**hclk
, struct clk
**tx_clk
,
4383 struct clk
**rx_clk
, struct clk
**tsu_clk
)
4385 struct clk_init_data init
;
4388 err
= macb_clk_init(pdev
, pclk
, hclk
, tx_clk
, rx_clk
, tsu_clk
);
4392 mgmt
= devm_kzalloc(&pdev
->dev
, sizeof(*mgmt
), GFP_KERNEL
);
4395 goto err_disable_clks
;
4398 init
.name
= "sifive-gemgxl-mgmt";
4399 init
.ops
= &fu540_c000_ops
;
4401 init
.num_parents
= 0;
4404 mgmt
->hw
.init
= &init
;
4406 *tx_clk
= devm_clk_register(&pdev
->dev
, &mgmt
->hw
);
4407 if (IS_ERR(*tx_clk
)) {
4408 err
= PTR_ERR(*tx_clk
);
4409 goto err_disable_clks
;
4412 err
= clk_prepare_enable(*tx_clk
);
4414 dev_err(&pdev
->dev
, "failed to enable tx_clk (%u)\n", err
);
4416 goto err_disable_clks
;
4418 dev_info(&pdev
->dev
, "Registered clk switch '%s'\n", init
.name
);
4424 macb_clks_disable(*pclk
, *hclk
, *tx_clk
, *rx_clk
, *tsu_clk
);
4429 static int fu540_c000_init(struct platform_device
*pdev
)
4431 mgmt
->reg
= devm_platform_ioremap_resource(pdev
, 1);
4432 if (IS_ERR(mgmt
->reg
))
4433 return PTR_ERR(mgmt
->reg
);
4435 return macb_init(pdev
);
4438 static const struct macb_usrio_config macb_default_usrio
= {
4439 .mii
= MACB_BIT(MII
),
4440 .rmii
= MACB_BIT(RMII
),
4441 .rgmii
= GEM_BIT(RGMII
),
4442 .refclk
= MACB_BIT(CLKEN
),
4445 static const struct macb_usrio_config sama7g5_usrio
= {
4453 static const struct macb_config fu540_c000_config
= {
4454 .caps
= MACB_CAPS_GIGABIT_MODE_AVAILABLE
| MACB_CAPS_JUMBO
|
4455 MACB_CAPS_GEM_HAS_PTP
,
4456 .dma_burst_length
= 16,
4457 .clk_init
= fu540_c000_clk_init
,
4458 .init
= fu540_c000_init
,
4459 .jumbo_max_len
= 10240,
4460 .usrio
= &macb_default_usrio
,
4463 static const struct macb_config at91sam9260_config
= {
4464 .caps
= MACB_CAPS_USRIO_HAS_CLKEN
| MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII
,
4465 .clk_init
= macb_clk_init
,
4467 .usrio
= &macb_default_usrio
,
4470 static const struct macb_config sama5d3macb_config
= {
4471 .caps
= MACB_CAPS_SG_DISABLED
4472 | MACB_CAPS_USRIO_HAS_CLKEN
| MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII
,
4473 .clk_init
= macb_clk_init
,
4475 .usrio
= &macb_default_usrio
,
4478 static const struct macb_config pc302gem_config
= {
4479 .caps
= MACB_CAPS_SG_DISABLED
| MACB_CAPS_GIGABIT_MODE_AVAILABLE
,
4480 .dma_burst_length
= 16,
4481 .clk_init
= macb_clk_init
,
4483 .usrio
= &macb_default_usrio
,
4486 static const struct macb_config sama5d2_config
= {
4487 .caps
= MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII
,
4488 .dma_burst_length
= 16,
4489 .clk_init
= macb_clk_init
,
4491 .usrio
= &macb_default_usrio
,
4494 static const struct macb_config sama5d3_config
= {
4495 .caps
= MACB_CAPS_SG_DISABLED
| MACB_CAPS_GIGABIT_MODE_AVAILABLE
4496 | MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII
| MACB_CAPS_JUMBO
,
4497 .dma_burst_length
= 16,
4498 .clk_init
= macb_clk_init
,
4500 .jumbo_max_len
= 10240,
4501 .usrio
= &macb_default_usrio
,
4504 static const struct macb_config sama5d4_config
= {
4505 .caps
= MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII
,
4506 .dma_burst_length
= 4,
4507 .clk_init
= macb_clk_init
,
4509 .usrio
= &macb_default_usrio
,
4512 static const struct macb_config emac_config
= {
4513 .caps
= MACB_CAPS_NEEDS_RSTONUBR
| MACB_CAPS_MACB_IS_EMAC
,
4514 .clk_init
= at91ether_clk_init
,
4515 .init
= at91ether_init
,
4516 .usrio
= &macb_default_usrio
,
4519 static const struct macb_config np4_config
= {
4520 .caps
= MACB_CAPS_USRIO_DISABLED
,
4521 .clk_init
= macb_clk_init
,
4523 .usrio
= &macb_default_usrio
,
4526 static const struct macb_config zynqmp_config
= {
4527 .caps
= MACB_CAPS_GIGABIT_MODE_AVAILABLE
|
4529 MACB_CAPS_GEM_HAS_PTP
| MACB_CAPS_BD_RD_PREFETCH
,
4530 .dma_burst_length
= 16,
4531 .clk_init
= macb_clk_init
,
4533 .jumbo_max_len
= 10240,
4534 .usrio
= &macb_default_usrio
,
4537 static const struct macb_config zynq_config
= {
4538 .caps
= MACB_CAPS_GIGABIT_MODE_AVAILABLE
| MACB_CAPS_NO_GIGABIT_HALF
|
4539 MACB_CAPS_NEEDS_RSTONUBR
,
4540 .dma_burst_length
= 16,
4541 .clk_init
= macb_clk_init
,
4543 .usrio
= &macb_default_usrio
,
4546 static const struct macb_config sama7g5_gem_config
= {
4547 .caps
= MACB_CAPS_GIGABIT_MODE_AVAILABLE
| MACB_CAPS_CLK_HW_CHG
,
4548 .dma_burst_length
= 16,
4549 .clk_init
= macb_clk_init
,
4551 .usrio
= &sama7g5_usrio
,
4554 static const struct macb_config sama7g5_emac_config
= {
4555 .caps
= MACB_CAPS_USRIO_DEFAULT_IS_MII_GMII
| MACB_CAPS_USRIO_HAS_CLKEN
,
4556 .dma_burst_length
= 16,
4557 .clk_init
= macb_clk_init
,
4559 .usrio
= &sama7g5_usrio
,
4562 static const struct of_device_id macb_dt_ids
[] = {
4563 { .compatible
= "cdns,at32ap7000-macb" },
4564 { .compatible
= "cdns,at91sam9260-macb", .data
= &at91sam9260_config
},
4565 { .compatible
= "cdns,macb" },
4566 { .compatible
= "cdns,np4-macb", .data
= &np4_config
},
4567 { .compatible
= "cdns,pc302-gem", .data
= &pc302gem_config
},
4568 { .compatible
= "cdns,gem", .data
= &pc302gem_config
},
4569 { .compatible
= "cdns,sam9x60-macb", .data
= &at91sam9260_config
},
4570 { .compatible
= "atmel,sama5d2-gem", .data
= &sama5d2_config
},
4571 { .compatible
= "atmel,sama5d3-gem", .data
= &sama5d3_config
},
4572 { .compatible
= "atmel,sama5d3-macb", .data
= &sama5d3macb_config
},
4573 { .compatible
= "atmel,sama5d4-gem", .data
= &sama5d4_config
},
4574 { .compatible
= "cdns,at91rm9200-emac", .data
= &emac_config
},
4575 { .compatible
= "cdns,emac", .data
= &emac_config
},
4576 { .compatible
= "cdns,zynqmp-gem", .data
= &zynqmp_config
},
4577 { .compatible
= "cdns,zynq-gem", .data
= &zynq_config
},
4578 { .compatible
= "sifive,fu540-c000-gem", .data
= &fu540_c000_config
},
4579 { .compatible
= "microchip,sama7g5-gem", .data
= &sama7g5_gem_config
},
4580 { .compatible
= "microchip,sama7g5-emac", .data
= &sama7g5_emac_config
},
4583 MODULE_DEVICE_TABLE(of
, macb_dt_ids
);
4584 #endif /* CONFIG_OF */
4586 static const struct macb_config default_gem_config
= {
4587 .caps
= MACB_CAPS_GIGABIT_MODE_AVAILABLE
|
4589 MACB_CAPS_GEM_HAS_PTP
,
4590 .dma_burst_length
= 16,
4591 .clk_init
= macb_clk_init
,
4593 .jumbo_max_len
= 10240,
4596 static int macb_probe(struct platform_device
*pdev
)
4598 const struct macb_config
*macb_config
= &default_gem_config
;
4599 int (*clk_init
)(struct platform_device
*, struct clk
**,
4600 struct clk
**, struct clk
**, struct clk
**,
4601 struct clk
**) = macb_config
->clk_init
;
4602 int (*init
)(struct platform_device
*) = macb_config
->init
;
4603 struct device_node
*np
= pdev
->dev
.of_node
;
4604 struct clk
*pclk
, *hclk
= NULL
, *tx_clk
= NULL
, *rx_clk
= NULL
;
4605 struct clk
*tsu_clk
= NULL
;
4606 unsigned int queue_mask
, num_queues
;
4608 phy_interface_t interface
;
4609 struct net_device
*dev
;
4610 struct resource
*regs
;
4616 regs
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
4617 mem
= devm_ioremap_resource(&pdev
->dev
, regs
);
4619 return PTR_ERR(mem
);
4622 const struct of_device_id
*match
;
4624 match
= of_match_node(macb_dt_ids
, np
);
4625 if (match
&& match
->data
) {
4626 macb_config
= match
->data
;
4627 clk_init
= macb_config
->clk_init
;
4628 init
= macb_config
->init
;
4632 err
= clk_init(pdev
, &pclk
, &hclk
, &tx_clk
, &rx_clk
, &tsu_clk
);
4636 pm_runtime_set_autosuspend_delay(&pdev
->dev
, MACB_PM_TIMEOUT
);
4637 pm_runtime_use_autosuspend(&pdev
->dev
);
4638 pm_runtime_get_noresume(&pdev
->dev
);
4639 pm_runtime_set_active(&pdev
->dev
);
4640 pm_runtime_enable(&pdev
->dev
);
4641 native_io
= hw_is_native_io(mem
);
4643 macb_probe_queues(mem
, native_io
, &queue_mask
, &num_queues
);
4644 dev
= alloc_etherdev_mq(sizeof(*bp
), num_queues
);
4647 goto err_disable_clocks
;
4650 dev
->base_addr
= regs
->start
;
4652 SET_NETDEV_DEV(dev
, &pdev
->dev
);
4654 bp
= netdev_priv(dev
);
4658 bp
->native_io
= native_io
;
4660 bp
->macb_reg_readl
= hw_readl_native
;
4661 bp
->macb_reg_writel
= hw_writel_native
;
4663 bp
->macb_reg_readl
= hw_readl
;
4664 bp
->macb_reg_writel
= hw_writel
;
4666 bp
->num_queues
= num_queues
;
4667 bp
->queue_mask
= queue_mask
;
4669 bp
->dma_burst_length
= macb_config
->dma_burst_length
;
4672 bp
->tx_clk
= tx_clk
;
4673 bp
->rx_clk
= rx_clk
;
4674 bp
->tsu_clk
= tsu_clk
;
4676 bp
->jumbo_max_len
= macb_config
->jumbo_max_len
;
4679 if (of_get_property(np
, "magic-packet", NULL
))
4680 bp
->wol
|= MACB_WOL_HAS_MAGIC_PACKET
;
4681 device_set_wakeup_capable(&pdev
->dev
, bp
->wol
& MACB_WOL_HAS_MAGIC_PACKET
);
4683 bp
->usrio
= macb_config
->usrio
;
4685 spin_lock_init(&bp
->lock
);
4687 /* setup capabilities */
4688 macb_configure_caps(bp
, macb_config
);
4690 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
4691 if (GEM_BFEXT(DAW64
, gem_readl(bp
, DCFG6
))) {
4692 dma_set_mask(&pdev
->dev
, DMA_BIT_MASK(44));
4693 bp
->hw_dma_cap
|= HW_DMA_CAP_64B
;
4696 platform_set_drvdata(pdev
, dev
);
4698 dev
->irq
= platform_get_irq(pdev
, 0);
4701 goto err_out_free_netdev
;
4704 /* MTU range: 68 - 1500 or 10240 */
4705 dev
->min_mtu
= GEM_MTU_MIN_SIZE
;
4706 if (bp
->caps
& MACB_CAPS_JUMBO
)
4707 dev
->max_mtu
= gem_readl(bp
, JML
) - ETH_HLEN
- ETH_FCS_LEN
;
4709 dev
->max_mtu
= ETH_DATA_LEN
;
4711 if (bp
->caps
& MACB_CAPS_BD_RD_PREFETCH
) {
4712 val
= GEM_BFEXT(RXBD_RDBUFF
, gem_readl(bp
, DCFG10
));
4714 bp
->rx_bd_rd_prefetch
= (2 << (val
- 1)) *
4715 macb_dma_desc_get_size(bp
);
4717 val
= GEM_BFEXT(TXBD_RDBUFF
, gem_readl(bp
, DCFG10
));
4719 bp
->tx_bd_rd_prefetch
= (2 << (val
- 1)) *
4720 macb_dma_desc_get_size(bp
);
4723 bp
->rx_intr_mask
= MACB_RX_INT_FLAGS
;
4724 if (bp
->caps
& MACB_CAPS_NEEDS_RSTONUBR
)
4725 bp
->rx_intr_mask
|= MACB_BIT(RXUBR
);
4727 mac
= of_get_mac_address(np
);
4728 if (PTR_ERR(mac
) == -EPROBE_DEFER
) {
4729 err
= -EPROBE_DEFER
;
4730 goto err_out_free_netdev
;
4731 } else if (!IS_ERR_OR_NULL(mac
)) {
4732 ether_addr_copy(bp
->dev
->dev_addr
, mac
);
4734 macb_get_hwaddr(bp
);
4737 err
= of_get_phy_mode(np
, &interface
);
4739 /* not found in DT, MII by default */
4740 bp
->phy_interface
= PHY_INTERFACE_MODE_MII
;
4742 bp
->phy_interface
= interface
;
4744 /* IP specific init */
4747 goto err_out_free_netdev
;
4749 err
= macb_mii_init(bp
);
4751 goto err_out_free_netdev
;
4753 netif_carrier_off(dev
);
4755 err
= register_netdev(dev
);
4757 dev_err(&pdev
->dev
, "Cannot register net device, aborting.\n");
4758 goto err_out_unregister_mdio
;
4761 tasklet_setup(&bp
->hresp_err_tasklet
, macb_hresp_error_task
);
4763 netdev_info(dev
, "Cadence %s rev 0x%08x at 0x%08lx irq %d (%pM)\n",
4764 macb_is_gem(bp
) ? "GEM" : "MACB", macb_readl(bp
, MID
),
4765 dev
->base_addr
, dev
->irq
, dev
->dev_addr
);
4767 pm_runtime_mark_last_busy(&bp
->pdev
->dev
);
4768 pm_runtime_put_autosuspend(&bp
->pdev
->dev
);
4772 err_out_unregister_mdio
:
4773 mdiobus_unregister(bp
->mii_bus
);
4774 mdiobus_free(bp
->mii_bus
);
4776 err_out_free_netdev
:
4780 macb_clks_disable(pclk
, hclk
, tx_clk
, rx_clk
, tsu_clk
);
4781 pm_runtime_disable(&pdev
->dev
);
4782 pm_runtime_set_suspended(&pdev
->dev
);
4783 pm_runtime_dont_use_autosuspend(&pdev
->dev
);
4788 static int macb_remove(struct platform_device
*pdev
)
4790 struct net_device
*dev
;
4793 dev
= platform_get_drvdata(pdev
);
4796 bp
= netdev_priv(dev
);
4797 mdiobus_unregister(bp
->mii_bus
);
4798 mdiobus_free(bp
->mii_bus
);
4800 unregister_netdev(dev
);
4801 tasklet_kill(&bp
->hresp_err_tasklet
);
4802 pm_runtime_disable(&pdev
->dev
);
4803 pm_runtime_dont_use_autosuspend(&pdev
->dev
);
4804 if (!pm_runtime_suspended(&pdev
->dev
)) {
4805 macb_clks_disable(bp
->pclk
, bp
->hclk
, bp
->tx_clk
,
4806 bp
->rx_clk
, bp
->tsu_clk
);
4807 pm_runtime_set_suspended(&pdev
->dev
);
4809 phylink_destroy(bp
->phylink
);
4816 static int __maybe_unused
macb_suspend(struct device
*dev
)
4818 struct net_device
*netdev
= dev_get_drvdata(dev
);
4819 struct macb
*bp
= netdev_priv(netdev
);
4820 struct macb_queue
*queue
= bp
->queues
;
4821 unsigned long flags
;
4825 if (!netif_running(netdev
))
4828 if (bp
->wol
& MACB_WOL_ENABLED
) {
4829 spin_lock_irqsave(&bp
->lock
, flags
);
4830 /* Flush all status bits */
4831 macb_writel(bp
, TSR
, -1);
4832 macb_writel(bp
, RSR
, -1);
4833 for (q
= 0, queue
= bp
->queues
; q
< bp
->num_queues
;
4835 /* Disable all interrupts */
4836 queue_writel(queue
, IDR
, -1);
4837 queue_readl(queue
, ISR
);
4838 if (bp
->caps
& MACB_CAPS_ISR_CLEAR_ON_WRITE
)
4839 queue_writel(queue
, ISR
, -1);
4841 /* Change interrupt handler and
4842 * Enable WoL IRQ on queue 0
4844 devm_free_irq(dev
, bp
->queues
[0].irq
, bp
->queues
);
4845 if (macb_is_gem(bp
)) {
4846 err
= devm_request_irq(dev
, bp
->queues
[0].irq
, gem_wol_interrupt
,
4847 IRQF_SHARED
, netdev
->name
, bp
->queues
);
4850 "Unable to request IRQ %d (error %d)\n",
4851 bp
->queues
[0].irq
, err
);
4852 spin_unlock_irqrestore(&bp
->lock
, flags
);
4855 queue_writel(bp
->queues
, IER
, GEM_BIT(WOL
));
4856 gem_writel(bp
, WOL
, MACB_BIT(MAG
));
4858 err
= devm_request_irq(dev
, bp
->queues
[0].irq
, macb_wol_interrupt
,
4859 IRQF_SHARED
, netdev
->name
, bp
->queues
);
4862 "Unable to request IRQ %d (error %d)\n",
4863 bp
->queues
[0].irq
, err
);
4864 spin_unlock_irqrestore(&bp
->lock
, flags
);
4867 queue_writel(bp
->queues
, IER
, MACB_BIT(WOL
));
4868 macb_writel(bp
, WOL
, MACB_BIT(MAG
));
4870 spin_unlock_irqrestore(&bp
->lock
, flags
);
4872 enable_irq_wake(bp
->queues
[0].irq
);
4875 netif_device_detach(netdev
);
4876 for (q
= 0, queue
= bp
->queues
; q
< bp
->num_queues
;
4878 napi_disable(&queue
->napi
);
4880 if (!(bp
->wol
& MACB_WOL_ENABLED
)) {
4882 phylink_stop(bp
->phylink
);
4884 spin_lock_irqsave(&bp
->lock
, flags
);
4886 spin_unlock_irqrestore(&bp
->lock
, flags
);
4889 if (!(bp
->caps
& MACB_CAPS_USRIO_DISABLED
))
4890 bp
->pm_data
.usrio
= macb_or_gem_readl(bp
, USRIO
);
4892 if (netdev
->hw_features
& NETIF_F_NTUPLE
)
4893 bp
->pm_data
.scrt2
= gem_readl_n(bp
, ETHT
, SCRT2_ETHT
);
4896 bp
->ptp_info
->ptp_remove(netdev
);
4897 if (!device_may_wakeup(dev
))
4898 pm_runtime_force_suspend(dev
);
4903 static int __maybe_unused
macb_resume(struct device
*dev
)
4905 struct net_device
*netdev
= dev_get_drvdata(dev
);
4906 struct macb
*bp
= netdev_priv(netdev
);
4907 struct macb_queue
*queue
= bp
->queues
;
4908 unsigned long flags
;
4912 if (!netif_running(netdev
))
4915 if (!device_may_wakeup(dev
))
4916 pm_runtime_force_resume(dev
);
4918 if (bp
->wol
& MACB_WOL_ENABLED
) {
4919 spin_lock_irqsave(&bp
->lock
, flags
);
4921 if (macb_is_gem(bp
)) {
4922 queue_writel(bp
->queues
, IDR
, GEM_BIT(WOL
));
4923 gem_writel(bp
, WOL
, 0);
4925 queue_writel(bp
->queues
, IDR
, MACB_BIT(WOL
));
4926 macb_writel(bp
, WOL
, 0);
4928 /* Clear ISR on queue 0 */
4929 queue_readl(bp
->queues
, ISR
);
4930 if (bp
->caps
& MACB_CAPS_ISR_CLEAR_ON_WRITE
)
4931 queue_writel(bp
->queues
, ISR
, -1);
4932 /* Replace interrupt handler on queue 0 */
4933 devm_free_irq(dev
, bp
->queues
[0].irq
, bp
->queues
);
4934 err
= devm_request_irq(dev
, bp
->queues
[0].irq
, macb_interrupt
,
4935 IRQF_SHARED
, netdev
->name
, bp
->queues
);
4938 "Unable to request IRQ %d (error %d)\n",
4939 bp
->queues
[0].irq
, err
);
4940 spin_unlock_irqrestore(&bp
->lock
, flags
);
4943 spin_unlock_irqrestore(&bp
->lock
, flags
);
4945 disable_irq_wake(bp
->queues
[0].irq
);
4947 /* Now make sure we disable phy before moving
4948 * to common restore path
4951 phylink_stop(bp
->phylink
);
4955 for (q
= 0, queue
= bp
->queues
; q
< bp
->num_queues
;
4957 napi_enable(&queue
->napi
);
4959 if (netdev
->hw_features
& NETIF_F_NTUPLE
)
4960 gem_writel_n(bp
, ETHT
, SCRT2_ETHT
, bp
->pm_data
.scrt2
);
4962 if (!(bp
->caps
& MACB_CAPS_USRIO_DISABLED
))
4963 macb_or_gem_writel(bp
, USRIO
, bp
->pm_data
.usrio
);
4965 macb_writel(bp
, NCR
, MACB_BIT(MPE
));
4967 macb_set_rx_mode(netdev
);
4968 macb_restore_features(bp
);
4970 phylink_start(bp
->phylink
);
4973 netif_device_attach(netdev
);
4975 bp
->ptp_info
->ptp_init(netdev
);
4980 static int __maybe_unused
macb_runtime_suspend(struct device
*dev
)
4982 struct net_device
*netdev
= dev_get_drvdata(dev
);
4983 struct macb
*bp
= netdev_priv(netdev
);
4985 if (!(device_may_wakeup(dev
)))
4986 macb_clks_disable(bp
->pclk
, bp
->hclk
, bp
->tx_clk
, bp
->rx_clk
, bp
->tsu_clk
);
4988 macb_clks_disable(NULL
, NULL
, NULL
, NULL
, bp
->tsu_clk
);
4993 static int __maybe_unused
macb_runtime_resume(struct device
*dev
)
4995 struct net_device
*netdev
= dev_get_drvdata(dev
);
4996 struct macb
*bp
= netdev_priv(netdev
);
4998 if (!(device_may_wakeup(dev
))) {
4999 clk_prepare_enable(bp
->pclk
);
5000 clk_prepare_enable(bp
->hclk
);
5001 clk_prepare_enable(bp
->tx_clk
);
5002 clk_prepare_enable(bp
->rx_clk
);
5004 clk_prepare_enable(bp
->tsu_clk
);
5009 static const struct dev_pm_ops macb_pm_ops
= {
5010 SET_SYSTEM_SLEEP_PM_OPS(macb_suspend
, macb_resume
)
5011 SET_RUNTIME_PM_OPS(macb_runtime_suspend
, macb_runtime_resume
, NULL
)
5014 static struct platform_driver macb_driver
= {
5015 .probe
= macb_probe
,
5016 .remove
= macb_remove
,
5019 .of_match_table
= of_match_ptr(macb_dt_ids
),
5024 module_platform_driver(macb_driver
);
5026 MODULE_LICENSE("GPL");
5027 MODULE_DESCRIPTION("Cadence MACB/GEM Ethernet driver");
5028 MODULE_AUTHOR("Haavard Skinnemoen (Atmel)");
5029 MODULE_ALIAS("platform:macb");