blob: f0aa582de2bea06a54723b43d3f5d6518f52f8e9 [file] [log] [blame]
Michael Chanc0c050c2015-10-22 16:01:17 -04001/* Broadcom NetXtreme-C/E network driver.
2 *
Michael Chan11f15ed2016-04-05 14:08:55 -04003 * Copyright (c) 2014-2016 Broadcom Corporation
Michael Chanc0c050c2015-10-22 16:01:17 -04004 *
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 */
9
10#include <linux/module.h>
11
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>
Alexander Duyckad51b8e2016-06-16 12:21:19 -070040#include <net/udp_tunnel.h>
Michael Chanc0c050c2015-10-22 16:01:17 -040041#ifdef CONFIG_NET_RX_BUSY_POLL
42#include <net/busy_poll.h>
43#endif
44#include <linux/workqueue.h>
45#include <linux/prefetch.h>
46#include <linux/cache.h>
47#include <linux/log2.h>
48#include <linux/aer.h>
49#include <linux/bitmap.h>
50#include <linux/cpu_rmap.h>
51
52#include "bnxt_hsi.h"
53#include "bnxt.h"
54#include "bnxt_sriov.h"
55#include "bnxt_ethtool.h"
56
57#define BNXT_TX_TIMEOUT (5 * HZ)
58
59static const char version[] =
60 "Broadcom NetXtreme-C/E driver " DRV_MODULE_NAME " v" DRV_MODULE_VERSION "\n";
61
62MODULE_LICENSE("GPL");
63MODULE_DESCRIPTION("Broadcom BCM573xx network driver");
64MODULE_VERSION(DRV_MODULE_VERSION);
65
66#define BNXT_RX_OFFSET (NET_SKB_PAD + NET_IP_ALIGN)
67#define BNXT_RX_DMA_OFFSET NET_SKB_PAD
68#define BNXT_RX_COPY_THRESH 256
69
Michael Chan4419dbe2016-02-10 17:33:49 -050070#define BNXT_TX_PUSH_THRESH 164
Michael Chanc0c050c2015-10-22 16:01:17 -040071
72enum board_idx {
David Christensenfbc9a522015-12-27 18:19:29 -050073 BCM57301,
Michael Chanc0c050c2015-10-22 16:01:17 -040074 BCM57302,
75 BCM57304,
Michael Chanb24eb6a2016-06-13 02:25:36 -040076 BCM57311,
77 BCM57312,
David Christensenfbc9a522015-12-27 18:19:29 -050078 BCM57402,
Michael Chanc0c050c2015-10-22 16:01:17 -040079 BCM57404,
80 BCM57406,
Michael Chanebcd4ee2016-06-13 02:25:32 -040081 BCM57404_NPAR,
Michael Chanb24eb6a2016-06-13 02:25:36 -040082 BCM57412,
83 BCM57414,
84 BCM57416,
85 BCM57417,
86 BCM57414_NPAR,
Michael Chan5049e332016-05-15 03:04:50 -040087 BCM57314,
Michael Chanc0c050c2015-10-22 16:01:17 -040088 BCM57304_VF,
89 BCM57404_VF,
Michael Chanb24eb6a2016-06-13 02:25:36 -040090 BCM57414_VF,
91 BCM57314_VF,
Michael Chanc0c050c2015-10-22 16:01:17 -040092};
93
94/* indexed by enum above */
95static const struct {
96 char *name;
97} board_info[] = {
David Christensenfbc9a522015-12-27 18:19:29 -050098 { "Broadcom BCM57301 NetXtreme-C Single-port 10Gb Ethernet" },
99 { "Broadcom BCM57302 NetXtreme-C Dual-port 10Gb/25Gb Ethernet" },
Michael Chanc0c050c2015-10-22 16:01:17 -0400100 { "Broadcom BCM57304 NetXtreme-C Dual-port 10Gb/25Gb/40Gb/50Gb Ethernet" },
Michael Chanb24eb6a2016-06-13 02:25:36 -0400101 { "Broadcom BCM57311 NetXtreme-C Single-port 10Gb Ethernet" },
102 { "Broadcom BCM57312 NetXtreme-C Dual-port 10Gb/25Gb Ethernet" },
David Christensenfbc9a522015-12-27 18:19:29 -0500103 { "Broadcom BCM57402 NetXtreme-E Dual-port 10Gb Ethernet" },
Michael Chanc0c050c2015-10-22 16:01:17 -0400104 { "Broadcom BCM57404 NetXtreme-E Dual-port 10Gb/25Gb Ethernet" },
David Christensenfbc9a522015-12-27 18:19:29 -0500105 { "Broadcom BCM57406 NetXtreme-E Dual-port 10GBase-T Ethernet" },
Michael Chanebcd4ee2016-06-13 02:25:32 -0400106 { "Broadcom BCM57404 NetXtreme-E Ethernet Partition" },
Michael Chanb24eb6a2016-06-13 02:25:36 -0400107 { "Broadcom BCM57412 NetXtreme-E Dual-port 10Gb Ethernet" },
108 { "Broadcom BCM57414 NetXtreme-E Dual-port 10Gb/25Gb Ethernet" },
109 { "Broadcom BCM57416 NetXtreme-E Dual-port 10GBase-T Ethernet" },
110 { "Broadcom BCM57417 NetXtreme-E Dual-port 10GBase-T Ethernet" },
111 { "Broadcom BCM57414 NetXtreme-E Ethernet Partition" },
Michael Chan5049e332016-05-15 03:04:50 -0400112 { "Broadcom BCM57314 NetXtreme-C Dual-port 10Gb/25Gb/40Gb/50Gb Ethernet" },
Michael Chanc0c050c2015-10-22 16:01:17 -0400113 { "Broadcom BCM57304 NetXtreme-C Ethernet Virtual Function" },
114 { "Broadcom BCM57404 NetXtreme-E Ethernet Virtual Function" },
Michael Chanb24eb6a2016-06-13 02:25:36 -0400115 { "Broadcom BCM57414 NetXtreme-E Ethernet Virtual Function" },
116 { "Broadcom BCM57314 NetXtreme-E Ethernet Virtual Function" },
Michael Chanc0c050c2015-10-22 16:01:17 -0400117};
118
119static const struct pci_device_id bnxt_pci_tbl[] = {
David Christensenfbc9a522015-12-27 18:19:29 -0500120 { PCI_VDEVICE(BROADCOM, 0x16c8), .driver_data = BCM57301 },
Michael Chanc0c050c2015-10-22 16:01:17 -0400121 { PCI_VDEVICE(BROADCOM, 0x16c9), .driver_data = BCM57302 },
122 { PCI_VDEVICE(BROADCOM, 0x16ca), .driver_data = BCM57304 },
Michael Chanb24eb6a2016-06-13 02:25:36 -0400123 { PCI_VDEVICE(BROADCOM, 0x16ce), .driver_data = BCM57311 },
124 { PCI_VDEVICE(BROADCOM, 0x16cf), .driver_data = BCM57312 },
David Christensenfbc9a522015-12-27 18:19:29 -0500125 { PCI_VDEVICE(BROADCOM, 0x16d0), .driver_data = BCM57402 },
Michael Chanc0c050c2015-10-22 16:01:17 -0400126 { PCI_VDEVICE(BROADCOM, 0x16d1), .driver_data = BCM57404 },
127 { PCI_VDEVICE(BROADCOM, 0x16d2), .driver_data = BCM57406 },
Michael Chanebcd4ee2016-06-13 02:25:32 -0400128 { PCI_VDEVICE(BROADCOM, 0x16d4), .driver_data = BCM57404_NPAR },
Michael Chanb24eb6a2016-06-13 02:25:36 -0400129 { PCI_VDEVICE(BROADCOM, 0x16d6), .driver_data = BCM57412 },
130 { PCI_VDEVICE(BROADCOM, 0x16d7), .driver_data = BCM57414 },
131 { PCI_VDEVICE(BROADCOM, 0x16d8), .driver_data = BCM57416 },
132 { PCI_VDEVICE(BROADCOM, 0x16d9), .driver_data = BCM57417 },
133 { PCI_VDEVICE(BROADCOM, 0x16de), .driver_data = BCM57414_NPAR },
Michael Chan5049e332016-05-15 03:04:50 -0400134 { PCI_VDEVICE(BROADCOM, 0x16df), .driver_data = BCM57314 },
Michael Chanc0c050c2015-10-22 16:01:17 -0400135#ifdef CONFIG_BNXT_SRIOV
136 { PCI_VDEVICE(BROADCOM, 0x16cb), .driver_data = BCM57304_VF },
137 { PCI_VDEVICE(BROADCOM, 0x16d3), .driver_data = BCM57404_VF },
Michael Chanb24eb6a2016-06-13 02:25:36 -0400138 { PCI_VDEVICE(BROADCOM, 0x16dc), .driver_data = BCM57414_VF },
139 { PCI_VDEVICE(BROADCOM, 0x16e1), .driver_data = BCM57314_VF },
Michael Chanc0c050c2015-10-22 16:01:17 -0400140#endif
141 { 0 }
142};
143
144MODULE_DEVICE_TABLE(pci, bnxt_pci_tbl);
145
146static const u16 bnxt_vf_req_snif[] = {
147 HWRM_FUNC_CFG,
148 HWRM_PORT_PHY_QCFG,
149 HWRM_CFA_L2_FILTER_ALLOC,
150};
151
Michael Chan25be8622016-04-05 14:09:00 -0400152static const u16 bnxt_async_events_arr[] = {
153 HWRM_ASYNC_EVENT_CMPL_EVENT_ID_LINK_STATUS_CHANGE,
154 HWRM_ASYNC_EVENT_CMPL_EVENT_ID_PF_DRVR_UNLOAD,
Michael Chan4bb13ab2016-04-05 14:09:01 -0400155 HWRM_ASYNC_EVENT_CMPL_EVENT_ID_PORT_CONN_NOT_ALLOWED,
Michael Chanfc0f1922016-06-13 02:25:30 -0400156 HWRM_ASYNC_EVENT_CMPL_EVENT_ID_VF_CFG_CHANGE,
Michael Chan8cbde112016-04-11 04:11:14 -0400157 HWRM_ASYNC_EVENT_CMPL_EVENT_ID_LINK_SPEED_CFG_CHANGE,
Michael Chan25be8622016-04-05 14:09:00 -0400158};
159
Michael Chanc0c050c2015-10-22 16:01:17 -0400160static bool bnxt_vf_pciid(enum board_idx idx)
161{
Michael Chanb24eb6a2016-06-13 02:25:36 -0400162 return (idx == BCM57304_VF || idx == BCM57404_VF ||
163 idx == BCM57314_VF || idx == BCM57414_VF);
Michael Chanc0c050c2015-10-22 16:01:17 -0400164}
165
166#define DB_CP_REARM_FLAGS (DB_KEY_CP | DB_IDX_VALID)
167#define DB_CP_FLAGS (DB_KEY_CP | DB_IDX_VALID | DB_IRQ_DIS)
168#define DB_CP_IRQ_DIS_FLAGS (DB_KEY_CP | DB_IRQ_DIS)
169
170#define BNXT_CP_DB_REARM(db, raw_cons) \
171 writel(DB_CP_REARM_FLAGS | RING_CMP(raw_cons), db)
172
173#define BNXT_CP_DB(db, raw_cons) \
174 writel(DB_CP_FLAGS | RING_CMP(raw_cons), db)
175
176#define BNXT_CP_DB_IRQ_DIS(db) \
177 writel(DB_CP_IRQ_DIS_FLAGS, db)
178
179static inline u32 bnxt_tx_avail(struct bnxt *bp, struct bnxt_tx_ring_info *txr)
180{
181 /* Tell compiler to fetch tx indices from memory. */
182 barrier();
183
184 return bp->tx_ring_size -
185 ((txr->tx_prod - txr->tx_cons) & bp->tx_ring_mask);
186}
187
188static const u16 bnxt_lhint_arr[] = {
189 TX_BD_FLAGS_LHINT_512_AND_SMALLER,
190 TX_BD_FLAGS_LHINT_512_TO_1023,
191 TX_BD_FLAGS_LHINT_1024_TO_2047,
192 TX_BD_FLAGS_LHINT_1024_TO_2047,
193 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
194 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
195 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
196 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
197 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
198 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
199 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
200 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
201 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
202 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
203 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
204 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
205 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
206 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
207 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
208};
209
210static netdev_tx_t bnxt_start_xmit(struct sk_buff *skb, struct net_device *dev)
211{
212 struct bnxt *bp = netdev_priv(dev);
213 struct tx_bd *txbd;
214 struct tx_bd_ext *txbd1;
215 struct netdev_queue *txq;
216 int i;
217 dma_addr_t mapping;
218 unsigned int length, pad = 0;
219 u32 len, free_size, vlan_tag_flags, cfa_action, flags;
220 u16 prod, last_frag;
221 struct pci_dev *pdev = bp->pdev;
Michael Chanc0c050c2015-10-22 16:01:17 -0400222 struct bnxt_tx_ring_info *txr;
223 struct bnxt_sw_tx_bd *tx_buf;
224
225 i = skb_get_queue_mapping(skb);
226 if (unlikely(i >= bp->tx_nr_rings)) {
227 dev_kfree_skb_any(skb);
228 return NETDEV_TX_OK;
229 }
230
Michael Chanb6ab4b02016-01-02 23:44:59 -0500231 txr = &bp->tx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -0400232 txq = netdev_get_tx_queue(dev, i);
233 prod = txr->tx_prod;
234
235 free_size = bnxt_tx_avail(bp, txr);
236 if (unlikely(free_size < skb_shinfo(skb)->nr_frags + 2)) {
237 netif_tx_stop_queue(txq);
238 return NETDEV_TX_BUSY;
239 }
240
241 length = skb->len;
242 len = skb_headlen(skb);
243 last_frag = skb_shinfo(skb)->nr_frags;
244
245 txbd = &txr->tx_desc_ring[TX_RING(prod)][TX_IDX(prod)];
246
247 txbd->tx_bd_opaque = prod;
248
249 tx_buf = &txr->tx_buf_ring[prod];
250 tx_buf->skb = skb;
251 tx_buf->nr_frags = last_frag;
252
253 vlan_tag_flags = 0;
254 cfa_action = 0;
255 if (skb_vlan_tag_present(skb)) {
256 vlan_tag_flags = TX_BD_CFA_META_KEY_VLAN |
257 skb_vlan_tag_get(skb);
258 /* Currently supports 8021Q, 8021AD vlan offloads
259 * QINQ1, QINQ2, QINQ3 vlan headers are deprecated
260 */
261 if (skb->vlan_proto == htons(ETH_P_8021Q))
262 vlan_tag_flags |= 1 << TX_BD_CFA_META_TPID_SHIFT;
263 }
264
265 if (free_size == bp->tx_ring_size && length <= bp->tx_push_thresh) {
Michael Chan4419dbe2016-02-10 17:33:49 -0500266 struct tx_push_buffer *tx_push_buf = txr->tx_push;
267 struct tx_push_bd *tx_push = &tx_push_buf->push_bd;
268 struct tx_bd_ext *tx_push1 = &tx_push->txbd2;
269 void *pdata = tx_push_buf->data;
270 u64 *end;
271 int j, push_len;
Michael Chanc0c050c2015-10-22 16:01:17 -0400272
273 /* Set COAL_NOW to be ready quickly for the next push */
274 tx_push->tx_bd_len_flags_type =
275 cpu_to_le32((length << TX_BD_LEN_SHIFT) |
276 TX_BD_TYPE_LONG_TX_BD |
277 TX_BD_FLAGS_LHINT_512_AND_SMALLER |
278 TX_BD_FLAGS_COAL_NOW |
279 TX_BD_FLAGS_PACKET_END |
280 (2 << TX_BD_FLAGS_BD_CNT_SHIFT));
281
282 if (skb->ip_summed == CHECKSUM_PARTIAL)
283 tx_push1->tx_bd_hsize_lflags =
284 cpu_to_le32(TX_BD_FLAGS_TCP_UDP_CHKSUM);
285 else
286 tx_push1->tx_bd_hsize_lflags = 0;
287
288 tx_push1->tx_bd_cfa_meta = cpu_to_le32(vlan_tag_flags);
289 tx_push1->tx_bd_cfa_action = cpu_to_le32(cfa_action);
290
Michael Chanfbb0fa82016-02-22 02:10:26 -0500291 end = pdata + length;
292 end = PTR_ALIGN(end, 8) - 1;
Michael Chan4419dbe2016-02-10 17:33:49 -0500293 *end = 0;
294
Michael Chanc0c050c2015-10-22 16:01:17 -0400295 skb_copy_from_linear_data(skb, pdata, len);
296 pdata += len;
297 for (j = 0; j < last_frag; j++) {
298 skb_frag_t *frag = &skb_shinfo(skb)->frags[j];
299 void *fptr;
300
301 fptr = skb_frag_address_safe(frag);
302 if (!fptr)
303 goto normal_tx;
304
305 memcpy(pdata, fptr, skb_frag_size(frag));
306 pdata += skb_frag_size(frag);
307 }
308
Michael Chan4419dbe2016-02-10 17:33:49 -0500309 txbd->tx_bd_len_flags_type = tx_push->tx_bd_len_flags_type;
310 txbd->tx_bd_haddr = txr->data_mapping;
Michael Chanc0c050c2015-10-22 16:01:17 -0400311 prod = NEXT_TX(prod);
312 txbd = &txr->tx_desc_ring[TX_RING(prod)][TX_IDX(prod)];
313 memcpy(txbd, tx_push1, sizeof(*txbd));
314 prod = NEXT_TX(prod);
Michael Chan4419dbe2016-02-10 17:33:49 -0500315 tx_push->doorbell =
Michael Chanc0c050c2015-10-22 16:01:17 -0400316 cpu_to_le32(DB_KEY_TX_PUSH | DB_LONG_TX_PUSH | prod);
317 txr->tx_prod = prod;
318
Michael Chanb9a84602016-06-06 02:37:14 -0400319 tx_buf->is_push = 1;
Michael Chanc0c050c2015-10-22 16:01:17 -0400320 netdev_tx_sent_queue(txq, skb->len);
Michael Chanb9a84602016-06-06 02:37:14 -0400321 wmb(); /* Sync is_push and byte queue before pushing data */
Michael Chanc0c050c2015-10-22 16:01:17 -0400322
Michael Chan4419dbe2016-02-10 17:33:49 -0500323 push_len = (length + sizeof(*tx_push) + 7) / 8;
324 if (push_len > 16) {
325 __iowrite64_copy(txr->tx_doorbell, tx_push_buf, 16);
326 __iowrite64_copy(txr->tx_doorbell + 4, tx_push_buf + 1,
327 push_len - 16);
328 } else {
329 __iowrite64_copy(txr->tx_doorbell, tx_push_buf,
330 push_len);
331 }
Michael Chanc0c050c2015-10-22 16:01:17 -0400332
Michael Chanc0c050c2015-10-22 16:01:17 -0400333 goto tx_done;
334 }
335
336normal_tx:
337 if (length < BNXT_MIN_PKT_SIZE) {
338 pad = BNXT_MIN_PKT_SIZE - length;
339 if (skb_pad(skb, pad)) {
340 /* SKB already freed. */
341 tx_buf->skb = NULL;
342 return NETDEV_TX_OK;
343 }
344 length = BNXT_MIN_PKT_SIZE;
345 }
346
347 mapping = dma_map_single(&pdev->dev, skb->data, len, DMA_TO_DEVICE);
348
349 if (unlikely(dma_mapping_error(&pdev->dev, mapping))) {
350 dev_kfree_skb_any(skb);
351 tx_buf->skb = NULL;
352 return NETDEV_TX_OK;
353 }
354
355 dma_unmap_addr_set(tx_buf, mapping, mapping);
356 flags = (len << TX_BD_LEN_SHIFT) | TX_BD_TYPE_LONG_TX_BD |
357 ((last_frag + 2) << TX_BD_FLAGS_BD_CNT_SHIFT);
358
359 txbd->tx_bd_haddr = cpu_to_le64(mapping);
360
361 prod = NEXT_TX(prod);
362 txbd1 = (struct tx_bd_ext *)
363 &txr->tx_desc_ring[TX_RING(prod)][TX_IDX(prod)];
364
365 txbd1->tx_bd_hsize_lflags = 0;
366 if (skb_is_gso(skb)) {
367 u32 hdr_len;
368
369 if (skb->encapsulation)
370 hdr_len = skb_inner_network_offset(skb) +
371 skb_inner_network_header_len(skb) +
372 inner_tcp_hdrlen(skb);
373 else
374 hdr_len = skb_transport_offset(skb) +
375 tcp_hdrlen(skb);
376
377 txbd1->tx_bd_hsize_lflags = cpu_to_le32(TX_BD_FLAGS_LSO |
378 TX_BD_FLAGS_T_IPID |
379 (hdr_len << (TX_BD_HSIZE_SHIFT - 1)));
380 length = skb_shinfo(skb)->gso_size;
381 txbd1->tx_bd_mss = cpu_to_le32(length);
382 length += hdr_len;
383 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
384 txbd1->tx_bd_hsize_lflags =
385 cpu_to_le32(TX_BD_FLAGS_TCP_UDP_CHKSUM);
386 txbd1->tx_bd_mss = 0;
387 }
388
389 length >>= 9;
390 flags |= bnxt_lhint_arr[length];
391 txbd->tx_bd_len_flags_type = cpu_to_le32(flags);
392
393 txbd1->tx_bd_cfa_meta = cpu_to_le32(vlan_tag_flags);
394 txbd1->tx_bd_cfa_action = cpu_to_le32(cfa_action);
395 for (i = 0; i < last_frag; i++) {
396 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
397
398 prod = NEXT_TX(prod);
399 txbd = &txr->tx_desc_ring[TX_RING(prod)][TX_IDX(prod)];
400
401 len = skb_frag_size(frag);
402 mapping = skb_frag_dma_map(&pdev->dev, frag, 0, len,
403 DMA_TO_DEVICE);
404
405 if (unlikely(dma_mapping_error(&pdev->dev, mapping)))
406 goto tx_dma_error;
407
408 tx_buf = &txr->tx_buf_ring[prod];
409 dma_unmap_addr_set(tx_buf, mapping, mapping);
410
411 txbd->tx_bd_haddr = cpu_to_le64(mapping);
412
413 flags = len << TX_BD_LEN_SHIFT;
414 txbd->tx_bd_len_flags_type = cpu_to_le32(flags);
415 }
416
417 flags &= ~TX_BD_LEN;
418 txbd->tx_bd_len_flags_type =
419 cpu_to_le32(((len + pad) << TX_BD_LEN_SHIFT) | flags |
420 TX_BD_FLAGS_PACKET_END);
421
422 netdev_tx_sent_queue(txq, skb->len);
423
424 /* Sync BD data before updating doorbell */
425 wmb();
426
427 prod = NEXT_TX(prod);
428 txr->tx_prod = prod;
429
430 writel(DB_KEY_TX | prod, txr->tx_doorbell);
431 writel(DB_KEY_TX | prod, txr->tx_doorbell);
432
433tx_done:
434
435 mmiowb();
436
437 if (unlikely(bnxt_tx_avail(bp, txr) <= MAX_SKB_FRAGS + 1)) {
438 netif_tx_stop_queue(txq);
439
440 /* netif_tx_stop_queue() must be done before checking
441 * tx index in bnxt_tx_avail() below, because in
442 * bnxt_tx_int(), we update tx index before checking for
443 * netif_tx_queue_stopped().
444 */
445 smp_mb();
446 if (bnxt_tx_avail(bp, txr) > bp->tx_wake_thresh)
447 netif_tx_wake_queue(txq);
448 }
449 return NETDEV_TX_OK;
450
451tx_dma_error:
452 last_frag = i;
453
454 /* start back at beginning and unmap skb */
455 prod = txr->tx_prod;
456 tx_buf = &txr->tx_buf_ring[prod];
457 tx_buf->skb = NULL;
458 dma_unmap_single(&pdev->dev, dma_unmap_addr(tx_buf, mapping),
459 skb_headlen(skb), PCI_DMA_TODEVICE);
460 prod = NEXT_TX(prod);
461
462 /* unmap remaining mapped pages */
463 for (i = 0; i < last_frag; i++) {
464 prod = NEXT_TX(prod);
465 tx_buf = &txr->tx_buf_ring[prod];
466 dma_unmap_page(&pdev->dev, dma_unmap_addr(tx_buf, mapping),
467 skb_frag_size(&skb_shinfo(skb)->frags[i]),
468 PCI_DMA_TODEVICE);
469 }
470
471 dev_kfree_skb_any(skb);
472 return NETDEV_TX_OK;
473}
474
475static void bnxt_tx_int(struct bnxt *bp, struct bnxt_napi *bnapi, int nr_pkts)
476{
Michael Chanb6ab4b02016-01-02 23:44:59 -0500477 struct bnxt_tx_ring_info *txr = bnapi->tx_ring;
Michael Chanb81a90d2016-01-02 23:45:01 -0500478 int index = txr - &bp->tx_ring[0];
Michael Chanc0c050c2015-10-22 16:01:17 -0400479 struct netdev_queue *txq = netdev_get_tx_queue(bp->dev, index);
480 u16 cons = txr->tx_cons;
481 struct pci_dev *pdev = bp->pdev;
482 int i;
483 unsigned int tx_bytes = 0;
484
485 for (i = 0; i < nr_pkts; i++) {
486 struct bnxt_sw_tx_bd *tx_buf;
487 struct sk_buff *skb;
488 int j, last;
489
490 tx_buf = &txr->tx_buf_ring[cons];
491 cons = NEXT_TX(cons);
492 skb = tx_buf->skb;
493 tx_buf->skb = NULL;
494
495 if (tx_buf->is_push) {
496 tx_buf->is_push = 0;
497 goto next_tx_int;
498 }
499
500 dma_unmap_single(&pdev->dev, dma_unmap_addr(tx_buf, mapping),
501 skb_headlen(skb), PCI_DMA_TODEVICE);
502 last = tx_buf->nr_frags;
503
504 for (j = 0; j < last; j++) {
505 cons = NEXT_TX(cons);
506 tx_buf = &txr->tx_buf_ring[cons];
507 dma_unmap_page(
508 &pdev->dev,
509 dma_unmap_addr(tx_buf, mapping),
510 skb_frag_size(&skb_shinfo(skb)->frags[j]),
511 PCI_DMA_TODEVICE);
512 }
513
514next_tx_int:
515 cons = NEXT_TX(cons);
516
517 tx_bytes += skb->len;
518 dev_kfree_skb_any(skb);
519 }
520
521 netdev_tx_completed_queue(txq, nr_pkts, tx_bytes);
522 txr->tx_cons = cons;
523
524 /* Need to make the tx_cons update visible to bnxt_start_xmit()
525 * before checking for netif_tx_queue_stopped(). Without the
526 * memory barrier, there is a small possibility that bnxt_start_xmit()
527 * will miss it and cause the queue to be stopped forever.
528 */
529 smp_mb();
530
531 if (unlikely(netif_tx_queue_stopped(txq)) &&
532 (bnxt_tx_avail(bp, txr) > bp->tx_wake_thresh)) {
533 __netif_tx_lock(txq, smp_processor_id());
534 if (netif_tx_queue_stopped(txq) &&
535 bnxt_tx_avail(bp, txr) > bp->tx_wake_thresh &&
536 txr->dev_state != BNXT_DEV_STATE_CLOSING)
537 netif_tx_wake_queue(txq);
538 __netif_tx_unlock(txq);
539 }
540}
541
542static inline u8 *__bnxt_alloc_rx_data(struct bnxt *bp, dma_addr_t *mapping,
543 gfp_t gfp)
544{
545 u8 *data;
546 struct pci_dev *pdev = bp->pdev;
547
548 data = kmalloc(bp->rx_buf_size, gfp);
549 if (!data)
550 return NULL;
551
552 *mapping = dma_map_single(&pdev->dev, data + BNXT_RX_DMA_OFFSET,
553 bp->rx_buf_use_size, PCI_DMA_FROMDEVICE);
554
555 if (dma_mapping_error(&pdev->dev, *mapping)) {
556 kfree(data);
557 data = NULL;
558 }
559 return data;
560}
561
562static inline int bnxt_alloc_rx_data(struct bnxt *bp,
563 struct bnxt_rx_ring_info *rxr,
564 u16 prod, gfp_t gfp)
565{
566 struct rx_bd *rxbd = &rxr->rx_desc_ring[RX_RING(prod)][RX_IDX(prod)];
567 struct bnxt_sw_rx_bd *rx_buf = &rxr->rx_buf_ring[prod];
568 u8 *data;
569 dma_addr_t mapping;
570
571 data = __bnxt_alloc_rx_data(bp, &mapping, gfp);
572 if (!data)
573 return -ENOMEM;
574
575 rx_buf->data = data;
576 dma_unmap_addr_set(rx_buf, mapping, mapping);
577
578 rxbd->rx_bd_haddr = cpu_to_le64(mapping);
579
580 return 0;
581}
582
583static void bnxt_reuse_rx_data(struct bnxt_rx_ring_info *rxr, u16 cons,
584 u8 *data)
585{
586 u16 prod = rxr->rx_prod;
587 struct bnxt_sw_rx_bd *cons_rx_buf, *prod_rx_buf;
588 struct rx_bd *cons_bd, *prod_bd;
589
590 prod_rx_buf = &rxr->rx_buf_ring[prod];
591 cons_rx_buf = &rxr->rx_buf_ring[cons];
592
593 prod_rx_buf->data = data;
594
595 dma_unmap_addr_set(prod_rx_buf, mapping,
596 dma_unmap_addr(cons_rx_buf, mapping));
597
598 prod_bd = &rxr->rx_desc_ring[RX_RING(prod)][RX_IDX(prod)];
599 cons_bd = &rxr->rx_desc_ring[RX_RING(cons)][RX_IDX(cons)];
600
601 prod_bd->rx_bd_haddr = cons_bd->rx_bd_haddr;
602}
603
604static inline u16 bnxt_find_next_agg_idx(struct bnxt_rx_ring_info *rxr, u16 idx)
605{
606 u16 next, max = rxr->rx_agg_bmap_size;
607
608 next = find_next_zero_bit(rxr->rx_agg_bmap, max, idx);
609 if (next >= max)
610 next = find_first_zero_bit(rxr->rx_agg_bmap, max);
611 return next;
612}
613
614static inline int bnxt_alloc_rx_page(struct bnxt *bp,
615 struct bnxt_rx_ring_info *rxr,
616 u16 prod, gfp_t gfp)
617{
618 struct rx_bd *rxbd =
619 &rxr->rx_agg_desc_ring[RX_RING(prod)][RX_IDX(prod)];
620 struct bnxt_sw_rx_agg_bd *rx_agg_buf;
621 struct pci_dev *pdev = bp->pdev;
622 struct page *page;
623 dma_addr_t mapping;
624 u16 sw_prod = rxr->rx_sw_agg_prod;
Michael Chan89d0a062016-04-25 02:30:51 -0400625 unsigned int offset = 0;
Michael Chanc0c050c2015-10-22 16:01:17 -0400626
Michael Chan89d0a062016-04-25 02:30:51 -0400627 if (PAGE_SIZE > BNXT_RX_PAGE_SIZE) {
628 page = rxr->rx_page;
629 if (!page) {
630 page = alloc_page(gfp);
631 if (!page)
632 return -ENOMEM;
633 rxr->rx_page = page;
634 rxr->rx_page_offset = 0;
635 }
636 offset = rxr->rx_page_offset;
637 rxr->rx_page_offset += BNXT_RX_PAGE_SIZE;
638 if (rxr->rx_page_offset == PAGE_SIZE)
639 rxr->rx_page = NULL;
640 else
641 get_page(page);
642 } else {
643 page = alloc_page(gfp);
644 if (!page)
645 return -ENOMEM;
646 }
Michael Chanc0c050c2015-10-22 16:01:17 -0400647
Michael Chan89d0a062016-04-25 02:30:51 -0400648 mapping = dma_map_page(&pdev->dev, page, offset, BNXT_RX_PAGE_SIZE,
Michael Chanc0c050c2015-10-22 16:01:17 -0400649 PCI_DMA_FROMDEVICE);
650 if (dma_mapping_error(&pdev->dev, mapping)) {
651 __free_page(page);
652 return -EIO;
653 }
654
655 if (unlikely(test_bit(sw_prod, rxr->rx_agg_bmap)))
656 sw_prod = bnxt_find_next_agg_idx(rxr, sw_prod);
657
658 __set_bit(sw_prod, rxr->rx_agg_bmap);
659 rx_agg_buf = &rxr->rx_agg_ring[sw_prod];
660 rxr->rx_sw_agg_prod = NEXT_RX_AGG(sw_prod);
661
662 rx_agg_buf->page = page;
Michael Chan89d0a062016-04-25 02:30:51 -0400663 rx_agg_buf->offset = offset;
Michael Chanc0c050c2015-10-22 16:01:17 -0400664 rx_agg_buf->mapping = mapping;
665 rxbd->rx_bd_haddr = cpu_to_le64(mapping);
666 rxbd->rx_bd_opaque = sw_prod;
667 return 0;
668}
669
670static void bnxt_reuse_rx_agg_bufs(struct bnxt_napi *bnapi, u16 cp_cons,
671 u32 agg_bufs)
672{
673 struct bnxt *bp = bnapi->bp;
674 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
Michael Chanb6ab4b02016-01-02 23:44:59 -0500675 struct bnxt_rx_ring_info *rxr = bnapi->rx_ring;
Michael Chanc0c050c2015-10-22 16:01:17 -0400676 u16 prod = rxr->rx_agg_prod;
677 u16 sw_prod = rxr->rx_sw_agg_prod;
678 u32 i;
679
680 for (i = 0; i < agg_bufs; i++) {
681 u16 cons;
682 struct rx_agg_cmp *agg;
683 struct bnxt_sw_rx_agg_bd *cons_rx_buf, *prod_rx_buf;
684 struct rx_bd *prod_bd;
685 struct page *page;
686
687 agg = (struct rx_agg_cmp *)
688 &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)];
689 cons = agg->rx_agg_cmp_opaque;
690 __clear_bit(cons, rxr->rx_agg_bmap);
691
692 if (unlikely(test_bit(sw_prod, rxr->rx_agg_bmap)))
693 sw_prod = bnxt_find_next_agg_idx(rxr, sw_prod);
694
695 __set_bit(sw_prod, rxr->rx_agg_bmap);
696 prod_rx_buf = &rxr->rx_agg_ring[sw_prod];
697 cons_rx_buf = &rxr->rx_agg_ring[cons];
698
699 /* It is possible for sw_prod to be equal to cons, so
700 * set cons_rx_buf->page to NULL first.
701 */
702 page = cons_rx_buf->page;
703 cons_rx_buf->page = NULL;
704 prod_rx_buf->page = page;
Michael Chan89d0a062016-04-25 02:30:51 -0400705 prod_rx_buf->offset = cons_rx_buf->offset;
Michael Chanc0c050c2015-10-22 16:01:17 -0400706
707 prod_rx_buf->mapping = cons_rx_buf->mapping;
708
709 prod_bd = &rxr->rx_agg_desc_ring[RX_RING(prod)][RX_IDX(prod)];
710
711 prod_bd->rx_bd_haddr = cpu_to_le64(cons_rx_buf->mapping);
712 prod_bd->rx_bd_opaque = sw_prod;
713
714 prod = NEXT_RX_AGG(prod);
715 sw_prod = NEXT_RX_AGG(sw_prod);
716 cp_cons = NEXT_CMP(cp_cons);
717 }
718 rxr->rx_agg_prod = prod;
719 rxr->rx_sw_agg_prod = sw_prod;
720}
721
722static struct sk_buff *bnxt_rx_skb(struct bnxt *bp,
723 struct bnxt_rx_ring_info *rxr, u16 cons,
724 u16 prod, u8 *data, dma_addr_t dma_addr,
725 unsigned int len)
726{
727 int err;
728 struct sk_buff *skb;
729
730 err = bnxt_alloc_rx_data(bp, rxr, prod, GFP_ATOMIC);
731 if (unlikely(err)) {
732 bnxt_reuse_rx_data(rxr, cons, data);
733 return NULL;
734 }
735
736 skb = build_skb(data, 0);
737 dma_unmap_single(&bp->pdev->dev, dma_addr, bp->rx_buf_use_size,
738 PCI_DMA_FROMDEVICE);
739 if (!skb) {
740 kfree(data);
741 return NULL;
742 }
743
744 skb_reserve(skb, BNXT_RX_OFFSET);
745 skb_put(skb, len);
746 return skb;
747}
748
749static struct sk_buff *bnxt_rx_pages(struct bnxt *bp, struct bnxt_napi *bnapi,
750 struct sk_buff *skb, u16 cp_cons,
751 u32 agg_bufs)
752{
753 struct pci_dev *pdev = bp->pdev;
754 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
Michael Chanb6ab4b02016-01-02 23:44:59 -0500755 struct bnxt_rx_ring_info *rxr = bnapi->rx_ring;
Michael Chanc0c050c2015-10-22 16:01:17 -0400756 u16 prod = rxr->rx_agg_prod;
757 u32 i;
758
759 for (i = 0; i < agg_bufs; i++) {
760 u16 cons, frag_len;
761 struct rx_agg_cmp *agg;
762 struct bnxt_sw_rx_agg_bd *cons_rx_buf;
763 struct page *page;
764 dma_addr_t mapping;
765
766 agg = (struct rx_agg_cmp *)
767 &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)];
768 cons = agg->rx_agg_cmp_opaque;
769 frag_len = (le32_to_cpu(agg->rx_agg_cmp_len_flags_type) &
770 RX_AGG_CMP_LEN) >> RX_AGG_CMP_LEN_SHIFT;
771
772 cons_rx_buf = &rxr->rx_agg_ring[cons];
Michael Chan89d0a062016-04-25 02:30:51 -0400773 skb_fill_page_desc(skb, i, cons_rx_buf->page,
774 cons_rx_buf->offset, frag_len);
Michael Chanc0c050c2015-10-22 16:01:17 -0400775 __clear_bit(cons, rxr->rx_agg_bmap);
776
777 /* It is possible for bnxt_alloc_rx_page() to allocate
778 * a sw_prod index that equals the cons index, so we
779 * need to clear the cons entry now.
780 */
781 mapping = dma_unmap_addr(cons_rx_buf, mapping);
782 page = cons_rx_buf->page;
783 cons_rx_buf->page = NULL;
784
785 if (bnxt_alloc_rx_page(bp, rxr, prod, GFP_ATOMIC) != 0) {
786 struct skb_shared_info *shinfo;
787 unsigned int nr_frags;
788
789 shinfo = skb_shinfo(skb);
790 nr_frags = --shinfo->nr_frags;
791 __skb_frag_set_page(&shinfo->frags[nr_frags], NULL);
792
793 dev_kfree_skb(skb);
794
795 cons_rx_buf->page = page;
796
797 /* Update prod since possibly some pages have been
798 * allocated already.
799 */
800 rxr->rx_agg_prod = prod;
801 bnxt_reuse_rx_agg_bufs(bnapi, cp_cons, agg_bufs - i);
802 return NULL;
803 }
804
Michael Chan2839f282016-04-25 02:30:50 -0400805 dma_unmap_page(&pdev->dev, mapping, BNXT_RX_PAGE_SIZE,
Michael Chanc0c050c2015-10-22 16:01:17 -0400806 PCI_DMA_FROMDEVICE);
807
808 skb->data_len += frag_len;
809 skb->len += frag_len;
810 skb->truesize += PAGE_SIZE;
811
812 prod = NEXT_RX_AGG(prod);
813 cp_cons = NEXT_CMP(cp_cons);
814 }
815 rxr->rx_agg_prod = prod;
816 return skb;
817}
818
819static int bnxt_agg_bufs_valid(struct bnxt *bp, struct bnxt_cp_ring_info *cpr,
820 u8 agg_bufs, u32 *raw_cons)
821{
822 u16 last;
823 struct rx_agg_cmp *agg;
824
825 *raw_cons = ADV_RAW_CMP(*raw_cons, agg_bufs);
826 last = RING_CMP(*raw_cons);
827 agg = (struct rx_agg_cmp *)
828 &cpr->cp_desc_ring[CP_RING(last)][CP_IDX(last)];
829 return RX_AGG_CMP_VALID(agg, *raw_cons);
830}
831
832static inline struct sk_buff *bnxt_copy_skb(struct bnxt_napi *bnapi, u8 *data,
833 unsigned int len,
834 dma_addr_t mapping)
835{
836 struct bnxt *bp = bnapi->bp;
837 struct pci_dev *pdev = bp->pdev;
838 struct sk_buff *skb;
839
840 skb = napi_alloc_skb(&bnapi->napi, len);
841 if (!skb)
842 return NULL;
843
844 dma_sync_single_for_cpu(&pdev->dev, mapping,
845 bp->rx_copy_thresh, PCI_DMA_FROMDEVICE);
846
847 memcpy(skb->data - BNXT_RX_OFFSET, data, len + BNXT_RX_OFFSET);
848
849 dma_sync_single_for_device(&pdev->dev, mapping,
850 bp->rx_copy_thresh,
851 PCI_DMA_FROMDEVICE);
852
853 skb_put(skb, len);
854 return skb;
855}
856
Michael Chanfa7e2812016-05-10 19:18:00 -0400857static int bnxt_discard_rx(struct bnxt *bp, struct bnxt_napi *bnapi,
858 u32 *raw_cons, void *cmp)
859{
860 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
861 struct rx_cmp *rxcmp = cmp;
862 u32 tmp_raw_cons = *raw_cons;
863 u8 cmp_type, agg_bufs = 0;
864
865 cmp_type = RX_CMP_TYPE(rxcmp);
866
867 if (cmp_type == CMP_TYPE_RX_L2_CMP) {
868 agg_bufs = (le32_to_cpu(rxcmp->rx_cmp_misc_v1) &
869 RX_CMP_AGG_BUFS) >>
870 RX_CMP_AGG_BUFS_SHIFT;
871 } else if (cmp_type == CMP_TYPE_RX_L2_TPA_END_CMP) {
872 struct rx_tpa_end_cmp *tpa_end = cmp;
873
874 agg_bufs = (le32_to_cpu(tpa_end->rx_tpa_end_cmp_misc_v1) &
875 RX_TPA_END_CMP_AGG_BUFS) >>
876 RX_TPA_END_CMP_AGG_BUFS_SHIFT;
877 }
878
879 if (agg_bufs) {
880 if (!bnxt_agg_bufs_valid(bp, cpr, agg_bufs, &tmp_raw_cons))
881 return -EBUSY;
882 }
883 *raw_cons = tmp_raw_cons;
884 return 0;
885}
886
887static void bnxt_sched_reset(struct bnxt *bp, struct bnxt_rx_ring_info *rxr)
888{
889 if (!rxr->bnapi->in_reset) {
890 rxr->bnapi->in_reset = true;
891 set_bit(BNXT_RESET_TASK_SP_EVENT, &bp->sp_event);
892 schedule_work(&bp->sp_task);
893 }
894 rxr->rx_next_cons = 0xffff;
895}
896
Michael Chanc0c050c2015-10-22 16:01:17 -0400897static void bnxt_tpa_start(struct bnxt *bp, struct bnxt_rx_ring_info *rxr,
898 struct rx_tpa_start_cmp *tpa_start,
899 struct rx_tpa_start_cmp_ext *tpa_start1)
900{
901 u8 agg_id = TPA_START_AGG_ID(tpa_start);
902 u16 cons, prod;
903 struct bnxt_tpa_info *tpa_info;
904 struct bnxt_sw_rx_bd *cons_rx_buf, *prod_rx_buf;
905 struct rx_bd *prod_bd;
906 dma_addr_t mapping;
907
908 cons = tpa_start->rx_tpa_start_cmp_opaque;
909 prod = rxr->rx_prod;
910 cons_rx_buf = &rxr->rx_buf_ring[cons];
911 prod_rx_buf = &rxr->rx_buf_ring[prod];
912 tpa_info = &rxr->rx_tpa[agg_id];
913
Michael Chanfa7e2812016-05-10 19:18:00 -0400914 if (unlikely(cons != rxr->rx_next_cons)) {
915 bnxt_sched_reset(bp, rxr);
916 return;
917 }
918
Michael Chanc0c050c2015-10-22 16:01:17 -0400919 prod_rx_buf->data = tpa_info->data;
920
921 mapping = tpa_info->mapping;
922 dma_unmap_addr_set(prod_rx_buf, mapping, mapping);
923
924 prod_bd = &rxr->rx_desc_ring[RX_RING(prod)][RX_IDX(prod)];
925
926 prod_bd->rx_bd_haddr = cpu_to_le64(mapping);
927
928 tpa_info->data = cons_rx_buf->data;
929 cons_rx_buf->data = NULL;
930 tpa_info->mapping = dma_unmap_addr(cons_rx_buf, mapping);
931
932 tpa_info->len =
933 le32_to_cpu(tpa_start->rx_tpa_start_cmp_len_flags_type) >>
934 RX_TPA_START_CMP_LEN_SHIFT;
935 if (likely(TPA_START_HASH_VALID(tpa_start))) {
936 u32 hash_type = TPA_START_HASH_TYPE(tpa_start);
937
938 tpa_info->hash_type = PKT_HASH_TYPE_L4;
939 tpa_info->gso_type = SKB_GSO_TCPV4;
940 /* RSS profiles 1 and 3 with extract code 0 for inner 4-tuple */
941 if (hash_type == 3)
942 tpa_info->gso_type = SKB_GSO_TCPV6;
943 tpa_info->rss_hash =
944 le32_to_cpu(tpa_start->rx_tpa_start_cmp_rss_hash);
945 } else {
946 tpa_info->hash_type = PKT_HASH_TYPE_NONE;
947 tpa_info->gso_type = 0;
948 if (netif_msg_rx_err(bp))
949 netdev_warn(bp->dev, "TPA packet without valid hash\n");
950 }
951 tpa_info->flags2 = le32_to_cpu(tpa_start1->rx_tpa_start_cmp_flags2);
952 tpa_info->metadata = le32_to_cpu(tpa_start1->rx_tpa_start_cmp_metadata);
Michael Chan94758f82016-06-13 02:25:35 -0400953 tpa_info->hdr_info = le32_to_cpu(tpa_start1->rx_tpa_start_cmp_hdr_info);
Michael Chanc0c050c2015-10-22 16:01:17 -0400954
955 rxr->rx_prod = NEXT_RX(prod);
956 cons = NEXT_RX(cons);
Michael Chan376a5b82016-05-10 19:17:59 -0400957 rxr->rx_next_cons = NEXT_RX(cons);
Michael Chanc0c050c2015-10-22 16:01:17 -0400958 cons_rx_buf = &rxr->rx_buf_ring[cons];
959
960 bnxt_reuse_rx_data(rxr, cons, cons_rx_buf->data);
961 rxr->rx_prod = NEXT_RX(rxr->rx_prod);
962 cons_rx_buf->data = NULL;
963}
964
965static void bnxt_abort_tpa(struct bnxt *bp, struct bnxt_napi *bnapi,
966 u16 cp_cons, u32 agg_bufs)
967{
968 if (agg_bufs)
969 bnxt_reuse_rx_agg_bufs(bnapi, cp_cons, agg_bufs);
970}
971
Michael Chan94758f82016-06-13 02:25:35 -0400972static struct sk_buff *bnxt_gro_func_5731x(struct bnxt_tpa_info *tpa_info,
973 int payload_off, int tcp_ts,
974 struct sk_buff *skb)
975{
976#ifdef CONFIG_INET
977 struct tcphdr *th;
978 int len, nw_off;
979 u16 outer_ip_off, inner_ip_off, inner_mac_off;
980 u32 hdr_info = tpa_info->hdr_info;
981 bool loopback = false;
982
983 inner_ip_off = BNXT_TPA_INNER_L3_OFF(hdr_info);
984 inner_mac_off = BNXT_TPA_INNER_L2_OFF(hdr_info);
985 outer_ip_off = BNXT_TPA_OUTER_L3_OFF(hdr_info);
986
987 /* If the packet is an internal loopback packet, the offsets will
988 * have an extra 4 bytes.
989 */
990 if (inner_mac_off == 4) {
991 loopback = true;
992 } else if (inner_mac_off > 4) {
993 __be16 proto = *((__be16 *)(skb->data + inner_ip_off -
994 ETH_HLEN - 2));
995
996 /* We only support inner iPv4/ipv6. If we don't see the
997 * correct protocol ID, it must be a loopback packet where
998 * the offsets are off by 4.
999 */
Dan Carpenter09a76362016-07-07 11:23:09 +03001000 if (proto != htons(ETH_P_IP) && proto != htons(ETH_P_IPV6))
Michael Chan94758f82016-06-13 02:25:35 -04001001 loopback = true;
1002 }
1003 if (loopback) {
1004 /* internal loopback packet, subtract all offsets by 4 */
1005 inner_ip_off -= 4;
1006 inner_mac_off -= 4;
1007 outer_ip_off -= 4;
1008 }
1009
1010 nw_off = inner_ip_off - ETH_HLEN;
1011 skb_set_network_header(skb, nw_off);
1012 if (tpa_info->flags2 & RX_TPA_START_CMP_FLAGS2_IP_TYPE) {
1013 struct ipv6hdr *iph = ipv6_hdr(skb);
1014
1015 skb_set_transport_header(skb, nw_off + sizeof(struct ipv6hdr));
1016 len = skb->len - skb_transport_offset(skb);
1017 th = tcp_hdr(skb);
1018 th->check = ~tcp_v6_check(len, &iph->saddr, &iph->daddr, 0);
1019 } else {
1020 struct iphdr *iph = ip_hdr(skb);
1021
1022 skb_set_transport_header(skb, nw_off + sizeof(struct iphdr));
1023 len = skb->len - skb_transport_offset(skb);
1024 th = tcp_hdr(skb);
1025 th->check = ~tcp_v4_check(len, iph->saddr, iph->daddr, 0);
1026 }
1027
1028 if (inner_mac_off) { /* tunnel */
1029 struct udphdr *uh = NULL;
1030 __be16 proto = *((__be16 *)(skb->data + outer_ip_off -
1031 ETH_HLEN - 2));
1032
1033 if (proto == htons(ETH_P_IP)) {
1034 struct iphdr *iph = (struct iphdr *)skb->data;
1035
1036 if (iph->protocol == IPPROTO_UDP)
1037 uh = (struct udphdr *)(iph + 1);
1038 } else {
1039 struct ipv6hdr *iph = (struct ipv6hdr *)skb->data;
1040
1041 if (iph->nexthdr == IPPROTO_UDP)
1042 uh = (struct udphdr *)(iph + 1);
1043 }
1044 if (uh) {
1045 if (uh->check)
1046 skb_shinfo(skb)->gso_type |=
1047 SKB_GSO_UDP_TUNNEL_CSUM;
1048 else
1049 skb_shinfo(skb)->gso_type |= SKB_GSO_UDP_TUNNEL;
1050 }
1051 }
1052#endif
1053 return skb;
1054}
1055
Michael Chanc0c050c2015-10-22 16:01:17 -04001056#define BNXT_IPV4_HDR_SIZE (sizeof(struct iphdr) + sizeof(struct tcphdr))
1057#define BNXT_IPV6_HDR_SIZE (sizeof(struct ipv6hdr) + sizeof(struct tcphdr))
1058
Michael Chan309369c2016-06-13 02:25:34 -04001059static struct sk_buff *bnxt_gro_func_5730x(struct bnxt_tpa_info *tpa_info,
1060 int payload_off, int tcp_ts,
Michael Chanc0c050c2015-10-22 16:01:17 -04001061 struct sk_buff *skb)
1062{
Michael Chand1611c32015-10-25 22:27:57 -04001063#ifdef CONFIG_INET
Michael Chanc0c050c2015-10-22 16:01:17 -04001064 struct tcphdr *th;
Michael Chan309369c2016-06-13 02:25:34 -04001065 int len, nw_off, tcp_opt_len;
Michael Chanc0c050c2015-10-22 16:01:17 -04001066
Michael Chan309369c2016-06-13 02:25:34 -04001067 if (tcp_ts)
Michael Chanc0c050c2015-10-22 16:01:17 -04001068 tcp_opt_len = 12;
1069
Michael Chanc0c050c2015-10-22 16:01:17 -04001070 if (tpa_info->gso_type == SKB_GSO_TCPV4) {
1071 struct iphdr *iph;
1072
1073 nw_off = payload_off - BNXT_IPV4_HDR_SIZE - tcp_opt_len -
1074 ETH_HLEN;
1075 skb_set_network_header(skb, nw_off);
1076 iph = ip_hdr(skb);
1077 skb_set_transport_header(skb, nw_off + sizeof(struct iphdr));
1078 len = skb->len - skb_transport_offset(skb);
1079 th = tcp_hdr(skb);
1080 th->check = ~tcp_v4_check(len, iph->saddr, iph->daddr, 0);
1081 } else if (tpa_info->gso_type == SKB_GSO_TCPV6) {
1082 struct ipv6hdr *iph;
1083
1084 nw_off = payload_off - BNXT_IPV6_HDR_SIZE - tcp_opt_len -
1085 ETH_HLEN;
1086 skb_set_network_header(skb, nw_off);
1087 iph = ipv6_hdr(skb);
1088 skb_set_transport_header(skb, nw_off + sizeof(struct ipv6hdr));
1089 len = skb->len - skb_transport_offset(skb);
1090 th = tcp_hdr(skb);
1091 th->check = ~tcp_v6_check(len, &iph->saddr, &iph->daddr, 0);
1092 } else {
1093 dev_kfree_skb_any(skb);
1094 return NULL;
1095 }
1096 tcp_gro_complete(skb);
1097
1098 if (nw_off) { /* tunnel */
1099 struct udphdr *uh = NULL;
1100
1101 if (skb->protocol == htons(ETH_P_IP)) {
1102 struct iphdr *iph = (struct iphdr *)skb->data;
1103
1104 if (iph->protocol == IPPROTO_UDP)
1105 uh = (struct udphdr *)(iph + 1);
1106 } else {
1107 struct ipv6hdr *iph = (struct ipv6hdr *)skb->data;
1108
1109 if (iph->nexthdr == IPPROTO_UDP)
1110 uh = (struct udphdr *)(iph + 1);
1111 }
1112 if (uh) {
1113 if (uh->check)
1114 skb_shinfo(skb)->gso_type |=
1115 SKB_GSO_UDP_TUNNEL_CSUM;
1116 else
1117 skb_shinfo(skb)->gso_type |= SKB_GSO_UDP_TUNNEL;
1118 }
1119 }
1120#endif
1121 return skb;
1122}
1123
Michael Chan309369c2016-06-13 02:25:34 -04001124static inline struct sk_buff *bnxt_gro_skb(struct bnxt *bp,
1125 struct bnxt_tpa_info *tpa_info,
1126 struct rx_tpa_end_cmp *tpa_end,
1127 struct rx_tpa_end_cmp_ext *tpa_end1,
1128 struct sk_buff *skb)
1129{
1130#ifdef CONFIG_INET
1131 int payload_off;
1132 u16 segs;
1133
1134 segs = TPA_END_TPA_SEGS(tpa_end);
1135 if (segs == 1)
1136 return skb;
1137
1138 NAPI_GRO_CB(skb)->count = segs;
1139 skb_shinfo(skb)->gso_size =
1140 le32_to_cpu(tpa_end1->rx_tpa_end_cmp_seg_len);
1141 skb_shinfo(skb)->gso_type = tpa_info->gso_type;
1142 payload_off = (le32_to_cpu(tpa_end->rx_tpa_end_cmp_misc_v1) &
1143 RX_TPA_END_CMP_PAYLOAD_OFFSET) >>
1144 RX_TPA_END_CMP_PAYLOAD_OFFSET_SHIFT;
1145 skb = bp->gro_func(tpa_info, payload_off, TPA_END_GRO_TS(tpa_end), skb);
1146#endif
1147 return skb;
1148}
1149
Michael Chanc0c050c2015-10-22 16:01:17 -04001150static inline struct sk_buff *bnxt_tpa_end(struct bnxt *bp,
1151 struct bnxt_napi *bnapi,
1152 u32 *raw_cons,
1153 struct rx_tpa_end_cmp *tpa_end,
1154 struct rx_tpa_end_cmp_ext *tpa_end1,
1155 bool *agg_event)
1156{
1157 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
Michael Chanb6ab4b02016-01-02 23:44:59 -05001158 struct bnxt_rx_ring_info *rxr = bnapi->rx_ring;
Michael Chanc0c050c2015-10-22 16:01:17 -04001159 u8 agg_id = TPA_END_AGG_ID(tpa_end);
1160 u8 *data, agg_bufs;
1161 u16 cp_cons = RING_CMP(*raw_cons);
1162 unsigned int len;
1163 struct bnxt_tpa_info *tpa_info;
1164 dma_addr_t mapping;
1165 struct sk_buff *skb;
1166
Michael Chanfa7e2812016-05-10 19:18:00 -04001167 if (unlikely(bnapi->in_reset)) {
1168 int rc = bnxt_discard_rx(bp, bnapi, raw_cons, tpa_end);
1169
1170 if (rc < 0)
1171 return ERR_PTR(-EBUSY);
1172 return NULL;
1173 }
1174
Michael Chanc0c050c2015-10-22 16:01:17 -04001175 tpa_info = &rxr->rx_tpa[agg_id];
1176 data = tpa_info->data;
1177 prefetch(data);
1178 len = tpa_info->len;
1179 mapping = tpa_info->mapping;
1180
1181 agg_bufs = (le32_to_cpu(tpa_end->rx_tpa_end_cmp_misc_v1) &
1182 RX_TPA_END_CMP_AGG_BUFS) >> RX_TPA_END_CMP_AGG_BUFS_SHIFT;
1183
1184 if (agg_bufs) {
1185 if (!bnxt_agg_bufs_valid(bp, cpr, agg_bufs, raw_cons))
1186 return ERR_PTR(-EBUSY);
1187
1188 *agg_event = true;
1189 cp_cons = NEXT_CMP(cp_cons);
1190 }
1191
1192 if (unlikely(agg_bufs > MAX_SKB_FRAGS)) {
1193 bnxt_abort_tpa(bp, bnapi, cp_cons, agg_bufs);
1194 netdev_warn(bp->dev, "TPA frags %d exceeded MAX_SKB_FRAGS %d\n",
1195 agg_bufs, (int)MAX_SKB_FRAGS);
1196 return NULL;
1197 }
1198
1199 if (len <= bp->rx_copy_thresh) {
1200 skb = bnxt_copy_skb(bnapi, data, len, mapping);
1201 if (!skb) {
1202 bnxt_abort_tpa(bp, bnapi, cp_cons, agg_bufs);
1203 return NULL;
1204 }
1205 } else {
1206 u8 *new_data;
1207 dma_addr_t new_mapping;
1208
1209 new_data = __bnxt_alloc_rx_data(bp, &new_mapping, GFP_ATOMIC);
1210 if (!new_data) {
1211 bnxt_abort_tpa(bp, bnapi, cp_cons, agg_bufs);
1212 return NULL;
1213 }
1214
1215 tpa_info->data = new_data;
1216 tpa_info->mapping = new_mapping;
1217
1218 skb = build_skb(data, 0);
1219 dma_unmap_single(&bp->pdev->dev, mapping, bp->rx_buf_use_size,
1220 PCI_DMA_FROMDEVICE);
1221
1222 if (!skb) {
1223 kfree(data);
1224 bnxt_abort_tpa(bp, bnapi, cp_cons, agg_bufs);
1225 return NULL;
1226 }
1227 skb_reserve(skb, BNXT_RX_OFFSET);
1228 skb_put(skb, len);
1229 }
1230
1231 if (agg_bufs) {
1232 skb = bnxt_rx_pages(bp, bnapi, skb, cp_cons, agg_bufs);
1233 if (!skb) {
1234 /* Page reuse already handled by bnxt_rx_pages(). */
1235 return NULL;
1236 }
1237 }
1238 skb->protocol = eth_type_trans(skb, bp->dev);
1239
1240 if (tpa_info->hash_type != PKT_HASH_TYPE_NONE)
1241 skb_set_hash(skb, tpa_info->rss_hash, tpa_info->hash_type);
1242
Michael Chan8852ddb2016-06-06 02:37:16 -04001243 if ((tpa_info->flags2 & RX_CMP_FLAGS2_META_FORMAT_VLAN) &&
1244 (skb->dev->features & NETIF_F_HW_VLAN_CTAG_RX)) {
Michael Chanc0c050c2015-10-22 16:01:17 -04001245 u16 vlan_proto = tpa_info->metadata >>
1246 RX_CMP_FLAGS2_METADATA_TPID_SFT;
Michael Chan8852ddb2016-06-06 02:37:16 -04001247 u16 vtag = tpa_info->metadata & RX_CMP_FLAGS2_METADATA_VID_MASK;
Michael Chanc0c050c2015-10-22 16:01:17 -04001248
Michael Chan8852ddb2016-06-06 02:37:16 -04001249 __vlan_hwaccel_put_tag(skb, htons(vlan_proto), vtag);
Michael Chanc0c050c2015-10-22 16:01:17 -04001250 }
1251
1252 skb_checksum_none_assert(skb);
1253 if (likely(tpa_info->flags2 & RX_TPA_START_CMP_FLAGS2_L4_CS_CALC)) {
1254 skb->ip_summed = CHECKSUM_UNNECESSARY;
1255 skb->csum_level =
1256 (tpa_info->flags2 & RX_CMP_FLAGS2_T_L4_CS_CALC) >> 3;
1257 }
1258
1259 if (TPA_END_GRO(tpa_end))
Michael Chan309369c2016-06-13 02:25:34 -04001260 skb = bnxt_gro_skb(bp, tpa_info, tpa_end, tpa_end1, skb);
Michael Chanc0c050c2015-10-22 16:01:17 -04001261
1262 return skb;
1263}
1264
1265/* returns the following:
1266 * 1 - 1 packet successfully received
1267 * 0 - successful TPA_START, packet not completed yet
1268 * -EBUSY - completion ring does not have all the agg buffers yet
1269 * -ENOMEM - packet aborted due to out of memory
1270 * -EIO - packet aborted due to hw error indicated in BD
1271 */
1272static int bnxt_rx_pkt(struct bnxt *bp, struct bnxt_napi *bnapi, u32 *raw_cons,
1273 bool *agg_event)
1274{
1275 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
Michael Chanb6ab4b02016-01-02 23:44:59 -05001276 struct bnxt_rx_ring_info *rxr = bnapi->rx_ring;
Michael Chanc0c050c2015-10-22 16:01:17 -04001277 struct net_device *dev = bp->dev;
1278 struct rx_cmp *rxcmp;
1279 struct rx_cmp_ext *rxcmp1;
1280 u32 tmp_raw_cons = *raw_cons;
1281 u16 cons, prod, cp_cons = RING_CMP(tmp_raw_cons);
1282 struct bnxt_sw_rx_bd *rx_buf;
1283 unsigned int len;
1284 u8 *data, agg_bufs, cmp_type;
1285 dma_addr_t dma_addr;
1286 struct sk_buff *skb;
1287 int rc = 0;
1288
1289 rxcmp = (struct rx_cmp *)
1290 &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)];
1291
1292 tmp_raw_cons = NEXT_RAW_CMP(tmp_raw_cons);
1293 cp_cons = RING_CMP(tmp_raw_cons);
1294 rxcmp1 = (struct rx_cmp_ext *)
1295 &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)];
1296
1297 if (!RX_CMP_VALID(rxcmp1, tmp_raw_cons))
1298 return -EBUSY;
1299
1300 cmp_type = RX_CMP_TYPE(rxcmp);
1301
1302 prod = rxr->rx_prod;
1303
1304 if (cmp_type == CMP_TYPE_RX_L2_TPA_START_CMP) {
1305 bnxt_tpa_start(bp, rxr, (struct rx_tpa_start_cmp *)rxcmp,
1306 (struct rx_tpa_start_cmp_ext *)rxcmp1);
1307
1308 goto next_rx_no_prod;
1309
1310 } else if (cmp_type == CMP_TYPE_RX_L2_TPA_END_CMP) {
1311 skb = bnxt_tpa_end(bp, bnapi, &tmp_raw_cons,
1312 (struct rx_tpa_end_cmp *)rxcmp,
1313 (struct rx_tpa_end_cmp_ext *)rxcmp1,
1314 agg_event);
1315
1316 if (unlikely(IS_ERR(skb)))
1317 return -EBUSY;
1318
1319 rc = -ENOMEM;
1320 if (likely(skb)) {
1321 skb_record_rx_queue(skb, bnapi->index);
1322 skb_mark_napi_id(skb, &bnapi->napi);
1323 if (bnxt_busy_polling(bnapi))
1324 netif_receive_skb(skb);
1325 else
1326 napi_gro_receive(&bnapi->napi, skb);
1327 rc = 1;
1328 }
1329 goto next_rx_no_prod;
1330 }
1331
1332 cons = rxcmp->rx_cmp_opaque;
1333 rx_buf = &rxr->rx_buf_ring[cons];
1334 data = rx_buf->data;
Michael Chanfa7e2812016-05-10 19:18:00 -04001335 if (unlikely(cons != rxr->rx_next_cons)) {
1336 int rc1 = bnxt_discard_rx(bp, bnapi, raw_cons, rxcmp);
1337
1338 bnxt_sched_reset(bp, rxr);
1339 return rc1;
1340 }
Michael Chanc0c050c2015-10-22 16:01:17 -04001341 prefetch(data);
1342
1343 agg_bufs = (le32_to_cpu(rxcmp->rx_cmp_misc_v1) & RX_CMP_AGG_BUFS) >>
1344 RX_CMP_AGG_BUFS_SHIFT;
1345
1346 if (agg_bufs) {
1347 if (!bnxt_agg_bufs_valid(bp, cpr, agg_bufs, &tmp_raw_cons))
1348 return -EBUSY;
1349
1350 cp_cons = NEXT_CMP(cp_cons);
1351 *agg_event = true;
1352 }
1353
1354 rx_buf->data = NULL;
1355 if (rxcmp1->rx_cmp_cfa_code_errors_v2 & RX_CMP_L2_ERRORS) {
1356 bnxt_reuse_rx_data(rxr, cons, data);
1357 if (agg_bufs)
1358 bnxt_reuse_rx_agg_bufs(bnapi, cp_cons, agg_bufs);
1359
1360 rc = -EIO;
1361 goto next_rx;
1362 }
1363
1364 len = le32_to_cpu(rxcmp->rx_cmp_len_flags_type) >> RX_CMP_LEN_SHIFT;
1365 dma_addr = dma_unmap_addr(rx_buf, mapping);
1366
1367 if (len <= bp->rx_copy_thresh) {
1368 skb = bnxt_copy_skb(bnapi, data, len, dma_addr);
1369 bnxt_reuse_rx_data(rxr, cons, data);
1370 if (!skb) {
1371 rc = -ENOMEM;
1372 goto next_rx;
1373 }
1374 } else {
1375 skb = bnxt_rx_skb(bp, rxr, cons, prod, data, dma_addr, len);
1376 if (!skb) {
1377 rc = -ENOMEM;
1378 goto next_rx;
1379 }
1380 }
1381
1382 if (agg_bufs) {
1383 skb = bnxt_rx_pages(bp, bnapi, skb, cp_cons, agg_bufs);
1384 if (!skb) {
1385 rc = -ENOMEM;
1386 goto next_rx;
1387 }
1388 }
1389
1390 if (RX_CMP_HASH_VALID(rxcmp)) {
1391 u32 hash_type = RX_CMP_HASH_TYPE(rxcmp);
1392 enum pkt_hash_types type = PKT_HASH_TYPE_L4;
1393
1394 /* RSS profiles 1 and 3 with extract code 0 for inner 4-tuple */
1395 if (hash_type != 1 && hash_type != 3)
1396 type = PKT_HASH_TYPE_L3;
1397 skb_set_hash(skb, le32_to_cpu(rxcmp->rx_cmp_rss_hash), type);
1398 }
1399
1400 skb->protocol = eth_type_trans(skb, dev);
1401
Michael Chan8852ddb2016-06-06 02:37:16 -04001402 if ((rxcmp1->rx_cmp_flags2 &
1403 cpu_to_le32(RX_CMP_FLAGS2_META_FORMAT_VLAN)) &&
1404 (skb->dev->features & NETIF_F_HW_VLAN_CTAG_RX)) {
Michael Chanc0c050c2015-10-22 16:01:17 -04001405 u32 meta_data = le32_to_cpu(rxcmp1->rx_cmp_meta_data);
Michael Chan8852ddb2016-06-06 02:37:16 -04001406 u16 vtag = meta_data & RX_CMP_FLAGS2_METADATA_VID_MASK;
Michael Chanc0c050c2015-10-22 16:01:17 -04001407 u16 vlan_proto = meta_data >> RX_CMP_FLAGS2_METADATA_TPID_SFT;
1408
Michael Chan8852ddb2016-06-06 02:37:16 -04001409 __vlan_hwaccel_put_tag(skb, htons(vlan_proto), vtag);
Michael Chanc0c050c2015-10-22 16:01:17 -04001410 }
1411
1412 skb_checksum_none_assert(skb);
1413 if (RX_CMP_L4_CS_OK(rxcmp1)) {
1414 if (dev->features & NETIF_F_RXCSUM) {
1415 skb->ip_summed = CHECKSUM_UNNECESSARY;
1416 skb->csum_level = RX_CMP_ENCAP(rxcmp1);
1417 }
1418 } else {
Satish Baddipadige665e3502015-12-27 18:19:21 -05001419 if (rxcmp1->rx_cmp_cfa_code_errors_v2 & RX_CMP_L4_CS_ERR_BITS) {
1420 if (dev->features & NETIF_F_RXCSUM)
1421 cpr->rx_l4_csum_errors++;
1422 }
Michael Chanc0c050c2015-10-22 16:01:17 -04001423 }
1424
1425 skb_record_rx_queue(skb, bnapi->index);
1426 skb_mark_napi_id(skb, &bnapi->napi);
1427 if (bnxt_busy_polling(bnapi))
1428 netif_receive_skb(skb);
1429 else
1430 napi_gro_receive(&bnapi->napi, skb);
1431 rc = 1;
1432
1433next_rx:
1434 rxr->rx_prod = NEXT_RX(prod);
Michael Chan376a5b82016-05-10 19:17:59 -04001435 rxr->rx_next_cons = NEXT_RX(cons);
Michael Chanc0c050c2015-10-22 16:01:17 -04001436
1437next_rx_no_prod:
1438 *raw_cons = tmp_raw_cons;
1439
1440 return rc;
1441}
1442
Michael Chan4bb13ab2016-04-05 14:09:01 -04001443#define BNXT_GET_EVENT_PORT(data) \
1444 ((data) & \
1445 HWRM_ASYNC_EVENT_CMPL_PORT_CONN_NOT_ALLOWED_EVENT_DATA1_PORT_ID_MASK)
1446
Michael Chanc0c050c2015-10-22 16:01:17 -04001447static int bnxt_async_event_process(struct bnxt *bp,
1448 struct hwrm_async_event_cmpl *cmpl)
1449{
1450 u16 event_id = le16_to_cpu(cmpl->event_id);
1451
1452 /* TODO CHIMP_FW: Define event id's for link change, error etc */
1453 switch (event_id) {
Michael Chan8cbde112016-04-11 04:11:14 -04001454 case HWRM_ASYNC_EVENT_CMPL_EVENT_ID_LINK_SPEED_CFG_CHANGE: {
1455 u32 data1 = le32_to_cpu(cmpl->event_data1);
1456 struct bnxt_link_info *link_info = &bp->link_info;
1457
1458 if (BNXT_VF(bp))
1459 goto async_event_process_exit;
1460 if (data1 & 0x20000) {
1461 u16 fw_speed = link_info->force_link_speed;
1462 u32 speed = bnxt_fw_to_ethtool_speed(fw_speed);
1463
1464 netdev_warn(bp->dev, "Link speed %d no longer supported\n",
1465 speed);
1466 }
1467 /* fall thru */
1468 }
Michael Chanc0c050c2015-10-22 16:01:17 -04001469 case HWRM_ASYNC_EVENT_CMPL_EVENT_ID_LINK_STATUS_CHANGE:
1470 set_bit(BNXT_LINK_CHNG_SP_EVENT, &bp->sp_event);
Jeffrey Huang19241362016-02-26 04:00:00 -05001471 break;
1472 case HWRM_ASYNC_EVENT_CMPL_EVENT_ID_PF_DRVR_UNLOAD:
1473 set_bit(BNXT_HWRM_PF_UNLOAD_SP_EVENT, &bp->sp_event);
Michael Chanc0c050c2015-10-22 16:01:17 -04001474 break;
Michael Chan4bb13ab2016-04-05 14:09:01 -04001475 case HWRM_ASYNC_EVENT_CMPL_EVENT_ID_PORT_CONN_NOT_ALLOWED: {
1476 u32 data1 = le32_to_cpu(cmpl->event_data1);
1477 u16 port_id = BNXT_GET_EVENT_PORT(data1);
1478
1479 if (BNXT_VF(bp))
1480 break;
1481
1482 if (bp->pf.port_id != port_id)
1483 break;
1484
Michael Chan4bb13ab2016-04-05 14:09:01 -04001485 set_bit(BNXT_HWRM_PORT_MODULE_SP_EVENT, &bp->sp_event);
1486 break;
1487 }
Michael Chanfc0f1922016-06-13 02:25:30 -04001488 case HWRM_ASYNC_EVENT_CMPL_EVENT_ID_VF_CFG_CHANGE:
1489 if (BNXT_PF(bp))
1490 goto async_event_process_exit;
1491 set_bit(BNXT_RESET_TASK_SILENT_SP_EVENT, &bp->sp_event);
1492 break;
Michael Chanc0c050c2015-10-22 16:01:17 -04001493 default:
1494 netdev_err(bp->dev, "unhandled ASYNC event (id 0x%x)\n",
1495 event_id);
Jeffrey Huang19241362016-02-26 04:00:00 -05001496 goto async_event_process_exit;
Michael Chanc0c050c2015-10-22 16:01:17 -04001497 }
Jeffrey Huang19241362016-02-26 04:00:00 -05001498 schedule_work(&bp->sp_task);
1499async_event_process_exit:
Michael Chanc0c050c2015-10-22 16:01:17 -04001500 return 0;
1501}
1502
1503static int bnxt_hwrm_handler(struct bnxt *bp, struct tx_cmp *txcmp)
1504{
1505 u16 cmpl_type = TX_CMP_TYPE(txcmp), vf_id, seq_id;
1506 struct hwrm_cmpl *h_cmpl = (struct hwrm_cmpl *)txcmp;
1507 struct hwrm_fwd_req_cmpl *fwd_req_cmpl =
1508 (struct hwrm_fwd_req_cmpl *)txcmp;
1509
1510 switch (cmpl_type) {
1511 case CMPL_BASE_TYPE_HWRM_DONE:
1512 seq_id = le16_to_cpu(h_cmpl->sequence_id);
1513 if (seq_id == bp->hwrm_intr_seq_id)
1514 bp->hwrm_intr_seq_id = HWRM_SEQ_ID_INVALID;
1515 else
1516 netdev_err(bp->dev, "Invalid hwrm seq id %d\n", seq_id);
1517 break;
1518
1519 case CMPL_BASE_TYPE_HWRM_FWD_REQ:
1520 vf_id = le16_to_cpu(fwd_req_cmpl->source_id);
1521
1522 if ((vf_id < bp->pf.first_vf_id) ||
1523 (vf_id >= bp->pf.first_vf_id + bp->pf.active_vfs)) {
1524 netdev_err(bp->dev, "Msg contains invalid VF id %x\n",
1525 vf_id);
1526 return -EINVAL;
1527 }
1528
1529 set_bit(vf_id - bp->pf.first_vf_id, bp->pf.vf_event_bmap);
1530 set_bit(BNXT_HWRM_EXEC_FWD_REQ_SP_EVENT, &bp->sp_event);
1531 schedule_work(&bp->sp_task);
1532 break;
1533
1534 case CMPL_BASE_TYPE_HWRM_ASYNC_EVENT:
1535 bnxt_async_event_process(bp,
1536 (struct hwrm_async_event_cmpl *)txcmp);
1537
1538 default:
1539 break;
1540 }
1541
1542 return 0;
1543}
1544
1545static irqreturn_t bnxt_msix(int irq, void *dev_instance)
1546{
1547 struct bnxt_napi *bnapi = dev_instance;
1548 struct bnxt *bp = bnapi->bp;
1549 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
1550 u32 cons = RING_CMP(cpr->cp_raw_cons);
1551
1552 prefetch(&cpr->cp_desc_ring[CP_RING(cons)][CP_IDX(cons)]);
1553 napi_schedule(&bnapi->napi);
1554 return IRQ_HANDLED;
1555}
1556
1557static inline int bnxt_has_work(struct bnxt *bp, struct bnxt_cp_ring_info *cpr)
1558{
1559 u32 raw_cons = cpr->cp_raw_cons;
1560 u16 cons = RING_CMP(raw_cons);
1561 struct tx_cmp *txcmp;
1562
1563 txcmp = &cpr->cp_desc_ring[CP_RING(cons)][CP_IDX(cons)];
1564
1565 return TX_CMP_VALID(txcmp, raw_cons);
1566}
1567
Michael Chanc0c050c2015-10-22 16:01:17 -04001568static irqreturn_t bnxt_inta(int irq, void *dev_instance)
1569{
1570 struct bnxt_napi *bnapi = dev_instance;
1571 struct bnxt *bp = bnapi->bp;
1572 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
1573 u32 cons = RING_CMP(cpr->cp_raw_cons);
1574 u32 int_status;
1575
1576 prefetch(&cpr->cp_desc_ring[CP_RING(cons)][CP_IDX(cons)]);
1577
1578 if (!bnxt_has_work(bp, cpr)) {
Jeffrey Huang11809492015-11-05 16:25:49 -05001579 int_status = readl(bp->bar0 + BNXT_CAG_REG_LEGACY_INT_STATUS);
Michael Chanc0c050c2015-10-22 16:01:17 -04001580 /* return if erroneous interrupt */
1581 if (!(int_status & (0x10000 << cpr->cp_ring_struct.fw_ring_id)))
1582 return IRQ_NONE;
1583 }
1584
1585 /* disable ring IRQ */
1586 BNXT_CP_DB_IRQ_DIS(cpr->cp_doorbell);
1587
1588 /* Return here if interrupt is shared and is disabled. */
1589 if (unlikely(atomic_read(&bp->intr_sem) != 0))
1590 return IRQ_HANDLED;
1591
1592 napi_schedule(&bnapi->napi);
1593 return IRQ_HANDLED;
1594}
1595
1596static int bnxt_poll_work(struct bnxt *bp, struct bnxt_napi *bnapi, int budget)
1597{
1598 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
1599 u32 raw_cons = cpr->cp_raw_cons;
1600 u32 cons;
1601 int tx_pkts = 0;
1602 int rx_pkts = 0;
1603 bool rx_event = false;
1604 bool agg_event = false;
1605 struct tx_cmp *txcmp;
1606
1607 while (1) {
1608 int rc;
1609
1610 cons = RING_CMP(raw_cons);
1611 txcmp = &cpr->cp_desc_ring[CP_RING(cons)][CP_IDX(cons)];
1612
1613 if (!TX_CMP_VALID(txcmp, raw_cons))
1614 break;
1615
Michael Chan67a95e22016-05-04 16:56:43 -04001616 /* The valid test of the entry must be done first before
1617 * reading any further.
1618 */
Michael Chanb67daab2016-05-15 03:04:51 -04001619 dma_rmb();
Michael Chanc0c050c2015-10-22 16:01:17 -04001620 if (TX_CMP_TYPE(txcmp) == CMP_TYPE_TX_L2_CMP) {
1621 tx_pkts++;
1622 /* return full budget so NAPI will complete. */
1623 if (unlikely(tx_pkts > bp->tx_wake_thresh))
1624 rx_pkts = budget;
1625 } else if ((TX_CMP_TYPE(txcmp) & 0x30) == 0x10) {
1626 rc = bnxt_rx_pkt(bp, bnapi, &raw_cons, &agg_event);
1627 if (likely(rc >= 0))
1628 rx_pkts += rc;
1629 else if (rc == -EBUSY) /* partial completion */
1630 break;
1631 rx_event = true;
1632 } else if (unlikely((TX_CMP_TYPE(txcmp) ==
1633 CMPL_BASE_TYPE_HWRM_DONE) ||
1634 (TX_CMP_TYPE(txcmp) ==
1635 CMPL_BASE_TYPE_HWRM_FWD_REQ) ||
1636 (TX_CMP_TYPE(txcmp) ==
1637 CMPL_BASE_TYPE_HWRM_ASYNC_EVENT))) {
1638 bnxt_hwrm_handler(bp, txcmp);
1639 }
1640 raw_cons = NEXT_RAW_CMP(raw_cons);
1641
1642 if (rx_pkts == budget)
1643 break;
1644 }
1645
1646 cpr->cp_raw_cons = raw_cons;
1647 /* ACK completion ring before freeing tx ring and producing new
1648 * buffers in rx/agg rings to prevent overflowing the completion
1649 * ring.
1650 */
1651 BNXT_CP_DB(cpr->cp_doorbell, cpr->cp_raw_cons);
1652
1653 if (tx_pkts)
1654 bnxt_tx_int(bp, bnapi, tx_pkts);
1655
1656 if (rx_event) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05001657 struct bnxt_rx_ring_info *rxr = bnapi->rx_ring;
Michael Chanc0c050c2015-10-22 16:01:17 -04001658
1659 writel(DB_KEY_RX | rxr->rx_prod, rxr->rx_doorbell);
1660 writel(DB_KEY_RX | rxr->rx_prod, rxr->rx_doorbell);
1661 if (agg_event) {
1662 writel(DB_KEY_RX | rxr->rx_agg_prod,
1663 rxr->rx_agg_doorbell);
1664 writel(DB_KEY_RX | rxr->rx_agg_prod,
1665 rxr->rx_agg_doorbell);
1666 }
1667 }
1668 return rx_pkts;
1669}
1670
Prashant Sreedharan10bbdaf2016-07-18 07:15:23 -04001671static int bnxt_poll_nitroa0(struct napi_struct *napi, int budget)
1672{
1673 struct bnxt_napi *bnapi = container_of(napi, struct bnxt_napi, napi);
1674 struct bnxt *bp = bnapi->bp;
1675 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
1676 struct bnxt_rx_ring_info *rxr = bnapi->rx_ring;
1677 struct tx_cmp *txcmp;
1678 struct rx_cmp_ext *rxcmp1;
1679 u32 cp_cons, tmp_raw_cons;
1680 u32 raw_cons = cpr->cp_raw_cons;
1681 u32 rx_pkts = 0;
1682 bool agg_event = false;
1683
1684 while (1) {
1685 int rc;
1686
1687 cp_cons = RING_CMP(raw_cons);
1688 txcmp = &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)];
1689
1690 if (!TX_CMP_VALID(txcmp, raw_cons))
1691 break;
1692
1693 if ((TX_CMP_TYPE(txcmp) & 0x30) == 0x10) {
1694 tmp_raw_cons = NEXT_RAW_CMP(raw_cons);
1695 cp_cons = RING_CMP(tmp_raw_cons);
1696 rxcmp1 = (struct rx_cmp_ext *)
1697 &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)];
1698
1699 if (!RX_CMP_VALID(rxcmp1, tmp_raw_cons))
1700 break;
1701
1702 /* force an error to recycle the buffer */
1703 rxcmp1->rx_cmp_cfa_code_errors_v2 |=
1704 cpu_to_le32(RX_CMPL_ERRORS_CRC_ERROR);
1705
1706 rc = bnxt_rx_pkt(bp, bnapi, &raw_cons, &agg_event);
1707 if (likely(rc == -EIO))
1708 rx_pkts++;
1709 else if (rc == -EBUSY) /* partial completion */
1710 break;
1711 } else if (unlikely(TX_CMP_TYPE(txcmp) ==
1712 CMPL_BASE_TYPE_HWRM_DONE)) {
1713 bnxt_hwrm_handler(bp, txcmp);
1714 } else {
1715 netdev_err(bp->dev,
1716 "Invalid completion received on special ring\n");
1717 }
1718 raw_cons = NEXT_RAW_CMP(raw_cons);
1719
1720 if (rx_pkts == budget)
1721 break;
1722 }
1723
1724 cpr->cp_raw_cons = raw_cons;
1725 BNXT_CP_DB(cpr->cp_doorbell, cpr->cp_raw_cons);
1726 writel(DB_KEY_RX | rxr->rx_prod, rxr->rx_doorbell);
1727 writel(DB_KEY_RX | rxr->rx_prod, rxr->rx_doorbell);
1728
1729 if (agg_event) {
1730 writel(DB_KEY_RX | rxr->rx_agg_prod, rxr->rx_agg_doorbell);
1731 writel(DB_KEY_RX | rxr->rx_agg_prod, rxr->rx_agg_doorbell);
1732 }
1733
1734 if (!bnxt_has_work(bp, cpr) && rx_pkts < budget) {
1735 napi_complete(napi);
1736 BNXT_CP_DB_REARM(cpr->cp_doorbell, cpr->cp_raw_cons);
1737 }
1738 return rx_pkts;
1739}
1740
Michael Chanc0c050c2015-10-22 16:01:17 -04001741static int bnxt_poll(struct napi_struct *napi, int budget)
1742{
1743 struct bnxt_napi *bnapi = container_of(napi, struct bnxt_napi, napi);
1744 struct bnxt *bp = bnapi->bp;
1745 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
1746 int work_done = 0;
1747
1748 if (!bnxt_lock_napi(bnapi))
1749 return budget;
1750
1751 while (1) {
1752 work_done += bnxt_poll_work(bp, bnapi, budget - work_done);
1753
1754 if (work_done >= budget)
1755 break;
1756
1757 if (!bnxt_has_work(bp, cpr)) {
1758 napi_complete(napi);
1759 BNXT_CP_DB_REARM(cpr->cp_doorbell, cpr->cp_raw_cons);
1760 break;
1761 }
1762 }
1763 mmiowb();
1764 bnxt_unlock_napi(bnapi);
1765 return work_done;
1766}
1767
1768#ifdef CONFIG_NET_RX_BUSY_POLL
1769static int bnxt_busy_poll(struct napi_struct *napi)
1770{
1771 struct bnxt_napi *bnapi = container_of(napi, struct bnxt_napi, napi);
1772 struct bnxt *bp = bnapi->bp;
1773 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
1774 int rx_work, budget = 4;
1775
1776 if (atomic_read(&bp->intr_sem) != 0)
1777 return LL_FLUSH_FAILED;
1778
1779 if (!bnxt_lock_poll(bnapi))
1780 return LL_FLUSH_BUSY;
1781
1782 rx_work = bnxt_poll_work(bp, bnapi, budget);
1783
1784 BNXT_CP_DB_REARM(cpr->cp_doorbell, cpr->cp_raw_cons);
1785
1786 bnxt_unlock_poll(bnapi);
1787 return rx_work;
1788}
1789#endif
1790
1791static void bnxt_free_tx_skbs(struct bnxt *bp)
1792{
1793 int i, max_idx;
1794 struct pci_dev *pdev = bp->pdev;
1795
Michael Chanb6ab4b02016-01-02 23:44:59 -05001796 if (!bp->tx_ring)
Michael Chanc0c050c2015-10-22 16:01:17 -04001797 return;
1798
1799 max_idx = bp->tx_nr_pages * TX_DESC_CNT;
1800 for (i = 0; i < bp->tx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05001801 struct bnxt_tx_ring_info *txr = &bp->tx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04001802 int j;
1803
Michael Chanc0c050c2015-10-22 16:01:17 -04001804 for (j = 0; j < max_idx;) {
1805 struct bnxt_sw_tx_bd *tx_buf = &txr->tx_buf_ring[j];
1806 struct sk_buff *skb = tx_buf->skb;
1807 int k, last;
1808
1809 if (!skb) {
1810 j++;
1811 continue;
1812 }
1813
1814 tx_buf->skb = NULL;
1815
1816 if (tx_buf->is_push) {
1817 dev_kfree_skb(skb);
1818 j += 2;
1819 continue;
1820 }
1821
1822 dma_unmap_single(&pdev->dev,
1823 dma_unmap_addr(tx_buf, mapping),
1824 skb_headlen(skb),
1825 PCI_DMA_TODEVICE);
1826
1827 last = tx_buf->nr_frags;
1828 j += 2;
Michael Chand612a572016-01-28 03:11:22 -05001829 for (k = 0; k < last; k++, j++) {
1830 int ring_idx = j & bp->tx_ring_mask;
Michael Chanc0c050c2015-10-22 16:01:17 -04001831 skb_frag_t *frag = &skb_shinfo(skb)->frags[k];
1832
Michael Chand612a572016-01-28 03:11:22 -05001833 tx_buf = &txr->tx_buf_ring[ring_idx];
Michael Chanc0c050c2015-10-22 16:01:17 -04001834 dma_unmap_page(
1835 &pdev->dev,
1836 dma_unmap_addr(tx_buf, mapping),
1837 skb_frag_size(frag), PCI_DMA_TODEVICE);
1838 }
1839 dev_kfree_skb(skb);
1840 }
1841 netdev_tx_reset_queue(netdev_get_tx_queue(bp->dev, i));
1842 }
1843}
1844
1845static void bnxt_free_rx_skbs(struct bnxt *bp)
1846{
1847 int i, max_idx, max_agg_idx;
1848 struct pci_dev *pdev = bp->pdev;
1849
Michael Chanb6ab4b02016-01-02 23:44:59 -05001850 if (!bp->rx_ring)
Michael Chanc0c050c2015-10-22 16:01:17 -04001851 return;
1852
1853 max_idx = bp->rx_nr_pages * RX_DESC_CNT;
1854 max_agg_idx = bp->rx_agg_nr_pages * RX_DESC_CNT;
1855 for (i = 0; i < bp->rx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05001856 struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04001857 int j;
1858
Michael Chanc0c050c2015-10-22 16:01:17 -04001859 if (rxr->rx_tpa) {
1860 for (j = 0; j < MAX_TPA; j++) {
1861 struct bnxt_tpa_info *tpa_info =
1862 &rxr->rx_tpa[j];
1863 u8 *data = tpa_info->data;
1864
1865 if (!data)
1866 continue;
1867
1868 dma_unmap_single(
1869 &pdev->dev,
1870 dma_unmap_addr(tpa_info, mapping),
1871 bp->rx_buf_use_size,
1872 PCI_DMA_FROMDEVICE);
1873
1874 tpa_info->data = NULL;
1875
1876 kfree(data);
1877 }
1878 }
1879
1880 for (j = 0; j < max_idx; j++) {
1881 struct bnxt_sw_rx_bd *rx_buf = &rxr->rx_buf_ring[j];
1882 u8 *data = rx_buf->data;
1883
1884 if (!data)
1885 continue;
1886
1887 dma_unmap_single(&pdev->dev,
1888 dma_unmap_addr(rx_buf, mapping),
1889 bp->rx_buf_use_size,
1890 PCI_DMA_FROMDEVICE);
1891
1892 rx_buf->data = NULL;
1893
1894 kfree(data);
1895 }
1896
1897 for (j = 0; j < max_agg_idx; j++) {
1898 struct bnxt_sw_rx_agg_bd *rx_agg_buf =
1899 &rxr->rx_agg_ring[j];
1900 struct page *page = rx_agg_buf->page;
1901
1902 if (!page)
1903 continue;
1904
1905 dma_unmap_page(&pdev->dev,
1906 dma_unmap_addr(rx_agg_buf, mapping),
Michael Chan2839f282016-04-25 02:30:50 -04001907 BNXT_RX_PAGE_SIZE, PCI_DMA_FROMDEVICE);
Michael Chanc0c050c2015-10-22 16:01:17 -04001908
1909 rx_agg_buf->page = NULL;
1910 __clear_bit(j, rxr->rx_agg_bmap);
1911
1912 __free_page(page);
1913 }
Michael Chan89d0a062016-04-25 02:30:51 -04001914 if (rxr->rx_page) {
1915 __free_page(rxr->rx_page);
1916 rxr->rx_page = NULL;
1917 }
Michael Chanc0c050c2015-10-22 16:01:17 -04001918 }
1919}
1920
1921static void bnxt_free_skbs(struct bnxt *bp)
1922{
1923 bnxt_free_tx_skbs(bp);
1924 bnxt_free_rx_skbs(bp);
1925}
1926
1927static void bnxt_free_ring(struct bnxt *bp, struct bnxt_ring_struct *ring)
1928{
1929 struct pci_dev *pdev = bp->pdev;
1930 int i;
1931
1932 for (i = 0; i < ring->nr_pages; i++) {
1933 if (!ring->pg_arr[i])
1934 continue;
1935
1936 dma_free_coherent(&pdev->dev, ring->page_size,
1937 ring->pg_arr[i], ring->dma_arr[i]);
1938
1939 ring->pg_arr[i] = NULL;
1940 }
1941 if (ring->pg_tbl) {
1942 dma_free_coherent(&pdev->dev, ring->nr_pages * 8,
1943 ring->pg_tbl, ring->pg_tbl_map);
1944 ring->pg_tbl = NULL;
1945 }
1946 if (ring->vmem_size && *ring->vmem) {
1947 vfree(*ring->vmem);
1948 *ring->vmem = NULL;
1949 }
1950}
1951
1952static int bnxt_alloc_ring(struct bnxt *bp, struct bnxt_ring_struct *ring)
1953{
1954 int i;
1955 struct pci_dev *pdev = bp->pdev;
1956
1957 if (ring->nr_pages > 1) {
1958 ring->pg_tbl = dma_alloc_coherent(&pdev->dev,
1959 ring->nr_pages * 8,
1960 &ring->pg_tbl_map,
1961 GFP_KERNEL);
1962 if (!ring->pg_tbl)
1963 return -ENOMEM;
1964 }
1965
1966 for (i = 0; i < ring->nr_pages; i++) {
1967 ring->pg_arr[i] = dma_alloc_coherent(&pdev->dev,
1968 ring->page_size,
1969 &ring->dma_arr[i],
1970 GFP_KERNEL);
1971 if (!ring->pg_arr[i])
1972 return -ENOMEM;
1973
1974 if (ring->nr_pages > 1)
1975 ring->pg_tbl[i] = cpu_to_le64(ring->dma_arr[i]);
1976 }
1977
1978 if (ring->vmem_size) {
1979 *ring->vmem = vzalloc(ring->vmem_size);
1980 if (!(*ring->vmem))
1981 return -ENOMEM;
1982 }
1983 return 0;
1984}
1985
1986static void bnxt_free_rx_rings(struct bnxt *bp)
1987{
1988 int i;
1989
Michael Chanb6ab4b02016-01-02 23:44:59 -05001990 if (!bp->rx_ring)
Michael Chanc0c050c2015-10-22 16:01:17 -04001991 return;
1992
1993 for (i = 0; i < bp->rx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05001994 struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04001995 struct bnxt_ring_struct *ring;
1996
Michael Chanc0c050c2015-10-22 16:01:17 -04001997 kfree(rxr->rx_tpa);
1998 rxr->rx_tpa = NULL;
1999
2000 kfree(rxr->rx_agg_bmap);
2001 rxr->rx_agg_bmap = NULL;
2002
2003 ring = &rxr->rx_ring_struct;
2004 bnxt_free_ring(bp, ring);
2005
2006 ring = &rxr->rx_agg_ring_struct;
2007 bnxt_free_ring(bp, ring);
2008 }
2009}
2010
2011static int bnxt_alloc_rx_rings(struct bnxt *bp)
2012{
2013 int i, rc, agg_rings = 0, tpa_rings = 0;
2014
Michael Chanb6ab4b02016-01-02 23:44:59 -05002015 if (!bp->rx_ring)
2016 return -ENOMEM;
2017
Michael Chanc0c050c2015-10-22 16:01:17 -04002018 if (bp->flags & BNXT_FLAG_AGG_RINGS)
2019 agg_rings = 1;
2020
2021 if (bp->flags & BNXT_FLAG_TPA)
2022 tpa_rings = 1;
2023
2024 for (i = 0; i < bp->rx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05002025 struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04002026 struct bnxt_ring_struct *ring;
2027
Michael Chanc0c050c2015-10-22 16:01:17 -04002028 ring = &rxr->rx_ring_struct;
2029
2030 rc = bnxt_alloc_ring(bp, ring);
2031 if (rc)
2032 return rc;
2033
2034 if (agg_rings) {
2035 u16 mem_size;
2036
2037 ring = &rxr->rx_agg_ring_struct;
2038 rc = bnxt_alloc_ring(bp, ring);
2039 if (rc)
2040 return rc;
2041
2042 rxr->rx_agg_bmap_size = bp->rx_agg_ring_mask + 1;
2043 mem_size = rxr->rx_agg_bmap_size / 8;
2044 rxr->rx_agg_bmap = kzalloc(mem_size, GFP_KERNEL);
2045 if (!rxr->rx_agg_bmap)
2046 return -ENOMEM;
2047
2048 if (tpa_rings) {
2049 rxr->rx_tpa = kcalloc(MAX_TPA,
2050 sizeof(struct bnxt_tpa_info),
2051 GFP_KERNEL);
2052 if (!rxr->rx_tpa)
2053 return -ENOMEM;
2054 }
2055 }
2056 }
2057 return 0;
2058}
2059
2060static void bnxt_free_tx_rings(struct bnxt *bp)
2061{
2062 int i;
2063 struct pci_dev *pdev = bp->pdev;
2064
Michael Chanb6ab4b02016-01-02 23:44:59 -05002065 if (!bp->tx_ring)
Michael Chanc0c050c2015-10-22 16:01:17 -04002066 return;
2067
2068 for (i = 0; i < bp->tx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05002069 struct bnxt_tx_ring_info *txr = &bp->tx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04002070 struct bnxt_ring_struct *ring;
2071
Michael Chanc0c050c2015-10-22 16:01:17 -04002072 if (txr->tx_push) {
2073 dma_free_coherent(&pdev->dev, bp->tx_push_size,
2074 txr->tx_push, txr->tx_push_mapping);
2075 txr->tx_push = NULL;
2076 }
2077
2078 ring = &txr->tx_ring_struct;
2079
2080 bnxt_free_ring(bp, ring);
2081 }
2082}
2083
2084static int bnxt_alloc_tx_rings(struct bnxt *bp)
2085{
2086 int i, j, rc;
2087 struct pci_dev *pdev = bp->pdev;
2088
2089 bp->tx_push_size = 0;
2090 if (bp->tx_push_thresh) {
2091 int push_size;
2092
2093 push_size = L1_CACHE_ALIGN(sizeof(struct tx_push_bd) +
2094 bp->tx_push_thresh);
2095
Michael Chan4419dbe2016-02-10 17:33:49 -05002096 if (push_size > 256) {
Michael Chanc0c050c2015-10-22 16:01:17 -04002097 push_size = 0;
2098 bp->tx_push_thresh = 0;
2099 }
2100
2101 bp->tx_push_size = push_size;
2102 }
2103
2104 for (i = 0, j = 0; i < bp->tx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05002105 struct bnxt_tx_ring_info *txr = &bp->tx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04002106 struct bnxt_ring_struct *ring;
2107
Michael Chanc0c050c2015-10-22 16:01:17 -04002108 ring = &txr->tx_ring_struct;
2109
2110 rc = bnxt_alloc_ring(bp, ring);
2111 if (rc)
2112 return rc;
2113
2114 if (bp->tx_push_size) {
Michael Chanc0c050c2015-10-22 16:01:17 -04002115 dma_addr_t mapping;
2116
2117 /* One pre-allocated DMA buffer to backup
2118 * TX push operation
2119 */
2120 txr->tx_push = dma_alloc_coherent(&pdev->dev,
2121 bp->tx_push_size,
2122 &txr->tx_push_mapping,
2123 GFP_KERNEL);
2124
2125 if (!txr->tx_push)
2126 return -ENOMEM;
2127
Michael Chanc0c050c2015-10-22 16:01:17 -04002128 mapping = txr->tx_push_mapping +
2129 sizeof(struct tx_push_bd);
Michael Chan4419dbe2016-02-10 17:33:49 -05002130 txr->data_mapping = cpu_to_le64(mapping);
Michael Chanc0c050c2015-10-22 16:01:17 -04002131
Michael Chan4419dbe2016-02-10 17:33:49 -05002132 memset(txr->tx_push, 0, sizeof(struct tx_push_bd));
Michael Chanc0c050c2015-10-22 16:01:17 -04002133 }
2134 ring->queue_id = bp->q_info[j].queue_id;
2135 if (i % bp->tx_nr_rings_per_tc == (bp->tx_nr_rings_per_tc - 1))
2136 j++;
2137 }
2138 return 0;
2139}
2140
2141static void bnxt_free_cp_rings(struct bnxt *bp)
2142{
2143 int i;
2144
2145 if (!bp->bnapi)
2146 return;
2147
2148 for (i = 0; i < bp->cp_nr_rings; i++) {
2149 struct bnxt_napi *bnapi = bp->bnapi[i];
2150 struct bnxt_cp_ring_info *cpr;
2151 struct bnxt_ring_struct *ring;
2152
2153 if (!bnapi)
2154 continue;
2155
2156 cpr = &bnapi->cp_ring;
2157 ring = &cpr->cp_ring_struct;
2158
2159 bnxt_free_ring(bp, ring);
2160 }
2161}
2162
2163static int bnxt_alloc_cp_rings(struct bnxt *bp)
2164{
2165 int i, rc;
2166
2167 for (i = 0; i < bp->cp_nr_rings; i++) {
2168 struct bnxt_napi *bnapi = bp->bnapi[i];
2169 struct bnxt_cp_ring_info *cpr;
2170 struct bnxt_ring_struct *ring;
2171
2172 if (!bnapi)
2173 continue;
2174
2175 cpr = &bnapi->cp_ring;
2176 ring = &cpr->cp_ring_struct;
2177
2178 rc = bnxt_alloc_ring(bp, ring);
2179 if (rc)
2180 return rc;
2181 }
2182 return 0;
2183}
2184
2185static void bnxt_init_ring_struct(struct bnxt *bp)
2186{
2187 int i;
2188
2189 for (i = 0; i < bp->cp_nr_rings; i++) {
2190 struct bnxt_napi *bnapi = bp->bnapi[i];
2191 struct bnxt_cp_ring_info *cpr;
2192 struct bnxt_rx_ring_info *rxr;
2193 struct bnxt_tx_ring_info *txr;
2194 struct bnxt_ring_struct *ring;
2195
2196 if (!bnapi)
2197 continue;
2198
2199 cpr = &bnapi->cp_ring;
2200 ring = &cpr->cp_ring_struct;
2201 ring->nr_pages = bp->cp_nr_pages;
2202 ring->page_size = HW_CMPD_RING_SIZE;
2203 ring->pg_arr = (void **)cpr->cp_desc_ring;
2204 ring->dma_arr = cpr->cp_desc_mapping;
2205 ring->vmem_size = 0;
2206
Michael Chanb6ab4b02016-01-02 23:44:59 -05002207 rxr = bnapi->rx_ring;
Michael Chan3b2b7d92016-01-02 23:45:00 -05002208 if (!rxr)
2209 goto skip_rx;
2210
Michael Chanc0c050c2015-10-22 16:01:17 -04002211 ring = &rxr->rx_ring_struct;
2212 ring->nr_pages = bp->rx_nr_pages;
2213 ring->page_size = HW_RXBD_RING_SIZE;
2214 ring->pg_arr = (void **)rxr->rx_desc_ring;
2215 ring->dma_arr = rxr->rx_desc_mapping;
2216 ring->vmem_size = SW_RXBD_RING_SIZE * bp->rx_nr_pages;
2217 ring->vmem = (void **)&rxr->rx_buf_ring;
2218
2219 ring = &rxr->rx_agg_ring_struct;
2220 ring->nr_pages = bp->rx_agg_nr_pages;
2221 ring->page_size = HW_RXBD_RING_SIZE;
2222 ring->pg_arr = (void **)rxr->rx_agg_desc_ring;
2223 ring->dma_arr = rxr->rx_agg_desc_mapping;
2224 ring->vmem_size = SW_RXBD_AGG_RING_SIZE * bp->rx_agg_nr_pages;
2225 ring->vmem = (void **)&rxr->rx_agg_ring;
2226
Michael Chan3b2b7d92016-01-02 23:45:00 -05002227skip_rx:
Michael Chanb6ab4b02016-01-02 23:44:59 -05002228 txr = bnapi->tx_ring;
Michael Chan3b2b7d92016-01-02 23:45:00 -05002229 if (!txr)
2230 continue;
2231
Michael Chanc0c050c2015-10-22 16:01:17 -04002232 ring = &txr->tx_ring_struct;
2233 ring->nr_pages = bp->tx_nr_pages;
2234 ring->page_size = HW_RXBD_RING_SIZE;
2235 ring->pg_arr = (void **)txr->tx_desc_ring;
2236 ring->dma_arr = txr->tx_desc_mapping;
2237 ring->vmem_size = SW_TXBD_RING_SIZE * bp->tx_nr_pages;
2238 ring->vmem = (void **)&txr->tx_buf_ring;
2239 }
2240}
2241
2242static void bnxt_init_rxbd_pages(struct bnxt_ring_struct *ring, u32 type)
2243{
2244 int i;
2245 u32 prod;
2246 struct rx_bd **rx_buf_ring;
2247
2248 rx_buf_ring = (struct rx_bd **)ring->pg_arr;
2249 for (i = 0, prod = 0; i < ring->nr_pages; i++) {
2250 int j;
2251 struct rx_bd *rxbd;
2252
2253 rxbd = rx_buf_ring[i];
2254 if (!rxbd)
2255 continue;
2256
2257 for (j = 0; j < RX_DESC_CNT; j++, rxbd++, prod++) {
2258 rxbd->rx_bd_len_flags_type = cpu_to_le32(type);
2259 rxbd->rx_bd_opaque = prod;
2260 }
2261 }
2262}
2263
2264static int bnxt_init_one_rx_ring(struct bnxt *bp, int ring_nr)
2265{
2266 struct net_device *dev = bp->dev;
Michael Chanc0c050c2015-10-22 16:01:17 -04002267 struct bnxt_rx_ring_info *rxr;
2268 struct bnxt_ring_struct *ring;
2269 u32 prod, type;
2270 int i;
2271
Michael Chanc0c050c2015-10-22 16:01:17 -04002272 type = (bp->rx_buf_use_size << RX_BD_LEN_SHIFT) |
2273 RX_BD_TYPE_RX_PACKET_BD | RX_BD_FLAGS_EOP;
2274
2275 if (NET_IP_ALIGN == 2)
2276 type |= RX_BD_FLAGS_SOP;
2277
Michael Chanb6ab4b02016-01-02 23:44:59 -05002278 rxr = &bp->rx_ring[ring_nr];
Michael Chanc0c050c2015-10-22 16:01:17 -04002279 ring = &rxr->rx_ring_struct;
2280 bnxt_init_rxbd_pages(ring, type);
2281
2282 prod = rxr->rx_prod;
2283 for (i = 0; i < bp->rx_ring_size; i++) {
2284 if (bnxt_alloc_rx_data(bp, rxr, prod, GFP_KERNEL) != 0) {
2285 netdev_warn(dev, "init'ed rx ring %d with %d/%d skbs only\n",
2286 ring_nr, i, bp->rx_ring_size);
2287 break;
2288 }
2289 prod = NEXT_RX(prod);
2290 }
2291 rxr->rx_prod = prod;
2292 ring->fw_ring_id = INVALID_HW_RING_ID;
2293
Michael Chanedd0c2c2015-12-27 18:19:19 -05002294 ring = &rxr->rx_agg_ring_struct;
2295 ring->fw_ring_id = INVALID_HW_RING_ID;
2296
Michael Chanc0c050c2015-10-22 16:01:17 -04002297 if (!(bp->flags & BNXT_FLAG_AGG_RINGS))
2298 return 0;
2299
Michael Chan2839f282016-04-25 02:30:50 -04002300 type = ((u32)BNXT_RX_PAGE_SIZE << RX_BD_LEN_SHIFT) |
Michael Chanc0c050c2015-10-22 16:01:17 -04002301 RX_BD_TYPE_RX_AGG_BD | RX_BD_FLAGS_SOP;
2302
2303 bnxt_init_rxbd_pages(ring, type);
2304
2305 prod = rxr->rx_agg_prod;
2306 for (i = 0; i < bp->rx_agg_ring_size; i++) {
2307 if (bnxt_alloc_rx_page(bp, rxr, prod, GFP_KERNEL) != 0) {
2308 netdev_warn(dev, "init'ed rx ring %d with %d/%d pages only\n",
2309 ring_nr, i, bp->rx_ring_size);
2310 break;
2311 }
2312 prod = NEXT_RX_AGG(prod);
2313 }
2314 rxr->rx_agg_prod = prod;
Michael Chanc0c050c2015-10-22 16:01:17 -04002315
2316 if (bp->flags & BNXT_FLAG_TPA) {
2317 if (rxr->rx_tpa) {
2318 u8 *data;
2319 dma_addr_t mapping;
2320
2321 for (i = 0; i < MAX_TPA; i++) {
2322 data = __bnxt_alloc_rx_data(bp, &mapping,
2323 GFP_KERNEL);
2324 if (!data)
2325 return -ENOMEM;
2326
2327 rxr->rx_tpa[i].data = data;
2328 rxr->rx_tpa[i].mapping = mapping;
2329 }
2330 } else {
2331 netdev_err(bp->dev, "No resource allocated for LRO/GRO\n");
2332 return -ENOMEM;
2333 }
2334 }
2335
2336 return 0;
2337}
2338
2339static int bnxt_init_rx_rings(struct bnxt *bp)
2340{
2341 int i, rc = 0;
2342
2343 for (i = 0; i < bp->rx_nr_rings; i++) {
2344 rc = bnxt_init_one_rx_ring(bp, i);
2345 if (rc)
2346 break;
2347 }
2348
2349 return rc;
2350}
2351
2352static int bnxt_init_tx_rings(struct bnxt *bp)
2353{
2354 u16 i;
2355
2356 bp->tx_wake_thresh = max_t(int, bp->tx_ring_size / 2,
2357 MAX_SKB_FRAGS + 1);
2358
2359 for (i = 0; i < bp->tx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05002360 struct bnxt_tx_ring_info *txr = &bp->tx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04002361 struct bnxt_ring_struct *ring = &txr->tx_ring_struct;
2362
2363 ring->fw_ring_id = INVALID_HW_RING_ID;
2364 }
2365
2366 return 0;
2367}
2368
2369static void bnxt_free_ring_grps(struct bnxt *bp)
2370{
2371 kfree(bp->grp_info);
2372 bp->grp_info = NULL;
2373}
2374
2375static int bnxt_init_ring_grps(struct bnxt *bp, bool irq_re_init)
2376{
2377 int i;
2378
2379 if (irq_re_init) {
2380 bp->grp_info = kcalloc(bp->cp_nr_rings,
2381 sizeof(struct bnxt_ring_grp_info),
2382 GFP_KERNEL);
2383 if (!bp->grp_info)
2384 return -ENOMEM;
2385 }
2386 for (i = 0; i < bp->cp_nr_rings; i++) {
2387 if (irq_re_init)
2388 bp->grp_info[i].fw_stats_ctx = INVALID_HW_RING_ID;
2389 bp->grp_info[i].fw_grp_id = INVALID_HW_RING_ID;
2390 bp->grp_info[i].rx_fw_ring_id = INVALID_HW_RING_ID;
2391 bp->grp_info[i].agg_fw_ring_id = INVALID_HW_RING_ID;
2392 bp->grp_info[i].cp_fw_ring_id = INVALID_HW_RING_ID;
2393 }
2394 return 0;
2395}
2396
2397static void bnxt_free_vnics(struct bnxt *bp)
2398{
2399 kfree(bp->vnic_info);
2400 bp->vnic_info = NULL;
2401 bp->nr_vnics = 0;
2402}
2403
2404static int bnxt_alloc_vnics(struct bnxt *bp)
2405{
2406 int num_vnics = 1;
2407
2408#ifdef CONFIG_RFS_ACCEL
2409 if (bp->flags & BNXT_FLAG_RFS)
2410 num_vnics += bp->rx_nr_rings;
2411#endif
2412
2413 bp->vnic_info = kcalloc(num_vnics, sizeof(struct bnxt_vnic_info),
2414 GFP_KERNEL);
2415 if (!bp->vnic_info)
2416 return -ENOMEM;
2417
2418 bp->nr_vnics = num_vnics;
2419 return 0;
2420}
2421
2422static void bnxt_init_vnics(struct bnxt *bp)
2423{
2424 int i;
2425
2426 for (i = 0; i < bp->nr_vnics; i++) {
2427 struct bnxt_vnic_info *vnic = &bp->vnic_info[i];
2428
2429 vnic->fw_vnic_id = INVALID_HW_RING_ID;
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04002430 vnic->fw_rss_cos_lb_ctx[0] = INVALID_HW_RING_ID;
2431 vnic->fw_rss_cos_lb_ctx[1] = INVALID_HW_RING_ID;
Michael Chanc0c050c2015-10-22 16:01:17 -04002432 vnic->fw_l2_ctx_id = INVALID_HW_RING_ID;
2433
2434 if (bp->vnic_info[i].rss_hash_key) {
2435 if (i == 0)
2436 prandom_bytes(vnic->rss_hash_key,
2437 HW_HASH_KEY_SIZE);
2438 else
2439 memcpy(vnic->rss_hash_key,
2440 bp->vnic_info[0].rss_hash_key,
2441 HW_HASH_KEY_SIZE);
2442 }
2443 }
2444}
2445
2446static int bnxt_calc_nr_ring_pages(u32 ring_size, int desc_per_pg)
2447{
2448 int pages;
2449
2450 pages = ring_size / desc_per_pg;
2451
2452 if (!pages)
2453 return 1;
2454
2455 pages++;
2456
2457 while (pages & (pages - 1))
2458 pages++;
2459
2460 return pages;
2461}
2462
2463static void bnxt_set_tpa_flags(struct bnxt *bp)
2464{
2465 bp->flags &= ~BNXT_FLAG_TPA;
2466 if (bp->dev->features & NETIF_F_LRO)
2467 bp->flags |= BNXT_FLAG_LRO;
Michael Chan94758f82016-06-13 02:25:35 -04002468 if (bp->dev->features & NETIF_F_GRO)
Michael Chanc0c050c2015-10-22 16:01:17 -04002469 bp->flags |= BNXT_FLAG_GRO;
2470}
2471
2472/* bp->rx_ring_size, bp->tx_ring_size, dev->mtu, BNXT_FLAG_{G|L}RO flags must
2473 * be set on entry.
2474 */
2475void bnxt_set_ring_params(struct bnxt *bp)
2476{
2477 u32 ring_size, rx_size, rx_space;
2478 u32 agg_factor = 0, agg_ring_size = 0;
2479
2480 /* 8 for CRC and VLAN */
2481 rx_size = SKB_DATA_ALIGN(bp->dev->mtu + ETH_HLEN + NET_IP_ALIGN + 8);
2482
2483 rx_space = rx_size + NET_SKB_PAD +
2484 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
2485
2486 bp->rx_copy_thresh = BNXT_RX_COPY_THRESH;
2487 ring_size = bp->rx_ring_size;
2488 bp->rx_agg_ring_size = 0;
2489 bp->rx_agg_nr_pages = 0;
2490
2491 if (bp->flags & BNXT_FLAG_TPA)
Michael Chan2839f282016-04-25 02:30:50 -04002492 agg_factor = min_t(u32, 4, 65536 / BNXT_RX_PAGE_SIZE);
Michael Chanc0c050c2015-10-22 16:01:17 -04002493
2494 bp->flags &= ~BNXT_FLAG_JUMBO;
2495 if (rx_space > PAGE_SIZE) {
2496 u32 jumbo_factor;
2497
2498 bp->flags |= BNXT_FLAG_JUMBO;
2499 jumbo_factor = PAGE_ALIGN(bp->dev->mtu - 40) >> PAGE_SHIFT;
2500 if (jumbo_factor > agg_factor)
2501 agg_factor = jumbo_factor;
2502 }
2503 agg_ring_size = ring_size * agg_factor;
2504
2505 if (agg_ring_size) {
2506 bp->rx_agg_nr_pages = bnxt_calc_nr_ring_pages(agg_ring_size,
2507 RX_DESC_CNT);
2508 if (bp->rx_agg_nr_pages > MAX_RX_AGG_PAGES) {
2509 u32 tmp = agg_ring_size;
2510
2511 bp->rx_agg_nr_pages = MAX_RX_AGG_PAGES;
2512 agg_ring_size = MAX_RX_AGG_PAGES * RX_DESC_CNT - 1;
2513 netdev_warn(bp->dev, "rx agg ring size %d reduced to %d.\n",
2514 tmp, agg_ring_size);
2515 }
2516 bp->rx_agg_ring_size = agg_ring_size;
2517 bp->rx_agg_ring_mask = (bp->rx_agg_nr_pages * RX_DESC_CNT) - 1;
2518 rx_size = SKB_DATA_ALIGN(BNXT_RX_COPY_THRESH + NET_IP_ALIGN);
2519 rx_space = rx_size + NET_SKB_PAD +
2520 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
2521 }
2522
2523 bp->rx_buf_use_size = rx_size;
2524 bp->rx_buf_size = rx_space;
2525
2526 bp->rx_nr_pages = bnxt_calc_nr_ring_pages(ring_size, RX_DESC_CNT);
2527 bp->rx_ring_mask = (bp->rx_nr_pages * RX_DESC_CNT) - 1;
2528
2529 ring_size = bp->tx_ring_size;
2530 bp->tx_nr_pages = bnxt_calc_nr_ring_pages(ring_size, TX_DESC_CNT);
2531 bp->tx_ring_mask = (bp->tx_nr_pages * TX_DESC_CNT) - 1;
2532
2533 ring_size = bp->rx_ring_size * (2 + agg_factor) + bp->tx_ring_size;
2534 bp->cp_ring_size = ring_size;
2535
2536 bp->cp_nr_pages = bnxt_calc_nr_ring_pages(ring_size, CP_DESC_CNT);
2537 if (bp->cp_nr_pages > MAX_CP_PAGES) {
2538 bp->cp_nr_pages = MAX_CP_PAGES;
2539 bp->cp_ring_size = MAX_CP_PAGES * CP_DESC_CNT - 1;
2540 netdev_warn(bp->dev, "completion ring size %d reduced to %d.\n",
2541 ring_size, bp->cp_ring_size);
2542 }
2543 bp->cp_bit = bp->cp_nr_pages * CP_DESC_CNT;
2544 bp->cp_ring_mask = bp->cp_bit - 1;
2545}
2546
2547static void bnxt_free_vnic_attributes(struct bnxt *bp)
2548{
2549 int i;
2550 struct bnxt_vnic_info *vnic;
2551 struct pci_dev *pdev = bp->pdev;
2552
2553 if (!bp->vnic_info)
2554 return;
2555
2556 for (i = 0; i < bp->nr_vnics; i++) {
2557 vnic = &bp->vnic_info[i];
2558
2559 kfree(vnic->fw_grp_ids);
2560 vnic->fw_grp_ids = NULL;
2561
2562 kfree(vnic->uc_list);
2563 vnic->uc_list = NULL;
2564
2565 if (vnic->mc_list) {
2566 dma_free_coherent(&pdev->dev, vnic->mc_list_size,
2567 vnic->mc_list, vnic->mc_list_mapping);
2568 vnic->mc_list = NULL;
2569 }
2570
2571 if (vnic->rss_table) {
2572 dma_free_coherent(&pdev->dev, PAGE_SIZE,
2573 vnic->rss_table,
2574 vnic->rss_table_dma_addr);
2575 vnic->rss_table = NULL;
2576 }
2577
2578 vnic->rss_hash_key = NULL;
2579 vnic->flags = 0;
2580 }
2581}
2582
2583static int bnxt_alloc_vnic_attributes(struct bnxt *bp)
2584{
2585 int i, rc = 0, size;
2586 struct bnxt_vnic_info *vnic;
2587 struct pci_dev *pdev = bp->pdev;
2588 int max_rings;
2589
2590 for (i = 0; i < bp->nr_vnics; i++) {
2591 vnic = &bp->vnic_info[i];
2592
2593 if (vnic->flags & BNXT_VNIC_UCAST_FLAG) {
2594 int mem_size = (BNXT_MAX_UC_ADDRS - 1) * ETH_ALEN;
2595
2596 if (mem_size > 0) {
2597 vnic->uc_list = kmalloc(mem_size, GFP_KERNEL);
2598 if (!vnic->uc_list) {
2599 rc = -ENOMEM;
2600 goto out;
2601 }
2602 }
2603 }
2604
2605 if (vnic->flags & BNXT_VNIC_MCAST_FLAG) {
2606 vnic->mc_list_size = BNXT_MAX_MC_ADDRS * ETH_ALEN;
2607 vnic->mc_list =
2608 dma_alloc_coherent(&pdev->dev,
2609 vnic->mc_list_size,
2610 &vnic->mc_list_mapping,
2611 GFP_KERNEL);
2612 if (!vnic->mc_list) {
2613 rc = -ENOMEM;
2614 goto out;
2615 }
2616 }
2617
2618 if (vnic->flags & BNXT_VNIC_RSS_FLAG)
2619 max_rings = bp->rx_nr_rings;
2620 else
2621 max_rings = 1;
2622
2623 vnic->fw_grp_ids = kcalloc(max_rings, sizeof(u16), GFP_KERNEL);
2624 if (!vnic->fw_grp_ids) {
2625 rc = -ENOMEM;
2626 goto out;
2627 }
2628
2629 /* Allocate rss table and hash key */
2630 vnic->rss_table = dma_alloc_coherent(&pdev->dev, PAGE_SIZE,
2631 &vnic->rss_table_dma_addr,
2632 GFP_KERNEL);
2633 if (!vnic->rss_table) {
2634 rc = -ENOMEM;
2635 goto out;
2636 }
2637
2638 size = L1_CACHE_ALIGN(HW_HASH_INDEX_SIZE * sizeof(u16));
2639
2640 vnic->rss_hash_key = ((void *)vnic->rss_table) + size;
2641 vnic->rss_hash_key_dma_addr = vnic->rss_table_dma_addr + size;
2642 }
2643 return 0;
2644
2645out:
2646 return rc;
2647}
2648
2649static void bnxt_free_hwrm_resources(struct bnxt *bp)
2650{
2651 struct pci_dev *pdev = bp->pdev;
2652
2653 dma_free_coherent(&pdev->dev, PAGE_SIZE, bp->hwrm_cmd_resp_addr,
2654 bp->hwrm_cmd_resp_dma_addr);
2655
2656 bp->hwrm_cmd_resp_addr = NULL;
2657 if (bp->hwrm_dbg_resp_addr) {
2658 dma_free_coherent(&pdev->dev, HWRM_DBG_REG_BUF_SIZE,
2659 bp->hwrm_dbg_resp_addr,
2660 bp->hwrm_dbg_resp_dma_addr);
2661
2662 bp->hwrm_dbg_resp_addr = NULL;
2663 }
2664}
2665
2666static int bnxt_alloc_hwrm_resources(struct bnxt *bp)
2667{
2668 struct pci_dev *pdev = bp->pdev;
2669
2670 bp->hwrm_cmd_resp_addr = dma_alloc_coherent(&pdev->dev, PAGE_SIZE,
2671 &bp->hwrm_cmd_resp_dma_addr,
2672 GFP_KERNEL);
2673 if (!bp->hwrm_cmd_resp_addr)
2674 return -ENOMEM;
2675 bp->hwrm_dbg_resp_addr = dma_alloc_coherent(&pdev->dev,
2676 HWRM_DBG_REG_BUF_SIZE,
2677 &bp->hwrm_dbg_resp_dma_addr,
2678 GFP_KERNEL);
2679 if (!bp->hwrm_dbg_resp_addr)
2680 netdev_warn(bp->dev, "fail to alloc debug register dma mem\n");
2681
2682 return 0;
2683}
2684
2685static void bnxt_free_stats(struct bnxt *bp)
2686{
2687 u32 size, i;
2688 struct pci_dev *pdev = bp->pdev;
2689
Michael Chan3bdf56c2016-03-07 15:38:45 -05002690 if (bp->hw_rx_port_stats) {
2691 dma_free_coherent(&pdev->dev, bp->hw_port_stats_size,
2692 bp->hw_rx_port_stats,
2693 bp->hw_rx_port_stats_map);
2694 bp->hw_rx_port_stats = NULL;
2695 bp->flags &= ~BNXT_FLAG_PORT_STATS;
2696 }
2697
Michael Chanc0c050c2015-10-22 16:01:17 -04002698 if (!bp->bnapi)
2699 return;
2700
2701 size = sizeof(struct ctx_hw_stats);
2702
2703 for (i = 0; i < bp->cp_nr_rings; i++) {
2704 struct bnxt_napi *bnapi = bp->bnapi[i];
2705 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
2706
2707 if (cpr->hw_stats) {
2708 dma_free_coherent(&pdev->dev, size, cpr->hw_stats,
2709 cpr->hw_stats_map);
2710 cpr->hw_stats = NULL;
2711 }
2712 }
2713}
2714
2715static int bnxt_alloc_stats(struct bnxt *bp)
2716{
2717 u32 size, i;
2718 struct pci_dev *pdev = bp->pdev;
2719
2720 size = sizeof(struct ctx_hw_stats);
2721
2722 for (i = 0; i < bp->cp_nr_rings; i++) {
2723 struct bnxt_napi *bnapi = bp->bnapi[i];
2724 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
2725
2726 cpr->hw_stats = dma_alloc_coherent(&pdev->dev, size,
2727 &cpr->hw_stats_map,
2728 GFP_KERNEL);
2729 if (!cpr->hw_stats)
2730 return -ENOMEM;
2731
2732 cpr->hw_stats_ctx_id = INVALID_STATS_CTX_ID;
2733 }
Michael Chan3bdf56c2016-03-07 15:38:45 -05002734
Prashant Sreedharan3e8060f2016-07-18 07:15:20 -04002735 if (BNXT_PF(bp) && bp->chip_num != CHIP_NUM_58700) {
Michael Chan3bdf56c2016-03-07 15:38:45 -05002736 bp->hw_port_stats_size = sizeof(struct rx_port_stats) +
2737 sizeof(struct tx_port_stats) + 1024;
2738
2739 bp->hw_rx_port_stats =
2740 dma_alloc_coherent(&pdev->dev, bp->hw_port_stats_size,
2741 &bp->hw_rx_port_stats_map,
2742 GFP_KERNEL);
2743 if (!bp->hw_rx_port_stats)
2744 return -ENOMEM;
2745
2746 bp->hw_tx_port_stats = (void *)(bp->hw_rx_port_stats + 1) +
2747 512;
2748 bp->hw_tx_port_stats_map = bp->hw_rx_port_stats_map +
2749 sizeof(struct rx_port_stats) + 512;
2750 bp->flags |= BNXT_FLAG_PORT_STATS;
2751 }
Michael Chanc0c050c2015-10-22 16:01:17 -04002752 return 0;
2753}
2754
2755static void bnxt_clear_ring_indices(struct bnxt *bp)
2756{
2757 int i;
2758
2759 if (!bp->bnapi)
2760 return;
2761
2762 for (i = 0; i < bp->cp_nr_rings; i++) {
2763 struct bnxt_napi *bnapi = bp->bnapi[i];
2764 struct bnxt_cp_ring_info *cpr;
2765 struct bnxt_rx_ring_info *rxr;
2766 struct bnxt_tx_ring_info *txr;
2767
2768 if (!bnapi)
2769 continue;
2770
2771 cpr = &bnapi->cp_ring;
2772 cpr->cp_raw_cons = 0;
2773
Michael Chanb6ab4b02016-01-02 23:44:59 -05002774 txr = bnapi->tx_ring;
Michael Chan3b2b7d92016-01-02 23:45:00 -05002775 if (txr) {
2776 txr->tx_prod = 0;
2777 txr->tx_cons = 0;
2778 }
Michael Chanc0c050c2015-10-22 16:01:17 -04002779
Michael Chanb6ab4b02016-01-02 23:44:59 -05002780 rxr = bnapi->rx_ring;
Michael Chan3b2b7d92016-01-02 23:45:00 -05002781 if (rxr) {
2782 rxr->rx_prod = 0;
2783 rxr->rx_agg_prod = 0;
2784 rxr->rx_sw_agg_prod = 0;
Michael Chan376a5b82016-05-10 19:17:59 -04002785 rxr->rx_next_cons = 0;
Michael Chan3b2b7d92016-01-02 23:45:00 -05002786 }
Michael Chanc0c050c2015-10-22 16:01:17 -04002787 }
2788}
2789
2790static void bnxt_free_ntp_fltrs(struct bnxt *bp, bool irq_reinit)
2791{
2792#ifdef CONFIG_RFS_ACCEL
2793 int i;
2794
2795 /* Under rtnl_lock and all our NAPIs have been disabled. It's
2796 * safe to delete the hash table.
2797 */
2798 for (i = 0; i < BNXT_NTP_FLTR_HASH_SIZE; i++) {
2799 struct hlist_head *head;
2800 struct hlist_node *tmp;
2801 struct bnxt_ntuple_filter *fltr;
2802
2803 head = &bp->ntp_fltr_hash_tbl[i];
2804 hlist_for_each_entry_safe(fltr, tmp, head, hash) {
2805 hlist_del(&fltr->hash);
2806 kfree(fltr);
2807 }
2808 }
2809 if (irq_reinit) {
2810 kfree(bp->ntp_fltr_bmap);
2811 bp->ntp_fltr_bmap = NULL;
2812 }
2813 bp->ntp_fltr_count = 0;
2814#endif
2815}
2816
2817static int bnxt_alloc_ntp_fltrs(struct bnxt *bp)
2818{
2819#ifdef CONFIG_RFS_ACCEL
2820 int i, rc = 0;
2821
2822 if (!(bp->flags & BNXT_FLAG_RFS))
2823 return 0;
2824
2825 for (i = 0; i < BNXT_NTP_FLTR_HASH_SIZE; i++)
2826 INIT_HLIST_HEAD(&bp->ntp_fltr_hash_tbl[i]);
2827
2828 bp->ntp_fltr_count = 0;
2829 bp->ntp_fltr_bmap = kzalloc(BITS_TO_LONGS(BNXT_NTP_FLTR_MAX_FLTR),
2830 GFP_KERNEL);
2831
2832 if (!bp->ntp_fltr_bmap)
2833 rc = -ENOMEM;
2834
2835 return rc;
2836#else
2837 return 0;
2838#endif
2839}
2840
2841static void bnxt_free_mem(struct bnxt *bp, bool irq_re_init)
2842{
2843 bnxt_free_vnic_attributes(bp);
2844 bnxt_free_tx_rings(bp);
2845 bnxt_free_rx_rings(bp);
2846 bnxt_free_cp_rings(bp);
2847 bnxt_free_ntp_fltrs(bp, irq_re_init);
2848 if (irq_re_init) {
2849 bnxt_free_stats(bp);
2850 bnxt_free_ring_grps(bp);
2851 bnxt_free_vnics(bp);
Michael Chanb6ab4b02016-01-02 23:44:59 -05002852 kfree(bp->tx_ring);
2853 bp->tx_ring = NULL;
2854 kfree(bp->rx_ring);
2855 bp->rx_ring = NULL;
Michael Chanc0c050c2015-10-22 16:01:17 -04002856 kfree(bp->bnapi);
2857 bp->bnapi = NULL;
2858 } else {
2859 bnxt_clear_ring_indices(bp);
2860 }
2861}
2862
2863static int bnxt_alloc_mem(struct bnxt *bp, bool irq_re_init)
2864{
Michael Chan01657bc2016-01-02 23:45:03 -05002865 int i, j, rc, size, arr_size;
Michael Chanc0c050c2015-10-22 16:01:17 -04002866 void *bnapi;
2867
2868 if (irq_re_init) {
2869 /* Allocate bnapi mem pointer array and mem block for
2870 * all queues
2871 */
2872 arr_size = L1_CACHE_ALIGN(sizeof(struct bnxt_napi *) *
2873 bp->cp_nr_rings);
2874 size = L1_CACHE_ALIGN(sizeof(struct bnxt_napi));
2875 bnapi = kzalloc(arr_size + size * bp->cp_nr_rings, GFP_KERNEL);
2876 if (!bnapi)
2877 return -ENOMEM;
2878
2879 bp->bnapi = bnapi;
2880 bnapi += arr_size;
2881 for (i = 0; i < bp->cp_nr_rings; i++, bnapi += size) {
2882 bp->bnapi[i] = bnapi;
2883 bp->bnapi[i]->index = i;
2884 bp->bnapi[i]->bp = bp;
2885 }
2886
Michael Chanb6ab4b02016-01-02 23:44:59 -05002887 bp->rx_ring = kcalloc(bp->rx_nr_rings,
2888 sizeof(struct bnxt_rx_ring_info),
2889 GFP_KERNEL);
2890 if (!bp->rx_ring)
2891 return -ENOMEM;
2892
2893 for (i = 0; i < bp->rx_nr_rings; i++) {
2894 bp->rx_ring[i].bnapi = bp->bnapi[i];
2895 bp->bnapi[i]->rx_ring = &bp->rx_ring[i];
2896 }
2897
2898 bp->tx_ring = kcalloc(bp->tx_nr_rings,
2899 sizeof(struct bnxt_tx_ring_info),
2900 GFP_KERNEL);
2901 if (!bp->tx_ring)
2902 return -ENOMEM;
2903
Michael Chan01657bc2016-01-02 23:45:03 -05002904 if (bp->flags & BNXT_FLAG_SHARED_RINGS)
2905 j = 0;
2906 else
2907 j = bp->rx_nr_rings;
2908
2909 for (i = 0; i < bp->tx_nr_rings; i++, j++) {
2910 bp->tx_ring[i].bnapi = bp->bnapi[j];
2911 bp->bnapi[j]->tx_ring = &bp->tx_ring[i];
Michael Chanb6ab4b02016-01-02 23:44:59 -05002912 }
2913
Michael Chanc0c050c2015-10-22 16:01:17 -04002914 rc = bnxt_alloc_stats(bp);
2915 if (rc)
2916 goto alloc_mem_err;
2917
2918 rc = bnxt_alloc_ntp_fltrs(bp);
2919 if (rc)
2920 goto alloc_mem_err;
2921
2922 rc = bnxt_alloc_vnics(bp);
2923 if (rc)
2924 goto alloc_mem_err;
2925 }
2926
2927 bnxt_init_ring_struct(bp);
2928
2929 rc = bnxt_alloc_rx_rings(bp);
2930 if (rc)
2931 goto alloc_mem_err;
2932
2933 rc = bnxt_alloc_tx_rings(bp);
2934 if (rc)
2935 goto alloc_mem_err;
2936
2937 rc = bnxt_alloc_cp_rings(bp);
2938 if (rc)
2939 goto alloc_mem_err;
2940
2941 bp->vnic_info[0].flags |= BNXT_VNIC_RSS_FLAG | BNXT_VNIC_MCAST_FLAG |
2942 BNXT_VNIC_UCAST_FLAG;
2943 rc = bnxt_alloc_vnic_attributes(bp);
2944 if (rc)
2945 goto alloc_mem_err;
2946 return 0;
2947
2948alloc_mem_err:
2949 bnxt_free_mem(bp, true);
2950 return rc;
2951}
2952
2953void bnxt_hwrm_cmd_hdr_init(struct bnxt *bp, void *request, u16 req_type,
2954 u16 cmpl_ring, u16 target_id)
2955{
Michael Chana8643e12016-02-26 04:00:05 -05002956 struct input *req = request;
Michael Chanc0c050c2015-10-22 16:01:17 -04002957
Michael Chana8643e12016-02-26 04:00:05 -05002958 req->req_type = cpu_to_le16(req_type);
2959 req->cmpl_ring = cpu_to_le16(cmpl_ring);
2960 req->target_id = cpu_to_le16(target_id);
Michael Chanc0c050c2015-10-22 16:01:17 -04002961 req->resp_addr = cpu_to_le64(bp->hwrm_cmd_resp_dma_addr);
2962}
2963
Michael Chanfbfbc482016-02-26 04:00:07 -05002964static int bnxt_hwrm_do_send_msg(struct bnxt *bp, void *msg, u32 msg_len,
2965 int timeout, bool silent)
Michael Chanc0c050c2015-10-22 16:01:17 -04002966{
Michael Chana11fa2b2016-05-15 03:04:47 -04002967 int i, intr_process, rc, tmo_count;
Michael Chana8643e12016-02-26 04:00:05 -05002968 struct input *req = msg;
Michael Chanc0c050c2015-10-22 16:01:17 -04002969 u32 *data = msg;
2970 __le32 *resp_len, *valid;
2971 u16 cp_ring_id, len = 0;
2972 struct hwrm_err_output *resp = bp->hwrm_cmd_resp_addr;
2973
Michael Chana8643e12016-02-26 04:00:05 -05002974 req->seq_id = cpu_to_le16(bp->hwrm_cmd_seq++);
Michael Chanc0c050c2015-10-22 16:01:17 -04002975 memset(resp, 0, PAGE_SIZE);
Michael Chana8643e12016-02-26 04:00:05 -05002976 cp_ring_id = le16_to_cpu(req->cmpl_ring);
Michael Chanc0c050c2015-10-22 16:01:17 -04002977 intr_process = (cp_ring_id == INVALID_HW_RING_ID) ? 0 : 1;
2978
2979 /* Write request msg to hwrm channel */
2980 __iowrite32_copy(bp->bar0, data, msg_len / 4);
2981
Michael Chane6ef2692016-03-28 19:46:05 -04002982 for (i = msg_len; i < BNXT_HWRM_MAX_REQ_LEN; i += 4)
Michael Chand79979a2016-01-07 19:56:57 -05002983 writel(0, bp->bar0 + i);
2984
Michael Chanc0c050c2015-10-22 16:01:17 -04002985 /* currently supports only one outstanding message */
2986 if (intr_process)
Michael Chana8643e12016-02-26 04:00:05 -05002987 bp->hwrm_intr_seq_id = le16_to_cpu(req->seq_id);
Michael Chanc0c050c2015-10-22 16:01:17 -04002988
2989 /* Ring channel doorbell */
2990 writel(1, bp->bar0 + 0x100);
2991
Michael Chanff4fe812016-02-26 04:00:04 -05002992 if (!timeout)
2993 timeout = DFLT_HWRM_CMD_TIMEOUT;
2994
Michael Chanc0c050c2015-10-22 16:01:17 -04002995 i = 0;
Michael Chana11fa2b2016-05-15 03:04:47 -04002996 tmo_count = timeout * 40;
Michael Chanc0c050c2015-10-22 16:01:17 -04002997 if (intr_process) {
2998 /* Wait until hwrm response cmpl interrupt is processed */
2999 while (bp->hwrm_intr_seq_id != HWRM_SEQ_ID_INVALID &&
Michael Chana11fa2b2016-05-15 03:04:47 -04003000 i++ < tmo_count) {
3001 usleep_range(25, 40);
Michael Chanc0c050c2015-10-22 16:01:17 -04003002 }
3003
3004 if (bp->hwrm_intr_seq_id != HWRM_SEQ_ID_INVALID) {
3005 netdev_err(bp->dev, "Resp cmpl intr err msg: 0x%x\n",
Michael Chana8643e12016-02-26 04:00:05 -05003006 le16_to_cpu(req->req_type));
Michael Chanc0c050c2015-10-22 16:01:17 -04003007 return -1;
3008 }
3009 } else {
3010 /* Check if response len is updated */
3011 resp_len = bp->hwrm_cmd_resp_addr + HWRM_RESP_LEN_OFFSET;
Michael Chana11fa2b2016-05-15 03:04:47 -04003012 for (i = 0; i < tmo_count; i++) {
Michael Chanc0c050c2015-10-22 16:01:17 -04003013 len = (le32_to_cpu(*resp_len) & HWRM_RESP_LEN_MASK) >>
3014 HWRM_RESP_LEN_SFT;
3015 if (len)
3016 break;
Michael Chana11fa2b2016-05-15 03:04:47 -04003017 usleep_range(25, 40);
Michael Chanc0c050c2015-10-22 16:01:17 -04003018 }
3019
Michael Chana11fa2b2016-05-15 03:04:47 -04003020 if (i >= tmo_count) {
Michael Chanc0c050c2015-10-22 16:01:17 -04003021 netdev_err(bp->dev, "Error (timeout: %d) msg {0x%x 0x%x} len:%d\n",
Michael Chana8643e12016-02-26 04:00:05 -05003022 timeout, le16_to_cpu(req->req_type),
Michael Chan8578d6c2016-05-15 03:04:48 -04003023 le16_to_cpu(req->seq_id), len);
Michael Chanc0c050c2015-10-22 16:01:17 -04003024 return -1;
3025 }
3026
3027 /* Last word of resp contains valid bit */
3028 valid = bp->hwrm_cmd_resp_addr + len - 4;
Michael Chana11fa2b2016-05-15 03:04:47 -04003029 for (i = 0; i < 5; i++) {
Michael Chanc0c050c2015-10-22 16:01:17 -04003030 if (le32_to_cpu(*valid) & HWRM_RESP_VALID_MASK)
3031 break;
Michael Chana11fa2b2016-05-15 03:04:47 -04003032 udelay(1);
Michael Chanc0c050c2015-10-22 16:01:17 -04003033 }
3034
Michael Chana11fa2b2016-05-15 03:04:47 -04003035 if (i >= 5) {
Michael Chanc0c050c2015-10-22 16:01:17 -04003036 netdev_err(bp->dev, "Error (timeout: %d) msg {0x%x 0x%x} len:%d v:%d\n",
Michael Chana8643e12016-02-26 04:00:05 -05003037 timeout, le16_to_cpu(req->req_type),
3038 le16_to_cpu(req->seq_id), len, *valid);
Michael Chanc0c050c2015-10-22 16:01:17 -04003039 return -1;
3040 }
3041 }
3042
3043 rc = le16_to_cpu(resp->error_code);
Michael Chanfbfbc482016-02-26 04:00:07 -05003044 if (rc && !silent)
Michael Chanc0c050c2015-10-22 16:01:17 -04003045 netdev_err(bp->dev, "hwrm req_type 0x%x seq id 0x%x error 0x%x\n",
3046 le16_to_cpu(resp->req_type),
3047 le16_to_cpu(resp->seq_id), rc);
Michael Chanfbfbc482016-02-26 04:00:07 -05003048 return rc;
3049}
3050
3051int _hwrm_send_message(struct bnxt *bp, void *msg, u32 msg_len, int timeout)
3052{
3053 return bnxt_hwrm_do_send_msg(bp, msg, msg_len, timeout, false);
Michael Chanc0c050c2015-10-22 16:01:17 -04003054}
3055
3056int hwrm_send_message(struct bnxt *bp, void *msg, u32 msg_len, int timeout)
3057{
3058 int rc;
3059
3060 mutex_lock(&bp->hwrm_cmd_lock);
3061 rc = _hwrm_send_message(bp, msg, msg_len, timeout);
3062 mutex_unlock(&bp->hwrm_cmd_lock);
3063 return rc;
3064}
3065
Michael Chan90e209212016-02-26 04:00:08 -05003066int hwrm_send_message_silent(struct bnxt *bp, void *msg, u32 msg_len,
3067 int timeout)
3068{
3069 int rc;
3070
3071 mutex_lock(&bp->hwrm_cmd_lock);
3072 rc = bnxt_hwrm_do_send_msg(bp, msg, msg_len, timeout, true);
3073 mutex_unlock(&bp->hwrm_cmd_lock);
3074 return rc;
3075}
3076
Michael Chanc0c050c2015-10-22 16:01:17 -04003077static int bnxt_hwrm_func_drv_rgtr(struct bnxt *bp)
3078{
3079 struct hwrm_func_drv_rgtr_input req = {0};
3080 int i;
Michael Chan25be8622016-04-05 14:09:00 -04003081 DECLARE_BITMAP(async_events_bmap, 256);
3082 u32 *events = (u32 *)async_events_bmap;
Michael Chanc0c050c2015-10-22 16:01:17 -04003083
3084 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_DRV_RGTR, -1, -1);
3085
3086 req.enables =
3087 cpu_to_le32(FUNC_DRV_RGTR_REQ_ENABLES_OS_TYPE |
3088 FUNC_DRV_RGTR_REQ_ENABLES_VER |
3089 FUNC_DRV_RGTR_REQ_ENABLES_ASYNC_EVENT_FWD);
3090
Michael Chan25be8622016-04-05 14:09:00 -04003091 memset(async_events_bmap, 0, sizeof(async_events_bmap));
3092 for (i = 0; i < ARRAY_SIZE(bnxt_async_events_arr); i++)
3093 __set_bit(bnxt_async_events_arr[i], async_events_bmap);
3094
3095 for (i = 0; i < 8; i++)
3096 req.async_event_fwd[i] |= cpu_to_le32(events[i]);
3097
Michael Chan11f15ed2016-04-05 14:08:55 -04003098 req.os_type = cpu_to_le16(FUNC_DRV_RGTR_REQ_OS_TYPE_LINUX);
Michael Chanc0c050c2015-10-22 16:01:17 -04003099 req.ver_maj = DRV_VER_MAJ;
3100 req.ver_min = DRV_VER_MIN;
3101 req.ver_upd = DRV_VER_UPD;
3102
3103 if (BNXT_PF(bp)) {
Michael Chande68f5de2015-12-09 19:35:41 -05003104 DECLARE_BITMAP(vf_req_snif_bmap, 256);
Michael Chanc0c050c2015-10-22 16:01:17 -04003105 u32 *data = (u32 *)vf_req_snif_bmap;
3106
Michael Chande68f5de2015-12-09 19:35:41 -05003107 memset(vf_req_snif_bmap, 0, sizeof(vf_req_snif_bmap));
Michael Chanc0c050c2015-10-22 16:01:17 -04003108 for (i = 0; i < ARRAY_SIZE(bnxt_vf_req_snif); i++)
3109 __set_bit(bnxt_vf_req_snif[i], vf_req_snif_bmap);
3110
Michael Chande68f5de2015-12-09 19:35:41 -05003111 for (i = 0; i < 8; i++)
3112 req.vf_req_fwd[i] = cpu_to_le32(data[i]);
3113
Michael Chanc0c050c2015-10-22 16:01:17 -04003114 req.enables |=
3115 cpu_to_le32(FUNC_DRV_RGTR_REQ_ENABLES_VF_REQ_FWD);
3116 }
3117
3118 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3119}
3120
Jeffrey Huangbe58a0d2015-12-27 18:19:18 -05003121static int bnxt_hwrm_func_drv_unrgtr(struct bnxt *bp)
3122{
3123 struct hwrm_func_drv_unrgtr_input req = {0};
3124
3125 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_DRV_UNRGTR, -1, -1);
3126 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3127}
3128
Michael Chanc0c050c2015-10-22 16:01:17 -04003129static int bnxt_hwrm_tunnel_dst_port_free(struct bnxt *bp, u8 tunnel_type)
3130{
3131 u32 rc = 0;
3132 struct hwrm_tunnel_dst_port_free_input req = {0};
3133
3134 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_TUNNEL_DST_PORT_FREE, -1, -1);
3135 req.tunnel_type = tunnel_type;
3136
3137 switch (tunnel_type) {
3138 case TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_VXLAN:
3139 req.tunnel_dst_port_id = bp->vxlan_fw_dst_port_id;
3140 break;
3141 case TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_GENEVE:
3142 req.tunnel_dst_port_id = bp->nge_fw_dst_port_id;
3143 break;
3144 default:
3145 break;
3146 }
3147
3148 rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3149 if (rc)
3150 netdev_err(bp->dev, "hwrm_tunnel_dst_port_free failed. rc:%d\n",
3151 rc);
3152 return rc;
3153}
3154
3155static int bnxt_hwrm_tunnel_dst_port_alloc(struct bnxt *bp, __be16 port,
3156 u8 tunnel_type)
3157{
3158 u32 rc = 0;
3159 struct hwrm_tunnel_dst_port_alloc_input req = {0};
3160 struct hwrm_tunnel_dst_port_alloc_output *resp = bp->hwrm_cmd_resp_addr;
3161
3162 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_TUNNEL_DST_PORT_ALLOC, -1, -1);
3163
3164 req.tunnel_type = tunnel_type;
3165 req.tunnel_dst_port_val = port;
3166
3167 mutex_lock(&bp->hwrm_cmd_lock);
3168 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3169 if (rc) {
3170 netdev_err(bp->dev, "hwrm_tunnel_dst_port_alloc failed. rc:%d\n",
3171 rc);
3172 goto err_out;
3173 }
3174
3175 if (tunnel_type & TUNNEL_DST_PORT_ALLOC_REQ_TUNNEL_TYPE_VXLAN)
3176 bp->vxlan_fw_dst_port_id = resp->tunnel_dst_port_id;
3177
3178 else if (tunnel_type & TUNNEL_DST_PORT_ALLOC_REQ_TUNNEL_TYPE_GENEVE)
3179 bp->nge_fw_dst_port_id = resp->tunnel_dst_port_id;
3180err_out:
3181 mutex_unlock(&bp->hwrm_cmd_lock);
3182 return rc;
3183}
3184
3185static int bnxt_hwrm_cfa_l2_set_rx_mask(struct bnxt *bp, u16 vnic_id)
3186{
3187 struct hwrm_cfa_l2_set_rx_mask_input req = {0};
3188 struct bnxt_vnic_info *vnic = &bp->vnic_info[vnic_id];
3189
3190 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_CFA_L2_SET_RX_MASK, -1, -1);
Michael Chanc1935542015-12-27 18:19:28 -05003191 req.vnic_id = cpu_to_le32(vnic->fw_vnic_id);
Michael Chanc0c050c2015-10-22 16:01:17 -04003192
3193 req.num_mc_entries = cpu_to_le32(vnic->mc_list_count);
3194 req.mc_tbl_addr = cpu_to_le64(vnic->mc_list_mapping);
3195 req.mask = cpu_to_le32(vnic->rx_mask);
3196 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3197}
3198
3199#ifdef CONFIG_RFS_ACCEL
3200static int bnxt_hwrm_cfa_ntuple_filter_free(struct bnxt *bp,
3201 struct bnxt_ntuple_filter *fltr)
3202{
3203 struct hwrm_cfa_ntuple_filter_free_input req = {0};
3204
3205 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_CFA_NTUPLE_FILTER_FREE, -1, -1);
3206 req.ntuple_filter_id = fltr->filter_id;
3207 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3208}
3209
3210#define BNXT_NTP_FLTR_FLAGS \
3211 (CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_L2_FILTER_ID | \
3212 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_ETHERTYPE | \
3213 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_MACADDR | \
3214 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_IPADDR_TYPE | \
3215 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_IPADDR | \
3216 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_IPADDR_MASK | \
3217 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_IPADDR | \
3218 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_IPADDR_MASK | \
3219 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_IP_PROTOCOL | \
3220 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_PORT | \
3221 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_PORT_MASK | \
3222 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_PORT | \
3223 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_PORT_MASK | \
Michael Chanc1935542015-12-27 18:19:28 -05003224 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_ID)
Michael Chanc0c050c2015-10-22 16:01:17 -04003225
3226static int bnxt_hwrm_cfa_ntuple_filter_alloc(struct bnxt *bp,
3227 struct bnxt_ntuple_filter *fltr)
3228{
3229 int rc = 0;
3230 struct hwrm_cfa_ntuple_filter_alloc_input req = {0};
3231 struct hwrm_cfa_ntuple_filter_alloc_output *resp =
3232 bp->hwrm_cmd_resp_addr;
3233 struct flow_keys *keys = &fltr->fkeys;
3234 struct bnxt_vnic_info *vnic = &bp->vnic_info[fltr->rxq + 1];
3235
3236 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_CFA_NTUPLE_FILTER_ALLOC, -1, -1);
3237 req.l2_filter_id = bp->vnic_info[0].fw_l2_filter_id[0];
3238
3239 req.enables = cpu_to_le32(BNXT_NTP_FLTR_FLAGS);
3240
3241 req.ethertype = htons(ETH_P_IP);
3242 memcpy(req.src_macaddr, fltr->src_mac_addr, ETH_ALEN);
Michael Chanc1935542015-12-27 18:19:28 -05003243 req.ip_addr_type = CFA_NTUPLE_FILTER_ALLOC_REQ_IP_ADDR_TYPE_IPV4;
Michael Chanc0c050c2015-10-22 16:01:17 -04003244 req.ip_protocol = keys->basic.ip_proto;
3245
3246 req.src_ipaddr[0] = keys->addrs.v4addrs.src;
3247 req.src_ipaddr_mask[0] = cpu_to_be32(0xffffffff);
3248 req.dst_ipaddr[0] = keys->addrs.v4addrs.dst;
3249 req.dst_ipaddr_mask[0] = cpu_to_be32(0xffffffff);
3250
3251 req.src_port = keys->ports.src;
3252 req.src_port_mask = cpu_to_be16(0xffff);
3253 req.dst_port = keys->ports.dst;
3254 req.dst_port_mask = cpu_to_be16(0xffff);
3255
Michael Chanc1935542015-12-27 18:19:28 -05003256 req.dst_id = cpu_to_le16(vnic->fw_vnic_id);
Michael Chanc0c050c2015-10-22 16:01:17 -04003257 mutex_lock(&bp->hwrm_cmd_lock);
3258 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3259 if (!rc)
3260 fltr->filter_id = resp->ntuple_filter_id;
3261 mutex_unlock(&bp->hwrm_cmd_lock);
3262 return rc;
3263}
3264#endif
3265
3266static int bnxt_hwrm_set_vnic_filter(struct bnxt *bp, u16 vnic_id, u16 idx,
3267 u8 *mac_addr)
3268{
3269 u32 rc = 0;
3270 struct hwrm_cfa_l2_filter_alloc_input req = {0};
3271 struct hwrm_cfa_l2_filter_alloc_output *resp = bp->hwrm_cmd_resp_addr;
3272
3273 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_CFA_L2_FILTER_ALLOC, -1, -1);
3274 req.flags = cpu_to_le32(CFA_L2_FILTER_ALLOC_REQ_FLAGS_PATH_RX |
3275 CFA_L2_FILTER_ALLOC_REQ_FLAGS_OUTERMOST);
Michael Chanc1935542015-12-27 18:19:28 -05003276 req.dst_id = cpu_to_le16(bp->vnic_info[vnic_id].fw_vnic_id);
Michael Chanc0c050c2015-10-22 16:01:17 -04003277 req.enables =
3278 cpu_to_le32(CFA_L2_FILTER_ALLOC_REQ_ENABLES_L2_ADDR |
Michael Chanc1935542015-12-27 18:19:28 -05003279 CFA_L2_FILTER_ALLOC_REQ_ENABLES_DST_ID |
Michael Chanc0c050c2015-10-22 16:01:17 -04003280 CFA_L2_FILTER_ALLOC_REQ_ENABLES_L2_ADDR_MASK);
3281 memcpy(req.l2_addr, mac_addr, ETH_ALEN);
3282 req.l2_addr_mask[0] = 0xff;
3283 req.l2_addr_mask[1] = 0xff;
3284 req.l2_addr_mask[2] = 0xff;
3285 req.l2_addr_mask[3] = 0xff;
3286 req.l2_addr_mask[4] = 0xff;
3287 req.l2_addr_mask[5] = 0xff;
3288
3289 mutex_lock(&bp->hwrm_cmd_lock);
3290 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3291 if (!rc)
3292 bp->vnic_info[vnic_id].fw_l2_filter_id[idx] =
3293 resp->l2_filter_id;
3294 mutex_unlock(&bp->hwrm_cmd_lock);
3295 return rc;
3296}
3297
3298static int bnxt_hwrm_clear_vnic_filter(struct bnxt *bp)
3299{
3300 u16 i, j, num_of_vnics = 1; /* only vnic 0 supported */
3301 int rc = 0;
3302
3303 /* Any associated ntuple filters will also be cleared by firmware. */
3304 mutex_lock(&bp->hwrm_cmd_lock);
3305 for (i = 0; i < num_of_vnics; i++) {
3306 struct bnxt_vnic_info *vnic = &bp->vnic_info[i];
3307
3308 for (j = 0; j < vnic->uc_filter_count; j++) {
3309 struct hwrm_cfa_l2_filter_free_input req = {0};
3310
3311 bnxt_hwrm_cmd_hdr_init(bp, &req,
3312 HWRM_CFA_L2_FILTER_FREE, -1, -1);
3313
3314 req.l2_filter_id = vnic->fw_l2_filter_id[j];
3315
3316 rc = _hwrm_send_message(bp, &req, sizeof(req),
3317 HWRM_CMD_TIMEOUT);
3318 }
3319 vnic->uc_filter_count = 0;
3320 }
3321 mutex_unlock(&bp->hwrm_cmd_lock);
3322
3323 return rc;
3324}
3325
3326static int bnxt_hwrm_vnic_set_tpa(struct bnxt *bp, u16 vnic_id, u32 tpa_flags)
3327{
3328 struct bnxt_vnic_info *vnic = &bp->vnic_info[vnic_id];
3329 struct hwrm_vnic_tpa_cfg_input req = {0};
3330
3331 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_TPA_CFG, -1, -1);
3332
3333 if (tpa_flags) {
3334 u16 mss = bp->dev->mtu - 40;
3335 u32 nsegs, n, segs = 0, flags;
3336
3337 flags = VNIC_TPA_CFG_REQ_FLAGS_TPA |
3338 VNIC_TPA_CFG_REQ_FLAGS_ENCAP_TPA |
3339 VNIC_TPA_CFG_REQ_FLAGS_RSC_WND_UPDATE |
3340 VNIC_TPA_CFG_REQ_FLAGS_AGG_WITH_ECN |
3341 VNIC_TPA_CFG_REQ_FLAGS_AGG_WITH_SAME_GRE_SEQ;
3342 if (tpa_flags & BNXT_FLAG_GRO)
3343 flags |= VNIC_TPA_CFG_REQ_FLAGS_GRO;
3344
3345 req.flags = cpu_to_le32(flags);
3346
3347 req.enables =
3348 cpu_to_le32(VNIC_TPA_CFG_REQ_ENABLES_MAX_AGG_SEGS |
Michael Chanc1935542015-12-27 18:19:28 -05003349 VNIC_TPA_CFG_REQ_ENABLES_MAX_AGGS |
3350 VNIC_TPA_CFG_REQ_ENABLES_MIN_AGG_LEN);
Michael Chanc0c050c2015-10-22 16:01:17 -04003351
3352 /* Number of segs are log2 units, and first packet is not
3353 * included as part of this units.
3354 */
Michael Chan2839f282016-04-25 02:30:50 -04003355 if (mss <= BNXT_RX_PAGE_SIZE) {
3356 n = BNXT_RX_PAGE_SIZE / mss;
Michael Chanc0c050c2015-10-22 16:01:17 -04003357 nsegs = (MAX_SKB_FRAGS - 1) * n;
3358 } else {
Michael Chan2839f282016-04-25 02:30:50 -04003359 n = mss / BNXT_RX_PAGE_SIZE;
3360 if (mss & (BNXT_RX_PAGE_SIZE - 1))
Michael Chanc0c050c2015-10-22 16:01:17 -04003361 n++;
3362 nsegs = (MAX_SKB_FRAGS - n) / n;
3363 }
3364
3365 segs = ilog2(nsegs);
3366 req.max_agg_segs = cpu_to_le16(segs);
3367 req.max_aggs = cpu_to_le16(VNIC_TPA_CFG_REQ_MAX_AGGS_MAX);
Michael Chanc1935542015-12-27 18:19:28 -05003368
3369 req.min_agg_len = cpu_to_le32(512);
Michael Chanc0c050c2015-10-22 16:01:17 -04003370 }
3371 req.vnic_id = cpu_to_le16(vnic->fw_vnic_id);
3372
3373 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3374}
3375
3376static int bnxt_hwrm_vnic_set_rss(struct bnxt *bp, u16 vnic_id, bool set_rss)
3377{
3378 u32 i, j, max_rings;
3379 struct bnxt_vnic_info *vnic = &bp->vnic_info[vnic_id];
3380 struct hwrm_vnic_rss_cfg_input req = {0};
3381
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04003382 if (vnic->fw_rss_cos_lb_ctx[0] == INVALID_HW_RING_ID)
Michael Chanc0c050c2015-10-22 16:01:17 -04003383 return 0;
3384
3385 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_RSS_CFG, -1, -1);
3386 if (set_rss) {
3387 vnic->hash_type = BNXT_RSS_HASH_TYPE_FLAG_IPV4 |
3388 BNXT_RSS_HASH_TYPE_FLAG_TCP_IPV4 |
3389 BNXT_RSS_HASH_TYPE_FLAG_IPV6 |
3390 BNXT_RSS_HASH_TYPE_FLAG_TCP_IPV6;
3391
3392 req.hash_type = cpu_to_le32(vnic->hash_type);
3393
3394 if (vnic->flags & BNXT_VNIC_RSS_FLAG)
3395 max_rings = bp->rx_nr_rings;
3396 else
3397 max_rings = 1;
3398
3399 /* Fill the RSS indirection table with ring group ids */
3400 for (i = 0, j = 0; i < HW_HASH_INDEX_SIZE; i++, j++) {
3401 if (j == max_rings)
3402 j = 0;
3403 vnic->rss_table[i] = cpu_to_le16(vnic->fw_grp_ids[j]);
3404 }
3405
3406 req.ring_grp_tbl_addr = cpu_to_le64(vnic->rss_table_dma_addr);
3407 req.hash_key_tbl_addr =
3408 cpu_to_le64(vnic->rss_hash_key_dma_addr);
3409 }
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04003410 req.rss_ctx_idx = cpu_to_le16(vnic->fw_rss_cos_lb_ctx[0]);
Michael Chanc0c050c2015-10-22 16:01:17 -04003411 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3412}
3413
3414static int bnxt_hwrm_vnic_set_hds(struct bnxt *bp, u16 vnic_id)
3415{
3416 struct bnxt_vnic_info *vnic = &bp->vnic_info[vnic_id];
3417 struct hwrm_vnic_plcmodes_cfg_input req = {0};
3418
3419 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_PLCMODES_CFG, -1, -1);
3420 req.flags = cpu_to_le32(VNIC_PLCMODES_CFG_REQ_FLAGS_JUMBO_PLACEMENT |
3421 VNIC_PLCMODES_CFG_REQ_FLAGS_HDS_IPV4 |
3422 VNIC_PLCMODES_CFG_REQ_FLAGS_HDS_IPV6);
3423 req.enables =
3424 cpu_to_le32(VNIC_PLCMODES_CFG_REQ_ENABLES_JUMBO_THRESH_VALID |
3425 VNIC_PLCMODES_CFG_REQ_ENABLES_HDS_THRESHOLD_VALID);
3426 /* thresholds not implemented in firmware yet */
3427 req.jumbo_thresh = cpu_to_le16(bp->rx_copy_thresh);
3428 req.hds_threshold = cpu_to_le16(bp->rx_copy_thresh);
3429 req.vnic_id = cpu_to_le32(vnic->fw_vnic_id);
3430 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3431}
3432
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04003433static void bnxt_hwrm_vnic_ctx_free_one(struct bnxt *bp, u16 vnic_id,
3434 u16 ctx_idx)
Michael Chanc0c050c2015-10-22 16:01:17 -04003435{
3436 struct hwrm_vnic_rss_cos_lb_ctx_free_input req = {0};
3437
3438 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_RSS_COS_LB_CTX_FREE, -1, -1);
3439 req.rss_cos_lb_ctx_id =
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04003440 cpu_to_le16(bp->vnic_info[vnic_id].fw_rss_cos_lb_ctx[ctx_idx]);
Michael Chanc0c050c2015-10-22 16:01:17 -04003441
3442 hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04003443 bp->vnic_info[vnic_id].fw_rss_cos_lb_ctx[ctx_idx] = INVALID_HW_RING_ID;
Michael Chanc0c050c2015-10-22 16:01:17 -04003444}
3445
3446static void bnxt_hwrm_vnic_ctx_free(struct bnxt *bp)
3447{
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04003448 int i, j;
Michael Chanc0c050c2015-10-22 16:01:17 -04003449
3450 for (i = 0; i < bp->nr_vnics; i++) {
3451 struct bnxt_vnic_info *vnic = &bp->vnic_info[i];
3452
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04003453 for (j = 0; j < BNXT_MAX_CTX_PER_VNIC; j++) {
3454 if (vnic->fw_rss_cos_lb_ctx[j] != INVALID_HW_RING_ID)
3455 bnxt_hwrm_vnic_ctx_free_one(bp, i, j);
3456 }
Michael Chanc0c050c2015-10-22 16:01:17 -04003457 }
3458 bp->rsscos_nr_ctxs = 0;
3459}
3460
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04003461static int bnxt_hwrm_vnic_ctx_alloc(struct bnxt *bp, u16 vnic_id, u16 ctx_idx)
Michael Chanc0c050c2015-10-22 16:01:17 -04003462{
3463 int rc;
3464 struct hwrm_vnic_rss_cos_lb_ctx_alloc_input req = {0};
3465 struct hwrm_vnic_rss_cos_lb_ctx_alloc_output *resp =
3466 bp->hwrm_cmd_resp_addr;
3467
3468 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_RSS_COS_LB_CTX_ALLOC, -1,
3469 -1);
3470
3471 mutex_lock(&bp->hwrm_cmd_lock);
3472 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3473 if (!rc)
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04003474 bp->vnic_info[vnic_id].fw_rss_cos_lb_ctx[ctx_idx] =
Michael Chanc0c050c2015-10-22 16:01:17 -04003475 le16_to_cpu(resp->rss_cos_lb_ctx_id);
3476 mutex_unlock(&bp->hwrm_cmd_lock);
3477
3478 return rc;
3479}
3480
3481static int bnxt_hwrm_vnic_cfg(struct bnxt *bp, u16 vnic_id)
3482{
Michael Chanb81a90d2016-01-02 23:45:01 -05003483 unsigned int ring = 0, grp_idx;
Michael Chanc0c050c2015-10-22 16:01:17 -04003484 struct bnxt_vnic_info *vnic = &bp->vnic_info[vnic_id];
3485 struct hwrm_vnic_cfg_input req = {0};
Michael Chancf6645f2016-06-13 02:25:28 -04003486 u16 def_vlan = 0;
Michael Chanc0c050c2015-10-22 16:01:17 -04003487
3488 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_CFG, -1, -1);
3489 /* Only RSS support for now TBD: COS & LB */
3490 req.enables = cpu_to_le32(VNIC_CFG_REQ_ENABLES_DFLT_RING_GRP |
Michael Chan550feeb2016-07-01 18:46:25 -04003491 VNIC_CFG_REQ_ENABLES_RSS_RULE |
3492 VNIC_CFG_REQ_ENABLES_MRU);
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04003493 req.rss_rule = cpu_to_le16(vnic->fw_rss_cos_lb_ctx[0]);
3494
3495 if (BNXT_CHIP_TYPE_NITRO_A0(bp)) {
3496 req.cos_rule = cpu_to_le16(vnic->fw_rss_cos_lb_ctx[1]);
3497 req.enables |= cpu_to_le32(VNIC_CFG_REQ_ENABLES_COS_RULE);
3498 } else {
3499 req.cos_rule = cpu_to_le16(0xffff);
3500 }
3501
Michael Chanc0c050c2015-10-22 16:01:17 -04003502 if (vnic->flags & BNXT_VNIC_RSS_FLAG)
Michael Chanb81a90d2016-01-02 23:45:01 -05003503 ring = 0;
Michael Chanc0c050c2015-10-22 16:01:17 -04003504 else if (vnic->flags & BNXT_VNIC_RFS_FLAG)
Michael Chanb81a90d2016-01-02 23:45:01 -05003505 ring = vnic_id - 1;
Prashant Sreedharan76595192016-07-18 07:15:22 -04003506 else if ((vnic_id == 1) && BNXT_CHIP_TYPE_NITRO_A0(bp))
3507 ring = bp->rx_nr_rings - 1;
Michael Chanc0c050c2015-10-22 16:01:17 -04003508
Michael Chanb81a90d2016-01-02 23:45:01 -05003509 grp_idx = bp->rx_ring[ring].bnapi->index;
Michael Chanc0c050c2015-10-22 16:01:17 -04003510 req.vnic_id = cpu_to_le16(vnic->fw_vnic_id);
3511 req.dflt_ring_grp = cpu_to_le16(bp->grp_info[grp_idx].fw_grp_id);
3512
3513 req.lb_rule = cpu_to_le16(0xffff);
3514 req.mru = cpu_to_le16(bp->dev->mtu + ETH_HLEN + ETH_FCS_LEN +
3515 VLAN_HLEN);
3516
Michael Chancf6645f2016-06-13 02:25:28 -04003517#ifdef CONFIG_BNXT_SRIOV
3518 if (BNXT_VF(bp))
3519 def_vlan = bp->vf.vlan;
3520#endif
3521 if ((bp->flags & BNXT_FLAG_STRIP_VLAN) || def_vlan)
Michael Chanc0c050c2015-10-22 16:01:17 -04003522 req.flags |= cpu_to_le32(VNIC_CFG_REQ_FLAGS_VLAN_STRIP_MODE);
3523
3524 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3525}
3526
3527static int bnxt_hwrm_vnic_free_one(struct bnxt *bp, u16 vnic_id)
3528{
3529 u32 rc = 0;
3530
3531 if (bp->vnic_info[vnic_id].fw_vnic_id != INVALID_HW_RING_ID) {
3532 struct hwrm_vnic_free_input req = {0};
3533
3534 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_FREE, -1, -1);
3535 req.vnic_id =
3536 cpu_to_le32(bp->vnic_info[vnic_id].fw_vnic_id);
3537
3538 rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3539 if (rc)
3540 return rc;
3541 bp->vnic_info[vnic_id].fw_vnic_id = INVALID_HW_RING_ID;
3542 }
3543 return rc;
3544}
3545
3546static void bnxt_hwrm_vnic_free(struct bnxt *bp)
3547{
3548 u16 i;
3549
3550 for (i = 0; i < bp->nr_vnics; i++)
3551 bnxt_hwrm_vnic_free_one(bp, i);
3552}
3553
Michael Chanb81a90d2016-01-02 23:45:01 -05003554static int bnxt_hwrm_vnic_alloc(struct bnxt *bp, u16 vnic_id,
3555 unsigned int start_rx_ring_idx,
3556 unsigned int nr_rings)
Michael Chanc0c050c2015-10-22 16:01:17 -04003557{
Michael Chanb81a90d2016-01-02 23:45:01 -05003558 int rc = 0;
3559 unsigned int i, j, grp_idx, end_idx = start_rx_ring_idx + nr_rings;
Michael Chanc0c050c2015-10-22 16:01:17 -04003560 struct hwrm_vnic_alloc_input req = {0};
3561 struct hwrm_vnic_alloc_output *resp = bp->hwrm_cmd_resp_addr;
3562
3563 /* map ring groups to this vnic */
Michael Chanb81a90d2016-01-02 23:45:01 -05003564 for (i = start_rx_ring_idx, j = 0; i < end_idx; i++, j++) {
3565 grp_idx = bp->rx_ring[i].bnapi->index;
3566 if (bp->grp_info[grp_idx].fw_grp_id == INVALID_HW_RING_ID) {
Michael Chanc0c050c2015-10-22 16:01:17 -04003567 netdev_err(bp->dev, "Not enough ring groups avail:%x req:%x\n",
Michael Chanb81a90d2016-01-02 23:45:01 -05003568 j, nr_rings);
Michael Chanc0c050c2015-10-22 16:01:17 -04003569 break;
3570 }
3571 bp->vnic_info[vnic_id].fw_grp_ids[j] =
Michael Chanb81a90d2016-01-02 23:45:01 -05003572 bp->grp_info[grp_idx].fw_grp_id;
Michael Chanc0c050c2015-10-22 16:01:17 -04003573 }
3574
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04003575 bp->vnic_info[vnic_id].fw_rss_cos_lb_ctx[0] = INVALID_HW_RING_ID;
3576 bp->vnic_info[vnic_id].fw_rss_cos_lb_ctx[1] = INVALID_HW_RING_ID;
Michael Chanc0c050c2015-10-22 16:01:17 -04003577 if (vnic_id == 0)
3578 req.flags = cpu_to_le32(VNIC_ALLOC_REQ_FLAGS_DEFAULT);
3579
3580 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_ALLOC, -1, -1);
3581
3582 mutex_lock(&bp->hwrm_cmd_lock);
3583 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3584 if (!rc)
3585 bp->vnic_info[vnic_id].fw_vnic_id = le32_to_cpu(resp->vnic_id);
3586 mutex_unlock(&bp->hwrm_cmd_lock);
3587 return rc;
3588}
3589
3590static int bnxt_hwrm_ring_grp_alloc(struct bnxt *bp)
3591{
3592 u16 i;
3593 u32 rc = 0;
3594
3595 mutex_lock(&bp->hwrm_cmd_lock);
3596 for (i = 0; i < bp->rx_nr_rings; i++) {
3597 struct hwrm_ring_grp_alloc_input req = {0};
3598 struct hwrm_ring_grp_alloc_output *resp =
3599 bp->hwrm_cmd_resp_addr;
Michael Chanb81a90d2016-01-02 23:45:01 -05003600 unsigned int grp_idx = bp->rx_ring[i].bnapi->index;
Michael Chanc0c050c2015-10-22 16:01:17 -04003601
3602 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_RING_GRP_ALLOC, -1, -1);
3603
Michael Chanb81a90d2016-01-02 23:45:01 -05003604 req.cr = cpu_to_le16(bp->grp_info[grp_idx].cp_fw_ring_id);
3605 req.rr = cpu_to_le16(bp->grp_info[grp_idx].rx_fw_ring_id);
3606 req.ar = cpu_to_le16(bp->grp_info[grp_idx].agg_fw_ring_id);
3607 req.sc = cpu_to_le16(bp->grp_info[grp_idx].fw_stats_ctx);
Michael Chanc0c050c2015-10-22 16:01:17 -04003608
3609 rc = _hwrm_send_message(bp, &req, sizeof(req),
3610 HWRM_CMD_TIMEOUT);
3611 if (rc)
3612 break;
3613
Michael Chanb81a90d2016-01-02 23:45:01 -05003614 bp->grp_info[grp_idx].fw_grp_id =
3615 le32_to_cpu(resp->ring_group_id);
Michael Chanc0c050c2015-10-22 16:01:17 -04003616 }
3617 mutex_unlock(&bp->hwrm_cmd_lock);
3618 return rc;
3619}
3620
3621static int bnxt_hwrm_ring_grp_free(struct bnxt *bp)
3622{
3623 u16 i;
3624 u32 rc = 0;
3625 struct hwrm_ring_grp_free_input req = {0};
3626
3627 if (!bp->grp_info)
3628 return 0;
3629
3630 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_RING_GRP_FREE, -1, -1);
3631
3632 mutex_lock(&bp->hwrm_cmd_lock);
3633 for (i = 0; i < bp->cp_nr_rings; i++) {
3634 if (bp->grp_info[i].fw_grp_id == INVALID_HW_RING_ID)
3635 continue;
3636 req.ring_group_id =
3637 cpu_to_le32(bp->grp_info[i].fw_grp_id);
3638
3639 rc = _hwrm_send_message(bp, &req, sizeof(req),
3640 HWRM_CMD_TIMEOUT);
3641 if (rc)
3642 break;
3643 bp->grp_info[i].fw_grp_id = INVALID_HW_RING_ID;
3644 }
3645 mutex_unlock(&bp->hwrm_cmd_lock);
3646 return rc;
3647}
3648
3649static int hwrm_ring_alloc_send_msg(struct bnxt *bp,
3650 struct bnxt_ring_struct *ring,
3651 u32 ring_type, u32 map_index,
3652 u32 stats_ctx_id)
3653{
3654 int rc = 0, err = 0;
3655 struct hwrm_ring_alloc_input req = {0};
3656 struct hwrm_ring_alloc_output *resp = bp->hwrm_cmd_resp_addr;
3657 u16 ring_id;
3658
3659 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_RING_ALLOC, -1, -1);
3660
3661 req.enables = 0;
3662 if (ring->nr_pages > 1) {
3663 req.page_tbl_addr = cpu_to_le64(ring->pg_tbl_map);
3664 /* Page size is in log2 units */
3665 req.page_size = BNXT_PAGE_SHIFT;
3666 req.page_tbl_depth = 1;
3667 } else {
3668 req.page_tbl_addr = cpu_to_le64(ring->dma_arr[0]);
3669 }
3670 req.fbo = 0;
3671 /* Association of ring index with doorbell index and MSIX number */
3672 req.logical_id = cpu_to_le16(map_index);
3673
3674 switch (ring_type) {
3675 case HWRM_RING_ALLOC_TX:
3676 req.ring_type = RING_ALLOC_REQ_RING_TYPE_TX;
3677 /* Association of transmit ring with completion ring */
3678 req.cmpl_ring_id =
3679 cpu_to_le16(bp->grp_info[map_index].cp_fw_ring_id);
3680 req.length = cpu_to_le32(bp->tx_ring_mask + 1);
3681 req.stat_ctx_id = cpu_to_le32(stats_ctx_id);
3682 req.queue_id = cpu_to_le16(ring->queue_id);
3683 break;
3684 case HWRM_RING_ALLOC_RX:
3685 req.ring_type = RING_ALLOC_REQ_RING_TYPE_RX;
3686 req.length = cpu_to_le32(bp->rx_ring_mask + 1);
3687 break;
3688 case HWRM_RING_ALLOC_AGG:
3689 req.ring_type = RING_ALLOC_REQ_RING_TYPE_RX;
3690 req.length = cpu_to_le32(bp->rx_agg_ring_mask + 1);
3691 break;
3692 case HWRM_RING_ALLOC_CMPL:
3693 req.ring_type = RING_ALLOC_REQ_RING_TYPE_CMPL;
3694 req.length = cpu_to_le32(bp->cp_ring_mask + 1);
3695 if (bp->flags & BNXT_FLAG_USING_MSIX)
3696 req.int_mode = RING_ALLOC_REQ_INT_MODE_MSIX;
3697 break;
3698 default:
3699 netdev_err(bp->dev, "hwrm alloc invalid ring type %d\n",
3700 ring_type);
3701 return -1;
3702 }
3703
3704 mutex_lock(&bp->hwrm_cmd_lock);
3705 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3706 err = le16_to_cpu(resp->error_code);
3707 ring_id = le16_to_cpu(resp->ring_id);
3708 mutex_unlock(&bp->hwrm_cmd_lock);
3709
3710 if (rc || err) {
3711 switch (ring_type) {
3712 case RING_FREE_REQ_RING_TYPE_CMPL:
3713 netdev_err(bp->dev, "hwrm_ring_alloc cp failed. rc:%x err:%x\n",
3714 rc, err);
3715 return -1;
3716
3717 case RING_FREE_REQ_RING_TYPE_RX:
3718 netdev_err(bp->dev, "hwrm_ring_alloc rx failed. rc:%x err:%x\n",
3719 rc, err);
3720 return -1;
3721
3722 case RING_FREE_REQ_RING_TYPE_TX:
3723 netdev_err(bp->dev, "hwrm_ring_alloc tx failed. rc:%x err:%x\n",
3724 rc, err);
3725 return -1;
3726
3727 default:
3728 netdev_err(bp->dev, "Invalid ring\n");
3729 return -1;
3730 }
3731 }
3732 ring->fw_ring_id = ring_id;
3733 return rc;
3734}
3735
3736static int bnxt_hwrm_ring_alloc(struct bnxt *bp)
3737{
3738 int i, rc = 0;
3739
Michael Chanedd0c2c2015-12-27 18:19:19 -05003740 for (i = 0; i < bp->cp_nr_rings; i++) {
3741 struct bnxt_napi *bnapi = bp->bnapi[i];
3742 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
3743 struct bnxt_ring_struct *ring = &cpr->cp_ring_struct;
Michael Chanc0c050c2015-10-22 16:01:17 -04003744
Prashant Sreedharan33e52d82016-03-28 19:46:04 -04003745 cpr->cp_doorbell = bp->bar1 + i * 0x80;
Michael Chanedd0c2c2015-12-27 18:19:19 -05003746 rc = hwrm_ring_alloc_send_msg(bp, ring, HWRM_RING_ALLOC_CMPL, i,
3747 INVALID_STATS_CTX_ID);
3748 if (rc)
3749 goto err_out;
Michael Chanedd0c2c2015-12-27 18:19:19 -05003750 BNXT_CP_DB(cpr->cp_doorbell, cpr->cp_raw_cons);
3751 bp->grp_info[i].cp_fw_ring_id = ring->fw_ring_id;
Michael Chanc0c050c2015-10-22 16:01:17 -04003752 }
3753
Michael Chanedd0c2c2015-12-27 18:19:19 -05003754 for (i = 0; i < bp->tx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05003755 struct bnxt_tx_ring_info *txr = &bp->tx_ring[i];
Michael Chanedd0c2c2015-12-27 18:19:19 -05003756 struct bnxt_ring_struct *ring = &txr->tx_ring_struct;
Michael Chanb81a90d2016-01-02 23:45:01 -05003757 u32 map_idx = txr->bnapi->index;
3758 u16 fw_stats_ctx = bp->grp_info[map_idx].fw_stats_ctx;
Michael Chanc0c050c2015-10-22 16:01:17 -04003759
Michael Chanb81a90d2016-01-02 23:45:01 -05003760 rc = hwrm_ring_alloc_send_msg(bp, ring, HWRM_RING_ALLOC_TX,
3761 map_idx, fw_stats_ctx);
Michael Chanedd0c2c2015-12-27 18:19:19 -05003762 if (rc)
3763 goto err_out;
Michael Chanb81a90d2016-01-02 23:45:01 -05003764 txr->tx_doorbell = bp->bar1 + map_idx * 0x80;
Michael Chanc0c050c2015-10-22 16:01:17 -04003765 }
3766
Michael Chanedd0c2c2015-12-27 18:19:19 -05003767 for (i = 0; i < bp->rx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05003768 struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i];
Michael Chanedd0c2c2015-12-27 18:19:19 -05003769 struct bnxt_ring_struct *ring = &rxr->rx_ring_struct;
Michael Chanb81a90d2016-01-02 23:45:01 -05003770 u32 map_idx = rxr->bnapi->index;
Michael Chanc0c050c2015-10-22 16:01:17 -04003771
Michael Chanb81a90d2016-01-02 23:45:01 -05003772 rc = hwrm_ring_alloc_send_msg(bp, ring, HWRM_RING_ALLOC_RX,
3773 map_idx, INVALID_STATS_CTX_ID);
Michael Chanedd0c2c2015-12-27 18:19:19 -05003774 if (rc)
3775 goto err_out;
Michael Chanb81a90d2016-01-02 23:45:01 -05003776 rxr->rx_doorbell = bp->bar1 + map_idx * 0x80;
Michael Chanedd0c2c2015-12-27 18:19:19 -05003777 writel(DB_KEY_RX | rxr->rx_prod, rxr->rx_doorbell);
Michael Chanb81a90d2016-01-02 23:45:01 -05003778 bp->grp_info[map_idx].rx_fw_ring_id = ring->fw_ring_id;
Michael Chanc0c050c2015-10-22 16:01:17 -04003779 }
3780
3781 if (bp->flags & BNXT_FLAG_AGG_RINGS) {
3782 for (i = 0; i < bp->rx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05003783 struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04003784 struct bnxt_ring_struct *ring =
3785 &rxr->rx_agg_ring_struct;
Michael Chanb81a90d2016-01-02 23:45:01 -05003786 u32 grp_idx = rxr->bnapi->index;
3787 u32 map_idx = grp_idx + bp->rx_nr_rings;
Michael Chanc0c050c2015-10-22 16:01:17 -04003788
3789 rc = hwrm_ring_alloc_send_msg(bp, ring,
3790 HWRM_RING_ALLOC_AGG,
Michael Chanb81a90d2016-01-02 23:45:01 -05003791 map_idx,
Michael Chanc0c050c2015-10-22 16:01:17 -04003792 INVALID_STATS_CTX_ID);
3793 if (rc)
3794 goto err_out;
3795
Michael Chanb81a90d2016-01-02 23:45:01 -05003796 rxr->rx_agg_doorbell = bp->bar1 + map_idx * 0x80;
Michael Chanc0c050c2015-10-22 16:01:17 -04003797 writel(DB_KEY_RX | rxr->rx_agg_prod,
3798 rxr->rx_agg_doorbell);
Michael Chanb81a90d2016-01-02 23:45:01 -05003799 bp->grp_info[grp_idx].agg_fw_ring_id = ring->fw_ring_id;
Michael Chanc0c050c2015-10-22 16:01:17 -04003800 }
3801 }
3802err_out:
3803 return rc;
3804}
3805
3806static int hwrm_ring_free_send_msg(struct bnxt *bp,
3807 struct bnxt_ring_struct *ring,
3808 u32 ring_type, int cmpl_ring_id)
3809{
3810 int rc;
3811 struct hwrm_ring_free_input req = {0};
3812 struct hwrm_ring_free_output *resp = bp->hwrm_cmd_resp_addr;
3813 u16 error_code;
3814
Prashant Sreedharan74608fc2016-01-28 03:11:20 -05003815 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_RING_FREE, cmpl_ring_id, -1);
Michael Chanc0c050c2015-10-22 16:01:17 -04003816 req.ring_type = ring_type;
3817 req.ring_id = cpu_to_le16(ring->fw_ring_id);
3818
3819 mutex_lock(&bp->hwrm_cmd_lock);
3820 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3821 error_code = le16_to_cpu(resp->error_code);
3822 mutex_unlock(&bp->hwrm_cmd_lock);
3823
3824 if (rc || error_code) {
3825 switch (ring_type) {
3826 case RING_FREE_REQ_RING_TYPE_CMPL:
3827 netdev_err(bp->dev, "hwrm_ring_free cp failed. rc:%d\n",
3828 rc);
3829 return rc;
3830 case RING_FREE_REQ_RING_TYPE_RX:
3831 netdev_err(bp->dev, "hwrm_ring_free rx failed. rc:%d\n",
3832 rc);
3833 return rc;
3834 case RING_FREE_REQ_RING_TYPE_TX:
3835 netdev_err(bp->dev, "hwrm_ring_free tx failed. rc:%d\n",
3836 rc);
3837 return rc;
3838 default:
3839 netdev_err(bp->dev, "Invalid ring\n");
3840 return -1;
3841 }
3842 }
3843 return 0;
3844}
3845
Michael Chanedd0c2c2015-12-27 18:19:19 -05003846static void bnxt_hwrm_ring_free(struct bnxt *bp, bool close_path)
Michael Chanc0c050c2015-10-22 16:01:17 -04003847{
Michael Chanedd0c2c2015-12-27 18:19:19 -05003848 int i;
Michael Chanc0c050c2015-10-22 16:01:17 -04003849
3850 if (!bp->bnapi)
Michael Chanedd0c2c2015-12-27 18:19:19 -05003851 return;
Michael Chanc0c050c2015-10-22 16:01:17 -04003852
Michael Chanedd0c2c2015-12-27 18:19:19 -05003853 for (i = 0; i < bp->tx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05003854 struct bnxt_tx_ring_info *txr = &bp->tx_ring[i];
Michael Chanedd0c2c2015-12-27 18:19:19 -05003855 struct bnxt_ring_struct *ring = &txr->tx_ring_struct;
Michael Chanb81a90d2016-01-02 23:45:01 -05003856 u32 grp_idx = txr->bnapi->index;
3857 u32 cmpl_ring_id = bp->grp_info[grp_idx].cp_fw_ring_id;
Michael Chanc0c050c2015-10-22 16:01:17 -04003858
Michael Chanedd0c2c2015-12-27 18:19:19 -05003859 if (ring->fw_ring_id != INVALID_HW_RING_ID) {
3860 hwrm_ring_free_send_msg(bp, ring,
3861 RING_FREE_REQ_RING_TYPE_TX,
3862 close_path ? cmpl_ring_id :
3863 INVALID_HW_RING_ID);
3864 ring->fw_ring_id = INVALID_HW_RING_ID;
Michael Chanc0c050c2015-10-22 16:01:17 -04003865 }
3866 }
3867
Michael Chanedd0c2c2015-12-27 18:19:19 -05003868 for (i = 0; i < bp->rx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05003869 struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i];
Michael Chanedd0c2c2015-12-27 18:19:19 -05003870 struct bnxt_ring_struct *ring = &rxr->rx_ring_struct;
Michael Chanb81a90d2016-01-02 23:45:01 -05003871 u32 grp_idx = rxr->bnapi->index;
3872 u32 cmpl_ring_id = bp->grp_info[grp_idx].cp_fw_ring_id;
Michael Chanc0c050c2015-10-22 16:01:17 -04003873
Michael Chanedd0c2c2015-12-27 18:19:19 -05003874 if (ring->fw_ring_id != INVALID_HW_RING_ID) {
3875 hwrm_ring_free_send_msg(bp, ring,
3876 RING_FREE_REQ_RING_TYPE_RX,
3877 close_path ? cmpl_ring_id :
3878 INVALID_HW_RING_ID);
3879 ring->fw_ring_id = INVALID_HW_RING_ID;
Michael Chanb81a90d2016-01-02 23:45:01 -05003880 bp->grp_info[grp_idx].rx_fw_ring_id =
3881 INVALID_HW_RING_ID;
Michael Chanc0c050c2015-10-22 16:01:17 -04003882 }
3883 }
3884
Michael Chanedd0c2c2015-12-27 18:19:19 -05003885 for (i = 0; i < bp->rx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05003886 struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i];
Michael Chanedd0c2c2015-12-27 18:19:19 -05003887 struct bnxt_ring_struct *ring = &rxr->rx_agg_ring_struct;
Michael Chanb81a90d2016-01-02 23:45:01 -05003888 u32 grp_idx = rxr->bnapi->index;
3889 u32 cmpl_ring_id = bp->grp_info[grp_idx].cp_fw_ring_id;
Michael Chanc0c050c2015-10-22 16:01:17 -04003890
Michael Chanedd0c2c2015-12-27 18:19:19 -05003891 if (ring->fw_ring_id != INVALID_HW_RING_ID) {
3892 hwrm_ring_free_send_msg(bp, ring,
3893 RING_FREE_REQ_RING_TYPE_RX,
3894 close_path ? cmpl_ring_id :
3895 INVALID_HW_RING_ID);
3896 ring->fw_ring_id = INVALID_HW_RING_ID;
Michael Chanb81a90d2016-01-02 23:45:01 -05003897 bp->grp_info[grp_idx].agg_fw_ring_id =
3898 INVALID_HW_RING_ID;
Michael Chanc0c050c2015-10-22 16:01:17 -04003899 }
3900 }
3901
Michael Chanedd0c2c2015-12-27 18:19:19 -05003902 for (i = 0; i < bp->cp_nr_rings; i++) {
3903 struct bnxt_napi *bnapi = bp->bnapi[i];
3904 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
3905 struct bnxt_ring_struct *ring = &cpr->cp_ring_struct;
Michael Chanc0c050c2015-10-22 16:01:17 -04003906
Michael Chanedd0c2c2015-12-27 18:19:19 -05003907 if (ring->fw_ring_id != INVALID_HW_RING_ID) {
3908 hwrm_ring_free_send_msg(bp, ring,
3909 RING_FREE_REQ_RING_TYPE_CMPL,
3910 INVALID_HW_RING_ID);
3911 ring->fw_ring_id = INVALID_HW_RING_ID;
3912 bp->grp_info[i].cp_fw_ring_id = INVALID_HW_RING_ID;
Michael Chanc0c050c2015-10-22 16:01:17 -04003913 }
3914 }
Michael Chanc0c050c2015-10-22 16:01:17 -04003915}
3916
Michael Chanbb053f52016-02-26 04:00:02 -05003917static void bnxt_hwrm_set_coal_params(struct bnxt *bp, u32 max_bufs,
3918 u32 buf_tmrs, u16 flags,
3919 struct hwrm_ring_cmpl_ring_cfg_aggint_params_input *req)
3920{
3921 req->flags = cpu_to_le16(flags);
3922 req->num_cmpl_dma_aggr = cpu_to_le16((u16)max_bufs);
3923 req->num_cmpl_dma_aggr_during_int = cpu_to_le16(max_bufs >> 16);
3924 req->cmpl_aggr_dma_tmr = cpu_to_le16((u16)buf_tmrs);
3925 req->cmpl_aggr_dma_tmr_during_int = cpu_to_le16(buf_tmrs >> 16);
3926 /* Minimum time between 2 interrupts set to buf_tmr x 2 */
3927 req->int_lat_tmr_min = cpu_to_le16((u16)buf_tmrs * 2);
3928 req->int_lat_tmr_max = cpu_to_le16((u16)buf_tmrs * 4);
3929 req->num_cmpl_aggr_int = cpu_to_le16((u16)max_bufs * 4);
3930}
3931
Michael Chanc0c050c2015-10-22 16:01:17 -04003932int bnxt_hwrm_set_coal(struct bnxt *bp)
3933{
3934 int i, rc = 0;
Michael Chandfc9c942016-02-26 04:00:03 -05003935 struct hwrm_ring_cmpl_ring_cfg_aggint_params_input req_rx = {0},
3936 req_tx = {0}, *req;
Michael Chanc0c050c2015-10-22 16:01:17 -04003937 u16 max_buf, max_buf_irq;
3938 u16 buf_tmr, buf_tmr_irq;
3939 u32 flags;
3940
Michael Chandfc9c942016-02-26 04:00:03 -05003941 bnxt_hwrm_cmd_hdr_init(bp, &req_rx,
3942 HWRM_RING_CMPL_RING_CFG_AGGINT_PARAMS, -1, -1);
3943 bnxt_hwrm_cmd_hdr_init(bp, &req_tx,
3944 HWRM_RING_CMPL_RING_CFG_AGGINT_PARAMS, -1, -1);
Michael Chanc0c050c2015-10-22 16:01:17 -04003945
Michael Chandfb5b892016-02-26 04:00:01 -05003946 /* Each rx completion (2 records) should be DMAed immediately.
3947 * DMA 1/4 of the completion buffers at a time.
3948 */
3949 max_buf = min_t(u16, bp->rx_coal_bufs / 4, 2);
Michael Chanc0c050c2015-10-22 16:01:17 -04003950 /* max_buf must not be zero */
3951 max_buf = clamp_t(u16, max_buf, 1, 63);
Michael Chandfb5b892016-02-26 04:00:01 -05003952 max_buf_irq = clamp_t(u16, bp->rx_coal_bufs_irq, 1, 63);
3953 buf_tmr = BNXT_USEC_TO_COAL_TIMER(bp->rx_coal_ticks);
3954 /* buf timer set to 1/4 of interrupt timer */
3955 buf_tmr = max_t(u16, buf_tmr / 4, 1);
3956 buf_tmr_irq = BNXT_USEC_TO_COAL_TIMER(bp->rx_coal_ticks_irq);
3957 buf_tmr_irq = max_t(u16, buf_tmr_irq, 1);
Michael Chanc0c050c2015-10-22 16:01:17 -04003958
3959 flags = RING_CMPL_RING_CFG_AGGINT_PARAMS_REQ_FLAGS_TIMER_RESET;
3960
3961 /* RING_IDLE generates more IRQs for lower latency. Enable it only
3962 * if coal_ticks is less than 25 us.
3963 */
Michael Chandfb5b892016-02-26 04:00:01 -05003964 if (bp->rx_coal_ticks < 25)
Michael Chanc0c050c2015-10-22 16:01:17 -04003965 flags |= RING_CMPL_RING_CFG_AGGINT_PARAMS_REQ_FLAGS_RING_IDLE;
3966
Michael Chanbb053f52016-02-26 04:00:02 -05003967 bnxt_hwrm_set_coal_params(bp, max_buf_irq << 16 | max_buf,
Michael Chandfc9c942016-02-26 04:00:03 -05003968 buf_tmr_irq << 16 | buf_tmr, flags, &req_rx);
3969
3970 /* max_buf must not be zero */
3971 max_buf = clamp_t(u16, bp->tx_coal_bufs, 1, 63);
3972 max_buf_irq = clamp_t(u16, bp->tx_coal_bufs_irq, 1, 63);
3973 buf_tmr = BNXT_USEC_TO_COAL_TIMER(bp->tx_coal_ticks);
3974 /* buf timer set to 1/4 of interrupt timer */
3975 buf_tmr = max_t(u16, buf_tmr / 4, 1);
3976 buf_tmr_irq = BNXT_USEC_TO_COAL_TIMER(bp->tx_coal_ticks_irq);
3977 buf_tmr_irq = max_t(u16, buf_tmr_irq, 1);
3978
3979 flags = RING_CMPL_RING_CFG_AGGINT_PARAMS_REQ_FLAGS_TIMER_RESET;
3980 bnxt_hwrm_set_coal_params(bp, max_buf_irq << 16 | max_buf,
3981 buf_tmr_irq << 16 | buf_tmr, flags, &req_tx);
Michael Chanc0c050c2015-10-22 16:01:17 -04003982
3983 mutex_lock(&bp->hwrm_cmd_lock);
3984 for (i = 0; i < bp->cp_nr_rings; i++) {
Michael Chandfc9c942016-02-26 04:00:03 -05003985 struct bnxt_napi *bnapi = bp->bnapi[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04003986
Michael Chandfc9c942016-02-26 04:00:03 -05003987 req = &req_rx;
3988 if (!bnapi->rx_ring)
3989 req = &req_tx;
3990 req->ring_id = cpu_to_le16(bp->grp_info[i].cp_fw_ring_id);
3991
3992 rc = _hwrm_send_message(bp, req, sizeof(*req),
Michael Chanc0c050c2015-10-22 16:01:17 -04003993 HWRM_CMD_TIMEOUT);
3994 if (rc)
3995 break;
3996 }
3997 mutex_unlock(&bp->hwrm_cmd_lock);
3998 return rc;
3999}
4000
4001static int bnxt_hwrm_stat_ctx_free(struct bnxt *bp)
4002{
4003 int rc = 0, i;
4004 struct hwrm_stat_ctx_free_input req = {0};
4005
4006 if (!bp->bnapi)
4007 return 0;
4008
Prashant Sreedharan3e8060f2016-07-18 07:15:20 -04004009 if (BNXT_CHIP_TYPE_NITRO_A0(bp))
4010 return 0;
4011
Michael Chanc0c050c2015-10-22 16:01:17 -04004012 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_STAT_CTX_FREE, -1, -1);
4013
4014 mutex_lock(&bp->hwrm_cmd_lock);
4015 for (i = 0; i < bp->cp_nr_rings; i++) {
4016 struct bnxt_napi *bnapi = bp->bnapi[i];
4017 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
4018
4019 if (cpr->hw_stats_ctx_id != INVALID_STATS_CTX_ID) {
4020 req.stat_ctx_id = cpu_to_le32(cpr->hw_stats_ctx_id);
4021
4022 rc = _hwrm_send_message(bp, &req, sizeof(req),
4023 HWRM_CMD_TIMEOUT);
4024 if (rc)
4025 break;
4026
4027 cpr->hw_stats_ctx_id = INVALID_STATS_CTX_ID;
4028 }
4029 }
4030 mutex_unlock(&bp->hwrm_cmd_lock);
4031 return rc;
4032}
4033
4034static int bnxt_hwrm_stat_ctx_alloc(struct bnxt *bp)
4035{
4036 int rc = 0, i;
4037 struct hwrm_stat_ctx_alloc_input req = {0};
4038 struct hwrm_stat_ctx_alloc_output *resp = bp->hwrm_cmd_resp_addr;
4039
Prashant Sreedharan3e8060f2016-07-18 07:15:20 -04004040 if (BNXT_CHIP_TYPE_NITRO_A0(bp))
4041 return 0;
4042
Michael Chanc0c050c2015-10-22 16:01:17 -04004043 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_STAT_CTX_ALLOC, -1, -1);
4044
Michael Chan51f30782016-07-01 18:46:29 -04004045 req.update_period_ms = cpu_to_le32(bp->stats_coal_ticks / 1000);
Michael Chanc0c050c2015-10-22 16:01:17 -04004046
4047 mutex_lock(&bp->hwrm_cmd_lock);
4048 for (i = 0; i < bp->cp_nr_rings; i++) {
4049 struct bnxt_napi *bnapi = bp->bnapi[i];
4050 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
4051
4052 req.stats_dma_addr = cpu_to_le64(cpr->hw_stats_map);
4053
4054 rc = _hwrm_send_message(bp, &req, sizeof(req),
4055 HWRM_CMD_TIMEOUT);
4056 if (rc)
4057 break;
4058
4059 cpr->hw_stats_ctx_id = le32_to_cpu(resp->stat_ctx_id);
4060
4061 bp->grp_info[i].fw_stats_ctx = cpr->hw_stats_ctx_id;
4062 }
4063 mutex_unlock(&bp->hwrm_cmd_lock);
4064 return 0;
4065}
4066
Michael Chancf6645f2016-06-13 02:25:28 -04004067static int bnxt_hwrm_func_qcfg(struct bnxt *bp)
4068{
4069 struct hwrm_func_qcfg_input req = {0};
Satish Baddipadige567b2ab2016-06-13 02:25:31 -04004070 struct hwrm_func_qcfg_output *resp = bp->hwrm_cmd_resp_addr;
Michael Chancf6645f2016-06-13 02:25:28 -04004071 int rc;
4072
4073 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_QCFG, -1, -1);
4074 req.fid = cpu_to_le16(0xffff);
4075 mutex_lock(&bp->hwrm_cmd_lock);
4076 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4077 if (rc)
4078 goto func_qcfg_exit;
4079
4080#ifdef CONFIG_BNXT_SRIOV
4081 if (BNXT_VF(bp)) {
Michael Chancf6645f2016-06-13 02:25:28 -04004082 struct bnxt_vf_info *vf = &bp->vf;
4083
4084 vf->vlan = le16_to_cpu(resp->vlan) & VLAN_VID_MASK;
4085 }
4086#endif
Satish Baddipadige567b2ab2016-06-13 02:25:31 -04004087 switch (resp->port_partition_type) {
4088 case FUNC_QCFG_RESP_PORT_PARTITION_TYPE_NPAR1_0:
4089 case FUNC_QCFG_RESP_PORT_PARTITION_TYPE_NPAR1_5:
4090 case FUNC_QCFG_RESP_PORT_PARTITION_TYPE_NPAR2_0:
4091 bp->port_partition_type = resp->port_partition_type;
4092 break;
4093 }
Michael Chancf6645f2016-06-13 02:25:28 -04004094
4095func_qcfg_exit:
4096 mutex_unlock(&bp->hwrm_cmd_lock);
4097 return rc;
4098}
4099
Michael Chan4a21b492015-12-27 18:19:26 -05004100int bnxt_hwrm_func_qcaps(struct bnxt *bp)
Michael Chanc0c050c2015-10-22 16:01:17 -04004101{
4102 int rc = 0;
4103 struct hwrm_func_qcaps_input req = {0};
4104 struct hwrm_func_qcaps_output *resp = bp->hwrm_cmd_resp_addr;
4105
4106 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_QCAPS, -1, -1);
4107 req.fid = cpu_to_le16(0xffff);
4108
4109 mutex_lock(&bp->hwrm_cmd_lock);
4110 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4111 if (rc)
4112 goto hwrm_func_qcaps_exit;
4113
4114 if (BNXT_PF(bp)) {
4115 struct bnxt_pf_info *pf = &bp->pf;
4116
4117 pf->fw_fid = le16_to_cpu(resp->fid);
4118 pf->port_id = le16_to_cpu(resp->port_id);
Michael Chan87027db2016-07-01 18:46:28 -04004119 bp->dev->dev_port = pf->port_id;
Michael Chan11f15ed2016-04-05 14:08:55 -04004120 memcpy(pf->mac_addr, resp->mac_address, ETH_ALEN);
Jeffrey Huangbdd43472015-12-02 01:54:07 -05004121 memcpy(bp->dev->dev_addr, pf->mac_addr, ETH_ALEN);
Michael Chanc0c050c2015-10-22 16:01:17 -04004122 pf->max_rsscos_ctxs = le16_to_cpu(resp->max_rsscos_ctx);
4123 pf->max_cp_rings = le16_to_cpu(resp->max_cmpl_rings);
4124 pf->max_tx_rings = le16_to_cpu(resp->max_tx_rings);
Michael Chanc0c050c2015-10-22 16:01:17 -04004125 pf->max_rx_rings = le16_to_cpu(resp->max_rx_rings);
Michael Chanb72d4a62015-12-27 18:19:27 -05004126 pf->max_hw_ring_grps = le32_to_cpu(resp->max_hw_ring_grps);
4127 if (!pf->max_hw_ring_grps)
4128 pf->max_hw_ring_grps = pf->max_tx_rings;
Michael Chanc0c050c2015-10-22 16:01:17 -04004129 pf->max_l2_ctxs = le16_to_cpu(resp->max_l2_ctxs);
4130 pf->max_vnics = le16_to_cpu(resp->max_vnics);
4131 pf->max_stat_ctxs = le16_to_cpu(resp->max_stat_ctx);
4132 pf->first_vf_id = le16_to_cpu(resp->first_vf_id);
4133 pf->max_vfs = le16_to_cpu(resp->max_vfs);
4134 pf->max_encap_records = le32_to_cpu(resp->max_encap_records);
4135 pf->max_decap_records = le32_to_cpu(resp->max_decap_records);
4136 pf->max_tx_em_flows = le32_to_cpu(resp->max_tx_em_flows);
4137 pf->max_tx_wm_flows = le32_to_cpu(resp->max_tx_wm_flows);
4138 pf->max_rx_em_flows = le32_to_cpu(resp->max_rx_em_flows);
4139 pf->max_rx_wm_flows = le32_to_cpu(resp->max_rx_wm_flows);
4140 } else {
Michael Chan379a80a2015-10-23 15:06:19 -04004141#ifdef CONFIG_BNXT_SRIOV
Michael Chanc0c050c2015-10-22 16:01:17 -04004142 struct bnxt_vf_info *vf = &bp->vf;
4143
4144 vf->fw_fid = le16_to_cpu(resp->fid);
Michael Chan11f15ed2016-04-05 14:08:55 -04004145 memcpy(vf->mac_addr, resp->mac_address, ETH_ALEN);
Jeffrey Huangbdd43472015-12-02 01:54:07 -05004146 if (is_valid_ether_addr(vf->mac_addr))
4147 /* overwrite netdev dev_adr with admin VF MAC */
4148 memcpy(bp->dev->dev_addr, vf->mac_addr, ETH_ALEN);
4149 else
4150 random_ether_addr(bp->dev->dev_addr);
Michael Chanc0c050c2015-10-22 16:01:17 -04004151
4152 vf->max_rsscos_ctxs = le16_to_cpu(resp->max_rsscos_ctx);
4153 vf->max_cp_rings = le16_to_cpu(resp->max_cmpl_rings);
4154 vf->max_tx_rings = le16_to_cpu(resp->max_tx_rings);
4155 vf->max_rx_rings = le16_to_cpu(resp->max_rx_rings);
Michael Chanb72d4a62015-12-27 18:19:27 -05004156 vf->max_hw_ring_grps = le32_to_cpu(resp->max_hw_ring_grps);
4157 if (!vf->max_hw_ring_grps)
4158 vf->max_hw_ring_grps = vf->max_tx_rings;
Michael Chanc0c050c2015-10-22 16:01:17 -04004159 vf->max_l2_ctxs = le16_to_cpu(resp->max_l2_ctxs);
4160 vf->max_vnics = le16_to_cpu(resp->max_vnics);
4161 vf->max_stat_ctxs = le16_to_cpu(resp->max_stat_ctx);
Michael Chan379a80a2015-10-23 15:06:19 -04004162#endif
Michael Chanc0c050c2015-10-22 16:01:17 -04004163 }
4164
4165 bp->tx_push_thresh = 0;
4166 if (resp->flags &
4167 cpu_to_le32(FUNC_QCAPS_RESP_FLAGS_PUSH_MODE_SUPPORTED))
4168 bp->tx_push_thresh = BNXT_TX_PUSH_THRESH;
4169
4170hwrm_func_qcaps_exit:
4171 mutex_unlock(&bp->hwrm_cmd_lock);
4172 return rc;
4173}
4174
4175static int bnxt_hwrm_func_reset(struct bnxt *bp)
4176{
4177 struct hwrm_func_reset_input req = {0};
4178
4179 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_RESET, -1, -1);
4180 req.enables = 0;
4181
4182 return hwrm_send_message(bp, &req, sizeof(req), HWRM_RESET_TIMEOUT);
4183}
4184
4185static int bnxt_hwrm_queue_qportcfg(struct bnxt *bp)
4186{
4187 int rc = 0;
4188 struct hwrm_queue_qportcfg_input req = {0};
4189 struct hwrm_queue_qportcfg_output *resp = bp->hwrm_cmd_resp_addr;
4190 u8 i, *qptr;
4191
4192 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_QUEUE_QPORTCFG, -1, -1);
4193
4194 mutex_lock(&bp->hwrm_cmd_lock);
4195 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4196 if (rc)
4197 goto qportcfg_exit;
4198
4199 if (!resp->max_configurable_queues) {
4200 rc = -EINVAL;
4201 goto qportcfg_exit;
4202 }
4203 bp->max_tc = resp->max_configurable_queues;
4204 if (bp->max_tc > BNXT_MAX_QUEUE)
4205 bp->max_tc = BNXT_MAX_QUEUE;
4206
4207 qptr = &resp->queue_id0;
4208 for (i = 0; i < bp->max_tc; i++) {
4209 bp->q_info[i].queue_id = *qptr++;
4210 bp->q_info[i].queue_profile = *qptr++;
4211 }
4212
4213qportcfg_exit:
4214 mutex_unlock(&bp->hwrm_cmd_lock);
4215 return rc;
4216}
4217
4218static int bnxt_hwrm_ver_get(struct bnxt *bp)
4219{
4220 int rc;
4221 struct hwrm_ver_get_input req = {0};
4222 struct hwrm_ver_get_output *resp = bp->hwrm_cmd_resp_addr;
4223
Michael Chane6ef2692016-03-28 19:46:05 -04004224 bp->hwrm_max_req_len = HWRM_MAX_REQ_LEN;
Michael Chanc0c050c2015-10-22 16:01:17 -04004225 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VER_GET, -1, -1);
4226 req.hwrm_intf_maj = HWRM_VERSION_MAJOR;
4227 req.hwrm_intf_min = HWRM_VERSION_MINOR;
4228 req.hwrm_intf_upd = HWRM_VERSION_UPDATE;
4229 mutex_lock(&bp->hwrm_cmd_lock);
4230 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4231 if (rc)
4232 goto hwrm_ver_get_exit;
4233
4234 memcpy(&bp->ver_resp, resp, sizeof(struct hwrm_ver_get_output));
4235
Michael Chan11f15ed2016-04-05 14:08:55 -04004236 bp->hwrm_spec_code = resp->hwrm_intf_maj << 16 |
4237 resp->hwrm_intf_min << 8 | resp->hwrm_intf_upd;
Michael Chanc1935542015-12-27 18:19:28 -05004238 if (resp->hwrm_intf_maj < 1) {
4239 netdev_warn(bp->dev, "HWRM interface %d.%d.%d is older than 1.0.0.\n",
Michael Chanc0c050c2015-10-22 16:01:17 -04004240 resp->hwrm_intf_maj, resp->hwrm_intf_min,
Michael Chanc1935542015-12-27 18:19:28 -05004241 resp->hwrm_intf_upd);
4242 netdev_warn(bp->dev, "Please update firmware with HWRM interface 1.0.0 or newer.\n");
Michael Chanc0c050c2015-10-22 16:01:17 -04004243 }
Rob Swindell3ebf6f02016-02-26 04:00:06 -05004244 snprintf(bp->fw_ver_str, BC_HWRM_STR_LEN, "%d.%d.%d/%d.%d.%d",
Michael Chanc0c050c2015-10-22 16:01:17 -04004245 resp->hwrm_fw_maj, resp->hwrm_fw_min, resp->hwrm_fw_bld,
4246 resp->hwrm_intf_maj, resp->hwrm_intf_min, resp->hwrm_intf_upd);
4247
Michael Chanff4fe812016-02-26 04:00:04 -05004248 bp->hwrm_cmd_timeout = le16_to_cpu(resp->def_req_timeout);
4249 if (!bp->hwrm_cmd_timeout)
4250 bp->hwrm_cmd_timeout = DFLT_HWRM_CMD_TIMEOUT;
4251
Michael Chane6ef2692016-03-28 19:46:05 -04004252 if (resp->hwrm_intf_maj >= 1)
4253 bp->hwrm_max_req_len = le16_to_cpu(resp->max_req_win_len);
4254
Michael Chan659c8052016-06-13 02:25:33 -04004255 bp->chip_num = le16_to_cpu(resp->chip_num);
Prashant Sreedharan3e8060f2016-07-18 07:15:20 -04004256 if (bp->chip_num == CHIP_NUM_58700 && !resp->chip_rev &&
4257 !resp->chip_metal)
4258 bp->flags |= BNXT_FLAG_CHIP_NITRO_A0;
Michael Chan659c8052016-06-13 02:25:33 -04004259
Michael Chanc0c050c2015-10-22 16:01:17 -04004260hwrm_ver_get_exit:
4261 mutex_unlock(&bp->hwrm_cmd_lock);
4262 return rc;
4263}
4264
Michael Chan3bdf56c2016-03-07 15:38:45 -05004265static int bnxt_hwrm_port_qstats(struct bnxt *bp)
4266{
4267 int rc;
4268 struct bnxt_pf_info *pf = &bp->pf;
4269 struct hwrm_port_qstats_input req = {0};
4270
4271 if (!(bp->flags & BNXT_FLAG_PORT_STATS))
4272 return 0;
4273
4274 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_QSTATS, -1, -1);
4275 req.port_id = cpu_to_le16(pf->port_id);
4276 req.tx_stat_host_addr = cpu_to_le64(bp->hw_tx_port_stats_map);
4277 req.rx_stat_host_addr = cpu_to_le64(bp->hw_rx_port_stats_map);
4278 rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4279 return rc;
4280}
4281
Michael Chanc0c050c2015-10-22 16:01:17 -04004282static void bnxt_hwrm_free_tunnel_ports(struct bnxt *bp)
4283{
4284 if (bp->vxlan_port_cnt) {
4285 bnxt_hwrm_tunnel_dst_port_free(
4286 bp, TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_VXLAN);
4287 }
4288 bp->vxlan_port_cnt = 0;
4289 if (bp->nge_port_cnt) {
4290 bnxt_hwrm_tunnel_dst_port_free(
4291 bp, TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_GENEVE);
4292 }
4293 bp->nge_port_cnt = 0;
4294}
4295
4296static int bnxt_set_tpa(struct bnxt *bp, bool set_tpa)
4297{
4298 int rc, i;
4299 u32 tpa_flags = 0;
4300
4301 if (set_tpa)
4302 tpa_flags = bp->flags & BNXT_FLAG_TPA;
4303 for (i = 0; i < bp->nr_vnics; i++) {
4304 rc = bnxt_hwrm_vnic_set_tpa(bp, i, tpa_flags);
4305 if (rc) {
4306 netdev_err(bp->dev, "hwrm vnic set tpa failure rc for vnic %d: %x\n",
4307 rc, i);
4308 return rc;
4309 }
4310 }
4311 return 0;
4312}
4313
4314static void bnxt_hwrm_clear_vnic_rss(struct bnxt *bp)
4315{
4316 int i;
4317
4318 for (i = 0; i < bp->nr_vnics; i++)
4319 bnxt_hwrm_vnic_set_rss(bp, i, false);
4320}
4321
4322static void bnxt_hwrm_resource_free(struct bnxt *bp, bool close_path,
4323 bool irq_re_init)
4324{
4325 if (bp->vnic_info) {
4326 bnxt_hwrm_clear_vnic_filter(bp);
4327 /* clear all RSS setting before free vnic ctx */
4328 bnxt_hwrm_clear_vnic_rss(bp);
4329 bnxt_hwrm_vnic_ctx_free(bp);
4330 /* before free the vnic, undo the vnic tpa settings */
4331 if (bp->flags & BNXT_FLAG_TPA)
4332 bnxt_set_tpa(bp, false);
4333 bnxt_hwrm_vnic_free(bp);
4334 }
4335 bnxt_hwrm_ring_free(bp, close_path);
4336 bnxt_hwrm_ring_grp_free(bp);
4337 if (irq_re_init) {
4338 bnxt_hwrm_stat_ctx_free(bp);
4339 bnxt_hwrm_free_tunnel_ports(bp);
4340 }
4341}
4342
4343static int bnxt_setup_vnic(struct bnxt *bp, u16 vnic_id)
4344{
4345 int rc;
4346
4347 /* allocate context for vnic */
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04004348 rc = bnxt_hwrm_vnic_ctx_alloc(bp, vnic_id, 0);
Michael Chanc0c050c2015-10-22 16:01:17 -04004349 if (rc) {
4350 netdev_err(bp->dev, "hwrm vnic %d alloc failure rc: %x\n",
4351 vnic_id, rc);
4352 goto vnic_setup_err;
4353 }
4354 bp->rsscos_nr_ctxs++;
4355
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04004356 if (BNXT_CHIP_TYPE_NITRO_A0(bp)) {
4357 rc = bnxt_hwrm_vnic_ctx_alloc(bp, vnic_id, 1);
4358 if (rc) {
4359 netdev_err(bp->dev, "hwrm vnic %d cos ctx alloc failure rc: %x\n",
4360 vnic_id, rc);
4361 goto vnic_setup_err;
4362 }
4363 bp->rsscos_nr_ctxs++;
4364 }
4365
Michael Chanc0c050c2015-10-22 16:01:17 -04004366 /* configure default vnic, ring grp */
4367 rc = bnxt_hwrm_vnic_cfg(bp, vnic_id);
4368 if (rc) {
4369 netdev_err(bp->dev, "hwrm vnic %d cfg failure rc: %x\n",
4370 vnic_id, rc);
4371 goto vnic_setup_err;
4372 }
4373
4374 /* Enable RSS hashing on vnic */
4375 rc = bnxt_hwrm_vnic_set_rss(bp, vnic_id, true);
4376 if (rc) {
4377 netdev_err(bp->dev, "hwrm vnic %d set rss failure rc: %x\n",
4378 vnic_id, rc);
4379 goto vnic_setup_err;
4380 }
4381
4382 if (bp->flags & BNXT_FLAG_AGG_RINGS) {
4383 rc = bnxt_hwrm_vnic_set_hds(bp, vnic_id);
4384 if (rc) {
4385 netdev_err(bp->dev, "hwrm vnic %d set hds failure rc: %x\n",
4386 vnic_id, rc);
4387 }
4388 }
4389
4390vnic_setup_err:
4391 return rc;
4392}
4393
4394static int bnxt_alloc_rfs_vnics(struct bnxt *bp)
4395{
4396#ifdef CONFIG_RFS_ACCEL
4397 int i, rc = 0;
4398
4399 for (i = 0; i < bp->rx_nr_rings; i++) {
4400 u16 vnic_id = i + 1;
4401 u16 ring_id = i;
4402
4403 if (vnic_id >= bp->nr_vnics)
4404 break;
4405
4406 bp->vnic_info[vnic_id].flags |= BNXT_VNIC_RFS_FLAG;
Michael Chanb81a90d2016-01-02 23:45:01 -05004407 rc = bnxt_hwrm_vnic_alloc(bp, vnic_id, ring_id, 1);
Michael Chanc0c050c2015-10-22 16:01:17 -04004408 if (rc) {
4409 netdev_err(bp->dev, "hwrm vnic %d alloc failure rc: %x\n",
4410 vnic_id, rc);
4411 break;
4412 }
4413 rc = bnxt_setup_vnic(bp, vnic_id);
4414 if (rc)
4415 break;
4416 }
4417 return rc;
4418#else
4419 return 0;
4420#endif
4421}
4422
Michael Chan17c71ac2016-07-01 18:46:27 -04004423/* Allow PF and VF with default VLAN to be in promiscuous mode */
4424static bool bnxt_promisc_ok(struct bnxt *bp)
4425{
4426#ifdef CONFIG_BNXT_SRIOV
4427 if (BNXT_VF(bp) && !bp->vf.vlan)
4428 return false;
4429#endif
4430 return true;
4431}
4432
Michael Chanb664f002015-12-02 01:54:08 -05004433static int bnxt_cfg_rx_mode(struct bnxt *);
Michael Chan7d2837d2016-05-04 16:56:44 -04004434static bool bnxt_mc_list_updated(struct bnxt *, u32 *);
Michael Chanb664f002015-12-02 01:54:08 -05004435
Michael Chanc0c050c2015-10-22 16:01:17 -04004436static int bnxt_init_chip(struct bnxt *bp, bool irq_re_init)
4437{
Michael Chan7d2837d2016-05-04 16:56:44 -04004438 struct bnxt_vnic_info *vnic = &bp->vnic_info[0];
Michael Chanc0c050c2015-10-22 16:01:17 -04004439 int rc = 0;
Prashant Sreedharan76595192016-07-18 07:15:22 -04004440 unsigned int rx_nr_rings = bp->rx_nr_rings;
Michael Chanc0c050c2015-10-22 16:01:17 -04004441
4442 if (irq_re_init) {
4443 rc = bnxt_hwrm_stat_ctx_alloc(bp);
4444 if (rc) {
4445 netdev_err(bp->dev, "hwrm stat ctx alloc failure rc: %x\n",
4446 rc);
4447 goto err_out;
4448 }
4449 }
4450
4451 rc = bnxt_hwrm_ring_alloc(bp);
4452 if (rc) {
4453 netdev_err(bp->dev, "hwrm ring alloc failure rc: %x\n", rc);
4454 goto err_out;
4455 }
4456
4457 rc = bnxt_hwrm_ring_grp_alloc(bp);
4458 if (rc) {
4459 netdev_err(bp->dev, "hwrm_ring_grp alloc failure: %x\n", rc);
4460 goto err_out;
4461 }
4462
Prashant Sreedharan76595192016-07-18 07:15:22 -04004463 if (BNXT_CHIP_TYPE_NITRO_A0(bp))
4464 rx_nr_rings--;
4465
Michael Chanc0c050c2015-10-22 16:01:17 -04004466 /* default vnic 0 */
Prashant Sreedharan76595192016-07-18 07:15:22 -04004467 rc = bnxt_hwrm_vnic_alloc(bp, 0, 0, rx_nr_rings);
Michael Chanc0c050c2015-10-22 16:01:17 -04004468 if (rc) {
4469 netdev_err(bp->dev, "hwrm vnic alloc failure rc: %x\n", rc);
4470 goto err_out;
4471 }
4472
4473 rc = bnxt_setup_vnic(bp, 0);
4474 if (rc)
4475 goto err_out;
4476
4477 if (bp->flags & BNXT_FLAG_RFS) {
4478 rc = bnxt_alloc_rfs_vnics(bp);
4479 if (rc)
4480 goto err_out;
4481 }
4482
4483 if (bp->flags & BNXT_FLAG_TPA) {
4484 rc = bnxt_set_tpa(bp, true);
4485 if (rc)
4486 goto err_out;
4487 }
4488
4489 if (BNXT_VF(bp))
4490 bnxt_update_vf_mac(bp);
4491
4492 /* Filter for default vnic 0 */
4493 rc = bnxt_hwrm_set_vnic_filter(bp, 0, 0, bp->dev->dev_addr);
4494 if (rc) {
4495 netdev_err(bp->dev, "HWRM vnic filter failure rc: %x\n", rc);
4496 goto err_out;
4497 }
Michael Chan7d2837d2016-05-04 16:56:44 -04004498 vnic->uc_filter_count = 1;
Michael Chanc0c050c2015-10-22 16:01:17 -04004499
Michael Chan7d2837d2016-05-04 16:56:44 -04004500 vnic->rx_mask = CFA_L2_SET_RX_MASK_REQ_MASK_BCAST;
Michael Chanc0c050c2015-10-22 16:01:17 -04004501
Michael Chan17c71ac2016-07-01 18:46:27 -04004502 if ((bp->dev->flags & IFF_PROMISC) && bnxt_promisc_ok(bp))
Michael Chan7d2837d2016-05-04 16:56:44 -04004503 vnic->rx_mask |= CFA_L2_SET_RX_MASK_REQ_MASK_PROMISCUOUS;
4504
4505 if (bp->dev->flags & IFF_ALLMULTI) {
4506 vnic->rx_mask |= CFA_L2_SET_RX_MASK_REQ_MASK_ALL_MCAST;
4507 vnic->mc_list_count = 0;
4508 } else {
4509 u32 mask = 0;
4510
4511 bnxt_mc_list_updated(bp, &mask);
4512 vnic->rx_mask |= mask;
4513 }
Michael Chanc0c050c2015-10-22 16:01:17 -04004514
Michael Chanb664f002015-12-02 01:54:08 -05004515 rc = bnxt_cfg_rx_mode(bp);
4516 if (rc)
Michael Chanc0c050c2015-10-22 16:01:17 -04004517 goto err_out;
Michael Chanc0c050c2015-10-22 16:01:17 -04004518
4519 rc = bnxt_hwrm_set_coal(bp);
4520 if (rc)
4521 netdev_warn(bp->dev, "HWRM set coalescing failure rc: %x\n",
4522 rc);
4523
Michael Chancf6645f2016-06-13 02:25:28 -04004524 if (BNXT_VF(bp)) {
4525 bnxt_hwrm_func_qcfg(bp);
4526 netdev_update_features(bp->dev);
4527 }
4528
Michael Chanc0c050c2015-10-22 16:01:17 -04004529 return 0;
4530
4531err_out:
4532 bnxt_hwrm_resource_free(bp, 0, true);
4533
4534 return rc;
4535}
4536
4537static int bnxt_shutdown_nic(struct bnxt *bp, bool irq_re_init)
4538{
4539 bnxt_hwrm_resource_free(bp, 1, irq_re_init);
4540 return 0;
4541}
4542
4543static int bnxt_init_nic(struct bnxt *bp, bool irq_re_init)
4544{
4545 bnxt_init_rx_rings(bp);
4546 bnxt_init_tx_rings(bp);
4547 bnxt_init_ring_grps(bp, irq_re_init);
4548 bnxt_init_vnics(bp);
4549
4550 return bnxt_init_chip(bp, irq_re_init);
4551}
4552
4553static void bnxt_disable_int(struct bnxt *bp)
4554{
4555 int i;
4556
4557 if (!bp->bnapi)
4558 return;
4559
4560 for (i = 0; i < bp->cp_nr_rings; i++) {
4561 struct bnxt_napi *bnapi = bp->bnapi[i];
4562 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
4563
4564 BNXT_CP_DB(cpr->cp_doorbell, cpr->cp_raw_cons);
4565 }
4566}
4567
4568static void bnxt_enable_int(struct bnxt *bp)
4569{
4570 int i;
4571
4572 atomic_set(&bp->intr_sem, 0);
4573 for (i = 0; i < bp->cp_nr_rings; i++) {
4574 struct bnxt_napi *bnapi = bp->bnapi[i];
4575 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
4576
4577 BNXT_CP_DB_REARM(cpr->cp_doorbell, cpr->cp_raw_cons);
4578 }
4579}
4580
4581static int bnxt_set_real_num_queues(struct bnxt *bp)
4582{
4583 int rc;
4584 struct net_device *dev = bp->dev;
4585
4586 rc = netif_set_real_num_tx_queues(dev, bp->tx_nr_rings);
4587 if (rc)
4588 return rc;
4589
4590 rc = netif_set_real_num_rx_queues(dev, bp->rx_nr_rings);
4591 if (rc)
4592 return rc;
4593
4594#ifdef CONFIG_RFS_ACCEL
Michael Chan45019a12015-12-27 18:19:22 -05004595 if (bp->flags & BNXT_FLAG_RFS)
Michael Chanc0c050c2015-10-22 16:01:17 -04004596 dev->rx_cpu_rmap = alloc_irq_cpu_rmap(bp->rx_nr_rings);
Michael Chanc0c050c2015-10-22 16:01:17 -04004597#endif
4598
4599 return rc;
4600}
4601
Michael Chan6e6c5a52016-01-02 23:45:02 -05004602static int bnxt_trim_rings(struct bnxt *bp, int *rx, int *tx, int max,
4603 bool shared)
4604{
4605 int _rx = *rx, _tx = *tx;
4606
4607 if (shared) {
4608 *rx = min_t(int, _rx, max);
4609 *tx = min_t(int, _tx, max);
4610 } else {
4611 if (max < 2)
4612 return -ENOMEM;
4613
4614 while (_rx + _tx > max) {
4615 if (_rx > _tx && _rx > 1)
4616 _rx--;
4617 else if (_tx > 1)
4618 _tx--;
4619 }
4620 *rx = _rx;
4621 *tx = _tx;
4622 }
4623 return 0;
4624}
4625
Michael Chanc0c050c2015-10-22 16:01:17 -04004626static int bnxt_setup_msix(struct bnxt *bp)
4627{
4628 struct msix_entry *msix_ent;
4629 struct net_device *dev = bp->dev;
Michael Chan01657bc2016-01-02 23:45:03 -05004630 int i, total_vecs, rc = 0, min = 1;
Michael Chanc0c050c2015-10-22 16:01:17 -04004631 const int len = sizeof(bp->irq_tbl[0].name);
4632
4633 bp->flags &= ~BNXT_FLAG_USING_MSIX;
4634 total_vecs = bp->cp_nr_rings;
4635
4636 msix_ent = kcalloc(total_vecs, sizeof(struct msix_entry), GFP_KERNEL);
4637 if (!msix_ent)
4638 return -ENOMEM;
4639
4640 for (i = 0; i < total_vecs; i++) {
4641 msix_ent[i].entry = i;
4642 msix_ent[i].vector = 0;
4643 }
4644
Michael Chan01657bc2016-01-02 23:45:03 -05004645 if (!(bp->flags & BNXT_FLAG_SHARED_RINGS))
4646 min = 2;
4647
4648 total_vecs = pci_enable_msix_range(bp->pdev, msix_ent, min, total_vecs);
Michael Chanc0c050c2015-10-22 16:01:17 -04004649 if (total_vecs < 0) {
4650 rc = -ENODEV;
4651 goto msix_setup_exit;
4652 }
4653
4654 bp->irq_tbl = kcalloc(total_vecs, sizeof(struct bnxt_irq), GFP_KERNEL);
4655 if (bp->irq_tbl) {
4656 int tcs;
4657
4658 /* Trim rings based upon num of vectors allocated */
Michael Chan6e6c5a52016-01-02 23:45:02 -05004659 rc = bnxt_trim_rings(bp, &bp->rx_nr_rings, &bp->tx_nr_rings,
Michael Chan01657bc2016-01-02 23:45:03 -05004660 total_vecs, min == 1);
Michael Chan6e6c5a52016-01-02 23:45:02 -05004661 if (rc)
4662 goto msix_setup_exit;
4663
Michael Chanc0c050c2015-10-22 16:01:17 -04004664 bp->tx_nr_rings_per_tc = bp->tx_nr_rings;
4665 tcs = netdev_get_num_tc(dev);
4666 if (tcs > 1) {
4667 bp->tx_nr_rings_per_tc = bp->tx_nr_rings / tcs;
4668 if (bp->tx_nr_rings_per_tc == 0) {
4669 netdev_reset_tc(dev);
4670 bp->tx_nr_rings_per_tc = bp->tx_nr_rings;
4671 } else {
4672 int i, off, count;
4673
4674 bp->tx_nr_rings = bp->tx_nr_rings_per_tc * tcs;
4675 for (i = 0; i < tcs; i++) {
4676 count = bp->tx_nr_rings_per_tc;
4677 off = i * count;
4678 netdev_set_tc_queue(dev, i, count, off);
4679 }
4680 }
4681 }
Michael Chan01657bc2016-01-02 23:45:03 -05004682 bp->cp_nr_rings = total_vecs;
Michael Chanc0c050c2015-10-22 16:01:17 -04004683
4684 for (i = 0; i < bp->cp_nr_rings; i++) {
Michael Chan01657bc2016-01-02 23:45:03 -05004685 char *attr;
4686
Michael Chanc0c050c2015-10-22 16:01:17 -04004687 bp->irq_tbl[i].vector = msix_ent[i].vector;
Michael Chan01657bc2016-01-02 23:45:03 -05004688 if (bp->flags & BNXT_FLAG_SHARED_RINGS)
4689 attr = "TxRx";
4690 else if (i < bp->rx_nr_rings)
4691 attr = "rx";
4692 else
4693 attr = "tx";
4694
Michael Chanc0c050c2015-10-22 16:01:17 -04004695 snprintf(bp->irq_tbl[i].name, len,
Michael Chan01657bc2016-01-02 23:45:03 -05004696 "%s-%s-%d", dev->name, attr, i);
Michael Chanc0c050c2015-10-22 16:01:17 -04004697 bp->irq_tbl[i].handler = bnxt_msix;
4698 }
4699 rc = bnxt_set_real_num_queues(bp);
4700 if (rc)
4701 goto msix_setup_exit;
4702 } else {
4703 rc = -ENOMEM;
4704 goto msix_setup_exit;
4705 }
4706 bp->flags |= BNXT_FLAG_USING_MSIX;
4707 kfree(msix_ent);
4708 return 0;
4709
4710msix_setup_exit:
4711 netdev_err(bp->dev, "bnxt_setup_msix err: %x\n", rc);
4712 pci_disable_msix(bp->pdev);
4713 kfree(msix_ent);
4714 return rc;
4715}
4716
4717static int bnxt_setup_inta(struct bnxt *bp)
4718{
4719 int rc;
4720 const int len = sizeof(bp->irq_tbl[0].name);
4721
4722 if (netdev_get_num_tc(bp->dev))
4723 netdev_reset_tc(bp->dev);
4724
4725 bp->irq_tbl = kcalloc(1, sizeof(struct bnxt_irq), GFP_KERNEL);
4726 if (!bp->irq_tbl) {
4727 rc = -ENOMEM;
4728 return rc;
4729 }
4730 bp->rx_nr_rings = 1;
4731 bp->tx_nr_rings = 1;
4732 bp->cp_nr_rings = 1;
4733 bp->tx_nr_rings_per_tc = bp->tx_nr_rings;
Michael Chan01657bc2016-01-02 23:45:03 -05004734 bp->flags |= BNXT_FLAG_SHARED_RINGS;
Michael Chanc0c050c2015-10-22 16:01:17 -04004735 bp->irq_tbl[0].vector = bp->pdev->irq;
4736 snprintf(bp->irq_tbl[0].name, len,
4737 "%s-%s-%d", bp->dev->name, "TxRx", 0);
4738 bp->irq_tbl[0].handler = bnxt_inta;
4739 rc = bnxt_set_real_num_queues(bp);
4740 return rc;
4741}
4742
4743static int bnxt_setup_int_mode(struct bnxt *bp)
4744{
4745 int rc = 0;
4746
4747 if (bp->flags & BNXT_FLAG_MSIX_CAP)
4748 rc = bnxt_setup_msix(bp);
4749
Michael Chan1fa72e22016-04-25 02:30:49 -04004750 if (!(bp->flags & BNXT_FLAG_USING_MSIX) && BNXT_PF(bp)) {
Michael Chanc0c050c2015-10-22 16:01:17 -04004751 /* fallback to INTA */
4752 rc = bnxt_setup_inta(bp);
4753 }
4754 return rc;
4755}
4756
4757static void bnxt_free_irq(struct bnxt *bp)
4758{
4759 struct bnxt_irq *irq;
4760 int i;
4761
4762#ifdef CONFIG_RFS_ACCEL
4763 free_irq_cpu_rmap(bp->dev->rx_cpu_rmap);
4764 bp->dev->rx_cpu_rmap = NULL;
4765#endif
4766 if (!bp->irq_tbl)
4767 return;
4768
4769 for (i = 0; i < bp->cp_nr_rings; i++) {
4770 irq = &bp->irq_tbl[i];
4771 if (irq->requested)
4772 free_irq(irq->vector, bp->bnapi[i]);
4773 irq->requested = 0;
4774 }
4775 if (bp->flags & BNXT_FLAG_USING_MSIX)
4776 pci_disable_msix(bp->pdev);
4777 kfree(bp->irq_tbl);
4778 bp->irq_tbl = NULL;
4779}
4780
4781static int bnxt_request_irq(struct bnxt *bp)
4782{
Michael Chanb81a90d2016-01-02 23:45:01 -05004783 int i, j, rc = 0;
Michael Chanc0c050c2015-10-22 16:01:17 -04004784 unsigned long flags = 0;
4785#ifdef CONFIG_RFS_ACCEL
4786 struct cpu_rmap *rmap = bp->dev->rx_cpu_rmap;
4787#endif
4788
4789 if (!(bp->flags & BNXT_FLAG_USING_MSIX))
4790 flags = IRQF_SHARED;
4791
Michael Chanb81a90d2016-01-02 23:45:01 -05004792 for (i = 0, j = 0; i < bp->cp_nr_rings; i++) {
Michael Chanc0c050c2015-10-22 16:01:17 -04004793 struct bnxt_irq *irq = &bp->irq_tbl[i];
4794#ifdef CONFIG_RFS_ACCEL
Michael Chanb81a90d2016-01-02 23:45:01 -05004795 if (rmap && bp->bnapi[i]->rx_ring) {
Michael Chanc0c050c2015-10-22 16:01:17 -04004796 rc = irq_cpu_rmap_add(rmap, irq->vector);
4797 if (rc)
4798 netdev_warn(bp->dev, "failed adding irq rmap for ring %d\n",
Michael Chanb81a90d2016-01-02 23:45:01 -05004799 j);
4800 j++;
Michael Chanc0c050c2015-10-22 16:01:17 -04004801 }
4802#endif
4803 rc = request_irq(irq->vector, irq->handler, flags, irq->name,
4804 bp->bnapi[i]);
4805 if (rc)
4806 break;
4807
4808 irq->requested = 1;
4809 }
4810 return rc;
4811}
4812
4813static void bnxt_del_napi(struct bnxt *bp)
4814{
4815 int i;
4816
4817 if (!bp->bnapi)
4818 return;
4819
4820 for (i = 0; i < bp->cp_nr_rings; i++) {
4821 struct bnxt_napi *bnapi = bp->bnapi[i];
4822
4823 napi_hash_del(&bnapi->napi);
4824 netif_napi_del(&bnapi->napi);
4825 }
4826}
4827
4828static void bnxt_init_napi(struct bnxt *bp)
4829{
4830 int i;
Prashant Sreedharan10bbdaf2016-07-18 07:15:23 -04004831 unsigned int cp_nr_rings = bp->cp_nr_rings;
Michael Chanc0c050c2015-10-22 16:01:17 -04004832 struct bnxt_napi *bnapi;
4833
4834 if (bp->flags & BNXT_FLAG_USING_MSIX) {
Prashant Sreedharan10bbdaf2016-07-18 07:15:23 -04004835 if (BNXT_CHIP_TYPE_NITRO_A0(bp))
4836 cp_nr_rings--;
4837 for (i = 0; i < cp_nr_rings; i++) {
Michael Chanc0c050c2015-10-22 16:01:17 -04004838 bnapi = bp->bnapi[i];
4839 netif_napi_add(bp->dev, &bnapi->napi,
4840 bnxt_poll, 64);
Michael Chanc0c050c2015-10-22 16:01:17 -04004841 }
Prashant Sreedharan10bbdaf2016-07-18 07:15:23 -04004842 if (BNXT_CHIP_TYPE_NITRO_A0(bp)) {
4843 bnapi = bp->bnapi[cp_nr_rings];
4844 netif_napi_add(bp->dev, &bnapi->napi,
4845 bnxt_poll_nitroa0, 64);
4846 napi_hash_add(&bnapi->napi);
4847 }
Michael Chanc0c050c2015-10-22 16:01:17 -04004848 } else {
4849 bnapi = bp->bnapi[0];
4850 netif_napi_add(bp->dev, &bnapi->napi, bnxt_poll, 64);
Michael Chanc0c050c2015-10-22 16:01:17 -04004851 }
4852}
4853
4854static void bnxt_disable_napi(struct bnxt *bp)
4855{
4856 int i;
4857
4858 if (!bp->bnapi)
4859 return;
4860
4861 for (i = 0; i < bp->cp_nr_rings; i++) {
4862 napi_disable(&bp->bnapi[i]->napi);
4863 bnxt_disable_poll(bp->bnapi[i]);
4864 }
4865}
4866
4867static void bnxt_enable_napi(struct bnxt *bp)
4868{
4869 int i;
4870
4871 for (i = 0; i < bp->cp_nr_rings; i++) {
Michael Chanfa7e2812016-05-10 19:18:00 -04004872 bp->bnapi[i]->in_reset = false;
Michael Chanc0c050c2015-10-22 16:01:17 -04004873 bnxt_enable_poll(bp->bnapi[i]);
4874 napi_enable(&bp->bnapi[i]->napi);
4875 }
4876}
4877
4878static void bnxt_tx_disable(struct bnxt *bp)
4879{
4880 int i;
Michael Chanc0c050c2015-10-22 16:01:17 -04004881 struct bnxt_tx_ring_info *txr;
4882 struct netdev_queue *txq;
4883
Michael Chanb6ab4b02016-01-02 23:44:59 -05004884 if (bp->tx_ring) {
Michael Chanc0c050c2015-10-22 16:01:17 -04004885 for (i = 0; i < bp->tx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05004886 txr = &bp->tx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04004887 txq = netdev_get_tx_queue(bp->dev, i);
4888 __netif_tx_lock(txq, smp_processor_id());
4889 txr->dev_state = BNXT_DEV_STATE_CLOSING;
4890 __netif_tx_unlock(txq);
4891 }
4892 }
4893 /* Stop all TX queues */
4894 netif_tx_disable(bp->dev);
4895 netif_carrier_off(bp->dev);
4896}
4897
4898static void bnxt_tx_enable(struct bnxt *bp)
4899{
4900 int i;
Michael Chanc0c050c2015-10-22 16:01:17 -04004901 struct bnxt_tx_ring_info *txr;
4902 struct netdev_queue *txq;
4903
4904 for (i = 0; i < bp->tx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05004905 txr = &bp->tx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04004906 txq = netdev_get_tx_queue(bp->dev, i);
4907 txr->dev_state = 0;
4908 }
4909 netif_tx_wake_all_queues(bp->dev);
4910 if (bp->link_info.link_up)
4911 netif_carrier_on(bp->dev);
4912}
4913
4914static void bnxt_report_link(struct bnxt *bp)
4915{
4916 if (bp->link_info.link_up) {
4917 const char *duplex;
4918 const char *flow_ctrl;
4919 u16 speed;
4920
4921 netif_carrier_on(bp->dev);
4922 if (bp->link_info.duplex == BNXT_LINK_DUPLEX_FULL)
4923 duplex = "full";
4924 else
4925 duplex = "half";
4926 if (bp->link_info.pause == BNXT_LINK_PAUSE_BOTH)
4927 flow_ctrl = "ON - receive & transmit";
4928 else if (bp->link_info.pause == BNXT_LINK_PAUSE_TX)
4929 flow_ctrl = "ON - transmit";
4930 else if (bp->link_info.pause == BNXT_LINK_PAUSE_RX)
4931 flow_ctrl = "ON - receive";
4932 else
4933 flow_ctrl = "none";
4934 speed = bnxt_fw_to_ethtool_speed(bp->link_info.link_speed);
4935 netdev_info(bp->dev, "NIC Link is Up, %d Mbps %s duplex, Flow control: %s\n",
4936 speed, duplex, flow_ctrl);
Michael Chan170ce012016-04-05 14:08:57 -04004937 if (bp->flags & BNXT_FLAG_EEE_CAP)
4938 netdev_info(bp->dev, "EEE is %s\n",
4939 bp->eee.eee_active ? "active" :
4940 "not active");
Michael Chanc0c050c2015-10-22 16:01:17 -04004941 } else {
4942 netif_carrier_off(bp->dev);
4943 netdev_err(bp->dev, "NIC Link is Down\n");
4944 }
4945}
4946
Michael Chan170ce012016-04-05 14:08:57 -04004947static int bnxt_hwrm_phy_qcaps(struct bnxt *bp)
4948{
4949 int rc = 0;
4950 struct hwrm_port_phy_qcaps_input req = {0};
4951 struct hwrm_port_phy_qcaps_output *resp = bp->hwrm_cmd_resp_addr;
Michael Chan93ed8112016-06-13 02:25:37 -04004952 struct bnxt_link_info *link_info = &bp->link_info;
Michael Chan170ce012016-04-05 14:08:57 -04004953
4954 if (bp->hwrm_spec_code < 0x10201)
4955 return 0;
4956
4957 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_PHY_QCAPS, -1, -1);
4958
4959 mutex_lock(&bp->hwrm_cmd_lock);
4960 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4961 if (rc)
4962 goto hwrm_phy_qcaps_exit;
4963
4964 if (resp->eee_supported & PORT_PHY_QCAPS_RESP_EEE_SUPPORTED) {
4965 struct ethtool_eee *eee = &bp->eee;
4966 u16 fw_speeds = le16_to_cpu(resp->supported_speeds_eee_mode);
4967
4968 bp->flags |= BNXT_FLAG_EEE_CAP;
4969 eee->supported = _bnxt_fw_to_ethtool_adv_spds(fw_speeds, 0);
4970 bp->lpi_tmr_lo = le32_to_cpu(resp->tx_lpi_timer_low) &
4971 PORT_PHY_QCAPS_RESP_TX_LPI_TIMER_LOW_MASK;
4972 bp->lpi_tmr_hi = le32_to_cpu(resp->valid_tx_lpi_timer_high) &
4973 PORT_PHY_QCAPS_RESP_TX_LPI_TIMER_HIGH_MASK;
4974 }
Michael Chan93ed8112016-06-13 02:25:37 -04004975 link_info->support_auto_speeds =
4976 le16_to_cpu(resp->supported_speeds_auto_mode);
Michael Chan170ce012016-04-05 14:08:57 -04004977
4978hwrm_phy_qcaps_exit:
4979 mutex_unlock(&bp->hwrm_cmd_lock);
4980 return rc;
4981}
4982
Michael Chanc0c050c2015-10-22 16:01:17 -04004983static int bnxt_update_link(struct bnxt *bp, bool chng_link_state)
4984{
4985 int rc = 0;
4986 struct bnxt_link_info *link_info = &bp->link_info;
4987 struct hwrm_port_phy_qcfg_input req = {0};
4988 struct hwrm_port_phy_qcfg_output *resp = bp->hwrm_cmd_resp_addr;
4989 u8 link_up = link_info->link_up;
4990
4991 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_PHY_QCFG, -1, -1);
4992
4993 mutex_lock(&bp->hwrm_cmd_lock);
4994 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4995 if (rc) {
4996 mutex_unlock(&bp->hwrm_cmd_lock);
4997 return rc;
4998 }
4999
5000 memcpy(&link_info->phy_qcfg_resp, resp, sizeof(*resp));
5001 link_info->phy_link_status = resp->link;
5002 link_info->duplex = resp->duplex;
5003 link_info->pause = resp->pause;
5004 link_info->auto_mode = resp->auto_mode;
5005 link_info->auto_pause_setting = resp->auto_pause;
Michael Chan32773602016-03-07 15:38:42 -05005006 link_info->lp_pause = resp->link_partner_adv_pause;
Michael Chanc0c050c2015-10-22 16:01:17 -04005007 link_info->force_pause_setting = resp->force_pause;
Michael Chanc1935542015-12-27 18:19:28 -05005008 link_info->duplex_setting = resp->duplex;
Michael Chanc0c050c2015-10-22 16:01:17 -04005009 if (link_info->phy_link_status == BNXT_LINK_LINK)
5010 link_info->link_speed = le16_to_cpu(resp->link_speed);
5011 else
5012 link_info->link_speed = 0;
5013 link_info->force_link_speed = le16_to_cpu(resp->force_link_speed);
Michael Chanc0c050c2015-10-22 16:01:17 -04005014 link_info->support_speeds = le16_to_cpu(resp->support_speeds);
5015 link_info->auto_link_speeds = le16_to_cpu(resp->auto_link_speed_mask);
Michael Chan32773602016-03-07 15:38:42 -05005016 link_info->lp_auto_link_speeds =
5017 le16_to_cpu(resp->link_partner_adv_speeds);
Michael Chanc0c050c2015-10-22 16:01:17 -04005018 link_info->preemphasis = le32_to_cpu(resp->preemphasis);
5019 link_info->phy_ver[0] = resp->phy_maj;
5020 link_info->phy_ver[1] = resp->phy_min;
5021 link_info->phy_ver[2] = resp->phy_bld;
5022 link_info->media_type = resp->media_type;
Michael Chan03efbec2016-04-11 04:11:11 -04005023 link_info->phy_type = resp->phy_type;
Michael Chan11f15ed2016-04-05 14:08:55 -04005024 link_info->transceiver = resp->xcvr_pkg_type;
Michael Chan170ce012016-04-05 14:08:57 -04005025 link_info->phy_addr = resp->eee_config_phy_addr &
5026 PORT_PHY_QCFG_RESP_PHY_ADDR_MASK;
Ajit Khaparde42ee18f2016-05-15 03:04:44 -04005027 link_info->module_status = resp->module_status;
Michael Chanc0c050c2015-10-22 16:01:17 -04005028
Michael Chan170ce012016-04-05 14:08:57 -04005029 if (bp->flags & BNXT_FLAG_EEE_CAP) {
5030 struct ethtool_eee *eee = &bp->eee;
5031 u16 fw_speeds;
5032
5033 eee->eee_active = 0;
5034 if (resp->eee_config_phy_addr &
5035 PORT_PHY_QCFG_RESP_EEE_CONFIG_EEE_ACTIVE) {
5036 eee->eee_active = 1;
5037 fw_speeds = le16_to_cpu(
5038 resp->link_partner_adv_eee_link_speed_mask);
5039 eee->lp_advertised =
5040 _bnxt_fw_to_ethtool_adv_spds(fw_speeds, 0);
5041 }
5042
5043 /* Pull initial EEE config */
5044 if (!chng_link_state) {
5045 if (resp->eee_config_phy_addr &
5046 PORT_PHY_QCFG_RESP_EEE_CONFIG_EEE_ENABLED)
5047 eee->eee_enabled = 1;
5048
5049 fw_speeds = le16_to_cpu(resp->adv_eee_link_speed_mask);
5050 eee->advertised =
5051 _bnxt_fw_to_ethtool_adv_spds(fw_speeds, 0);
5052
5053 if (resp->eee_config_phy_addr &
5054 PORT_PHY_QCFG_RESP_EEE_CONFIG_EEE_TX_LPI) {
5055 __le32 tmr;
5056
5057 eee->tx_lpi_enabled = 1;
5058 tmr = resp->xcvr_identifier_type_tx_lpi_timer;
5059 eee->tx_lpi_timer = le32_to_cpu(tmr) &
5060 PORT_PHY_QCFG_RESP_TX_LPI_TIMER_MASK;
5061 }
5062 }
5063 }
Michael Chanc0c050c2015-10-22 16:01:17 -04005064 /* TODO: need to add more logic to report VF link */
5065 if (chng_link_state) {
5066 if (link_info->phy_link_status == BNXT_LINK_LINK)
5067 link_info->link_up = 1;
5068 else
5069 link_info->link_up = 0;
5070 if (link_up != link_info->link_up)
5071 bnxt_report_link(bp);
5072 } else {
5073 /* alwasy link down if not require to update link state */
5074 link_info->link_up = 0;
5075 }
5076 mutex_unlock(&bp->hwrm_cmd_lock);
5077 return 0;
5078}
5079
Michael Chan10289be2016-05-15 03:04:49 -04005080static void bnxt_get_port_module_status(struct bnxt *bp)
5081{
5082 struct bnxt_link_info *link_info = &bp->link_info;
5083 struct hwrm_port_phy_qcfg_output *resp = &link_info->phy_qcfg_resp;
5084 u8 module_status;
5085
5086 if (bnxt_update_link(bp, true))
5087 return;
5088
5089 module_status = link_info->module_status;
5090 switch (module_status) {
5091 case PORT_PHY_QCFG_RESP_MODULE_STATUS_DISABLETX:
5092 case PORT_PHY_QCFG_RESP_MODULE_STATUS_PWRDOWN:
5093 case PORT_PHY_QCFG_RESP_MODULE_STATUS_WARNINGMSG:
5094 netdev_warn(bp->dev, "Unqualified SFP+ module detected on port %d\n",
5095 bp->pf.port_id);
5096 if (bp->hwrm_spec_code >= 0x10201) {
5097 netdev_warn(bp->dev, "Module part number %s\n",
5098 resp->phy_vendor_partnumber);
5099 }
5100 if (module_status == PORT_PHY_QCFG_RESP_MODULE_STATUS_DISABLETX)
5101 netdev_warn(bp->dev, "TX is disabled\n");
5102 if (module_status == PORT_PHY_QCFG_RESP_MODULE_STATUS_PWRDOWN)
5103 netdev_warn(bp->dev, "SFP+ module is shutdown\n");
5104 }
5105}
5106
Michael Chanc0c050c2015-10-22 16:01:17 -04005107static void
5108bnxt_hwrm_set_pause_common(struct bnxt *bp, struct hwrm_port_phy_cfg_input *req)
5109{
5110 if (bp->link_info.autoneg & BNXT_AUTONEG_FLOW_CTRL) {
Michael Chanc9ee9512016-04-05 14:08:56 -04005111 if (bp->hwrm_spec_code >= 0x10201)
5112 req->auto_pause =
5113 PORT_PHY_CFG_REQ_AUTO_PAUSE_AUTONEG_PAUSE;
Michael Chanc0c050c2015-10-22 16:01:17 -04005114 if (bp->link_info.req_flow_ctrl & BNXT_LINK_PAUSE_RX)
5115 req->auto_pause |= PORT_PHY_CFG_REQ_AUTO_PAUSE_RX;
5116 if (bp->link_info.req_flow_ctrl & BNXT_LINK_PAUSE_TX)
Michael Chan49b5c7a2016-03-28 19:46:06 -04005117 req->auto_pause |= PORT_PHY_CFG_REQ_AUTO_PAUSE_TX;
Michael Chanc0c050c2015-10-22 16:01:17 -04005118 req->enables |=
5119 cpu_to_le32(PORT_PHY_CFG_REQ_ENABLES_AUTO_PAUSE);
5120 } else {
5121 if (bp->link_info.req_flow_ctrl & BNXT_LINK_PAUSE_RX)
5122 req->force_pause |= PORT_PHY_CFG_REQ_FORCE_PAUSE_RX;
5123 if (bp->link_info.req_flow_ctrl & BNXT_LINK_PAUSE_TX)
5124 req->force_pause |= PORT_PHY_CFG_REQ_FORCE_PAUSE_TX;
5125 req->enables |=
5126 cpu_to_le32(PORT_PHY_CFG_REQ_ENABLES_FORCE_PAUSE);
Michael Chanc9ee9512016-04-05 14:08:56 -04005127 if (bp->hwrm_spec_code >= 0x10201) {
5128 req->auto_pause = req->force_pause;
5129 req->enables |= cpu_to_le32(
5130 PORT_PHY_CFG_REQ_ENABLES_AUTO_PAUSE);
5131 }
Michael Chanc0c050c2015-10-22 16:01:17 -04005132 }
5133}
5134
5135static void bnxt_hwrm_set_link_common(struct bnxt *bp,
5136 struct hwrm_port_phy_cfg_input *req)
5137{
5138 u8 autoneg = bp->link_info.autoneg;
5139 u16 fw_link_speed = bp->link_info.req_link_speed;
5140 u32 advertising = bp->link_info.advertising;
5141
5142 if (autoneg & BNXT_AUTONEG_SPEED) {
5143 req->auto_mode |=
Michael Chan11f15ed2016-04-05 14:08:55 -04005144 PORT_PHY_CFG_REQ_AUTO_MODE_SPEED_MASK;
Michael Chanc0c050c2015-10-22 16:01:17 -04005145
5146 req->enables |= cpu_to_le32(
5147 PORT_PHY_CFG_REQ_ENABLES_AUTO_LINK_SPEED_MASK);
5148 req->auto_link_speed_mask = cpu_to_le16(advertising);
5149
5150 req->enables |= cpu_to_le32(PORT_PHY_CFG_REQ_ENABLES_AUTO_MODE);
5151 req->flags |=
5152 cpu_to_le32(PORT_PHY_CFG_REQ_FLAGS_RESTART_AUTONEG);
5153 } else {
5154 req->force_link_speed = cpu_to_le16(fw_link_speed);
5155 req->flags |= cpu_to_le32(PORT_PHY_CFG_REQ_FLAGS_FORCE);
5156 }
5157
Michael Chanc0c050c2015-10-22 16:01:17 -04005158 /* tell chimp that the setting takes effect immediately */
5159 req->flags |= cpu_to_le32(PORT_PHY_CFG_REQ_FLAGS_RESET_PHY);
5160}
5161
5162int bnxt_hwrm_set_pause(struct bnxt *bp)
5163{
5164 struct hwrm_port_phy_cfg_input req = {0};
5165 int rc;
5166
5167 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_PHY_CFG, -1, -1);
5168 bnxt_hwrm_set_pause_common(bp, &req);
5169
5170 if ((bp->link_info.autoneg & BNXT_AUTONEG_FLOW_CTRL) ||
5171 bp->link_info.force_link_chng)
5172 bnxt_hwrm_set_link_common(bp, &req);
5173
5174 mutex_lock(&bp->hwrm_cmd_lock);
5175 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
5176 if (!rc && !(bp->link_info.autoneg & BNXT_AUTONEG_FLOW_CTRL)) {
5177 /* since changing of pause setting doesn't trigger any link
5178 * change event, the driver needs to update the current pause
5179 * result upon successfully return of the phy_cfg command
5180 */
5181 bp->link_info.pause =
5182 bp->link_info.force_pause_setting = bp->link_info.req_flow_ctrl;
5183 bp->link_info.auto_pause_setting = 0;
5184 if (!bp->link_info.force_link_chng)
5185 bnxt_report_link(bp);
5186 }
5187 bp->link_info.force_link_chng = false;
5188 mutex_unlock(&bp->hwrm_cmd_lock);
5189 return rc;
5190}
5191
Michael Chan939f7f02016-04-05 14:08:58 -04005192static void bnxt_hwrm_set_eee(struct bnxt *bp,
5193 struct hwrm_port_phy_cfg_input *req)
5194{
5195 struct ethtool_eee *eee = &bp->eee;
5196
5197 if (eee->eee_enabled) {
5198 u16 eee_speeds;
5199 u32 flags = PORT_PHY_CFG_REQ_FLAGS_EEE_ENABLE;
5200
5201 if (eee->tx_lpi_enabled)
5202 flags |= PORT_PHY_CFG_REQ_FLAGS_EEE_TX_LPI_ENABLE;
5203 else
5204 flags |= PORT_PHY_CFG_REQ_FLAGS_EEE_TX_LPI_DISABLE;
5205
5206 req->flags |= cpu_to_le32(flags);
5207 eee_speeds = bnxt_get_fw_auto_link_speeds(eee->advertised);
5208 req->eee_link_speed_mask = cpu_to_le16(eee_speeds);
5209 req->tx_lpi_timer = cpu_to_le32(eee->tx_lpi_timer);
5210 } else {
5211 req->flags |= cpu_to_le32(PORT_PHY_CFG_REQ_FLAGS_EEE_DISABLE);
5212 }
5213}
5214
5215int bnxt_hwrm_set_link_setting(struct bnxt *bp, bool set_pause, bool set_eee)
Michael Chanc0c050c2015-10-22 16:01:17 -04005216{
5217 struct hwrm_port_phy_cfg_input req = {0};
5218
5219 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_PHY_CFG, -1, -1);
5220 if (set_pause)
5221 bnxt_hwrm_set_pause_common(bp, &req);
5222
5223 bnxt_hwrm_set_link_common(bp, &req);
Michael Chan939f7f02016-04-05 14:08:58 -04005224
5225 if (set_eee)
5226 bnxt_hwrm_set_eee(bp, &req);
Michael Chanc0c050c2015-10-22 16:01:17 -04005227 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
5228}
5229
Michael Chan33f7d552016-04-11 04:11:12 -04005230static int bnxt_hwrm_shutdown_link(struct bnxt *bp)
5231{
5232 struct hwrm_port_phy_cfg_input req = {0};
5233
Satish Baddipadige567b2ab2016-06-13 02:25:31 -04005234 if (!BNXT_SINGLE_PF(bp))
Michael Chan33f7d552016-04-11 04:11:12 -04005235 return 0;
5236
5237 if (pci_num_vf(bp->pdev))
5238 return 0;
5239
5240 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_PHY_CFG, -1, -1);
5241 req.flags = cpu_to_le32(PORT_PHY_CFG_REQ_FLAGS_FORCE_LINK_DOWN);
5242 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
5243}
5244
Michael Chan939f7f02016-04-05 14:08:58 -04005245static bool bnxt_eee_config_ok(struct bnxt *bp)
5246{
5247 struct ethtool_eee *eee = &bp->eee;
5248 struct bnxt_link_info *link_info = &bp->link_info;
5249
5250 if (!(bp->flags & BNXT_FLAG_EEE_CAP))
5251 return true;
5252
5253 if (eee->eee_enabled) {
5254 u32 advertising =
5255 _bnxt_fw_to_ethtool_adv_spds(link_info->advertising, 0);
5256
5257 if (!(link_info->autoneg & BNXT_AUTONEG_SPEED)) {
5258 eee->eee_enabled = 0;
5259 return false;
5260 }
5261 if (eee->advertised & ~advertising) {
5262 eee->advertised = advertising & eee->supported;
5263 return false;
5264 }
5265 }
5266 return true;
5267}
5268
Michael Chanc0c050c2015-10-22 16:01:17 -04005269static int bnxt_update_phy_setting(struct bnxt *bp)
5270{
5271 int rc;
5272 bool update_link = false;
5273 bool update_pause = false;
Michael Chan939f7f02016-04-05 14:08:58 -04005274 bool update_eee = false;
Michael Chanc0c050c2015-10-22 16:01:17 -04005275 struct bnxt_link_info *link_info = &bp->link_info;
5276
5277 rc = bnxt_update_link(bp, true);
5278 if (rc) {
5279 netdev_err(bp->dev, "failed to update link (rc: %x)\n",
5280 rc);
5281 return rc;
5282 }
5283 if ((link_info->autoneg & BNXT_AUTONEG_FLOW_CTRL) &&
Michael Chanc9ee9512016-04-05 14:08:56 -04005284 (link_info->auto_pause_setting & BNXT_LINK_PAUSE_BOTH) !=
5285 link_info->req_flow_ctrl)
Michael Chanc0c050c2015-10-22 16:01:17 -04005286 update_pause = true;
5287 if (!(link_info->autoneg & BNXT_AUTONEG_FLOW_CTRL) &&
5288 link_info->force_pause_setting != link_info->req_flow_ctrl)
5289 update_pause = true;
Michael Chanc0c050c2015-10-22 16:01:17 -04005290 if (!(link_info->autoneg & BNXT_AUTONEG_SPEED)) {
5291 if (BNXT_AUTO_MODE(link_info->auto_mode))
5292 update_link = true;
5293 if (link_info->req_link_speed != link_info->force_link_speed)
5294 update_link = true;
Michael Chande730182016-02-19 19:43:20 -05005295 if (link_info->req_duplex != link_info->duplex_setting)
5296 update_link = true;
Michael Chanc0c050c2015-10-22 16:01:17 -04005297 } else {
5298 if (link_info->auto_mode == BNXT_LINK_AUTO_NONE)
5299 update_link = true;
5300 if (link_info->advertising != link_info->auto_link_speeds)
5301 update_link = true;
Michael Chanc0c050c2015-10-22 16:01:17 -04005302 }
5303
Michael Chan939f7f02016-04-05 14:08:58 -04005304 if (!bnxt_eee_config_ok(bp))
5305 update_eee = true;
5306
Michael Chanc0c050c2015-10-22 16:01:17 -04005307 if (update_link)
Michael Chan939f7f02016-04-05 14:08:58 -04005308 rc = bnxt_hwrm_set_link_setting(bp, update_pause, update_eee);
Michael Chanc0c050c2015-10-22 16:01:17 -04005309 else if (update_pause)
5310 rc = bnxt_hwrm_set_pause(bp);
5311 if (rc) {
5312 netdev_err(bp->dev, "failed to update phy setting (rc: %x)\n",
5313 rc);
5314 return rc;
5315 }
5316
5317 return rc;
5318}
5319
Jeffrey Huang11809492015-11-05 16:25:49 -05005320/* Common routine to pre-map certain register block to different GRC window.
5321 * A PF has 16 4K windows and a VF has 4 4K windows. However, only 15 windows
5322 * in PF and 3 windows in VF that can be customized to map in different
5323 * register blocks.
5324 */
5325static void bnxt_preset_reg_win(struct bnxt *bp)
5326{
5327 if (BNXT_PF(bp)) {
5328 /* CAG registers map to GRC window #4 */
5329 writel(BNXT_CAG_REG_BASE,
5330 bp->bar0 + BNXT_GRCPF_REG_WINDOW_BASE_OUT + 12);
5331 }
5332}
5333
Michael Chanc0c050c2015-10-22 16:01:17 -04005334static int __bnxt_open_nic(struct bnxt *bp, bool irq_re_init, bool link_re_init)
5335{
5336 int rc = 0;
5337
Jeffrey Huang11809492015-11-05 16:25:49 -05005338 bnxt_preset_reg_win(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04005339 netif_carrier_off(bp->dev);
5340 if (irq_re_init) {
5341 rc = bnxt_setup_int_mode(bp);
5342 if (rc) {
5343 netdev_err(bp->dev, "bnxt_setup_int_mode err: %x\n",
5344 rc);
5345 return rc;
5346 }
5347 }
5348 if ((bp->flags & BNXT_FLAG_RFS) &&
5349 !(bp->flags & BNXT_FLAG_USING_MSIX)) {
5350 /* disable RFS if falling back to INTA */
5351 bp->dev->hw_features &= ~NETIF_F_NTUPLE;
5352 bp->flags &= ~BNXT_FLAG_RFS;
5353 }
5354
5355 rc = bnxt_alloc_mem(bp, irq_re_init);
5356 if (rc) {
5357 netdev_err(bp->dev, "bnxt_alloc_mem err: %x\n", rc);
5358 goto open_err_free_mem;
5359 }
5360
5361 if (irq_re_init) {
5362 bnxt_init_napi(bp);
5363 rc = bnxt_request_irq(bp);
5364 if (rc) {
5365 netdev_err(bp->dev, "bnxt_request_irq err: %x\n", rc);
5366 goto open_err;
5367 }
5368 }
5369
5370 bnxt_enable_napi(bp);
5371
5372 rc = bnxt_init_nic(bp, irq_re_init);
5373 if (rc) {
5374 netdev_err(bp->dev, "bnxt_init_nic err: %x\n", rc);
5375 goto open_err;
5376 }
5377
5378 if (link_re_init) {
5379 rc = bnxt_update_phy_setting(bp);
5380 if (rc)
Michael Chanba41d462016-02-19 19:43:21 -05005381 netdev_warn(bp->dev, "failed to update phy settings\n");
Michael Chanc0c050c2015-10-22 16:01:17 -04005382 }
5383
Alexander Duyck7cdd5fc2016-06-16 12:21:36 -07005384 if (irq_re_init)
Alexander Duyckad51b8e2016-06-16 12:21:19 -07005385 udp_tunnel_get_rx_info(bp->dev);
Michael Chanc0c050c2015-10-22 16:01:17 -04005386
Michael Chancaefe522015-12-09 19:35:42 -05005387 set_bit(BNXT_STATE_OPEN, &bp->state);
Michael Chanc0c050c2015-10-22 16:01:17 -04005388 bnxt_enable_int(bp);
5389 /* Enable TX queues */
5390 bnxt_tx_enable(bp);
5391 mod_timer(&bp->timer, jiffies + bp->current_interval);
Michael Chan10289be2016-05-15 03:04:49 -04005392 /* Poll link status and check for SFP+ module status */
5393 bnxt_get_port_module_status(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04005394
5395 return 0;
5396
5397open_err:
5398 bnxt_disable_napi(bp);
5399 bnxt_del_napi(bp);
5400
5401open_err_free_mem:
5402 bnxt_free_skbs(bp);
5403 bnxt_free_irq(bp);
5404 bnxt_free_mem(bp, true);
5405 return rc;
5406}
5407
5408/* rtnl_lock held */
5409int bnxt_open_nic(struct bnxt *bp, bool irq_re_init, bool link_re_init)
5410{
5411 int rc = 0;
5412
5413 rc = __bnxt_open_nic(bp, irq_re_init, link_re_init);
5414 if (rc) {
5415 netdev_err(bp->dev, "nic open fail (rc: %x)\n", rc);
5416 dev_close(bp->dev);
5417 }
5418 return rc;
5419}
5420
5421static int bnxt_open(struct net_device *dev)
5422{
5423 struct bnxt *bp = netdev_priv(dev);
5424 int rc = 0;
5425
Michael Chan2a5bedf2016-07-01 18:46:21 -04005426 if (!test_bit(BNXT_STATE_FN_RST_DONE, &bp->state)) {
5427 rc = bnxt_hwrm_func_reset(bp);
5428 if (rc) {
5429 netdev_err(bp->dev, "hwrm chip reset failure rc: %x\n",
5430 rc);
5431 rc = -EBUSY;
5432 return rc;
5433 }
5434 /* Do func_reset during the 1st PF open only to prevent killing
5435 * the VFs when the PF is brought down and up.
5436 */
5437 if (BNXT_PF(bp))
5438 set_bit(BNXT_STATE_FN_RST_DONE, &bp->state);
Michael Chanc0c050c2015-10-22 16:01:17 -04005439 }
5440 return __bnxt_open_nic(bp, true, true);
5441}
5442
5443static void bnxt_disable_int_sync(struct bnxt *bp)
5444{
5445 int i;
5446
5447 atomic_inc(&bp->intr_sem);
5448 if (!netif_running(bp->dev))
5449 return;
5450
5451 bnxt_disable_int(bp);
5452 for (i = 0; i < bp->cp_nr_rings; i++)
5453 synchronize_irq(bp->irq_tbl[i].vector);
5454}
5455
5456int bnxt_close_nic(struct bnxt *bp, bool irq_re_init, bool link_re_init)
5457{
5458 int rc = 0;
5459
5460#ifdef CONFIG_BNXT_SRIOV
5461 if (bp->sriov_cfg) {
5462 rc = wait_event_interruptible_timeout(bp->sriov_cfg_wait,
5463 !bp->sriov_cfg,
5464 BNXT_SRIOV_CFG_WAIT_TMO);
5465 if (rc)
5466 netdev_warn(bp->dev, "timeout waiting for SRIOV config operation to complete!\n");
5467 }
5468#endif
5469 /* Change device state to avoid TX queue wake up's */
5470 bnxt_tx_disable(bp);
5471
Michael Chancaefe522015-12-09 19:35:42 -05005472 clear_bit(BNXT_STATE_OPEN, &bp->state);
Michael Chan4cebdce2015-12-09 19:35:43 -05005473 smp_mb__after_atomic();
5474 while (test_bit(BNXT_STATE_IN_SP_TASK, &bp->state))
5475 msleep(20);
Michael Chanc0c050c2015-10-22 16:01:17 -04005476
5477 /* Flush rings before disabling interrupts */
5478 bnxt_shutdown_nic(bp, irq_re_init);
5479
5480 /* TODO CHIMP_FW: Link/PHY related cleanup if (link_re_init) */
5481
5482 bnxt_disable_napi(bp);
5483 bnxt_disable_int_sync(bp);
5484 del_timer_sync(&bp->timer);
5485 bnxt_free_skbs(bp);
5486
5487 if (irq_re_init) {
5488 bnxt_free_irq(bp);
5489 bnxt_del_napi(bp);
5490 }
5491 bnxt_free_mem(bp, irq_re_init);
5492 return rc;
5493}
5494
5495static int bnxt_close(struct net_device *dev)
5496{
5497 struct bnxt *bp = netdev_priv(dev);
5498
5499 bnxt_close_nic(bp, true, true);
Michael Chan33f7d552016-04-11 04:11:12 -04005500 bnxt_hwrm_shutdown_link(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04005501 return 0;
5502}
5503
5504/* rtnl_lock held */
5505static int bnxt_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
5506{
5507 switch (cmd) {
5508 case SIOCGMIIPHY:
5509 /* fallthru */
5510 case SIOCGMIIREG: {
5511 if (!netif_running(dev))
5512 return -EAGAIN;
5513
5514 return 0;
5515 }
5516
5517 case SIOCSMIIREG:
5518 if (!netif_running(dev))
5519 return -EAGAIN;
5520
5521 return 0;
5522
5523 default:
5524 /* do nothing */
5525 break;
5526 }
5527 return -EOPNOTSUPP;
5528}
5529
5530static struct rtnl_link_stats64 *
5531bnxt_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
5532{
5533 u32 i;
5534 struct bnxt *bp = netdev_priv(dev);
5535
5536 memset(stats, 0, sizeof(struct rtnl_link_stats64));
5537
5538 if (!bp->bnapi)
5539 return stats;
5540
5541 /* TODO check if we need to synchronize with bnxt_close path */
5542 for (i = 0; i < bp->cp_nr_rings; i++) {
5543 struct bnxt_napi *bnapi = bp->bnapi[i];
5544 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
5545 struct ctx_hw_stats *hw_stats = cpr->hw_stats;
5546
5547 stats->rx_packets += le64_to_cpu(hw_stats->rx_ucast_pkts);
5548 stats->rx_packets += le64_to_cpu(hw_stats->rx_mcast_pkts);
5549 stats->rx_packets += le64_to_cpu(hw_stats->rx_bcast_pkts);
5550
5551 stats->tx_packets += le64_to_cpu(hw_stats->tx_ucast_pkts);
5552 stats->tx_packets += le64_to_cpu(hw_stats->tx_mcast_pkts);
5553 stats->tx_packets += le64_to_cpu(hw_stats->tx_bcast_pkts);
5554
5555 stats->rx_bytes += le64_to_cpu(hw_stats->rx_ucast_bytes);
5556 stats->rx_bytes += le64_to_cpu(hw_stats->rx_mcast_bytes);
5557 stats->rx_bytes += le64_to_cpu(hw_stats->rx_bcast_bytes);
5558
5559 stats->tx_bytes += le64_to_cpu(hw_stats->tx_ucast_bytes);
5560 stats->tx_bytes += le64_to_cpu(hw_stats->tx_mcast_bytes);
5561 stats->tx_bytes += le64_to_cpu(hw_stats->tx_bcast_bytes);
5562
5563 stats->rx_missed_errors +=
5564 le64_to_cpu(hw_stats->rx_discard_pkts);
5565
5566 stats->multicast += le64_to_cpu(hw_stats->rx_mcast_pkts);
5567
Michael Chanc0c050c2015-10-22 16:01:17 -04005568 stats->tx_dropped += le64_to_cpu(hw_stats->tx_drop_pkts);
5569 }
5570
Michael Chan9947f832016-03-07 15:38:46 -05005571 if (bp->flags & BNXT_FLAG_PORT_STATS) {
5572 struct rx_port_stats *rx = bp->hw_rx_port_stats;
5573 struct tx_port_stats *tx = bp->hw_tx_port_stats;
5574
5575 stats->rx_crc_errors = le64_to_cpu(rx->rx_fcs_err_frames);
5576 stats->rx_frame_errors = le64_to_cpu(rx->rx_align_err_frames);
5577 stats->rx_length_errors = le64_to_cpu(rx->rx_undrsz_frames) +
5578 le64_to_cpu(rx->rx_ovrsz_frames) +
5579 le64_to_cpu(rx->rx_runt_frames);
5580 stats->rx_errors = le64_to_cpu(rx->rx_false_carrier_frames) +
5581 le64_to_cpu(rx->rx_jbr_frames);
5582 stats->collisions = le64_to_cpu(tx->tx_total_collisions);
5583 stats->tx_fifo_errors = le64_to_cpu(tx->tx_fifo_underruns);
5584 stats->tx_errors = le64_to_cpu(tx->tx_err);
5585 }
5586
Michael Chanc0c050c2015-10-22 16:01:17 -04005587 return stats;
5588}
5589
5590static bool bnxt_mc_list_updated(struct bnxt *bp, u32 *rx_mask)
5591{
5592 struct net_device *dev = bp->dev;
5593 struct bnxt_vnic_info *vnic = &bp->vnic_info[0];
5594 struct netdev_hw_addr *ha;
5595 u8 *haddr;
5596 int mc_count = 0;
5597 bool update = false;
5598 int off = 0;
5599
5600 netdev_for_each_mc_addr(ha, dev) {
5601 if (mc_count >= BNXT_MAX_MC_ADDRS) {
5602 *rx_mask |= CFA_L2_SET_RX_MASK_REQ_MASK_ALL_MCAST;
5603 vnic->mc_list_count = 0;
5604 return false;
5605 }
5606 haddr = ha->addr;
5607 if (!ether_addr_equal(haddr, vnic->mc_list + off)) {
5608 memcpy(vnic->mc_list + off, haddr, ETH_ALEN);
5609 update = true;
5610 }
5611 off += ETH_ALEN;
5612 mc_count++;
5613 }
5614 if (mc_count)
5615 *rx_mask |= CFA_L2_SET_RX_MASK_REQ_MASK_MCAST;
5616
5617 if (mc_count != vnic->mc_list_count) {
5618 vnic->mc_list_count = mc_count;
5619 update = true;
5620 }
5621 return update;
5622}
5623
5624static bool bnxt_uc_list_updated(struct bnxt *bp)
5625{
5626 struct net_device *dev = bp->dev;
5627 struct bnxt_vnic_info *vnic = &bp->vnic_info[0];
5628 struct netdev_hw_addr *ha;
5629 int off = 0;
5630
5631 if (netdev_uc_count(dev) != (vnic->uc_filter_count - 1))
5632 return true;
5633
5634 netdev_for_each_uc_addr(ha, dev) {
5635 if (!ether_addr_equal(ha->addr, vnic->uc_list + off))
5636 return true;
5637
5638 off += ETH_ALEN;
5639 }
5640 return false;
5641}
5642
5643static void bnxt_set_rx_mode(struct net_device *dev)
5644{
5645 struct bnxt *bp = netdev_priv(dev);
5646 struct bnxt_vnic_info *vnic = &bp->vnic_info[0];
5647 u32 mask = vnic->rx_mask;
5648 bool mc_update = false;
5649 bool uc_update;
5650
5651 if (!netif_running(dev))
5652 return;
5653
5654 mask &= ~(CFA_L2_SET_RX_MASK_REQ_MASK_PROMISCUOUS |
5655 CFA_L2_SET_RX_MASK_REQ_MASK_MCAST |
5656 CFA_L2_SET_RX_MASK_REQ_MASK_ALL_MCAST);
5657
Michael Chan17c71ac2016-07-01 18:46:27 -04005658 if ((dev->flags & IFF_PROMISC) && bnxt_promisc_ok(bp))
Michael Chanc0c050c2015-10-22 16:01:17 -04005659 mask |= CFA_L2_SET_RX_MASK_REQ_MASK_PROMISCUOUS;
5660
5661 uc_update = bnxt_uc_list_updated(bp);
5662
5663 if (dev->flags & IFF_ALLMULTI) {
5664 mask |= CFA_L2_SET_RX_MASK_REQ_MASK_ALL_MCAST;
5665 vnic->mc_list_count = 0;
5666 } else {
5667 mc_update = bnxt_mc_list_updated(bp, &mask);
5668 }
5669
5670 if (mask != vnic->rx_mask || uc_update || mc_update) {
5671 vnic->rx_mask = mask;
5672
5673 set_bit(BNXT_RX_MASK_SP_EVENT, &bp->sp_event);
5674 schedule_work(&bp->sp_task);
5675 }
5676}
5677
Michael Chanb664f002015-12-02 01:54:08 -05005678static int bnxt_cfg_rx_mode(struct bnxt *bp)
Michael Chanc0c050c2015-10-22 16:01:17 -04005679{
5680 struct net_device *dev = bp->dev;
5681 struct bnxt_vnic_info *vnic = &bp->vnic_info[0];
5682 struct netdev_hw_addr *ha;
5683 int i, off = 0, rc;
5684 bool uc_update;
5685
5686 netif_addr_lock_bh(dev);
5687 uc_update = bnxt_uc_list_updated(bp);
5688 netif_addr_unlock_bh(dev);
5689
5690 if (!uc_update)
5691 goto skip_uc;
5692
5693 mutex_lock(&bp->hwrm_cmd_lock);
5694 for (i = 1; i < vnic->uc_filter_count; i++) {
5695 struct hwrm_cfa_l2_filter_free_input req = {0};
5696
5697 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_CFA_L2_FILTER_FREE, -1,
5698 -1);
5699
5700 req.l2_filter_id = vnic->fw_l2_filter_id[i];
5701
5702 rc = _hwrm_send_message(bp, &req, sizeof(req),
5703 HWRM_CMD_TIMEOUT);
5704 }
5705 mutex_unlock(&bp->hwrm_cmd_lock);
5706
5707 vnic->uc_filter_count = 1;
5708
5709 netif_addr_lock_bh(dev);
5710 if (netdev_uc_count(dev) > (BNXT_MAX_UC_ADDRS - 1)) {
5711 vnic->rx_mask |= CFA_L2_SET_RX_MASK_REQ_MASK_PROMISCUOUS;
5712 } else {
5713 netdev_for_each_uc_addr(ha, dev) {
5714 memcpy(vnic->uc_list + off, ha->addr, ETH_ALEN);
5715 off += ETH_ALEN;
5716 vnic->uc_filter_count++;
5717 }
5718 }
5719 netif_addr_unlock_bh(dev);
5720
5721 for (i = 1, off = 0; i < vnic->uc_filter_count; i++, off += ETH_ALEN) {
5722 rc = bnxt_hwrm_set_vnic_filter(bp, 0, i, vnic->uc_list + off);
5723 if (rc) {
5724 netdev_err(bp->dev, "HWRM vnic filter failure rc: %x\n",
5725 rc);
5726 vnic->uc_filter_count = i;
Michael Chanb664f002015-12-02 01:54:08 -05005727 return rc;
Michael Chanc0c050c2015-10-22 16:01:17 -04005728 }
5729 }
5730
5731skip_uc:
5732 rc = bnxt_hwrm_cfa_l2_set_rx_mask(bp, 0);
5733 if (rc)
5734 netdev_err(bp->dev, "HWRM cfa l2 rx mask failure rc: %x\n",
5735 rc);
Michael Chanb664f002015-12-02 01:54:08 -05005736
5737 return rc;
Michael Chanc0c050c2015-10-22 16:01:17 -04005738}
5739
Michael Chan2bcfa6f2015-12-27 18:19:24 -05005740static bool bnxt_rfs_capable(struct bnxt *bp)
5741{
5742#ifdef CONFIG_RFS_ACCEL
5743 struct bnxt_pf_info *pf = &bp->pf;
5744 int vnics;
5745
5746 if (BNXT_VF(bp) || !(bp->flags & BNXT_FLAG_MSIX_CAP))
5747 return false;
5748
5749 vnics = 1 + bp->rx_nr_rings;
5750 if (vnics > pf->max_rsscos_ctxs || vnics > pf->max_vnics)
5751 return false;
5752
5753 return true;
5754#else
5755 return false;
5756#endif
5757}
5758
Michael Chanc0c050c2015-10-22 16:01:17 -04005759static netdev_features_t bnxt_fix_features(struct net_device *dev,
5760 netdev_features_t features)
5761{
Michael Chan2bcfa6f2015-12-27 18:19:24 -05005762 struct bnxt *bp = netdev_priv(dev);
5763
5764 if (!bnxt_rfs_capable(bp))
5765 features &= ~NETIF_F_NTUPLE;
Michael Chan5a9f6b22016-06-06 02:37:15 -04005766
5767 /* Both CTAG and STAG VLAN accelaration on the RX side have to be
5768 * turned on or off together.
5769 */
5770 if ((features & (NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_STAG_RX)) !=
5771 (NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_STAG_RX)) {
5772 if (dev->features & NETIF_F_HW_VLAN_CTAG_RX)
5773 features &= ~(NETIF_F_HW_VLAN_CTAG_RX |
5774 NETIF_F_HW_VLAN_STAG_RX);
5775 else
5776 features |= NETIF_F_HW_VLAN_CTAG_RX |
5777 NETIF_F_HW_VLAN_STAG_RX;
5778 }
Michael Chancf6645f2016-06-13 02:25:28 -04005779#ifdef CONFIG_BNXT_SRIOV
5780 if (BNXT_VF(bp)) {
5781 if (bp->vf.vlan) {
5782 features &= ~(NETIF_F_HW_VLAN_CTAG_RX |
5783 NETIF_F_HW_VLAN_STAG_RX);
5784 }
5785 }
5786#endif
Michael Chanc0c050c2015-10-22 16:01:17 -04005787 return features;
5788}
5789
5790static int bnxt_set_features(struct net_device *dev, netdev_features_t features)
5791{
5792 struct bnxt *bp = netdev_priv(dev);
5793 u32 flags = bp->flags;
5794 u32 changes;
5795 int rc = 0;
5796 bool re_init = false;
5797 bool update_tpa = false;
5798
5799 flags &= ~BNXT_FLAG_ALL_CONFIG_FEATS;
Prashant Sreedharan3e8060f2016-07-18 07:15:20 -04005800 if ((features & NETIF_F_GRO) && !BNXT_CHIP_TYPE_NITRO_A0(bp))
Michael Chanc0c050c2015-10-22 16:01:17 -04005801 flags |= BNXT_FLAG_GRO;
5802 if (features & NETIF_F_LRO)
5803 flags |= BNXT_FLAG_LRO;
5804
5805 if (features & NETIF_F_HW_VLAN_CTAG_RX)
5806 flags |= BNXT_FLAG_STRIP_VLAN;
5807
5808 if (features & NETIF_F_NTUPLE)
5809 flags |= BNXT_FLAG_RFS;
5810
5811 changes = flags ^ bp->flags;
5812 if (changes & BNXT_FLAG_TPA) {
5813 update_tpa = true;
5814 if ((bp->flags & BNXT_FLAG_TPA) == 0 ||
5815 (flags & BNXT_FLAG_TPA) == 0)
5816 re_init = true;
5817 }
5818
5819 if (changes & ~BNXT_FLAG_TPA)
5820 re_init = true;
5821
5822 if (flags != bp->flags) {
5823 u32 old_flags = bp->flags;
5824
5825 bp->flags = flags;
5826
Michael Chan2bcfa6f2015-12-27 18:19:24 -05005827 if (!test_bit(BNXT_STATE_OPEN, &bp->state)) {
Michael Chanc0c050c2015-10-22 16:01:17 -04005828 if (update_tpa)
5829 bnxt_set_ring_params(bp);
5830 return rc;
5831 }
5832
5833 if (re_init) {
5834 bnxt_close_nic(bp, false, false);
5835 if (update_tpa)
5836 bnxt_set_ring_params(bp);
5837
5838 return bnxt_open_nic(bp, false, false);
5839 }
5840 if (update_tpa) {
5841 rc = bnxt_set_tpa(bp,
5842 (flags & BNXT_FLAG_TPA) ?
5843 true : false);
5844 if (rc)
5845 bp->flags = old_flags;
5846 }
5847 }
5848 return rc;
5849}
5850
Michael Chan9f554592016-01-02 23:44:58 -05005851static void bnxt_dump_tx_sw_state(struct bnxt_napi *bnapi)
5852{
Michael Chanb6ab4b02016-01-02 23:44:59 -05005853 struct bnxt_tx_ring_info *txr = bnapi->tx_ring;
Michael Chan9f554592016-01-02 23:44:58 -05005854 int i = bnapi->index;
5855
Michael Chan3b2b7d92016-01-02 23:45:00 -05005856 if (!txr)
5857 return;
5858
Michael Chan9f554592016-01-02 23:44:58 -05005859 netdev_info(bnapi->bp->dev, "[%d]: tx{fw_ring: %d prod: %x cons: %x}\n",
5860 i, txr->tx_ring_struct.fw_ring_id, txr->tx_prod,
5861 txr->tx_cons);
5862}
5863
5864static void bnxt_dump_rx_sw_state(struct bnxt_napi *bnapi)
5865{
Michael Chanb6ab4b02016-01-02 23:44:59 -05005866 struct bnxt_rx_ring_info *rxr = bnapi->rx_ring;
Michael Chan9f554592016-01-02 23:44:58 -05005867 int i = bnapi->index;
5868
Michael Chan3b2b7d92016-01-02 23:45:00 -05005869 if (!rxr)
5870 return;
5871
Michael Chan9f554592016-01-02 23:44:58 -05005872 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",
5873 i, rxr->rx_ring_struct.fw_ring_id, rxr->rx_prod,
5874 rxr->rx_agg_ring_struct.fw_ring_id, rxr->rx_agg_prod,
5875 rxr->rx_sw_agg_prod);
5876}
5877
5878static void bnxt_dump_cp_sw_state(struct bnxt_napi *bnapi)
5879{
5880 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
5881 int i = bnapi->index;
5882
5883 netdev_info(bnapi->bp->dev, "[%d]: cp{fw_ring: %d raw_cons: %x}\n",
5884 i, cpr->cp_ring_struct.fw_ring_id, cpr->cp_raw_cons);
5885}
5886
Michael Chanc0c050c2015-10-22 16:01:17 -04005887static void bnxt_dbg_dump_states(struct bnxt *bp)
5888{
5889 int i;
5890 struct bnxt_napi *bnapi;
Michael Chanc0c050c2015-10-22 16:01:17 -04005891
5892 for (i = 0; i < bp->cp_nr_rings; i++) {
5893 bnapi = bp->bnapi[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04005894 if (netif_msg_drv(bp)) {
Michael Chan9f554592016-01-02 23:44:58 -05005895 bnxt_dump_tx_sw_state(bnapi);
5896 bnxt_dump_rx_sw_state(bnapi);
5897 bnxt_dump_cp_sw_state(bnapi);
Michael Chanc0c050c2015-10-22 16:01:17 -04005898 }
5899 }
5900}
5901
Michael Chan6988bd92016-06-13 02:25:29 -04005902static void bnxt_reset_task(struct bnxt *bp, bool silent)
Michael Chanc0c050c2015-10-22 16:01:17 -04005903{
Michael Chan6988bd92016-06-13 02:25:29 -04005904 if (!silent)
5905 bnxt_dbg_dump_states(bp);
Michael Chan028de142015-12-09 19:35:44 -05005906 if (netif_running(bp->dev)) {
5907 bnxt_close_nic(bp, false, false);
5908 bnxt_open_nic(bp, false, false);
5909 }
Michael Chanc0c050c2015-10-22 16:01:17 -04005910}
5911
5912static void bnxt_tx_timeout(struct net_device *dev)
5913{
5914 struct bnxt *bp = netdev_priv(dev);
5915
5916 netdev_err(bp->dev, "TX timeout detected, starting reset task!\n");
5917 set_bit(BNXT_RESET_TASK_SP_EVENT, &bp->sp_event);
5918 schedule_work(&bp->sp_task);
5919}
5920
5921#ifdef CONFIG_NET_POLL_CONTROLLER
5922static void bnxt_poll_controller(struct net_device *dev)
5923{
5924 struct bnxt *bp = netdev_priv(dev);
5925 int i;
5926
5927 for (i = 0; i < bp->cp_nr_rings; i++) {
5928 struct bnxt_irq *irq = &bp->irq_tbl[i];
5929
5930 disable_irq(irq->vector);
5931 irq->handler(irq->vector, bp->bnapi[i]);
5932 enable_irq(irq->vector);
5933 }
5934}
5935#endif
5936
5937static void bnxt_timer(unsigned long data)
5938{
5939 struct bnxt *bp = (struct bnxt *)data;
5940 struct net_device *dev = bp->dev;
5941
5942 if (!netif_running(dev))
5943 return;
5944
5945 if (atomic_read(&bp->intr_sem) != 0)
5946 goto bnxt_restart_timer;
5947
Michael Chan3bdf56c2016-03-07 15:38:45 -05005948 if (bp->link_info.link_up && (bp->flags & BNXT_FLAG_PORT_STATS)) {
5949 set_bit(BNXT_PERIODIC_STATS_SP_EVENT, &bp->sp_event);
5950 schedule_work(&bp->sp_task);
5951 }
Michael Chanc0c050c2015-10-22 16:01:17 -04005952bnxt_restart_timer:
5953 mod_timer(&bp->timer, jiffies + bp->current_interval);
5954}
5955
Michael Chan6988bd92016-06-13 02:25:29 -04005956/* Only called from bnxt_sp_task() */
5957static void bnxt_reset(struct bnxt *bp, bool silent)
5958{
5959 /* bnxt_reset_task() calls bnxt_close_nic() which waits
5960 * for BNXT_STATE_IN_SP_TASK to clear.
5961 * If there is a parallel dev_close(), bnxt_close() may be holding
5962 * rtnl() and waiting for BNXT_STATE_IN_SP_TASK to clear. So we
5963 * must clear BNXT_STATE_IN_SP_TASK before holding rtnl().
5964 */
5965 clear_bit(BNXT_STATE_IN_SP_TASK, &bp->state);
5966 rtnl_lock();
5967 if (test_bit(BNXT_STATE_OPEN, &bp->state))
5968 bnxt_reset_task(bp, silent);
5969 set_bit(BNXT_STATE_IN_SP_TASK, &bp->state);
5970 rtnl_unlock();
5971}
5972
Michael Chanc0c050c2015-10-22 16:01:17 -04005973static void bnxt_cfg_ntp_filters(struct bnxt *);
5974
5975static void bnxt_sp_task(struct work_struct *work)
5976{
5977 struct bnxt *bp = container_of(work, struct bnxt, sp_task);
5978 int rc;
5979
Michael Chan4cebdce2015-12-09 19:35:43 -05005980 set_bit(BNXT_STATE_IN_SP_TASK, &bp->state);
5981 smp_mb__after_atomic();
5982 if (!test_bit(BNXT_STATE_OPEN, &bp->state)) {
5983 clear_bit(BNXT_STATE_IN_SP_TASK, &bp->state);
Michael Chanc0c050c2015-10-22 16:01:17 -04005984 return;
Michael Chan4cebdce2015-12-09 19:35:43 -05005985 }
Michael Chanc0c050c2015-10-22 16:01:17 -04005986
5987 if (test_and_clear_bit(BNXT_RX_MASK_SP_EVENT, &bp->sp_event))
5988 bnxt_cfg_rx_mode(bp);
5989
5990 if (test_and_clear_bit(BNXT_RX_NTP_FLTR_SP_EVENT, &bp->sp_event))
5991 bnxt_cfg_ntp_filters(bp);
5992 if (test_and_clear_bit(BNXT_LINK_CHNG_SP_EVENT, &bp->sp_event)) {
5993 rc = bnxt_update_link(bp, true);
5994 if (rc)
5995 netdev_err(bp->dev, "SP task can't update link (rc: %x)\n",
5996 rc);
5997 }
5998 if (test_and_clear_bit(BNXT_HWRM_EXEC_FWD_REQ_SP_EVENT, &bp->sp_event))
5999 bnxt_hwrm_exec_fwd_req(bp);
6000 if (test_and_clear_bit(BNXT_VXLAN_ADD_PORT_SP_EVENT, &bp->sp_event)) {
6001 bnxt_hwrm_tunnel_dst_port_alloc(
6002 bp, bp->vxlan_port,
6003 TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_VXLAN);
6004 }
6005 if (test_and_clear_bit(BNXT_VXLAN_DEL_PORT_SP_EVENT, &bp->sp_event)) {
6006 bnxt_hwrm_tunnel_dst_port_free(
6007 bp, TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_VXLAN);
6008 }
Alexander Duyck7cdd5fc2016-06-16 12:21:36 -07006009 if (test_and_clear_bit(BNXT_GENEVE_ADD_PORT_SP_EVENT, &bp->sp_event)) {
6010 bnxt_hwrm_tunnel_dst_port_alloc(
6011 bp, bp->nge_port,
6012 TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_GENEVE);
6013 }
6014 if (test_and_clear_bit(BNXT_GENEVE_DEL_PORT_SP_EVENT, &bp->sp_event)) {
6015 bnxt_hwrm_tunnel_dst_port_free(
6016 bp, TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_GENEVE);
6017 }
Michael Chan6988bd92016-06-13 02:25:29 -04006018 if (test_and_clear_bit(BNXT_RESET_TASK_SP_EVENT, &bp->sp_event))
6019 bnxt_reset(bp, false);
Michael Chan4cebdce2015-12-09 19:35:43 -05006020
Michael Chanfc0f1922016-06-13 02:25:30 -04006021 if (test_and_clear_bit(BNXT_RESET_TASK_SILENT_SP_EVENT, &bp->sp_event))
6022 bnxt_reset(bp, true);
6023
Michael Chan4bb13ab2016-04-05 14:09:01 -04006024 if (test_and_clear_bit(BNXT_HWRM_PORT_MODULE_SP_EVENT, &bp->sp_event))
Michael Chan10289be2016-05-15 03:04:49 -04006025 bnxt_get_port_module_status(bp);
Michael Chan4bb13ab2016-04-05 14:09:01 -04006026
Michael Chan3bdf56c2016-03-07 15:38:45 -05006027 if (test_and_clear_bit(BNXT_PERIODIC_STATS_SP_EVENT, &bp->sp_event))
6028 bnxt_hwrm_port_qstats(bp);
6029
Michael Chan4cebdce2015-12-09 19:35:43 -05006030 smp_mb__before_atomic();
6031 clear_bit(BNXT_STATE_IN_SP_TASK, &bp->state);
Michael Chanc0c050c2015-10-22 16:01:17 -04006032}
6033
6034static int bnxt_init_board(struct pci_dev *pdev, struct net_device *dev)
6035{
6036 int rc;
6037 struct bnxt *bp = netdev_priv(dev);
6038
6039 SET_NETDEV_DEV(dev, &pdev->dev);
6040
6041 /* enable device (incl. PCI PM wakeup), and bus-mastering */
6042 rc = pci_enable_device(pdev);
6043 if (rc) {
6044 dev_err(&pdev->dev, "Cannot enable PCI device, aborting\n");
6045 goto init_err;
6046 }
6047
6048 if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
6049 dev_err(&pdev->dev,
6050 "Cannot find PCI device base address, aborting\n");
6051 rc = -ENODEV;
6052 goto init_err_disable;
6053 }
6054
6055 rc = pci_request_regions(pdev, DRV_MODULE_NAME);
6056 if (rc) {
6057 dev_err(&pdev->dev, "Cannot obtain PCI resources, aborting\n");
6058 goto init_err_disable;
6059 }
6060
6061 if (dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64)) != 0 &&
6062 dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32)) != 0) {
6063 dev_err(&pdev->dev, "System does not support DMA, aborting\n");
6064 goto init_err_disable;
6065 }
6066
6067 pci_set_master(pdev);
6068
6069 bp->dev = dev;
6070 bp->pdev = pdev;
6071
6072 bp->bar0 = pci_ioremap_bar(pdev, 0);
6073 if (!bp->bar0) {
6074 dev_err(&pdev->dev, "Cannot map device registers, aborting\n");
6075 rc = -ENOMEM;
6076 goto init_err_release;
6077 }
6078
6079 bp->bar1 = pci_ioremap_bar(pdev, 2);
6080 if (!bp->bar1) {
6081 dev_err(&pdev->dev, "Cannot map doorbell registers, aborting\n");
6082 rc = -ENOMEM;
6083 goto init_err_release;
6084 }
6085
6086 bp->bar2 = pci_ioremap_bar(pdev, 4);
6087 if (!bp->bar2) {
6088 dev_err(&pdev->dev, "Cannot map bar4 registers, aborting\n");
6089 rc = -ENOMEM;
6090 goto init_err_release;
6091 }
6092
Satish Baddipadige6316ea62016-03-07 15:38:48 -05006093 pci_enable_pcie_error_reporting(pdev);
6094
Michael Chanc0c050c2015-10-22 16:01:17 -04006095 INIT_WORK(&bp->sp_task, bnxt_sp_task);
6096
6097 spin_lock_init(&bp->ntp_fltr_lock);
6098
6099 bp->rx_ring_size = BNXT_DEFAULT_RX_RING_SIZE;
6100 bp->tx_ring_size = BNXT_DEFAULT_TX_RING_SIZE;
6101
Michael Chandfb5b892016-02-26 04:00:01 -05006102 /* tick values in micro seconds */
Michael Chandfc9c942016-02-26 04:00:03 -05006103 bp->rx_coal_ticks = 12;
6104 bp->rx_coal_bufs = 30;
Michael Chandfb5b892016-02-26 04:00:01 -05006105 bp->rx_coal_ticks_irq = 1;
6106 bp->rx_coal_bufs_irq = 2;
Michael Chanc0c050c2015-10-22 16:01:17 -04006107
Michael Chandfc9c942016-02-26 04:00:03 -05006108 bp->tx_coal_ticks = 25;
6109 bp->tx_coal_bufs = 30;
6110 bp->tx_coal_ticks_irq = 2;
6111 bp->tx_coal_bufs_irq = 2;
6112
Michael Chan51f30782016-07-01 18:46:29 -04006113 bp->stats_coal_ticks = BNXT_DEF_STATS_COAL_TICKS;
6114
Michael Chanc0c050c2015-10-22 16:01:17 -04006115 init_timer(&bp->timer);
6116 bp->timer.data = (unsigned long)bp;
6117 bp->timer.function = bnxt_timer;
6118 bp->current_interval = BNXT_TIMER_INTERVAL;
6119
Michael Chancaefe522015-12-09 19:35:42 -05006120 clear_bit(BNXT_STATE_OPEN, &bp->state);
Michael Chanc0c050c2015-10-22 16:01:17 -04006121
6122 return 0;
6123
6124init_err_release:
6125 if (bp->bar2) {
6126 pci_iounmap(pdev, bp->bar2);
6127 bp->bar2 = NULL;
6128 }
6129
6130 if (bp->bar1) {
6131 pci_iounmap(pdev, bp->bar1);
6132 bp->bar1 = NULL;
6133 }
6134
6135 if (bp->bar0) {
6136 pci_iounmap(pdev, bp->bar0);
6137 bp->bar0 = NULL;
6138 }
6139
6140 pci_release_regions(pdev);
6141
6142init_err_disable:
6143 pci_disable_device(pdev);
6144
6145init_err:
6146 return rc;
6147}
6148
6149/* rtnl_lock held */
6150static int bnxt_change_mac_addr(struct net_device *dev, void *p)
6151{
6152 struct sockaddr *addr = p;
Jeffrey Huang1fc2cfd2015-12-02 01:54:06 -05006153 struct bnxt *bp = netdev_priv(dev);
6154 int rc = 0;
Michael Chanc0c050c2015-10-22 16:01:17 -04006155
6156 if (!is_valid_ether_addr(addr->sa_data))
6157 return -EADDRNOTAVAIL;
6158
Michael Chan84c33dd2016-04-11 04:11:13 -04006159 rc = bnxt_approve_mac(bp, addr->sa_data);
6160 if (rc)
6161 return rc;
Michael Chanc0c050c2015-10-22 16:01:17 -04006162
Jeffrey Huang1fc2cfd2015-12-02 01:54:06 -05006163 if (ether_addr_equal(addr->sa_data, dev->dev_addr))
6164 return 0;
Michael Chanc0c050c2015-10-22 16:01:17 -04006165
Jeffrey Huang1fc2cfd2015-12-02 01:54:06 -05006166 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
6167 if (netif_running(dev)) {
6168 bnxt_close_nic(bp, false, false);
6169 rc = bnxt_open_nic(bp, false, false);
6170 }
6171
6172 return rc;
Michael Chanc0c050c2015-10-22 16:01:17 -04006173}
6174
6175/* rtnl_lock held */
6176static int bnxt_change_mtu(struct net_device *dev, int new_mtu)
6177{
6178 struct bnxt *bp = netdev_priv(dev);
6179
Vasundhara Volamdc7aadb2016-07-01 18:46:26 -04006180 if (new_mtu < 60 || new_mtu > 9500)
Michael Chanc0c050c2015-10-22 16:01:17 -04006181 return -EINVAL;
6182
6183 if (netif_running(dev))
6184 bnxt_close_nic(bp, false, false);
6185
6186 dev->mtu = new_mtu;
6187 bnxt_set_ring_params(bp);
6188
6189 if (netif_running(dev))
6190 return bnxt_open_nic(bp, false, false);
6191
6192 return 0;
6193}
6194
John Fastabend16e5cc62016-02-16 21:16:43 -08006195static int bnxt_setup_tc(struct net_device *dev, u32 handle, __be16 proto,
6196 struct tc_to_netdev *ntc)
Michael Chanc0c050c2015-10-22 16:01:17 -04006197{
6198 struct bnxt *bp = netdev_priv(dev);
John Fastabend16e5cc62016-02-16 21:16:43 -08006199 u8 tc;
Michael Chanc0c050c2015-10-22 16:01:17 -04006200
John Fastabend5eb4dce2016-02-29 11:26:13 -08006201 if (ntc->type != TC_SETUP_MQPRIO)
John Fastabende4c67342016-02-16 21:16:15 -08006202 return -EINVAL;
6203
John Fastabend16e5cc62016-02-16 21:16:43 -08006204 tc = ntc->tc;
6205
Michael Chanc0c050c2015-10-22 16:01:17 -04006206 if (tc > bp->max_tc) {
6207 netdev_err(dev, "too many traffic classes requested: %d Max supported is %d\n",
6208 tc, bp->max_tc);
6209 return -EINVAL;
6210 }
6211
6212 if (netdev_get_num_tc(dev) == tc)
6213 return 0;
6214
6215 if (tc) {
Michael Chan6e6c5a52016-01-02 23:45:02 -05006216 int max_rx_rings, max_tx_rings, rc;
Michael Chan01657bc2016-01-02 23:45:03 -05006217 bool sh = false;
Michael Chanc0c050c2015-10-22 16:01:17 -04006218
Michael Chan01657bc2016-01-02 23:45:03 -05006219 if (bp->flags & BNXT_FLAG_SHARED_RINGS)
6220 sh = true;
6221
6222 rc = bnxt_get_max_rings(bp, &max_rx_rings, &max_tx_rings, sh);
Michael Chan6e6c5a52016-01-02 23:45:02 -05006223 if (rc || bp->tx_nr_rings_per_tc * tc > max_tx_rings)
Michael Chanc0c050c2015-10-22 16:01:17 -04006224 return -ENOMEM;
6225 }
6226
6227 /* Needs to close the device and do hw resource re-allocations */
6228 if (netif_running(bp->dev))
6229 bnxt_close_nic(bp, true, false);
6230
6231 if (tc) {
6232 bp->tx_nr_rings = bp->tx_nr_rings_per_tc * tc;
6233 netdev_set_num_tc(dev, tc);
6234 } else {
6235 bp->tx_nr_rings = bp->tx_nr_rings_per_tc;
6236 netdev_reset_tc(dev);
6237 }
6238 bp->cp_nr_rings = max_t(int, bp->tx_nr_rings, bp->rx_nr_rings);
6239 bp->num_stat_ctxs = bp->cp_nr_rings;
6240
6241 if (netif_running(bp->dev))
6242 return bnxt_open_nic(bp, true, false);
6243
6244 return 0;
6245}
6246
6247#ifdef CONFIG_RFS_ACCEL
6248static bool bnxt_fltr_match(struct bnxt_ntuple_filter *f1,
6249 struct bnxt_ntuple_filter *f2)
6250{
6251 struct flow_keys *keys1 = &f1->fkeys;
6252 struct flow_keys *keys2 = &f2->fkeys;
6253
6254 if (keys1->addrs.v4addrs.src == keys2->addrs.v4addrs.src &&
6255 keys1->addrs.v4addrs.dst == keys2->addrs.v4addrs.dst &&
6256 keys1->ports.ports == keys2->ports.ports &&
6257 keys1->basic.ip_proto == keys2->basic.ip_proto &&
6258 keys1->basic.n_proto == keys2->basic.n_proto &&
6259 ether_addr_equal(f1->src_mac_addr, f2->src_mac_addr))
6260 return true;
6261
6262 return false;
6263}
6264
6265static int bnxt_rx_flow_steer(struct net_device *dev, const struct sk_buff *skb,
6266 u16 rxq_index, u32 flow_id)
6267{
6268 struct bnxt *bp = netdev_priv(dev);
6269 struct bnxt_ntuple_filter *fltr, *new_fltr;
6270 struct flow_keys *fkeys;
6271 struct ethhdr *eth = (struct ethhdr *)skb_mac_header(skb);
Michael Chan84e86b92015-11-05 16:25:50 -05006272 int rc = 0, idx, bit_id;
Michael Chanc0c050c2015-10-22 16:01:17 -04006273 struct hlist_head *head;
6274
6275 if (skb->encapsulation)
6276 return -EPROTONOSUPPORT;
6277
6278 new_fltr = kzalloc(sizeof(*new_fltr), GFP_ATOMIC);
6279 if (!new_fltr)
6280 return -ENOMEM;
6281
6282 fkeys = &new_fltr->fkeys;
6283 if (!skb_flow_dissect_flow_keys(skb, fkeys, 0)) {
6284 rc = -EPROTONOSUPPORT;
6285 goto err_free;
6286 }
6287
6288 if ((fkeys->basic.n_proto != htons(ETH_P_IP)) ||
6289 ((fkeys->basic.ip_proto != IPPROTO_TCP) &&
6290 (fkeys->basic.ip_proto != IPPROTO_UDP))) {
6291 rc = -EPROTONOSUPPORT;
6292 goto err_free;
6293 }
6294
6295 memcpy(new_fltr->src_mac_addr, eth->h_source, ETH_ALEN);
6296
6297 idx = skb_get_hash_raw(skb) & BNXT_NTP_FLTR_HASH_MASK;
6298 head = &bp->ntp_fltr_hash_tbl[idx];
6299 rcu_read_lock();
6300 hlist_for_each_entry_rcu(fltr, head, hash) {
6301 if (bnxt_fltr_match(fltr, new_fltr)) {
6302 rcu_read_unlock();
6303 rc = 0;
6304 goto err_free;
6305 }
6306 }
6307 rcu_read_unlock();
6308
6309 spin_lock_bh(&bp->ntp_fltr_lock);
Michael Chan84e86b92015-11-05 16:25:50 -05006310 bit_id = bitmap_find_free_region(bp->ntp_fltr_bmap,
6311 BNXT_NTP_FLTR_MAX_FLTR, 0);
6312 if (bit_id < 0) {
Michael Chanc0c050c2015-10-22 16:01:17 -04006313 spin_unlock_bh(&bp->ntp_fltr_lock);
6314 rc = -ENOMEM;
6315 goto err_free;
6316 }
6317
Michael Chan84e86b92015-11-05 16:25:50 -05006318 new_fltr->sw_id = (u16)bit_id;
Michael Chanc0c050c2015-10-22 16:01:17 -04006319 new_fltr->flow_id = flow_id;
6320 new_fltr->rxq = rxq_index;
6321 hlist_add_head_rcu(&new_fltr->hash, head);
6322 bp->ntp_fltr_count++;
6323 spin_unlock_bh(&bp->ntp_fltr_lock);
6324
6325 set_bit(BNXT_RX_NTP_FLTR_SP_EVENT, &bp->sp_event);
6326 schedule_work(&bp->sp_task);
6327
6328 return new_fltr->sw_id;
6329
6330err_free:
6331 kfree(new_fltr);
6332 return rc;
6333}
6334
6335static void bnxt_cfg_ntp_filters(struct bnxt *bp)
6336{
6337 int i;
6338
6339 for (i = 0; i < BNXT_NTP_FLTR_HASH_SIZE; i++) {
6340 struct hlist_head *head;
6341 struct hlist_node *tmp;
6342 struct bnxt_ntuple_filter *fltr;
6343 int rc;
6344
6345 head = &bp->ntp_fltr_hash_tbl[i];
6346 hlist_for_each_entry_safe(fltr, tmp, head, hash) {
6347 bool del = false;
6348
6349 if (test_bit(BNXT_FLTR_VALID, &fltr->state)) {
6350 if (rps_may_expire_flow(bp->dev, fltr->rxq,
6351 fltr->flow_id,
6352 fltr->sw_id)) {
6353 bnxt_hwrm_cfa_ntuple_filter_free(bp,
6354 fltr);
6355 del = true;
6356 }
6357 } else {
6358 rc = bnxt_hwrm_cfa_ntuple_filter_alloc(bp,
6359 fltr);
6360 if (rc)
6361 del = true;
6362 else
6363 set_bit(BNXT_FLTR_VALID, &fltr->state);
6364 }
6365
6366 if (del) {
6367 spin_lock_bh(&bp->ntp_fltr_lock);
6368 hlist_del_rcu(&fltr->hash);
6369 bp->ntp_fltr_count--;
6370 spin_unlock_bh(&bp->ntp_fltr_lock);
6371 synchronize_rcu();
6372 clear_bit(fltr->sw_id, bp->ntp_fltr_bmap);
6373 kfree(fltr);
6374 }
6375 }
6376 }
Jeffrey Huang19241362016-02-26 04:00:00 -05006377 if (test_and_clear_bit(BNXT_HWRM_PF_UNLOAD_SP_EVENT, &bp->sp_event))
6378 netdev_info(bp->dev, "Receive PF driver unload event!");
Michael Chanc0c050c2015-10-22 16:01:17 -04006379}
6380
6381#else
6382
6383static void bnxt_cfg_ntp_filters(struct bnxt *bp)
6384{
6385}
6386
6387#endif /* CONFIG_RFS_ACCEL */
6388
Alexander Duyckad51b8e2016-06-16 12:21:19 -07006389static void bnxt_udp_tunnel_add(struct net_device *dev,
6390 struct udp_tunnel_info *ti)
Michael Chanc0c050c2015-10-22 16:01:17 -04006391{
6392 struct bnxt *bp = netdev_priv(dev);
6393
Alexander Duyckad51b8e2016-06-16 12:21:19 -07006394 if (ti->sa_family != AF_INET6 && ti->sa_family != AF_INET)
6395 return;
6396
Michael Chanc0c050c2015-10-22 16:01:17 -04006397 if (!netif_running(dev))
6398 return;
6399
Alexander Duyckad51b8e2016-06-16 12:21:19 -07006400 switch (ti->type) {
6401 case UDP_TUNNEL_TYPE_VXLAN:
6402 if (bp->vxlan_port_cnt && bp->vxlan_port != ti->port)
6403 return;
Michael Chanc0c050c2015-10-22 16:01:17 -04006404
Alexander Duyckad51b8e2016-06-16 12:21:19 -07006405 bp->vxlan_port_cnt++;
6406 if (bp->vxlan_port_cnt == 1) {
6407 bp->vxlan_port = ti->port;
6408 set_bit(BNXT_VXLAN_ADD_PORT_SP_EVENT, &bp->sp_event);
Michael Chanc0c050c2015-10-22 16:01:17 -04006409 schedule_work(&bp->sp_task);
6410 }
Alexander Duyckad51b8e2016-06-16 12:21:19 -07006411 break;
Alexander Duyck7cdd5fc2016-06-16 12:21:36 -07006412 case UDP_TUNNEL_TYPE_GENEVE:
6413 if (bp->nge_port_cnt && bp->nge_port != ti->port)
6414 return;
6415
6416 bp->nge_port_cnt++;
6417 if (bp->nge_port_cnt == 1) {
6418 bp->nge_port = ti->port;
6419 set_bit(BNXT_GENEVE_ADD_PORT_SP_EVENT, &bp->sp_event);
6420 }
6421 break;
Alexander Duyckad51b8e2016-06-16 12:21:19 -07006422 default:
6423 return;
Michael Chanc0c050c2015-10-22 16:01:17 -04006424 }
Alexander Duyckad51b8e2016-06-16 12:21:19 -07006425
6426 schedule_work(&bp->sp_task);
6427}
6428
6429static void bnxt_udp_tunnel_del(struct net_device *dev,
6430 struct udp_tunnel_info *ti)
6431{
6432 struct bnxt *bp = netdev_priv(dev);
6433
6434 if (ti->sa_family != AF_INET6 && ti->sa_family != AF_INET)
6435 return;
6436
6437 if (!netif_running(dev))
6438 return;
6439
6440 switch (ti->type) {
6441 case UDP_TUNNEL_TYPE_VXLAN:
6442 if (!bp->vxlan_port_cnt || bp->vxlan_port != ti->port)
6443 return;
6444 bp->vxlan_port_cnt--;
6445
6446 if (bp->vxlan_port_cnt != 0)
6447 return;
6448
6449 set_bit(BNXT_VXLAN_DEL_PORT_SP_EVENT, &bp->sp_event);
6450 break;
Alexander Duyck7cdd5fc2016-06-16 12:21:36 -07006451 case UDP_TUNNEL_TYPE_GENEVE:
6452 if (!bp->nge_port_cnt || bp->nge_port != ti->port)
6453 return;
6454 bp->nge_port_cnt--;
6455
6456 if (bp->nge_port_cnt != 0)
6457 return;
6458
6459 set_bit(BNXT_GENEVE_DEL_PORT_SP_EVENT, &bp->sp_event);
6460 break;
Alexander Duyckad51b8e2016-06-16 12:21:19 -07006461 default:
6462 return;
6463 }
6464
6465 schedule_work(&bp->sp_task);
Michael Chanc0c050c2015-10-22 16:01:17 -04006466}
6467
6468static const struct net_device_ops bnxt_netdev_ops = {
6469 .ndo_open = bnxt_open,
6470 .ndo_start_xmit = bnxt_start_xmit,
6471 .ndo_stop = bnxt_close,
6472 .ndo_get_stats64 = bnxt_get_stats64,
6473 .ndo_set_rx_mode = bnxt_set_rx_mode,
6474 .ndo_do_ioctl = bnxt_ioctl,
6475 .ndo_validate_addr = eth_validate_addr,
6476 .ndo_set_mac_address = bnxt_change_mac_addr,
6477 .ndo_change_mtu = bnxt_change_mtu,
6478 .ndo_fix_features = bnxt_fix_features,
6479 .ndo_set_features = bnxt_set_features,
6480 .ndo_tx_timeout = bnxt_tx_timeout,
6481#ifdef CONFIG_BNXT_SRIOV
6482 .ndo_get_vf_config = bnxt_get_vf_config,
6483 .ndo_set_vf_mac = bnxt_set_vf_mac,
6484 .ndo_set_vf_vlan = bnxt_set_vf_vlan,
6485 .ndo_set_vf_rate = bnxt_set_vf_bw,
6486 .ndo_set_vf_link_state = bnxt_set_vf_link_state,
6487 .ndo_set_vf_spoofchk = bnxt_set_vf_spoofchk,
6488#endif
6489#ifdef CONFIG_NET_POLL_CONTROLLER
6490 .ndo_poll_controller = bnxt_poll_controller,
6491#endif
6492 .ndo_setup_tc = bnxt_setup_tc,
6493#ifdef CONFIG_RFS_ACCEL
6494 .ndo_rx_flow_steer = bnxt_rx_flow_steer,
6495#endif
Alexander Duyckad51b8e2016-06-16 12:21:19 -07006496 .ndo_udp_tunnel_add = bnxt_udp_tunnel_add,
6497 .ndo_udp_tunnel_del = bnxt_udp_tunnel_del,
Michael Chanc0c050c2015-10-22 16:01:17 -04006498#ifdef CONFIG_NET_RX_BUSY_POLL
6499 .ndo_busy_poll = bnxt_busy_poll,
6500#endif
6501};
6502
6503static void bnxt_remove_one(struct pci_dev *pdev)
6504{
6505 struct net_device *dev = pci_get_drvdata(pdev);
6506 struct bnxt *bp = netdev_priv(dev);
6507
6508 if (BNXT_PF(bp))
6509 bnxt_sriov_disable(bp);
6510
Satish Baddipadige6316ea62016-03-07 15:38:48 -05006511 pci_disable_pcie_error_reporting(pdev);
Michael Chanc0c050c2015-10-22 16:01:17 -04006512 unregister_netdev(dev);
6513 cancel_work_sync(&bp->sp_task);
6514 bp->sp_event = 0;
6515
Jeffrey Huangbe58a0d2015-12-27 18:19:18 -05006516 bnxt_hwrm_func_drv_unrgtr(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04006517 bnxt_free_hwrm_resources(bp);
6518 pci_iounmap(pdev, bp->bar2);
6519 pci_iounmap(pdev, bp->bar1);
6520 pci_iounmap(pdev, bp->bar0);
6521 free_netdev(dev);
6522
6523 pci_release_regions(pdev);
6524 pci_disable_device(pdev);
6525}
6526
6527static int bnxt_probe_phy(struct bnxt *bp)
6528{
6529 int rc = 0;
6530 struct bnxt_link_info *link_info = &bp->link_info;
Michael Chanc0c050c2015-10-22 16:01:17 -04006531
Michael Chan170ce012016-04-05 14:08:57 -04006532 rc = bnxt_hwrm_phy_qcaps(bp);
6533 if (rc) {
6534 netdev_err(bp->dev, "Probe phy can't get phy capabilities (rc: %x)\n",
6535 rc);
6536 return rc;
6537 }
6538
Michael Chanc0c050c2015-10-22 16:01:17 -04006539 rc = bnxt_update_link(bp, false);
6540 if (rc) {
6541 netdev_err(bp->dev, "Probe phy can't update link (rc: %x)\n",
6542 rc);
6543 return rc;
6544 }
6545
Michael Chan93ed8112016-06-13 02:25:37 -04006546 /* Older firmware does not have supported_auto_speeds, so assume
6547 * that all supported speeds can be autonegotiated.
6548 */
6549 if (link_info->auto_link_speeds && !link_info->support_auto_speeds)
6550 link_info->support_auto_speeds = link_info->support_speeds;
6551
Michael Chanc0c050c2015-10-22 16:01:17 -04006552 /*initialize the ethool setting copy with NVM settings */
Michael Chan0d8abf02016-02-10 17:33:47 -05006553 if (BNXT_AUTO_MODE(link_info->auto_mode)) {
Michael Chanc9ee9512016-04-05 14:08:56 -04006554 link_info->autoneg = BNXT_AUTONEG_SPEED;
6555 if (bp->hwrm_spec_code >= 0x10201) {
6556 if (link_info->auto_pause_setting &
6557 PORT_PHY_CFG_REQ_AUTO_PAUSE_AUTONEG_PAUSE)
6558 link_info->autoneg |= BNXT_AUTONEG_FLOW_CTRL;
6559 } else {
6560 link_info->autoneg |= BNXT_AUTONEG_FLOW_CTRL;
6561 }
Michael Chan0d8abf02016-02-10 17:33:47 -05006562 link_info->advertising = link_info->auto_link_speeds;
Michael Chan0d8abf02016-02-10 17:33:47 -05006563 } else {
6564 link_info->req_link_speed = link_info->force_link_speed;
6565 link_info->req_duplex = link_info->duplex_setting;
Michael Chanc0c050c2015-10-22 16:01:17 -04006566 }
Michael Chanc9ee9512016-04-05 14:08:56 -04006567 if (link_info->autoneg & BNXT_AUTONEG_FLOW_CTRL)
6568 link_info->req_flow_ctrl =
6569 link_info->auto_pause_setting & BNXT_LINK_PAUSE_BOTH;
6570 else
6571 link_info->req_flow_ctrl = link_info->force_pause_setting;
Michael Chanc0c050c2015-10-22 16:01:17 -04006572 return rc;
6573}
6574
6575static int bnxt_get_max_irq(struct pci_dev *pdev)
6576{
6577 u16 ctrl;
6578
6579 if (!pdev->msix_cap)
6580 return 1;
6581
6582 pci_read_config_word(pdev, pdev->msix_cap + PCI_MSIX_FLAGS, &ctrl);
6583 return (ctrl & PCI_MSIX_FLAGS_QSIZE) + 1;
6584}
6585
Michael Chan6e6c5a52016-01-02 23:45:02 -05006586static void _bnxt_get_max_rings(struct bnxt *bp, int *max_rx, int *max_tx,
6587 int *max_cp)
Michael Chanc0c050c2015-10-22 16:01:17 -04006588{
Michael Chan6e6c5a52016-01-02 23:45:02 -05006589 int max_ring_grps = 0;
Michael Chanc0c050c2015-10-22 16:01:17 -04006590
Michael Chan379a80a2015-10-23 15:06:19 -04006591#ifdef CONFIG_BNXT_SRIOV
Arnd Bergmann415b6f12016-01-12 16:05:08 +01006592 if (!BNXT_PF(bp)) {
Michael Chanc0c050c2015-10-22 16:01:17 -04006593 *max_tx = bp->vf.max_tx_rings;
6594 *max_rx = bp->vf.max_rx_rings;
Michael Chan6e6c5a52016-01-02 23:45:02 -05006595 *max_cp = min_t(int, bp->vf.max_irqs, bp->vf.max_cp_rings);
6596 *max_cp = min_t(int, *max_cp, bp->vf.max_stat_ctxs);
Michael Chanb72d4a62015-12-27 18:19:27 -05006597 max_ring_grps = bp->vf.max_hw_ring_grps;
Arnd Bergmann415b6f12016-01-12 16:05:08 +01006598 } else
Michael Chan379a80a2015-10-23 15:06:19 -04006599#endif
Arnd Bergmann415b6f12016-01-12 16:05:08 +01006600 {
6601 *max_tx = bp->pf.max_tx_rings;
6602 *max_rx = bp->pf.max_rx_rings;
6603 *max_cp = min_t(int, bp->pf.max_irqs, bp->pf.max_cp_rings);
6604 *max_cp = min_t(int, *max_cp, bp->pf.max_stat_ctxs);
6605 max_ring_grps = bp->pf.max_hw_ring_grps;
Michael Chanc0c050c2015-10-22 16:01:17 -04006606 }
Prashant Sreedharan76595192016-07-18 07:15:22 -04006607 if (BNXT_CHIP_TYPE_NITRO_A0(bp) && BNXT_PF(bp)) {
6608 *max_cp -= 1;
6609 *max_rx -= 2;
6610 }
Michael Chanc0c050c2015-10-22 16:01:17 -04006611 if (bp->flags & BNXT_FLAG_AGG_RINGS)
6612 *max_rx >>= 1;
Michael Chanb72d4a62015-12-27 18:19:27 -05006613 *max_rx = min_t(int, *max_rx, max_ring_grps);
Michael Chan6e6c5a52016-01-02 23:45:02 -05006614}
6615
6616int bnxt_get_max_rings(struct bnxt *bp, int *max_rx, int *max_tx, bool shared)
6617{
6618 int rx, tx, cp;
6619
6620 _bnxt_get_max_rings(bp, &rx, &tx, &cp);
6621 if (!rx || !tx || !cp)
6622 return -ENOMEM;
6623
6624 *max_rx = rx;
6625 *max_tx = tx;
6626 return bnxt_trim_rings(bp, max_rx, max_tx, cp, shared);
6627}
6628
6629static int bnxt_set_dflt_rings(struct bnxt *bp)
6630{
6631 int dflt_rings, max_rx_rings, max_tx_rings, rc;
6632 bool sh = true;
6633
6634 if (sh)
6635 bp->flags |= BNXT_FLAG_SHARED_RINGS;
6636 dflt_rings = netif_get_num_default_rss_queues();
6637 rc = bnxt_get_max_rings(bp, &max_rx_rings, &max_tx_rings, sh);
6638 if (rc)
6639 return rc;
6640 bp->rx_nr_rings = min_t(int, dflt_rings, max_rx_rings);
6641 bp->tx_nr_rings_per_tc = min_t(int, dflt_rings, max_tx_rings);
6642 bp->tx_nr_rings = bp->tx_nr_rings_per_tc;
6643 bp->cp_nr_rings = sh ? max_t(int, bp->tx_nr_rings, bp->rx_nr_rings) :
6644 bp->tx_nr_rings + bp->rx_nr_rings;
6645 bp->num_stat_ctxs = bp->cp_nr_rings;
Prashant Sreedharan76595192016-07-18 07:15:22 -04006646 if (BNXT_CHIP_TYPE_NITRO_A0(bp)) {
6647 bp->rx_nr_rings++;
6648 bp->cp_nr_rings++;
6649 }
Michael Chan6e6c5a52016-01-02 23:45:02 -05006650 return rc;
Michael Chanc0c050c2015-10-22 16:01:17 -04006651}
6652
Ajit Khaparde90c4f782016-05-15 03:04:45 -04006653static void bnxt_parse_log_pcie_link(struct bnxt *bp)
6654{
6655 enum pcie_link_width width = PCIE_LNK_WIDTH_UNKNOWN;
6656 enum pci_bus_speed speed = PCI_SPEED_UNKNOWN;
6657
6658 if (pcie_get_minimum_link(bp->pdev, &speed, &width) ||
6659 speed == PCI_SPEED_UNKNOWN || width == PCIE_LNK_WIDTH_UNKNOWN)
6660 netdev_info(bp->dev, "Failed to determine PCIe Link Info\n");
6661 else
6662 netdev_info(bp->dev, "PCIe: Speed %s Width x%d\n",
6663 speed == PCIE_SPEED_2_5GT ? "2.5GT/s" :
6664 speed == PCIE_SPEED_5_0GT ? "5.0GT/s" :
6665 speed == PCIE_SPEED_8_0GT ? "8.0GT/s" :
6666 "Unknown", width);
6667}
6668
Michael Chanc0c050c2015-10-22 16:01:17 -04006669static int bnxt_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
6670{
6671 static int version_printed;
6672 struct net_device *dev;
6673 struct bnxt *bp;
Michael Chan6e6c5a52016-01-02 23:45:02 -05006674 int rc, max_irqs;
Michael Chanc0c050c2015-10-22 16:01:17 -04006675
6676 if (version_printed++ == 0)
6677 pr_info("%s", version);
6678
6679 max_irqs = bnxt_get_max_irq(pdev);
6680 dev = alloc_etherdev_mq(sizeof(*bp), max_irqs);
6681 if (!dev)
6682 return -ENOMEM;
6683
6684 bp = netdev_priv(dev);
6685
6686 if (bnxt_vf_pciid(ent->driver_data))
6687 bp->flags |= BNXT_FLAG_VF;
6688
Michael Chan2bcfa6f2015-12-27 18:19:24 -05006689 if (pdev->msix_cap)
Michael Chanc0c050c2015-10-22 16:01:17 -04006690 bp->flags |= BNXT_FLAG_MSIX_CAP;
Michael Chanc0c050c2015-10-22 16:01:17 -04006691
6692 rc = bnxt_init_board(pdev, dev);
6693 if (rc < 0)
6694 goto init_err_free;
6695
6696 dev->netdev_ops = &bnxt_netdev_ops;
6697 dev->watchdog_timeo = BNXT_TX_TIMEOUT;
6698 dev->ethtool_ops = &bnxt_ethtool_ops;
6699
6700 pci_set_drvdata(pdev, dev);
6701
Prashant Sreedharan3e8060f2016-07-18 07:15:20 -04006702 rc = bnxt_alloc_hwrm_resources(bp);
6703 if (rc)
6704 goto init_err;
6705
6706 mutex_init(&bp->hwrm_cmd_lock);
6707 rc = bnxt_hwrm_ver_get(bp);
6708 if (rc)
6709 goto init_err;
6710
Michael Chanc0c050c2015-10-22 16:01:17 -04006711 dev->hw_features = NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM | NETIF_F_SG |
6712 NETIF_F_TSO | NETIF_F_TSO6 |
6713 NETIF_F_GSO_UDP_TUNNEL | NETIF_F_GSO_GRE |
Tom Herbert7e133182016-05-18 09:06:10 -07006714 NETIF_F_GSO_IPXIP4 |
Alexander Duyck152971e2016-05-02 09:38:55 -07006715 NETIF_F_GSO_UDP_TUNNEL_CSUM | NETIF_F_GSO_GRE_CSUM |
6716 NETIF_F_GSO_PARTIAL | NETIF_F_RXHASH |
Prashant Sreedharan3e8060f2016-07-18 07:15:20 -04006717 NETIF_F_RXCSUM | NETIF_F_GRO;
6718
6719 if (!BNXT_CHIP_TYPE_NITRO_A0(bp))
6720 dev->hw_features |= NETIF_F_LRO;
Michael Chanc0c050c2015-10-22 16:01:17 -04006721
Michael Chanc0c050c2015-10-22 16:01:17 -04006722 dev->hw_enc_features =
6723 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM | NETIF_F_SG |
6724 NETIF_F_TSO | NETIF_F_TSO6 |
6725 NETIF_F_GSO_UDP_TUNNEL | NETIF_F_GSO_GRE |
Alexander Duyck152971e2016-05-02 09:38:55 -07006726 NETIF_F_GSO_UDP_TUNNEL_CSUM | NETIF_F_GSO_GRE_CSUM |
Tom Herbert7e133182016-05-18 09:06:10 -07006727 NETIF_F_GSO_IPXIP4 | NETIF_F_GSO_PARTIAL;
Alexander Duyck152971e2016-05-02 09:38:55 -07006728 dev->gso_partial_features = NETIF_F_GSO_UDP_TUNNEL_CSUM |
6729 NETIF_F_GSO_GRE_CSUM;
Michael Chanc0c050c2015-10-22 16:01:17 -04006730 dev->vlan_features = dev->hw_features | NETIF_F_HIGHDMA;
6731 dev->hw_features |= NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_CTAG_TX |
6732 NETIF_F_HW_VLAN_STAG_RX | NETIF_F_HW_VLAN_STAG_TX;
6733 dev->features |= dev->hw_features | NETIF_F_HIGHDMA;
6734 dev->priv_flags |= IFF_UNICAST_FLT;
6735
6736#ifdef CONFIG_BNXT_SRIOV
6737 init_waitqueue_head(&bp->sriov_cfg_wait);
6738#endif
Michael Chan309369c2016-06-13 02:25:34 -04006739 bp->gro_func = bnxt_gro_func_5730x;
Michael Chan94758f82016-06-13 02:25:35 -04006740 if (BNXT_CHIP_NUM_57X1X(bp->chip_num))
6741 bp->gro_func = bnxt_gro_func_5731x;
Michael Chan309369c2016-06-13 02:25:34 -04006742
Michael Chanc0c050c2015-10-22 16:01:17 -04006743 rc = bnxt_hwrm_func_drv_rgtr(bp);
6744 if (rc)
6745 goto init_err;
6746
6747 /* Get the MAX capabilities for this function */
6748 rc = bnxt_hwrm_func_qcaps(bp);
6749 if (rc) {
6750 netdev_err(bp->dev, "hwrm query capability failure rc: %x\n",
6751 rc);
6752 rc = -1;
6753 goto init_err;
6754 }
6755
6756 rc = bnxt_hwrm_queue_qportcfg(bp);
6757 if (rc) {
6758 netdev_err(bp->dev, "hwrm query qportcfg failure rc: %x\n",
6759 rc);
6760 rc = -1;
6761 goto init_err;
6762 }
6763
Satish Baddipadige567b2ab2016-06-13 02:25:31 -04006764 bnxt_hwrm_func_qcfg(bp);
6765
Michael Chanc0c050c2015-10-22 16:01:17 -04006766 bnxt_set_tpa_flags(bp);
6767 bnxt_set_ring_params(bp);
Jeffrey Huangbdd43472015-12-02 01:54:07 -05006768 if (BNXT_PF(bp))
Michael Chanc0c050c2015-10-22 16:01:17 -04006769 bp->pf.max_irqs = max_irqs;
Michael Chan379a80a2015-10-23 15:06:19 -04006770#if defined(CONFIG_BNXT_SRIOV)
Jeffrey Huangbdd43472015-12-02 01:54:07 -05006771 else
Michael Chanc0c050c2015-10-22 16:01:17 -04006772 bp->vf.max_irqs = max_irqs;
Michael Chan379a80a2015-10-23 15:06:19 -04006773#endif
Michael Chan6e6c5a52016-01-02 23:45:02 -05006774 bnxt_set_dflt_rings(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04006775
Prashant Sreedharan3e8060f2016-07-18 07:15:20 -04006776 if (BNXT_PF(bp) && !BNXT_CHIP_TYPE_NITRO_A0(bp)) {
Michael Chan2bcfa6f2015-12-27 18:19:24 -05006777 dev->hw_features |= NETIF_F_NTUPLE;
6778 if (bnxt_rfs_capable(bp)) {
6779 bp->flags |= BNXT_FLAG_RFS;
6780 dev->features |= NETIF_F_NTUPLE;
6781 }
6782 }
6783
Michael Chanc0c050c2015-10-22 16:01:17 -04006784 if (dev->hw_features & NETIF_F_HW_VLAN_CTAG_RX)
6785 bp->flags |= BNXT_FLAG_STRIP_VLAN;
6786
6787 rc = bnxt_probe_phy(bp);
6788 if (rc)
6789 goto init_err;
6790
6791 rc = register_netdev(dev);
6792 if (rc)
6793 goto init_err;
6794
6795 netdev_info(dev, "%s found at mem %lx, node addr %pM\n",
6796 board_info[ent->driver_data].name,
6797 (long)pci_resource_start(pdev, 0), dev->dev_addr);
6798
Ajit Khaparde90c4f782016-05-15 03:04:45 -04006799 bnxt_parse_log_pcie_link(bp);
6800
Michael Chanc0c050c2015-10-22 16:01:17 -04006801 return 0;
6802
6803init_err:
6804 pci_iounmap(pdev, bp->bar0);
6805 pci_release_regions(pdev);
6806 pci_disable_device(pdev);
6807
6808init_err_free:
6809 free_netdev(dev);
6810 return rc;
6811}
6812
Satish Baddipadige6316ea62016-03-07 15:38:48 -05006813/**
6814 * bnxt_io_error_detected - called when PCI error is detected
6815 * @pdev: Pointer to PCI device
6816 * @state: The current pci connection state
6817 *
6818 * This function is called after a PCI bus error affecting
6819 * this device has been detected.
6820 */
6821static pci_ers_result_t bnxt_io_error_detected(struct pci_dev *pdev,
6822 pci_channel_state_t state)
6823{
6824 struct net_device *netdev = pci_get_drvdata(pdev);
Michael Chan2a5bedf2016-07-01 18:46:21 -04006825 struct bnxt *bp = netdev_priv(netdev);
Satish Baddipadige6316ea62016-03-07 15:38:48 -05006826
6827 netdev_info(netdev, "PCI I/O error detected\n");
6828
6829 rtnl_lock();
6830 netif_device_detach(netdev);
6831
6832 if (state == pci_channel_io_perm_failure) {
6833 rtnl_unlock();
6834 return PCI_ERS_RESULT_DISCONNECT;
6835 }
6836
6837 if (netif_running(netdev))
6838 bnxt_close(netdev);
6839
Michael Chan2a5bedf2016-07-01 18:46:21 -04006840 /* So that func_reset will be done during slot_reset */
6841 clear_bit(BNXT_STATE_FN_RST_DONE, &bp->state);
Satish Baddipadige6316ea62016-03-07 15:38:48 -05006842 pci_disable_device(pdev);
6843 rtnl_unlock();
6844
6845 /* Request a slot slot reset. */
6846 return PCI_ERS_RESULT_NEED_RESET;
6847}
6848
6849/**
6850 * bnxt_io_slot_reset - called after the pci bus has been reset.
6851 * @pdev: Pointer to PCI device
6852 *
6853 * Restart the card from scratch, as if from a cold-boot.
6854 * At this point, the card has exprienced a hard reset,
6855 * followed by fixups by BIOS, and has its config space
6856 * set up identically to what it was at cold boot.
6857 */
6858static pci_ers_result_t bnxt_io_slot_reset(struct pci_dev *pdev)
6859{
6860 struct net_device *netdev = pci_get_drvdata(pdev);
6861 struct bnxt *bp = netdev_priv(netdev);
6862 int err = 0;
6863 pci_ers_result_t result = PCI_ERS_RESULT_DISCONNECT;
6864
6865 netdev_info(bp->dev, "PCI Slot Reset\n");
6866
6867 rtnl_lock();
6868
6869 if (pci_enable_device(pdev)) {
6870 dev_err(&pdev->dev,
6871 "Cannot re-enable PCI device after reset.\n");
6872 } else {
6873 pci_set_master(pdev);
6874
6875 if (netif_running(netdev))
6876 err = bnxt_open(netdev);
6877
6878 if (!err)
6879 result = PCI_ERS_RESULT_RECOVERED;
6880 }
6881
6882 if (result != PCI_ERS_RESULT_RECOVERED && netif_running(netdev))
6883 dev_close(netdev);
6884
6885 rtnl_unlock();
6886
6887 err = pci_cleanup_aer_uncorrect_error_status(pdev);
6888 if (err) {
6889 dev_err(&pdev->dev,
6890 "pci_cleanup_aer_uncorrect_error_status failed 0x%0x\n",
6891 err); /* non-fatal, continue */
6892 }
6893
6894 return PCI_ERS_RESULT_RECOVERED;
6895}
6896
6897/**
6898 * bnxt_io_resume - called when traffic can start flowing again.
6899 * @pdev: Pointer to PCI device
6900 *
6901 * This callback is called when the error recovery driver tells
6902 * us that its OK to resume normal operation.
6903 */
6904static void bnxt_io_resume(struct pci_dev *pdev)
6905{
6906 struct net_device *netdev = pci_get_drvdata(pdev);
6907
6908 rtnl_lock();
6909
6910 netif_device_attach(netdev);
6911
6912 rtnl_unlock();
6913}
6914
6915static const struct pci_error_handlers bnxt_err_handler = {
6916 .error_detected = bnxt_io_error_detected,
6917 .slot_reset = bnxt_io_slot_reset,
6918 .resume = bnxt_io_resume
6919};
6920
Michael Chanc0c050c2015-10-22 16:01:17 -04006921static struct pci_driver bnxt_pci_driver = {
6922 .name = DRV_MODULE_NAME,
6923 .id_table = bnxt_pci_tbl,
6924 .probe = bnxt_init_one,
6925 .remove = bnxt_remove_one,
Satish Baddipadige6316ea62016-03-07 15:38:48 -05006926 .err_handler = &bnxt_err_handler,
Michael Chanc0c050c2015-10-22 16:01:17 -04006927#if defined(CONFIG_BNXT_SRIOV)
6928 .sriov_configure = bnxt_sriov_configure,
6929#endif
6930};
6931
6932module_pci_driver(bnxt_pci_driver);