1 /* Synopsys DesignWare Core Enterprise Ethernet (XLGMAC) Driver
3 * Copyright (c) 2017 Synopsys, Inc. (www.synopsys.com)
5 * This program is dual-licensed; you may select either version 2 of
6 * the GNU General Public License ("GPL") or BSD license ("BSD").
8 * This Synopsys DWC XLGMAC software driver and associated documentation
9 * (hereinafter the "Software") is an unsupported proprietary work of
10 * Synopsys, Inc. unless otherwise expressly agreed to in writing between
11 * Synopsys and you. The Software IS NOT an item of Licensed Software or a
12 * Licensed Product under any End User Software License Agreement or
13 * Agreement for Licensed Products with Synopsys or any supplement thereto.
14 * Synopsys is a registered trademark of Synopsys, Inc. Other names included
15 * in the SOFTWARE may be the trademarks of their respective owners.
18 #include <linux/netdevice.h>
19 #include <linux/tcp.h>
20 #include <linux/interrupt.h>
22 #include "dwc-xlgmac.h"
23 #include "dwc-xlgmac-reg.h"
25 static int xlgmac_one_poll(struct napi_struct
*, int);
26 static int xlgmac_all_poll(struct napi_struct
*, int);
28 static inline unsigned int xlgmac_tx_avail_desc(struct xlgmac_ring
*ring
)
30 return (ring
->dma_desc_count
- (ring
->cur
- ring
->dirty
));
33 static inline unsigned int xlgmac_rx_dirty_desc(struct xlgmac_ring
*ring
)
35 return (ring
->cur
- ring
->dirty
);
38 static int xlgmac_maybe_stop_tx_queue(
39 struct xlgmac_channel
*channel
,
40 struct xlgmac_ring
*ring
,
43 struct xlgmac_pdata
*pdata
= channel
->pdata
;
45 if (count
> xlgmac_tx_avail_desc(ring
)) {
46 netif_info(pdata
, drv
, pdata
->netdev
,
47 "Tx queue stopped, not enough descriptors available\n");
48 netif_stop_subqueue(pdata
->netdev
, channel
->queue_index
);
49 ring
->tx
.queue_stopped
= 1;
51 /* If we haven't notified the hardware because of xmit_more
52 * support, tell it now
54 if (ring
->tx
.xmit_more
)
55 pdata
->hw_ops
.tx_start_xmit(channel
, ring
);
57 return NETDEV_TX_BUSY
;
63 static void xlgmac_prep_vlan(struct sk_buff
*skb
,
64 struct xlgmac_pkt_info
*pkt_info
)
66 if (skb_vlan_tag_present(skb
))
67 pkt_info
->vlan_ctag
= skb_vlan_tag_get(skb
);
70 static int xlgmac_prep_tso(struct sk_buff
*skb
,
71 struct xlgmac_pkt_info
*pkt_info
)
75 if (!XLGMAC_GET_REG_BITS(pkt_info
->attributes
,
76 TX_PACKET_ATTRIBUTES_TSO_ENABLE_POS
,
77 TX_PACKET_ATTRIBUTES_TSO_ENABLE_LEN
))
80 ret
= skb_cow_head(skb
, 0);
84 pkt_info
->header_len
= skb_transport_offset(skb
) + tcp_hdrlen(skb
);
85 pkt_info
->tcp_header_len
= tcp_hdrlen(skb
);
86 pkt_info
->tcp_payload_len
= skb
->len
- pkt_info
->header_len
;
87 pkt_info
->mss
= skb_shinfo(skb
)->gso_size
;
89 XLGMAC_PR("header_len=%u\n", pkt_info
->header_len
);
90 XLGMAC_PR("tcp_header_len=%u, tcp_payload_len=%u\n",
91 pkt_info
->tcp_header_len
, pkt_info
->tcp_payload_len
);
92 XLGMAC_PR("mss=%u\n", pkt_info
->mss
);
94 /* Update the number of packets that will ultimately be transmitted
95 * along with the extra bytes for each extra packet
97 pkt_info
->tx_packets
= skb_shinfo(skb
)->gso_segs
;
98 pkt_info
->tx_bytes
+= (pkt_info
->tx_packets
- 1) * pkt_info
->header_len
;
103 static int xlgmac_is_tso(struct sk_buff
*skb
)
105 if (skb
->ip_summed
!= CHECKSUM_PARTIAL
)
108 if (!skb_is_gso(skb
))
114 static void xlgmac_prep_tx_pkt(struct xlgmac_pdata
*pdata
,
115 struct xlgmac_ring
*ring
,
117 struct xlgmac_pkt_info
*pkt_info
)
120 unsigned int context_desc
;
127 pkt_info
->desc_count
= 0;
129 pkt_info
->tx_packets
= 1;
130 pkt_info
->tx_bytes
= skb
->len
;
132 if (xlgmac_is_tso(skb
)) {
133 /* TSO requires an extra descriptor if mss is different */
134 if (skb_shinfo(skb
)->gso_size
!= ring
->tx
.cur_mss
) {
136 pkt_info
->desc_count
++;
139 /* TSO requires an extra descriptor for TSO header */
140 pkt_info
->desc_count
++;
142 pkt_info
->attributes
= XLGMAC_SET_REG_BITS(
143 pkt_info
->attributes
,
144 TX_PACKET_ATTRIBUTES_TSO_ENABLE_POS
,
145 TX_PACKET_ATTRIBUTES_TSO_ENABLE_LEN
,
147 pkt_info
->attributes
= XLGMAC_SET_REG_BITS(
148 pkt_info
->attributes
,
149 TX_PACKET_ATTRIBUTES_CSUM_ENABLE_POS
,
150 TX_PACKET_ATTRIBUTES_CSUM_ENABLE_LEN
,
152 } else if (skb
->ip_summed
== CHECKSUM_PARTIAL
)
153 pkt_info
->attributes
= XLGMAC_SET_REG_BITS(
154 pkt_info
->attributes
,
155 TX_PACKET_ATTRIBUTES_CSUM_ENABLE_POS
,
156 TX_PACKET_ATTRIBUTES_CSUM_ENABLE_LEN
,
159 if (skb_vlan_tag_present(skb
)) {
160 /* VLAN requires an extra descriptor if tag is different */
161 if (skb_vlan_tag_get(skb
) != ring
->tx
.cur_vlan_ctag
)
162 /* We can share with the TSO context descriptor */
165 pkt_info
->desc_count
++;
168 pkt_info
->attributes
= XLGMAC_SET_REG_BITS(
169 pkt_info
->attributes
,
170 TX_PACKET_ATTRIBUTES_VLAN_CTAG_POS
,
171 TX_PACKET_ATTRIBUTES_VLAN_CTAG_LEN
,
175 for (len
= skb_headlen(skb
); len
;) {
176 pkt_info
->desc_count
++;
177 len
-= min_t(unsigned int, len
, XLGMAC_TX_MAX_BUF_SIZE
);
180 for (i
= 0; i
< skb_shinfo(skb
)->nr_frags
; i
++) {
181 frag
= &skb_shinfo(skb
)->frags
[i
];
182 for (len
= skb_frag_size(frag
); len
; ) {
183 pkt_info
->desc_count
++;
184 len
-= min_t(unsigned int, len
, XLGMAC_TX_MAX_BUF_SIZE
);
189 static int xlgmac_calc_rx_buf_size(struct net_device
*netdev
, unsigned int mtu
)
191 unsigned int rx_buf_size
;
193 if (mtu
> XLGMAC_JUMBO_PACKET_MTU
) {
194 netdev_alert(netdev
, "MTU exceeds maximum supported value\n");
198 rx_buf_size
= mtu
+ ETH_HLEN
+ ETH_FCS_LEN
+ VLAN_HLEN
;
199 rx_buf_size
= clamp_val(rx_buf_size
, XLGMAC_RX_MIN_BUF_SIZE
, PAGE_SIZE
);
201 rx_buf_size
= (rx_buf_size
+ XLGMAC_RX_BUF_ALIGN
- 1) &
202 ~(XLGMAC_RX_BUF_ALIGN
- 1);
207 static void xlgmac_enable_rx_tx_ints(struct xlgmac_pdata
*pdata
)
209 struct xlgmac_hw_ops
*hw_ops
= &pdata
->hw_ops
;
210 struct xlgmac_channel
*channel
;
211 enum xlgmac_int int_id
;
214 channel
= pdata
->channel_head
;
215 for (i
= 0; i
< pdata
->channel_count
; i
++, channel
++) {
216 if (channel
->tx_ring
&& channel
->rx_ring
)
217 int_id
= XLGMAC_INT_DMA_CH_SR_TI_RI
;
218 else if (channel
->tx_ring
)
219 int_id
= XLGMAC_INT_DMA_CH_SR_TI
;
220 else if (channel
->rx_ring
)
221 int_id
= XLGMAC_INT_DMA_CH_SR_RI
;
225 hw_ops
->enable_int(channel
, int_id
);
229 static void xlgmac_disable_rx_tx_ints(struct xlgmac_pdata
*pdata
)
231 struct xlgmac_hw_ops
*hw_ops
= &pdata
->hw_ops
;
232 struct xlgmac_channel
*channel
;
233 enum xlgmac_int int_id
;
236 channel
= pdata
->channel_head
;
237 for (i
= 0; i
< pdata
->channel_count
; i
++, channel
++) {
238 if (channel
->tx_ring
&& channel
->rx_ring
)
239 int_id
= XLGMAC_INT_DMA_CH_SR_TI_RI
;
240 else if (channel
->tx_ring
)
241 int_id
= XLGMAC_INT_DMA_CH_SR_TI
;
242 else if (channel
->rx_ring
)
243 int_id
= XLGMAC_INT_DMA_CH_SR_RI
;
247 hw_ops
->disable_int(channel
, int_id
);
251 static irqreturn_t
xlgmac_isr(int irq
, void *data
)
253 unsigned int dma_isr
, dma_ch_isr
, mac_isr
;
254 struct xlgmac_pdata
*pdata
= data
;
255 struct xlgmac_channel
*channel
;
256 struct xlgmac_hw_ops
*hw_ops
;
257 unsigned int i
, ti
, ri
;
259 hw_ops
= &pdata
->hw_ops
;
261 /* The DMA interrupt status register also reports MAC and MTL
262 * interrupts. So for polling mode, we just need to check for
263 * this register to be non-zero
265 dma_isr
= readl(pdata
->mac_regs
+ DMA_ISR
);
269 netif_dbg(pdata
, intr
, pdata
->netdev
, "DMA_ISR=%#010x\n", dma_isr
);
271 for (i
= 0; i
< pdata
->channel_count
; i
++) {
272 if (!(dma_isr
& (1 << i
)))
275 channel
= pdata
->channel_head
+ i
;
277 dma_ch_isr
= readl(XLGMAC_DMA_REG(channel
, DMA_CH_SR
));
278 netif_dbg(pdata
, intr
, pdata
->netdev
, "DMA_CH%u_ISR=%#010x\n",
281 /* The TI or RI interrupt bits may still be set even if using
282 * per channel DMA interrupts. Check to be sure those are not
283 * enabled before using the private data napi structure.
285 ti
= XLGMAC_GET_REG_BITS(dma_ch_isr
, DMA_CH_SR_TI_POS
,
287 ri
= XLGMAC_GET_REG_BITS(dma_ch_isr
, DMA_CH_SR_RI_POS
,
289 if (!pdata
->per_channel_irq
&& (ti
|| ri
)) {
290 if (napi_schedule_prep(&pdata
->napi
)) {
291 /* Disable Tx and Rx interrupts */
292 xlgmac_disable_rx_tx_ints(pdata
);
294 pdata
->stats
.napi_poll_isr
++;
295 /* Turn on polling */
296 __napi_schedule_irqoff(&pdata
->napi
);
300 if (XLGMAC_GET_REG_BITS(dma_ch_isr
, DMA_CH_SR_TPS_POS
,
302 pdata
->stats
.tx_process_stopped
++;
304 if (XLGMAC_GET_REG_BITS(dma_ch_isr
, DMA_CH_SR_RPS_POS
,
306 pdata
->stats
.rx_process_stopped
++;
308 if (XLGMAC_GET_REG_BITS(dma_ch_isr
, DMA_CH_SR_TBU_POS
,
310 pdata
->stats
.tx_buffer_unavailable
++;
312 if (XLGMAC_GET_REG_BITS(dma_ch_isr
, DMA_CH_SR_RBU_POS
,
314 pdata
->stats
.rx_buffer_unavailable
++;
316 /* Restart the device on a Fatal Bus Error */
317 if (XLGMAC_GET_REG_BITS(dma_ch_isr
, DMA_CH_SR_FBE_POS
,
318 DMA_CH_SR_FBE_LEN
)) {
319 pdata
->stats
.fatal_bus_error
++;
320 schedule_work(&pdata
->restart_work
);
323 /* Clear all interrupt signals */
324 writel(dma_ch_isr
, XLGMAC_DMA_REG(channel
, DMA_CH_SR
));
327 if (XLGMAC_GET_REG_BITS(dma_isr
, DMA_ISR_MACIS_POS
,
328 DMA_ISR_MACIS_LEN
)) {
329 mac_isr
= readl(pdata
->mac_regs
+ MAC_ISR
);
331 if (XLGMAC_GET_REG_BITS(mac_isr
, MAC_ISR_MMCTXIS_POS
,
332 MAC_ISR_MMCTXIS_LEN
))
333 hw_ops
->tx_mmc_int(pdata
);
335 if (XLGMAC_GET_REG_BITS(mac_isr
, MAC_ISR_MMCRXIS_POS
,
336 MAC_ISR_MMCRXIS_LEN
))
337 hw_ops
->rx_mmc_int(pdata
);
343 static irqreturn_t
xlgmac_dma_isr(int irq
, void *data
)
345 struct xlgmac_channel
*channel
= data
;
347 /* Per channel DMA interrupts are enabled, so we use the per
348 * channel napi structure and not the private data napi structure
350 if (napi_schedule_prep(&channel
->napi
)) {
351 /* Disable Tx and Rx interrupts */
352 disable_irq_nosync(channel
->dma_irq
);
354 /* Turn on polling */
355 __napi_schedule_irqoff(&channel
->napi
);
361 static void xlgmac_tx_timer(struct timer_list
*t
)
363 struct xlgmac_channel
*channel
= from_timer(channel
, t
, tx_timer
);
364 struct xlgmac_pdata
*pdata
= channel
->pdata
;
365 struct napi_struct
*napi
;
367 napi
= (pdata
->per_channel_irq
) ? &channel
->napi
: &pdata
->napi
;
369 if (napi_schedule_prep(napi
)) {
370 /* Disable Tx and Rx interrupts */
371 if (pdata
->per_channel_irq
)
372 disable_irq_nosync(channel
->dma_irq
);
374 xlgmac_disable_rx_tx_ints(pdata
);
376 pdata
->stats
.napi_poll_txtimer
++;
377 /* Turn on polling */
378 __napi_schedule(napi
);
381 channel
->tx_timer_active
= 0;
384 static void xlgmac_init_timers(struct xlgmac_pdata
*pdata
)
386 struct xlgmac_channel
*channel
;
389 channel
= pdata
->channel_head
;
390 for (i
= 0; i
< pdata
->channel_count
; i
++, channel
++) {
391 if (!channel
->tx_ring
)
394 timer_setup(&channel
->tx_timer
, xlgmac_tx_timer
, 0);
398 static void xlgmac_stop_timers(struct xlgmac_pdata
*pdata
)
400 struct xlgmac_channel
*channel
;
403 channel
= pdata
->channel_head
;
404 for (i
= 0; i
< pdata
->channel_count
; i
++, channel
++) {
405 if (!channel
->tx_ring
)
408 del_timer_sync(&channel
->tx_timer
);
412 static void xlgmac_napi_enable(struct xlgmac_pdata
*pdata
, unsigned int add
)
414 struct xlgmac_channel
*channel
;
417 if (pdata
->per_channel_irq
) {
418 channel
= pdata
->channel_head
;
419 for (i
= 0; i
< pdata
->channel_count
; i
++, channel
++) {
421 netif_napi_add(pdata
->netdev
, &channel
->napi
,
425 napi_enable(&channel
->napi
);
429 netif_napi_add(pdata
->netdev
, &pdata
->napi
,
430 xlgmac_all_poll
, NAPI_POLL_WEIGHT
);
432 napi_enable(&pdata
->napi
);
436 static void xlgmac_napi_disable(struct xlgmac_pdata
*pdata
, unsigned int del
)
438 struct xlgmac_channel
*channel
;
441 if (pdata
->per_channel_irq
) {
442 channel
= pdata
->channel_head
;
443 for (i
= 0; i
< pdata
->channel_count
; i
++, channel
++) {
444 napi_disable(&channel
->napi
);
447 netif_napi_del(&channel
->napi
);
450 napi_disable(&pdata
->napi
);
453 netif_napi_del(&pdata
->napi
);
457 static int xlgmac_request_irqs(struct xlgmac_pdata
*pdata
)
459 struct net_device
*netdev
= pdata
->netdev
;
460 struct xlgmac_channel
*channel
;
464 ret
= devm_request_irq(pdata
->dev
, pdata
->dev_irq
, xlgmac_isr
,
465 IRQF_SHARED
, netdev
->name
, pdata
);
467 netdev_alert(netdev
, "error requesting irq %d\n",
472 if (!pdata
->per_channel_irq
)
475 channel
= pdata
->channel_head
;
476 for (i
= 0; i
< pdata
->channel_count
; i
++, channel
++) {
477 snprintf(channel
->dma_irq_name
,
478 sizeof(channel
->dma_irq_name
) - 1,
479 "%s-TxRx-%u", netdev_name(netdev
),
480 channel
->queue_index
);
482 ret
= devm_request_irq(pdata
->dev
, channel
->dma_irq
,
484 channel
->dma_irq_name
, channel
);
486 netdev_alert(netdev
, "error requesting irq %d\n",
495 /* Using an unsigned int, 'i' will go to UINT_MAX and exit */
496 for (i
--, channel
--; i
< pdata
->channel_count
; i
--, channel
--)
497 devm_free_irq(pdata
->dev
, channel
->dma_irq
, channel
);
499 devm_free_irq(pdata
->dev
, pdata
->dev_irq
, pdata
);
504 static void xlgmac_free_irqs(struct xlgmac_pdata
*pdata
)
506 struct xlgmac_channel
*channel
;
509 devm_free_irq(pdata
->dev
, pdata
->dev_irq
, pdata
);
511 if (!pdata
->per_channel_irq
)
514 channel
= pdata
->channel_head
;
515 for (i
= 0; i
< pdata
->channel_count
; i
++, channel
++)
516 devm_free_irq(pdata
->dev
, channel
->dma_irq
, channel
);
519 static void xlgmac_free_tx_data(struct xlgmac_pdata
*pdata
)
521 struct xlgmac_desc_ops
*desc_ops
= &pdata
->desc_ops
;
522 struct xlgmac_desc_data
*desc_data
;
523 struct xlgmac_channel
*channel
;
524 struct xlgmac_ring
*ring
;
527 channel
= pdata
->channel_head
;
528 for (i
= 0; i
< pdata
->channel_count
; i
++, channel
++) {
529 ring
= channel
->tx_ring
;
533 for (j
= 0; j
< ring
->dma_desc_count
; j
++) {
534 desc_data
= XLGMAC_GET_DESC_DATA(ring
, j
);
535 desc_ops
->unmap_desc_data(pdata
, desc_data
);
540 static void xlgmac_free_rx_data(struct xlgmac_pdata
*pdata
)
542 struct xlgmac_desc_ops
*desc_ops
= &pdata
->desc_ops
;
543 struct xlgmac_desc_data
*desc_data
;
544 struct xlgmac_channel
*channel
;
545 struct xlgmac_ring
*ring
;
548 channel
= pdata
->channel_head
;
549 for (i
= 0; i
< pdata
->channel_count
; i
++, channel
++) {
550 ring
= channel
->rx_ring
;
554 for (j
= 0; j
< ring
->dma_desc_count
; j
++) {
555 desc_data
= XLGMAC_GET_DESC_DATA(ring
, j
);
556 desc_ops
->unmap_desc_data(pdata
, desc_data
);
561 static int xlgmac_start(struct xlgmac_pdata
*pdata
)
563 struct xlgmac_hw_ops
*hw_ops
= &pdata
->hw_ops
;
564 struct net_device
*netdev
= pdata
->netdev
;
568 xlgmac_napi_enable(pdata
, 1);
570 ret
= xlgmac_request_irqs(pdata
);
574 hw_ops
->enable_tx(pdata
);
575 hw_ops
->enable_rx(pdata
);
576 netif_tx_start_all_queues(netdev
);
581 xlgmac_napi_disable(pdata
, 1);
587 static void xlgmac_stop(struct xlgmac_pdata
*pdata
)
589 struct xlgmac_hw_ops
*hw_ops
= &pdata
->hw_ops
;
590 struct net_device
*netdev
= pdata
->netdev
;
591 struct xlgmac_channel
*channel
;
592 struct netdev_queue
*txq
;
595 netif_tx_stop_all_queues(netdev
);
596 xlgmac_stop_timers(pdata
);
597 hw_ops
->disable_tx(pdata
);
598 hw_ops
->disable_rx(pdata
);
599 xlgmac_free_irqs(pdata
);
600 xlgmac_napi_disable(pdata
, 1);
603 channel
= pdata
->channel_head
;
604 for (i
= 0; i
< pdata
->channel_count
; i
++, channel
++) {
605 if (!channel
->tx_ring
)
608 txq
= netdev_get_tx_queue(netdev
, channel
->queue_index
);
609 netdev_tx_reset_queue(txq
);
613 static void xlgmac_restart_dev(struct xlgmac_pdata
*pdata
)
615 /* If not running, "restart" will happen on open */
616 if (!netif_running(pdata
->netdev
))
621 xlgmac_free_tx_data(pdata
);
622 xlgmac_free_rx_data(pdata
);
627 static void xlgmac_restart(struct work_struct
*work
)
629 struct xlgmac_pdata
*pdata
= container_of(work
,
635 xlgmac_restart_dev(pdata
);
640 static int xlgmac_open(struct net_device
*netdev
)
642 struct xlgmac_pdata
*pdata
= netdev_priv(netdev
);
643 struct xlgmac_desc_ops
*desc_ops
;
646 desc_ops
= &pdata
->desc_ops
;
648 /* TODO: Initialize the phy */
650 /* Calculate the Rx buffer size before allocating rings */
651 ret
= xlgmac_calc_rx_buf_size(netdev
, netdev
->mtu
);
654 pdata
->rx_buf_size
= ret
;
656 /* Allocate the channels and rings */
657 ret
= desc_ops
->alloc_channles_and_rings(pdata
);
661 INIT_WORK(&pdata
->restart_work
, xlgmac_restart
);
662 xlgmac_init_timers(pdata
);
664 ret
= xlgmac_start(pdata
);
666 goto err_channels_and_rings
;
670 err_channels_and_rings
:
671 desc_ops
->free_channels_and_rings(pdata
);
676 static int xlgmac_close(struct net_device
*netdev
)
678 struct xlgmac_pdata
*pdata
= netdev_priv(netdev
);
679 struct xlgmac_desc_ops
*desc_ops
;
681 desc_ops
= &pdata
->desc_ops
;
683 /* Stop the device */
686 /* Free the channels and rings */
687 desc_ops
->free_channels_and_rings(pdata
);
692 static void xlgmac_tx_timeout(struct net_device
*netdev
, unsigned int txqueue
)
694 struct xlgmac_pdata
*pdata
= netdev_priv(netdev
);
696 netdev_warn(netdev
, "tx timeout, device restarting\n");
697 schedule_work(&pdata
->restart_work
);
700 static int xlgmac_xmit(struct sk_buff
*skb
, struct net_device
*netdev
)
702 struct xlgmac_pdata
*pdata
= netdev_priv(netdev
);
703 struct xlgmac_pkt_info
*tx_pkt_info
;
704 struct xlgmac_desc_ops
*desc_ops
;
705 struct xlgmac_channel
*channel
;
706 struct xlgmac_hw_ops
*hw_ops
;
707 struct netdev_queue
*txq
;
708 struct xlgmac_ring
*ring
;
711 desc_ops
= &pdata
->desc_ops
;
712 hw_ops
= &pdata
->hw_ops
;
714 XLGMAC_PR("skb->len = %d\n", skb
->len
);
716 channel
= pdata
->channel_head
+ skb
->queue_mapping
;
717 txq
= netdev_get_tx_queue(netdev
, channel
->queue_index
);
718 ring
= channel
->tx_ring
;
719 tx_pkt_info
= &ring
->pkt_info
;
722 netif_err(pdata
, tx_err
, netdev
,
723 "empty skb received from stack\n");
724 dev_kfree_skb_any(skb
);
728 /* Prepare preliminary packet info for TX */
729 memset(tx_pkt_info
, 0, sizeof(*tx_pkt_info
));
730 xlgmac_prep_tx_pkt(pdata
, ring
, skb
, tx_pkt_info
);
732 /* Check that there are enough descriptors available */
733 ret
= xlgmac_maybe_stop_tx_queue(channel
, ring
,
734 tx_pkt_info
->desc_count
);
738 ret
= xlgmac_prep_tso(skb
, tx_pkt_info
);
740 netif_err(pdata
, tx_err
, netdev
,
741 "error processing TSO packet\n");
742 dev_kfree_skb_any(skb
);
745 xlgmac_prep_vlan(skb
, tx_pkt_info
);
747 if (!desc_ops
->map_tx_skb(channel
, skb
)) {
748 dev_kfree_skb_any(skb
);
752 /* Report on the actual number of bytes (to be) sent */
753 netdev_tx_sent_queue(txq
, tx_pkt_info
->tx_bytes
);
755 /* Configure required descriptor fields for transmission */
756 hw_ops
->dev_xmit(channel
);
758 if (netif_msg_pktdata(pdata
))
759 xlgmac_print_pkt(netdev
, skb
, true);
761 /* Stop the queue in advance if there may not be enough descriptors */
762 xlgmac_maybe_stop_tx_queue(channel
, ring
, XLGMAC_TX_MAX_DESC_NR
);
767 static void xlgmac_get_stats64(struct net_device
*netdev
,
768 struct rtnl_link_stats64
*s
)
770 struct xlgmac_pdata
*pdata
= netdev_priv(netdev
);
771 struct xlgmac_stats
*pstats
= &pdata
->stats
;
773 pdata
->hw_ops
.read_mmc_stats(pdata
);
775 s
->rx_packets
= pstats
->rxframecount_gb
;
776 s
->rx_bytes
= pstats
->rxoctetcount_gb
;
777 s
->rx_errors
= pstats
->rxframecount_gb
-
778 pstats
->rxbroadcastframes_g
-
779 pstats
->rxmulticastframes_g
-
780 pstats
->rxunicastframes_g
;
781 s
->multicast
= pstats
->rxmulticastframes_g
;
782 s
->rx_length_errors
= pstats
->rxlengtherror
;
783 s
->rx_crc_errors
= pstats
->rxcrcerror
;
784 s
->rx_fifo_errors
= pstats
->rxfifooverflow
;
786 s
->tx_packets
= pstats
->txframecount_gb
;
787 s
->tx_bytes
= pstats
->txoctetcount_gb
;
788 s
->tx_errors
= pstats
->txframecount_gb
- pstats
->txframecount_g
;
789 s
->tx_dropped
= netdev
->stats
.tx_dropped
;
792 static int xlgmac_set_mac_address(struct net_device
*netdev
, void *addr
)
794 struct xlgmac_pdata
*pdata
= netdev_priv(netdev
);
795 struct xlgmac_hw_ops
*hw_ops
= &pdata
->hw_ops
;
796 struct sockaddr
*saddr
= addr
;
798 if (!is_valid_ether_addr(saddr
->sa_data
))
799 return -EADDRNOTAVAIL
;
801 memcpy(netdev
->dev_addr
, saddr
->sa_data
, netdev
->addr_len
);
803 hw_ops
->set_mac_address(pdata
, netdev
->dev_addr
);
808 static int xlgmac_ioctl(struct net_device
*netdev
,
809 struct ifreq
*ifreq
, int cmd
)
811 if (!netif_running(netdev
))
817 static int xlgmac_change_mtu(struct net_device
*netdev
, int mtu
)
819 struct xlgmac_pdata
*pdata
= netdev_priv(netdev
);
822 ret
= xlgmac_calc_rx_buf_size(netdev
, mtu
);
826 pdata
->rx_buf_size
= ret
;
829 xlgmac_restart_dev(pdata
);
834 static int xlgmac_vlan_rx_add_vid(struct net_device
*netdev
,
838 struct xlgmac_pdata
*pdata
= netdev_priv(netdev
);
839 struct xlgmac_hw_ops
*hw_ops
= &pdata
->hw_ops
;
841 set_bit(vid
, pdata
->active_vlans
);
842 hw_ops
->update_vlan_hash_table(pdata
);
847 static int xlgmac_vlan_rx_kill_vid(struct net_device
*netdev
,
851 struct xlgmac_pdata
*pdata
= netdev_priv(netdev
);
852 struct xlgmac_hw_ops
*hw_ops
= &pdata
->hw_ops
;
854 clear_bit(vid
, pdata
->active_vlans
);
855 hw_ops
->update_vlan_hash_table(pdata
);
860 #ifdef CONFIG_NET_POLL_CONTROLLER
861 static void xlgmac_poll_controller(struct net_device
*netdev
)
863 struct xlgmac_pdata
*pdata
= netdev_priv(netdev
);
864 struct xlgmac_channel
*channel
;
867 if (pdata
->per_channel_irq
) {
868 channel
= pdata
->channel_head
;
869 for (i
= 0; i
< pdata
->channel_count
; i
++, channel
++)
870 xlgmac_dma_isr(channel
->dma_irq
, channel
);
872 disable_irq(pdata
->dev_irq
);
873 xlgmac_isr(pdata
->dev_irq
, pdata
);
874 enable_irq(pdata
->dev_irq
);
877 #endif /* CONFIG_NET_POLL_CONTROLLER */
879 static int xlgmac_set_features(struct net_device
*netdev
,
880 netdev_features_t features
)
882 netdev_features_t rxhash
, rxcsum
, rxvlan
, rxvlan_filter
;
883 struct xlgmac_pdata
*pdata
= netdev_priv(netdev
);
884 struct xlgmac_hw_ops
*hw_ops
= &pdata
->hw_ops
;
887 rxhash
= pdata
->netdev_features
& NETIF_F_RXHASH
;
888 rxcsum
= pdata
->netdev_features
& NETIF_F_RXCSUM
;
889 rxvlan
= pdata
->netdev_features
& NETIF_F_HW_VLAN_CTAG_RX
;
890 rxvlan_filter
= pdata
->netdev_features
& NETIF_F_HW_VLAN_CTAG_FILTER
;
892 if ((features
& NETIF_F_RXHASH
) && !rxhash
)
893 ret
= hw_ops
->enable_rss(pdata
);
894 else if (!(features
& NETIF_F_RXHASH
) && rxhash
)
895 ret
= hw_ops
->disable_rss(pdata
);
899 if ((features
& NETIF_F_RXCSUM
) && !rxcsum
)
900 hw_ops
->enable_rx_csum(pdata
);
901 else if (!(features
& NETIF_F_RXCSUM
) && rxcsum
)
902 hw_ops
->disable_rx_csum(pdata
);
904 if ((features
& NETIF_F_HW_VLAN_CTAG_RX
) && !rxvlan
)
905 hw_ops
->enable_rx_vlan_stripping(pdata
);
906 else if (!(features
& NETIF_F_HW_VLAN_CTAG_RX
) && rxvlan
)
907 hw_ops
->disable_rx_vlan_stripping(pdata
);
909 if ((features
& NETIF_F_HW_VLAN_CTAG_FILTER
) && !rxvlan_filter
)
910 hw_ops
->enable_rx_vlan_filtering(pdata
);
911 else if (!(features
& NETIF_F_HW_VLAN_CTAG_FILTER
) && rxvlan_filter
)
912 hw_ops
->disable_rx_vlan_filtering(pdata
);
914 pdata
->netdev_features
= features
;
919 static void xlgmac_set_rx_mode(struct net_device
*netdev
)
921 struct xlgmac_pdata
*pdata
= netdev_priv(netdev
);
922 struct xlgmac_hw_ops
*hw_ops
= &pdata
->hw_ops
;
924 hw_ops
->config_rx_mode(pdata
);
927 static const struct net_device_ops xlgmac_netdev_ops
= {
928 .ndo_open
= xlgmac_open
,
929 .ndo_stop
= xlgmac_close
,
930 .ndo_start_xmit
= xlgmac_xmit
,
931 .ndo_tx_timeout
= xlgmac_tx_timeout
,
932 .ndo_get_stats64
= xlgmac_get_stats64
,
933 .ndo_change_mtu
= xlgmac_change_mtu
,
934 .ndo_set_mac_address
= xlgmac_set_mac_address
,
935 .ndo_validate_addr
= eth_validate_addr
,
936 .ndo_do_ioctl
= xlgmac_ioctl
,
937 .ndo_vlan_rx_add_vid
= xlgmac_vlan_rx_add_vid
,
938 .ndo_vlan_rx_kill_vid
= xlgmac_vlan_rx_kill_vid
,
939 #ifdef CONFIG_NET_POLL_CONTROLLER
940 .ndo_poll_controller
= xlgmac_poll_controller
,
942 .ndo_set_features
= xlgmac_set_features
,
943 .ndo_set_rx_mode
= xlgmac_set_rx_mode
,
946 const struct net_device_ops
*xlgmac_get_netdev_ops(void)
948 return &xlgmac_netdev_ops
;
951 static void xlgmac_rx_refresh(struct xlgmac_channel
*channel
)
953 struct xlgmac_pdata
*pdata
= channel
->pdata
;
954 struct xlgmac_ring
*ring
= channel
->rx_ring
;
955 struct xlgmac_desc_data
*desc_data
;
956 struct xlgmac_desc_ops
*desc_ops
;
957 struct xlgmac_hw_ops
*hw_ops
;
959 desc_ops
= &pdata
->desc_ops
;
960 hw_ops
= &pdata
->hw_ops
;
962 while (ring
->dirty
!= ring
->cur
) {
963 desc_data
= XLGMAC_GET_DESC_DATA(ring
, ring
->dirty
);
965 /* Reset desc_data values */
966 desc_ops
->unmap_desc_data(pdata
, desc_data
);
968 if (desc_ops
->map_rx_buffer(pdata
, ring
, desc_data
))
971 hw_ops
->rx_desc_reset(pdata
, desc_data
, ring
->dirty
);
976 /* Make sure everything is written before the register write */
979 /* Update the Rx Tail Pointer Register with address of
980 * the last cleaned entry
982 desc_data
= XLGMAC_GET_DESC_DATA(ring
, ring
->dirty
- 1);
983 writel(lower_32_bits(desc_data
->dma_desc_addr
),
984 XLGMAC_DMA_REG(channel
, DMA_CH_RDTR_LO
));
987 static struct sk_buff
*xlgmac_create_skb(struct xlgmac_pdata
*pdata
,
988 struct napi_struct
*napi
,
989 struct xlgmac_desc_data
*desc_data
,
992 unsigned int copy_len
;
996 skb
= napi_alloc_skb(napi
, desc_data
->rx
.hdr
.dma_len
);
1000 /* Start with the header buffer which may contain just the header
1001 * or the header plus data
1003 dma_sync_single_range_for_cpu(pdata
->dev
, desc_data
->rx
.hdr
.dma_base
,
1004 desc_data
->rx
.hdr
.dma_off
,
1005 desc_data
->rx
.hdr
.dma_len
,
1008 packet
= page_address(desc_data
->rx
.hdr
.pa
.pages
) +
1009 desc_data
->rx
.hdr
.pa
.pages_offset
;
1010 copy_len
= (desc_data
->rx
.hdr_len
) ? desc_data
->rx
.hdr_len
: len
;
1011 copy_len
= min(desc_data
->rx
.hdr
.dma_len
, copy_len
);
1012 skb_copy_to_linear_data(skb
, packet
, copy_len
);
1013 skb_put(skb
, copy_len
);
1017 /* Add the remaining data as a frag */
1018 dma_sync_single_range_for_cpu(pdata
->dev
,
1019 desc_data
->rx
.buf
.dma_base
,
1020 desc_data
->rx
.buf
.dma_off
,
1021 desc_data
->rx
.buf
.dma_len
,
1024 skb_add_rx_frag(skb
, skb_shinfo(skb
)->nr_frags
,
1025 desc_data
->rx
.buf
.pa
.pages
,
1026 desc_data
->rx
.buf
.pa
.pages_offset
,
1027 len
, desc_data
->rx
.buf
.dma_len
);
1028 desc_data
->rx
.buf
.pa
.pages
= NULL
;
1034 static int xlgmac_tx_poll(struct xlgmac_channel
*channel
)
1036 struct xlgmac_pdata
*pdata
= channel
->pdata
;
1037 struct xlgmac_ring
*ring
= channel
->tx_ring
;
1038 struct net_device
*netdev
= pdata
->netdev
;
1039 unsigned int tx_packets
= 0, tx_bytes
= 0;
1040 struct xlgmac_desc_data
*desc_data
;
1041 struct xlgmac_dma_desc
*dma_desc
;
1042 struct xlgmac_desc_ops
*desc_ops
;
1043 struct xlgmac_hw_ops
*hw_ops
;
1044 struct netdev_queue
*txq
;
1048 desc_ops
= &pdata
->desc_ops
;
1049 hw_ops
= &pdata
->hw_ops
;
1051 /* Nothing to do if there isn't a Tx ring for this channel */
1057 /* Be sure we get ring->cur before accessing descriptor data */
1060 txq
= netdev_get_tx_queue(netdev
, channel
->queue_index
);
1062 while ((processed
< XLGMAC_TX_DESC_MAX_PROC
) &&
1063 (ring
->dirty
!= cur
)) {
1064 desc_data
= XLGMAC_GET_DESC_DATA(ring
, ring
->dirty
);
1065 dma_desc
= desc_data
->dma_desc
;
1067 if (!hw_ops
->tx_complete(dma_desc
))
1070 /* Make sure descriptor fields are read after reading
1075 if (netif_msg_tx_done(pdata
))
1076 xlgmac_dump_tx_desc(pdata
, ring
, ring
->dirty
, 1, 0);
1078 if (hw_ops
->is_last_desc(dma_desc
)) {
1079 tx_packets
+= desc_data
->tx
.packets
;
1080 tx_bytes
+= desc_data
->tx
.bytes
;
1083 /* Free the SKB and reset the descriptor for re-use */
1084 desc_ops
->unmap_desc_data(pdata
, desc_data
);
1085 hw_ops
->tx_desc_reset(desc_data
);
1094 netdev_tx_completed_queue(txq
, tx_packets
, tx_bytes
);
1096 if ((ring
->tx
.queue_stopped
== 1) &&
1097 (xlgmac_tx_avail_desc(ring
) > XLGMAC_TX_DESC_MIN_FREE
)) {
1098 ring
->tx
.queue_stopped
= 0;
1099 netif_tx_wake_queue(txq
);
1102 XLGMAC_PR("processed=%d\n", processed
);
1107 static int xlgmac_rx_poll(struct xlgmac_channel
*channel
, int budget
)
1109 struct xlgmac_pdata
*pdata
= channel
->pdata
;
1110 struct xlgmac_ring
*ring
= channel
->rx_ring
;
1111 struct net_device
*netdev
= pdata
->netdev
;
1112 unsigned int len
, dma_desc_len
, max_len
;
1113 unsigned int context_next
, context
;
1114 struct xlgmac_desc_data
*desc_data
;
1115 struct xlgmac_pkt_info
*pkt_info
;
1116 unsigned int incomplete
, error
;
1117 struct xlgmac_hw_ops
*hw_ops
;
1118 unsigned int received
= 0;
1119 struct napi_struct
*napi
;
1120 struct sk_buff
*skb
;
1121 int packet_count
= 0;
1123 hw_ops
= &pdata
->hw_ops
;
1125 /* Nothing to do if there isn't a Rx ring for this channel */
1132 napi
= (pdata
->per_channel_irq
) ? &channel
->napi
: &pdata
->napi
;
1134 desc_data
= XLGMAC_GET_DESC_DATA(ring
, ring
->cur
);
1135 pkt_info
= &ring
->pkt_info
;
1136 while (packet_count
< budget
) {
1137 /* First time in loop see if we need to restore state */
1138 if (!received
&& desc_data
->state_saved
) {
1139 skb
= desc_data
->state
.skb
;
1140 error
= desc_data
->state
.error
;
1141 len
= desc_data
->state
.len
;
1143 memset(pkt_info
, 0, sizeof(*pkt_info
));
1150 desc_data
= XLGMAC_GET_DESC_DATA(ring
, ring
->cur
);
1152 if (xlgmac_rx_dirty_desc(ring
) > XLGMAC_RX_DESC_MAX_DIRTY
)
1153 xlgmac_rx_refresh(channel
);
1155 if (hw_ops
->dev_read(channel
))
1161 incomplete
= XLGMAC_GET_REG_BITS(
1162 pkt_info
->attributes
,
1163 RX_PACKET_ATTRIBUTES_INCOMPLETE_POS
,
1164 RX_PACKET_ATTRIBUTES_INCOMPLETE_LEN
);
1165 context_next
= XLGMAC_GET_REG_BITS(
1166 pkt_info
->attributes
,
1167 RX_PACKET_ATTRIBUTES_CONTEXT_NEXT_POS
,
1168 RX_PACKET_ATTRIBUTES_CONTEXT_NEXT_LEN
);
1169 context
= XLGMAC_GET_REG_BITS(
1170 pkt_info
->attributes
,
1171 RX_PACKET_ATTRIBUTES_CONTEXT_POS
,
1172 RX_PACKET_ATTRIBUTES_CONTEXT_LEN
);
1174 /* Earlier error, just drain the remaining data */
1175 if ((incomplete
|| context_next
) && error
)
1178 if (error
|| pkt_info
->errors
) {
1179 if (pkt_info
->errors
)
1180 netif_err(pdata
, rx_err
, netdev
,
1181 "error in received packet\n");
1187 /* Length is cumulative, get this descriptor's length */
1188 dma_desc_len
= desc_data
->rx
.len
- len
;
1189 len
+= dma_desc_len
;
1191 if (dma_desc_len
&& !skb
) {
1192 skb
= xlgmac_create_skb(pdata
, napi
, desc_data
,
1196 } else if (dma_desc_len
) {
1197 dma_sync_single_range_for_cpu(
1199 desc_data
->rx
.buf
.dma_base
,
1200 desc_data
->rx
.buf
.dma_off
,
1201 desc_data
->rx
.buf
.dma_len
,
1205 skb
, skb_shinfo(skb
)->nr_frags
,
1206 desc_data
->rx
.buf
.pa
.pages
,
1207 desc_data
->rx
.buf
.pa
.pages_offset
,
1209 desc_data
->rx
.buf
.dma_len
);
1210 desc_data
->rx
.buf
.pa
.pages
= NULL
;
1214 if (incomplete
|| context_next
)
1220 /* Be sure we don't exceed the configured MTU */
1221 max_len
= netdev
->mtu
+ ETH_HLEN
;
1222 if (!(netdev
->features
& NETIF_F_HW_VLAN_CTAG_RX
) &&
1223 (skb
->protocol
== htons(ETH_P_8021Q
)))
1224 max_len
+= VLAN_HLEN
;
1226 if (skb
->len
> max_len
) {
1227 netif_err(pdata
, rx_err
, netdev
,
1228 "packet length exceeds configured MTU\n");
1233 if (netif_msg_pktdata(pdata
))
1234 xlgmac_print_pkt(netdev
, skb
, false);
1236 skb_checksum_none_assert(skb
);
1237 if (XLGMAC_GET_REG_BITS(pkt_info
->attributes
,
1238 RX_PACKET_ATTRIBUTES_CSUM_DONE_POS
,
1239 RX_PACKET_ATTRIBUTES_CSUM_DONE_LEN
))
1240 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
1242 if (XLGMAC_GET_REG_BITS(pkt_info
->attributes
,
1243 RX_PACKET_ATTRIBUTES_VLAN_CTAG_POS
,
1244 RX_PACKET_ATTRIBUTES_VLAN_CTAG_LEN
)) {
1245 __vlan_hwaccel_put_tag(skb
, htons(ETH_P_8021Q
),
1246 pkt_info
->vlan_ctag
);
1247 pdata
->stats
.rx_vlan_packets
++;
1250 if (XLGMAC_GET_REG_BITS(pkt_info
->attributes
,
1251 RX_PACKET_ATTRIBUTES_RSS_HASH_POS
,
1252 RX_PACKET_ATTRIBUTES_RSS_HASH_LEN
))
1253 skb_set_hash(skb
, pkt_info
->rss_hash
,
1254 pkt_info
->rss_hash_type
);
1257 skb
->protocol
= eth_type_trans(skb
, netdev
);
1258 skb_record_rx_queue(skb
, channel
->queue_index
);
1260 napi_gro_receive(napi
, skb
);
1266 /* Check if we need to save state before leaving */
1267 if (received
&& (incomplete
|| context_next
)) {
1268 desc_data
= XLGMAC_GET_DESC_DATA(ring
, ring
->cur
);
1269 desc_data
->state_saved
= 1;
1270 desc_data
->state
.skb
= skb
;
1271 desc_data
->state
.len
= len
;
1272 desc_data
->state
.error
= error
;
1275 XLGMAC_PR("packet_count = %d\n", packet_count
);
1277 return packet_count
;
1280 static int xlgmac_one_poll(struct napi_struct
*napi
, int budget
)
1282 struct xlgmac_channel
*channel
= container_of(napi
,
1283 struct xlgmac_channel
,
1287 XLGMAC_PR("budget=%d\n", budget
);
1289 /* Cleanup Tx ring first */
1290 xlgmac_tx_poll(channel
);
1292 /* Process Rx ring next */
1293 processed
= xlgmac_rx_poll(channel
, budget
);
1295 /* If we processed everything, we are done */
1296 if (processed
< budget
) {
1297 /* Turn off polling */
1298 napi_complete_done(napi
, processed
);
1300 /* Enable Tx and Rx interrupts */
1301 enable_irq(channel
->dma_irq
);
1304 XLGMAC_PR("received = %d\n", processed
);
1309 static int xlgmac_all_poll(struct napi_struct
*napi
, int budget
)
1311 struct xlgmac_pdata
*pdata
= container_of(napi
,
1312 struct xlgmac_pdata
,
1314 struct xlgmac_channel
*channel
;
1315 int processed
, last_processed
;
1319 XLGMAC_PR("budget=%d\n", budget
);
1322 ring_budget
= budget
/ pdata
->rx_ring_count
;
1324 last_processed
= processed
;
1326 channel
= pdata
->channel_head
;
1327 for (i
= 0; i
< pdata
->channel_count
; i
++, channel
++) {
1328 /* Cleanup Tx ring first */
1329 xlgmac_tx_poll(channel
);
1331 /* Process Rx ring next */
1332 if (ring_budget
> (budget
- processed
))
1333 ring_budget
= budget
- processed
;
1334 processed
+= xlgmac_rx_poll(channel
, ring_budget
);
1336 } while ((processed
< budget
) && (processed
!= last_processed
));
1338 /* If we processed everything, we are done */
1339 if (processed
< budget
) {
1340 /* Turn off polling */
1341 napi_complete_done(napi
, processed
);
1343 /* Enable Tx and Rx interrupts */
1344 xlgmac_enable_rx_tx_ints(pdata
);
1347 XLGMAC_PR("received = %d\n", processed
);