1 /* Broadcom NetXtreme-C/E network driver.
3 * Copyright (c) 2014-2016 Broadcom Corporation
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation.
10 #include <linux/module.h>
12 #include <linux/stringify.h>
13 #include <linux/kernel.h>
14 #include <linux/timer.h>
15 #include <linux/errno.h>
16 #include <linux/ioport.h>
17 #include <linux/slab.h>
18 #include <linux/vmalloc.h>
19 #include <linux/interrupt.h>
20 #include <linux/pci.h>
21 #include <linux/netdevice.h>
22 #include <linux/etherdevice.h>
23 #include <linux/skbuff.h>
24 #include <linux/dma-mapping.h>
25 #include <linux/bitops.h>
27 #include <linux/irq.h>
28 #include <linux/delay.h>
29 #include <asm/byteorder.h>
31 #include <linux/time.h>
32 #include <linux/mii.h>
34 #include <linux/if_vlan.h>
38 #include <net/checksum.h>
39 #include <net/ip6_checksum.h>
40 #if defined(CONFIG_VXLAN) || defined(CONFIG_VXLAN_MODULE)
41 #include <net/vxlan.h>
43 #ifdef CONFIG_NET_RX_BUSY_POLL
44 #include <net/busy_poll.h>
46 #include <linux/workqueue.h>
47 #include <linux/prefetch.h>
48 #include <linux/cache.h>
49 #include <linux/log2.h>
50 #include <linux/aer.h>
51 #include <linux/bitmap.h>
52 #include <linux/cpu_rmap.h>
56 #include "bnxt_sriov.h"
57 #include "bnxt_ethtool.h"
59 #define BNXT_TX_TIMEOUT (5 * HZ)
61 static const char version
[] =
62 "Broadcom NetXtreme-C/E driver " DRV_MODULE_NAME
" v" DRV_MODULE_VERSION
"\n";
64 MODULE_LICENSE("GPL");
65 MODULE_DESCRIPTION("Broadcom BCM573xx network driver");
66 MODULE_VERSION(DRV_MODULE_VERSION
);
68 #define BNXT_RX_OFFSET (NET_SKB_PAD + NET_IP_ALIGN)
69 #define BNXT_RX_DMA_OFFSET NET_SKB_PAD
70 #define BNXT_RX_COPY_THRESH 256
72 #define BNXT_TX_PUSH_THRESH 164
85 /* indexed by enum above */
89 { "Broadcom BCM57301 NetXtreme-C Single-port 10Gb Ethernet" },
90 { "Broadcom BCM57302 NetXtreme-C Dual-port 10Gb/25Gb Ethernet" },
91 { "Broadcom BCM57304 NetXtreme-C Dual-port 10Gb/25Gb/40Gb/50Gb Ethernet" },
92 { "Broadcom BCM57402 NetXtreme-E Dual-port 10Gb Ethernet" },
93 { "Broadcom BCM57404 NetXtreme-E Dual-port 10Gb/25Gb Ethernet" },
94 { "Broadcom BCM57406 NetXtreme-E Dual-port 10GBase-T Ethernet" },
95 { "Broadcom BCM57304 NetXtreme-C Ethernet Virtual Function" },
96 { "Broadcom BCM57404 NetXtreme-E Ethernet Virtual Function" },
99 static const struct pci_device_id bnxt_pci_tbl
[] = {
100 { PCI_VDEVICE(BROADCOM
, 0x16c8), .driver_data
= BCM57301
},
101 { PCI_VDEVICE(BROADCOM
, 0x16c9), .driver_data
= BCM57302
},
102 { PCI_VDEVICE(BROADCOM
, 0x16ca), .driver_data
= BCM57304
},
103 { PCI_VDEVICE(BROADCOM
, 0x16d0), .driver_data
= BCM57402
},
104 { PCI_VDEVICE(BROADCOM
, 0x16d1), .driver_data
= BCM57404
},
105 { PCI_VDEVICE(BROADCOM
, 0x16d2), .driver_data
= BCM57406
},
106 #ifdef CONFIG_BNXT_SRIOV
107 { PCI_VDEVICE(BROADCOM
, 0x16cb), .driver_data
= BCM57304_VF
},
108 { PCI_VDEVICE(BROADCOM
, 0x16d3), .driver_data
= BCM57404_VF
},
113 MODULE_DEVICE_TABLE(pci
, bnxt_pci_tbl
);
115 static const u16 bnxt_vf_req_snif
[] = {
118 HWRM_CFA_L2_FILTER_ALLOC
,
121 static bool bnxt_vf_pciid(enum board_idx idx
)
123 return (idx
== BCM57304_VF
|| idx
== BCM57404_VF
);
126 #define DB_CP_REARM_FLAGS (DB_KEY_CP | DB_IDX_VALID)
127 #define DB_CP_FLAGS (DB_KEY_CP | DB_IDX_VALID | DB_IRQ_DIS)
128 #define DB_CP_IRQ_DIS_FLAGS (DB_KEY_CP | DB_IRQ_DIS)
130 #define BNXT_CP_DB_REARM(db, raw_cons) \
131 writel(DB_CP_REARM_FLAGS | RING_CMP(raw_cons), db)
133 #define BNXT_CP_DB(db, raw_cons) \
134 writel(DB_CP_FLAGS | RING_CMP(raw_cons), db)
136 #define BNXT_CP_DB_IRQ_DIS(db) \
137 writel(DB_CP_IRQ_DIS_FLAGS, db)
139 static inline u32
bnxt_tx_avail(struct bnxt
*bp
, struct bnxt_tx_ring_info
*txr
)
141 /* Tell compiler to fetch tx indices from memory. */
144 return bp
->tx_ring_size
-
145 ((txr
->tx_prod
- txr
->tx_cons
) & bp
->tx_ring_mask
);
148 static const u16 bnxt_lhint_arr
[] = {
149 TX_BD_FLAGS_LHINT_512_AND_SMALLER
,
150 TX_BD_FLAGS_LHINT_512_TO_1023
,
151 TX_BD_FLAGS_LHINT_1024_TO_2047
,
152 TX_BD_FLAGS_LHINT_1024_TO_2047
,
153 TX_BD_FLAGS_LHINT_2048_AND_LARGER
,
154 TX_BD_FLAGS_LHINT_2048_AND_LARGER
,
155 TX_BD_FLAGS_LHINT_2048_AND_LARGER
,
156 TX_BD_FLAGS_LHINT_2048_AND_LARGER
,
157 TX_BD_FLAGS_LHINT_2048_AND_LARGER
,
158 TX_BD_FLAGS_LHINT_2048_AND_LARGER
,
159 TX_BD_FLAGS_LHINT_2048_AND_LARGER
,
160 TX_BD_FLAGS_LHINT_2048_AND_LARGER
,
161 TX_BD_FLAGS_LHINT_2048_AND_LARGER
,
162 TX_BD_FLAGS_LHINT_2048_AND_LARGER
,
163 TX_BD_FLAGS_LHINT_2048_AND_LARGER
,
164 TX_BD_FLAGS_LHINT_2048_AND_LARGER
,
165 TX_BD_FLAGS_LHINT_2048_AND_LARGER
,
166 TX_BD_FLAGS_LHINT_2048_AND_LARGER
,
167 TX_BD_FLAGS_LHINT_2048_AND_LARGER
,
170 static netdev_tx_t
bnxt_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
172 struct bnxt
*bp
= netdev_priv(dev
);
174 struct tx_bd_ext
*txbd1
;
175 struct netdev_queue
*txq
;
178 unsigned int length
, pad
= 0;
179 u32 len
, free_size
, vlan_tag_flags
, cfa_action
, flags
;
181 struct pci_dev
*pdev
= bp
->pdev
;
182 struct bnxt_tx_ring_info
*txr
;
183 struct bnxt_sw_tx_bd
*tx_buf
;
185 i
= skb_get_queue_mapping(skb
);
186 if (unlikely(i
>= bp
->tx_nr_rings
)) {
187 dev_kfree_skb_any(skb
);
191 txr
= &bp
->tx_ring
[i
];
192 txq
= netdev_get_tx_queue(dev
, i
);
195 free_size
= bnxt_tx_avail(bp
, txr
);
196 if (unlikely(free_size
< skb_shinfo(skb
)->nr_frags
+ 2)) {
197 netif_tx_stop_queue(txq
);
198 return NETDEV_TX_BUSY
;
202 len
= skb_headlen(skb
);
203 last_frag
= skb_shinfo(skb
)->nr_frags
;
205 txbd
= &txr
->tx_desc_ring
[TX_RING(prod
)][TX_IDX(prod
)];
207 txbd
->tx_bd_opaque
= prod
;
209 tx_buf
= &txr
->tx_buf_ring
[prod
];
211 tx_buf
->nr_frags
= last_frag
;
215 if (skb_vlan_tag_present(skb
)) {
216 vlan_tag_flags
= TX_BD_CFA_META_KEY_VLAN
|
217 skb_vlan_tag_get(skb
);
218 /* Currently supports 8021Q, 8021AD vlan offloads
219 * QINQ1, QINQ2, QINQ3 vlan headers are deprecated
221 if (skb
->vlan_proto
== htons(ETH_P_8021Q
))
222 vlan_tag_flags
|= 1 << TX_BD_CFA_META_TPID_SHIFT
;
225 if (free_size
== bp
->tx_ring_size
&& length
<= bp
->tx_push_thresh
) {
226 struct tx_push_buffer
*tx_push_buf
= txr
->tx_push
;
227 struct tx_push_bd
*tx_push
= &tx_push_buf
->push_bd
;
228 struct tx_bd_ext
*tx_push1
= &tx_push
->txbd2
;
229 void *pdata
= tx_push_buf
->data
;
233 /* Set COAL_NOW to be ready quickly for the next push */
234 tx_push
->tx_bd_len_flags_type
=
235 cpu_to_le32((length
<< TX_BD_LEN_SHIFT
) |
236 TX_BD_TYPE_LONG_TX_BD
|
237 TX_BD_FLAGS_LHINT_512_AND_SMALLER
|
238 TX_BD_FLAGS_COAL_NOW
|
239 TX_BD_FLAGS_PACKET_END
|
240 (2 << TX_BD_FLAGS_BD_CNT_SHIFT
));
242 if (skb
->ip_summed
== CHECKSUM_PARTIAL
)
243 tx_push1
->tx_bd_hsize_lflags
=
244 cpu_to_le32(TX_BD_FLAGS_TCP_UDP_CHKSUM
);
246 tx_push1
->tx_bd_hsize_lflags
= 0;
248 tx_push1
->tx_bd_cfa_meta
= cpu_to_le32(vlan_tag_flags
);
249 tx_push1
->tx_bd_cfa_action
= cpu_to_le32(cfa_action
);
251 end
= pdata
+ length
;
252 end
= PTR_ALIGN(end
, 8) - 1;
255 skb_copy_from_linear_data(skb
, pdata
, len
);
257 for (j
= 0; j
< last_frag
; j
++) {
258 skb_frag_t
*frag
= &skb_shinfo(skb
)->frags
[j
];
261 fptr
= skb_frag_address_safe(frag
);
265 memcpy(pdata
, fptr
, skb_frag_size(frag
));
266 pdata
+= skb_frag_size(frag
);
269 txbd
->tx_bd_len_flags_type
= tx_push
->tx_bd_len_flags_type
;
270 txbd
->tx_bd_haddr
= txr
->data_mapping
;
271 prod
= NEXT_TX(prod
);
272 txbd
= &txr
->tx_desc_ring
[TX_RING(prod
)][TX_IDX(prod
)];
273 memcpy(txbd
, tx_push1
, sizeof(*txbd
));
274 prod
= NEXT_TX(prod
);
276 cpu_to_le32(DB_KEY_TX_PUSH
| DB_LONG_TX_PUSH
| prod
);
279 netdev_tx_sent_queue(txq
, skb
->len
);
281 push_len
= (length
+ sizeof(*tx_push
) + 7) / 8;
283 __iowrite64_copy(txr
->tx_doorbell
, tx_push_buf
, 16);
284 __iowrite64_copy(txr
->tx_doorbell
+ 4, tx_push_buf
+ 1,
287 __iowrite64_copy(txr
->tx_doorbell
, tx_push_buf
,
296 if (length
< BNXT_MIN_PKT_SIZE
) {
297 pad
= BNXT_MIN_PKT_SIZE
- length
;
298 if (skb_pad(skb
, pad
)) {
299 /* SKB already freed. */
303 length
= BNXT_MIN_PKT_SIZE
;
306 mapping
= dma_map_single(&pdev
->dev
, skb
->data
, len
, DMA_TO_DEVICE
);
308 if (unlikely(dma_mapping_error(&pdev
->dev
, mapping
))) {
309 dev_kfree_skb_any(skb
);
314 dma_unmap_addr_set(tx_buf
, mapping
, mapping
);
315 flags
= (len
<< TX_BD_LEN_SHIFT
) | TX_BD_TYPE_LONG_TX_BD
|
316 ((last_frag
+ 2) << TX_BD_FLAGS_BD_CNT_SHIFT
);
318 txbd
->tx_bd_haddr
= cpu_to_le64(mapping
);
320 prod
= NEXT_TX(prod
);
321 txbd1
= (struct tx_bd_ext
*)
322 &txr
->tx_desc_ring
[TX_RING(prod
)][TX_IDX(prod
)];
324 txbd1
->tx_bd_hsize_lflags
= 0;
325 if (skb_is_gso(skb
)) {
328 if (skb
->encapsulation
)
329 hdr_len
= skb_inner_network_offset(skb
) +
330 skb_inner_network_header_len(skb
) +
331 inner_tcp_hdrlen(skb
);
333 hdr_len
= skb_transport_offset(skb
) +
336 txbd1
->tx_bd_hsize_lflags
= cpu_to_le32(TX_BD_FLAGS_LSO
|
338 (hdr_len
<< (TX_BD_HSIZE_SHIFT
- 1)));
339 length
= skb_shinfo(skb
)->gso_size
;
340 txbd1
->tx_bd_mss
= cpu_to_le32(length
);
342 } else if (skb
->ip_summed
== CHECKSUM_PARTIAL
) {
343 txbd1
->tx_bd_hsize_lflags
=
344 cpu_to_le32(TX_BD_FLAGS_TCP_UDP_CHKSUM
);
345 txbd1
->tx_bd_mss
= 0;
349 flags
|= bnxt_lhint_arr
[length
];
350 txbd
->tx_bd_len_flags_type
= cpu_to_le32(flags
);
352 txbd1
->tx_bd_cfa_meta
= cpu_to_le32(vlan_tag_flags
);
353 txbd1
->tx_bd_cfa_action
= cpu_to_le32(cfa_action
);
354 for (i
= 0; i
< last_frag
; i
++) {
355 skb_frag_t
*frag
= &skb_shinfo(skb
)->frags
[i
];
357 prod
= NEXT_TX(prod
);
358 txbd
= &txr
->tx_desc_ring
[TX_RING(prod
)][TX_IDX(prod
)];
360 len
= skb_frag_size(frag
);
361 mapping
= skb_frag_dma_map(&pdev
->dev
, frag
, 0, len
,
364 if (unlikely(dma_mapping_error(&pdev
->dev
, mapping
)))
367 tx_buf
= &txr
->tx_buf_ring
[prod
];
368 dma_unmap_addr_set(tx_buf
, mapping
, mapping
);
370 txbd
->tx_bd_haddr
= cpu_to_le64(mapping
);
372 flags
= len
<< TX_BD_LEN_SHIFT
;
373 txbd
->tx_bd_len_flags_type
= cpu_to_le32(flags
);
377 txbd
->tx_bd_len_flags_type
=
378 cpu_to_le32(((len
+ pad
) << TX_BD_LEN_SHIFT
) | flags
|
379 TX_BD_FLAGS_PACKET_END
);
381 netdev_tx_sent_queue(txq
, skb
->len
);
383 /* Sync BD data before updating doorbell */
386 prod
= NEXT_TX(prod
);
389 writel(DB_KEY_TX
| prod
, txr
->tx_doorbell
);
390 writel(DB_KEY_TX
| prod
, txr
->tx_doorbell
);
396 if (unlikely(bnxt_tx_avail(bp
, txr
) <= MAX_SKB_FRAGS
+ 1)) {
397 netif_tx_stop_queue(txq
);
399 /* netif_tx_stop_queue() must be done before checking
400 * tx index in bnxt_tx_avail() below, because in
401 * bnxt_tx_int(), we update tx index before checking for
402 * netif_tx_queue_stopped().
405 if (bnxt_tx_avail(bp
, txr
) > bp
->tx_wake_thresh
)
406 netif_tx_wake_queue(txq
);
413 /* start back at beginning and unmap skb */
415 tx_buf
= &txr
->tx_buf_ring
[prod
];
417 dma_unmap_single(&pdev
->dev
, dma_unmap_addr(tx_buf
, mapping
),
418 skb_headlen(skb
), PCI_DMA_TODEVICE
);
419 prod
= NEXT_TX(prod
);
421 /* unmap remaining mapped pages */
422 for (i
= 0; i
< last_frag
; i
++) {
423 prod
= NEXT_TX(prod
);
424 tx_buf
= &txr
->tx_buf_ring
[prod
];
425 dma_unmap_page(&pdev
->dev
, dma_unmap_addr(tx_buf
, mapping
),
426 skb_frag_size(&skb_shinfo(skb
)->frags
[i
]),
430 dev_kfree_skb_any(skb
);
434 static void bnxt_tx_int(struct bnxt
*bp
, struct bnxt_napi
*bnapi
, int nr_pkts
)
436 struct bnxt_tx_ring_info
*txr
= bnapi
->tx_ring
;
437 int index
= txr
- &bp
->tx_ring
[0];
438 struct netdev_queue
*txq
= netdev_get_tx_queue(bp
->dev
, index
);
439 u16 cons
= txr
->tx_cons
;
440 struct pci_dev
*pdev
= bp
->pdev
;
442 unsigned int tx_bytes
= 0;
444 for (i
= 0; i
< nr_pkts
; i
++) {
445 struct bnxt_sw_tx_bd
*tx_buf
;
449 tx_buf
= &txr
->tx_buf_ring
[cons
];
450 cons
= NEXT_TX(cons
);
454 if (tx_buf
->is_push
) {
459 dma_unmap_single(&pdev
->dev
, dma_unmap_addr(tx_buf
, mapping
),
460 skb_headlen(skb
), PCI_DMA_TODEVICE
);
461 last
= tx_buf
->nr_frags
;
463 for (j
= 0; j
< last
; j
++) {
464 cons
= NEXT_TX(cons
);
465 tx_buf
= &txr
->tx_buf_ring
[cons
];
468 dma_unmap_addr(tx_buf
, mapping
),
469 skb_frag_size(&skb_shinfo(skb
)->frags
[j
]),
474 cons
= NEXT_TX(cons
);
476 tx_bytes
+= skb
->len
;
477 dev_kfree_skb_any(skb
);
480 netdev_tx_completed_queue(txq
, nr_pkts
, tx_bytes
);
483 /* Need to make the tx_cons update visible to bnxt_start_xmit()
484 * before checking for netif_tx_queue_stopped(). Without the
485 * memory barrier, there is a small possibility that bnxt_start_xmit()
486 * will miss it and cause the queue to be stopped forever.
490 if (unlikely(netif_tx_queue_stopped(txq
)) &&
491 (bnxt_tx_avail(bp
, txr
) > bp
->tx_wake_thresh
)) {
492 __netif_tx_lock(txq
, smp_processor_id());
493 if (netif_tx_queue_stopped(txq
) &&
494 bnxt_tx_avail(bp
, txr
) > bp
->tx_wake_thresh
&&
495 txr
->dev_state
!= BNXT_DEV_STATE_CLOSING
)
496 netif_tx_wake_queue(txq
);
497 __netif_tx_unlock(txq
);
501 static inline u8
*__bnxt_alloc_rx_data(struct bnxt
*bp
, dma_addr_t
*mapping
,
505 struct pci_dev
*pdev
= bp
->pdev
;
507 data
= kmalloc(bp
->rx_buf_size
, gfp
);
511 *mapping
= dma_map_single(&pdev
->dev
, data
+ BNXT_RX_DMA_OFFSET
,
512 bp
->rx_buf_use_size
, PCI_DMA_FROMDEVICE
);
514 if (dma_mapping_error(&pdev
->dev
, *mapping
)) {
521 static inline int bnxt_alloc_rx_data(struct bnxt
*bp
,
522 struct bnxt_rx_ring_info
*rxr
,
525 struct rx_bd
*rxbd
= &rxr
->rx_desc_ring
[RX_RING(prod
)][RX_IDX(prod
)];
526 struct bnxt_sw_rx_bd
*rx_buf
= &rxr
->rx_buf_ring
[prod
];
530 data
= __bnxt_alloc_rx_data(bp
, &mapping
, gfp
);
535 dma_unmap_addr_set(rx_buf
, mapping
, mapping
);
537 rxbd
->rx_bd_haddr
= cpu_to_le64(mapping
);
542 static void bnxt_reuse_rx_data(struct bnxt_rx_ring_info
*rxr
, u16 cons
,
545 u16 prod
= rxr
->rx_prod
;
546 struct bnxt_sw_rx_bd
*cons_rx_buf
, *prod_rx_buf
;
547 struct rx_bd
*cons_bd
, *prod_bd
;
549 prod_rx_buf
= &rxr
->rx_buf_ring
[prod
];
550 cons_rx_buf
= &rxr
->rx_buf_ring
[cons
];
552 prod_rx_buf
->data
= data
;
554 dma_unmap_addr_set(prod_rx_buf
, mapping
,
555 dma_unmap_addr(cons_rx_buf
, mapping
));
557 prod_bd
= &rxr
->rx_desc_ring
[RX_RING(prod
)][RX_IDX(prod
)];
558 cons_bd
= &rxr
->rx_desc_ring
[RX_RING(cons
)][RX_IDX(cons
)];
560 prod_bd
->rx_bd_haddr
= cons_bd
->rx_bd_haddr
;
563 static inline u16
bnxt_find_next_agg_idx(struct bnxt_rx_ring_info
*rxr
, u16 idx
)
565 u16 next
, max
= rxr
->rx_agg_bmap_size
;
567 next
= find_next_zero_bit(rxr
->rx_agg_bmap
, max
, idx
);
569 next
= find_first_zero_bit(rxr
->rx_agg_bmap
, max
);
573 static inline int bnxt_alloc_rx_page(struct bnxt
*bp
,
574 struct bnxt_rx_ring_info
*rxr
,
578 &rxr
->rx_agg_desc_ring
[RX_RING(prod
)][RX_IDX(prod
)];
579 struct bnxt_sw_rx_agg_bd
*rx_agg_buf
;
580 struct pci_dev
*pdev
= bp
->pdev
;
583 u16 sw_prod
= rxr
->rx_sw_agg_prod
;
585 page
= alloc_page(gfp
);
589 mapping
= dma_map_page(&pdev
->dev
, page
, 0, PAGE_SIZE
,
591 if (dma_mapping_error(&pdev
->dev
, mapping
)) {
596 if (unlikely(test_bit(sw_prod
, rxr
->rx_agg_bmap
)))
597 sw_prod
= bnxt_find_next_agg_idx(rxr
, sw_prod
);
599 __set_bit(sw_prod
, rxr
->rx_agg_bmap
);
600 rx_agg_buf
= &rxr
->rx_agg_ring
[sw_prod
];
601 rxr
->rx_sw_agg_prod
= NEXT_RX_AGG(sw_prod
);
603 rx_agg_buf
->page
= page
;
604 rx_agg_buf
->mapping
= mapping
;
605 rxbd
->rx_bd_haddr
= cpu_to_le64(mapping
);
606 rxbd
->rx_bd_opaque
= sw_prod
;
610 static void bnxt_reuse_rx_agg_bufs(struct bnxt_napi
*bnapi
, u16 cp_cons
,
613 struct bnxt
*bp
= bnapi
->bp
;
614 struct bnxt_cp_ring_info
*cpr
= &bnapi
->cp_ring
;
615 struct bnxt_rx_ring_info
*rxr
= bnapi
->rx_ring
;
616 u16 prod
= rxr
->rx_agg_prod
;
617 u16 sw_prod
= rxr
->rx_sw_agg_prod
;
620 for (i
= 0; i
< agg_bufs
; i
++) {
622 struct rx_agg_cmp
*agg
;
623 struct bnxt_sw_rx_agg_bd
*cons_rx_buf
, *prod_rx_buf
;
624 struct rx_bd
*prod_bd
;
627 agg
= (struct rx_agg_cmp
*)
628 &cpr
->cp_desc_ring
[CP_RING(cp_cons
)][CP_IDX(cp_cons
)];
629 cons
= agg
->rx_agg_cmp_opaque
;
630 __clear_bit(cons
, rxr
->rx_agg_bmap
);
632 if (unlikely(test_bit(sw_prod
, rxr
->rx_agg_bmap
)))
633 sw_prod
= bnxt_find_next_agg_idx(rxr
, sw_prod
);
635 __set_bit(sw_prod
, rxr
->rx_agg_bmap
);
636 prod_rx_buf
= &rxr
->rx_agg_ring
[sw_prod
];
637 cons_rx_buf
= &rxr
->rx_agg_ring
[cons
];
639 /* It is possible for sw_prod to be equal to cons, so
640 * set cons_rx_buf->page to NULL first.
642 page
= cons_rx_buf
->page
;
643 cons_rx_buf
->page
= NULL
;
644 prod_rx_buf
->page
= page
;
646 prod_rx_buf
->mapping
= cons_rx_buf
->mapping
;
648 prod_bd
= &rxr
->rx_agg_desc_ring
[RX_RING(prod
)][RX_IDX(prod
)];
650 prod_bd
->rx_bd_haddr
= cpu_to_le64(cons_rx_buf
->mapping
);
651 prod_bd
->rx_bd_opaque
= sw_prod
;
653 prod
= NEXT_RX_AGG(prod
);
654 sw_prod
= NEXT_RX_AGG(sw_prod
);
655 cp_cons
= NEXT_CMP(cp_cons
);
657 rxr
->rx_agg_prod
= prod
;
658 rxr
->rx_sw_agg_prod
= sw_prod
;
661 static struct sk_buff
*bnxt_rx_skb(struct bnxt
*bp
,
662 struct bnxt_rx_ring_info
*rxr
, u16 cons
,
663 u16 prod
, u8
*data
, dma_addr_t dma_addr
,
669 err
= bnxt_alloc_rx_data(bp
, rxr
, prod
, GFP_ATOMIC
);
671 bnxt_reuse_rx_data(rxr
, cons
, data
);
675 skb
= build_skb(data
, 0);
676 dma_unmap_single(&bp
->pdev
->dev
, dma_addr
, bp
->rx_buf_use_size
,
683 skb_reserve(skb
, BNXT_RX_OFFSET
);
688 static struct sk_buff
*bnxt_rx_pages(struct bnxt
*bp
, struct bnxt_napi
*bnapi
,
689 struct sk_buff
*skb
, u16 cp_cons
,
692 struct pci_dev
*pdev
= bp
->pdev
;
693 struct bnxt_cp_ring_info
*cpr
= &bnapi
->cp_ring
;
694 struct bnxt_rx_ring_info
*rxr
= bnapi
->rx_ring
;
695 u16 prod
= rxr
->rx_agg_prod
;
698 for (i
= 0; i
< agg_bufs
; i
++) {
700 struct rx_agg_cmp
*agg
;
701 struct bnxt_sw_rx_agg_bd
*cons_rx_buf
;
705 agg
= (struct rx_agg_cmp
*)
706 &cpr
->cp_desc_ring
[CP_RING(cp_cons
)][CP_IDX(cp_cons
)];
707 cons
= agg
->rx_agg_cmp_opaque
;
708 frag_len
= (le32_to_cpu(agg
->rx_agg_cmp_len_flags_type
) &
709 RX_AGG_CMP_LEN
) >> RX_AGG_CMP_LEN_SHIFT
;
711 cons_rx_buf
= &rxr
->rx_agg_ring
[cons
];
712 skb_fill_page_desc(skb
, i
, cons_rx_buf
->page
, 0, frag_len
);
713 __clear_bit(cons
, rxr
->rx_agg_bmap
);
715 /* It is possible for bnxt_alloc_rx_page() to allocate
716 * a sw_prod index that equals the cons index, so we
717 * need to clear the cons entry now.
719 mapping
= dma_unmap_addr(cons_rx_buf
, mapping
);
720 page
= cons_rx_buf
->page
;
721 cons_rx_buf
->page
= NULL
;
723 if (bnxt_alloc_rx_page(bp
, rxr
, prod
, GFP_ATOMIC
) != 0) {
724 struct skb_shared_info
*shinfo
;
725 unsigned int nr_frags
;
727 shinfo
= skb_shinfo(skb
);
728 nr_frags
= --shinfo
->nr_frags
;
729 __skb_frag_set_page(&shinfo
->frags
[nr_frags
], NULL
);
733 cons_rx_buf
->page
= page
;
735 /* Update prod since possibly some pages have been
738 rxr
->rx_agg_prod
= prod
;
739 bnxt_reuse_rx_agg_bufs(bnapi
, cp_cons
, agg_bufs
- i
);
743 dma_unmap_page(&pdev
->dev
, mapping
, PAGE_SIZE
,
746 skb
->data_len
+= frag_len
;
747 skb
->len
+= frag_len
;
748 skb
->truesize
+= PAGE_SIZE
;
750 prod
= NEXT_RX_AGG(prod
);
751 cp_cons
= NEXT_CMP(cp_cons
);
753 rxr
->rx_agg_prod
= prod
;
757 static int bnxt_agg_bufs_valid(struct bnxt
*bp
, struct bnxt_cp_ring_info
*cpr
,
758 u8 agg_bufs
, u32
*raw_cons
)
761 struct rx_agg_cmp
*agg
;
763 *raw_cons
= ADV_RAW_CMP(*raw_cons
, agg_bufs
);
764 last
= RING_CMP(*raw_cons
);
765 agg
= (struct rx_agg_cmp
*)
766 &cpr
->cp_desc_ring
[CP_RING(last
)][CP_IDX(last
)];
767 return RX_AGG_CMP_VALID(agg
, *raw_cons
);
770 static inline struct sk_buff
*bnxt_copy_skb(struct bnxt_napi
*bnapi
, u8
*data
,
774 struct bnxt
*bp
= bnapi
->bp
;
775 struct pci_dev
*pdev
= bp
->pdev
;
778 skb
= napi_alloc_skb(&bnapi
->napi
, len
);
782 dma_sync_single_for_cpu(&pdev
->dev
, mapping
,
783 bp
->rx_copy_thresh
, PCI_DMA_FROMDEVICE
);
785 memcpy(skb
->data
- BNXT_RX_OFFSET
, data
, len
+ BNXT_RX_OFFSET
);
787 dma_sync_single_for_device(&pdev
->dev
, mapping
,
795 static void bnxt_tpa_start(struct bnxt
*bp
, struct bnxt_rx_ring_info
*rxr
,
796 struct rx_tpa_start_cmp
*tpa_start
,
797 struct rx_tpa_start_cmp_ext
*tpa_start1
)
799 u8 agg_id
= TPA_START_AGG_ID(tpa_start
);
801 struct bnxt_tpa_info
*tpa_info
;
802 struct bnxt_sw_rx_bd
*cons_rx_buf
, *prod_rx_buf
;
803 struct rx_bd
*prod_bd
;
806 cons
= tpa_start
->rx_tpa_start_cmp_opaque
;
808 cons_rx_buf
= &rxr
->rx_buf_ring
[cons
];
809 prod_rx_buf
= &rxr
->rx_buf_ring
[prod
];
810 tpa_info
= &rxr
->rx_tpa
[agg_id
];
812 prod_rx_buf
->data
= tpa_info
->data
;
814 mapping
= tpa_info
->mapping
;
815 dma_unmap_addr_set(prod_rx_buf
, mapping
, mapping
);
817 prod_bd
= &rxr
->rx_desc_ring
[RX_RING(prod
)][RX_IDX(prod
)];
819 prod_bd
->rx_bd_haddr
= cpu_to_le64(mapping
);
821 tpa_info
->data
= cons_rx_buf
->data
;
822 cons_rx_buf
->data
= NULL
;
823 tpa_info
->mapping
= dma_unmap_addr(cons_rx_buf
, mapping
);
826 le32_to_cpu(tpa_start
->rx_tpa_start_cmp_len_flags_type
) >>
827 RX_TPA_START_CMP_LEN_SHIFT
;
828 if (likely(TPA_START_HASH_VALID(tpa_start
))) {
829 u32 hash_type
= TPA_START_HASH_TYPE(tpa_start
);
831 tpa_info
->hash_type
= PKT_HASH_TYPE_L4
;
832 tpa_info
->gso_type
= SKB_GSO_TCPV4
;
833 /* RSS profiles 1 and 3 with extract code 0 for inner 4-tuple */
835 tpa_info
->gso_type
= SKB_GSO_TCPV6
;
837 le32_to_cpu(tpa_start
->rx_tpa_start_cmp_rss_hash
);
839 tpa_info
->hash_type
= PKT_HASH_TYPE_NONE
;
840 tpa_info
->gso_type
= 0;
841 if (netif_msg_rx_err(bp
))
842 netdev_warn(bp
->dev
, "TPA packet without valid hash\n");
844 tpa_info
->flags2
= le32_to_cpu(tpa_start1
->rx_tpa_start_cmp_flags2
);
845 tpa_info
->metadata
= le32_to_cpu(tpa_start1
->rx_tpa_start_cmp_metadata
);
847 rxr
->rx_prod
= NEXT_RX(prod
);
848 cons
= NEXT_RX(cons
);
849 cons_rx_buf
= &rxr
->rx_buf_ring
[cons
];
851 bnxt_reuse_rx_data(rxr
, cons
, cons_rx_buf
->data
);
852 rxr
->rx_prod
= NEXT_RX(rxr
->rx_prod
);
853 cons_rx_buf
->data
= NULL
;
856 static void bnxt_abort_tpa(struct bnxt
*bp
, struct bnxt_napi
*bnapi
,
857 u16 cp_cons
, u32 agg_bufs
)
860 bnxt_reuse_rx_agg_bufs(bnapi
, cp_cons
, agg_bufs
);
863 #define BNXT_IPV4_HDR_SIZE (sizeof(struct iphdr) + sizeof(struct tcphdr))
864 #define BNXT_IPV6_HDR_SIZE (sizeof(struct ipv6hdr) + sizeof(struct tcphdr))
866 static inline struct sk_buff
*bnxt_gro_skb(struct bnxt_tpa_info
*tpa_info
,
867 struct rx_tpa_end_cmp
*tpa_end
,
868 struct rx_tpa_end_cmp_ext
*tpa_end1
,
873 int payload_off
, tcp_opt_len
= 0;
877 segs
= TPA_END_TPA_SEGS(tpa_end
);
881 NAPI_GRO_CB(skb
)->count
= segs
;
882 skb_shinfo(skb
)->gso_size
=
883 le32_to_cpu(tpa_end1
->rx_tpa_end_cmp_seg_len
);
884 skb_shinfo(skb
)->gso_type
= tpa_info
->gso_type
;
885 payload_off
= (le32_to_cpu(tpa_end
->rx_tpa_end_cmp_misc_v1
) &
886 RX_TPA_END_CMP_PAYLOAD_OFFSET
) >>
887 RX_TPA_END_CMP_PAYLOAD_OFFSET_SHIFT
;
888 if (TPA_END_GRO_TS(tpa_end
))
891 if (tpa_info
->gso_type
== SKB_GSO_TCPV4
) {
894 nw_off
= payload_off
- BNXT_IPV4_HDR_SIZE
- tcp_opt_len
-
896 skb_set_network_header(skb
, nw_off
);
898 skb_set_transport_header(skb
, nw_off
+ sizeof(struct iphdr
));
899 len
= skb
->len
- skb_transport_offset(skb
);
901 th
->check
= ~tcp_v4_check(len
, iph
->saddr
, iph
->daddr
, 0);
902 } else if (tpa_info
->gso_type
== SKB_GSO_TCPV6
) {
905 nw_off
= payload_off
- BNXT_IPV6_HDR_SIZE
- tcp_opt_len
-
907 skb_set_network_header(skb
, nw_off
);
909 skb_set_transport_header(skb
, nw_off
+ sizeof(struct ipv6hdr
));
910 len
= skb
->len
- skb_transport_offset(skb
);
912 th
->check
= ~tcp_v6_check(len
, &iph
->saddr
, &iph
->daddr
, 0);
914 dev_kfree_skb_any(skb
);
917 tcp_gro_complete(skb
);
919 if (nw_off
) { /* tunnel */
920 struct udphdr
*uh
= NULL
;
922 if (skb
->protocol
== htons(ETH_P_IP
)) {
923 struct iphdr
*iph
= (struct iphdr
*)skb
->data
;
925 if (iph
->protocol
== IPPROTO_UDP
)
926 uh
= (struct udphdr
*)(iph
+ 1);
928 struct ipv6hdr
*iph
= (struct ipv6hdr
*)skb
->data
;
930 if (iph
->nexthdr
== IPPROTO_UDP
)
931 uh
= (struct udphdr
*)(iph
+ 1);
935 skb_shinfo(skb
)->gso_type
|=
936 SKB_GSO_UDP_TUNNEL_CSUM
;
938 skb_shinfo(skb
)->gso_type
|= SKB_GSO_UDP_TUNNEL
;
945 static inline struct sk_buff
*bnxt_tpa_end(struct bnxt
*bp
,
946 struct bnxt_napi
*bnapi
,
948 struct rx_tpa_end_cmp
*tpa_end
,
949 struct rx_tpa_end_cmp_ext
*tpa_end1
,
952 struct bnxt_cp_ring_info
*cpr
= &bnapi
->cp_ring
;
953 struct bnxt_rx_ring_info
*rxr
= bnapi
->rx_ring
;
954 u8 agg_id
= TPA_END_AGG_ID(tpa_end
);
956 u16 cp_cons
= RING_CMP(*raw_cons
);
958 struct bnxt_tpa_info
*tpa_info
;
962 tpa_info
= &rxr
->rx_tpa
[agg_id
];
963 data
= tpa_info
->data
;
966 mapping
= tpa_info
->mapping
;
968 agg_bufs
= (le32_to_cpu(tpa_end
->rx_tpa_end_cmp_misc_v1
) &
969 RX_TPA_END_CMP_AGG_BUFS
) >> RX_TPA_END_CMP_AGG_BUFS_SHIFT
;
972 if (!bnxt_agg_bufs_valid(bp
, cpr
, agg_bufs
, raw_cons
))
973 return ERR_PTR(-EBUSY
);
976 cp_cons
= NEXT_CMP(cp_cons
);
979 if (unlikely(agg_bufs
> MAX_SKB_FRAGS
)) {
980 bnxt_abort_tpa(bp
, bnapi
, cp_cons
, agg_bufs
);
981 netdev_warn(bp
->dev
, "TPA frags %d exceeded MAX_SKB_FRAGS %d\n",
982 agg_bufs
, (int)MAX_SKB_FRAGS
);
986 if (len
<= bp
->rx_copy_thresh
) {
987 skb
= bnxt_copy_skb(bnapi
, data
, len
, mapping
);
989 bnxt_abort_tpa(bp
, bnapi
, cp_cons
, agg_bufs
);
994 dma_addr_t new_mapping
;
996 new_data
= __bnxt_alloc_rx_data(bp
, &new_mapping
, GFP_ATOMIC
);
998 bnxt_abort_tpa(bp
, bnapi
, cp_cons
, agg_bufs
);
1002 tpa_info
->data
= new_data
;
1003 tpa_info
->mapping
= new_mapping
;
1005 skb
= build_skb(data
, 0);
1006 dma_unmap_single(&bp
->pdev
->dev
, mapping
, bp
->rx_buf_use_size
,
1007 PCI_DMA_FROMDEVICE
);
1011 bnxt_abort_tpa(bp
, bnapi
, cp_cons
, agg_bufs
);
1014 skb_reserve(skb
, BNXT_RX_OFFSET
);
1019 skb
= bnxt_rx_pages(bp
, bnapi
, skb
, cp_cons
, agg_bufs
);
1021 /* Page reuse already handled by bnxt_rx_pages(). */
1025 skb
->protocol
= eth_type_trans(skb
, bp
->dev
);
1027 if (tpa_info
->hash_type
!= PKT_HASH_TYPE_NONE
)
1028 skb_set_hash(skb
, tpa_info
->rss_hash
, tpa_info
->hash_type
);
1030 if (tpa_info
->flags2
& RX_CMP_FLAGS2_META_FORMAT_VLAN
) {
1031 netdev_features_t features
= skb
->dev
->features
;
1032 u16 vlan_proto
= tpa_info
->metadata
>>
1033 RX_CMP_FLAGS2_METADATA_TPID_SFT
;
1035 if (((features
& NETIF_F_HW_VLAN_CTAG_RX
) &&
1036 vlan_proto
== ETH_P_8021Q
) ||
1037 ((features
& NETIF_F_HW_VLAN_STAG_RX
) &&
1038 vlan_proto
== ETH_P_8021AD
)) {
1039 __vlan_hwaccel_put_tag(skb
, htons(vlan_proto
),
1040 tpa_info
->metadata
&
1041 RX_CMP_FLAGS2_METADATA_VID_MASK
);
1045 skb_checksum_none_assert(skb
);
1046 if (likely(tpa_info
->flags2
& RX_TPA_START_CMP_FLAGS2_L4_CS_CALC
)) {
1047 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
1049 (tpa_info
->flags2
& RX_CMP_FLAGS2_T_L4_CS_CALC
) >> 3;
1052 if (TPA_END_GRO(tpa_end
))
1053 skb
= bnxt_gro_skb(tpa_info
, tpa_end
, tpa_end1
, skb
);
1058 /* returns the following:
1059 * 1 - 1 packet successfully received
1060 * 0 - successful TPA_START, packet not completed yet
1061 * -EBUSY - completion ring does not have all the agg buffers yet
1062 * -ENOMEM - packet aborted due to out of memory
1063 * -EIO - packet aborted due to hw error indicated in BD
1065 static int bnxt_rx_pkt(struct bnxt
*bp
, struct bnxt_napi
*bnapi
, u32
*raw_cons
,
1068 struct bnxt_cp_ring_info
*cpr
= &bnapi
->cp_ring
;
1069 struct bnxt_rx_ring_info
*rxr
= bnapi
->rx_ring
;
1070 struct net_device
*dev
= bp
->dev
;
1071 struct rx_cmp
*rxcmp
;
1072 struct rx_cmp_ext
*rxcmp1
;
1073 u32 tmp_raw_cons
= *raw_cons
;
1074 u16 cons
, prod
, cp_cons
= RING_CMP(tmp_raw_cons
);
1075 struct bnxt_sw_rx_bd
*rx_buf
;
1077 u8
*data
, agg_bufs
, cmp_type
;
1078 dma_addr_t dma_addr
;
1079 struct sk_buff
*skb
;
1082 rxcmp
= (struct rx_cmp
*)
1083 &cpr
->cp_desc_ring
[CP_RING(cp_cons
)][CP_IDX(cp_cons
)];
1085 tmp_raw_cons
= NEXT_RAW_CMP(tmp_raw_cons
);
1086 cp_cons
= RING_CMP(tmp_raw_cons
);
1087 rxcmp1
= (struct rx_cmp_ext
*)
1088 &cpr
->cp_desc_ring
[CP_RING(cp_cons
)][CP_IDX(cp_cons
)];
1090 if (!RX_CMP_VALID(rxcmp1
, tmp_raw_cons
))
1093 cmp_type
= RX_CMP_TYPE(rxcmp
);
1095 prod
= rxr
->rx_prod
;
1097 if (cmp_type
== CMP_TYPE_RX_L2_TPA_START_CMP
) {
1098 bnxt_tpa_start(bp
, rxr
, (struct rx_tpa_start_cmp
*)rxcmp
,
1099 (struct rx_tpa_start_cmp_ext
*)rxcmp1
);
1101 goto next_rx_no_prod
;
1103 } else if (cmp_type
== CMP_TYPE_RX_L2_TPA_END_CMP
) {
1104 skb
= bnxt_tpa_end(bp
, bnapi
, &tmp_raw_cons
,
1105 (struct rx_tpa_end_cmp
*)rxcmp
,
1106 (struct rx_tpa_end_cmp_ext
*)rxcmp1
,
1109 if (unlikely(IS_ERR(skb
)))
1114 skb_record_rx_queue(skb
, bnapi
->index
);
1115 skb_mark_napi_id(skb
, &bnapi
->napi
);
1116 if (bnxt_busy_polling(bnapi
))
1117 netif_receive_skb(skb
);
1119 napi_gro_receive(&bnapi
->napi
, skb
);
1122 goto next_rx_no_prod
;
1125 cons
= rxcmp
->rx_cmp_opaque
;
1126 rx_buf
= &rxr
->rx_buf_ring
[cons
];
1127 data
= rx_buf
->data
;
1130 agg_bufs
= (le32_to_cpu(rxcmp
->rx_cmp_misc_v1
) & RX_CMP_AGG_BUFS
) >>
1131 RX_CMP_AGG_BUFS_SHIFT
;
1134 if (!bnxt_agg_bufs_valid(bp
, cpr
, agg_bufs
, &tmp_raw_cons
))
1137 cp_cons
= NEXT_CMP(cp_cons
);
1141 rx_buf
->data
= NULL
;
1142 if (rxcmp1
->rx_cmp_cfa_code_errors_v2
& RX_CMP_L2_ERRORS
) {
1143 bnxt_reuse_rx_data(rxr
, cons
, data
);
1145 bnxt_reuse_rx_agg_bufs(bnapi
, cp_cons
, agg_bufs
);
1151 len
= le32_to_cpu(rxcmp
->rx_cmp_len_flags_type
) >> RX_CMP_LEN_SHIFT
;
1152 dma_addr
= dma_unmap_addr(rx_buf
, mapping
);
1154 if (len
<= bp
->rx_copy_thresh
) {
1155 skb
= bnxt_copy_skb(bnapi
, data
, len
, dma_addr
);
1156 bnxt_reuse_rx_data(rxr
, cons
, data
);
1162 skb
= bnxt_rx_skb(bp
, rxr
, cons
, prod
, data
, dma_addr
, len
);
1170 skb
= bnxt_rx_pages(bp
, bnapi
, skb
, cp_cons
, agg_bufs
);
1177 if (RX_CMP_HASH_VALID(rxcmp
)) {
1178 u32 hash_type
= RX_CMP_HASH_TYPE(rxcmp
);
1179 enum pkt_hash_types type
= PKT_HASH_TYPE_L4
;
1181 /* RSS profiles 1 and 3 with extract code 0 for inner 4-tuple */
1182 if (hash_type
!= 1 && hash_type
!= 3)
1183 type
= PKT_HASH_TYPE_L3
;
1184 skb_set_hash(skb
, le32_to_cpu(rxcmp
->rx_cmp_rss_hash
), type
);
1187 skb
->protocol
= eth_type_trans(skb
, dev
);
1189 if (rxcmp1
->rx_cmp_flags2
&
1190 cpu_to_le32(RX_CMP_FLAGS2_META_FORMAT_VLAN
)) {
1191 netdev_features_t features
= skb
->dev
->features
;
1192 u32 meta_data
= le32_to_cpu(rxcmp1
->rx_cmp_meta_data
);
1193 u16 vlan_proto
= meta_data
>> RX_CMP_FLAGS2_METADATA_TPID_SFT
;
1195 if (((features
& NETIF_F_HW_VLAN_CTAG_RX
) &&
1196 vlan_proto
== ETH_P_8021Q
) ||
1197 ((features
& NETIF_F_HW_VLAN_STAG_RX
) &&
1198 vlan_proto
== ETH_P_8021AD
))
1199 __vlan_hwaccel_put_tag(skb
, htons(vlan_proto
),
1201 RX_CMP_FLAGS2_METADATA_VID_MASK
);
1204 skb_checksum_none_assert(skb
);
1205 if (RX_CMP_L4_CS_OK(rxcmp1
)) {
1206 if (dev
->features
& NETIF_F_RXCSUM
) {
1207 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
1208 skb
->csum_level
= RX_CMP_ENCAP(rxcmp1
);
1211 if (rxcmp1
->rx_cmp_cfa_code_errors_v2
& RX_CMP_L4_CS_ERR_BITS
) {
1212 if (dev
->features
& NETIF_F_RXCSUM
)
1213 cpr
->rx_l4_csum_errors
++;
1217 skb_record_rx_queue(skb
, bnapi
->index
);
1218 skb_mark_napi_id(skb
, &bnapi
->napi
);
1219 if (bnxt_busy_polling(bnapi
))
1220 netif_receive_skb(skb
);
1222 napi_gro_receive(&bnapi
->napi
, skb
);
1226 rxr
->rx_prod
= NEXT_RX(prod
);
1229 *raw_cons
= tmp_raw_cons
;
1234 static int bnxt_async_event_process(struct bnxt
*bp
,
1235 struct hwrm_async_event_cmpl
*cmpl
)
1237 u16 event_id
= le16_to_cpu(cmpl
->event_id
);
1239 /* TODO CHIMP_FW: Define event id's for link change, error etc */
1241 case HWRM_ASYNC_EVENT_CMPL_EVENT_ID_LINK_STATUS_CHANGE
:
1242 set_bit(BNXT_LINK_CHNG_SP_EVENT
, &bp
->sp_event
);
1244 case HWRM_ASYNC_EVENT_CMPL_EVENT_ID_PF_DRVR_UNLOAD
:
1245 set_bit(BNXT_HWRM_PF_UNLOAD_SP_EVENT
, &bp
->sp_event
);
1248 netdev_err(bp
->dev
, "unhandled ASYNC event (id 0x%x)\n",
1250 goto async_event_process_exit
;
1252 schedule_work(&bp
->sp_task
);
1253 async_event_process_exit
:
1257 static int bnxt_hwrm_handler(struct bnxt
*bp
, struct tx_cmp
*txcmp
)
1259 u16 cmpl_type
= TX_CMP_TYPE(txcmp
), vf_id
, seq_id
;
1260 struct hwrm_cmpl
*h_cmpl
= (struct hwrm_cmpl
*)txcmp
;
1261 struct hwrm_fwd_req_cmpl
*fwd_req_cmpl
=
1262 (struct hwrm_fwd_req_cmpl
*)txcmp
;
1264 switch (cmpl_type
) {
1265 case CMPL_BASE_TYPE_HWRM_DONE
:
1266 seq_id
= le16_to_cpu(h_cmpl
->sequence_id
);
1267 if (seq_id
== bp
->hwrm_intr_seq_id
)
1268 bp
->hwrm_intr_seq_id
= HWRM_SEQ_ID_INVALID
;
1270 netdev_err(bp
->dev
, "Invalid hwrm seq id %d\n", seq_id
);
1273 case CMPL_BASE_TYPE_HWRM_FWD_REQ
:
1274 vf_id
= le16_to_cpu(fwd_req_cmpl
->source_id
);
1276 if ((vf_id
< bp
->pf
.first_vf_id
) ||
1277 (vf_id
>= bp
->pf
.first_vf_id
+ bp
->pf
.active_vfs
)) {
1278 netdev_err(bp
->dev
, "Msg contains invalid VF id %x\n",
1283 set_bit(vf_id
- bp
->pf
.first_vf_id
, bp
->pf
.vf_event_bmap
);
1284 set_bit(BNXT_HWRM_EXEC_FWD_REQ_SP_EVENT
, &bp
->sp_event
);
1285 schedule_work(&bp
->sp_task
);
1288 case CMPL_BASE_TYPE_HWRM_ASYNC_EVENT
:
1289 bnxt_async_event_process(bp
,
1290 (struct hwrm_async_event_cmpl
*)txcmp
);
1299 static irqreturn_t
bnxt_msix(int irq
, void *dev_instance
)
1301 struct bnxt_napi
*bnapi
= dev_instance
;
1302 struct bnxt
*bp
= bnapi
->bp
;
1303 struct bnxt_cp_ring_info
*cpr
= &bnapi
->cp_ring
;
1304 u32 cons
= RING_CMP(cpr
->cp_raw_cons
);
1306 prefetch(&cpr
->cp_desc_ring
[CP_RING(cons
)][CP_IDX(cons
)]);
1307 napi_schedule(&bnapi
->napi
);
1311 static inline int bnxt_has_work(struct bnxt
*bp
, struct bnxt_cp_ring_info
*cpr
)
1313 u32 raw_cons
= cpr
->cp_raw_cons
;
1314 u16 cons
= RING_CMP(raw_cons
);
1315 struct tx_cmp
*txcmp
;
1317 txcmp
= &cpr
->cp_desc_ring
[CP_RING(cons
)][CP_IDX(cons
)];
1319 return TX_CMP_VALID(txcmp
, raw_cons
);
1322 static irqreturn_t
bnxt_inta(int irq
, void *dev_instance
)
1324 struct bnxt_napi
*bnapi
= dev_instance
;
1325 struct bnxt
*bp
= bnapi
->bp
;
1326 struct bnxt_cp_ring_info
*cpr
= &bnapi
->cp_ring
;
1327 u32 cons
= RING_CMP(cpr
->cp_raw_cons
);
1330 prefetch(&cpr
->cp_desc_ring
[CP_RING(cons
)][CP_IDX(cons
)]);
1332 if (!bnxt_has_work(bp
, cpr
)) {
1333 int_status
= readl(bp
->bar0
+ BNXT_CAG_REG_LEGACY_INT_STATUS
);
1334 /* return if erroneous interrupt */
1335 if (!(int_status
& (0x10000 << cpr
->cp_ring_struct
.fw_ring_id
)))
1339 /* disable ring IRQ */
1340 BNXT_CP_DB_IRQ_DIS(cpr
->cp_doorbell
);
1342 /* Return here if interrupt is shared and is disabled. */
1343 if (unlikely(atomic_read(&bp
->intr_sem
) != 0))
1346 napi_schedule(&bnapi
->napi
);
1350 static int bnxt_poll_work(struct bnxt
*bp
, struct bnxt_napi
*bnapi
, int budget
)
1352 struct bnxt_cp_ring_info
*cpr
= &bnapi
->cp_ring
;
1353 u32 raw_cons
= cpr
->cp_raw_cons
;
1357 bool rx_event
= false;
1358 bool agg_event
= false;
1359 struct tx_cmp
*txcmp
;
1364 cons
= RING_CMP(raw_cons
);
1365 txcmp
= &cpr
->cp_desc_ring
[CP_RING(cons
)][CP_IDX(cons
)];
1367 if (!TX_CMP_VALID(txcmp
, raw_cons
))
1370 if (TX_CMP_TYPE(txcmp
) == CMP_TYPE_TX_L2_CMP
) {
1372 /* return full budget so NAPI will complete. */
1373 if (unlikely(tx_pkts
> bp
->tx_wake_thresh
))
1375 } else if ((TX_CMP_TYPE(txcmp
) & 0x30) == 0x10) {
1376 rc
= bnxt_rx_pkt(bp
, bnapi
, &raw_cons
, &agg_event
);
1377 if (likely(rc
>= 0))
1379 else if (rc
== -EBUSY
) /* partial completion */
1382 } else if (unlikely((TX_CMP_TYPE(txcmp
) ==
1383 CMPL_BASE_TYPE_HWRM_DONE
) ||
1384 (TX_CMP_TYPE(txcmp
) ==
1385 CMPL_BASE_TYPE_HWRM_FWD_REQ
) ||
1386 (TX_CMP_TYPE(txcmp
) ==
1387 CMPL_BASE_TYPE_HWRM_ASYNC_EVENT
))) {
1388 bnxt_hwrm_handler(bp
, txcmp
);
1390 raw_cons
= NEXT_RAW_CMP(raw_cons
);
1392 if (rx_pkts
== budget
)
1396 cpr
->cp_raw_cons
= raw_cons
;
1397 /* ACK completion ring before freeing tx ring and producing new
1398 * buffers in rx/agg rings to prevent overflowing the completion
1401 BNXT_CP_DB(cpr
->cp_doorbell
, cpr
->cp_raw_cons
);
1404 bnxt_tx_int(bp
, bnapi
, tx_pkts
);
1407 struct bnxt_rx_ring_info
*rxr
= bnapi
->rx_ring
;
1409 writel(DB_KEY_RX
| rxr
->rx_prod
, rxr
->rx_doorbell
);
1410 writel(DB_KEY_RX
| rxr
->rx_prod
, rxr
->rx_doorbell
);
1412 writel(DB_KEY_RX
| rxr
->rx_agg_prod
,
1413 rxr
->rx_agg_doorbell
);
1414 writel(DB_KEY_RX
| rxr
->rx_agg_prod
,
1415 rxr
->rx_agg_doorbell
);
1421 static int bnxt_poll(struct napi_struct
*napi
, int budget
)
1423 struct bnxt_napi
*bnapi
= container_of(napi
, struct bnxt_napi
, napi
);
1424 struct bnxt
*bp
= bnapi
->bp
;
1425 struct bnxt_cp_ring_info
*cpr
= &bnapi
->cp_ring
;
1428 if (!bnxt_lock_napi(bnapi
))
1432 work_done
+= bnxt_poll_work(bp
, bnapi
, budget
- work_done
);
1434 if (work_done
>= budget
)
1437 if (!bnxt_has_work(bp
, cpr
)) {
1438 napi_complete(napi
);
1439 BNXT_CP_DB_REARM(cpr
->cp_doorbell
, cpr
->cp_raw_cons
);
1444 bnxt_unlock_napi(bnapi
);
1448 #ifdef CONFIG_NET_RX_BUSY_POLL
1449 static int bnxt_busy_poll(struct napi_struct
*napi
)
1451 struct bnxt_napi
*bnapi
= container_of(napi
, struct bnxt_napi
, napi
);
1452 struct bnxt
*bp
= bnapi
->bp
;
1453 struct bnxt_cp_ring_info
*cpr
= &bnapi
->cp_ring
;
1454 int rx_work
, budget
= 4;
1456 if (atomic_read(&bp
->intr_sem
) != 0)
1457 return LL_FLUSH_FAILED
;
1459 if (!bnxt_lock_poll(bnapi
))
1460 return LL_FLUSH_BUSY
;
1462 rx_work
= bnxt_poll_work(bp
, bnapi
, budget
);
1464 BNXT_CP_DB_REARM(cpr
->cp_doorbell
, cpr
->cp_raw_cons
);
1466 bnxt_unlock_poll(bnapi
);
1471 static void bnxt_free_tx_skbs(struct bnxt
*bp
)
1474 struct pci_dev
*pdev
= bp
->pdev
;
1479 max_idx
= bp
->tx_nr_pages
* TX_DESC_CNT
;
1480 for (i
= 0; i
< bp
->tx_nr_rings
; i
++) {
1481 struct bnxt_tx_ring_info
*txr
= &bp
->tx_ring
[i
];
1484 for (j
= 0; j
< max_idx
;) {
1485 struct bnxt_sw_tx_bd
*tx_buf
= &txr
->tx_buf_ring
[j
];
1486 struct sk_buff
*skb
= tx_buf
->skb
;
1496 if (tx_buf
->is_push
) {
1502 dma_unmap_single(&pdev
->dev
,
1503 dma_unmap_addr(tx_buf
, mapping
),
1507 last
= tx_buf
->nr_frags
;
1509 for (k
= 0; k
< last
; k
++, j
++) {
1510 int ring_idx
= j
& bp
->tx_ring_mask
;
1511 skb_frag_t
*frag
= &skb_shinfo(skb
)->frags
[k
];
1513 tx_buf
= &txr
->tx_buf_ring
[ring_idx
];
1516 dma_unmap_addr(tx_buf
, mapping
),
1517 skb_frag_size(frag
), PCI_DMA_TODEVICE
);
1521 netdev_tx_reset_queue(netdev_get_tx_queue(bp
->dev
, i
));
1525 static void bnxt_free_rx_skbs(struct bnxt
*bp
)
1527 int i
, max_idx
, max_agg_idx
;
1528 struct pci_dev
*pdev
= bp
->pdev
;
1533 max_idx
= bp
->rx_nr_pages
* RX_DESC_CNT
;
1534 max_agg_idx
= bp
->rx_agg_nr_pages
* RX_DESC_CNT
;
1535 for (i
= 0; i
< bp
->rx_nr_rings
; i
++) {
1536 struct bnxt_rx_ring_info
*rxr
= &bp
->rx_ring
[i
];
1540 for (j
= 0; j
< MAX_TPA
; j
++) {
1541 struct bnxt_tpa_info
*tpa_info
=
1543 u8
*data
= tpa_info
->data
;
1550 dma_unmap_addr(tpa_info
, mapping
),
1551 bp
->rx_buf_use_size
,
1552 PCI_DMA_FROMDEVICE
);
1554 tpa_info
->data
= NULL
;
1560 for (j
= 0; j
< max_idx
; j
++) {
1561 struct bnxt_sw_rx_bd
*rx_buf
= &rxr
->rx_buf_ring
[j
];
1562 u8
*data
= rx_buf
->data
;
1567 dma_unmap_single(&pdev
->dev
,
1568 dma_unmap_addr(rx_buf
, mapping
),
1569 bp
->rx_buf_use_size
,
1570 PCI_DMA_FROMDEVICE
);
1572 rx_buf
->data
= NULL
;
1577 for (j
= 0; j
< max_agg_idx
; j
++) {
1578 struct bnxt_sw_rx_agg_bd
*rx_agg_buf
=
1579 &rxr
->rx_agg_ring
[j
];
1580 struct page
*page
= rx_agg_buf
->page
;
1585 dma_unmap_page(&pdev
->dev
,
1586 dma_unmap_addr(rx_agg_buf
, mapping
),
1587 PAGE_SIZE
, PCI_DMA_FROMDEVICE
);
1589 rx_agg_buf
->page
= NULL
;
1590 __clear_bit(j
, rxr
->rx_agg_bmap
);
1597 static void bnxt_free_skbs(struct bnxt
*bp
)
1599 bnxt_free_tx_skbs(bp
);
1600 bnxt_free_rx_skbs(bp
);
1603 static void bnxt_free_ring(struct bnxt
*bp
, struct bnxt_ring_struct
*ring
)
1605 struct pci_dev
*pdev
= bp
->pdev
;
1608 for (i
= 0; i
< ring
->nr_pages
; i
++) {
1609 if (!ring
->pg_arr
[i
])
1612 dma_free_coherent(&pdev
->dev
, ring
->page_size
,
1613 ring
->pg_arr
[i
], ring
->dma_arr
[i
]);
1615 ring
->pg_arr
[i
] = NULL
;
1618 dma_free_coherent(&pdev
->dev
, ring
->nr_pages
* 8,
1619 ring
->pg_tbl
, ring
->pg_tbl_map
);
1620 ring
->pg_tbl
= NULL
;
1622 if (ring
->vmem_size
&& *ring
->vmem
) {
1628 static int bnxt_alloc_ring(struct bnxt
*bp
, struct bnxt_ring_struct
*ring
)
1631 struct pci_dev
*pdev
= bp
->pdev
;
1633 if (ring
->nr_pages
> 1) {
1634 ring
->pg_tbl
= dma_alloc_coherent(&pdev
->dev
,
1642 for (i
= 0; i
< ring
->nr_pages
; i
++) {
1643 ring
->pg_arr
[i
] = dma_alloc_coherent(&pdev
->dev
,
1647 if (!ring
->pg_arr
[i
])
1650 if (ring
->nr_pages
> 1)
1651 ring
->pg_tbl
[i
] = cpu_to_le64(ring
->dma_arr
[i
]);
1654 if (ring
->vmem_size
) {
1655 *ring
->vmem
= vzalloc(ring
->vmem_size
);
1662 static void bnxt_free_rx_rings(struct bnxt
*bp
)
1669 for (i
= 0; i
< bp
->rx_nr_rings
; i
++) {
1670 struct bnxt_rx_ring_info
*rxr
= &bp
->rx_ring
[i
];
1671 struct bnxt_ring_struct
*ring
;
1676 kfree(rxr
->rx_agg_bmap
);
1677 rxr
->rx_agg_bmap
= NULL
;
1679 ring
= &rxr
->rx_ring_struct
;
1680 bnxt_free_ring(bp
, ring
);
1682 ring
= &rxr
->rx_agg_ring_struct
;
1683 bnxt_free_ring(bp
, ring
);
1687 static int bnxt_alloc_rx_rings(struct bnxt
*bp
)
1689 int i
, rc
, agg_rings
= 0, tpa_rings
= 0;
1694 if (bp
->flags
& BNXT_FLAG_AGG_RINGS
)
1697 if (bp
->flags
& BNXT_FLAG_TPA
)
1700 for (i
= 0; i
< bp
->rx_nr_rings
; i
++) {
1701 struct bnxt_rx_ring_info
*rxr
= &bp
->rx_ring
[i
];
1702 struct bnxt_ring_struct
*ring
;
1704 ring
= &rxr
->rx_ring_struct
;
1706 rc
= bnxt_alloc_ring(bp
, ring
);
1713 ring
= &rxr
->rx_agg_ring_struct
;
1714 rc
= bnxt_alloc_ring(bp
, ring
);
1718 rxr
->rx_agg_bmap_size
= bp
->rx_agg_ring_mask
+ 1;
1719 mem_size
= rxr
->rx_agg_bmap_size
/ 8;
1720 rxr
->rx_agg_bmap
= kzalloc(mem_size
, GFP_KERNEL
);
1721 if (!rxr
->rx_agg_bmap
)
1725 rxr
->rx_tpa
= kcalloc(MAX_TPA
,
1726 sizeof(struct bnxt_tpa_info
),
1736 static void bnxt_free_tx_rings(struct bnxt
*bp
)
1739 struct pci_dev
*pdev
= bp
->pdev
;
1744 for (i
= 0; i
< bp
->tx_nr_rings
; i
++) {
1745 struct bnxt_tx_ring_info
*txr
= &bp
->tx_ring
[i
];
1746 struct bnxt_ring_struct
*ring
;
1749 dma_free_coherent(&pdev
->dev
, bp
->tx_push_size
,
1750 txr
->tx_push
, txr
->tx_push_mapping
);
1751 txr
->tx_push
= NULL
;
1754 ring
= &txr
->tx_ring_struct
;
1756 bnxt_free_ring(bp
, ring
);
1760 static int bnxt_alloc_tx_rings(struct bnxt
*bp
)
1763 struct pci_dev
*pdev
= bp
->pdev
;
1765 bp
->tx_push_size
= 0;
1766 if (bp
->tx_push_thresh
) {
1769 push_size
= L1_CACHE_ALIGN(sizeof(struct tx_push_bd
) +
1770 bp
->tx_push_thresh
);
1772 if (push_size
> 256) {
1774 bp
->tx_push_thresh
= 0;
1777 bp
->tx_push_size
= push_size
;
1780 for (i
= 0, j
= 0; i
< bp
->tx_nr_rings
; i
++) {
1781 struct bnxt_tx_ring_info
*txr
= &bp
->tx_ring
[i
];
1782 struct bnxt_ring_struct
*ring
;
1784 ring
= &txr
->tx_ring_struct
;
1786 rc
= bnxt_alloc_ring(bp
, ring
);
1790 if (bp
->tx_push_size
) {
1793 /* One pre-allocated DMA buffer to backup
1796 txr
->tx_push
= dma_alloc_coherent(&pdev
->dev
,
1798 &txr
->tx_push_mapping
,
1804 mapping
= txr
->tx_push_mapping
+
1805 sizeof(struct tx_push_bd
);
1806 txr
->data_mapping
= cpu_to_le64(mapping
);
1808 memset(txr
->tx_push
, 0, sizeof(struct tx_push_bd
));
1810 ring
->queue_id
= bp
->q_info
[j
].queue_id
;
1811 if (i
% bp
->tx_nr_rings_per_tc
== (bp
->tx_nr_rings_per_tc
- 1))
1817 static void bnxt_free_cp_rings(struct bnxt
*bp
)
1824 for (i
= 0; i
< bp
->cp_nr_rings
; i
++) {
1825 struct bnxt_napi
*bnapi
= bp
->bnapi
[i
];
1826 struct bnxt_cp_ring_info
*cpr
;
1827 struct bnxt_ring_struct
*ring
;
1832 cpr
= &bnapi
->cp_ring
;
1833 ring
= &cpr
->cp_ring_struct
;
1835 bnxt_free_ring(bp
, ring
);
1839 static int bnxt_alloc_cp_rings(struct bnxt
*bp
)
1843 for (i
= 0; i
< bp
->cp_nr_rings
; i
++) {
1844 struct bnxt_napi
*bnapi
= bp
->bnapi
[i
];
1845 struct bnxt_cp_ring_info
*cpr
;
1846 struct bnxt_ring_struct
*ring
;
1851 cpr
= &bnapi
->cp_ring
;
1852 ring
= &cpr
->cp_ring_struct
;
1854 rc
= bnxt_alloc_ring(bp
, ring
);
1861 static void bnxt_init_ring_struct(struct bnxt
*bp
)
1865 for (i
= 0; i
< bp
->cp_nr_rings
; i
++) {
1866 struct bnxt_napi
*bnapi
= bp
->bnapi
[i
];
1867 struct bnxt_cp_ring_info
*cpr
;
1868 struct bnxt_rx_ring_info
*rxr
;
1869 struct bnxt_tx_ring_info
*txr
;
1870 struct bnxt_ring_struct
*ring
;
1875 cpr
= &bnapi
->cp_ring
;
1876 ring
= &cpr
->cp_ring_struct
;
1877 ring
->nr_pages
= bp
->cp_nr_pages
;
1878 ring
->page_size
= HW_CMPD_RING_SIZE
;
1879 ring
->pg_arr
= (void **)cpr
->cp_desc_ring
;
1880 ring
->dma_arr
= cpr
->cp_desc_mapping
;
1881 ring
->vmem_size
= 0;
1883 rxr
= bnapi
->rx_ring
;
1887 ring
= &rxr
->rx_ring_struct
;
1888 ring
->nr_pages
= bp
->rx_nr_pages
;
1889 ring
->page_size
= HW_RXBD_RING_SIZE
;
1890 ring
->pg_arr
= (void **)rxr
->rx_desc_ring
;
1891 ring
->dma_arr
= rxr
->rx_desc_mapping
;
1892 ring
->vmem_size
= SW_RXBD_RING_SIZE
* bp
->rx_nr_pages
;
1893 ring
->vmem
= (void **)&rxr
->rx_buf_ring
;
1895 ring
= &rxr
->rx_agg_ring_struct
;
1896 ring
->nr_pages
= bp
->rx_agg_nr_pages
;
1897 ring
->page_size
= HW_RXBD_RING_SIZE
;
1898 ring
->pg_arr
= (void **)rxr
->rx_agg_desc_ring
;
1899 ring
->dma_arr
= rxr
->rx_agg_desc_mapping
;
1900 ring
->vmem_size
= SW_RXBD_AGG_RING_SIZE
* bp
->rx_agg_nr_pages
;
1901 ring
->vmem
= (void **)&rxr
->rx_agg_ring
;
1904 txr
= bnapi
->tx_ring
;
1908 ring
= &txr
->tx_ring_struct
;
1909 ring
->nr_pages
= bp
->tx_nr_pages
;
1910 ring
->page_size
= HW_RXBD_RING_SIZE
;
1911 ring
->pg_arr
= (void **)txr
->tx_desc_ring
;
1912 ring
->dma_arr
= txr
->tx_desc_mapping
;
1913 ring
->vmem_size
= SW_TXBD_RING_SIZE
* bp
->tx_nr_pages
;
1914 ring
->vmem
= (void **)&txr
->tx_buf_ring
;
1918 static void bnxt_init_rxbd_pages(struct bnxt_ring_struct
*ring
, u32 type
)
1922 struct rx_bd
**rx_buf_ring
;
1924 rx_buf_ring
= (struct rx_bd
**)ring
->pg_arr
;
1925 for (i
= 0, prod
= 0; i
< ring
->nr_pages
; i
++) {
1929 rxbd
= rx_buf_ring
[i
];
1933 for (j
= 0; j
< RX_DESC_CNT
; j
++, rxbd
++, prod
++) {
1934 rxbd
->rx_bd_len_flags_type
= cpu_to_le32(type
);
1935 rxbd
->rx_bd_opaque
= prod
;
1940 static int bnxt_init_one_rx_ring(struct bnxt
*bp
, int ring_nr
)
1942 struct net_device
*dev
= bp
->dev
;
1943 struct bnxt_rx_ring_info
*rxr
;
1944 struct bnxt_ring_struct
*ring
;
1948 type
= (bp
->rx_buf_use_size
<< RX_BD_LEN_SHIFT
) |
1949 RX_BD_TYPE_RX_PACKET_BD
| RX_BD_FLAGS_EOP
;
1951 if (NET_IP_ALIGN
== 2)
1952 type
|= RX_BD_FLAGS_SOP
;
1954 rxr
= &bp
->rx_ring
[ring_nr
];
1955 ring
= &rxr
->rx_ring_struct
;
1956 bnxt_init_rxbd_pages(ring
, type
);
1958 prod
= rxr
->rx_prod
;
1959 for (i
= 0; i
< bp
->rx_ring_size
; i
++) {
1960 if (bnxt_alloc_rx_data(bp
, rxr
, prod
, GFP_KERNEL
) != 0) {
1961 netdev_warn(dev
, "init'ed rx ring %d with %d/%d skbs only\n",
1962 ring_nr
, i
, bp
->rx_ring_size
);
1965 prod
= NEXT_RX(prod
);
1967 rxr
->rx_prod
= prod
;
1968 ring
->fw_ring_id
= INVALID_HW_RING_ID
;
1970 ring
= &rxr
->rx_agg_ring_struct
;
1971 ring
->fw_ring_id
= INVALID_HW_RING_ID
;
1973 if (!(bp
->flags
& BNXT_FLAG_AGG_RINGS
))
1976 type
= ((u32
)PAGE_SIZE
<< RX_BD_LEN_SHIFT
) |
1977 RX_BD_TYPE_RX_AGG_BD
| RX_BD_FLAGS_SOP
;
1979 bnxt_init_rxbd_pages(ring
, type
);
1981 prod
= rxr
->rx_agg_prod
;
1982 for (i
= 0; i
< bp
->rx_agg_ring_size
; i
++) {
1983 if (bnxt_alloc_rx_page(bp
, rxr
, prod
, GFP_KERNEL
) != 0) {
1984 netdev_warn(dev
, "init'ed rx ring %d with %d/%d pages only\n",
1985 ring_nr
, i
, bp
->rx_ring_size
);
1988 prod
= NEXT_RX_AGG(prod
);
1990 rxr
->rx_agg_prod
= prod
;
1992 if (bp
->flags
& BNXT_FLAG_TPA
) {
1997 for (i
= 0; i
< MAX_TPA
; i
++) {
1998 data
= __bnxt_alloc_rx_data(bp
, &mapping
,
2003 rxr
->rx_tpa
[i
].data
= data
;
2004 rxr
->rx_tpa
[i
].mapping
= mapping
;
2007 netdev_err(bp
->dev
, "No resource allocated for LRO/GRO\n");
2015 static int bnxt_init_rx_rings(struct bnxt
*bp
)
2019 for (i
= 0; i
< bp
->rx_nr_rings
; i
++) {
2020 rc
= bnxt_init_one_rx_ring(bp
, i
);
2028 static int bnxt_init_tx_rings(struct bnxt
*bp
)
2032 bp
->tx_wake_thresh
= max_t(int, bp
->tx_ring_size
/ 2,
2035 for (i
= 0; i
< bp
->tx_nr_rings
; i
++) {
2036 struct bnxt_tx_ring_info
*txr
= &bp
->tx_ring
[i
];
2037 struct bnxt_ring_struct
*ring
= &txr
->tx_ring_struct
;
2039 ring
->fw_ring_id
= INVALID_HW_RING_ID
;
2045 static void bnxt_free_ring_grps(struct bnxt
*bp
)
2047 kfree(bp
->grp_info
);
2048 bp
->grp_info
= NULL
;
2051 static int bnxt_init_ring_grps(struct bnxt
*bp
, bool irq_re_init
)
2056 bp
->grp_info
= kcalloc(bp
->cp_nr_rings
,
2057 sizeof(struct bnxt_ring_grp_info
),
2062 for (i
= 0; i
< bp
->cp_nr_rings
; i
++) {
2064 bp
->grp_info
[i
].fw_stats_ctx
= INVALID_HW_RING_ID
;
2065 bp
->grp_info
[i
].fw_grp_id
= INVALID_HW_RING_ID
;
2066 bp
->grp_info
[i
].rx_fw_ring_id
= INVALID_HW_RING_ID
;
2067 bp
->grp_info
[i
].agg_fw_ring_id
= INVALID_HW_RING_ID
;
2068 bp
->grp_info
[i
].cp_fw_ring_id
= INVALID_HW_RING_ID
;
2073 static void bnxt_free_vnics(struct bnxt
*bp
)
2075 kfree(bp
->vnic_info
);
2076 bp
->vnic_info
= NULL
;
2080 static int bnxt_alloc_vnics(struct bnxt
*bp
)
2084 #ifdef CONFIG_RFS_ACCEL
2085 if (bp
->flags
& BNXT_FLAG_RFS
)
2086 num_vnics
+= bp
->rx_nr_rings
;
2089 bp
->vnic_info
= kcalloc(num_vnics
, sizeof(struct bnxt_vnic_info
),
2094 bp
->nr_vnics
= num_vnics
;
2098 static void bnxt_init_vnics(struct bnxt
*bp
)
2102 for (i
= 0; i
< bp
->nr_vnics
; i
++) {
2103 struct bnxt_vnic_info
*vnic
= &bp
->vnic_info
[i
];
2105 vnic
->fw_vnic_id
= INVALID_HW_RING_ID
;
2106 vnic
->fw_rss_cos_lb_ctx
= INVALID_HW_RING_ID
;
2107 vnic
->fw_l2_ctx_id
= INVALID_HW_RING_ID
;
2109 if (bp
->vnic_info
[i
].rss_hash_key
) {
2111 prandom_bytes(vnic
->rss_hash_key
,
2114 memcpy(vnic
->rss_hash_key
,
2115 bp
->vnic_info
[0].rss_hash_key
,
2121 static int bnxt_calc_nr_ring_pages(u32 ring_size
, int desc_per_pg
)
2125 pages
= ring_size
/ desc_per_pg
;
2132 while (pages
& (pages
- 1))
2138 static void bnxt_set_tpa_flags(struct bnxt
*bp
)
2140 bp
->flags
&= ~BNXT_FLAG_TPA
;
2141 if (bp
->dev
->features
& NETIF_F_LRO
)
2142 bp
->flags
|= BNXT_FLAG_LRO
;
2143 if ((bp
->dev
->features
& NETIF_F_GRO
) && (bp
->pdev
->revision
> 0))
2144 bp
->flags
|= BNXT_FLAG_GRO
;
2147 /* bp->rx_ring_size, bp->tx_ring_size, dev->mtu, BNXT_FLAG_{G|L}RO flags must
2150 void bnxt_set_ring_params(struct bnxt
*bp
)
2152 u32 ring_size
, rx_size
, rx_space
;
2153 u32 agg_factor
= 0, agg_ring_size
= 0;
2155 /* 8 for CRC and VLAN */
2156 rx_size
= SKB_DATA_ALIGN(bp
->dev
->mtu
+ ETH_HLEN
+ NET_IP_ALIGN
+ 8);
2158 rx_space
= rx_size
+ NET_SKB_PAD
+
2159 SKB_DATA_ALIGN(sizeof(struct skb_shared_info
));
2161 bp
->rx_copy_thresh
= BNXT_RX_COPY_THRESH
;
2162 ring_size
= bp
->rx_ring_size
;
2163 bp
->rx_agg_ring_size
= 0;
2164 bp
->rx_agg_nr_pages
= 0;
2166 if (bp
->flags
& BNXT_FLAG_TPA
)
2169 bp
->flags
&= ~BNXT_FLAG_JUMBO
;
2170 if (rx_space
> PAGE_SIZE
) {
2173 bp
->flags
|= BNXT_FLAG_JUMBO
;
2174 jumbo_factor
= PAGE_ALIGN(bp
->dev
->mtu
- 40) >> PAGE_SHIFT
;
2175 if (jumbo_factor
> agg_factor
)
2176 agg_factor
= jumbo_factor
;
2178 agg_ring_size
= ring_size
* agg_factor
;
2180 if (agg_ring_size
) {
2181 bp
->rx_agg_nr_pages
= bnxt_calc_nr_ring_pages(agg_ring_size
,
2183 if (bp
->rx_agg_nr_pages
> MAX_RX_AGG_PAGES
) {
2184 u32 tmp
= agg_ring_size
;
2186 bp
->rx_agg_nr_pages
= MAX_RX_AGG_PAGES
;
2187 agg_ring_size
= MAX_RX_AGG_PAGES
* RX_DESC_CNT
- 1;
2188 netdev_warn(bp
->dev
, "rx agg ring size %d reduced to %d.\n",
2189 tmp
, agg_ring_size
);
2191 bp
->rx_agg_ring_size
= agg_ring_size
;
2192 bp
->rx_agg_ring_mask
= (bp
->rx_agg_nr_pages
* RX_DESC_CNT
) - 1;
2193 rx_size
= SKB_DATA_ALIGN(BNXT_RX_COPY_THRESH
+ NET_IP_ALIGN
);
2194 rx_space
= rx_size
+ NET_SKB_PAD
+
2195 SKB_DATA_ALIGN(sizeof(struct skb_shared_info
));
2198 bp
->rx_buf_use_size
= rx_size
;
2199 bp
->rx_buf_size
= rx_space
;
2201 bp
->rx_nr_pages
= bnxt_calc_nr_ring_pages(ring_size
, RX_DESC_CNT
);
2202 bp
->rx_ring_mask
= (bp
->rx_nr_pages
* RX_DESC_CNT
) - 1;
2204 ring_size
= bp
->tx_ring_size
;
2205 bp
->tx_nr_pages
= bnxt_calc_nr_ring_pages(ring_size
, TX_DESC_CNT
);
2206 bp
->tx_ring_mask
= (bp
->tx_nr_pages
* TX_DESC_CNT
) - 1;
2208 ring_size
= bp
->rx_ring_size
* (2 + agg_factor
) + bp
->tx_ring_size
;
2209 bp
->cp_ring_size
= ring_size
;
2211 bp
->cp_nr_pages
= bnxt_calc_nr_ring_pages(ring_size
, CP_DESC_CNT
);
2212 if (bp
->cp_nr_pages
> MAX_CP_PAGES
) {
2213 bp
->cp_nr_pages
= MAX_CP_PAGES
;
2214 bp
->cp_ring_size
= MAX_CP_PAGES
* CP_DESC_CNT
- 1;
2215 netdev_warn(bp
->dev
, "completion ring size %d reduced to %d.\n",
2216 ring_size
, bp
->cp_ring_size
);
2218 bp
->cp_bit
= bp
->cp_nr_pages
* CP_DESC_CNT
;
2219 bp
->cp_ring_mask
= bp
->cp_bit
- 1;
2222 static void bnxt_free_vnic_attributes(struct bnxt
*bp
)
2225 struct bnxt_vnic_info
*vnic
;
2226 struct pci_dev
*pdev
= bp
->pdev
;
2231 for (i
= 0; i
< bp
->nr_vnics
; i
++) {
2232 vnic
= &bp
->vnic_info
[i
];
2234 kfree(vnic
->fw_grp_ids
);
2235 vnic
->fw_grp_ids
= NULL
;
2237 kfree(vnic
->uc_list
);
2238 vnic
->uc_list
= NULL
;
2240 if (vnic
->mc_list
) {
2241 dma_free_coherent(&pdev
->dev
, vnic
->mc_list_size
,
2242 vnic
->mc_list
, vnic
->mc_list_mapping
);
2243 vnic
->mc_list
= NULL
;
2246 if (vnic
->rss_table
) {
2247 dma_free_coherent(&pdev
->dev
, PAGE_SIZE
,
2249 vnic
->rss_table_dma_addr
);
2250 vnic
->rss_table
= NULL
;
2253 vnic
->rss_hash_key
= NULL
;
2258 static int bnxt_alloc_vnic_attributes(struct bnxt
*bp
)
2260 int i
, rc
= 0, size
;
2261 struct bnxt_vnic_info
*vnic
;
2262 struct pci_dev
*pdev
= bp
->pdev
;
2265 for (i
= 0; i
< bp
->nr_vnics
; i
++) {
2266 vnic
= &bp
->vnic_info
[i
];
2268 if (vnic
->flags
& BNXT_VNIC_UCAST_FLAG
) {
2269 int mem_size
= (BNXT_MAX_UC_ADDRS
- 1) * ETH_ALEN
;
2272 vnic
->uc_list
= kmalloc(mem_size
, GFP_KERNEL
);
2273 if (!vnic
->uc_list
) {
2280 if (vnic
->flags
& BNXT_VNIC_MCAST_FLAG
) {
2281 vnic
->mc_list_size
= BNXT_MAX_MC_ADDRS
* ETH_ALEN
;
2283 dma_alloc_coherent(&pdev
->dev
,
2285 &vnic
->mc_list_mapping
,
2287 if (!vnic
->mc_list
) {
2293 if (vnic
->flags
& BNXT_VNIC_RSS_FLAG
)
2294 max_rings
= bp
->rx_nr_rings
;
2298 vnic
->fw_grp_ids
= kcalloc(max_rings
, sizeof(u16
), GFP_KERNEL
);
2299 if (!vnic
->fw_grp_ids
) {
2304 /* Allocate rss table and hash key */
2305 vnic
->rss_table
= dma_alloc_coherent(&pdev
->dev
, PAGE_SIZE
,
2306 &vnic
->rss_table_dma_addr
,
2308 if (!vnic
->rss_table
) {
2313 size
= L1_CACHE_ALIGN(HW_HASH_INDEX_SIZE
* sizeof(u16
));
2315 vnic
->rss_hash_key
= ((void *)vnic
->rss_table
) + size
;
2316 vnic
->rss_hash_key_dma_addr
= vnic
->rss_table_dma_addr
+ size
;
2324 static void bnxt_free_hwrm_resources(struct bnxt
*bp
)
2326 struct pci_dev
*pdev
= bp
->pdev
;
2328 dma_free_coherent(&pdev
->dev
, PAGE_SIZE
, bp
->hwrm_cmd_resp_addr
,
2329 bp
->hwrm_cmd_resp_dma_addr
);
2331 bp
->hwrm_cmd_resp_addr
= NULL
;
2332 if (bp
->hwrm_dbg_resp_addr
) {
2333 dma_free_coherent(&pdev
->dev
, HWRM_DBG_REG_BUF_SIZE
,
2334 bp
->hwrm_dbg_resp_addr
,
2335 bp
->hwrm_dbg_resp_dma_addr
);
2337 bp
->hwrm_dbg_resp_addr
= NULL
;
2341 static int bnxt_alloc_hwrm_resources(struct bnxt
*bp
)
2343 struct pci_dev
*pdev
= bp
->pdev
;
2345 bp
->hwrm_cmd_resp_addr
= dma_alloc_coherent(&pdev
->dev
, PAGE_SIZE
,
2346 &bp
->hwrm_cmd_resp_dma_addr
,
2348 if (!bp
->hwrm_cmd_resp_addr
)
2350 bp
->hwrm_dbg_resp_addr
= dma_alloc_coherent(&pdev
->dev
,
2351 HWRM_DBG_REG_BUF_SIZE
,
2352 &bp
->hwrm_dbg_resp_dma_addr
,
2354 if (!bp
->hwrm_dbg_resp_addr
)
2355 netdev_warn(bp
->dev
, "fail to alloc debug register dma mem\n");
2360 static void bnxt_free_stats(struct bnxt
*bp
)
2363 struct pci_dev
*pdev
= bp
->pdev
;
2365 if (bp
->hw_rx_port_stats
) {
2366 dma_free_coherent(&pdev
->dev
, bp
->hw_port_stats_size
,
2367 bp
->hw_rx_port_stats
,
2368 bp
->hw_rx_port_stats_map
);
2369 bp
->hw_rx_port_stats
= NULL
;
2370 bp
->flags
&= ~BNXT_FLAG_PORT_STATS
;
2376 size
= sizeof(struct ctx_hw_stats
);
2378 for (i
= 0; i
< bp
->cp_nr_rings
; i
++) {
2379 struct bnxt_napi
*bnapi
= bp
->bnapi
[i
];
2380 struct bnxt_cp_ring_info
*cpr
= &bnapi
->cp_ring
;
2382 if (cpr
->hw_stats
) {
2383 dma_free_coherent(&pdev
->dev
, size
, cpr
->hw_stats
,
2385 cpr
->hw_stats
= NULL
;
2390 static int bnxt_alloc_stats(struct bnxt
*bp
)
2393 struct pci_dev
*pdev
= bp
->pdev
;
2395 size
= sizeof(struct ctx_hw_stats
);
2397 for (i
= 0; i
< bp
->cp_nr_rings
; i
++) {
2398 struct bnxt_napi
*bnapi
= bp
->bnapi
[i
];
2399 struct bnxt_cp_ring_info
*cpr
= &bnapi
->cp_ring
;
2401 cpr
->hw_stats
= dma_alloc_coherent(&pdev
->dev
, size
,
2407 cpr
->hw_stats_ctx_id
= INVALID_STATS_CTX_ID
;
2411 bp
->hw_port_stats_size
= sizeof(struct rx_port_stats
) +
2412 sizeof(struct tx_port_stats
) + 1024;
2414 bp
->hw_rx_port_stats
=
2415 dma_alloc_coherent(&pdev
->dev
, bp
->hw_port_stats_size
,
2416 &bp
->hw_rx_port_stats_map
,
2418 if (!bp
->hw_rx_port_stats
)
2421 bp
->hw_tx_port_stats
= (void *)(bp
->hw_rx_port_stats
+ 1) +
2423 bp
->hw_tx_port_stats_map
= bp
->hw_rx_port_stats_map
+
2424 sizeof(struct rx_port_stats
) + 512;
2425 bp
->flags
|= BNXT_FLAG_PORT_STATS
;
2430 static void bnxt_clear_ring_indices(struct bnxt
*bp
)
2437 for (i
= 0; i
< bp
->cp_nr_rings
; i
++) {
2438 struct bnxt_napi
*bnapi
= bp
->bnapi
[i
];
2439 struct bnxt_cp_ring_info
*cpr
;
2440 struct bnxt_rx_ring_info
*rxr
;
2441 struct bnxt_tx_ring_info
*txr
;
2446 cpr
= &bnapi
->cp_ring
;
2447 cpr
->cp_raw_cons
= 0;
2449 txr
= bnapi
->tx_ring
;
2455 rxr
= bnapi
->rx_ring
;
2458 rxr
->rx_agg_prod
= 0;
2459 rxr
->rx_sw_agg_prod
= 0;
2464 static void bnxt_free_ntp_fltrs(struct bnxt
*bp
, bool irq_reinit
)
2466 #ifdef CONFIG_RFS_ACCEL
2469 /* Under rtnl_lock and all our NAPIs have been disabled. It's
2470 * safe to delete the hash table.
2472 for (i
= 0; i
< BNXT_NTP_FLTR_HASH_SIZE
; i
++) {
2473 struct hlist_head
*head
;
2474 struct hlist_node
*tmp
;
2475 struct bnxt_ntuple_filter
*fltr
;
2477 head
= &bp
->ntp_fltr_hash_tbl
[i
];
2478 hlist_for_each_entry_safe(fltr
, tmp
, head
, hash
) {
2479 hlist_del(&fltr
->hash
);
2484 kfree(bp
->ntp_fltr_bmap
);
2485 bp
->ntp_fltr_bmap
= NULL
;
2487 bp
->ntp_fltr_count
= 0;
2491 static int bnxt_alloc_ntp_fltrs(struct bnxt
*bp
)
2493 #ifdef CONFIG_RFS_ACCEL
2496 if (!(bp
->flags
& BNXT_FLAG_RFS
))
2499 for (i
= 0; i
< BNXT_NTP_FLTR_HASH_SIZE
; i
++)
2500 INIT_HLIST_HEAD(&bp
->ntp_fltr_hash_tbl
[i
]);
2502 bp
->ntp_fltr_count
= 0;
2503 bp
->ntp_fltr_bmap
= kzalloc(BITS_TO_LONGS(BNXT_NTP_FLTR_MAX_FLTR
),
2506 if (!bp
->ntp_fltr_bmap
)
2515 static void bnxt_free_mem(struct bnxt
*bp
, bool irq_re_init
)
2517 bnxt_free_vnic_attributes(bp
);
2518 bnxt_free_tx_rings(bp
);
2519 bnxt_free_rx_rings(bp
);
2520 bnxt_free_cp_rings(bp
);
2521 bnxt_free_ntp_fltrs(bp
, irq_re_init
);
2523 bnxt_free_stats(bp
);
2524 bnxt_free_ring_grps(bp
);
2525 bnxt_free_vnics(bp
);
2533 bnxt_clear_ring_indices(bp
);
2537 static int bnxt_alloc_mem(struct bnxt
*bp
, bool irq_re_init
)
2539 int i
, j
, rc
, size
, arr_size
;
2543 /* Allocate bnapi mem pointer array and mem block for
2546 arr_size
= L1_CACHE_ALIGN(sizeof(struct bnxt_napi
*) *
2548 size
= L1_CACHE_ALIGN(sizeof(struct bnxt_napi
));
2549 bnapi
= kzalloc(arr_size
+ size
* bp
->cp_nr_rings
, GFP_KERNEL
);
2555 for (i
= 0; i
< bp
->cp_nr_rings
; i
++, bnapi
+= size
) {
2556 bp
->bnapi
[i
] = bnapi
;
2557 bp
->bnapi
[i
]->index
= i
;
2558 bp
->bnapi
[i
]->bp
= bp
;
2561 bp
->rx_ring
= kcalloc(bp
->rx_nr_rings
,
2562 sizeof(struct bnxt_rx_ring_info
),
2567 for (i
= 0; i
< bp
->rx_nr_rings
; i
++) {
2568 bp
->rx_ring
[i
].bnapi
= bp
->bnapi
[i
];
2569 bp
->bnapi
[i
]->rx_ring
= &bp
->rx_ring
[i
];
2572 bp
->tx_ring
= kcalloc(bp
->tx_nr_rings
,
2573 sizeof(struct bnxt_tx_ring_info
),
2578 if (bp
->flags
& BNXT_FLAG_SHARED_RINGS
)
2581 j
= bp
->rx_nr_rings
;
2583 for (i
= 0; i
< bp
->tx_nr_rings
; i
++, j
++) {
2584 bp
->tx_ring
[i
].bnapi
= bp
->bnapi
[j
];
2585 bp
->bnapi
[j
]->tx_ring
= &bp
->tx_ring
[i
];
2588 rc
= bnxt_alloc_stats(bp
);
2592 rc
= bnxt_alloc_ntp_fltrs(bp
);
2596 rc
= bnxt_alloc_vnics(bp
);
2601 bnxt_init_ring_struct(bp
);
2603 rc
= bnxt_alloc_rx_rings(bp
);
2607 rc
= bnxt_alloc_tx_rings(bp
);
2611 rc
= bnxt_alloc_cp_rings(bp
);
2615 bp
->vnic_info
[0].flags
|= BNXT_VNIC_RSS_FLAG
| BNXT_VNIC_MCAST_FLAG
|
2616 BNXT_VNIC_UCAST_FLAG
;
2617 rc
= bnxt_alloc_vnic_attributes(bp
);
2623 bnxt_free_mem(bp
, true);
2627 void bnxt_hwrm_cmd_hdr_init(struct bnxt
*bp
, void *request
, u16 req_type
,
2628 u16 cmpl_ring
, u16 target_id
)
2630 struct input
*req
= request
;
2632 req
->req_type
= cpu_to_le16(req_type
);
2633 req
->cmpl_ring
= cpu_to_le16(cmpl_ring
);
2634 req
->target_id
= cpu_to_le16(target_id
);
2635 req
->resp_addr
= cpu_to_le64(bp
->hwrm_cmd_resp_dma_addr
);
2638 static int bnxt_hwrm_do_send_msg(struct bnxt
*bp
, void *msg
, u32 msg_len
,
2639 int timeout
, bool silent
)
2641 int i
, intr_process
, rc
;
2642 struct input
*req
= msg
;
2644 __le32
*resp_len
, *valid
;
2645 u16 cp_ring_id
, len
= 0;
2646 struct hwrm_err_output
*resp
= bp
->hwrm_cmd_resp_addr
;
2648 req
->seq_id
= cpu_to_le16(bp
->hwrm_cmd_seq
++);
2649 memset(resp
, 0, PAGE_SIZE
);
2650 cp_ring_id
= le16_to_cpu(req
->cmpl_ring
);
2651 intr_process
= (cp_ring_id
== INVALID_HW_RING_ID
) ? 0 : 1;
2653 /* Write request msg to hwrm channel */
2654 __iowrite32_copy(bp
->bar0
, data
, msg_len
/ 4);
2656 for (i
= msg_len
; i
< BNXT_HWRM_MAX_REQ_LEN
; i
+= 4)
2657 writel(0, bp
->bar0
+ i
);
2659 /* currently supports only one outstanding message */
2661 bp
->hwrm_intr_seq_id
= le16_to_cpu(req
->seq_id
);
2663 /* Ring channel doorbell */
2664 writel(1, bp
->bar0
+ 0x100);
2667 timeout
= DFLT_HWRM_CMD_TIMEOUT
;
2671 /* Wait until hwrm response cmpl interrupt is processed */
2672 while (bp
->hwrm_intr_seq_id
!= HWRM_SEQ_ID_INVALID
&&
2674 usleep_range(600, 800);
2677 if (bp
->hwrm_intr_seq_id
!= HWRM_SEQ_ID_INVALID
) {
2678 netdev_err(bp
->dev
, "Resp cmpl intr err msg: 0x%x\n",
2679 le16_to_cpu(req
->req_type
));
2683 /* Check if response len is updated */
2684 resp_len
= bp
->hwrm_cmd_resp_addr
+ HWRM_RESP_LEN_OFFSET
;
2685 for (i
= 0; i
< timeout
; i
++) {
2686 len
= (le32_to_cpu(*resp_len
) & HWRM_RESP_LEN_MASK
) >>
2690 usleep_range(600, 800);
2694 netdev_err(bp
->dev
, "Error (timeout: %d) msg {0x%x 0x%x} len:%d\n",
2695 timeout
, le16_to_cpu(req
->req_type
),
2696 le16_to_cpu(req
->seq_id
), *resp_len
);
2700 /* Last word of resp contains valid bit */
2701 valid
= bp
->hwrm_cmd_resp_addr
+ len
- 4;
2702 for (i
= 0; i
< timeout
; i
++) {
2703 if (le32_to_cpu(*valid
) & HWRM_RESP_VALID_MASK
)
2705 usleep_range(600, 800);
2709 netdev_err(bp
->dev
, "Error (timeout: %d) msg {0x%x 0x%x} len:%d v:%d\n",
2710 timeout
, le16_to_cpu(req
->req_type
),
2711 le16_to_cpu(req
->seq_id
), len
, *valid
);
2716 rc
= le16_to_cpu(resp
->error_code
);
2718 netdev_err(bp
->dev
, "hwrm req_type 0x%x seq id 0x%x error 0x%x\n",
2719 le16_to_cpu(resp
->req_type
),
2720 le16_to_cpu(resp
->seq_id
), rc
);
2724 int _hwrm_send_message(struct bnxt
*bp
, void *msg
, u32 msg_len
, int timeout
)
2726 return bnxt_hwrm_do_send_msg(bp
, msg
, msg_len
, timeout
, false);
2729 int hwrm_send_message(struct bnxt
*bp
, void *msg
, u32 msg_len
, int timeout
)
2733 mutex_lock(&bp
->hwrm_cmd_lock
);
2734 rc
= _hwrm_send_message(bp
, msg
, msg_len
, timeout
);
2735 mutex_unlock(&bp
->hwrm_cmd_lock
);
2739 int hwrm_send_message_silent(struct bnxt
*bp
, void *msg
, u32 msg_len
,
2744 mutex_lock(&bp
->hwrm_cmd_lock
);
2745 rc
= bnxt_hwrm_do_send_msg(bp
, msg
, msg_len
, timeout
, true);
2746 mutex_unlock(&bp
->hwrm_cmd_lock
);
2750 static int bnxt_hwrm_func_drv_rgtr(struct bnxt
*bp
)
2752 struct hwrm_func_drv_rgtr_input req
= {0};
2755 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_FUNC_DRV_RGTR
, -1, -1);
2758 cpu_to_le32(FUNC_DRV_RGTR_REQ_ENABLES_OS_TYPE
|
2759 FUNC_DRV_RGTR_REQ_ENABLES_VER
|
2760 FUNC_DRV_RGTR_REQ_ENABLES_ASYNC_EVENT_FWD
);
2762 /* TODO: current async event fwd bits are not defined and the firmware
2763 * only checks if it is non-zero to enable async event forwarding
2765 req
.async_event_fwd
[0] |= cpu_to_le32(1);
2766 req
.os_type
= cpu_to_le16(FUNC_DRV_RGTR_REQ_OS_TYPE_LINUX
);
2767 req
.ver_maj
= DRV_VER_MAJ
;
2768 req
.ver_min
= DRV_VER_MIN
;
2769 req
.ver_upd
= DRV_VER_UPD
;
2772 DECLARE_BITMAP(vf_req_snif_bmap
, 256);
2773 u32
*data
= (u32
*)vf_req_snif_bmap
;
2775 memset(vf_req_snif_bmap
, 0, sizeof(vf_req_snif_bmap
));
2776 for (i
= 0; i
< ARRAY_SIZE(bnxt_vf_req_snif
); i
++)
2777 __set_bit(bnxt_vf_req_snif
[i
], vf_req_snif_bmap
);
2779 for (i
= 0; i
< 8; i
++)
2780 req
.vf_req_fwd
[i
] = cpu_to_le32(data
[i
]);
2783 cpu_to_le32(FUNC_DRV_RGTR_REQ_ENABLES_VF_REQ_FWD
);
2786 return hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
2789 static int bnxt_hwrm_func_drv_unrgtr(struct bnxt
*bp
)
2791 struct hwrm_func_drv_unrgtr_input req
= {0};
2793 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_FUNC_DRV_UNRGTR
, -1, -1);
2794 return hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
2797 static int bnxt_hwrm_tunnel_dst_port_free(struct bnxt
*bp
, u8 tunnel_type
)
2800 struct hwrm_tunnel_dst_port_free_input req
= {0};
2802 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_TUNNEL_DST_PORT_FREE
, -1, -1);
2803 req
.tunnel_type
= tunnel_type
;
2805 switch (tunnel_type
) {
2806 case TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_VXLAN
:
2807 req
.tunnel_dst_port_id
= bp
->vxlan_fw_dst_port_id
;
2809 case TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_GENEVE
:
2810 req
.tunnel_dst_port_id
= bp
->nge_fw_dst_port_id
;
2816 rc
= hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
2818 netdev_err(bp
->dev
, "hwrm_tunnel_dst_port_free failed. rc:%d\n",
2823 static int bnxt_hwrm_tunnel_dst_port_alloc(struct bnxt
*bp
, __be16 port
,
2827 struct hwrm_tunnel_dst_port_alloc_input req
= {0};
2828 struct hwrm_tunnel_dst_port_alloc_output
*resp
= bp
->hwrm_cmd_resp_addr
;
2830 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_TUNNEL_DST_PORT_ALLOC
, -1, -1);
2832 req
.tunnel_type
= tunnel_type
;
2833 req
.tunnel_dst_port_val
= port
;
2835 mutex_lock(&bp
->hwrm_cmd_lock
);
2836 rc
= _hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
2838 netdev_err(bp
->dev
, "hwrm_tunnel_dst_port_alloc failed. rc:%d\n",
2843 if (tunnel_type
& TUNNEL_DST_PORT_ALLOC_REQ_TUNNEL_TYPE_VXLAN
)
2844 bp
->vxlan_fw_dst_port_id
= resp
->tunnel_dst_port_id
;
2846 else if (tunnel_type
& TUNNEL_DST_PORT_ALLOC_REQ_TUNNEL_TYPE_GENEVE
)
2847 bp
->nge_fw_dst_port_id
= resp
->tunnel_dst_port_id
;
2849 mutex_unlock(&bp
->hwrm_cmd_lock
);
2853 static int bnxt_hwrm_cfa_l2_set_rx_mask(struct bnxt
*bp
, u16 vnic_id
)
2855 struct hwrm_cfa_l2_set_rx_mask_input req
= {0};
2856 struct bnxt_vnic_info
*vnic
= &bp
->vnic_info
[vnic_id
];
2858 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_CFA_L2_SET_RX_MASK
, -1, -1);
2859 req
.vnic_id
= cpu_to_le32(vnic
->fw_vnic_id
);
2861 req
.num_mc_entries
= cpu_to_le32(vnic
->mc_list_count
);
2862 req
.mc_tbl_addr
= cpu_to_le64(vnic
->mc_list_mapping
);
2863 req
.mask
= cpu_to_le32(vnic
->rx_mask
);
2864 return hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
2867 #ifdef CONFIG_RFS_ACCEL
2868 static int bnxt_hwrm_cfa_ntuple_filter_free(struct bnxt
*bp
,
2869 struct bnxt_ntuple_filter
*fltr
)
2871 struct hwrm_cfa_ntuple_filter_free_input req
= {0};
2873 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_CFA_NTUPLE_FILTER_FREE
, -1, -1);
2874 req
.ntuple_filter_id
= fltr
->filter_id
;
2875 return hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
2878 #define BNXT_NTP_FLTR_FLAGS \
2879 (CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_L2_FILTER_ID | \
2880 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_ETHERTYPE | \
2881 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_MACADDR | \
2882 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_IPADDR_TYPE | \
2883 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_IPADDR | \
2884 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_IPADDR_MASK | \
2885 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_IPADDR | \
2886 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_IPADDR_MASK | \
2887 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_IP_PROTOCOL | \
2888 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_PORT | \
2889 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_PORT_MASK | \
2890 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_PORT | \
2891 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_PORT_MASK | \
2892 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_ID)
2894 static int bnxt_hwrm_cfa_ntuple_filter_alloc(struct bnxt
*bp
,
2895 struct bnxt_ntuple_filter
*fltr
)
2898 struct hwrm_cfa_ntuple_filter_alloc_input req
= {0};
2899 struct hwrm_cfa_ntuple_filter_alloc_output
*resp
=
2900 bp
->hwrm_cmd_resp_addr
;
2901 struct flow_keys
*keys
= &fltr
->fkeys
;
2902 struct bnxt_vnic_info
*vnic
= &bp
->vnic_info
[fltr
->rxq
+ 1];
2904 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_CFA_NTUPLE_FILTER_ALLOC
, -1, -1);
2905 req
.l2_filter_id
= bp
->vnic_info
[0].fw_l2_filter_id
[0];
2907 req
.enables
= cpu_to_le32(BNXT_NTP_FLTR_FLAGS
);
2909 req
.ethertype
= htons(ETH_P_IP
);
2910 memcpy(req
.src_macaddr
, fltr
->src_mac_addr
, ETH_ALEN
);
2911 req
.ip_addr_type
= CFA_NTUPLE_FILTER_ALLOC_REQ_IP_ADDR_TYPE_IPV4
;
2912 req
.ip_protocol
= keys
->basic
.ip_proto
;
2914 req
.src_ipaddr
[0] = keys
->addrs
.v4addrs
.src
;
2915 req
.src_ipaddr_mask
[0] = cpu_to_be32(0xffffffff);
2916 req
.dst_ipaddr
[0] = keys
->addrs
.v4addrs
.dst
;
2917 req
.dst_ipaddr_mask
[0] = cpu_to_be32(0xffffffff);
2919 req
.src_port
= keys
->ports
.src
;
2920 req
.src_port_mask
= cpu_to_be16(0xffff);
2921 req
.dst_port
= keys
->ports
.dst
;
2922 req
.dst_port_mask
= cpu_to_be16(0xffff);
2924 req
.dst_id
= cpu_to_le16(vnic
->fw_vnic_id
);
2925 mutex_lock(&bp
->hwrm_cmd_lock
);
2926 rc
= _hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
2928 fltr
->filter_id
= resp
->ntuple_filter_id
;
2929 mutex_unlock(&bp
->hwrm_cmd_lock
);
2934 static int bnxt_hwrm_set_vnic_filter(struct bnxt
*bp
, u16 vnic_id
, u16 idx
,
2938 struct hwrm_cfa_l2_filter_alloc_input req
= {0};
2939 struct hwrm_cfa_l2_filter_alloc_output
*resp
= bp
->hwrm_cmd_resp_addr
;
2941 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_CFA_L2_FILTER_ALLOC
, -1, -1);
2942 req
.flags
= cpu_to_le32(CFA_L2_FILTER_ALLOC_REQ_FLAGS_PATH_RX
|
2943 CFA_L2_FILTER_ALLOC_REQ_FLAGS_OUTERMOST
);
2944 req
.dst_id
= cpu_to_le16(bp
->vnic_info
[vnic_id
].fw_vnic_id
);
2946 cpu_to_le32(CFA_L2_FILTER_ALLOC_REQ_ENABLES_L2_ADDR
|
2947 CFA_L2_FILTER_ALLOC_REQ_ENABLES_DST_ID
|
2948 CFA_L2_FILTER_ALLOC_REQ_ENABLES_L2_ADDR_MASK
);
2949 memcpy(req
.l2_addr
, mac_addr
, ETH_ALEN
);
2950 req
.l2_addr_mask
[0] = 0xff;
2951 req
.l2_addr_mask
[1] = 0xff;
2952 req
.l2_addr_mask
[2] = 0xff;
2953 req
.l2_addr_mask
[3] = 0xff;
2954 req
.l2_addr_mask
[4] = 0xff;
2955 req
.l2_addr_mask
[5] = 0xff;
2957 mutex_lock(&bp
->hwrm_cmd_lock
);
2958 rc
= _hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
2960 bp
->vnic_info
[vnic_id
].fw_l2_filter_id
[idx
] =
2962 mutex_unlock(&bp
->hwrm_cmd_lock
);
2966 static int bnxt_hwrm_clear_vnic_filter(struct bnxt
*bp
)
2968 u16 i
, j
, num_of_vnics
= 1; /* only vnic 0 supported */
2971 /* Any associated ntuple filters will also be cleared by firmware. */
2972 mutex_lock(&bp
->hwrm_cmd_lock
);
2973 for (i
= 0; i
< num_of_vnics
; i
++) {
2974 struct bnxt_vnic_info
*vnic
= &bp
->vnic_info
[i
];
2976 for (j
= 0; j
< vnic
->uc_filter_count
; j
++) {
2977 struct hwrm_cfa_l2_filter_free_input req
= {0};
2979 bnxt_hwrm_cmd_hdr_init(bp
, &req
,
2980 HWRM_CFA_L2_FILTER_FREE
, -1, -1);
2982 req
.l2_filter_id
= vnic
->fw_l2_filter_id
[j
];
2984 rc
= _hwrm_send_message(bp
, &req
, sizeof(req
),
2987 vnic
->uc_filter_count
= 0;
2989 mutex_unlock(&bp
->hwrm_cmd_lock
);
2994 static int bnxt_hwrm_vnic_set_tpa(struct bnxt
*bp
, u16 vnic_id
, u32 tpa_flags
)
2996 struct bnxt_vnic_info
*vnic
= &bp
->vnic_info
[vnic_id
];
2997 struct hwrm_vnic_tpa_cfg_input req
= {0};
2999 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_VNIC_TPA_CFG
, -1, -1);
3002 u16 mss
= bp
->dev
->mtu
- 40;
3003 u32 nsegs
, n
, segs
= 0, flags
;
3005 flags
= VNIC_TPA_CFG_REQ_FLAGS_TPA
|
3006 VNIC_TPA_CFG_REQ_FLAGS_ENCAP_TPA
|
3007 VNIC_TPA_CFG_REQ_FLAGS_RSC_WND_UPDATE
|
3008 VNIC_TPA_CFG_REQ_FLAGS_AGG_WITH_ECN
|
3009 VNIC_TPA_CFG_REQ_FLAGS_AGG_WITH_SAME_GRE_SEQ
;
3010 if (tpa_flags
& BNXT_FLAG_GRO
)
3011 flags
|= VNIC_TPA_CFG_REQ_FLAGS_GRO
;
3013 req
.flags
= cpu_to_le32(flags
);
3016 cpu_to_le32(VNIC_TPA_CFG_REQ_ENABLES_MAX_AGG_SEGS
|
3017 VNIC_TPA_CFG_REQ_ENABLES_MAX_AGGS
|
3018 VNIC_TPA_CFG_REQ_ENABLES_MIN_AGG_LEN
);
3020 /* Number of segs are log2 units, and first packet is not
3021 * included as part of this units.
3023 if (mss
<= PAGE_SIZE
) {
3024 n
= PAGE_SIZE
/ mss
;
3025 nsegs
= (MAX_SKB_FRAGS
- 1) * n
;
3027 n
= mss
/ PAGE_SIZE
;
3028 if (mss
& (PAGE_SIZE
- 1))
3030 nsegs
= (MAX_SKB_FRAGS
- n
) / n
;
3033 segs
= ilog2(nsegs
);
3034 req
.max_agg_segs
= cpu_to_le16(segs
);
3035 req
.max_aggs
= cpu_to_le16(VNIC_TPA_CFG_REQ_MAX_AGGS_MAX
);
3037 req
.min_agg_len
= cpu_to_le32(512);
3039 req
.vnic_id
= cpu_to_le16(vnic
->fw_vnic_id
);
3041 return hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
3044 static int bnxt_hwrm_vnic_set_rss(struct bnxt
*bp
, u16 vnic_id
, bool set_rss
)
3046 u32 i
, j
, max_rings
;
3047 struct bnxt_vnic_info
*vnic
= &bp
->vnic_info
[vnic_id
];
3048 struct hwrm_vnic_rss_cfg_input req
= {0};
3050 if (vnic
->fw_rss_cos_lb_ctx
== INVALID_HW_RING_ID
)
3053 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_VNIC_RSS_CFG
, -1, -1);
3055 vnic
->hash_type
= BNXT_RSS_HASH_TYPE_FLAG_IPV4
|
3056 BNXT_RSS_HASH_TYPE_FLAG_TCP_IPV4
|
3057 BNXT_RSS_HASH_TYPE_FLAG_IPV6
|
3058 BNXT_RSS_HASH_TYPE_FLAG_TCP_IPV6
;
3060 req
.hash_type
= cpu_to_le32(vnic
->hash_type
);
3062 if (vnic
->flags
& BNXT_VNIC_RSS_FLAG
)
3063 max_rings
= bp
->rx_nr_rings
;
3067 /* Fill the RSS indirection table with ring group ids */
3068 for (i
= 0, j
= 0; i
< HW_HASH_INDEX_SIZE
; i
++, j
++) {
3071 vnic
->rss_table
[i
] = cpu_to_le16(vnic
->fw_grp_ids
[j
]);
3074 req
.ring_grp_tbl_addr
= cpu_to_le64(vnic
->rss_table_dma_addr
);
3075 req
.hash_key_tbl_addr
=
3076 cpu_to_le64(vnic
->rss_hash_key_dma_addr
);
3078 req
.rss_ctx_idx
= cpu_to_le16(vnic
->fw_rss_cos_lb_ctx
);
3079 return hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
3082 static int bnxt_hwrm_vnic_set_hds(struct bnxt
*bp
, u16 vnic_id
)
3084 struct bnxt_vnic_info
*vnic
= &bp
->vnic_info
[vnic_id
];
3085 struct hwrm_vnic_plcmodes_cfg_input req
= {0};
3087 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_VNIC_PLCMODES_CFG
, -1, -1);
3088 req
.flags
= cpu_to_le32(VNIC_PLCMODES_CFG_REQ_FLAGS_JUMBO_PLACEMENT
|
3089 VNIC_PLCMODES_CFG_REQ_FLAGS_HDS_IPV4
|
3090 VNIC_PLCMODES_CFG_REQ_FLAGS_HDS_IPV6
);
3092 cpu_to_le32(VNIC_PLCMODES_CFG_REQ_ENABLES_JUMBO_THRESH_VALID
|
3093 VNIC_PLCMODES_CFG_REQ_ENABLES_HDS_THRESHOLD_VALID
);
3094 /* thresholds not implemented in firmware yet */
3095 req
.jumbo_thresh
= cpu_to_le16(bp
->rx_copy_thresh
);
3096 req
.hds_threshold
= cpu_to_le16(bp
->rx_copy_thresh
);
3097 req
.vnic_id
= cpu_to_le32(vnic
->fw_vnic_id
);
3098 return hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
3101 static void bnxt_hwrm_vnic_ctx_free_one(struct bnxt
*bp
, u16 vnic_id
)
3103 struct hwrm_vnic_rss_cos_lb_ctx_free_input req
= {0};
3105 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_VNIC_RSS_COS_LB_CTX_FREE
, -1, -1);
3106 req
.rss_cos_lb_ctx_id
=
3107 cpu_to_le16(bp
->vnic_info
[vnic_id
].fw_rss_cos_lb_ctx
);
3109 hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
3110 bp
->vnic_info
[vnic_id
].fw_rss_cos_lb_ctx
= INVALID_HW_RING_ID
;
3113 static void bnxt_hwrm_vnic_ctx_free(struct bnxt
*bp
)
3117 for (i
= 0; i
< bp
->nr_vnics
; i
++) {
3118 struct bnxt_vnic_info
*vnic
= &bp
->vnic_info
[i
];
3120 if (vnic
->fw_rss_cos_lb_ctx
!= INVALID_HW_RING_ID
)
3121 bnxt_hwrm_vnic_ctx_free_one(bp
, i
);
3123 bp
->rsscos_nr_ctxs
= 0;
3126 static int bnxt_hwrm_vnic_ctx_alloc(struct bnxt
*bp
, u16 vnic_id
)
3129 struct hwrm_vnic_rss_cos_lb_ctx_alloc_input req
= {0};
3130 struct hwrm_vnic_rss_cos_lb_ctx_alloc_output
*resp
=
3131 bp
->hwrm_cmd_resp_addr
;
3133 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_VNIC_RSS_COS_LB_CTX_ALLOC
, -1,
3136 mutex_lock(&bp
->hwrm_cmd_lock
);
3137 rc
= _hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
3139 bp
->vnic_info
[vnic_id
].fw_rss_cos_lb_ctx
=
3140 le16_to_cpu(resp
->rss_cos_lb_ctx_id
);
3141 mutex_unlock(&bp
->hwrm_cmd_lock
);
3146 static int bnxt_hwrm_vnic_cfg(struct bnxt
*bp
, u16 vnic_id
)
3148 unsigned int ring
= 0, grp_idx
;
3149 struct bnxt_vnic_info
*vnic
= &bp
->vnic_info
[vnic_id
];
3150 struct hwrm_vnic_cfg_input req
= {0};
3152 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_VNIC_CFG
, -1, -1);
3153 /* Only RSS support for now TBD: COS & LB */
3154 req
.enables
= cpu_to_le32(VNIC_CFG_REQ_ENABLES_DFLT_RING_GRP
|
3155 VNIC_CFG_REQ_ENABLES_RSS_RULE
);
3156 req
.rss_rule
= cpu_to_le16(vnic
->fw_rss_cos_lb_ctx
);
3157 req
.cos_rule
= cpu_to_le16(0xffff);
3158 if (vnic
->flags
& BNXT_VNIC_RSS_FLAG
)
3160 else if (vnic
->flags
& BNXT_VNIC_RFS_FLAG
)
3163 grp_idx
= bp
->rx_ring
[ring
].bnapi
->index
;
3164 req
.vnic_id
= cpu_to_le16(vnic
->fw_vnic_id
);
3165 req
.dflt_ring_grp
= cpu_to_le16(bp
->grp_info
[grp_idx
].fw_grp_id
);
3167 req
.lb_rule
= cpu_to_le16(0xffff);
3168 req
.mru
= cpu_to_le16(bp
->dev
->mtu
+ ETH_HLEN
+ ETH_FCS_LEN
+
3171 if (bp
->flags
& BNXT_FLAG_STRIP_VLAN
)
3172 req
.flags
|= cpu_to_le32(VNIC_CFG_REQ_FLAGS_VLAN_STRIP_MODE
);
3174 return hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
3177 static int bnxt_hwrm_vnic_free_one(struct bnxt
*bp
, u16 vnic_id
)
3181 if (bp
->vnic_info
[vnic_id
].fw_vnic_id
!= INVALID_HW_RING_ID
) {
3182 struct hwrm_vnic_free_input req
= {0};
3184 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_VNIC_FREE
, -1, -1);
3186 cpu_to_le32(bp
->vnic_info
[vnic_id
].fw_vnic_id
);
3188 rc
= hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
3191 bp
->vnic_info
[vnic_id
].fw_vnic_id
= INVALID_HW_RING_ID
;
3196 static void bnxt_hwrm_vnic_free(struct bnxt
*bp
)
3200 for (i
= 0; i
< bp
->nr_vnics
; i
++)
3201 bnxt_hwrm_vnic_free_one(bp
, i
);
3204 static int bnxt_hwrm_vnic_alloc(struct bnxt
*bp
, u16 vnic_id
,
3205 unsigned int start_rx_ring_idx
,
3206 unsigned int nr_rings
)
3209 unsigned int i
, j
, grp_idx
, end_idx
= start_rx_ring_idx
+ nr_rings
;
3210 struct hwrm_vnic_alloc_input req
= {0};
3211 struct hwrm_vnic_alloc_output
*resp
= bp
->hwrm_cmd_resp_addr
;
3213 /* map ring groups to this vnic */
3214 for (i
= start_rx_ring_idx
, j
= 0; i
< end_idx
; i
++, j
++) {
3215 grp_idx
= bp
->rx_ring
[i
].bnapi
->index
;
3216 if (bp
->grp_info
[grp_idx
].fw_grp_id
== INVALID_HW_RING_ID
) {
3217 netdev_err(bp
->dev
, "Not enough ring groups avail:%x req:%x\n",
3221 bp
->vnic_info
[vnic_id
].fw_grp_ids
[j
] =
3222 bp
->grp_info
[grp_idx
].fw_grp_id
;
3225 bp
->vnic_info
[vnic_id
].fw_rss_cos_lb_ctx
= INVALID_HW_RING_ID
;
3227 req
.flags
= cpu_to_le32(VNIC_ALLOC_REQ_FLAGS_DEFAULT
);
3229 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_VNIC_ALLOC
, -1, -1);
3231 mutex_lock(&bp
->hwrm_cmd_lock
);
3232 rc
= _hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
3234 bp
->vnic_info
[vnic_id
].fw_vnic_id
= le32_to_cpu(resp
->vnic_id
);
3235 mutex_unlock(&bp
->hwrm_cmd_lock
);
3239 static int bnxt_hwrm_ring_grp_alloc(struct bnxt
*bp
)
3244 mutex_lock(&bp
->hwrm_cmd_lock
);
3245 for (i
= 0; i
< bp
->rx_nr_rings
; i
++) {
3246 struct hwrm_ring_grp_alloc_input req
= {0};
3247 struct hwrm_ring_grp_alloc_output
*resp
=
3248 bp
->hwrm_cmd_resp_addr
;
3249 unsigned int grp_idx
= bp
->rx_ring
[i
].bnapi
->index
;
3251 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_RING_GRP_ALLOC
, -1, -1);
3253 req
.cr
= cpu_to_le16(bp
->grp_info
[grp_idx
].cp_fw_ring_id
);
3254 req
.rr
= cpu_to_le16(bp
->grp_info
[grp_idx
].rx_fw_ring_id
);
3255 req
.ar
= cpu_to_le16(bp
->grp_info
[grp_idx
].agg_fw_ring_id
);
3256 req
.sc
= cpu_to_le16(bp
->grp_info
[grp_idx
].fw_stats_ctx
);
3258 rc
= _hwrm_send_message(bp
, &req
, sizeof(req
),
3263 bp
->grp_info
[grp_idx
].fw_grp_id
=
3264 le32_to_cpu(resp
->ring_group_id
);
3266 mutex_unlock(&bp
->hwrm_cmd_lock
);
3270 static int bnxt_hwrm_ring_grp_free(struct bnxt
*bp
)
3274 struct hwrm_ring_grp_free_input req
= {0};
3279 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_RING_GRP_FREE
, -1, -1);
3281 mutex_lock(&bp
->hwrm_cmd_lock
);
3282 for (i
= 0; i
< bp
->cp_nr_rings
; i
++) {
3283 if (bp
->grp_info
[i
].fw_grp_id
== INVALID_HW_RING_ID
)
3286 cpu_to_le32(bp
->grp_info
[i
].fw_grp_id
);
3288 rc
= _hwrm_send_message(bp
, &req
, sizeof(req
),
3292 bp
->grp_info
[i
].fw_grp_id
= INVALID_HW_RING_ID
;
3294 mutex_unlock(&bp
->hwrm_cmd_lock
);
3298 static int hwrm_ring_alloc_send_msg(struct bnxt
*bp
,
3299 struct bnxt_ring_struct
*ring
,
3300 u32 ring_type
, u32 map_index
,
3303 int rc
= 0, err
= 0;
3304 struct hwrm_ring_alloc_input req
= {0};
3305 struct hwrm_ring_alloc_output
*resp
= bp
->hwrm_cmd_resp_addr
;
3308 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_RING_ALLOC
, -1, -1);
3311 if (ring
->nr_pages
> 1) {
3312 req
.page_tbl_addr
= cpu_to_le64(ring
->pg_tbl_map
);
3313 /* Page size is in log2 units */
3314 req
.page_size
= BNXT_PAGE_SHIFT
;
3315 req
.page_tbl_depth
= 1;
3317 req
.page_tbl_addr
= cpu_to_le64(ring
->dma_arr
[0]);
3320 /* Association of ring index with doorbell index and MSIX number */
3321 req
.logical_id
= cpu_to_le16(map_index
);
3323 switch (ring_type
) {
3324 case HWRM_RING_ALLOC_TX
:
3325 req
.ring_type
= RING_ALLOC_REQ_RING_TYPE_TX
;
3326 /* Association of transmit ring with completion ring */
3328 cpu_to_le16(bp
->grp_info
[map_index
].cp_fw_ring_id
);
3329 req
.length
= cpu_to_le32(bp
->tx_ring_mask
+ 1);
3330 req
.stat_ctx_id
= cpu_to_le32(stats_ctx_id
);
3331 req
.queue_id
= cpu_to_le16(ring
->queue_id
);
3333 case HWRM_RING_ALLOC_RX
:
3334 req
.ring_type
= RING_ALLOC_REQ_RING_TYPE_RX
;
3335 req
.length
= cpu_to_le32(bp
->rx_ring_mask
+ 1);
3337 case HWRM_RING_ALLOC_AGG
:
3338 req
.ring_type
= RING_ALLOC_REQ_RING_TYPE_RX
;
3339 req
.length
= cpu_to_le32(bp
->rx_agg_ring_mask
+ 1);
3341 case HWRM_RING_ALLOC_CMPL
:
3342 req
.ring_type
= RING_ALLOC_REQ_RING_TYPE_CMPL
;
3343 req
.length
= cpu_to_le32(bp
->cp_ring_mask
+ 1);
3344 if (bp
->flags
& BNXT_FLAG_USING_MSIX
)
3345 req
.int_mode
= RING_ALLOC_REQ_INT_MODE_MSIX
;
3348 netdev_err(bp
->dev
, "hwrm alloc invalid ring type %d\n",
3353 mutex_lock(&bp
->hwrm_cmd_lock
);
3354 rc
= _hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
3355 err
= le16_to_cpu(resp
->error_code
);
3356 ring_id
= le16_to_cpu(resp
->ring_id
);
3357 mutex_unlock(&bp
->hwrm_cmd_lock
);
3360 switch (ring_type
) {
3361 case RING_FREE_REQ_RING_TYPE_CMPL
:
3362 netdev_err(bp
->dev
, "hwrm_ring_alloc cp failed. rc:%x err:%x\n",
3366 case RING_FREE_REQ_RING_TYPE_RX
:
3367 netdev_err(bp
->dev
, "hwrm_ring_alloc rx failed. rc:%x err:%x\n",
3371 case RING_FREE_REQ_RING_TYPE_TX
:
3372 netdev_err(bp
->dev
, "hwrm_ring_alloc tx failed. rc:%x err:%x\n",
3377 netdev_err(bp
->dev
, "Invalid ring\n");
3381 ring
->fw_ring_id
= ring_id
;
3385 static int bnxt_hwrm_ring_alloc(struct bnxt
*bp
)
3389 for (i
= 0; i
< bp
->cp_nr_rings
; i
++) {
3390 struct bnxt_napi
*bnapi
= bp
->bnapi
[i
];
3391 struct bnxt_cp_ring_info
*cpr
= &bnapi
->cp_ring
;
3392 struct bnxt_ring_struct
*ring
= &cpr
->cp_ring_struct
;
3394 cpr
->cp_doorbell
= bp
->bar1
+ i
* 0x80;
3395 rc
= hwrm_ring_alloc_send_msg(bp
, ring
, HWRM_RING_ALLOC_CMPL
, i
,
3396 INVALID_STATS_CTX_ID
);
3399 BNXT_CP_DB(cpr
->cp_doorbell
, cpr
->cp_raw_cons
);
3400 bp
->grp_info
[i
].cp_fw_ring_id
= ring
->fw_ring_id
;
3403 for (i
= 0; i
< bp
->tx_nr_rings
; i
++) {
3404 struct bnxt_tx_ring_info
*txr
= &bp
->tx_ring
[i
];
3405 struct bnxt_ring_struct
*ring
= &txr
->tx_ring_struct
;
3406 u32 map_idx
= txr
->bnapi
->index
;
3407 u16 fw_stats_ctx
= bp
->grp_info
[map_idx
].fw_stats_ctx
;
3409 rc
= hwrm_ring_alloc_send_msg(bp
, ring
, HWRM_RING_ALLOC_TX
,
3410 map_idx
, fw_stats_ctx
);
3413 txr
->tx_doorbell
= bp
->bar1
+ map_idx
* 0x80;
3416 for (i
= 0; i
< bp
->rx_nr_rings
; i
++) {
3417 struct bnxt_rx_ring_info
*rxr
= &bp
->rx_ring
[i
];
3418 struct bnxt_ring_struct
*ring
= &rxr
->rx_ring_struct
;
3419 u32 map_idx
= rxr
->bnapi
->index
;
3421 rc
= hwrm_ring_alloc_send_msg(bp
, ring
, HWRM_RING_ALLOC_RX
,
3422 map_idx
, INVALID_STATS_CTX_ID
);
3425 rxr
->rx_doorbell
= bp
->bar1
+ map_idx
* 0x80;
3426 writel(DB_KEY_RX
| rxr
->rx_prod
, rxr
->rx_doorbell
);
3427 bp
->grp_info
[map_idx
].rx_fw_ring_id
= ring
->fw_ring_id
;
3430 if (bp
->flags
& BNXT_FLAG_AGG_RINGS
) {
3431 for (i
= 0; i
< bp
->rx_nr_rings
; i
++) {
3432 struct bnxt_rx_ring_info
*rxr
= &bp
->rx_ring
[i
];
3433 struct bnxt_ring_struct
*ring
=
3434 &rxr
->rx_agg_ring_struct
;
3435 u32 grp_idx
= rxr
->bnapi
->index
;
3436 u32 map_idx
= grp_idx
+ bp
->rx_nr_rings
;
3438 rc
= hwrm_ring_alloc_send_msg(bp
, ring
,
3439 HWRM_RING_ALLOC_AGG
,
3441 INVALID_STATS_CTX_ID
);
3445 rxr
->rx_agg_doorbell
= bp
->bar1
+ map_idx
* 0x80;
3446 writel(DB_KEY_RX
| rxr
->rx_agg_prod
,
3447 rxr
->rx_agg_doorbell
);
3448 bp
->grp_info
[grp_idx
].agg_fw_ring_id
= ring
->fw_ring_id
;
3455 static int hwrm_ring_free_send_msg(struct bnxt
*bp
,
3456 struct bnxt_ring_struct
*ring
,
3457 u32 ring_type
, int cmpl_ring_id
)
3460 struct hwrm_ring_free_input req
= {0};
3461 struct hwrm_ring_free_output
*resp
= bp
->hwrm_cmd_resp_addr
;
3464 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_RING_FREE
, cmpl_ring_id
, -1);
3465 req
.ring_type
= ring_type
;
3466 req
.ring_id
= cpu_to_le16(ring
->fw_ring_id
);
3468 mutex_lock(&bp
->hwrm_cmd_lock
);
3469 rc
= _hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
3470 error_code
= le16_to_cpu(resp
->error_code
);
3471 mutex_unlock(&bp
->hwrm_cmd_lock
);
3473 if (rc
|| error_code
) {
3474 switch (ring_type
) {
3475 case RING_FREE_REQ_RING_TYPE_CMPL
:
3476 netdev_err(bp
->dev
, "hwrm_ring_free cp failed. rc:%d\n",
3479 case RING_FREE_REQ_RING_TYPE_RX
:
3480 netdev_err(bp
->dev
, "hwrm_ring_free rx failed. rc:%d\n",
3483 case RING_FREE_REQ_RING_TYPE_TX
:
3484 netdev_err(bp
->dev
, "hwrm_ring_free tx failed. rc:%d\n",
3488 netdev_err(bp
->dev
, "Invalid ring\n");
3495 static void bnxt_hwrm_ring_free(struct bnxt
*bp
, bool close_path
)
3502 for (i
= 0; i
< bp
->tx_nr_rings
; i
++) {
3503 struct bnxt_tx_ring_info
*txr
= &bp
->tx_ring
[i
];
3504 struct bnxt_ring_struct
*ring
= &txr
->tx_ring_struct
;
3505 u32 grp_idx
= txr
->bnapi
->index
;
3506 u32 cmpl_ring_id
= bp
->grp_info
[grp_idx
].cp_fw_ring_id
;
3508 if (ring
->fw_ring_id
!= INVALID_HW_RING_ID
) {
3509 hwrm_ring_free_send_msg(bp
, ring
,
3510 RING_FREE_REQ_RING_TYPE_TX
,
3511 close_path
? cmpl_ring_id
:
3512 INVALID_HW_RING_ID
);
3513 ring
->fw_ring_id
= INVALID_HW_RING_ID
;
3517 for (i
= 0; i
< bp
->rx_nr_rings
; i
++) {
3518 struct bnxt_rx_ring_info
*rxr
= &bp
->rx_ring
[i
];
3519 struct bnxt_ring_struct
*ring
= &rxr
->rx_ring_struct
;
3520 u32 grp_idx
= rxr
->bnapi
->index
;
3521 u32 cmpl_ring_id
= bp
->grp_info
[grp_idx
].cp_fw_ring_id
;
3523 if (ring
->fw_ring_id
!= INVALID_HW_RING_ID
) {
3524 hwrm_ring_free_send_msg(bp
, ring
,
3525 RING_FREE_REQ_RING_TYPE_RX
,
3526 close_path
? cmpl_ring_id
:
3527 INVALID_HW_RING_ID
);
3528 ring
->fw_ring_id
= INVALID_HW_RING_ID
;
3529 bp
->grp_info
[grp_idx
].rx_fw_ring_id
=
3534 for (i
= 0; i
< bp
->rx_nr_rings
; i
++) {
3535 struct bnxt_rx_ring_info
*rxr
= &bp
->rx_ring
[i
];
3536 struct bnxt_ring_struct
*ring
= &rxr
->rx_agg_ring_struct
;
3537 u32 grp_idx
= rxr
->bnapi
->index
;
3538 u32 cmpl_ring_id
= bp
->grp_info
[grp_idx
].cp_fw_ring_id
;
3540 if (ring
->fw_ring_id
!= INVALID_HW_RING_ID
) {
3541 hwrm_ring_free_send_msg(bp
, ring
,
3542 RING_FREE_REQ_RING_TYPE_RX
,
3543 close_path
? cmpl_ring_id
:
3544 INVALID_HW_RING_ID
);
3545 ring
->fw_ring_id
= INVALID_HW_RING_ID
;
3546 bp
->grp_info
[grp_idx
].agg_fw_ring_id
=
3551 for (i
= 0; i
< bp
->cp_nr_rings
; i
++) {
3552 struct bnxt_napi
*bnapi
= bp
->bnapi
[i
];
3553 struct bnxt_cp_ring_info
*cpr
= &bnapi
->cp_ring
;
3554 struct bnxt_ring_struct
*ring
= &cpr
->cp_ring_struct
;
3556 if (ring
->fw_ring_id
!= INVALID_HW_RING_ID
) {
3557 hwrm_ring_free_send_msg(bp
, ring
,
3558 RING_FREE_REQ_RING_TYPE_CMPL
,
3559 INVALID_HW_RING_ID
);
3560 ring
->fw_ring_id
= INVALID_HW_RING_ID
;
3561 bp
->grp_info
[i
].cp_fw_ring_id
= INVALID_HW_RING_ID
;
3566 static void bnxt_hwrm_set_coal_params(struct bnxt
*bp
, u32 max_bufs
,
3567 u32 buf_tmrs
, u16 flags
,
3568 struct hwrm_ring_cmpl_ring_cfg_aggint_params_input
*req
)
3570 req
->flags
= cpu_to_le16(flags
);
3571 req
->num_cmpl_dma_aggr
= cpu_to_le16((u16
)max_bufs
);
3572 req
->num_cmpl_dma_aggr_during_int
= cpu_to_le16(max_bufs
>> 16);
3573 req
->cmpl_aggr_dma_tmr
= cpu_to_le16((u16
)buf_tmrs
);
3574 req
->cmpl_aggr_dma_tmr_during_int
= cpu_to_le16(buf_tmrs
>> 16);
3575 /* Minimum time between 2 interrupts set to buf_tmr x 2 */
3576 req
->int_lat_tmr_min
= cpu_to_le16((u16
)buf_tmrs
* 2);
3577 req
->int_lat_tmr_max
= cpu_to_le16((u16
)buf_tmrs
* 4);
3578 req
->num_cmpl_aggr_int
= cpu_to_le16((u16
)max_bufs
* 4);
3581 int bnxt_hwrm_set_coal(struct bnxt
*bp
)
3584 struct hwrm_ring_cmpl_ring_cfg_aggint_params_input req_rx
= {0},
3586 u16 max_buf
, max_buf_irq
;
3587 u16 buf_tmr
, buf_tmr_irq
;
3590 bnxt_hwrm_cmd_hdr_init(bp
, &req_rx
,
3591 HWRM_RING_CMPL_RING_CFG_AGGINT_PARAMS
, -1, -1);
3592 bnxt_hwrm_cmd_hdr_init(bp
, &req_tx
,
3593 HWRM_RING_CMPL_RING_CFG_AGGINT_PARAMS
, -1, -1);
3595 /* Each rx completion (2 records) should be DMAed immediately.
3596 * DMA 1/4 of the completion buffers at a time.
3598 max_buf
= min_t(u16
, bp
->rx_coal_bufs
/ 4, 2);
3599 /* max_buf must not be zero */
3600 max_buf
= clamp_t(u16
, max_buf
, 1, 63);
3601 max_buf_irq
= clamp_t(u16
, bp
->rx_coal_bufs_irq
, 1, 63);
3602 buf_tmr
= BNXT_USEC_TO_COAL_TIMER(bp
->rx_coal_ticks
);
3603 /* buf timer set to 1/4 of interrupt timer */
3604 buf_tmr
= max_t(u16
, buf_tmr
/ 4, 1);
3605 buf_tmr_irq
= BNXT_USEC_TO_COAL_TIMER(bp
->rx_coal_ticks_irq
);
3606 buf_tmr_irq
= max_t(u16
, buf_tmr_irq
, 1);
3608 flags
= RING_CMPL_RING_CFG_AGGINT_PARAMS_REQ_FLAGS_TIMER_RESET
;
3610 /* RING_IDLE generates more IRQs for lower latency. Enable it only
3611 * if coal_ticks is less than 25 us.
3613 if (bp
->rx_coal_ticks
< 25)
3614 flags
|= RING_CMPL_RING_CFG_AGGINT_PARAMS_REQ_FLAGS_RING_IDLE
;
3616 bnxt_hwrm_set_coal_params(bp
, max_buf_irq
<< 16 | max_buf
,
3617 buf_tmr_irq
<< 16 | buf_tmr
, flags
, &req_rx
);
3619 /* max_buf must not be zero */
3620 max_buf
= clamp_t(u16
, bp
->tx_coal_bufs
, 1, 63);
3621 max_buf_irq
= clamp_t(u16
, bp
->tx_coal_bufs_irq
, 1, 63);
3622 buf_tmr
= BNXT_USEC_TO_COAL_TIMER(bp
->tx_coal_ticks
);
3623 /* buf timer set to 1/4 of interrupt timer */
3624 buf_tmr
= max_t(u16
, buf_tmr
/ 4, 1);
3625 buf_tmr_irq
= BNXT_USEC_TO_COAL_TIMER(bp
->tx_coal_ticks_irq
);
3626 buf_tmr_irq
= max_t(u16
, buf_tmr_irq
, 1);
3628 flags
= RING_CMPL_RING_CFG_AGGINT_PARAMS_REQ_FLAGS_TIMER_RESET
;
3629 bnxt_hwrm_set_coal_params(bp
, max_buf_irq
<< 16 | max_buf
,
3630 buf_tmr_irq
<< 16 | buf_tmr
, flags
, &req_tx
);
3632 mutex_lock(&bp
->hwrm_cmd_lock
);
3633 for (i
= 0; i
< bp
->cp_nr_rings
; i
++) {
3634 struct bnxt_napi
*bnapi
= bp
->bnapi
[i
];
3637 if (!bnapi
->rx_ring
)
3639 req
->ring_id
= cpu_to_le16(bp
->grp_info
[i
].cp_fw_ring_id
);
3641 rc
= _hwrm_send_message(bp
, req
, sizeof(*req
),
3646 mutex_unlock(&bp
->hwrm_cmd_lock
);
3650 static int bnxt_hwrm_stat_ctx_free(struct bnxt
*bp
)
3653 struct hwrm_stat_ctx_free_input req
= {0};
3658 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_STAT_CTX_FREE
, -1, -1);
3660 mutex_lock(&bp
->hwrm_cmd_lock
);
3661 for (i
= 0; i
< bp
->cp_nr_rings
; i
++) {
3662 struct bnxt_napi
*bnapi
= bp
->bnapi
[i
];
3663 struct bnxt_cp_ring_info
*cpr
= &bnapi
->cp_ring
;
3665 if (cpr
->hw_stats_ctx_id
!= INVALID_STATS_CTX_ID
) {
3666 req
.stat_ctx_id
= cpu_to_le32(cpr
->hw_stats_ctx_id
);
3668 rc
= _hwrm_send_message(bp
, &req
, sizeof(req
),
3673 cpr
->hw_stats_ctx_id
= INVALID_STATS_CTX_ID
;
3676 mutex_unlock(&bp
->hwrm_cmd_lock
);
3680 static int bnxt_hwrm_stat_ctx_alloc(struct bnxt
*bp
)
3683 struct hwrm_stat_ctx_alloc_input req
= {0};
3684 struct hwrm_stat_ctx_alloc_output
*resp
= bp
->hwrm_cmd_resp_addr
;
3686 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_STAT_CTX_ALLOC
, -1, -1);
3688 req
.update_period_ms
= cpu_to_le32(1000);
3690 mutex_lock(&bp
->hwrm_cmd_lock
);
3691 for (i
= 0; i
< bp
->cp_nr_rings
; i
++) {
3692 struct bnxt_napi
*bnapi
= bp
->bnapi
[i
];
3693 struct bnxt_cp_ring_info
*cpr
= &bnapi
->cp_ring
;
3695 req
.stats_dma_addr
= cpu_to_le64(cpr
->hw_stats_map
);
3697 rc
= _hwrm_send_message(bp
, &req
, sizeof(req
),
3702 cpr
->hw_stats_ctx_id
= le32_to_cpu(resp
->stat_ctx_id
);
3704 bp
->grp_info
[i
].fw_stats_ctx
= cpr
->hw_stats_ctx_id
;
3706 mutex_unlock(&bp
->hwrm_cmd_lock
);
3710 int bnxt_hwrm_func_qcaps(struct bnxt
*bp
)
3713 struct hwrm_func_qcaps_input req
= {0};
3714 struct hwrm_func_qcaps_output
*resp
= bp
->hwrm_cmd_resp_addr
;
3716 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_FUNC_QCAPS
, -1, -1);
3717 req
.fid
= cpu_to_le16(0xffff);
3719 mutex_lock(&bp
->hwrm_cmd_lock
);
3720 rc
= _hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
3722 goto hwrm_func_qcaps_exit
;
3725 struct bnxt_pf_info
*pf
= &bp
->pf
;
3727 pf
->fw_fid
= le16_to_cpu(resp
->fid
);
3728 pf
->port_id
= le16_to_cpu(resp
->port_id
);
3729 memcpy(pf
->mac_addr
, resp
->mac_address
, ETH_ALEN
);
3730 memcpy(bp
->dev
->dev_addr
, pf
->mac_addr
, ETH_ALEN
);
3731 pf
->max_rsscos_ctxs
= le16_to_cpu(resp
->max_rsscos_ctx
);
3732 pf
->max_cp_rings
= le16_to_cpu(resp
->max_cmpl_rings
);
3733 pf
->max_tx_rings
= le16_to_cpu(resp
->max_tx_rings
);
3734 pf
->max_rx_rings
= le16_to_cpu(resp
->max_rx_rings
);
3735 pf
->max_hw_ring_grps
= le32_to_cpu(resp
->max_hw_ring_grps
);
3736 if (!pf
->max_hw_ring_grps
)
3737 pf
->max_hw_ring_grps
= pf
->max_tx_rings
;
3738 pf
->max_l2_ctxs
= le16_to_cpu(resp
->max_l2_ctxs
);
3739 pf
->max_vnics
= le16_to_cpu(resp
->max_vnics
);
3740 pf
->max_stat_ctxs
= le16_to_cpu(resp
->max_stat_ctx
);
3741 pf
->first_vf_id
= le16_to_cpu(resp
->first_vf_id
);
3742 pf
->max_vfs
= le16_to_cpu(resp
->max_vfs
);
3743 pf
->max_encap_records
= le32_to_cpu(resp
->max_encap_records
);
3744 pf
->max_decap_records
= le32_to_cpu(resp
->max_decap_records
);
3745 pf
->max_tx_em_flows
= le32_to_cpu(resp
->max_tx_em_flows
);
3746 pf
->max_tx_wm_flows
= le32_to_cpu(resp
->max_tx_wm_flows
);
3747 pf
->max_rx_em_flows
= le32_to_cpu(resp
->max_rx_em_flows
);
3748 pf
->max_rx_wm_flows
= le32_to_cpu(resp
->max_rx_wm_flows
);
3750 #ifdef CONFIG_BNXT_SRIOV
3751 struct bnxt_vf_info
*vf
= &bp
->vf
;
3753 vf
->fw_fid
= le16_to_cpu(resp
->fid
);
3754 memcpy(vf
->mac_addr
, resp
->mac_address
, ETH_ALEN
);
3755 if (is_valid_ether_addr(vf
->mac_addr
))
3756 /* overwrite netdev dev_adr with admin VF MAC */
3757 memcpy(bp
->dev
->dev_addr
, vf
->mac_addr
, ETH_ALEN
);
3759 random_ether_addr(bp
->dev
->dev_addr
);
3761 vf
->max_rsscos_ctxs
= le16_to_cpu(resp
->max_rsscos_ctx
);
3762 vf
->max_cp_rings
= le16_to_cpu(resp
->max_cmpl_rings
);
3763 vf
->max_tx_rings
= le16_to_cpu(resp
->max_tx_rings
);
3764 vf
->max_rx_rings
= le16_to_cpu(resp
->max_rx_rings
);
3765 vf
->max_hw_ring_grps
= le32_to_cpu(resp
->max_hw_ring_grps
);
3766 if (!vf
->max_hw_ring_grps
)
3767 vf
->max_hw_ring_grps
= vf
->max_tx_rings
;
3768 vf
->max_l2_ctxs
= le16_to_cpu(resp
->max_l2_ctxs
);
3769 vf
->max_vnics
= le16_to_cpu(resp
->max_vnics
);
3770 vf
->max_stat_ctxs
= le16_to_cpu(resp
->max_stat_ctx
);
3774 bp
->tx_push_thresh
= 0;
3776 cpu_to_le32(FUNC_QCAPS_RESP_FLAGS_PUSH_MODE_SUPPORTED
))
3777 bp
->tx_push_thresh
= BNXT_TX_PUSH_THRESH
;
3779 hwrm_func_qcaps_exit
:
3780 mutex_unlock(&bp
->hwrm_cmd_lock
);
3784 static int bnxt_hwrm_func_reset(struct bnxt
*bp
)
3786 struct hwrm_func_reset_input req
= {0};
3788 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_FUNC_RESET
, -1, -1);
3791 return hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_RESET_TIMEOUT
);
3794 static int bnxt_hwrm_queue_qportcfg(struct bnxt
*bp
)
3797 struct hwrm_queue_qportcfg_input req
= {0};
3798 struct hwrm_queue_qportcfg_output
*resp
= bp
->hwrm_cmd_resp_addr
;
3801 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_QUEUE_QPORTCFG
, -1, -1);
3803 mutex_lock(&bp
->hwrm_cmd_lock
);
3804 rc
= _hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
3808 if (!resp
->max_configurable_queues
) {
3812 bp
->max_tc
= resp
->max_configurable_queues
;
3813 if (bp
->max_tc
> BNXT_MAX_QUEUE
)
3814 bp
->max_tc
= BNXT_MAX_QUEUE
;
3816 qptr
= &resp
->queue_id0
;
3817 for (i
= 0; i
< bp
->max_tc
; i
++) {
3818 bp
->q_info
[i
].queue_id
= *qptr
++;
3819 bp
->q_info
[i
].queue_profile
= *qptr
++;
3823 mutex_unlock(&bp
->hwrm_cmd_lock
);
3827 static int bnxt_hwrm_ver_get(struct bnxt
*bp
)
3830 struct hwrm_ver_get_input req
= {0};
3831 struct hwrm_ver_get_output
*resp
= bp
->hwrm_cmd_resp_addr
;
3833 bp
->hwrm_max_req_len
= HWRM_MAX_REQ_LEN
;
3834 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_VER_GET
, -1, -1);
3835 req
.hwrm_intf_maj
= HWRM_VERSION_MAJOR
;
3836 req
.hwrm_intf_min
= HWRM_VERSION_MINOR
;
3837 req
.hwrm_intf_upd
= HWRM_VERSION_UPDATE
;
3838 mutex_lock(&bp
->hwrm_cmd_lock
);
3839 rc
= _hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
3841 goto hwrm_ver_get_exit
;
3843 memcpy(&bp
->ver_resp
, resp
, sizeof(struct hwrm_ver_get_output
));
3845 bp
->hwrm_spec_code
= resp
->hwrm_intf_maj
<< 16 |
3846 resp
->hwrm_intf_min
<< 8 | resp
->hwrm_intf_upd
;
3847 if (resp
->hwrm_intf_maj
< 1) {
3848 netdev_warn(bp
->dev
, "HWRM interface %d.%d.%d is older than 1.0.0.\n",
3849 resp
->hwrm_intf_maj
, resp
->hwrm_intf_min
,
3850 resp
->hwrm_intf_upd
);
3851 netdev_warn(bp
->dev
, "Please update firmware with HWRM interface 1.0.0 or newer.\n");
3853 snprintf(bp
->fw_ver_str
, BC_HWRM_STR_LEN
, "%d.%d.%d/%d.%d.%d",
3854 resp
->hwrm_fw_maj
, resp
->hwrm_fw_min
, resp
->hwrm_fw_bld
,
3855 resp
->hwrm_intf_maj
, resp
->hwrm_intf_min
, resp
->hwrm_intf_upd
);
3857 bp
->hwrm_cmd_timeout
= le16_to_cpu(resp
->def_req_timeout
);
3858 if (!bp
->hwrm_cmd_timeout
)
3859 bp
->hwrm_cmd_timeout
= DFLT_HWRM_CMD_TIMEOUT
;
3861 if (resp
->hwrm_intf_maj
>= 1)
3862 bp
->hwrm_max_req_len
= le16_to_cpu(resp
->max_req_win_len
);
3865 mutex_unlock(&bp
->hwrm_cmd_lock
);
3869 static int bnxt_hwrm_port_qstats(struct bnxt
*bp
)
3872 struct bnxt_pf_info
*pf
= &bp
->pf
;
3873 struct hwrm_port_qstats_input req
= {0};
3875 if (!(bp
->flags
& BNXT_FLAG_PORT_STATS
))
3878 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_PORT_QSTATS
, -1, -1);
3879 req
.port_id
= cpu_to_le16(pf
->port_id
);
3880 req
.tx_stat_host_addr
= cpu_to_le64(bp
->hw_tx_port_stats_map
);
3881 req
.rx_stat_host_addr
= cpu_to_le64(bp
->hw_rx_port_stats_map
);
3882 rc
= hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
3886 static void bnxt_hwrm_free_tunnel_ports(struct bnxt
*bp
)
3888 if (bp
->vxlan_port_cnt
) {
3889 bnxt_hwrm_tunnel_dst_port_free(
3890 bp
, TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_VXLAN
);
3892 bp
->vxlan_port_cnt
= 0;
3893 if (bp
->nge_port_cnt
) {
3894 bnxt_hwrm_tunnel_dst_port_free(
3895 bp
, TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_GENEVE
);
3897 bp
->nge_port_cnt
= 0;
3900 static int bnxt_set_tpa(struct bnxt
*bp
, bool set_tpa
)
3906 tpa_flags
= bp
->flags
& BNXT_FLAG_TPA
;
3907 for (i
= 0; i
< bp
->nr_vnics
; i
++) {
3908 rc
= bnxt_hwrm_vnic_set_tpa(bp
, i
, tpa_flags
);
3910 netdev_err(bp
->dev
, "hwrm vnic set tpa failure rc for vnic %d: %x\n",
3918 static void bnxt_hwrm_clear_vnic_rss(struct bnxt
*bp
)
3922 for (i
= 0; i
< bp
->nr_vnics
; i
++)
3923 bnxt_hwrm_vnic_set_rss(bp
, i
, false);
3926 static void bnxt_hwrm_resource_free(struct bnxt
*bp
, bool close_path
,
3929 if (bp
->vnic_info
) {
3930 bnxt_hwrm_clear_vnic_filter(bp
);
3931 /* clear all RSS setting before free vnic ctx */
3932 bnxt_hwrm_clear_vnic_rss(bp
);
3933 bnxt_hwrm_vnic_ctx_free(bp
);
3934 /* before free the vnic, undo the vnic tpa settings */
3935 if (bp
->flags
& BNXT_FLAG_TPA
)
3936 bnxt_set_tpa(bp
, false);
3937 bnxt_hwrm_vnic_free(bp
);
3939 bnxt_hwrm_ring_free(bp
, close_path
);
3940 bnxt_hwrm_ring_grp_free(bp
);
3942 bnxt_hwrm_stat_ctx_free(bp
);
3943 bnxt_hwrm_free_tunnel_ports(bp
);
3947 static int bnxt_setup_vnic(struct bnxt
*bp
, u16 vnic_id
)
3951 /* allocate context for vnic */
3952 rc
= bnxt_hwrm_vnic_ctx_alloc(bp
, vnic_id
);
3954 netdev_err(bp
->dev
, "hwrm vnic %d alloc failure rc: %x\n",
3956 goto vnic_setup_err
;
3958 bp
->rsscos_nr_ctxs
++;
3960 /* configure default vnic, ring grp */
3961 rc
= bnxt_hwrm_vnic_cfg(bp
, vnic_id
);
3963 netdev_err(bp
->dev
, "hwrm vnic %d cfg failure rc: %x\n",
3965 goto vnic_setup_err
;
3968 /* Enable RSS hashing on vnic */
3969 rc
= bnxt_hwrm_vnic_set_rss(bp
, vnic_id
, true);
3971 netdev_err(bp
->dev
, "hwrm vnic %d set rss failure rc: %x\n",
3973 goto vnic_setup_err
;
3976 if (bp
->flags
& BNXT_FLAG_AGG_RINGS
) {
3977 rc
= bnxt_hwrm_vnic_set_hds(bp
, vnic_id
);
3979 netdev_err(bp
->dev
, "hwrm vnic %d set hds failure rc: %x\n",
3988 static int bnxt_alloc_rfs_vnics(struct bnxt
*bp
)
3990 #ifdef CONFIG_RFS_ACCEL
3993 for (i
= 0; i
< bp
->rx_nr_rings
; i
++) {
3994 u16 vnic_id
= i
+ 1;
3997 if (vnic_id
>= bp
->nr_vnics
)
4000 bp
->vnic_info
[vnic_id
].flags
|= BNXT_VNIC_RFS_FLAG
;
4001 rc
= bnxt_hwrm_vnic_alloc(bp
, vnic_id
, ring_id
, 1);
4003 netdev_err(bp
->dev
, "hwrm vnic %d alloc failure rc: %x\n",
4007 rc
= bnxt_setup_vnic(bp
, vnic_id
);
4017 static int bnxt_cfg_rx_mode(struct bnxt
*);
4019 static int bnxt_init_chip(struct bnxt
*bp
, bool irq_re_init
)
4024 rc
= bnxt_hwrm_stat_ctx_alloc(bp
);
4026 netdev_err(bp
->dev
, "hwrm stat ctx alloc failure rc: %x\n",
4032 rc
= bnxt_hwrm_ring_alloc(bp
);
4034 netdev_err(bp
->dev
, "hwrm ring alloc failure rc: %x\n", rc
);
4038 rc
= bnxt_hwrm_ring_grp_alloc(bp
);
4040 netdev_err(bp
->dev
, "hwrm_ring_grp alloc failure: %x\n", rc
);
4044 /* default vnic 0 */
4045 rc
= bnxt_hwrm_vnic_alloc(bp
, 0, 0, bp
->rx_nr_rings
);
4047 netdev_err(bp
->dev
, "hwrm vnic alloc failure rc: %x\n", rc
);
4051 rc
= bnxt_setup_vnic(bp
, 0);
4055 if (bp
->flags
& BNXT_FLAG_RFS
) {
4056 rc
= bnxt_alloc_rfs_vnics(bp
);
4061 if (bp
->flags
& BNXT_FLAG_TPA
) {
4062 rc
= bnxt_set_tpa(bp
, true);
4068 bnxt_update_vf_mac(bp
);
4070 /* Filter for default vnic 0 */
4071 rc
= bnxt_hwrm_set_vnic_filter(bp
, 0, 0, bp
->dev
->dev_addr
);
4073 netdev_err(bp
->dev
, "HWRM vnic filter failure rc: %x\n", rc
);
4076 bp
->vnic_info
[0].uc_filter_count
= 1;
4078 bp
->vnic_info
[0].rx_mask
= CFA_L2_SET_RX_MASK_REQ_MASK_BCAST
;
4080 if ((bp
->dev
->flags
& IFF_PROMISC
) && BNXT_PF(bp
))
4081 bp
->vnic_info
[0].rx_mask
|=
4082 CFA_L2_SET_RX_MASK_REQ_MASK_PROMISCUOUS
;
4084 rc
= bnxt_cfg_rx_mode(bp
);
4088 rc
= bnxt_hwrm_set_coal(bp
);
4090 netdev_warn(bp
->dev
, "HWRM set coalescing failure rc: %x\n",
4096 bnxt_hwrm_resource_free(bp
, 0, true);
4101 static int bnxt_shutdown_nic(struct bnxt
*bp
, bool irq_re_init
)
4103 bnxt_hwrm_resource_free(bp
, 1, irq_re_init
);
4107 static int bnxt_init_nic(struct bnxt
*bp
, bool irq_re_init
)
4109 bnxt_init_rx_rings(bp
);
4110 bnxt_init_tx_rings(bp
);
4111 bnxt_init_ring_grps(bp
, irq_re_init
);
4112 bnxt_init_vnics(bp
);
4114 return bnxt_init_chip(bp
, irq_re_init
);
4117 static void bnxt_disable_int(struct bnxt
*bp
)
4124 for (i
= 0; i
< bp
->cp_nr_rings
; i
++) {
4125 struct bnxt_napi
*bnapi
= bp
->bnapi
[i
];
4126 struct bnxt_cp_ring_info
*cpr
= &bnapi
->cp_ring
;
4128 BNXT_CP_DB(cpr
->cp_doorbell
, cpr
->cp_raw_cons
);
4132 static void bnxt_enable_int(struct bnxt
*bp
)
4136 atomic_set(&bp
->intr_sem
, 0);
4137 for (i
= 0; i
< bp
->cp_nr_rings
; i
++) {
4138 struct bnxt_napi
*bnapi
= bp
->bnapi
[i
];
4139 struct bnxt_cp_ring_info
*cpr
= &bnapi
->cp_ring
;
4141 BNXT_CP_DB_REARM(cpr
->cp_doorbell
, cpr
->cp_raw_cons
);
4145 static int bnxt_set_real_num_queues(struct bnxt
*bp
)
4148 struct net_device
*dev
= bp
->dev
;
4150 rc
= netif_set_real_num_tx_queues(dev
, bp
->tx_nr_rings
);
4154 rc
= netif_set_real_num_rx_queues(dev
, bp
->rx_nr_rings
);
4158 #ifdef CONFIG_RFS_ACCEL
4159 if (bp
->flags
& BNXT_FLAG_RFS
)
4160 dev
->rx_cpu_rmap
= alloc_irq_cpu_rmap(bp
->rx_nr_rings
);
4166 static int bnxt_trim_rings(struct bnxt
*bp
, int *rx
, int *tx
, int max
,
4169 int _rx
= *rx
, _tx
= *tx
;
4172 *rx
= min_t(int, _rx
, max
);
4173 *tx
= min_t(int, _tx
, max
);
4178 while (_rx
+ _tx
> max
) {
4179 if (_rx
> _tx
&& _rx
> 1)
4190 static int bnxt_setup_msix(struct bnxt
*bp
)
4192 struct msix_entry
*msix_ent
;
4193 struct net_device
*dev
= bp
->dev
;
4194 int i
, total_vecs
, rc
= 0, min
= 1;
4195 const int len
= sizeof(bp
->irq_tbl
[0].name
);
4197 bp
->flags
&= ~BNXT_FLAG_USING_MSIX
;
4198 total_vecs
= bp
->cp_nr_rings
;
4200 msix_ent
= kcalloc(total_vecs
, sizeof(struct msix_entry
), GFP_KERNEL
);
4204 for (i
= 0; i
< total_vecs
; i
++) {
4205 msix_ent
[i
].entry
= i
;
4206 msix_ent
[i
].vector
= 0;
4209 if (!(bp
->flags
& BNXT_FLAG_SHARED_RINGS
))
4212 total_vecs
= pci_enable_msix_range(bp
->pdev
, msix_ent
, min
, total_vecs
);
4213 if (total_vecs
< 0) {
4215 goto msix_setup_exit
;
4218 bp
->irq_tbl
= kcalloc(total_vecs
, sizeof(struct bnxt_irq
), GFP_KERNEL
);
4222 /* Trim rings based upon num of vectors allocated */
4223 rc
= bnxt_trim_rings(bp
, &bp
->rx_nr_rings
, &bp
->tx_nr_rings
,
4224 total_vecs
, min
== 1);
4226 goto msix_setup_exit
;
4228 bp
->tx_nr_rings_per_tc
= bp
->tx_nr_rings
;
4229 tcs
= netdev_get_num_tc(dev
);
4231 bp
->tx_nr_rings_per_tc
= bp
->tx_nr_rings
/ tcs
;
4232 if (bp
->tx_nr_rings_per_tc
== 0) {
4233 netdev_reset_tc(dev
);
4234 bp
->tx_nr_rings_per_tc
= bp
->tx_nr_rings
;
4238 bp
->tx_nr_rings
= bp
->tx_nr_rings_per_tc
* tcs
;
4239 for (i
= 0; i
< tcs
; i
++) {
4240 count
= bp
->tx_nr_rings_per_tc
;
4242 netdev_set_tc_queue(dev
, i
, count
, off
);
4246 bp
->cp_nr_rings
= total_vecs
;
4248 for (i
= 0; i
< bp
->cp_nr_rings
; i
++) {
4251 bp
->irq_tbl
[i
].vector
= msix_ent
[i
].vector
;
4252 if (bp
->flags
& BNXT_FLAG_SHARED_RINGS
)
4254 else if (i
< bp
->rx_nr_rings
)
4259 snprintf(bp
->irq_tbl
[i
].name
, len
,
4260 "%s-%s-%d", dev
->name
, attr
, i
);
4261 bp
->irq_tbl
[i
].handler
= bnxt_msix
;
4263 rc
= bnxt_set_real_num_queues(bp
);
4265 goto msix_setup_exit
;
4268 goto msix_setup_exit
;
4270 bp
->flags
|= BNXT_FLAG_USING_MSIX
;
4275 netdev_err(bp
->dev
, "bnxt_setup_msix err: %x\n", rc
);
4276 pci_disable_msix(bp
->pdev
);
4281 static int bnxt_setup_inta(struct bnxt
*bp
)
4284 const int len
= sizeof(bp
->irq_tbl
[0].name
);
4286 if (netdev_get_num_tc(bp
->dev
))
4287 netdev_reset_tc(bp
->dev
);
4289 bp
->irq_tbl
= kcalloc(1, sizeof(struct bnxt_irq
), GFP_KERNEL
);
4294 bp
->rx_nr_rings
= 1;
4295 bp
->tx_nr_rings
= 1;
4296 bp
->cp_nr_rings
= 1;
4297 bp
->tx_nr_rings_per_tc
= bp
->tx_nr_rings
;
4298 bp
->flags
|= BNXT_FLAG_SHARED_RINGS
;
4299 bp
->irq_tbl
[0].vector
= bp
->pdev
->irq
;
4300 snprintf(bp
->irq_tbl
[0].name
, len
,
4301 "%s-%s-%d", bp
->dev
->name
, "TxRx", 0);
4302 bp
->irq_tbl
[0].handler
= bnxt_inta
;
4303 rc
= bnxt_set_real_num_queues(bp
);
4307 static int bnxt_setup_int_mode(struct bnxt
*bp
)
4311 if (bp
->flags
& BNXT_FLAG_MSIX_CAP
)
4312 rc
= bnxt_setup_msix(bp
);
4314 if (!(bp
->flags
& BNXT_FLAG_USING_MSIX
)) {
4315 /* fallback to INTA */
4316 rc
= bnxt_setup_inta(bp
);
4321 static void bnxt_free_irq(struct bnxt
*bp
)
4323 struct bnxt_irq
*irq
;
4326 #ifdef CONFIG_RFS_ACCEL
4327 free_irq_cpu_rmap(bp
->dev
->rx_cpu_rmap
);
4328 bp
->dev
->rx_cpu_rmap
= NULL
;
4333 for (i
= 0; i
< bp
->cp_nr_rings
; i
++) {
4334 irq
= &bp
->irq_tbl
[i
];
4336 free_irq(irq
->vector
, bp
->bnapi
[i
]);
4339 if (bp
->flags
& BNXT_FLAG_USING_MSIX
)
4340 pci_disable_msix(bp
->pdev
);
4345 static int bnxt_request_irq(struct bnxt
*bp
)
4348 unsigned long flags
= 0;
4349 #ifdef CONFIG_RFS_ACCEL
4350 struct cpu_rmap
*rmap
= bp
->dev
->rx_cpu_rmap
;
4353 if (!(bp
->flags
& BNXT_FLAG_USING_MSIX
))
4354 flags
= IRQF_SHARED
;
4356 for (i
= 0, j
= 0; i
< bp
->cp_nr_rings
; i
++) {
4357 struct bnxt_irq
*irq
= &bp
->irq_tbl
[i
];
4358 #ifdef CONFIG_RFS_ACCEL
4359 if (rmap
&& bp
->bnapi
[i
]->rx_ring
) {
4360 rc
= irq_cpu_rmap_add(rmap
, irq
->vector
);
4362 netdev_warn(bp
->dev
, "failed adding irq rmap for ring %d\n",
4367 rc
= request_irq(irq
->vector
, irq
->handler
, flags
, irq
->name
,
4377 static void bnxt_del_napi(struct bnxt
*bp
)
4384 for (i
= 0; i
< bp
->cp_nr_rings
; i
++) {
4385 struct bnxt_napi
*bnapi
= bp
->bnapi
[i
];
4387 napi_hash_del(&bnapi
->napi
);
4388 netif_napi_del(&bnapi
->napi
);
4392 static void bnxt_init_napi(struct bnxt
*bp
)
4395 struct bnxt_napi
*bnapi
;
4397 if (bp
->flags
& BNXT_FLAG_USING_MSIX
) {
4398 for (i
= 0; i
< bp
->cp_nr_rings
; i
++) {
4399 bnapi
= bp
->bnapi
[i
];
4400 netif_napi_add(bp
->dev
, &bnapi
->napi
,
4404 bnapi
= bp
->bnapi
[0];
4405 netif_napi_add(bp
->dev
, &bnapi
->napi
, bnxt_poll
, 64);
4409 static void bnxt_disable_napi(struct bnxt
*bp
)
4416 for (i
= 0; i
< bp
->cp_nr_rings
; i
++) {
4417 napi_disable(&bp
->bnapi
[i
]->napi
);
4418 bnxt_disable_poll(bp
->bnapi
[i
]);
4422 static void bnxt_enable_napi(struct bnxt
*bp
)
4426 for (i
= 0; i
< bp
->cp_nr_rings
; i
++) {
4427 bnxt_enable_poll(bp
->bnapi
[i
]);
4428 napi_enable(&bp
->bnapi
[i
]->napi
);
4432 static void bnxt_tx_disable(struct bnxt
*bp
)
4435 struct bnxt_tx_ring_info
*txr
;
4436 struct netdev_queue
*txq
;
4439 for (i
= 0; i
< bp
->tx_nr_rings
; i
++) {
4440 txr
= &bp
->tx_ring
[i
];
4441 txq
= netdev_get_tx_queue(bp
->dev
, i
);
4442 __netif_tx_lock(txq
, smp_processor_id());
4443 txr
->dev_state
= BNXT_DEV_STATE_CLOSING
;
4444 __netif_tx_unlock(txq
);
4447 /* Stop all TX queues */
4448 netif_tx_disable(bp
->dev
);
4449 netif_carrier_off(bp
->dev
);
4452 static void bnxt_tx_enable(struct bnxt
*bp
)
4455 struct bnxt_tx_ring_info
*txr
;
4456 struct netdev_queue
*txq
;
4458 for (i
= 0; i
< bp
->tx_nr_rings
; i
++) {
4459 txr
= &bp
->tx_ring
[i
];
4460 txq
= netdev_get_tx_queue(bp
->dev
, i
);
4463 netif_tx_wake_all_queues(bp
->dev
);
4464 if (bp
->link_info
.link_up
)
4465 netif_carrier_on(bp
->dev
);
4468 static void bnxt_report_link(struct bnxt
*bp
)
4470 if (bp
->link_info
.link_up
) {
4472 const char *flow_ctrl
;
4475 netif_carrier_on(bp
->dev
);
4476 if (bp
->link_info
.duplex
== BNXT_LINK_DUPLEX_FULL
)
4480 if (bp
->link_info
.pause
== BNXT_LINK_PAUSE_BOTH
)
4481 flow_ctrl
= "ON - receive & transmit";
4482 else if (bp
->link_info
.pause
== BNXT_LINK_PAUSE_TX
)
4483 flow_ctrl
= "ON - transmit";
4484 else if (bp
->link_info
.pause
== BNXT_LINK_PAUSE_RX
)
4485 flow_ctrl
= "ON - receive";
4488 speed
= bnxt_fw_to_ethtool_speed(bp
->link_info
.link_speed
);
4489 netdev_info(bp
->dev
, "NIC Link is Up, %d Mbps %s duplex, Flow control: %s\n",
4490 speed
, duplex
, flow_ctrl
);
4492 netif_carrier_off(bp
->dev
);
4493 netdev_err(bp
->dev
, "NIC Link is Down\n");
4497 static int bnxt_update_link(struct bnxt
*bp
, bool chng_link_state
)
4500 struct bnxt_link_info
*link_info
= &bp
->link_info
;
4501 struct hwrm_port_phy_qcfg_input req
= {0};
4502 struct hwrm_port_phy_qcfg_output
*resp
= bp
->hwrm_cmd_resp_addr
;
4503 u8 link_up
= link_info
->link_up
;
4505 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_PORT_PHY_QCFG
, -1, -1);
4507 mutex_lock(&bp
->hwrm_cmd_lock
);
4508 rc
= _hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
4510 mutex_unlock(&bp
->hwrm_cmd_lock
);
4514 memcpy(&link_info
->phy_qcfg_resp
, resp
, sizeof(*resp
));
4515 link_info
->phy_link_status
= resp
->link
;
4516 link_info
->duplex
= resp
->duplex
;
4517 link_info
->pause
= resp
->pause
;
4518 link_info
->auto_mode
= resp
->auto_mode
;
4519 link_info
->auto_pause_setting
= resp
->auto_pause
;
4520 link_info
->lp_pause
= resp
->link_partner_adv_pause
;
4521 link_info
->force_pause_setting
= resp
->force_pause
;
4522 link_info
->duplex_setting
= resp
->duplex
;
4523 if (link_info
->phy_link_status
== BNXT_LINK_LINK
)
4524 link_info
->link_speed
= le16_to_cpu(resp
->link_speed
);
4526 link_info
->link_speed
= 0;
4527 link_info
->force_link_speed
= le16_to_cpu(resp
->force_link_speed
);
4528 link_info
->support_speeds
= le16_to_cpu(resp
->support_speeds
);
4529 link_info
->auto_link_speeds
= le16_to_cpu(resp
->auto_link_speed_mask
);
4530 link_info
->lp_auto_link_speeds
=
4531 le16_to_cpu(resp
->link_partner_adv_speeds
);
4532 link_info
->preemphasis
= le32_to_cpu(resp
->preemphasis
);
4533 link_info
->phy_ver
[0] = resp
->phy_maj
;
4534 link_info
->phy_ver
[1] = resp
->phy_min
;
4535 link_info
->phy_ver
[2] = resp
->phy_bld
;
4536 link_info
->media_type
= resp
->media_type
;
4537 link_info
->transceiver
= resp
->xcvr_pkg_type
;
4538 link_info
->phy_addr
= resp
->eee_config_phy_addr
;
4540 /* TODO: need to add more logic to report VF link */
4541 if (chng_link_state
) {
4542 if (link_info
->phy_link_status
== BNXT_LINK_LINK
)
4543 link_info
->link_up
= 1;
4545 link_info
->link_up
= 0;
4546 if (link_up
!= link_info
->link_up
)
4547 bnxt_report_link(bp
);
4549 /* alwasy link down if not require to update link state */
4550 link_info
->link_up
= 0;
4552 mutex_unlock(&bp
->hwrm_cmd_lock
);
4557 bnxt_hwrm_set_pause_common(struct bnxt
*bp
, struct hwrm_port_phy_cfg_input
*req
)
4559 if (bp
->link_info
.autoneg
& BNXT_AUTONEG_FLOW_CTRL
) {
4560 if (bp
->hwrm_spec_code
>= 0x10201)
4562 PORT_PHY_CFG_REQ_AUTO_PAUSE_AUTONEG_PAUSE
;
4563 if (bp
->link_info
.req_flow_ctrl
& BNXT_LINK_PAUSE_RX
)
4564 req
->auto_pause
|= PORT_PHY_CFG_REQ_AUTO_PAUSE_RX
;
4565 if (bp
->link_info
.req_flow_ctrl
& BNXT_LINK_PAUSE_TX
)
4566 req
->auto_pause
|= PORT_PHY_CFG_REQ_AUTO_PAUSE_TX
;
4568 cpu_to_le32(PORT_PHY_CFG_REQ_ENABLES_AUTO_PAUSE
);
4570 if (bp
->link_info
.req_flow_ctrl
& BNXT_LINK_PAUSE_RX
)
4571 req
->force_pause
|= PORT_PHY_CFG_REQ_FORCE_PAUSE_RX
;
4572 if (bp
->link_info
.req_flow_ctrl
& BNXT_LINK_PAUSE_TX
)
4573 req
->force_pause
|= PORT_PHY_CFG_REQ_FORCE_PAUSE_TX
;
4575 cpu_to_le32(PORT_PHY_CFG_REQ_ENABLES_FORCE_PAUSE
);
4576 if (bp
->hwrm_spec_code
>= 0x10201) {
4577 req
->auto_pause
= req
->force_pause
;
4578 req
->enables
|= cpu_to_le32(
4579 PORT_PHY_CFG_REQ_ENABLES_AUTO_PAUSE
);
4584 static void bnxt_hwrm_set_link_common(struct bnxt
*bp
,
4585 struct hwrm_port_phy_cfg_input
*req
)
4587 u8 autoneg
= bp
->link_info
.autoneg
;
4588 u16 fw_link_speed
= bp
->link_info
.req_link_speed
;
4589 u32 advertising
= bp
->link_info
.advertising
;
4591 if (autoneg
& BNXT_AUTONEG_SPEED
) {
4593 PORT_PHY_CFG_REQ_AUTO_MODE_SPEED_MASK
;
4595 req
->enables
|= cpu_to_le32(
4596 PORT_PHY_CFG_REQ_ENABLES_AUTO_LINK_SPEED_MASK
);
4597 req
->auto_link_speed_mask
= cpu_to_le16(advertising
);
4599 req
->enables
|= cpu_to_le32(PORT_PHY_CFG_REQ_ENABLES_AUTO_MODE
);
4601 cpu_to_le32(PORT_PHY_CFG_REQ_FLAGS_RESTART_AUTONEG
);
4603 req
->force_link_speed
= cpu_to_le16(fw_link_speed
);
4604 req
->flags
|= cpu_to_le32(PORT_PHY_CFG_REQ_FLAGS_FORCE
);
4607 /* tell chimp that the setting takes effect immediately */
4608 req
->flags
|= cpu_to_le32(PORT_PHY_CFG_REQ_FLAGS_RESET_PHY
);
4611 int bnxt_hwrm_set_pause(struct bnxt
*bp
)
4613 struct hwrm_port_phy_cfg_input req
= {0};
4616 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_PORT_PHY_CFG
, -1, -1);
4617 bnxt_hwrm_set_pause_common(bp
, &req
);
4619 if ((bp
->link_info
.autoneg
& BNXT_AUTONEG_FLOW_CTRL
) ||
4620 bp
->link_info
.force_link_chng
)
4621 bnxt_hwrm_set_link_common(bp
, &req
);
4623 mutex_lock(&bp
->hwrm_cmd_lock
);
4624 rc
= _hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
4625 if (!rc
&& !(bp
->link_info
.autoneg
& BNXT_AUTONEG_FLOW_CTRL
)) {
4626 /* since changing of pause setting doesn't trigger any link
4627 * change event, the driver needs to update the current pause
4628 * result upon successfully return of the phy_cfg command
4630 bp
->link_info
.pause
=
4631 bp
->link_info
.force_pause_setting
= bp
->link_info
.req_flow_ctrl
;
4632 bp
->link_info
.auto_pause_setting
= 0;
4633 if (!bp
->link_info
.force_link_chng
)
4634 bnxt_report_link(bp
);
4636 bp
->link_info
.force_link_chng
= false;
4637 mutex_unlock(&bp
->hwrm_cmd_lock
);
4641 int bnxt_hwrm_set_link_setting(struct bnxt
*bp
, bool set_pause
)
4643 struct hwrm_port_phy_cfg_input req
= {0};
4645 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_PORT_PHY_CFG
, -1, -1);
4647 bnxt_hwrm_set_pause_common(bp
, &req
);
4649 bnxt_hwrm_set_link_common(bp
, &req
);
4650 return hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
4653 static int bnxt_update_phy_setting(struct bnxt
*bp
)
4656 bool update_link
= false;
4657 bool update_pause
= false;
4658 struct bnxt_link_info
*link_info
= &bp
->link_info
;
4660 rc
= bnxt_update_link(bp
, true);
4662 netdev_err(bp
->dev
, "failed to update link (rc: %x)\n",
4666 if ((link_info
->autoneg
& BNXT_AUTONEG_FLOW_CTRL
) &&
4667 (link_info
->auto_pause_setting
& BNXT_LINK_PAUSE_BOTH
) !=
4668 link_info
->req_flow_ctrl
)
4669 update_pause
= true;
4670 if (!(link_info
->autoneg
& BNXT_AUTONEG_FLOW_CTRL
) &&
4671 link_info
->force_pause_setting
!= link_info
->req_flow_ctrl
)
4672 update_pause
= true;
4673 if (!(link_info
->autoneg
& BNXT_AUTONEG_SPEED
)) {
4674 if (BNXT_AUTO_MODE(link_info
->auto_mode
))
4676 if (link_info
->req_link_speed
!= link_info
->force_link_speed
)
4678 if (link_info
->req_duplex
!= link_info
->duplex_setting
)
4681 if (link_info
->auto_mode
== BNXT_LINK_AUTO_NONE
)
4683 if (link_info
->advertising
!= link_info
->auto_link_speeds
)
4688 rc
= bnxt_hwrm_set_link_setting(bp
, update_pause
);
4689 else if (update_pause
)
4690 rc
= bnxt_hwrm_set_pause(bp
);
4692 netdev_err(bp
->dev
, "failed to update phy setting (rc: %x)\n",
4700 /* Common routine to pre-map certain register block to different GRC window.
4701 * A PF has 16 4K windows and a VF has 4 4K windows. However, only 15 windows
4702 * in PF and 3 windows in VF that can be customized to map in different
4705 static void bnxt_preset_reg_win(struct bnxt
*bp
)
4708 /* CAG registers map to GRC window #4 */
4709 writel(BNXT_CAG_REG_BASE
,
4710 bp
->bar0
+ BNXT_GRCPF_REG_WINDOW_BASE_OUT
+ 12);
4714 static int __bnxt_open_nic(struct bnxt
*bp
, bool irq_re_init
, bool link_re_init
)
4718 bnxt_preset_reg_win(bp
);
4719 netif_carrier_off(bp
->dev
);
4721 rc
= bnxt_setup_int_mode(bp
);
4723 netdev_err(bp
->dev
, "bnxt_setup_int_mode err: %x\n",
4728 if ((bp
->flags
& BNXT_FLAG_RFS
) &&
4729 !(bp
->flags
& BNXT_FLAG_USING_MSIX
)) {
4730 /* disable RFS if falling back to INTA */
4731 bp
->dev
->hw_features
&= ~NETIF_F_NTUPLE
;
4732 bp
->flags
&= ~BNXT_FLAG_RFS
;
4735 rc
= bnxt_alloc_mem(bp
, irq_re_init
);
4737 netdev_err(bp
->dev
, "bnxt_alloc_mem err: %x\n", rc
);
4738 goto open_err_free_mem
;
4743 rc
= bnxt_request_irq(bp
);
4745 netdev_err(bp
->dev
, "bnxt_request_irq err: %x\n", rc
);
4750 bnxt_enable_napi(bp
);
4752 rc
= bnxt_init_nic(bp
, irq_re_init
);
4754 netdev_err(bp
->dev
, "bnxt_init_nic err: %x\n", rc
);
4759 rc
= bnxt_update_phy_setting(bp
);
4761 netdev_warn(bp
->dev
, "failed to update phy settings\n");
4765 #if defined(CONFIG_VXLAN) || defined(CONFIG_VXLAN_MODULE)
4766 vxlan_get_rx_port(bp
->dev
);
4768 if (!bnxt_hwrm_tunnel_dst_port_alloc(
4770 TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_GENEVE
))
4771 bp
->nge_port_cnt
= 1;
4774 set_bit(BNXT_STATE_OPEN
, &bp
->state
);
4775 bnxt_enable_int(bp
);
4776 /* Enable TX queues */
4778 mod_timer(&bp
->timer
, jiffies
+ bp
->current_interval
);
4779 bnxt_update_link(bp
, true);
4784 bnxt_disable_napi(bp
);
4790 bnxt_free_mem(bp
, true);
4794 /* rtnl_lock held */
4795 int bnxt_open_nic(struct bnxt
*bp
, bool irq_re_init
, bool link_re_init
)
4799 rc
= __bnxt_open_nic(bp
, irq_re_init
, link_re_init
);
4801 netdev_err(bp
->dev
, "nic open fail (rc: %x)\n", rc
);
4807 static int bnxt_open(struct net_device
*dev
)
4809 struct bnxt
*bp
= netdev_priv(dev
);
4812 rc
= bnxt_hwrm_func_reset(bp
);
4814 netdev_err(bp
->dev
, "hwrm chip reset failure rc: %x\n",
4819 return __bnxt_open_nic(bp
, true, true);
4822 static void bnxt_disable_int_sync(struct bnxt
*bp
)
4826 atomic_inc(&bp
->intr_sem
);
4827 if (!netif_running(bp
->dev
))
4830 bnxt_disable_int(bp
);
4831 for (i
= 0; i
< bp
->cp_nr_rings
; i
++)
4832 synchronize_irq(bp
->irq_tbl
[i
].vector
);
4835 int bnxt_close_nic(struct bnxt
*bp
, bool irq_re_init
, bool link_re_init
)
4839 #ifdef CONFIG_BNXT_SRIOV
4840 if (bp
->sriov_cfg
) {
4841 rc
= wait_event_interruptible_timeout(bp
->sriov_cfg_wait
,
4843 BNXT_SRIOV_CFG_WAIT_TMO
);
4845 netdev_warn(bp
->dev
, "timeout waiting for SRIOV config operation to complete!\n");
4848 /* Change device state to avoid TX queue wake up's */
4849 bnxt_tx_disable(bp
);
4851 clear_bit(BNXT_STATE_OPEN
, &bp
->state
);
4852 smp_mb__after_atomic();
4853 while (test_bit(BNXT_STATE_IN_SP_TASK
, &bp
->state
))
4856 /* Flush rings before disabling interrupts */
4857 bnxt_shutdown_nic(bp
, irq_re_init
);
4859 /* TODO CHIMP_FW: Link/PHY related cleanup if (link_re_init) */
4861 bnxt_disable_napi(bp
);
4862 bnxt_disable_int_sync(bp
);
4863 del_timer_sync(&bp
->timer
);
4870 bnxt_free_mem(bp
, irq_re_init
);
4874 static int bnxt_close(struct net_device
*dev
)
4876 struct bnxt
*bp
= netdev_priv(dev
);
4878 bnxt_close_nic(bp
, true, true);
4882 /* rtnl_lock held */
4883 static int bnxt_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
4889 if (!netif_running(dev
))
4896 if (!netif_running(dev
))
4908 static struct rtnl_link_stats64
*
4909 bnxt_get_stats64(struct net_device
*dev
, struct rtnl_link_stats64
*stats
)
4912 struct bnxt
*bp
= netdev_priv(dev
);
4914 memset(stats
, 0, sizeof(struct rtnl_link_stats64
));
4919 /* TODO check if we need to synchronize with bnxt_close path */
4920 for (i
= 0; i
< bp
->cp_nr_rings
; i
++) {
4921 struct bnxt_napi
*bnapi
= bp
->bnapi
[i
];
4922 struct bnxt_cp_ring_info
*cpr
= &bnapi
->cp_ring
;
4923 struct ctx_hw_stats
*hw_stats
= cpr
->hw_stats
;
4925 stats
->rx_packets
+= le64_to_cpu(hw_stats
->rx_ucast_pkts
);
4926 stats
->rx_packets
+= le64_to_cpu(hw_stats
->rx_mcast_pkts
);
4927 stats
->rx_packets
+= le64_to_cpu(hw_stats
->rx_bcast_pkts
);
4929 stats
->tx_packets
+= le64_to_cpu(hw_stats
->tx_ucast_pkts
);
4930 stats
->tx_packets
+= le64_to_cpu(hw_stats
->tx_mcast_pkts
);
4931 stats
->tx_packets
+= le64_to_cpu(hw_stats
->tx_bcast_pkts
);
4933 stats
->rx_bytes
+= le64_to_cpu(hw_stats
->rx_ucast_bytes
);
4934 stats
->rx_bytes
+= le64_to_cpu(hw_stats
->rx_mcast_bytes
);
4935 stats
->rx_bytes
+= le64_to_cpu(hw_stats
->rx_bcast_bytes
);
4937 stats
->tx_bytes
+= le64_to_cpu(hw_stats
->tx_ucast_bytes
);
4938 stats
->tx_bytes
+= le64_to_cpu(hw_stats
->tx_mcast_bytes
);
4939 stats
->tx_bytes
+= le64_to_cpu(hw_stats
->tx_bcast_bytes
);
4941 stats
->rx_missed_errors
+=
4942 le64_to_cpu(hw_stats
->rx_discard_pkts
);
4944 stats
->multicast
+= le64_to_cpu(hw_stats
->rx_mcast_pkts
);
4946 stats
->tx_dropped
+= le64_to_cpu(hw_stats
->tx_drop_pkts
);
4949 if (bp
->flags
& BNXT_FLAG_PORT_STATS
) {
4950 struct rx_port_stats
*rx
= bp
->hw_rx_port_stats
;
4951 struct tx_port_stats
*tx
= bp
->hw_tx_port_stats
;
4953 stats
->rx_crc_errors
= le64_to_cpu(rx
->rx_fcs_err_frames
);
4954 stats
->rx_frame_errors
= le64_to_cpu(rx
->rx_align_err_frames
);
4955 stats
->rx_length_errors
= le64_to_cpu(rx
->rx_undrsz_frames
) +
4956 le64_to_cpu(rx
->rx_ovrsz_frames
) +
4957 le64_to_cpu(rx
->rx_runt_frames
);
4958 stats
->rx_errors
= le64_to_cpu(rx
->rx_false_carrier_frames
) +
4959 le64_to_cpu(rx
->rx_jbr_frames
);
4960 stats
->collisions
= le64_to_cpu(tx
->tx_total_collisions
);
4961 stats
->tx_fifo_errors
= le64_to_cpu(tx
->tx_fifo_underruns
);
4962 stats
->tx_errors
= le64_to_cpu(tx
->tx_err
);
4968 static bool bnxt_mc_list_updated(struct bnxt
*bp
, u32
*rx_mask
)
4970 struct net_device
*dev
= bp
->dev
;
4971 struct bnxt_vnic_info
*vnic
= &bp
->vnic_info
[0];
4972 struct netdev_hw_addr
*ha
;
4975 bool update
= false;
4978 netdev_for_each_mc_addr(ha
, dev
) {
4979 if (mc_count
>= BNXT_MAX_MC_ADDRS
) {
4980 *rx_mask
|= CFA_L2_SET_RX_MASK_REQ_MASK_ALL_MCAST
;
4981 vnic
->mc_list_count
= 0;
4985 if (!ether_addr_equal(haddr
, vnic
->mc_list
+ off
)) {
4986 memcpy(vnic
->mc_list
+ off
, haddr
, ETH_ALEN
);
4993 *rx_mask
|= CFA_L2_SET_RX_MASK_REQ_MASK_MCAST
;
4995 if (mc_count
!= vnic
->mc_list_count
) {
4996 vnic
->mc_list_count
= mc_count
;
5002 static bool bnxt_uc_list_updated(struct bnxt
*bp
)
5004 struct net_device
*dev
= bp
->dev
;
5005 struct bnxt_vnic_info
*vnic
= &bp
->vnic_info
[0];
5006 struct netdev_hw_addr
*ha
;
5009 if (netdev_uc_count(dev
) != (vnic
->uc_filter_count
- 1))
5012 netdev_for_each_uc_addr(ha
, dev
) {
5013 if (!ether_addr_equal(ha
->addr
, vnic
->uc_list
+ off
))
5021 static void bnxt_set_rx_mode(struct net_device
*dev
)
5023 struct bnxt
*bp
= netdev_priv(dev
);
5024 struct bnxt_vnic_info
*vnic
= &bp
->vnic_info
[0];
5025 u32 mask
= vnic
->rx_mask
;
5026 bool mc_update
= false;
5029 if (!netif_running(dev
))
5032 mask
&= ~(CFA_L2_SET_RX_MASK_REQ_MASK_PROMISCUOUS
|
5033 CFA_L2_SET_RX_MASK_REQ_MASK_MCAST
|
5034 CFA_L2_SET_RX_MASK_REQ_MASK_ALL_MCAST
);
5036 /* Only allow PF to be in promiscuous mode */
5037 if ((dev
->flags
& IFF_PROMISC
) && BNXT_PF(bp
))
5038 mask
|= CFA_L2_SET_RX_MASK_REQ_MASK_PROMISCUOUS
;
5040 uc_update
= bnxt_uc_list_updated(bp
);
5042 if (dev
->flags
& IFF_ALLMULTI
) {
5043 mask
|= CFA_L2_SET_RX_MASK_REQ_MASK_ALL_MCAST
;
5044 vnic
->mc_list_count
= 0;
5046 mc_update
= bnxt_mc_list_updated(bp
, &mask
);
5049 if (mask
!= vnic
->rx_mask
|| uc_update
|| mc_update
) {
5050 vnic
->rx_mask
= mask
;
5052 set_bit(BNXT_RX_MASK_SP_EVENT
, &bp
->sp_event
);
5053 schedule_work(&bp
->sp_task
);
5057 static int bnxt_cfg_rx_mode(struct bnxt
*bp
)
5059 struct net_device
*dev
= bp
->dev
;
5060 struct bnxt_vnic_info
*vnic
= &bp
->vnic_info
[0];
5061 struct netdev_hw_addr
*ha
;
5065 netif_addr_lock_bh(dev
);
5066 uc_update
= bnxt_uc_list_updated(bp
);
5067 netif_addr_unlock_bh(dev
);
5072 mutex_lock(&bp
->hwrm_cmd_lock
);
5073 for (i
= 1; i
< vnic
->uc_filter_count
; i
++) {
5074 struct hwrm_cfa_l2_filter_free_input req
= {0};
5076 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_CFA_L2_FILTER_FREE
, -1,
5079 req
.l2_filter_id
= vnic
->fw_l2_filter_id
[i
];
5081 rc
= _hwrm_send_message(bp
, &req
, sizeof(req
),
5084 mutex_unlock(&bp
->hwrm_cmd_lock
);
5086 vnic
->uc_filter_count
= 1;
5088 netif_addr_lock_bh(dev
);
5089 if (netdev_uc_count(dev
) > (BNXT_MAX_UC_ADDRS
- 1)) {
5090 vnic
->rx_mask
|= CFA_L2_SET_RX_MASK_REQ_MASK_PROMISCUOUS
;
5092 netdev_for_each_uc_addr(ha
, dev
) {
5093 memcpy(vnic
->uc_list
+ off
, ha
->addr
, ETH_ALEN
);
5095 vnic
->uc_filter_count
++;
5098 netif_addr_unlock_bh(dev
);
5100 for (i
= 1, off
= 0; i
< vnic
->uc_filter_count
; i
++, off
+= ETH_ALEN
) {
5101 rc
= bnxt_hwrm_set_vnic_filter(bp
, 0, i
, vnic
->uc_list
+ off
);
5103 netdev_err(bp
->dev
, "HWRM vnic filter failure rc: %x\n",
5105 vnic
->uc_filter_count
= i
;
5111 rc
= bnxt_hwrm_cfa_l2_set_rx_mask(bp
, 0);
5113 netdev_err(bp
->dev
, "HWRM cfa l2 rx mask failure rc: %x\n",
5119 static bool bnxt_rfs_capable(struct bnxt
*bp
)
5121 #ifdef CONFIG_RFS_ACCEL
5122 struct bnxt_pf_info
*pf
= &bp
->pf
;
5125 if (BNXT_VF(bp
) || !(bp
->flags
& BNXT_FLAG_MSIX_CAP
))
5128 vnics
= 1 + bp
->rx_nr_rings
;
5129 if (vnics
> pf
->max_rsscos_ctxs
|| vnics
> pf
->max_vnics
)
5138 static netdev_features_t
bnxt_fix_features(struct net_device
*dev
,
5139 netdev_features_t features
)
5141 struct bnxt
*bp
= netdev_priv(dev
);
5143 if (!bnxt_rfs_capable(bp
))
5144 features
&= ~NETIF_F_NTUPLE
;
5148 static int bnxt_set_features(struct net_device
*dev
, netdev_features_t features
)
5150 struct bnxt
*bp
= netdev_priv(dev
);
5151 u32 flags
= bp
->flags
;
5154 bool re_init
= false;
5155 bool update_tpa
= false;
5157 flags
&= ~BNXT_FLAG_ALL_CONFIG_FEATS
;
5158 if ((features
& NETIF_F_GRO
) && (bp
->pdev
->revision
> 0))
5159 flags
|= BNXT_FLAG_GRO
;
5160 if (features
& NETIF_F_LRO
)
5161 flags
|= BNXT_FLAG_LRO
;
5163 if (features
& NETIF_F_HW_VLAN_CTAG_RX
)
5164 flags
|= BNXT_FLAG_STRIP_VLAN
;
5166 if (features
& NETIF_F_NTUPLE
)
5167 flags
|= BNXT_FLAG_RFS
;
5169 changes
= flags
^ bp
->flags
;
5170 if (changes
& BNXT_FLAG_TPA
) {
5172 if ((bp
->flags
& BNXT_FLAG_TPA
) == 0 ||
5173 (flags
& BNXT_FLAG_TPA
) == 0)
5177 if (changes
& ~BNXT_FLAG_TPA
)
5180 if (flags
!= bp
->flags
) {
5181 u32 old_flags
= bp
->flags
;
5185 if (!test_bit(BNXT_STATE_OPEN
, &bp
->state
)) {
5187 bnxt_set_ring_params(bp
);
5192 bnxt_close_nic(bp
, false, false);
5194 bnxt_set_ring_params(bp
);
5196 return bnxt_open_nic(bp
, false, false);
5199 rc
= bnxt_set_tpa(bp
,
5200 (flags
& BNXT_FLAG_TPA
) ?
5203 bp
->flags
= old_flags
;
5209 static void bnxt_dump_tx_sw_state(struct bnxt_napi
*bnapi
)
5211 struct bnxt_tx_ring_info
*txr
= bnapi
->tx_ring
;
5212 int i
= bnapi
->index
;
5217 netdev_info(bnapi
->bp
->dev
, "[%d]: tx{fw_ring: %d prod: %x cons: %x}\n",
5218 i
, txr
->tx_ring_struct
.fw_ring_id
, txr
->tx_prod
,
5222 static void bnxt_dump_rx_sw_state(struct bnxt_napi
*bnapi
)
5224 struct bnxt_rx_ring_info
*rxr
= bnapi
->rx_ring
;
5225 int i
= bnapi
->index
;
5230 netdev_info(bnapi
->bp
->dev
, "[%d]: rx{fw_ring: %d prod: %x} rx_agg{fw_ring: %d agg_prod: %x sw_agg_prod: %x}\n",
5231 i
, rxr
->rx_ring_struct
.fw_ring_id
, rxr
->rx_prod
,
5232 rxr
->rx_agg_ring_struct
.fw_ring_id
, rxr
->rx_agg_prod
,
5233 rxr
->rx_sw_agg_prod
);
5236 static void bnxt_dump_cp_sw_state(struct bnxt_napi
*bnapi
)
5238 struct bnxt_cp_ring_info
*cpr
= &bnapi
->cp_ring
;
5239 int i
= bnapi
->index
;
5241 netdev_info(bnapi
->bp
->dev
, "[%d]: cp{fw_ring: %d raw_cons: %x}\n",
5242 i
, cpr
->cp_ring_struct
.fw_ring_id
, cpr
->cp_raw_cons
);
5245 static void bnxt_dbg_dump_states(struct bnxt
*bp
)
5248 struct bnxt_napi
*bnapi
;
5250 for (i
= 0; i
< bp
->cp_nr_rings
; i
++) {
5251 bnapi
= bp
->bnapi
[i
];
5252 if (netif_msg_drv(bp
)) {
5253 bnxt_dump_tx_sw_state(bnapi
);
5254 bnxt_dump_rx_sw_state(bnapi
);
5255 bnxt_dump_cp_sw_state(bnapi
);
5260 static void bnxt_reset_task(struct bnxt
*bp
)
5262 bnxt_dbg_dump_states(bp
);
5263 if (netif_running(bp
->dev
)) {
5264 bnxt_close_nic(bp
, false, false);
5265 bnxt_open_nic(bp
, false, false);
5269 static void bnxt_tx_timeout(struct net_device
*dev
)
5271 struct bnxt
*bp
= netdev_priv(dev
);
5273 netdev_err(bp
->dev
, "TX timeout detected, starting reset task!\n");
5274 set_bit(BNXT_RESET_TASK_SP_EVENT
, &bp
->sp_event
);
5275 schedule_work(&bp
->sp_task
);
5278 #ifdef CONFIG_NET_POLL_CONTROLLER
5279 static void bnxt_poll_controller(struct net_device
*dev
)
5281 struct bnxt
*bp
= netdev_priv(dev
);
5284 for (i
= 0; i
< bp
->cp_nr_rings
; i
++) {
5285 struct bnxt_irq
*irq
= &bp
->irq_tbl
[i
];
5287 disable_irq(irq
->vector
);
5288 irq
->handler(irq
->vector
, bp
->bnapi
[i
]);
5289 enable_irq(irq
->vector
);
5294 static void bnxt_timer(unsigned long data
)
5296 struct bnxt
*bp
= (struct bnxt
*)data
;
5297 struct net_device
*dev
= bp
->dev
;
5299 if (!netif_running(dev
))
5302 if (atomic_read(&bp
->intr_sem
) != 0)
5303 goto bnxt_restart_timer
;
5305 if (bp
->link_info
.link_up
&& (bp
->flags
& BNXT_FLAG_PORT_STATS
)) {
5306 set_bit(BNXT_PERIODIC_STATS_SP_EVENT
, &bp
->sp_event
);
5307 schedule_work(&bp
->sp_task
);
5310 mod_timer(&bp
->timer
, jiffies
+ bp
->current_interval
);
5313 static void bnxt_cfg_ntp_filters(struct bnxt
*);
5315 static void bnxt_sp_task(struct work_struct
*work
)
5317 struct bnxt
*bp
= container_of(work
, struct bnxt
, sp_task
);
5320 set_bit(BNXT_STATE_IN_SP_TASK
, &bp
->state
);
5321 smp_mb__after_atomic();
5322 if (!test_bit(BNXT_STATE_OPEN
, &bp
->state
)) {
5323 clear_bit(BNXT_STATE_IN_SP_TASK
, &bp
->state
);
5327 if (test_and_clear_bit(BNXT_RX_MASK_SP_EVENT
, &bp
->sp_event
))
5328 bnxt_cfg_rx_mode(bp
);
5330 if (test_and_clear_bit(BNXT_RX_NTP_FLTR_SP_EVENT
, &bp
->sp_event
))
5331 bnxt_cfg_ntp_filters(bp
);
5332 if (test_and_clear_bit(BNXT_LINK_CHNG_SP_EVENT
, &bp
->sp_event
)) {
5333 rc
= bnxt_update_link(bp
, true);
5335 netdev_err(bp
->dev
, "SP task can't update link (rc: %x)\n",
5338 if (test_and_clear_bit(BNXT_HWRM_EXEC_FWD_REQ_SP_EVENT
, &bp
->sp_event
))
5339 bnxt_hwrm_exec_fwd_req(bp
);
5340 if (test_and_clear_bit(BNXT_VXLAN_ADD_PORT_SP_EVENT
, &bp
->sp_event
)) {
5341 bnxt_hwrm_tunnel_dst_port_alloc(
5343 TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_VXLAN
);
5345 if (test_and_clear_bit(BNXT_VXLAN_DEL_PORT_SP_EVENT
, &bp
->sp_event
)) {
5346 bnxt_hwrm_tunnel_dst_port_free(
5347 bp
, TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_VXLAN
);
5349 if (test_and_clear_bit(BNXT_RESET_TASK_SP_EVENT
, &bp
->sp_event
)) {
5350 /* bnxt_reset_task() calls bnxt_close_nic() which waits
5351 * for BNXT_STATE_IN_SP_TASK to clear.
5353 clear_bit(BNXT_STATE_IN_SP_TASK
, &bp
->state
);
5355 bnxt_reset_task(bp
);
5356 set_bit(BNXT_STATE_IN_SP_TASK
, &bp
->state
);
5360 if (test_and_clear_bit(BNXT_PERIODIC_STATS_SP_EVENT
, &bp
->sp_event
))
5361 bnxt_hwrm_port_qstats(bp
);
5363 smp_mb__before_atomic();
5364 clear_bit(BNXT_STATE_IN_SP_TASK
, &bp
->state
);
5367 static int bnxt_init_board(struct pci_dev
*pdev
, struct net_device
*dev
)
5370 struct bnxt
*bp
= netdev_priv(dev
);
5372 SET_NETDEV_DEV(dev
, &pdev
->dev
);
5374 /* enable device (incl. PCI PM wakeup), and bus-mastering */
5375 rc
= pci_enable_device(pdev
);
5377 dev_err(&pdev
->dev
, "Cannot enable PCI device, aborting\n");
5381 if (!(pci_resource_flags(pdev
, 0) & IORESOURCE_MEM
)) {
5383 "Cannot find PCI device base address, aborting\n");
5385 goto init_err_disable
;
5388 rc
= pci_request_regions(pdev
, DRV_MODULE_NAME
);
5390 dev_err(&pdev
->dev
, "Cannot obtain PCI resources, aborting\n");
5391 goto init_err_disable
;
5394 if (dma_set_mask_and_coherent(&pdev
->dev
, DMA_BIT_MASK(64)) != 0 &&
5395 dma_set_mask_and_coherent(&pdev
->dev
, DMA_BIT_MASK(32)) != 0) {
5396 dev_err(&pdev
->dev
, "System does not support DMA, aborting\n");
5397 goto init_err_disable
;
5400 pci_set_master(pdev
);
5405 bp
->bar0
= pci_ioremap_bar(pdev
, 0);
5407 dev_err(&pdev
->dev
, "Cannot map device registers, aborting\n");
5409 goto init_err_release
;
5412 bp
->bar1
= pci_ioremap_bar(pdev
, 2);
5414 dev_err(&pdev
->dev
, "Cannot map doorbell registers, aborting\n");
5416 goto init_err_release
;
5419 bp
->bar2
= pci_ioremap_bar(pdev
, 4);
5421 dev_err(&pdev
->dev
, "Cannot map bar4 registers, aborting\n");
5423 goto init_err_release
;
5426 pci_enable_pcie_error_reporting(pdev
);
5428 INIT_WORK(&bp
->sp_task
, bnxt_sp_task
);
5430 spin_lock_init(&bp
->ntp_fltr_lock
);
5432 bp
->rx_ring_size
= BNXT_DEFAULT_RX_RING_SIZE
;
5433 bp
->tx_ring_size
= BNXT_DEFAULT_TX_RING_SIZE
;
5435 /* tick values in micro seconds */
5436 bp
->rx_coal_ticks
= 12;
5437 bp
->rx_coal_bufs
= 30;
5438 bp
->rx_coal_ticks_irq
= 1;
5439 bp
->rx_coal_bufs_irq
= 2;
5441 bp
->tx_coal_ticks
= 25;
5442 bp
->tx_coal_bufs
= 30;
5443 bp
->tx_coal_ticks_irq
= 2;
5444 bp
->tx_coal_bufs_irq
= 2;
5446 init_timer(&bp
->timer
);
5447 bp
->timer
.data
= (unsigned long)bp
;
5448 bp
->timer
.function
= bnxt_timer
;
5449 bp
->current_interval
= BNXT_TIMER_INTERVAL
;
5451 clear_bit(BNXT_STATE_OPEN
, &bp
->state
);
5457 pci_iounmap(pdev
, bp
->bar2
);
5462 pci_iounmap(pdev
, bp
->bar1
);
5467 pci_iounmap(pdev
, bp
->bar0
);
5471 pci_release_regions(pdev
);
5474 pci_disable_device(pdev
);
5480 /* rtnl_lock held */
5481 static int bnxt_change_mac_addr(struct net_device
*dev
, void *p
)
5483 struct sockaddr
*addr
= p
;
5484 struct bnxt
*bp
= netdev_priv(dev
);
5487 if (!is_valid_ether_addr(addr
->sa_data
))
5488 return -EADDRNOTAVAIL
;
5490 #ifdef CONFIG_BNXT_SRIOV
5491 if (BNXT_VF(bp
) && is_valid_ether_addr(bp
->vf
.mac_addr
))
5492 return -EADDRNOTAVAIL
;
5495 if (ether_addr_equal(addr
->sa_data
, dev
->dev_addr
))
5498 memcpy(dev
->dev_addr
, addr
->sa_data
, dev
->addr_len
);
5499 if (netif_running(dev
)) {
5500 bnxt_close_nic(bp
, false, false);
5501 rc
= bnxt_open_nic(bp
, false, false);
5507 /* rtnl_lock held */
5508 static int bnxt_change_mtu(struct net_device
*dev
, int new_mtu
)
5510 struct bnxt
*bp
= netdev_priv(dev
);
5512 if (new_mtu
< 60 || new_mtu
> 9000)
5515 if (netif_running(dev
))
5516 bnxt_close_nic(bp
, false, false);
5519 bnxt_set_ring_params(bp
);
5521 if (netif_running(dev
))
5522 return bnxt_open_nic(bp
, false, false);
5527 static int bnxt_setup_tc(struct net_device
*dev
, u32 handle
, __be16 proto
,
5528 struct tc_to_netdev
*ntc
)
5530 struct bnxt
*bp
= netdev_priv(dev
);
5533 if (ntc
->type
!= TC_SETUP_MQPRIO
)
5538 if (tc
> bp
->max_tc
) {
5539 netdev_err(dev
, "too many traffic classes requested: %d Max supported is %d\n",
5544 if (netdev_get_num_tc(dev
) == tc
)
5548 int max_rx_rings
, max_tx_rings
, rc
;
5551 if (bp
->flags
& BNXT_FLAG_SHARED_RINGS
)
5554 rc
= bnxt_get_max_rings(bp
, &max_rx_rings
, &max_tx_rings
, sh
);
5555 if (rc
|| bp
->tx_nr_rings_per_tc
* tc
> max_tx_rings
)
5559 /* Needs to close the device and do hw resource re-allocations */
5560 if (netif_running(bp
->dev
))
5561 bnxt_close_nic(bp
, true, false);
5564 bp
->tx_nr_rings
= bp
->tx_nr_rings_per_tc
* tc
;
5565 netdev_set_num_tc(dev
, tc
);
5567 bp
->tx_nr_rings
= bp
->tx_nr_rings_per_tc
;
5568 netdev_reset_tc(dev
);
5570 bp
->cp_nr_rings
= max_t(int, bp
->tx_nr_rings
, bp
->rx_nr_rings
);
5571 bp
->num_stat_ctxs
= bp
->cp_nr_rings
;
5573 if (netif_running(bp
->dev
))
5574 return bnxt_open_nic(bp
, true, false);
5579 #ifdef CONFIG_RFS_ACCEL
5580 static bool bnxt_fltr_match(struct bnxt_ntuple_filter
*f1
,
5581 struct bnxt_ntuple_filter
*f2
)
5583 struct flow_keys
*keys1
= &f1
->fkeys
;
5584 struct flow_keys
*keys2
= &f2
->fkeys
;
5586 if (keys1
->addrs
.v4addrs
.src
== keys2
->addrs
.v4addrs
.src
&&
5587 keys1
->addrs
.v4addrs
.dst
== keys2
->addrs
.v4addrs
.dst
&&
5588 keys1
->ports
.ports
== keys2
->ports
.ports
&&
5589 keys1
->basic
.ip_proto
== keys2
->basic
.ip_proto
&&
5590 keys1
->basic
.n_proto
== keys2
->basic
.n_proto
&&
5591 ether_addr_equal(f1
->src_mac_addr
, f2
->src_mac_addr
))
5597 static int bnxt_rx_flow_steer(struct net_device
*dev
, const struct sk_buff
*skb
,
5598 u16 rxq_index
, u32 flow_id
)
5600 struct bnxt
*bp
= netdev_priv(dev
);
5601 struct bnxt_ntuple_filter
*fltr
, *new_fltr
;
5602 struct flow_keys
*fkeys
;
5603 struct ethhdr
*eth
= (struct ethhdr
*)skb_mac_header(skb
);
5604 int rc
= 0, idx
, bit_id
;
5605 struct hlist_head
*head
;
5607 if (skb
->encapsulation
)
5608 return -EPROTONOSUPPORT
;
5610 new_fltr
= kzalloc(sizeof(*new_fltr
), GFP_ATOMIC
);
5614 fkeys
= &new_fltr
->fkeys
;
5615 if (!skb_flow_dissect_flow_keys(skb
, fkeys
, 0)) {
5616 rc
= -EPROTONOSUPPORT
;
5620 if ((fkeys
->basic
.n_proto
!= htons(ETH_P_IP
)) ||
5621 ((fkeys
->basic
.ip_proto
!= IPPROTO_TCP
) &&
5622 (fkeys
->basic
.ip_proto
!= IPPROTO_UDP
))) {
5623 rc
= -EPROTONOSUPPORT
;
5627 memcpy(new_fltr
->src_mac_addr
, eth
->h_source
, ETH_ALEN
);
5629 idx
= skb_get_hash_raw(skb
) & BNXT_NTP_FLTR_HASH_MASK
;
5630 head
= &bp
->ntp_fltr_hash_tbl
[idx
];
5632 hlist_for_each_entry_rcu(fltr
, head
, hash
) {
5633 if (bnxt_fltr_match(fltr
, new_fltr
)) {
5641 spin_lock_bh(&bp
->ntp_fltr_lock
);
5642 bit_id
= bitmap_find_free_region(bp
->ntp_fltr_bmap
,
5643 BNXT_NTP_FLTR_MAX_FLTR
, 0);
5645 spin_unlock_bh(&bp
->ntp_fltr_lock
);
5650 new_fltr
->sw_id
= (u16
)bit_id
;
5651 new_fltr
->flow_id
= flow_id
;
5652 new_fltr
->rxq
= rxq_index
;
5653 hlist_add_head_rcu(&new_fltr
->hash
, head
);
5654 bp
->ntp_fltr_count
++;
5655 spin_unlock_bh(&bp
->ntp_fltr_lock
);
5657 set_bit(BNXT_RX_NTP_FLTR_SP_EVENT
, &bp
->sp_event
);
5658 schedule_work(&bp
->sp_task
);
5660 return new_fltr
->sw_id
;
5667 static void bnxt_cfg_ntp_filters(struct bnxt
*bp
)
5671 for (i
= 0; i
< BNXT_NTP_FLTR_HASH_SIZE
; i
++) {
5672 struct hlist_head
*head
;
5673 struct hlist_node
*tmp
;
5674 struct bnxt_ntuple_filter
*fltr
;
5677 head
= &bp
->ntp_fltr_hash_tbl
[i
];
5678 hlist_for_each_entry_safe(fltr
, tmp
, head
, hash
) {
5681 if (test_bit(BNXT_FLTR_VALID
, &fltr
->state
)) {
5682 if (rps_may_expire_flow(bp
->dev
, fltr
->rxq
,
5685 bnxt_hwrm_cfa_ntuple_filter_free(bp
,
5690 rc
= bnxt_hwrm_cfa_ntuple_filter_alloc(bp
,
5695 set_bit(BNXT_FLTR_VALID
, &fltr
->state
);
5699 spin_lock_bh(&bp
->ntp_fltr_lock
);
5700 hlist_del_rcu(&fltr
->hash
);
5701 bp
->ntp_fltr_count
--;
5702 spin_unlock_bh(&bp
->ntp_fltr_lock
);
5704 clear_bit(fltr
->sw_id
, bp
->ntp_fltr_bmap
);
5709 if (test_and_clear_bit(BNXT_HWRM_PF_UNLOAD_SP_EVENT
, &bp
->sp_event
))
5710 netdev_info(bp
->dev
, "Receive PF driver unload event!");
5715 static void bnxt_cfg_ntp_filters(struct bnxt
*bp
)
5719 #endif /* CONFIG_RFS_ACCEL */
5721 static void bnxt_add_vxlan_port(struct net_device
*dev
, sa_family_t sa_family
,
5724 struct bnxt
*bp
= netdev_priv(dev
);
5726 if (!netif_running(dev
))
5729 if (sa_family
!= AF_INET6
&& sa_family
!= AF_INET
)
5732 if (bp
->vxlan_port_cnt
&& bp
->vxlan_port
!= port
)
5735 bp
->vxlan_port_cnt
++;
5736 if (bp
->vxlan_port_cnt
== 1) {
5737 bp
->vxlan_port
= port
;
5738 set_bit(BNXT_VXLAN_ADD_PORT_SP_EVENT
, &bp
->sp_event
);
5739 schedule_work(&bp
->sp_task
);
5743 static void bnxt_del_vxlan_port(struct net_device
*dev
, sa_family_t sa_family
,
5746 struct bnxt
*bp
= netdev_priv(dev
);
5748 if (!netif_running(dev
))
5751 if (sa_family
!= AF_INET6
&& sa_family
!= AF_INET
)
5754 if (bp
->vxlan_port_cnt
&& bp
->vxlan_port
== port
) {
5755 bp
->vxlan_port_cnt
--;
5757 if (bp
->vxlan_port_cnt
== 0) {
5758 set_bit(BNXT_VXLAN_DEL_PORT_SP_EVENT
, &bp
->sp_event
);
5759 schedule_work(&bp
->sp_task
);
5764 static const struct net_device_ops bnxt_netdev_ops
= {
5765 .ndo_open
= bnxt_open
,
5766 .ndo_start_xmit
= bnxt_start_xmit
,
5767 .ndo_stop
= bnxt_close
,
5768 .ndo_get_stats64
= bnxt_get_stats64
,
5769 .ndo_set_rx_mode
= bnxt_set_rx_mode
,
5770 .ndo_do_ioctl
= bnxt_ioctl
,
5771 .ndo_validate_addr
= eth_validate_addr
,
5772 .ndo_set_mac_address
= bnxt_change_mac_addr
,
5773 .ndo_change_mtu
= bnxt_change_mtu
,
5774 .ndo_fix_features
= bnxt_fix_features
,
5775 .ndo_set_features
= bnxt_set_features
,
5776 .ndo_tx_timeout
= bnxt_tx_timeout
,
5777 #ifdef CONFIG_BNXT_SRIOV
5778 .ndo_get_vf_config
= bnxt_get_vf_config
,
5779 .ndo_set_vf_mac
= bnxt_set_vf_mac
,
5780 .ndo_set_vf_vlan
= bnxt_set_vf_vlan
,
5781 .ndo_set_vf_rate
= bnxt_set_vf_bw
,
5782 .ndo_set_vf_link_state
= bnxt_set_vf_link_state
,
5783 .ndo_set_vf_spoofchk
= bnxt_set_vf_spoofchk
,
5785 #ifdef CONFIG_NET_POLL_CONTROLLER
5786 .ndo_poll_controller
= bnxt_poll_controller
,
5788 .ndo_setup_tc
= bnxt_setup_tc
,
5789 #ifdef CONFIG_RFS_ACCEL
5790 .ndo_rx_flow_steer
= bnxt_rx_flow_steer
,
5792 .ndo_add_vxlan_port
= bnxt_add_vxlan_port
,
5793 .ndo_del_vxlan_port
= bnxt_del_vxlan_port
,
5794 #ifdef CONFIG_NET_RX_BUSY_POLL
5795 .ndo_busy_poll
= bnxt_busy_poll
,
5799 static void bnxt_remove_one(struct pci_dev
*pdev
)
5801 struct net_device
*dev
= pci_get_drvdata(pdev
);
5802 struct bnxt
*bp
= netdev_priv(dev
);
5805 bnxt_sriov_disable(bp
);
5807 pci_disable_pcie_error_reporting(pdev
);
5808 unregister_netdev(dev
);
5809 cancel_work_sync(&bp
->sp_task
);
5812 bnxt_hwrm_func_drv_unrgtr(bp
);
5813 bnxt_free_hwrm_resources(bp
);
5814 pci_iounmap(pdev
, bp
->bar2
);
5815 pci_iounmap(pdev
, bp
->bar1
);
5816 pci_iounmap(pdev
, bp
->bar0
);
5819 pci_release_regions(pdev
);
5820 pci_disable_device(pdev
);
5823 static int bnxt_probe_phy(struct bnxt
*bp
)
5826 struct bnxt_link_info
*link_info
= &bp
->link_info
;
5828 rc
= bnxt_update_link(bp
, false);
5830 netdev_err(bp
->dev
, "Probe phy can't update link (rc: %x)\n",
5835 /*initialize the ethool setting copy with NVM settings */
5836 if (BNXT_AUTO_MODE(link_info
->auto_mode
)) {
5837 link_info
->autoneg
= BNXT_AUTONEG_SPEED
;
5838 if (bp
->hwrm_spec_code
>= 0x10201) {
5839 if (link_info
->auto_pause_setting
&
5840 PORT_PHY_CFG_REQ_AUTO_PAUSE_AUTONEG_PAUSE
)
5841 link_info
->autoneg
|= BNXT_AUTONEG_FLOW_CTRL
;
5843 link_info
->autoneg
|= BNXT_AUTONEG_FLOW_CTRL
;
5845 link_info
->advertising
= link_info
->auto_link_speeds
;
5847 link_info
->req_link_speed
= link_info
->force_link_speed
;
5848 link_info
->req_duplex
= link_info
->duplex_setting
;
5850 if (link_info
->autoneg
& BNXT_AUTONEG_FLOW_CTRL
)
5851 link_info
->req_flow_ctrl
=
5852 link_info
->auto_pause_setting
& BNXT_LINK_PAUSE_BOTH
;
5854 link_info
->req_flow_ctrl
= link_info
->force_pause_setting
;
5858 static int bnxt_get_max_irq(struct pci_dev
*pdev
)
5862 if (!pdev
->msix_cap
)
5865 pci_read_config_word(pdev
, pdev
->msix_cap
+ PCI_MSIX_FLAGS
, &ctrl
);
5866 return (ctrl
& PCI_MSIX_FLAGS_QSIZE
) + 1;
5869 static void _bnxt_get_max_rings(struct bnxt
*bp
, int *max_rx
, int *max_tx
,
5872 int max_ring_grps
= 0;
5874 #ifdef CONFIG_BNXT_SRIOV
5876 *max_tx
= bp
->vf
.max_tx_rings
;
5877 *max_rx
= bp
->vf
.max_rx_rings
;
5878 *max_cp
= min_t(int, bp
->vf
.max_irqs
, bp
->vf
.max_cp_rings
);
5879 *max_cp
= min_t(int, *max_cp
, bp
->vf
.max_stat_ctxs
);
5880 max_ring_grps
= bp
->vf
.max_hw_ring_grps
;
5884 *max_tx
= bp
->pf
.max_tx_rings
;
5885 *max_rx
= bp
->pf
.max_rx_rings
;
5886 *max_cp
= min_t(int, bp
->pf
.max_irqs
, bp
->pf
.max_cp_rings
);
5887 *max_cp
= min_t(int, *max_cp
, bp
->pf
.max_stat_ctxs
);
5888 max_ring_grps
= bp
->pf
.max_hw_ring_grps
;
5891 if (bp
->flags
& BNXT_FLAG_AGG_RINGS
)
5893 *max_rx
= min_t(int, *max_rx
, max_ring_grps
);
5896 int bnxt_get_max_rings(struct bnxt
*bp
, int *max_rx
, int *max_tx
, bool shared
)
5900 _bnxt_get_max_rings(bp
, &rx
, &tx
, &cp
);
5901 if (!rx
|| !tx
|| !cp
)
5906 return bnxt_trim_rings(bp
, max_rx
, max_tx
, cp
, shared
);
5909 static int bnxt_set_dflt_rings(struct bnxt
*bp
)
5911 int dflt_rings
, max_rx_rings
, max_tx_rings
, rc
;
5915 bp
->flags
|= BNXT_FLAG_SHARED_RINGS
;
5916 dflt_rings
= netif_get_num_default_rss_queues();
5917 rc
= bnxt_get_max_rings(bp
, &max_rx_rings
, &max_tx_rings
, sh
);
5920 bp
->rx_nr_rings
= min_t(int, dflt_rings
, max_rx_rings
);
5921 bp
->tx_nr_rings_per_tc
= min_t(int, dflt_rings
, max_tx_rings
);
5922 bp
->tx_nr_rings
= bp
->tx_nr_rings_per_tc
;
5923 bp
->cp_nr_rings
= sh
? max_t(int, bp
->tx_nr_rings
, bp
->rx_nr_rings
) :
5924 bp
->tx_nr_rings
+ bp
->rx_nr_rings
;
5925 bp
->num_stat_ctxs
= bp
->cp_nr_rings
;
5929 static int bnxt_init_one(struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
5931 static int version_printed
;
5932 struct net_device
*dev
;
5936 if (version_printed
++ == 0)
5937 pr_info("%s", version
);
5939 max_irqs
= bnxt_get_max_irq(pdev
);
5940 dev
= alloc_etherdev_mq(sizeof(*bp
), max_irqs
);
5944 bp
= netdev_priv(dev
);
5946 if (bnxt_vf_pciid(ent
->driver_data
))
5947 bp
->flags
|= BNXT_FLAG_VF
;
5950 bp
->flags
|= BNXT_FLAG_MSIX_CAP
;
5952 rc
= bnxt_init_board(pdev
, dev
);
5956 dev
->netdev_ops
= &bnxt_netdev_ops
;
5957 dev
->watchdog_timeo
= BNXT_TX_TIMEOUT
;
5958 dev
->ethtool_ops
= &bnxt_ethtool_ops
;
5960 pci_set_drvdata(pdev
, dev
);
5962 dev
->hw_features
= NETIF_F_IP_CSUM
| NETIF_F_IPV6_CSUM
| NETIF_F_SG
|
5963 NETIF_F_TSO
| NETIF_F_TSO6
|
5964 NETIF_F_GSO_UDP_TUNNEL
| NETIF_F_GSO_GRE
|
5965 NETIF_F_GSO_IPIP
| NETIF_F_GSO_SIT
|
5967 NETIF_F_RXCSUM
| NETIF_F_LRO
| NETIF_F_GRO
;
5969 dev
->hw_enc_features
=
5970 NETIF_F_IP_CSUM
| NETIF_F_IPV6_CSUM
| NETIF_F_SG
|
5971 NETIF_F_TSO
| NETIF_F_TSO6
|
5972 NETIF_F_GSO_UDP_TUNNEL
| NETIF_F_GSO_GRE
|
5973 NETIF_F_GSO_IPIP
| NETIF_F_GSO_SIT
;
5974 dev
->vlan_features
= dev
->hw_features
| NETIF_F_HIGHDMA
;
5975 dev
->hw_features
|= NETIF_F_HW_VLAN_CTAG_RX
| NETIF_F_HW_VLAN_CTAG_TX
|
5976 NETIF_F_HW_VLAN_STAG_RX
| NETIF_F_HW_VLAN_STAG_TX
;
5977 dev
->features
|= dev
->hw_features
| NETIF_F_HIGHDMA
;
5978 dev
->priv_flags
|= IFF_UNICAST_FLT
;
5980 #ifdef CONFIG_BNXT_SRIOV
5981 init_waitqueue_head(&bp
->sriov_cfg_wait
);
5983 rc
= bnxt_alloc_hwrm_resources(bp
);
5987 mutex_init(&bp
->hwrm_cmd_lock
);
5988 bnxt_hwrm_ver_get(bp
);
5990 rc
= bnxt_hwrm_func_drv_rgtr(bp
);
5994 /* Get the MAX capabilities for this function */
5995 rc
= bnxt_hwrm_func_qcaps(bp
);
5997 netdev_err(bp
->dev
, "hwrm query capability failure rc: %x\n",
6003 rc
= bnxt_hwrm_queue_qportcfg(bp
);
6005 netdev_err(bp
->dev
, "hwrm query qportcfg failure rc: %x\n",
6011 bnxt_set_tpa_flags(bp
);
6012 bnxt_set_ring_params(bp
);
6014 bp
->pf
.max_irqs
= max_irqs
;
6015 #if defined(CONFIG_BNXT_SRIOV)
6017 bp
->vf
.max_irqs
= max_irqs
;
6019 bnxt_set_dflt_rings(bp
);
6022 dev
->hw_features
|= NETIF_F_NTUPLE
;
6023 if (bnxt_rfs_capable(bp
)) {
6024 bp
->flags
|= BNXT_FLAG_RFS
;
6025 dev
->features
|= NETIF_F_NTUPLE
;
6029 if (dev
->hw_features
& NETIF_F_HW_VLAN_CTAG_RX
)
6030 bp
->flags
|= BNXT_FLAG_STRIP_VLAN
;
6032 rc
= bnxt_probe_phy(bp
);
6036 rc
= register_netdev(dev
);
6040 netdev_info(dev
, "%s found at mem %lx, node addr %pM\n",
6041 board_info
[ent
->driver_data
].name
,
6042 (long)pci_resource_start(pdev
, 0), dev
->dev_addr
);
6047 pci_iounmap(pdev
, bp
->bar0
);
6048 pci_release_regions(pdev
);
6049 pci_disable_device(pdev
);
6057 * bnxt_io_error_detected - called when PCI error is detected
6058 * @pdev: Pointer to PCI device
6059 * @state: The current pci connection state
6061 * This function is called after a PCI bus error affecting
6062 * this device has been detected.
6064 static pci_ers_result_t
bnxt_io_error_detected(struct pci_dev
*pdev
,
6065 pci_channel_state_t state
)
6067 struct net_device
*netdev
= pci_get_drvdata(pdev
);
6069 netdev_info(netdev
, "PCI I/O error detected\n");
6072 netif_device_detach(netdev
);
6074 if (state
== pci_channel_io_perm_failure
) {
6076 return PCI_ERS_RESULT_DISCONNECT
;
6079 if (netif_running(netdev
))
6082 pci_disable_device(pdev
);
6085 /* Request a slot slot reset. */
6086 return PCI_ERS_RESULT_NEED_RESET
;
6090 * bnxt_io_slot_reset - called after the pci bus has been reset.
6091 * @pdev: Pointer to PCI device
6093 * Restart the card from scratch, as if from a cold-boot.
6094 * At this point, the card has exprienced a hard reset,
6095 * followed by fixups by BIOS, and has its config space
6096 * set up identically to what it was at cold boot.
6098 static pci_ers_result_t
bnxt_io_slot_reset(struct pci_dev
*pdev
)
6100 struct net_device
*netdev
= pci_get_drvdata(pdev
);
6101 struct bnxt
*bp
= netdev_priv(netdev
);
6103 pci_ers_result_t result
= PCI_ERS_RESULT_DISCONNECT
;
6105 netdev_info(bp
->dev
, "PCI Slot Reset\n");
6109 if (pci_enable_device(pdev
)) {
6111 "Cannot re-enable PCI device after reset.\n");
6113 pci_set_master(pdev
);
6115 if (netif_running(netdev
))
6116 err
= bnxt_open(netdev
);
6119 result
= PCI_ERS_RESULT_RECOVERED
;
6122 if (result
!= PCI_ERS_RESULT_RECOVERED
&& netif_running(netdev
))
6127 err
= pci_cleanup_aer_uncorrect_error_status(pdev
);
6130 "pci_cleanup_aer_uncorrect_error_status failed 0x%0x\n",
6131 err
); /* non-fatal, continue */
6134 return PCI_ERS_RESULT_RECOVERED
;
6138 * bnxt_io_resume - called when traffic can start flowing again.
6139 * @pdev: Pointer to PCI device
6141 * This callback is called when the error recovery driver tells
6142 * us that its OK to resume normal operation.
6144 static void bnxt_io_resume(struct pci_dev
*pdev
)
6146 struct net_device
*netdev
= pci_get_drvdata(pdev
);
6150 netif_device_attach(netdev
);
6155 static const struct pci_error_handlers bnxt_err_handler
= {
6156 .error_detected
= bnxt_io_error_detected
,
6157 .slot_reset
= bnxt_io_slot_reset
,
6158 .resume
= bnxt_io_resume
6161 static struct pci_driver bnxt_pci_driver
= {
6162 .name
= DRV_MODULE_NAME
,
6163 .id_table
= bnxt_pci_tbl
,
6164 .probe
= bnxt_init_one
,
6165 .remove
= bnxt_remove_one
,
6166 .err_handler
= &bnxt_err_handler
,
6167 #if defined(CONFIG_BNXT_SRIOV)
6168 .sriov_configure
= bnxt_sriov_configure
,
6172 module_pci_driver(bnxt_pci_driver
);