bnxt_en: Improve flow control autoneg with Firmware 1.2.1 interface.
[linux/fpc-iii.git] / drivers / net / ethernet / broadcom / bnxt / bnxt.c
blob2b5a54162f8009cd8f9f7b8fc97a9bb23550fef4
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.
8 */
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>
26 #include <linux/io.h>
27 #include <linux/irq.h>
28 #include <linux/delay.h>
29 #include <asm/byteorder.h>
30 #include <asm/page.h>
31 #include <linux/time.h>
32 #include <linux/mii.h>
33 #include <linux/if.h>
34 #include <linux/if_vlan.h>
35 #include <net/ip.h>
36 #include <net/tcp.h>
37 #include <net/udp.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>
42 #endif
43 #ifdef CONFIG_NET_RX_BUSY_POLL
44 #include <net/busy_poll.h>
45 #endif
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>
54 #include "bnxt_hsi.h"
55 #include "bnxt.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
74 enum board_idx {
75 BCM57301,
76 BCM57302,
77 BCM57304,
78 BCM57402,
79 BCM57404,
80 BCM57406,
81 BCM57304_VF,
82 BCM57404_VF,
85 /* indexed by enum above */
86 static const struct {
87 char *name;
88 } board_info[] = {
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 },
109 #endif
110 { 0 }
113 MODULE_DEVICE_TABLE(pci, bnxt_pci_tbl);
115 static const u16 bnxt_vf_req_snif[] = {
116 HWRM_FUNC_CFG,
117 HWRM_PORT_PHY_QCFG,
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. */
142 barrier();
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);
173 struct tx_bd *txbd;
174 struct tx_bd_ext *txbd1;
175 struct netdev_queue *txq;
176 int i;
177 dma_addr_t mapping;
178 unsigned int length, pad = 0;
179 u32 len, free_size, vlan_tag_flags, cfa_action, flags;
180 u16 prod, last_frag;
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);
188 return NETDEV_TX_OK;
191 txr = &bp->tx_ring[i];
192 txq = netdev_get_tx_queue(dev, i);
193 prod = txr->tx_prod;
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;
201 length = skb->len;
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];
210 tx_buf->skb = skb;
211 tx_buf->nr_frags = last_frag;
213 vlan_tag_flags = 0;
214 cfa_action = 0;
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;
230 u64 *end;
231 int j, push_len;
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);
245 else
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;
253 *end = 0;
255 skb_copy_from_linear_data(skb, pdata, len);
256 pdata += len;
257 for (j = 0; j < last_frag; j++) {
258 skb_frag_t *frag = &skb_shinfo(skb)->frags[j];
259 void *fptr;
261 fptr = skb_frag_address_safe(frag);
262 if (!fptr)
263 goto normal_tx;
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);
275 tx_push->doorbell =
276 cpu_to_le32(DB_KEY_TX_PUSH | DB_LONG_TX_PUSH | prod);
277 txr->tx_prod = prod;
279 netdev_tx_sent_queue(txq, skb->len);
281 push_len = (length + sizeof(*tx_push) + 7) / 8;
282 if (push_len > 16) {
283 __iowrite64_copy(txr->tx_doorbell, tx_push_buf, 16);
284 __iowrite64_copy(txr->tx_doorbell + 4, tx_push_buf + 1,
285 push_len - 16);
286 } else {
287 __iowrite64_copy(txr->tx_doorbell, tx_push_buf,
288 push_len);
291 tx_buf->is_push = 1;
292 goto tx_done;
295 normal_tx:
296 if (length < BNXT_MIN_PKT_SIZE) {
297 pad = BNXT_MIN_PKT_SIZE - length;
298 if (skb_pad(skb, pad)) {
299 /* SKB already freed. */
300 tx_buf->skb = NULL;
301 return NETDEV_TX_OK;
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);
310 tx_buf->skb = NULL;
311 return NETDEV_TX_OK;
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)) {
326 u32 hdr_len;
328 if (skb->encapsulation)
329 hdr_len = skb_inner_network_offset(skb) +
330 skb_inner_network_header_len(skb) +
331 inner_tcp_hdrlen(skb);
332 else
333 hdr_len = skb_transport_offset(skb) +
334 tcp_hdrlen(skb);
336 txbd1->tx_bd_hsize_lflags = cpu_to_le32(TX_BD_FLAGS_LSO |
337 TX_BD_FLAGS_T_IPID |
338 (hdr_len << (TX_BD_HSIZE_SHIFT - 1)));
339 length = skb_shinfo(skb)->gso_size;
340 txbd1->tx_bd_mss = cpu_to_le32(length);
341 length += hdr_len;
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;
348 length >>= 9;
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,
362 DMA_TO_DEVICE);
364 if (unlikely(dma_mapping_error(&pdev->dev, mapping)))
365 goto tx_dma_error;
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);
376 flags &= ~TX_BD_LEN;
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 */
384 wmb();
386 prod = NEXT_TX(prod);
387 txr->tx_prod = prod;
389 writel(DB_KEY_TX | prod, txr->tx_doorbell);
390 writel(DB_KEY_TX | prod, txr->tx_doorbell);
392 tx_done:
394 mmiowb();
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().
404 smp_mb();
405 if (bnxt_tx_avail(bp, txr) > bp->tx_wake_thresh)
406 netif_tx_wake_queue(txq);
408 return NETDEV_TX_OK;
410 tx_dma_error:
411 last_frag = i;
413 /* start back at beginning and unmap skb */
414 prod = txr->tx_prod;
415 tx_buf = &txr->tx_buf_ring[prod];
416 tx_buf->skb = NULL;
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]),
427 PCI_DMA_TODEVICE);
430 dev_kfree_skb_any(skb);
431 return NETDEV_TX_OK;
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;
441 int i;
442 unsigned int tx_bytes = 0;
444 for (i = 0; i < nr_pkts; i++) {
445 struct bnxt_sw_tx_bd *tx_buf;
446 struct sk_buff *skb;
447 int j, last;
449 tx_buf = &txr->tx_buf_ring[cons];
450 cons = NEXT_TX(cons);
451 skb = tx_buf->skb;
452 tx_buf->skb = NULL;
454 if (tx_buf->is_push) {
455 tx_buf->is_push = 0;
456 goto next_tx_int;
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];
466 dma_unmap_page(
467 &pdev->dev,
468 dma_unmap_addr(tx_buf, mapping),
469 skb_frag_size(&skb_shinfo(skb)->frags[j]),
470 PCI_DMA_TODEVICE);
473 next_tx_int:
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);
481 txr->tx_cons = cons;
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.
488 smp_mb();
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,
502 gfp_t gfp)
504 u8 *data;
505 struct pci_dev *pdev = bp->pdev;
507 data = kmalloc(bp->rx_buf_size, gfp);
508 if (!data)
509 return NULL;
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)) {
515 kfree(data);
516 data = NULL;
518 return data;
521 static inline int bnxt_alloc_rx_data(struct bnxt *bp,
522 struct bnxt_rx_ring_info *rxr,
523 u16 prod, gfp_t gfp)
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];
527 u8 *data;
528 dma_addr_t mapping;
530 data = __bnxt_alloc_rx_data(bp, &mapping, gfp);
531 if (!data)
532 return -ENOMEM;
534 rx_buf->data = data;
535 dma_unmap_addr_set(rx_buf, mapping, mapping);
537 rxbd->rx_bd_haddr = cpu_to_le64(mapping);
539 return 0;
542 static void bnxt_reuse_rx_data(struct bnxt_rx_ring_info *rxr, u16 cons,
543 u8 *data)
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);
568 if (next >= max)
569 next = find_first_zero_bit(rxr->rx_agg_bmap, max);
570 return next;
573 static inline int bnxt_alloc_rx_page(struct bnxt *bp,
574 struct bnxt_rx_ring_info *rxr,
575 u16 prod, gfp_t gfp)
577 struct rx_bd *rxbd =
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;
581 struct page *page;
582 dma_addr_t mapping;
583 u16 sw_prod = rxr->rx_sw_agg_prod;
585 page = alloc_page(gfp);
586 if (!page)
587 return -ENOMEM;
589 mapping = dma_map_page(&pdev->dev, page, 0, PAGE_SIZE,
590 PCI_DMA_FROMDEVICE);
591 if (dma_mapping_error(&pdev->dev, mapping)) {
592 __free_page(page);
593 return -EIO;
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;
607 return 0;
610 static void bnxt_reuse_rx_agg_bufs(struct bnxt_napi *bnapi, u16 cp_cons,
611 u32 agg_bufs)
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;
618 u32 i;
620 for (i = 0; i < agg_bufs; i++) {
621 u16 cons;
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;
625 struct page *page;
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,
664 unsigned int len)
666 int err;
667 struct sk_buff *skb;
669 err = bnxt_alloc_rx_data(bp, rxr, prod, GFP_ATOMIC);
670 if (unlikely(err)) {
671 bnxt_reuse_rx_data(rxr, cons, data);
672 return NULL;
675 skb = build_skb(data, 0);
676 dma_unmap_single(&bp->pdev->dev, dma_addr, bp->rx_buf_use_size,
677 PCI_DMA_FROMDEVICE);
678 if (!skb) {
679 kfree(data);
680 return NULL;
683 skb_reserve(skb, BNXT_RX_OFFSET);
684 skb_put(skb, len);
685 return skb;
688 static struct sk_buff *bnxt_rx_pages(struct bnxt *bp, struct bnxt_napi *bnapi,
689 struct sk_buff *skb, u16 cp_cons,
690 u32 agg_bufs)
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;
696 u32 i;
698 for (i = 0; i < agg_bufs; i++) {
699 u16 cons, frag_len;
700 struct rx_agg_cmp *agg;
701 struct bnxt_sw_rx_agg_bd *cons_rx_buf;
702 struct page *page;
703 dma_addr_t mapping;
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);
731 dev_kfree_skb(skb);
733 cons_rx_buf->page = page;
735 /* Update prod since possibly some pages have been
736 * allocated already.
738 rxr->rx_agg_prod = prod;
739 bnxt_reuse_rx_agg_bufs(bnapi, cp_cons, agg_bufs - i);
740 return NULL;
743 dma_unmap_page(&pdev->dev, mapping, PAGE_SIZE,
744 PCI_DMA_FROMDEVICE);
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;
754 return skb;
757 static int bnxt_agg_bufs_valid(struct bnxt *bp, struct bnxt_cp_ring_info *cpr,
758 u8 agg_bufs, u32 *raw_cons)
760 u16 last;
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,
771 unsigned int len,
772 dma_addr_t mapping)
774 struct bnxt *bp = bnapi->bp;
775 struct pci_dev *pdev = bp->pdev;
776 struct sk_buff *skb;
778 skb = napi_alloc_skb(&bnapi->napi, len);
779 if (!skb)
780 return NULL;
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,
788 bp->rx_copy_thresh,
789 PCI_DMA_FROMDEVICE);
791 skb_put(skb, len);
792 return skb;
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);
800 u16 cons, prod;
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;
804 dma_addr_t mapping;
806 cons = tpa_start->rx_tpa_start_cmp_opaque;
807 prod = rxr->rx_prod;
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);
825 tpa_info->len =
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 */
834 if (hash_type == 3)
835 tpa_info->gso_type = SKB_GSO_TCPV6;
836 tpa_info->rss_hash =
837 le32_to_cpu(tpa_start->rx_tpa_start_cmp_rss_hash);
838 } else {
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)
859 if (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,
869 struct sk_buff *skb)
871 #ifdef CONFIG_INET
872 struct tcphdr *th;
873 int payload_off, tcp_opt_len = 0;
874 int len, nw_off;
875 u16 segs;
877 segs = TPA_END_TPA_SEGS(tpa_end);
878 if (segs == 1)
879 return skb;
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))
889 tcp_opt_len = 12;
891 if (tpa_info->gso_type == SKB_GSO_TCPV4) {
892 struct iphdr *iph;
894 nw_off = payload_off - BNXT_IPV4_HDR_SIZE - tcp_opt_len -
895 ETH_HLEN;
896 skb_set_network_header(skb, nw_off);
897 iph = ip_hdr(skb);
898 skb_set_transport_header(skb, nw_off + sizeof(struct iphdr));
899 len = skb->len - skb_transport_offset(skb);
900 th = tcp_hdr(skb);
901 th->check = ~tcp_v4_check(len, iph->saddr, iph->daddr, 0);
902 } else if (tpa_info->gso_type == SKB_GSO_TCPV6) {
903 struct ipv6hdr *iph;
905 nw_off = payload_off - BNXT_IPV6_HDR_SIZE - tcp_opt_len -
906 ETH_HLEN;
907 skb_set_network_header(skb, nw_off);
908 iph = ipv6_hdr(skb);
909 skb_set_transport_header(skb, nw_off + sizeof(struct ipv6hdr));
910 len = skb->len - skb_transport_offset(skb);
911 th = tcp_hdr(skb);
912 th->check = ~tcp_v6_check(len, &iph->saddr, &iph->daddr, 0);
913 } else {
914 dev_kfree_skb_any(skb);
915 return NULL;
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);
927 } else {
928 struct ipv6hdr *iph = (struct ipv6hdr *)skb->data;
930 if (iph->nexthdr == IPPROTO_UDP)
931 uh = (struct udphdr *)(iph + 1);
933 if (uh) {
934 if (uh->check)
935 skb_shinfo(skb)->gso_type |=
936 SKB_GSO_UDP_TUNNEL_CSUM;
937 else
938 skb_shinfo(skb)->gso_type |= SKB_GSO_UDP_TUNNEL;
941 #endif
942 return skb;
945 static inline struct sk_buff *bnxt_tpa_end(struct bnxt *bp,
946 struct bnxt_napi *bnapi,
947 u32 *raw_cons,
948 struct rx_tpa_end_cmp *tpa_end,
949 struct rx_tpa_end_cmp_ext *tpa_end1,
950 bool *agg_event)
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);
955 u8 *data, agg_bufs;
956 u16 cp_cons = RING_CMP(*raw_cons);
957 unsigned int len;
958 struct bnxt_tpa_info *tpa_info;
959 dma_addr_t mapping;
960 struct sk_buff *skb;
962 tpa_info = &rxr->rx_tpa[agg_id];
963 data = tpa_info->data;
964 prefetch(data);
965 len = tpa_info->len;
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;
971 if (agg_bufs) {
972 if (!bnxt_agg_bufs_valid(bp, cpr, agg_bufs, raw_cons))
973 return ERR_PTR(-EBUSY);
975 *agg_event = true;
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);
983 return NULL;
986 if (len <= bp->rx_copy_thresh) {
987 skb = bnxt_copy_skb(bnapi, data, len, mapping);
988 if (!skb) {
989 bnxt_abort_tpa(bp, bnapi, cp_cons, agg_bufs);
990 return NULL;
992 } else {
993 u8 *new_data;
994 dma_addr_t new_mapping;
996 new_data = __bnxt_alloc_rx_data(bp, &new_mapping, GFP_ATOMIC);
997 if (!new_data) {
998 bnxt_abort_tpa(bp, bnapi, cp_cons, agg_bufs);
999 return NULL;
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);
1009 if (!skb) {
1010 kfree(data);
1011 bnxt_abort_tpa(bp, bnapi, cp_cons, agg_bufs);
1012 return NULL;
1014 skb_reserve(skb, BNXT_RX_OFFSET);
1015 skb_put(skb, len);
1018 if (agg_bufs) {
1019 skb = bnxt_rx_pages(bp, bnapi, skb, cp_cons, agg_bufs);
1020 if (!skb) {
1021 /* Page reuse already handled by bnxt_rx_pages(). */
1022 return NULL;
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;
1048 skb->csum_level =
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);
1055 return 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,
1066 bool *agg_event)
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;
1076 unsigned int len;
1077 u8 *data, agg_bufs, cmp_type;
1078 dma_addr_t dma_addr;
1079 struct sk_buff *skb;
1080 int rc = 0;
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))
1091 return -EBUSY;
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,
1107 agg_event);
1109 if (unlikely(IS_ERR(skb)))
1110 return -EBUSY;
1112 rc = -ENOMEM;
1113 if (likely(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);
1118 else
1119 napi_gro_receive(&bnapi->napi, skb);
1120 rc = 1;
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;
1128 prefetch(data);
1130 agg_bufs = (le32_to_cpu(rxcmp->rx_cmp_misc_v1) & RX_CMP_AGG_BUFS) >>
1131 RX_CMP_AGG_BUFS_SHIFT;
1133 if (agg_bufs) {
1134 if (!bnxt_agg_bufs_valid(bp, cpr, agg_bufs, &tmp_raw_cons))
1135 return -EBUSY;
1137 cp_cons = NEXT_CMP(cp_cons);
1138 *agg_event = true;
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);
1144 if (agg_bufs)
1145 bnxt_reuse_rx_agg_bufs(bnapi, cp_cons, agg_bufs);
1147 rc = -EIO;
1148 goto next_rx;
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);
1157 if (!skb) {
1158 rc = -ENOMEM;
1159 goto next_rx;
1161 } else {
1162 skb = bnxt_rx_skb(bp, rxr, cons, prod, data, dma_addr, len);
1163 if (!skb) {
1164 rc = -ENOMEM;
1165 goto next_rx;
1169 if (agg_bufs) {
1170 skb = bnxt_rx_pages(bp, bnapi, skb, cp_cons, agg_bufs);
1171 if (!skb) {
1172 rc = -ENOMEM;
1173 goto next_rx;
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),
1200 meta_data &
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);
1210 } else {
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);
1221 else
1222 napi_gro_receive(&bnapi->napi, skb);
1223 rc = 1;
1225 next_rx:
1226 rxr->rx_prod = NEXT_RX(prod);
1228 next_rx_no_prod:
1229 *raw_cons = tmp_raw_cons;
1231 return rc;
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 */
1240 switch (event_id) {
1241 case HWRM_ASYNC_EVENT_CMPL_EVENT_ID_LINK_STATUS_CHANGE:
1242 set_bit(BNXT_LINK_CHNG_SP_EVENT, &bp->sp_event);
1243 break;
1244 case HWRM_ASYNC_EVENT_CMPL_EVENT_ID_PF_DRVR_UNLOAD:
1245 set_bit(BNXT_HWRM_PF_UNLOAD_SP_EVENT, &bp->sp_event);
1246 break;
1247 default:
1248 netdev_err(bp->dev, "unhandled ASYNC event (id 0x%x)\n",
1249 event_id);
1250 goto async_event_process_exit;
1252 schedule_work(&bp->sp_task);
1253 async_event_process_exit:
1254 return 0;
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;
1269 else
1270 netdev_err(bp->dev, "Invalid hwrm seq id %d\n", seq_id);
1271 break;
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",
1279 vf_id);
1280 return -EINVAL;
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);
1286 break;
1288 case CMPL_BASE_TYPE_HWRM_ASYNC_EVENT:
1289 bnxt_async_event_process(bp,
1290 (struct hwrm_async_event_cmpl *)txcmp);
1292 default:
1293 break;
1296 return 0;
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);
1308 return IRQ_HANDLED;
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);
1328 u32 int_status;
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)))
1336 return IRQ_NONE;
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))
1344 return IRQ_HANDLED;
1346 napi_schedule(&bnapi->napi);
1347 return IRQ_HANDLED;
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;
1354 u32 cons;
1355 int tx_pkts = 0;
1356 int rx_pkts = 0;
1357 bool rx_event = false;
1358 bool agg_event = false;
1359 struct tx_cmp *txcmp;
1361 while (1) {
1362 int rc;
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))
1368 break;
1370 if (TX_CMP_TYPE(txcmp) == CMP_TYPE_TX_L2_CMP) {
1371 tx_pkts++;
1372 /* return full budget so NAPI will complete. */
1373 if (unlikely(tx_pkts > bp->tx_wake_thresh))
1374 rx_pkts = budget;
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))
1378 rx_pkts += rc;
1379 else if (rc == -EBUSY) /* partial completion */
1380 break;
1381 rx_event = true;
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)
1393 break;
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
1399 * ring.
1401 BNXT_CP_DB(cpr->cp_doorbell, cpr->cp_raw_cons);
1403 if (tx_pkts)
1404 bnxt_tx_int(bp, bnapi, tx_pkts);
1406 if (rx_event) {
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);
1411 if (agg_event) {
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);
1418 return rx_pkts;
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;
1426 int work_done = 0;
1428 if (!bnxt_lock_napi(bnapi))
1429 return budget;
1431 while (1) {
1432 work_done += bnxt_poll_work(bp, bnapi, budget - work_done);
1434 if (work_done >= budget)
1435 break;
1437 if (!bnxt_has_work(bp, cpr)) {
1438 napi_complete(napi);
1439 BNXT_CP_DB_REARM(cpr->cp_doorbell, cpr->cp_raw_cons);
1440 break;
1443 mmiowb();
1444 bnxt_unlock_napi(bnapi);
1445 return work_done;
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);
1467 return rx_work;
1469 #endif
1471 static void bnxt_free_tx_skbs(struct bnxt *bp)
1473 int i, max_idx;
1474 struct pci_dev *pdev = bp->pdev;
1476 if (!bp->tx_ring)
1477 return;
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];
1482 int j;
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;
1487 int k, last;
1489 if (!skb) {
1490 j++;
1491 continue;
1494 tx_buf->skb = NULL;
1496 if (tx_buf->is_push) {
1497 dev_kfree_skb(skb);
1498 j += 2;
1499 continue;
1502 dma_unmap_single(&pdev->dev,
1503 dma_unmap_addr(tx_buf, mapping),
1504 skb_headlen(skb),
1505 PCI_DMA_TODEVICE);
1507 last = tx_buf->nr_frags;
1508 j += 2;
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];
1514 dma_unmap_page(
1515 &pdev->dev,
1516 dma_unmap_addr(tx_buf, mapping),
1517 skb_frag_size(frag), PCI_DMA_TODEVICE);
1519 dev_kfree_skb(skb);
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;
1530 if (!bp->rx_ring)
1531 return;
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];
1537 int j;
1539 if (rxr->rx_tpa) {
1540 for (j = 0; j < MAX_TPA; j++) {
1541 struct bnxt_tpa_info *tpa_info =
1542 &rxr->rx_tpa[j];
1543 u8 *data = tpa_info->data;
1545 if (!data)
1546 continue;
1548 dma_unmap_single(
1549 &pdev->dev,
1550 dma_unmap_addr(tpa_info, mapping),
1551 bp->rx_buf_use_size,
1552 PCI_DMA_FROMDEVICE);
1554 tpa_info->data = NULL;
1556 kfree(data);
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;
1564 if (!data)
1565 continue;
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;
1574 kfree(data);
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;
1582 if (!page)
1583 continue;
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);
1592 __free_page(page);
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;
1606 int i;
1608 for (i = 0; i < ring->nr_pages; i++) {
1609 if (!ring->pg_arr[i])
1610 continue;
1612 dma_free_coherent(&pdev->dev, ring->page_size,
1613 ring->pg_arr[i], ring->dma_arr[i]);
1615 ring->pg_arr[i] = NULL;
1617 if (ring->pg_tbl) {
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) {
1623 vfree(*ring->vmem);
1624 *ring->vmem = NULL;
1628 static int bnxt_alloc_ring(struct bnxt *bp, struct bnxt_ring_struct *ring)
1630 int i;
1631 struct pci_dev *pdev = bp->pdev;
1633 if (ring->nr_pages > 1) {
1634 ring->pg_tbl = dma_alloc_coherent(&pdev->dev,
1635 ring->nr_pages * 8,
1636 &ring->pg_tbl_map,
1637 GFP_KERNEL);
1638 if (!ring->pg_tbl)
1639 return -ENOMEM;
1642 for (i = 0; i < ring->nr_pages; i++) {
1643 ring->pg_arr[i] = dma_alloc_coherent(&pdev->dev,
1644 ring->page_size,
1645 &ring->dma_arr[i],
1646 GFP_KERNEL);
1647 if (!ring->pg_arr[i])
1648 return -ENOMEM;
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);
1656 if (!(*ring->vmem))
1657 return -ENOMEM;
1659 return 0;
1662 static void bnxt_free_rx_rings(struct bnxt *bp)
1664 int i;
1666 if (!bp->rx_ring)
1667 return;
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;
1673 kfree(rxr->rx_tpa);
1674 rxr->rx_tpa = NULL;
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;
1691 if (!bp->rx_ring)
1692 return -ENOMEM;
1694 if (bp->flags & BNXT_FLAG_AGG_RINGS)
1695 agg_rings = 1;
1697 if (bp->flags & BNXT_FLAG_TPA)
1698 tpa_rings = 1;
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);
1707 if (rc)
1708 return rc;
1710 if (agg_rings) {
1711 u16 mem_size;
1713 ring = &rxr->rx_agg_ring_struct;
1714 rc = bnxt_alloc_ring(bp, ring);
1715 if (rc)
1716 return rc;
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)
1722 return -ENOMEM;
1724 if (tpa_rings) {
1725 rxr->rx_tpa = kcalloc(MAX_TPA,
1726 sizeof(struct bnxt_tpa_info),
1727 GFP_KERNEL);
1728 if (!rxr->rx_tpa)
1729 return -ENOMEM;
1733 return 0;
1736 static void bnxt_free_tx_rings(struct bnxt *bp)
1738 int i;
1739 struct pci_dev *pdev = bp->pdev;
1741 if (!bp->tx_ring)
1742 return;
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;
1748 if (txr->tx_push) {
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)
1762 int i, j, rc;
1763 struct pci_dev *pdev = bp->pdev;
1765 bp->tx_push_size = 0;
1766 if (bp->tx_push_thresh) {
1767 int push_size;
1769 push_size = L1_CACHE_ALIGN(sizeof(struct tx_push_bd) +
1770 bp->tx_push_thresh);
1772 if (push_size > 256) {
1773 push_size = 0;
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);
1787 if (rc)
1788 return rc;
1790 if (bp->tx_push_size) {
1791 dma_addr_t mapping;
1793 /* One pre-allocated DMA buffer to backup
1794 * TX push operation
1796 txr->tx_push = dma_alloc_coherent(&pdev->dev,
1797 bp->tx_push_size,
1798 &txr->tx_push_mapping,
1799 GFP_KERNEL);
1801 if (!txr->tx_push)
1802 return -ENOMEM;
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))
1812 j++;
1814 return 0;
1817 static void bnxt_free_cp_rings(struct bnxt *bp)
1819 int i;
1821 if (!bp->bnapi)
1822 return;
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;
1829 if (!bnapi)
1830 continue;
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)
1841 int i, rc;
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;
1848 if (!bnapi)
1849 continue;
1851 cpr = &bnapi->cp_ring;
1852 ring = &cpr->cp_ring_struct;
1854 rc = bnxt_alloc_ring(bp, ring);
1855 if (rc)
1856 return rc;
1858 return 0;
1861 static void bnxt_init_ring_struct(struct bnxt *bp)
1863 int i;
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;
1872 if (!bnapi)
1873 continue;
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;
1884 if (!rxr)
1885 goto skip_rx;
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;
1903 skip_rx:
1904 txr = bnapi->tx_ring;
1905 if (!txr)
1906 continue;
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)
1920 int i;
1921 u32 prod;
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++) {
1926 int j;
1927 struct rx_bd *rxbd;
1929 rxbd = rx_buf_ring[i];
1930 if (!rxbd)
1931 continue;
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;
1945 u32 prod, type;
1946 int i;
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);
1963 break;
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))
1974 return 0;
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);
1986 break;
1988 prod = NEXT_RX_AGG(prod);
1990 rxr->rx_agg_prod = prod;
1992 if (bp->flags & BNXT_FLAG_TPA) {
1993 if (rxr->rx_tpa) {
1994 u8 *data;
1995 dma_addr_t mapping;
1997 for (i = 0; i < MAX_TPA; i++) {
1998 data = __bnxt_alloc_rx_data(bp, &mapping,
1999 GFP_KERNEL);
2000 if (!data)
2001 return -ENOMEM;
2003 rxr->rx_tpa[i].data = data;
2004 rxr->rx_tpa[i].mapping = mapping;
2006 } else {
2007 netdev_err(bp->dev, "No resource allocated for LRO/GRO\n");
2008 return -ENOMEM;
2012 return 0;
2015 static int bnxt_init_rx_rings(struct bnxt *bp)
2017 int i, rc = 0;
2019 for (i = 0; i < bp->rx_nr_rings; i++) {
2020 rc = bnxt_init_one_rx_ring(bp, i);
2021 if (rc)
2022 break;
2025 return rc;
2028 static int bnxt_init_tx_rings(struct bnxt *bp)
2030 u16 i;
2032 bp->tx_wake_thresh = max_t(int, bp->tx_ring_size / 2,
2033 MAX_SKB_FRAGS + 1);
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;
2042 return 0;
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)
2053 int i;
2055 if (irq_re_init) {
2056 bp->grp_info = kcalloc(bp->cp_nr_rings,
2057 sizeof(struct bnxt_ring_grp_info),
2058 GFP_KERNEL);
2059 if (!bp->grp_info)
2060 return -ENOMEM;
2062 for (i = 0; i < bp->cp_nr_rings; i++) {
2063 if (irq_re_init)
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;
2070 return 0;
2073 static void bnxt_free_vnics(struct bnxt *bp)
2075 kfree(bp->vnic_info);
2076 bp->vnic_info = NULL;
2077 bp->nr_vnics = 0;
2080 static int bnxt_alloc_vnics(struct bnxt *bp)
2082 int num_vnics = 1;
2084 #ifdef CONFIG_RFS_ACCEL
2085 if (bp->flags & BNXT_FLAG_RFS)
2086 num_vnics += bp->rx_nr_rings;
2087 #endif
2089 bp->vnic_info = kcalloc(num_vnics, sizeof(struct bnxt_vnic_info),
2090 GFP_KERNEL);
2091 if (!bp->vnic_info)
2092 return -ENOMEM;
2094 bp->nr_vnics = num_vnics;
2095 return 0;
2098 static void bnxt_init_vnics(struct bnxt *bp)
2100 int i;
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) {
2110 if (i == 0)
2111 prandom_bytes(vnic->rss_hash_key,
2112 HW_HASH_KEY_SIZE);
2113 else
2114 memcpy(vnic->rss_hash_key,
2115 bp->vnic_info[0].rss_hash_key,
2116 HW_HASH_KEY_SIZE);
2121 static int bnxt_calc_nr_ring_pages(u32 ring_size, int desc_per_pg)
2123 int pages;
2125 pages = ring_size / desc_per_pg;
2127 if (!pages)
2128 return 1;
2130 pages++;
2132 while (pages & (pages - 1))
2133 pages++;
2135 return pages;
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
2148 * be set on entry.
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)
2167 agg_factor = 4;
2169 bp->flags &= ~BNXT_FLAG_JUMBO;
2170 if (rx_space > PAGE_SIZE) {
2171 u32 jumbo_factor;
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,
2182 RX_DESC_CNT);
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)
2224 int i;
2225 struct bnxt_vnic_info *vnic;
2226 struct pci_dev *pdev = bp->pdev;
2228 if (!bp->vnic_info)
2229 return;
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,
2248 vnic->rss_table,
2249 vnic->rss_table_dma_addr);
2250 vnic->rss_table = NULL;
2253 vnic->rss_hash_key = NULL;
2254 vnic->flags = 0;
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;
2263 int max_rings;
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;
2271 if (mem_size > 0) {
2272 vnic->uc_list = kmalloc(mem_size, GFP_KERNEL);
2273 if (!vnic->uc_list) {
2274 rc = -ENOMEM;
2275 goto out;
2280 if (vnic->flags & BNXT_VNIC_MCAST_FLAG) {
2281 vnic->mc_list_size = BNXT_MAX_MC_ADDRS * ETH_ALEN;
2282 vnic->mc_list =
2283 dma_alloc_coherent(&pdev->dev,
2284 vnic->mc_list_size,
2285 &vnic->mc_list_mapping,
2286 GFP_KERNEL);
2287 if (!vnic->mc_list) {
2288 rc = -ENOMEM;
2289 goto out;
2293 if (vnic->flags & BNXT_VNIC_RSS_FLAG)
2294 max_rings = bp->rx_nr_rings;
2295 else
2296 max_rings = 1;
2298 vnic->fw_grp_ids = kcalloc(max_rings, sizeof(u16), GFP_KERNEL);
2299 if (!vnic->fw_grp_ids) {
2300 rc = -ENOMEM;
2301 goto out;
2304 /* Allocate rss table and hash key */
2305 vnic->rss_table = dma_alloc_coherent(&pdev->dev, PAGE_SIZE,
2306 &vnic->rss_table_dma_addr,
2307 GFP_KERNEL);
2308 if (!vnic->rss_table) {
2309 rc = -ENOMEM;
2310 goto out;
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;
2318 return 0;
2320 out:
2321 return rc;
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,
2347 GFP_KERNEL);
2348 if (!bp->hwrm_cmd_resp_addr)
2349 return -ENOMEM;
2350 bp->hwrm_dbg_resp_addr = dma_alloc_coherent(&pdev->dev,
2351 HWRM_DBG_REG_BUF_SIZE,
2352 &bp->hwrm_dbg_resp_dma_addr,
2353 GFP_KERNEL);
2354 if (!bp->hwrm_dbg_resp_addr)
2355 netdev_warn(bp->dev, "fail to alloc debug register dma mem\n");
2357 return 0;
2360 static void bnxt_free_stats(struct bnxt *bp)
2362 u32 size, i;
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;
2373 if (!bp->bnapi)
2374 return;
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,
2384 cpr->hw_stats_map);
2385 cpr->hw_stats = NULL;
2390 static int bnxt_alloc_stats(struct bnxt *bp)
2392 u32 size, i;
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,
2402 &cpr->hw_stats_map,
2403 GFP_KERNEL);
2404 if (!cpr->hw_stats)
2405 return -ENOMEM;
2407 cpr->hw_stats_ctx_id = INVALID_STATS_CTX_ID;
2410 if (BNXT_PF(bp)) {
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,
2417 GFP_KERNEL);
2418 if (!bp->hw_rx_port_stats)
2419 return -ENOMEM;
2421 bp->hw_tx_port_stats = (void *)(bp->hw_rx_port_stats + 1) +
2422 512;
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;
2427 return 0;
2430 static void bnxt_clear_ring_indices(struct bnxt *bp)
2432 int i;
2434 if (!bp->bnapi)
2435 return;
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;
2443 if (!bnapi)
2444 continue;
2446 cpr = &bnapi->cp_ring;
2447 cpr->cp_raw_cons = 0;
2449 txr = bnapi->tx_ring;
2450 if (txr) {
2451 txr->tx_prod = 0;
2452 txr->tx_cons = 0;
2455 rxr = bnapi->rx_ring;
2456 if (rxr) {
2457 rxr->rx_prod = 0;
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
2467 int i;
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);
2480 kfree(fltr);
2483 if (irq_reinit) {
2484 kfree(bp->ntp_fltr_bmap);
2485 bp->ntp_fltr_bmap = NULL;
2487 bp->ntp_fltr_count = 0;
2488 #endif
2491 static int bnxt_alloc_ntp_fltrs(struct bnxt *bp)
2493 #ifdef CONFIG_RFS_ACCEL
2494 int i, rc = 0;
2496 if (!(bp->flags & BNXT_FLAG_RFS))
2497 return 0;
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),
2504 GFP_KERNEL);
2506 if (!bp->ntp_fltr_bmap)
2507 rc = -ENOMEM;
2509 return rc;
2510 #else
2511 return 0;
2512 #endif
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);
2522 if (irq_re_init) {
2523 bnxt_free_stats(bp);
2524 bnxt_free_ring_grps(bp);
2525 bnxt_free_vnics(bp);
2526 kfree(bp->tx_ring);
2527 bp->tx_ring = NULL;
2528 kfree(bp->rx_ring);
2529 bp->rx_ring = NULL;
2530 kfree(bp->bnapi);
2531 bp->bnapi = NULL;
2532 } else {
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;
2540 void *bnapi;
2542 if (irq_re_init) {
2543 /* Allocate bnapi mem pointer array and mem block for
2544 * all queues
2546 arr_size = L1_CACHE_ALIGN(sizeof(struct bnxt_napi *) *
2547 bp->cp_nr_rings);
2548 size = L1_CACHE_ALIGN(sizeof(struct bnxt_napi));
2549 bnapi = kzalloc(arr_size + size * bp->cp_nr_rings, GFP_KERNEL);
2550 if (!bnapi)
2551 return -ENOMEM;
2553 bp->bnapi = bnapi;
2554 bnapi += arr_size;
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),
2563 GFP_KERNEL);
2564 if (!bp->rx_ring)
2565 return -ENOMEM;
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),
2574 GFP_KERNEL);
2575 if (!bp->tx_ring)
2576 return -ENOMEM;
2578 if (bp->flags & BNXT_FLAG_SHARED_RINGS)
2579 j = 0;
2580 else
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);
2589 if (rc)
2590 goto alloc_mem_err;
2592 rc = bnxt_alloc_ntp_fltrs(bp);
2593 if (rc)
2594 goto alloc_mem_err;
2596 rc = bnxt_alloc_vnics(bp);
2597 if (rc)
2598 goto alloc_mem_err;
2601 bnxt_init_ring_struct(bp);
2603 rc = bnxt_alloc_rx_rings(bp);
2604 if (rc)
2605 goto alloc_mem_err;
2607 rc = bnxt_alloc_tx_rings(bp);
2608 if (rc)
2609 goto alloc_mem_err;
2611 rc = bnxt_alloc_cp_rings(bp);
2612 if (rc)
2613 goto alloc_mem_err;
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);
2618 if (rc)
2619 goto alloc_mem_err;
2620 return 0;
2622 alloc_mem_err:
2623 bnxt_free_mem(bp, true);
2624 return rc;
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;
2643 u32 *data = 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 */
2660 if (intr_process)
2661 bp->hwrm_intr_seq_id = le16_to_cpu(req->seq_id);
2663 /* Ring channel doorbell */
2664 writel(1, bp->bar0 + 0x100);
2666 if (!timeout)
2667 timeout = DFLT_HWRM_CMD_TIMEOUT;
2669 i = 0;
2670 if (intr_process) {
2671 /* Wait until hwrm response cmpl interrupt is processed */
2672 while (bp->hwrm_intr_seq_id != HWRM_SEQ_ID_INVALID &&
2673 i++ < timeout) {
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));
2680 return -1;
2682 } else {
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) >>
2687 HWRM_RESP_LEN_SFT;
2688 if (len)
2689 break;
2690 usleep_range(600, 800);
2693 if (i >= timeout) {
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);
2697 return -1;
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)
2704 break;
2705 usleep_range(600, 800);
2708 if (i >= timeout) {
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);
2712 return -1;
2716 rc = le16_to_cpu(resp->error_code);
2717 if (rc && !silent)
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);
2721 return 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)
2731 int rc;
2733 mutex_lock(&bp->hwrm_cmd_lock);
2734 rc = _hwrm_send_message(bp, msg, msg_len, timeout);
2735 mutex_unlock(&bp->hwrm_cmd_lock);
2736 return rc;
2739 int hwrm_send_message_silent(struct bnxt *bp, void *msg, u32 msg_len,
2740 int timeout)
2742 int rc;
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);
2747 return rc;
2750 static int bnxt_hwrm_func_drv_rgtr(struct bnxt *bp)
2752 struct hwrm_func_drv_rgtr_input req = {0};
2753 int i;
2755 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_DRV_RGTR, -1, -1);
2757 req.enables =
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;
2771 if (BNXT_PF(bp)) {
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]);
2782 req.enables |=
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)
2799 u32 rc = 0;
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;
2808 break;
2809 case TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_GENEVE:
2810 req.tunnel_dst_port_id = bp->nge_fw_dst_port_id;
2811 break;
2812 default:
2813 break;
2816 rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
2817 if (rc)
2818 netdev_err(bp->dev, "hwrm_tunnel_dst_port_free failed. rc:%d\n",
2819 rc);
2820 return rc;
2823 static int bnxt_hwrm_tunnel_dst_port_alloc(struct bnxt *bp, __be16 port,
2824 u8 tunnel_type)
2826 u32 rc = 0;
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);
2837 if (rc) {
2838 netdev_err(bp->dev, "hwrm_tunnel_dst_port_alloc failed. rc:%d\n",
2839 rc);
2840 goto err_out;
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;
2848 err_out:
2849 mutex_unlock(&bp->hwrm_cmd_lock);
2850 return rc;
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)
2897 int rc = 0;
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);
2927 if (!rc)
2928 fltr->filter_id = resp->ntuple_filter_id;
2929 mutex_unlock(&bp->hwrm_cmd_lock);
2930 return rc;
2932 #endif
2934 static int bnxt_hwrm_set_vnic_filter(struct bnxt *bp, u16 vnic_id, u16 idx,
2935 u8 *mac_addr)
2937 u32 rc = 0;
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);
2945 req.enables =
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);
2959 if (!rc)
2960 bp->vnic_info[vnic_id].fw_l2_filter_id[idx] =
2961 resp->l2_filter_id;
2962 mutex_unlock(&bp->hwrm_cmd_lock);
2963 return rc;
2966 static int bnxt_hwrm_clear_vnic_filter(struct bnxt *bp)
2968 u16 i, j, num_of_vnics = 1; /* only vnic 0 supported */
2969 int rc = 0;
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),
2985 HWRM_CMD_TIMEOUT);
2987 vnic->uc_filter_count = 0;
2989 mutex_unlock(&bp->hwrm_cmd_lock);
2991 return rc;
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);
3001 if (tpa_flags) {
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);
3015 req.enables =
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;
3026 } else {
3027 n = mss / PAGE_SIZE;
3028 if (mss & (PAGE_SIZE - 1))
3029 n++;
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)
3051 return 0;
3053 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_RSS_CFG, -1, -1);
3054 if (set_rss) {
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;
3064 else
3065 max_rings = 1;
3067 /* Fill the RSS indirection table with ring group ids */
3068 for (i = 0, j = 0; i < HW_HASH_INDEX_SIZE; i++, j++) {
3069 if (j == max_rings)
3070 j = 0;
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);
3091 req.enables =
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)
3115 int i;
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)
3128 int rc;
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,
3134 -1);
3136 mutex_lock(&bp->hwrm_cmd_lock);
3137 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3138 if (!rc)
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);
3143 return rc;
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)
3159 ring = 0;
3160 else if (vnic->flags & BNXT_VNIC_RFS_FLAG)
3161 ring = vnic_id - 1;
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 +
3169 VLAN_HLEN);
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)
3179 u32 rc = 0;
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);
3185 req.vnic_id =
3186 cpu_to_le32(bp->vnic_info[vnic_id].fw_vnic_id);
3188 rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3189 if (rc)
3190 return rc;
3191 bp->vnic_info[vnic_id].fw_vnic_id = INVALID_HW_RING_ID;
3193 return rc;
3196 static void bnxt_hwrm_vnic_free(struct bnxt *bp)
3198 u16 i;
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)
3208 int rc = 0;
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",
3218 j, nr_rings);
3219 break;
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;
3226 if (vnic_id == 0)
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);
3233 if (!rc)
3234 bp->vnic_info[vnic_id].fw_vnic_id = le32_to_cpu(resp->vnic_id);
3235 mutex_unlock(&bp->hwrm_cmd_lock);
3236 return rc;
3239 static int bnxt_hwrm_ring_grp_alloc(struct bnxt *bp)
3241 u16 i;
3242 u32 rc = 0;
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),
3259 HWRM_CMD_TIMEOUT);
3260 if (rc)
3261 break;
3263 bp->grp_info[grp_idx].fw_grp_id =
3264 le32_to_cpu(resp->ring_group_id);
3266 mutex_unlock(&bp->hwrm_cmd_lock);
3267 return rc;
3270 static int bnxt_hwrm_ring_grp_free(struct bnxt *bp)
3272 u16 i;
3273 u32 rc = 0;
3274 struct hwrm_ring_grp_free_input req = {0};
3276 if (!bp->grp_info)
3277 return 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)
3284 continue;
3285 req.ring_group_id =
3286 cpu_to_le32(bp->grp_info[i].fw_grp_id);
3288 rc = _hwrm_send_message(bp, &req, sizeof(req),
3289 HWRM_CMD_TIMEOUT);
3290 if (rc)
3291 break;
3292 bp->grp_info[i].fw_grp_id = INVALID_HW_RING_ID;
3294 mutex_unlock(&bp->hwrm_cmd_lock);
3295 return rc;
3298 static int hwrm_ring_alloc_send_msg(struct bnxt *bp,
3299 struct bnxt_ring_struct *ring,
3300 u32 ring_type, u32 map_index,
3301 u32 stats_ctx_id)
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;
3306 u16 ring_id;
3308 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_RING_ALLOC, -1, -1);
3310 req.enables = 0;
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;
3316 } else {
3317 req.page_tbl_addr = cpu_to_le64(ring->dma_arr[0]);
3319 req.fbo = 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 */
3327 req.cmpl_ring_id =
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);
3332 break;
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);
3336 break;
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);
3340 break;
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;
3346 break;
3347 default:
3348 netdev_err(bp->dev, "hwrm alloc invalid ring type %d\n",
3349 ring_type);
3350 return -1;
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);
3359 if (rc || err) {
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",
3363 rc, err);
3364 return -1;
3366 case RING_FREE_REQ_RING_TYPE_RX:
3367 netdev_err(bp->dev, "hwrm_ring_alloc rx failed. rc:%x err:%x\n",
3368 rc, err);
3369 return -1;
3371 case RING_FREE_REQ_RING_TYPE_TX:
3372 netdev_err(bp->dev, "hwrm_ring_alloc tx failed. rc:%x err:%x\n",
3373 rc, err);
3374 return -1;
3376 default:
3377 netdev_err(bp->dev, "Invalid ring\n");
3378 return -1;
3381 ring->fw_ring_id = ring_id;
3382 return rc;
3385 static int bnxt_hwrm_ring_alloc(struct bnxt *bp)
3387 int i, rc = 0;
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);
3397 if (rc)
3398 goto err_out;
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);
3411 if (rc)
3412 goto err_out;
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);
3423 if (rc)
3424 goto err_out;
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,
3440 map_idx,
3441 INVALID_STATS_CTX_ID);
3442 if (rc)
3443 goto err_out;
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;
3451 err_out:
3452 return rc;
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)
3459 int rc;
3460 struct hwrm_ring_free_input req = {0};
3461 struct hwrm_ring_free_output *resp = bp->hwrm_cmd_resp_addr;
3462 u16 error_code;
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",
3477 rc);
3478 return rc;
3479 case RING_FREE_REQ_RING_TYPE_RX:
3480 netdev_err(bp->dev, "hwrm_ring_free rx failed. rc:%d\n",
3481 rc);
3482 return rc;
3483 case RING_FREE_REQ_RING_TYPE_TX:
3484 netdev_err(bp->dev, "hwrm_ring_free tx failed. rc:%d\n",
3485 rc);
3486 return rc;
3487 default:
3488 netdev_err(bp->dev, "Invalid ring\n");
3489 return -1;
3492 return 0;
3495 static void bnxt_hwrm_ring_free(struct bnxt *bp, bool close_path)
3497 int i;
3499 if (!bp->bnapi)
3500 return;
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 =
3530 INVALID_HW_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 =
3547 INVALID_HW_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)
3583 int i, rc = 0;
3584 struct hwrm_ring_cmpl_ring_cfg_aggint_params_input req_rx = {0},
3585 req_tx = {0}, *req;
3586 u16 max_buf, max_buf_irq;
3587 u16 buf_tmr, buf_tmr_irq;
3588 u32 flags;
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];
3636 req = &req_rx;
3637 if (!bnapi->rx_ring)
3638 req = &req_tx;
3639 req->ring_id = cpu_to_le16(bp->grp_info[i].cp_fw_ring_id);
3641 rc = _hwrm_send_message(bp, req, sizeof(*req),
3642 HWRM_CMD_TIMEOUT);
3643 if (rc)
3644 break;
3646 mutex_unlock(&bp->hwrm_cmd_lock);
3647 return rc;
3650 static int bnxt_hwrm_stat_ctx_free(struct bnxt *bp)
3652 int rc = 0, i;
3653 struct hwrm_stat_ctx_free_input req = {0};
3655 if (!bp->bnapi)
3656 return 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),
3669 HWRM_CMD_TIMEOUT);
3670 if (rc)
3671 break;
3673 cpr->hw_stats_ctx_id = INVALID_STATS_CTX_ID;
3676 mutex_unlock(&bp->hwrm_cmd_lock);
3677 return rc;
3680 static int bnxt_hwrm_stat_ctx_alloc(struct bnxt *bp)
3682 int rc = 0, i;
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),
3698 HWRM_CMD_TIMEOUT);
3699 if (rc)
3700 break;
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);
3707 return 0;
3710 int bnxt_hwrm_func_qcaps(struct bnxt *bp)
3712 int rc = 0;
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);
3721 if (rc)
3722 goto hwrm_func_qcaps_exit;
3724 if (BNXT_PF(bp)) {
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);
3749 } else {
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);
3758 else
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);
3771 #endif
3774 bp->tx_push_thresh = 0;
3775 if (resp->flags &
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);
3781 return rc;
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);
3789 req.enables = 0;
3791 return hwrm_send_message(bp, &req, sizeof(req), HWRM_RESET_TIMEOUT);
3794 static int bnxt_hwrm_queue_qportcfg(struct bnxt *bp)
3796 int rc = 0;
3797 struct hwrm_queue_qportcfg_input req = {0};
3798 struct hwrm_queue_qportcfg_output *resp = bp->hwrm_cmd_resp_addr;
3799 u8 i, *qptr;
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);
3805 if (rc)
3806 goto qportcfg_exit;
3808 if (!resp->max_configurable_queues) {
3809 rc = -EINVAL;
3810 goto qportcfg_exit;
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++;
3822 qportcfg_exit:
3823 mutex_unlock(&bp->hwrm_cmd_lock);
3824 return rc;
3827 static int bnxt_hwrm_ver_get(struct bnxt *bp)
3829 int rc;
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);
3840 if (rc)
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);
3864 hwrm_ver_get_exit:
3865 mutex_unlock(&bp->hwrm_cmd_lock);
3866 return rc;
3869 static int bnxt_hwrm_port_qstats(struct bnxt *bp)
3871 int rc;
3872 struct bnxt_pf_info *pf = &bp->pf;
3873 struct hwrm_port_qstats_input req = {0};
3875 if (!(bp->flags & BNXT_FLAG_PORT_STATS))
3876 return 0;
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);
3883 return rc;
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)
3902 int rc, i;
3903 u32 tpa_flags = 0;
3905 if (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);
3909 if (rc) {
3910 netdev_err(bp->dev, "hwrm vnic set tpa failure rc for vnic %d: %x\n",
3911 rc, i);
3912 return rc;
3915 return 0;
3918 static void bnxt_hwrm_clear_vnic_rss(struct bnxt *bp)
3920 int i;
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,
3927 bool irq_re_init)
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);
3941 if (irq_re_init) {
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)
3949 int rc;
3951 /* allocate context for vnic */
3952 rc = bnxt_hwrm_vnic_ctx_alloc(bp, vnic_id);
3953 if (rc) {
3954 netdev_err(bp->dev, "hwrm vnic %d alloc failure rc: %x\n",
3955 vnic_id, rc);
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);
3962 if (rc) {
3963 netdev_err(bp->dev, "hwrm vnic %d cfg failure rc: %x\n",
3964 vnic_id, rc);
3965 goto vnic_setup_err;
3968 /* Enable RSS hashing on vnic */
3969 rc = bnxt_hwrm_vnic_set_rss(bp, vnic_id, true);
3970 if (rc) {
3971 netdev_err(bp->dev, "hwrm vnic %d set rss failure rc: %x\n",
3972 vnic_id, rc);
3973 goto vnic_setup_err;
3976 if (bp->flags & BNXT_FLAG_AGG_RINGS) {
3977 rc = bnxt_hwrm_vnic_set_hds(bp, vnic_id);
3978 if (rc) {
3979 netdev_err(bp->dev, "hwrm vnic %d set hds failure rc: %x\n",
3980 vnic_id, rc);
3984 vnic_setup_err:
3985 return rc;
3988 static int bnxt_alloc_rfs_vnics(struct bnxt *bp)
3990 #ifdef CONFIG_RFS_ACCEL
3991 int i, rc = 0;
3993 for (i = 0; i < bp->rx_nr_rings; i++) {
3994 u16 vnic_id = i + 1;
3995 u16 ring_id = i;
3997 if (vnic_id >= bp->nr_vnics)
3998 break;
4000 bp->vnic_info[vnic_id].flags |= BNXT_VNIC_RFS_FLAG;
4001 rc = bnxt_hwrm_vnic_alloc(bp, vnic_id, ring_id, 1);
4002 if (rc) {
4003 netdev_err(bp->dev, "hwrm vnic %d alloc failure rc: %x\n",
4004 vnic_id, rc);
4005 break;
4007 rc = bnxt_setup_vnic(bp, vnic_id);
4008 if (rc)
4009 break;
4011 return rc;
4012 #else
4013 return 0;
4014 #endif
4017 static int bnxt_cfg_rx_mode(struct bnxt *);
4019 static int bnxt_init_chip(struct bnxt *bp, bool irq_re_init)
4021 int rc = 0;
4023 if (irq_re_init) {
4024 rc = bnxt_hwrm_stat_ctx_alloc(bp);
4025 if (rc) {
4026 netdev_err(bp->dev, "hwrm stat ctx alloc failure rc: %x\n",
4027 rc);
4028 goto err_out;
4032 rc = bnxt_hwrm_ring_alloc(bp);
4033 if (rc) {
4034 netdev_err(bp->dev, "hwrm ring alloc failure rc: %x\n", rc);
4035 goto err_out;
4038 rc = bnxt_hwrm_ring_grp_alloc(bp);
4039 if (rc) {
4040 netdev_err(bp->dev, "hwrm_ring_grp alloc failure: %x\n", rc);
4041 goto err_out;
4044 /* default vnic 0 */
4045 rc = bnxt_hwrm_vnic_alloc(bp, 0, 0, bp->rx_nr_rings);
4046 if (rc) {
4047 netdev_err(bp->dev, "hwrm vnic alloc failure rc: %x\n", rc);
4048 goto err_out;
4051 rc = bnxt_setup_vnic(bp, 0);
4052 if (rc)
4053 goto err_out;
4055 if (bp->flags & BNXT_FLAG_RFS) {
4056 rc = bnxt_alloc_rfs_vnics(bp);
4057 if (rc)
4058 goto err_out;
4061 if (bp->flags & BNXT_FLAG_TPA) {
4062 rc = bnxt_set_tpa(bp, true);
4063 if (rc)
4064 goto err_out;
4067 if (BNXT_VF(bp))
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);
4072 if (rc) {
4073 netdev_err(bp->dev, "HWRM vnic filter failure rc: %x\n", rc);
4074 goto err_out;
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);
4085 if (rc)
4086 goto err_out;
4088 rc = bnxt_hwrm_set_coal(bp);
4089 if (rc)
4090 netdev_warn(bp->dev, "HWRM set coalescing failure rc: %x\n",
4091 rc);
4093 return 0;
4095 err_out:
4096 bnxt_hwrm_resource_free(bp, 0, true);
4098 return rc;
4101 static int bnxt_shutdown_nic(struct bnxt *bp, bool irq_re_init)
4103 bnxt_hwrm_resource_free(bp, 1, irq_re_init);
4104 return 0;
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)
4119 int i;
4121 if (!bp->bnapi)
4122 return;
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)
4134 int i;
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)
4147 int rc;
4148 struct net_device *dev = bp->dev;
4150 rc = netif_set_real_num_tx_queues(dev, bp->tx_nr_rings);
4151 if (rc)
4152 return rc;
4154 rc = netif_set_real_num_rx_queues(dev, bp->rx_nr_rings);
4155 if (rc)
4156 return rc;
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);
4161 #endif
4163 return rc;
4166 static int bnxt_trim_rings(struct bnxt *bp, int *rx, int *tx, int max,
4167 bool shared)
4169 int _rx = *rx, _tx = *tx;
4171 if (shared) {
4172 *rx = min_t(int, _rx, max);
4173 *tx = min_t(int, _tx, max);
4174 } else {
4175 if (max < 2)
4176 return -ENOMEM;
4178 while (_rx + _tx > max) {
4179 if (_rx > _tx && _rx > 1)
4180 _rx--;
4181 else if (_tx > 1)
4182 _tx--;
4184 *rx = _rx;
4185 *tx = _tx;
4187 return 0;
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);
4201 if (!msix_ent)
4202 return -ENOMEM;
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))
4210 min = 2;
4212 total_vecs = pci_enable_msix_range(bp->pdev, msix_ent, min, total_vecs);
4213 if (total_vecs < 0) {
4214 rc = -ENODEV;
4215 goto msix_setup_exit;
4218 bp->irq_tbl = kcalloc(total_vecs, sizeof(struct bnxt_irq), GFP_KERNEL);
4219 if (bp->irq_tbl) {
4220 int tcs;
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);
4225 if (rc)
4226 goto msix_setup_exit;
4228 bp->tx_nr_rings_per_tc = bp->tx_nr_rings;
4229 tcs = netdev_get_num_tc(dev);
4230 if (tcs > 1) {
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;
4235 } else {
4236 int i, off, count;
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;
4241 off = i * count;
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++) {
4249 char *attr;
4251 bp->irq_tbl[i].vector = msix_ent[i].vector;
4252 if (bp->flags & BNXT_FLAG_SHARED_RINGS)
4253 attr = "TxRx";
4254 else if (i < bp->rx_nr_rings)
4255 attr = "rx";
4256 else
4257 attr = "tx";
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);
4264 if (rc)
4265 goto msix_setup_exit;
4266 } else {
4267 rc = -ENOMEM;
4268 goto msix_setup_exit;
4270 bp->flags |= BNXT_FLAG_USING_MSIX;
4271 kfree(msix_ent);
4272 return 0;
4274 msix_setup_exit:
4275 netdev_err(bp->dev, "bnxt_setup_msix err: %x\n", rc);
4276 pci_disable_msix(bp->pdev);
4277 kfree(msix_ent);
4278 return rc;
4281 static int bnxt_setup_inta(struct bnxt *bp)
4283 int rc;
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);
4290 if (!bp->irq_tbl) {
4291 rc = -ENOMEM;
4292 return rc;
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);
4304 return rc;
4307 static int bnxt_setup_int_mode(struct bnxt *bp)
4309 int rc = 0;
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);
4318 return rc;
4321 static void bnxt_free_irq(struct bnxt *bp)
4323 struct bnxt_irq *irq;
4324 int i;
4326 #ifdef CONFIG_RFS_ACCEL
4327 free_irq_cpu_rmap(bp->dev->rx_cpu_rmap);
4328 bp->dev->rx_cpu_rmap = NULL;
4329 #endif
4330 if (!bp->irq_tbl)
4331 return;
4333 for (i = 0; i < bp->cp_nr_rings; i++) {
4334 irq = &bp->irq_tbl[i];
4335 if (irq->requested)
4336 free_irq(irq->vector, bp->bnapi[i]);
4337 irq->requested = 0;
4339 if (bp->flags & BNXT_FLAG_USING_MSIX)
4340 pci_disable_msix(bp->pdev);
4341 kfree(bp->irq_tbl);
4342 bp->irq_tbl = NULL;
4345 static int bnxt_request_irq(struct bnxt *bp)
4347 int i, j, rc = 0;
4348 unsigned long flags = 0;
4349 #ifdef CONFIG_RFS_ACCEL
4350 struct cpu_rmap *rmap = bp->dev->rx_cpu_rmap;
4351 #endif
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);
4361 if (rc)
4362 netdev_warn(bp->dev, "failed adding irq rmap for ring %d\n",
4364 j++;
4366 #endif
4367 rc = request_irq(irq->vector, irq->handler, flags, irq->name,
4368 bp->bnapi[i]);
4369 if (rc)
4370 break;
4372 irq->requested = 1;
4374 return rc;
4377 static void bnxt_del_napi(struct bnxt *bp)
4379 int i;
4381 if (!bp->bnapi)
4382 return;
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)
4394 int i;
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,
4401 bnxt_poll, 64);
4403 } else {
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)
4411 int i;
4413 if (!bp->bnapi)
4414 return;
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)
4424 int i;
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)
4434 int i;
4435 struct bnxt_tx_ring_info *txr;
4436 struct netdev_queue *txq;
4438 if (bp->tx_ring) {
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)
4454 int i;
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);
4461 txr->dev_state = 0;
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) {
4471 const char *duplex;
4472 const char *flow_ctrl;
4473 u16 speed;
4475 netif_carrier_on(bp->dev);
4476 if (bp->link_info.duplex == BNXT_LINK_DUPLEX_FULL)
4477 duplex = "full";
4478 else
4479 duplex = "half";
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";
4486 else
4487 flow_ctrl = "none";
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);
4491 } else {
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)
4499 int rc = 0;
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);
4509 if (rc) {
4510 mutex_unlock(&bp->hwrm_cmd_lock);
4511 return rc;
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);
4525 else
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;
4544 else
4545 link_info->link_up = 0;
4546 if (link_up != link_info->link_up)
4547 bnxt_report_link(bp);
4548 } else {
4549 /* alwasy link down if not require to update link state */
4550 link_info->link_up = 0;
4552 mutex_unlock(&bp->hwrm_cmd_lock);
4553 return 0;
4556 static void
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)
4561 req->auto_pause =
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;
4567 req->enables |=
4568 cpu_to_le32(PORT_PHY_CFG_REQ_ENABLES_AUTO_PAUSE);
4569 } else {
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;
4574 req->enables |=
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) {
4592 req->auto_mode |=
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);
4600 req->flags |=
4601 cpu_to_le32(PORT_PHY_CFG_REQ_FLAGS_RESTART_AUTONEG);
4602 } else {
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};
4614 int rc;
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);
4638 return rc;
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);
4646 if (set_pause)
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)
4655 int rc;
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);
4661 if (rc) {
4662 netdev_err(bp->dev, "failed to update link (rc: %x)\n",
4663 rc);
4664 return rc;
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))
4675 update_link = true;
4676 if (link_info->req_link_speed != link_info->force_link_speed)
4677 update_link = true;
4678 if (link_info->req_duplex != link_info->duplex_setting)
4679 update_link = true;
4680 } else {
4681 if (link_info->auto_mode == BNXT_LINK_AUTO_NONE)
4682 update_link = true;
4683 if (link_info->advertising != link_info->auto_link_speeds)
4684 update_link = true;
4687 if (update_link)
4688 rc = bnxt_hwrm_set_link_setting(bp, update_pause);
4689 else if (update_pause)
4690 rc = bnxt_hwrm_set_pause(bp);
4691 if (rc) {
4692 netdev_err(bp->dev, "failed to update phy setting (rc: %x)\n",
4693 rc);
4694 return rc;
4697 return rc;
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
4703 * register blocks.
4705 static void bnxt_preset_reg_win(struct bnxt *bp)
4707 if (BNXT_PF(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)
4716 int rc = 0;
4718 bnxt_preset_reg_win(bp);
4719 netif_carrier_off(bp->dev);
4720 if (irq_re_init) {
4721 rc = bnxt_setup_int_mode(bp);
4722 if (rc) {
4723 netdev_err(bp->dev, "bnxt_setup_int_mode err: %x\n",
4724 rc);
4725 return rc;
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);
4736 if (rc) {
4737 netdev_err(bp->dev, "bnxt_alloc_mem err: %x\n", rc);
4738 goto open_err_free_mem;
4741 if (irq_re_init) {
4742 bnxt_init_napi(bp);
4743 rc = bnxt_request_irq(bp);
4744 if (rc) {
4745 netdev_err(bp->dev, "bnxt_request_irq err: %x\n", rc);
4746 goto open_err;
4750 bnxt_enable_napi(bp);
4752 rc = bnxt_init_nic(bp, irq_re_init);
4753 if (rc) {
4754 netdev_err(bp->dev, "bnxt_init_nic err: %x\n", rc);
4755 goto open_err;
4758 if (link_re_init) {
4759 rc = bnxt_update_phy_setting(bp);
4760 if (rc)
4761 netdev_warn(bp->dev, "failed to update phy settings\n");
4764 if (irq_re_init) {
4765 #if defined(CONFIG_VXLAN) || defined(CONFIG_VXLAN_MODULE)
4766 vxlan_get_rx_port(bp->dev);
4767 #endif
4768 if (!bnxt_hwrm_tunnel_dst_port_alloc(
4769 bp, htons(0x17c1),
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 */
4777 bnxt_tx_enable(bp);
4778 mod_timer(&bp->timer, jiffies + bp->current_interval);
4779 bnxt_update_link(bp, true);
4781 return 0;
4783 open_err:
4784 bnxt_disable_napi(bp);
4785 bnxt_del_napi(bp);
4787 open_err_free_mem:
4788 bnxt_free_skbs(bp);
4789 bnxt_free_irq(bp);
4790 bnxt_free_mem(bp, true);
4791 return rc;
4794 /* rtnl_lock held */
4795 int bnxt_open_nic(struct bnxt *bp, bool irq_re_init, bool link_re_init)
4797 int rc = 0;
4799 rc = __bnxt_open_nic(bp, irq_re_init, link_re_init);
4800 if (rc) {
4801 netdev_err(bp->dev, "nic open fail (rc: %x)\n", rc);
4802 dev_close(bp->dev);
4804 return rc;
4807 static int bnxt_open(struct net_device *dev)
4809 struct bnxt *bp = netdev_priv(dev);
4810 int rc = 0;
4812 rc = bnxt_hwrm_func_reset(bp);
4813 if (rc) {
4814 netdev_err(bp->dev, "hwrm chip reset failure rc: %x\n",
4815 rc);
4816 rc = -1;
4817 return rc;
4819 return __bnxt_open_nic(bp, true, true);
4822 static void bnxt_disable_int_sync(struct bnxt *bp)
4824 int i;
4826 atomic_inc(&bp->intr_sem);
4827 if (!netif_running(bp->dev))
4828 return;
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)
4837 int rc = 0;
4839 #ifdef CONFIG_BNXT_SRIOV
4840 if (bp->sriov_cfg) {
4841 rc = wait_event_interruptible_timeout(bp->sriov_cfg_wait,
4842 !bp->sriov_cfg,
4843 BNXT_SRIOV_CFG_WAIT_TMO);
4844 if (rc)
4845 netdev_warn(bp->dev, "timeout waiting for SRIOV config operation to complete!\n");
4847 #endif
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))
4854 msleep(20);
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);
4864 bnxt_free_skbs(bp);
4866 if (irq_re_init) {
4867 bnxt_free_irq(bp);
4868 bnxt_del_napi(bp);
4870 bnxt_free_mem(bp, irq_re_init);
4871 return rc;
4874 static int bnxt_close(struct net_device *dev)
4876 struct bnxt *bp = netdev_priv(dev);
4878 bnxt_close_nic(bp, true, true);
4879 return 0;
4882 /* rtnl_lock held */
4883 static int bnxt_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
4885 switch (cmd) {
4886 case SIOCGMIIPHY:
4887 /* fallthru */
4888 case SIOCGMIIREG: {
4889 if (!netif_running(dev))
4890 return -EAGAIN;
4892 return 0;
4895 case SIOCSMIIREG:
4896 if (!netif_running(dev))
4897 return -EAGAIN;
4899 return 0;
4901 default:
4902 /* do nothing */
4903 break;
4905 return -EOPNOTSUPP;
4908 static struct rtnl_link_stats64 *
4909 bnxt_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
4911 u32 i;
4912 struct bnxt *bp = netdev_priv(dev);
4914 memset(stats, 0, sizeof(struct rtnl_link_stats64));
4916 if (!bp->bnapi)
4917 return stats;
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);
4965 return stats;
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;
4973 u8 *haddr;
4974 int mc_count = 0;
4975 bool update = false;
4976 int off = 0;
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;
4982 return false;
4984 haddr = ha->addr;
4985 if (!ether_addr_equal(haddr, vnic->mc_list + off)) {
4986 memcpy(vnic->mc_list + off, haddr, ETH_ALEN);
4987 update = true;
4989 off += ETH_ALEN;
4990 mc_count++;
4992 if (mc_count)
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;
4997 update = true;
4999 return update;
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;
5007 int off = 0;
5009 if (netdev_uc_count(dev) != (vnic->uc_filter_count - 1))
5010 return true;
5012 netdev_for_each_uc_addr(ha, dev) {
5013 if (!ether_addr_equal(ha->addr, vnic->uc_list + off))
5014 return true;
5016 off += ETH_ALEN;
5018 return false;
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;
5027 bool uc_update;
5029 if (!netif_running(dev))
5030 return;
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;
5045 } else {
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;
5062 int i, off = 0, rc;
5063 bool uc_update;
5065 netif_addr_lock_bh(dev);
5066 uc_update = bnxt_uc_list_updated(bp);
5067 netif_addr_unlock_bh(dev);
5069 if (!uc_update)
5070 goto skip_uc;
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,
5077 -1);
5079 req.l2_filter_id = vnic->fw_l2_filter_id[i];
5081 rc = _hwrm_send_message(bp, &req, sizeof(req),
5082 HWRM_CMD_TIMEOUT);
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;
5091 } else {
5092 netdev_for_each_uc_addr(ha, dev) {
5093 memcpy(vnic->uc_list + off, ha->addr, ETH_ALEN);
5094 off += 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);
5102 if (rc) {
5103 netdev_err(bp->dev, "HWRM vnic filter failure rc: %x\n",
5104 rc);
5105 vnic->uc_filter_count = i;
5106 return rc;
5110 skip_uc:
5111 rc = bnxt_hwrm_cfa_l2_set_rx_mask(bp, 0);
5112 if (rc)
5113 netdev_err(bp->dev, "HWRM cfa l2 rx mask failure rc: %x\n",
5114 rc);
5116 return rc;
5119 static bool bnxt_rfs_capable(struct bnxt *bp)
5121 #ifdef CONFIG_RFS_ACCEL
5122 struct bnxt_pf_info *pf = &bp->pf;
5123 int vnics;
5125 if (BNXT_VF(bp) || !(bp->flags & BNXT_FLAG_MSIX_CAP))
5126 return false;
5128 vnics = 1 + bp->rx_nr_rings;
5129 if (vnics > pf->max_rsscos_ctxs || vnics > pf->max_vnics)
5130 return false;
5132 return true;
5133 #else
5134 return false;
5135 #endif
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;
5145 return features;
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;
5152 u32 changes;
5153 int rc = 0;
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) {
5171 update_tpa = true;
5172 if ((bp->flags & BNXT_FLAG_TPA) == 0 ||
5173 (flags & BNXT_FLAG_TPA) == 0)
5174 re_init = true;
5177 if (changes & ~BNXT_FLAG_TPA)
5178 re_init = true;
5180 if (flags != bp->flags) {
5181 u32 old_flags = bp->flags;
5183 bp->flags = flags;
5185 if (!test_bit(BNXT_STATE_OPEN, &bp->state)) {
5186 if (update_tpa)
5187 bnxt_set_ring_params(bp);
5188 return rc;
5191 if (re_init) {
5192 bnxt_close_nic(bp, false, false);
5193 if (update_tpa)
5194 bnxt_set_ring_params(bp);
5196 return bnxt_open_nic(bp, false, false);
5198 if (update_tpa) {
5199 rc = bnxt_set_tpa(bp,
5200 (flags & BNXT_FLAG_TPA) ?
5201 true : false);
5202 if (rc)
5203 bp->flags = old_flags;
5206 return rc;
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;
5214 if (!txr)
5215 return;
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,
5219 txr->tx_cons);
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;
5227 if (!rxr)
5228 return;
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)
5247 int i;
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);
5282 int i;
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);
5292 #endif
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))
5300 return;
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);
5309 bnxt_restart_timer:
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);
5318 int rc;
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);
5324 return;
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);
5334 if (rc)
5335 netdev_err(bp->dev, "SP task can't update link (rc: %x)\n",
5336 rc);
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(
5342 bp, bp->vxlan_port,
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);
5354 rtnl_lock();
5355 bnxt_reset_task(bp);
5356 set_bit(BNXT_STATE_IN_SP_TASK, &bp->state);
5357 rtnl_unlock();
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)
5369 int rc;
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);
5376 if (rc) {
5377 dev_err(&pdev->dev, "Cannot enable PCI device, aborting\n");
5378 goto init_err;
5381 if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
5382 dev_err(&pdev->dev,
5383 "Cannot find PCI device base address, aborting\n");
5384 rc = -ENODEV;
5385 goto init_err_disable;
5388 rc = pci_request_regions(pdev, DRV_MODULE_NAME);
5389 if (rc) {
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);
5402 bp->dev = dev;
5403 bp->pdev = pdev;
5405 bp->bar0 = pci_ioremap_bar(pdev, 0);
5406 if (!bp->bar0) {
5407 dev_err(&pdev->dev, "Cannot map device registers, aborting\n");
5408 rc = -ENOMEM;
5409 goto init_err_release;
5412 bp->bar1 = pci_ioremap_bar(pdev, 2);
5413 if (!bp->bar1) {
5414 dev_err(&pdev->dev, "Cannot map doorbell registers, aborting\n");
5415 rc = -ENOMEM;
5416 goto init_err_release;
5419 bp->bar2 = pci_ioremap_bar(pdev, 4);
5420 if (!bp->bar2) {
5421 dev_err(&pdev->dev, "Cannot map bar4 registers, aborting\n");
5422 rc = -ENOMEM;
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);
5453 return 0;
5455 init_err_release:
5456 if (bp->bar2) {
5457 pci_iounmap(pdev, bp->bar2);
5458 bp->bar2 = NULL;
5461 if (bp->bar1) {
5462 pci_iounmap(pdev, bp->bar1);
5463 bp->bar1 = NULL;
5466 if (bp->bar0) {
5467 pci_iounmap(pdev, bp->bar0);
5468 bp->bar0 = NULL;
5471 pci_release_regions(pdev);
5473 init_err_disable:
5474 pci_disable_device(pdev);
5476 init_err:
5477 return rc;
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);
5485 int rc = 0;
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;
5493 #endif
5495 if (ether_addr_equal(addr->sa_data, dev->dev_addr))
5496 return 0;
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);
5504 return rc;
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)
5513 return -EINVAL;
5515 if (netif_running(dev))
5516 bnxt_close_nic(bp, false, false);
5518 dev->mtu = new_mtu;
5519 bnxt_set_ring_params(bp);
5521 if (netif_running(dev))
5522 return bnxt_open_nic(bp, false, false);
5524 return 0;
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);
5531 u8 tc;
5533 if (ntc->type != TC_SETUP_MQPRIO)
5534 return -EINVAL;
5536 tc = ntc->tc;
5538 if (tc > bp->max_tc) {
5539 netdev_err(dev, "too many traffic classes requested: %d Max supported is %d\n",
5540 tc, bp->max_tc);
5541 return -EINVAL;
5544 if (netdev_get_num_tc(dev) == tc)
5545 return 0;
5547 if (tc) {
5548 int max_rx_rings, max_tx_rings, rc;
5549 bool sh = false;
5551 if (bp->flags & BNXT_FLAG_SHARED_RINGS)
5552 sh = true;
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)
5556 return -ENOMEM;
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);
5563 if (tc) {
5564 bp->tx_nr_rings = bp->tx_nr_rings_per_tc * tc;
5565 netdev_set_num_tc(dev, tc);
5566 } else {
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);
5576 return 0;
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))
5592 return true;
5594 return false;
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);
5611 if (!new_fltr)
5612 return -ENOMEM;
5614 fkeys = &new_fltr->fkeys;
5615 if (!skb_flow_dissect_flow_keys(skb, fkeys, 0)) {
5616 rc = -EPROTONOSUPPORT;
5617 goto err_free;
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;
5624 goto err_free;
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];
5631 rcu_read_lock();
5632 hlist_for_each_entry_rcu(fltr, head, hash) {
5633 if (bnxt_fltr_match(fltr, new_fltr)) {
5634 rcu_read_unlock();
5635 rc = 0;
5636 goto err_free;
5639 rcu_read_unlock();
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);
5644 if (bit_id < 0) {
5645 spin_unlock_bh(&bp->ntp_fltr_lock);
5646 rc = -ENOMEM;
5647 goto err_free;
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;
5662 err_free:
5663 kfree(new_fltr);
5664 return rc;
5667 static void bnxt_cfg_ntp_filters(struct bnxt *bp)
5669 int i;
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;
5675 int rc;
5677 head = &bp->ntp_fltr_hash_tbl[i];
5678 hlist_for_each_entry_safe(fltr, tmp, head, hash) {
5679 bool del = false;
5681 if (test_bit(BNXT_FLTR_VALID, &fltr->state)) {
5682 if (rps_may_expire_flow(bp->dev, fltr->rxq,
5683 fltr->flow_id,
5684 fltr->sw_id)) {
5685 bnxt_hwrm_cfa_ntuple_filter_free(bp,
5686 fltr);
5687 del = true;
5689 } else {
5690 rc = bnxt_hwrm_cfa_ntuple_filter_alloc(bp,
5691 fltr);
5692 if (rc)
5693 del = true;
5694 else
5695 set_bit(BNXT_FLTR_VALID, &fltr->state);
5698 if (del) {
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);
5703 synchronize_rcu();
5704 clear_bit(fltr->sw_id, bp->ntp_fltr_bmap);
5705 kfree(fltr);
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!");
5713 #else
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,
5722 __be16 port)
5724 struct bnxt *bp = netdev_priv(dev);
5726 if (!netif_running(dev))
5727 return;
5729 if (sa_family != AF_INET6 && sa_family != AF_INET)
5730 return;
5732 if (bp->vxlan_port_cnt && bp->vxlan_port != port)
5733 return;
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,
5744 __be16 port)
5746 struct bnxt *bp = netdev_priv(dev);
5748 if (!netif_running(dev))
5749 return;
5751 if (sa_family != AF_INET6 && sa_family != AF_INET)
5752 return;
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,
5784 #endif
5785 #ifdef CONFIG_NET_POLL_CONTROLLER
5786 .ndo_poll_controller = bnxt_poll_controller,
5787 #endif
5788 .ndo_setup_tc = bnxt_setup_tc,
5789 #ifdef CONFIG_RFS_ACCEL
5790 .ndo_rx_flow_steer = bnxt_rx_flow_steer,
5791 #endif
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,
5796 #endif
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);
5804 if (BNXT_PF(bp))
5805 bnxt_sriov_disable(bp);
5807 pci_disable_pcie_error_reporting(pdev);
5808 unregister_netdev(dev);
5809 cancel_work_sync(&bp->sp_task);
5810 bp->sp_event = 0;
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);
5817 free_netdev(dev);
5819 pci_release_regions(pdev);
5820 pci_disable_device(pdev);
5823 static int bnxt_probe_phy(struct bnxt *bp)
5825 int rc = 0;
5826 struct bnxt_link_info *link_info = &bp->link_info;
5828 rc = bnxt_update_link(bp, false);
5829 if (rc) {
5830 netdev_err(bp->dev, "Probe phy can't update link (rc: %x)\n",
5831 rc);
5832 return rc;
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;
5842 } else {
5843 link_info->autoneg |= BNXT_AUTONEG_FLOW_CTRL;
5845 link_info->advertising = link_info->auto_link_speeds;
5846 } else {
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;
5853 else
5854 link_info->req_flow_ctrl = link_info->force_pause_setting;
5855 return rc;
5858 static int bnxt_get_max_irq(struct pci_dev *pdev)
5860 u16 ctrl;
5862 if (!pdev->msix_cap)
5863 return 1;
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,
5870 int *max_cp)
5872 int max_ring_grps = 0;
5874 #ifdef CONFIG_BNXT_SRIOV
5875 if (!BNXT_PF(bp)) {
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;
5881 } else
5882 #endif
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)
5892 *max_rx >>= 1;
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)
5898 int rx, tx, cp;
5900 _bnxt_get_max_rings(bp, &rx, &tx, &cp);
5901 if (!rx || !tx || !cp)
5902 return -ENOMEM;
5904 *max_rx = rx;
5905 *max_tx = tx;
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;
5912 bool sh = true;
5914 if (sh)
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);
5918 if (rc)
5919 return rc;
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;
5926 return rc;
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;
5933 struct bnxt *bp;
5934 int rc, max_irqs;
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);
5941 if (!dev)
5942 return -ENOMEM;
5944 bp = netdev_priv(dev);
5946 if (bnxt_vf_pciid(ent->driver_data))
5947 bp->flags |= BNXT_FLAG_VF;
5949 if (pdev->msix_cap)
5950 bp->flags |= BNXT_FLAG_MSIX_CAP;
5952 rc = bnxt_init_board(pdev, dev);
5953 if (rc < 0)
5954 goto init_err_free;
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 |
5966 NETIF_F_RXHASH |
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);
5982 #endif
5983 rc = bnxt_alloc_hwrm_resources(bp);
5984 if (rc)
5985 goto init_err;
5987 mutex_init(&bp->hwrm_cmd_lock);
5988 bnxt_hwrm_ver_get(bp);
5990 rc = bnxt_hwrm_func_drv_rgtr(bp);
5991 if (rc)
5992 goto init_err;
5994 /* Get the MAX capabilities for this function */
5995 rc = bnxt_hwrm_func_qcaps(bp);
5996 if (rc) {
5997 netdev_err(bp->dev, "hwrm query capability failure rc: %x\n",
5998 rc);
5999 rc = -1;
6000 goto init_err;
6003 rc = bnxt_hwrm_queue_qportcfg(bp);
6004 if (rc) {
6005 netdev_err(bp->dev, "hwrm query qportcfg failure rc: %x\n",
6006 rc);
6007 rc = -1;
6008 goto init_err;
6011 bnxt_set_tpa_flags(bp);
6012 bnxt_set_ring_params(bp);
6013 if (BNXT_PF(bp))
6014 bp->pf.max_irqs = max_irqs;
6015 #if defined(CONFIG_BNXT_SRIOV)
6016 else
6017 bp->vf.max_irqs = max_irqs;
6018 #endif
6019 bnxt_set_dflt_rings(bp);
6021 if (BNXT_PF(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);
6033 if (rc)
6034 goto init_err;
6036 rc = register_netdev(dev);
6037 if (rc)
6038 goto init_err;
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);
6044 return 0;
6046 init_err:
6047 pci_iounmap(pdev, bp->bar0);
6048 pci_release_regions(pdev);
6049 pci_disable_device(pdev);
6051 init_err_free:
6052 free_netdev(dev);
6053 return rc;
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");
6071 rtnl_lock();
6072 netif_device_detach(netdev);
6074 if (state == pci_channel_io_perm_failure) {
6075 rtnl_unlock();
6076 return PCI_ERS_RESULT_DISCONNECT;
6079 if (netif_running(netdev))
6080 bnxt_close(netdev);
6082 pci_disable_device(pdev);
6083 rtnl_unlock();
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);
6102 int err = 0;
6103 pci_ers_result_t result = PCI_ERS_RESULT_DISCONNECT;
6105 netdev_info(bp->dev, "PCI Slot Reset\n");
6107 rtnl_lock();
6109 if (pci_enable_device(pdev)) {
6110 dev_err(&pdev->dev,
6111 "Cannot re-enable PCI device after reset.\n");
6112 } else {
6113 pci_set_master(pdev);
6115 if (netif_running(netdev))
6116 err = bnxt_open(netdev);
6118 if (!err)
6119 result = PCI_ERS_RESULT_RECOVERED;
6122 if (result != PCI_ERS_RESULT_RECOVERED && netif_running(netdev))
6123 dev_close(netdev);
6125 rtnl_unlock();
6127 err = pci_cleanup_aer_uncorrect_error_status(pdev);
6128 if (err) {
6129 dev_err(&pdev->dev,
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);
6148 rtnl_lock();
6150 netif_device_attach(netdev);
6152 rtnl_unlock();
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,
6169 #endif
6172 module_pci_driver(bnxt_pci_driver);