blob: af6c83f355ae67685efaffa5fd34b0bfebf385d8 [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 Chanbac9a7e2017-02-12 19:18:10 -05004 * Copyright (c) 2016-2017 Broadcom Limited
Michael Chanc0c050c2015-10-22 16:01:17 -04005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation.
9 */
10
11#include <linux/module.h>
12
13#include <linux/stringify.h>
14#include <linux/kernel.h>
15#include <linux/timer.h>
16#include <linux/errno.h>
17#include <linux/ioport.h>
18#include <linux/slab.h>
19#include <linux/vmalloc.h>
20#include <linux/interrupt.h>
21#include <linux/pci.h>
22#include <linux/netdevice.h>
23#include <linux/etherdevice.h>
24#include <linux/skbuff.h>
25#include <linux/dma-mapping.h>
26#include <linux/bitops.h>
27#include <linux/io.h>
28#include <linux/irq.h>
29#include <linux/delay.h>
30#include <asm/byteorder.h>
31#include <asm/page.h>
32#include <linux/time.h>
33#include <linux/mii.h>
34#include <linux/if.h>
35#include <linux/if_vlan.h>
Michael Chan32e8239c2017-07-24 12:34:21 -040036#include <linux/if_bridge.h>
Rob Swindell5ac67d82016-09-19 03:58:03 -040037#include <linux/rtc.h>
Michael Chanc6d30e82017-02-06 16:55:42 -050038#include <linux/bpf.h>
Michael Chanc0c050c2015-10-22 16:01:17 -040039#include <net/ip.h>
40#include <net/tcp.h>
41#include <net/udp.h>
42#include <net/checksum.h>
43#include <net/ip6_checksum.h>
Alexander Duyckad51b8e2016-06-16 12:21:19 -070044#include <net/udp_tunnel.h>
Michael Chanc0c050c2015-10-22 16:01:17 -040045#include <linux/workqueue.h>
46#include <linux/prefetch.h>
47#include <linux/cache.h>
48#include <linux/log2.h>
49#include <linux/aer.h>
50#include <linux/bitmap.h>
51#include <linux/cpu_rmap.h>
Vasundhara Volam56f0fd82017-08-28 13:40:27 -040052#include <linux/cpumask.h>
Sathya Perla2ae74082017-08-28 13:40:33 -040053#include <net/pkt_cls.h>
Michael Chanc0c050c2015-10-22 16:01:17 -040054
55#include "bnxt_hsi.h"
56#include "bnxt.h"
Michael Chana588e452016-12-07 00:26:21 -050057#include "bnxt_ulp.h"
Michael Chanc0c050c2015-10-22 16:01:17 -040058#include "bnxt_sriov.h"
59#include "bnxt_ethtool.h"
Michael Chan7df4ae92016-12-02 21:17:17 -050060#include "bnxt_dcb.h"
Michael Chanc6d30e82017-02-06 16:55:42 -050061#include "bnxt_xdp.h"
Sathya Perla4ab0c6a2017-07-24 12:34:27 -040062#include "bnxt_vfr.h"
Sathya Perla2ae74082017-08-28 13:40:33 -040063#include "bnxt_tc.h"
Steve Lin3c467bf2017-10-19 10:45:56 -040064#include "bnxt_devlink.h"
Michael Chanc0c050c2015-10-22 16:01:17 -040065
66#define BNXT_TX_TIMEOUT (5 * HZ)
67
68static const char version[] =
69 "Broadcom NetXtreme-C/E driver " DRV_MODULE_NAME " v" DRV_MODULE_VERSION "\n";
70
71MODULE_LICENSE("GPL");
72MODULE_DESCRIPTION("Broadcom BCM573xx network driver");
73MODULE_VERSION(DRV_MODULE_VERSION);
74
75#define BNXT_RX_OFFSET (NET_SKB_PAD + NET_IP_ALIGN)
76#define BNXT_RX_DMA_OFFSET NET_SKB_PAD
77#define BNXT_RX_COPY_THRESH 256
78
Michael Chan4419dbe2016-02-10 17:33:49 -050079#define BNXT_TX_PUSH_THRESH 164
Michael Chanc0c050c2015-10-22 16:01:17 -040080
81enum board_idx {
David Christensenfbc9a522015-12-27 18:19:29 -050082 BCM57301,
Michael Chanc0c050c2015-10-22 16:01:17 -040083 BCM57302,
84 BCM57304,
Michael Chan1f681682016-07-25 12:33:37 -040085 BCM57417_NPAR,
Prashant Sreedharanfa853dd2016-07-18 07:15:25 -040086 BCM58700,
Michael Chanb24eb6a2016-06-13 02:25:36 -040087 BCM57311,
88 BCM57312,
David Christensenfbc9a522015-12-27 18:19:29 -050089 BCM57402,
Michael Chanc0c050c2015-10-22 16:01:17 -040090 BCM57404,
91 BCM57406,
Michael Chan1f681682016-07-25 12:33:37 -040092 BCM57402_NPAR,
93 BCM57407,
Michael Chanb24eb6a2016-06-13 02:25:36 -040094 BCM57412,
95 BCM57414,
96 BCM57416,
97 BCM57417,
Michael Chan1f681682016-07-25 12:33:37 -040098 BCM57412_NPAR,
Michael Chan5049e332016-05-15 03:04:50 -040099 BCM57314,
Michael Chan1f681682016-07-25 12:33:37 -0400100 BCM57417_SFP,
101 BCM57416_SFP,
102 BCM57404_NPAR,
103 BCM57406_NPAR,
104 BCM57407_SFP,
Michael Chanadbc8302016-09-19 03:58:01 -0400105 BCM57407_NPAR,
Michael Chan1f681682016-07-25 12:33:37 -0400106 BCM57414_NPAR,
107 BCM57416_NPAR,
Deepak Khungar32b40792017-02-12 19:18:18 -0500108 BCM57452,
109 BCM57454,
Ray Jui4a581392017-08-28 13:40:28 -0400110 BCM58802,
Ray Jui8ed693b2017-10-26 11:51:20 -0400111 BCM58804,
Ray Jui4a581392017-08-28 13:40:28 -0400112 BCM58808,
Michael Chanadbc8302016-09-19 03:58:01 -0400113 NETXTREME_E_VF,
114 NETXTREME_C_VF,
Rob Miller618784e2017-10-26 11:51:21 -0400115 NETXTREME_S_VF,
Michael Chanc0c050c2015-10-22 16:01:17 -0400116};
117
118/* indexed by enum above */
119static const struct {
120 char *name;
121} board_info[] = {
Scott Branden27573a72017-08-28 13:40:29 -0400122 [BCM57301] = { "Broadcom BCM57301 NetXtreme-C 10Gb Ethernet" },
123 [BCM57302] = { "Broadcom BCM57302 NetXtreme-C 10Gb/25Gb Ethernet" },
124 [BCM57304] = { "Broadcom BCM57304 NetXtreme-C 10Gb/25Gb/40Gb/50Gb Ethernet" },
125 [BCM57417_NPAR] = { "Broadcom BCM57417 NetXtreme-E Ethernet Partition" },
126 [BCM58700] = { "Broadcom BCM58700 Nitro 1Gb/2.5Gb/10Gb Ethernet" },
127 [BCM57311] = { "Broadcom BCM57311 NetXtreme-C 10Gb Ethernet" },
128 [BCM57312] = { "Broadcom BCM57312 NetXtreme-C 10Gb/25Gb Ethernet" },
129 [BCM57402] = { "Broadcom BCM57402 NetXtreme-E 10Gb Ethernet" },
130 [BCM57404] = { "Broadcom BCM57404 NetXtreme-E 10Gb/25Gb Ethernet" },
131 [BCM57406] = { "Broadcom BCM57406 NetXtreme-E 10GBase-T Ethernet" },
132 [BCM57402_NPAR] = { "Broadcom BCM57402 NetXtreme-E Ethernet Partition" },
133 [BCM57407] = { "Broadcom BCM57407 NetXtreme-E 10GBase-T Ethernet" },
134 [BCM57412] = { "Broadcom BCM57412 NetXtreme-E 10Gb Ethernet" },
135 [BCM57414] = { "Broadcom BCM57414 NetXtreme-E 10Gb/25Gb Ethernet" },
136 [BCM57416] = { "Broadcom BCM57416 NetXtreme-E 10GBase-T Ethernet" },
137 [BCM57417] = { "Broadcom BCM57417 NetXtreme-E 10GBase-T Ethernet" },
138 [BCM57412_NPAR] = { "Broadcom BCM57412 NetXtreme-E Ethernet Partition" },
139 [BCM57314] = { "Broadcom BCM57314 NetXtreme-C 10Gb/25Gb/40Gb/50Gb Ethernet" },
140 [BCM57417_SFP] = { "Broadcom BCM57417 NetXtreme-E 10Gb/25Gb Ethernet" },
141 [BCM57416_SFP] = { "Broadcom BCM57416 NetXtreme-E 10Gb Ethernet" },
142 [BCM57404_NPAR] = { "Broadcom BCM57404 NetXtreme-E Ethernet Partition" },
143 [BCM57406_NPAR] = { "Broadcom BCM57406 NetXtreme-E Ethernet Partition" },
144 [BCM57407_SFP] = { "Broadcom BCM57407 NetXtreme-E 25Gb Ethernet" },
145 [BCM57407_NPAR] = { "Broadcom BCM57407 NetXtreme-E Ethernet Partition" },
146 [BCM57414_NPAR] = { "Broadcom BCM57414 NetXtreme-E Ethernet Partition" },
147 [BCM57416_NPAR] = { "Broadcom BCM57416 NetXtreme-E Ethernet Partition" },
148 [BCM57452] = { "Broadcom BCM57452 NetXtreme-E 10Gb/25Gb/40Gb/50Gb Ethernet" },
149 [BCM57454] = { "Broadcom BCM57454 NetXtreme-E 10Gb/25Gb/40Gb/50Gb/100Gb Ethernet" },
150 [BCM58802] = { "Broadcom BCM58802 NetXtreme-S 10Gb/25Gb/40Gb/50Gb Ethernet" },
Ray Jui8ed693b2017-10-26 11:51:20 -0400151 [BCM58804] = { "Broadcom BCM58804 NetXtreme-S 10Gb/25Gb/40Gb/50Gb/100Gb Ethernet" },
Scott Branden27573a72017-08-28 13:40:29 -0400152 [BCM58808] = { "Broadcom BCM58808 NetXtreme-S 10Gb/25Gb/40Gb/50Gb/100Gb Ethernet" },
153 [NETXTREME_E_VF] = { "Broadcom NetXtreme-E Ethernet Virtual Function" },
154 [NETXTREME_C_VF] = { "Broadcom NetXtreme-C Ethernet Virtual Function" },
Rob Miller618784e2017-10-26 11:51:21 -0400155 [NETXTREME_S_VF] = { "Broadcom NetXtreme-S Ethernet Virtual Function" },
Michael Chanc0c050c2015-10-22 16:01:17 -0400156};
157
158static const struct pci_device_id bnxt_pci_tbl[] = {
Ray Jui4a581392017-08-28 13:40:28 -0400159 { PCI_VDEVICE(BROADCOM, 0x1614), .driver_data = BCM57454 },
Michael Chanadbc8302016-09-19 03:58:01 -0400160 { PCI_VDEVICE(BROADCOM, 0x16c0), .driver_data = BCM57417_NPAR },
David Christensenfbc9a522015-12-27 18:19:29 -0500161 { PCI_VDEVICE(BROADCOM, 0x16c8), .driver_data = BCM57301 },
Michael Chanc0c050c2015-10-22 16:01:17 -0400162 { PCI_VDEVICE(BROADCOM, 0x16c9), .driver_data = BCM57302 },
163 { PCI_VDEVICE(BROADCOM, 0x16ca), .driver_data = BCM57304 },
Michael Chan1f681682016-07-25 12:33:37 -0400164 { PCI_VDEVICE(BROADCOM, 0x16cc), .driver_data = BCM57417_NPAR },
Prashant Sreedharanfa853dd2016-07-18 07:15:25 -0400165 { PCI_VDEVICE(BROADCOM, 0x16cd), .driver_data = BCM58700 },
Michael Chanb24eb6a2016-06-13 02:25:36 -0400166 { PCI_VDEVICE(BROADCOM, 0x16ce), .driver_data = BCM57311 },
167 { PCI_VDEVICE(BROADCOM, 0x16cf), .driver_data = BCM57312 },
David Christensenfbc9a522015-12-27 18:19:29 -0500168 { PCI_VDEVICE(BROADCOM, 0x16d0), .driver_data = BCM57402 },
Michael Chanc0c050c2015-10-22 16:01:17 -0400169 { PCI_VDEVICE(BROADCOM, 0x16d1), .driver_data = BCM57404 },
170 { PCI_VDEVICE(BROADCOM, 0x16d2), .driver_data = BCM57406 },
Michael Chan1f681682016-07-25 12:33:37 -0400171 { PCI_VDEVICE(BROADCOM, 0x16d4), .driver_data = BCM57402_NPAR },
172 { PCI_VDEVICE(BROADCOM, 0x16d5), .driver_data = BCM57407 },
Michael Chanb24eb6a2016-06-13 02:25:36 -0400173 { PCI_VDEVICE(BROADCOM, 0x16d6), .driver_data = BCM57412 },
174 { PCI_VDEVICE(BROADCOM, 0x16d7), .driver_data = BCM57414 },
175 { PCI_VDEVICE(BROADCOM, 0x16d8), .driver_data = BCM57416 },
176 { PCI_VDEVICE(BROADCOM, 0x16d9), .driver_data = BCM57417 },
Michael Chan1f681682016-07-25 12:33:37 -0400177 { PCI_VDEVICE(BROADCOM, 0x16de), .driver_data = BCM57412_NPAR },
Michael Chan5049e332016-05-15 03:04:50 -0400178 { PCI_VDEVICE(BROADCOM, 0x16df), .driver_data = BCM57314 },
Michael Chan1f681682016-07-25 12:33:37 -0400179 { PCI_VDEVICE(BROADCOM, 0x16e2), .driver_data = BCM57417_SFP },
180 { PCI_VDEVICE(BROADCOM, 0x16e3), .driver_data = BCM57416_SFP },
181 { PCI_VDEVICE(BROADCOM, 0x16e7), .driver_data = BCM57404_NPAR },
182 { PCI_VDEVICE(BROADCOM, 0x16e8), .driver_data = BCM57406_NPAR },
183 { PCI_VDEVICE(BROADCOM, 0x16e9), .driver_data = BCM57407_SFP },
Michael Chanadbc8302016-09-19 03:58:01 -0400184 { PCI_VDEVICE(BROADCOM, 0x16ea), .driver_data = BCM57407_NPAR },
185 { PCI_VDEVICE(BROADCOM, 0x16eb), .driver_data = BCM57412_NPAR },
Michael Chan1f681682016-07-25 12:33:37 -0400186 { PCI_VDEVICE(BROADCOM, 0x16ec), .driver_data = BCM57414_NPAR },
Michael Chanadbc8302016-09-19 03:58:01 -0400187 { PCI_VDEVICE(BROADCOM, 0x16ed), .driver_data = BCM57414_NPAR },
Michael Chan1f681682016-07-25 12:33:37 -0400188 { PCI_VDEVICE(BROADCOM, 0x16ee), .driver_data = BCM57416_NPAR },
Michael Chanadbc8302016-09-19 03:58:01 -0400189 { PCI_VDEVICE(BROADCOM, 0x16ef), .driver_data = BCM57416_NPAR },
Ray Jui4a581392017-08-28 13:40:28 -0400190 { PCI_VDEVICE(BROADCOM, 0x16f0), .driver_data = BCM58808 },
Deepak Khungar32b40792017-02-12 19:18:18 -0500191 { PCI_VDEVICE(BROADCOM, 0x16f1), .driver_data = BCM57452 },
Ray Jui4a581392017-08-28 13:40:28 -0400192 { PCI_VDEVICE(BROADCOM, 0xd802), .driver_data = BCM58802 },
Ray Jui8ed693b2017-10-26 11:51:20 -0400193 { PCI_VDEVICE(BROADCOM, 0xd804), .driver_data = BCM58804 },
Michael Chanc0c050c2015-10-22 16:01:17 -0400194#ifdef CONFIG_BNXT_SRIOV
Deepak Khungarc7ef35e2017-05-29 19:06:05 -0400195 { PCI_VDEVICE(BROADCOM, 0x1606), .driver_data = NETXTREME_E_VF },
196 { PCI_VDEVICE(BROADCOM, 0x1609), .driver_data = NETXTREME_E_VF },
Michael Chanadbc8302016-09-19 03:58:01 -0400197 { PCI_VDEVICE(BROADCOM, 0x16c1), .driver_data = NETXTREME_E_VF },
198 { PCI_VDEVICE(BROADCOM, 0x16cb), .driver_data = NETXTREME_C_VF },
199 { PCI_VDEVICE(BROADCOM, 0x16d3), .driver_data = NETXTREME_E_VF },
200 { PCI_VDEVICE(BROADCOM, 0x16dc), .driver_data = NETXTREME_E_VF },
201 { PCI_VDEVICE(BROADCOM, 0x16e1), .driver_data = NETXTREME_C_VF },
202 { PCI_VDEVICE(BROADCOM, 0x16e5), .driver_data = NETXTREME_C_VF },
Rob Miller618784e2017-10-26 11:51:21 -0400203 { PCI_VDEVICE(BROADCOM, 0xd800), .driver_data = NETXTREME_S_VF },
Michael Chanc0c050c2015-10-22 16:01:17 -0400204#endif
205 { 0 }
206};
207
208MODULE_DEVICE_TABLE(pci, bnxt_pci_tbl);
209
210static const u16 bnxt_vf_req_snif[] = {
211 HWRM_FUNC_CFG,
212 HWRM_PORT_PHY_QCFG,
213 HWRM_CFA_L2_FILTER_ALLOC,
214};
215
Michael Chan25be8622016-04-05 14:09:00 -0400216static const u16 bnxt_async_events_arr[] = {
Michael Chan87c374d2016-12-02 21:17:16 -0500217 ASYNC_EVENT_CMPL_EVENT_ID_LINK_STATUS_CHANGE,
218 ASYNC_EVENT_CMPL_EVENT_ID_PF_DRVR_UNLOAD,
219 ASYNC_EVENT_CMPL_EVENT_ID_PORT_CONN_NOT_ALLOWED,
220 ASYNC_EVENT_CMPL_EVENT_ID_VF_CFG_CHANGE,
221 ASYNC_EVENT_CMPL_EVENT_ID_LINK_SPEED_CFG_CHANGE,
Michael Chan25be8622016-04-05 14:09:00 -0400222};
223
Michael Chanc213eae2017-10-13 21:09:29 -0400224static struct workqueue_struct *bnxt_pf_wq;
225
Michael Chanc0c050c2015-10-22 16:01:17 -0400226static bool bnxt_vf_pciid(enum board_idx idx)
227{
Rob Miller618784e2017-10-26 11:51:21 -0400228 return (idx == NETXTREME_C_VF || idx == NETXTREME_E_VF ||
229 idx == NETXTREME_S_VF);
Michael Chanc0c050c2015-10-22 16:01:17 -0400230}
231
232#define DB_CP_REARM_FLAGS (DB_KEY_CP | DB_IDX_VALID)
233#define DB_CP_FLAGS (DB_KEY_CP | DB_IDX_VALID | DB_IRQ_DIS)
234#define DB_CP_IRQ_DIS_FLAGS (DB_KEY_CP | DB_IRQ_DIS)
235
236#define BNXT_CP_DB_REARM(db, raw_cons) \
237 writel(DB_CP_REARM_FLAGS | RING_CMP(raw_cons), db)
238
239#define BNXT_CP_DB(db, raw_cons) \
240 writel(DB_CP_FLAGS | RING_CMP(raw_cons), db)
241
242#define BNXT_CP_DB_IRQ_DIS(db) \
243 writel(DB_CP_IRQ_DIS_FLAGS, db)
244
Michael Chan38413402017-02-06 16:55:43 -0500245const u16 bnxt_lhint_arr[] = {
Michael Chanc0c050c2015-10-22 16:01:17 -0400246 TX_BD_FLAGS_LHINT_512_AND_SMALLER,
247 TX_BD_FLAGS_LHINT_512_TO_1023,
248 TX_BD_FLAGS_LHINT_1024_TO_2047,
249 TX_BD_FLAGS_LHINT_1024_TO_2047,
250 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
251 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
252 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
253 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
254 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
255 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
256 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
257 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
258 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
259 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
260 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
261 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
262 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
263 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
264 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
265};
266
Sathya Perlaee5c7fb2017-07-24 12:34:28 -0400267static u16 bnxt_xmit_get_cfa_action(struct sk_buff *skb)
268{
269 struct metadata_dst *md_dst = skb_metadata_dst(skb);
270
271 if (!md_dst || md_dst->type != METADATA_HW_PORT_MUX)
272 return 0;
273
274 return md_dst->u.port_info.port_id;
275}
276
Michael Chanc0c050c2015-10-22 16:01:17 -0400277static netdev_tx_t bnxt_start_xmit(struct sk_buff *skb, struct net_device *dev)
278{
279 struct bnxt *bp = netdev_priv(dev);
280 struct tx_bd *txbd;
281 struct tx_bd_ext *txbd1;
282 struct netdev_queue *txq;
283 int i;
284 dma_addr_t mapping;
285 unsigned int length, pad = 0;
286 u32 len, free_size, vlan_tag_flags, cfa_action, flags;
287 u16 prod, last_frag;
288 struct pci_dev *pdev = bp->pdev;
Michael Chanc0c050c2015-10-22 16:01:17 -0400289 struct bnxt_tx_ring_info *txr;
290 struct bnxt_sw_tx_bd *tx_buf;
291
292 i = skb_get_queue_mapping(skb);
293 if (unlikely(i >= bp->tx_nr_rings)) {
294 dev_kfree_skb_any(skb);
295 return NETDEV_TX_OK;
296 }
297
Michael Chanc0c050c2015-10-22 16:01:17 -0400298 txq = netdev_get_tx_queue(dev, i);
Michael Chana960dec2017-02-06 16:55:39 -0500299 txr = &bp->tx_ring[bp->tx_ring_map[i]];
Michael Chanc0c050c2015-10-22 16:01:17 -0400300 prod = txr->tx_prod;
301
302 free_size = bnxt_tx_avail(bp, txr);
303 if (unlikely(free_size < skb_shinfo(skb)->nr_frags + 2)) {
304 netif_tx_stop_queue(txq);
305 return NETDEV_TX_BUSY;
306 }
307
308 length = skb->len;
309 len = skb_headlen(skb);
310 last_frag = skb_shinfo(skb)->nr_frags;
311
312 txbd = &txr->tx_desc_ring[TX_RING(prod)][TX_IDX(prod)];
313
314 txbd->tx_bd_opaque = prod;
315
316 tx_buf = &txr->tx_buf_ring[prod];
317 tx_buf->skb = skb;
318 tx_buf->nr_frags = last_frag;
319
320 vlan_tag_flags = 0;
Sathya Perlaee5c7fb2017-07-24 12:34:28 -0400321 cfa_action = bnxt_xmit_get_cfa_action(skb);
Michael Chanc0c050c2015-10-22 16:01:17 -0400322 if (skb_vlan_tag_present(skb)) {
323 vlan_tag_flags = TX_BD_CFA_META_KEY_VLAN |
324 skb_vlan_tag_get(skb);
325 /* Currently supports 8021Q, 8021AD vlan offloads
326 * QINQ1, QINQ2, QINQ3 vlan headers are deprecated
327 */
328 if (skb->vlan_proto == htons(ETH_P_8021Q))
329 vlan_tag_flags |= 1 << TX_BD_CFA_META_TPID_SHIFT;
330 }
331
332 if (free_size == bp->tx_ring_size && length <= bp->tx_push_thresh) {
Michael Chan4419dbe2016-02-10 17:33:49 -0500333 struct tx_push_buffer *tx_push_buf = txr->tx_push;
334 struct tx_push_bd *tx_push = &tx_push_buf->push_bd;
335 struct tx_bd_ext *tx_push1 = &tx_push->txbd2;
336 void *pdata = tx_push_buf->data;
337 u64 *end;
338 int j, push_len;
Michael Chanc0c050c2015-10-22 16:01:17 -0400339
340 /* Set COAL_NOW to be ready quickly for the next push */
341 tx_push->tx_bd_len_flags_type =
342 cpu_to_le32((length << TX_BD_LEN_SHIFT) |
343 TX_BD_TYPE_LONG_TX_BD |
344 TX_BD_FLAGS_LHINT_512_AND_SMALLER |
345 TX_BD_FLAGS_COAL_NOW |
346 TX_BD_FLAGS_PACKET_END |
347 (2 << TX_BD_FLAGS_BD_CNT_SHIFT));
348
349 if (skb->ip_summed == CHECKSUM_PARTIAL)
350 tx_push1->tx_bd_hsize_lflags =
351 cpu_to_le32(TX_BD_FLAGS_TCP_UDP_CHKSUM);
352 else
353 tx_push1->tx_bd_hsize_lflags = 0;
354
355 tx_push1->tx_bd_cfa_meta = cpu_to_le32(vlan_tag_flags);
Sathya Perlaee5c7fb2017-07-24 12:34:28 -0400356 tx_push1->tx_bd_cfa_action =
357 cpu_to_le32(cfa_action << TX_BD_CFA_ACTION_SHIFT);
Michael Chanc0c050c2015-10-22 16:01:17 -0400358
Michael Chanfbb0fa82016-02-22 02:10:26 -0500359 end = pdata + length;
360 end = PTR_ALIGN(end, 8) - 1;
Michael Chan4419dbe2016-02-10 17:33:49 -0500361 *end = 0;
362
Michael Chanc0c050c2015-10-22 16:01:17 -0400363 skb_copy_from_linear_data(skb, pdata, len);
364 pdata += len;
365 for (j = 0; j < last_frag; j++) {
366 skb_frag_t *frag = &skb_shinfo(skb)->frags[j];
367 void *fptr;
368
369 fptr = skb_frag_address_safe(frag);
370 if (!fptr)
371 goto normal_tx;
372
373 memcpy(pdata, fptr, skb_frag_size(frag));
374 pdata += skb_frag_size(frag);
375 }
376
Michael Chan4419dbe2016-02-10 17:33:49 -0500377 txbd->tx_bd_len_flags_type = tx_push->tx_bd_len_flags_type;
378 txbd->tx_bd_haddr = txr->data_mapping;
Michael Chanc0c050c2015-10-22 16:01:17 -0400379 prod = NEXT_TX(prod);
380 txbd = &txr->tx_desc_ring[TX_RING(prod)][TX_IDX(prod)];
381 memcpy(txbd, tx_push1, sizeof(*txbd));
382 prod = NEXT_TX(prod);
Michael Chan4419dbe2016-02-10 17:33:49 -0500383 tx_push->doorbell =
Michael Chanc0c050c2015-10-22 16:01:17 -0400384 cpu_to_le32(DB_KEY_TX_PUSH | DB_LONG_TX_PUSH | prod);
385 txr->tx_prod = prod;
386
Michael Chanb9a84602016-06-06 02:37:14 -0400387 tx_buf->is_push = 1;
Michael Chanc0c050c2015-10-22 16:01:17 -0400388 netdev_tx_sent_queue(txq, skb->len);
Michael Chanb9a84602016-06-06 02:37:14 -0400389 wmb(); /* Sync is_push and byte queue before pushing data */
Michael Chanc0c050c2015-10-22 16:01:17 -0400390
Michael Chan4419dbe2016-02-10 17:33:49 -0500391 push_len = (length + sizeof(*tx_push) + 7) / 8;
392 if (push_len > 16) {
393 __iowrite64_copy(txr->tx_doorbell, tx_push_buf, 16);
Michael Chan9d137442016-09-05 01:57:35 -0400394 __iowrite32_copy(txr->tx_doorbell + 4, tx_push_buf + 1,
395 (push_len - 16) << 1);
Michael Chan4419dbe2016-02-10 17:33:49 -0500396 } else {
397 __iowrite64_copy(txr->tx_doorbell, tx_push_buf,
398 push_len);
399 }
Michael Chanc0c050c2015-10-22 16:01:17 -0400400
Michael Chanc0c050c2015-10-22 16:01:17 -0400401 goto tx_done;
402 }
403
404normal_tx:
405 if (length < BNXT_MIN_PKT_SIZE) {
406 pad = BNXT_MIN_PKT_SIZE - length;
407 if (skb_pad(skb, pad)) {
408 /* SKB already freed. */
409 tx_buf->skb = NULL;
410 return NETDEV_TX_OK;
411 }
412 length = BNXT_MIN_PKT_SIZE;
413 }
414
415 mapping = dma_map_single(&pdev->dev, skb->data, len, DMA_TO_DEVICE);
416
417 if (unlikely(dma_mapping_error(&pdev->dev, mapping))) {
418 dev_kfree_skb_any(skb);
419 tx_buf->skb = NULL;
420 return NETDEV_TX_OK;
421 }
422
423 dma_unmap_addr_set(tx_buf, mapping, mapping);
424 flags = (len << TX_BD_LEN_SHIFT) | TX_BD_TYPE_LONG_TX_BD |
425 ((last_frag + 2) << TX_BD_FLAGS_BD_CNT_SHIFT);
426
427 txbd->tx_bd_haddr = cpu_to_le64(mapping);
428
429 prod = NEXT_TX(prod);
430 txbd1 = (struct tx_bd_ext *)
431 &txr->tx_desc_ring[TX_RING(prod)][TX_IDX(prod)];
432
433 txbd1->tx_bd_hsize_lflags = 0;
434 if (skb_is_gso(skb)) {
435 u32 hdr_len;
436
437 if (skb->encapsulation)
438 hdr_len = skb_inner_network_offset(skb) +
439 skb_inner_network_header_len(skb) +
440 inner_tcp_hdrlen(skb);
441 else
442 hdr_len = skb_transport_offset(skb) +
443 tcp_hdrlen(skb);
444
445 txbd1->tx_bd_hsize_lflags = cpu_to_le32(TX_BD_FLAGS_LSO |
446 TX_BD_FLAGS_T_IPID |
447 (hdr_len << (TX_BD_HSIZE_SHIFT - 1)));
448 length = skb_shinfo(skb)->gso_size;
449 txbd1->tx_bd_mss = cpu_to_le32(length);
450 length += hdr_len;
451 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
452 txbd1->tx_bd_hsize_lflags =
453 cpu_to_le32(TX_BD_FLAGS_TCP_UDP_CHKSUM);
454 txbd1->tx_bd_mss = 0;
455 }
456
457 length >>= 9;
458 flags |= bnxt_lhint_arr[length];
459 txbd->tx_bd_len_flags_type = cpu_to_le32(flags);
460
461 txbd1->tx_bd_cfa_meta = cpu_to_le32(vlan_tag_flags);
Sathya Perlaee5c7fb2017-07-24 12:34:28 -0400462 txbd1->tx_bd_cfa_action =
463 cpu_to_le32(cfa_action << TX_BD_CFA_ACTION_SHIFT);
Michael Chanc0c050c2015-10-22 16:01:17 -0400464 for (i = 0; i < last_frag; i++) {
465 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
466
467 prod = NEXT_TX(prod);
468 txbd = &txr->tx_desc_ring[TX_RING(prod)][TX_IDX(prod)];
469
470 len = skb_frag_size(frag);
471 mapping = skb_frag_dma_map(&pdev->dev, frag, 0, len,
472 DMA_TO_DEVICE);
473
474 if (unlikely(dma_mapping_error(&pdev->dev, mapping)))
475 goto tx_dma_error;
476
477 tx_buf = &txr->tx_buf_ring[prod];
478 dma_unmap_addr_set(tx_buf, mapping, mapping);
479
480 txbd->tx_bd_haddr = cpu_to_le64(mapping);
481
482 flags = len << TX_BD_LEN_SHIFT;
483 txbd->tx_bd_len_flags_type = cpu_to_le32(flags);
484 }
485
486 flags &= ~TX_BD_LEN;
487 txbd->tx_bd_len_flags_type =
488 cpu_to_le32(((len + pad) << TX_BD_LEN_SHIFT) | flags |
489 TX_BD_FLAGS_PACKET_END);
490
491 netdev_tx_sent_queue(txq, skb->len);
492
493 /* Sync BD data before updating doorbell */
494 wmb();
495
496 prod = NEXT_TX(prod);
497 txr->tx_prod = prod;
498
Michael Chanffe40642017-05-30 20:03:00 -0400499 if (!skb->xmit_more || netif_xmit_stopped(txq))
Michael Chan4d172f22017-05-29 19:06:09 -0400500 bnxt_db_write(bp, txr->tx_doorbell, DB_KEY_TX | prod);
Michael Chanc0c050c2015-10-22 16:01:17 -0400501
502tx_done:
503
504 mmiowb();
505
506 if (unlikely(bnxt_tx_avail(bp, txr) <= MAX_SKB_FRAGS + 1)) {
Michael Chan4d172f22017-05-29 19:06:09 -0400507 if (skb->xmit_more && !tx_buf->is_push)
508 bnxt_db_write(bp, txr->tx_doorbell, DB_KEY_TX | prod);
509
Michael Chanc0c050c2015-10-22 16:01:17 -0400510 netif_tx_stop_queue(txq);
511
512 /* netif_tx_stop_queue() must be done before checking
513 * tx index in bnxt_tx_avail() below, because in
514 * bnxt_tx_int(), we update tx index before checking for
515 * netif_tx_queue_stopped().
516 */
517 smp_mb();
518 if (bnxt_tx_avail(bp, txr) > bp->tx_wake_thresh)
519 netif_tx_wake_queue(txq);
520 }
521 return NETDEV_TX_OK;
522
523tx_dma_error:
524 last_frag = i;
525
526 /* start back at beginning and unmap skb */
527 prod = txr->tx_prod;
528 tx_buf = &txr->tx_buf_ring[prod];
529 tx_buf->skb = NULL;
530 dma_unmap_single(&pdev->dev, dma_unmap_addr(tx_buf, mapping),
531 skb_headlen(skb), PCI_DMA_TODEVICE);
532 prod = NEXT_TX(prod);
533
534 /* unmap remaining mapped pages */
535 for (i = 0; i < last_frag; i++) {
536 prod = NEXT_TX(prod);
537 tx_buf = &txr->tx_buf_ring[prod];
538 dma_unmap_page(&pdev->dev, dma_unmap_addr(tx_buf, mapping),
539 skb_frag_size(&skb_shinfo(skb)->frags[i]),
540 PCI_DMA_TODEVICE);
541 }
542
543 dev_kfree_skb_any(skb);
544 return NETDEV_TX_OK;
545}
546
547static void bnxt_tx_int(struct bnxt *bp, struct bnxt_napi *bnapi, int nr_pkts)
548{
Michael Chanb6ab4b02016-01-02 23:44:59 -0500549 struct bnxt_tx_ring_info *txr = bnapi->tx_ring;
Michael Chana960dec2017-02-06 16:55:39 -0500550 struct netdev_queue *txq = netdev_get_tx_queue(bp->dev, txr->txq_index);
Michael Chanc0c050c2015-10-22 16:01:17 -0400551 u16 cons = txr->tx_cons;
552 struct pci_dev *pdev = bp->pdev;
553 int i;
554 unsigned int tx_bytes = 0;
555
556 for (i = 0; i < nr_pkts; i++) {
557 struct bnxt_sw_tx_bd *tx_buf;
558 struct sk_buff *skb;
559 int j, last;
560
561 tx_buf = &txr->tx_buf_ring[cons];
562 cons = NEXT_TX(cons);
563 skb = tx_buf->skb;
564 tx_buf->skb = NULL;
565
566 if (tx_buf->is_push) {
567 tx_buf->is_push = 0;
568 goto next_tx_int;
569 }
570
571 dma_unmap_single(&pdev->dev, dma_unmap_addr(tx_buf, mapping),
572 skb_headlen(skb), PCI_DMA_TODEVICE);
573 last = tx_buf->nr_frags;
574
575 for (j = 0; j < last; j++) {
576 cons = NEXT_TX(cons);
577 tx_buf = &txr->tx_buf_ring[cons];
578 dma_unmap_page(
579 &pdev->dev,
580 dma_unmap_addr(tx_buf, mapping),
581 skb_frag_size(&skb_shinfo(skb)->frags[j]),
582 PCI_DMA_TODEVICE);
583 }
584
585next_tx_int:
586 cons = NEXT_TX(cons);
587
588 tx_bytes += skb->len;
589 dev_kfree_skb_any(skb);
590 }
591
592 netdev_tx_completed_queue(txq, nr_pkts, tx_bytes);
593 txr->tx_cons = cons;
594
595 /* Need to make the tx_cons update visible to bnxt_start_xmit()
596 * before checking for netif_tx_queue_stopped(). Without the
597 * memory barrier, there is a small possibility that bnxt_start_xmit()
598 * will miss it and cause the queue to be stopped forever.
599 */
600 smp_mb();
601
602 if (unlikely(netif_tx_queue_stopped(txq)) &&
603 (bnxt_tx_avail(bp, txr) > bp->tx_wake_thresh)) {
604 __netif_tx_lock(txq, smp_processor_id());
605 if (netif_tx_queue_stopped(txq) &&
606 bnxt_tx_avail(bp, txr) > bp->tx_wake_thresh &&
607 txr->dev_state != BNXT_DEV_STATE_CLOSING)
608 netif_tx_wake_queue(txq);
609 __netif_tx_unlock(txq);
610 }
611}
612
Michael Chanc61fb992017-02-06 16:55:36 -0500613static struct page *__bnxt_alloc_rx_page(struct bnxt *bp, dma_addr_t *mapping,
614 gfp_t gfp)
615{
616 struct device *dev = &bp->pdev->dev;
617 struct page *page;
618
619 page = alloc_page(gfp);
620 if (!page)
621 return NULL;
622
Shannon Nelsonc519fe92017-05-09 18:30:12 -0700623 *mapping = dma_map_page_attrs(dev, page, 0, PAGE_SIZE, bp->rx_dir,
624 DMA_ATTR_WEAK_ORDERING);
Michael Chanc61fb992017-02-06 16:55:36 -0500625 if (dma_mapping_error(dev, *mapping)) {
626 __free_page(page);
627 return NULL;
628 }
629 *mapping += bp->rx_dma_offset;
630 return page;
631}
632
Michael Chanc0c050c2015-10-22 16:01:17 -0400633static inline u8 *__bnxt_alloc_rx_data(struct bnxt *bp, dma_addr_t *mapping,
634 gfp_t gfp)
635{
636 u8 *data;
637 struct pci_dev *pdev = bp->pdev;
638
639 data = kmalloc(bp->rx_buf_size, gfp);
640 if (!data)
641 return NULL;
642
Shannon Nelsonc519fe92017-05-09 18:30:12 -0700643 *mapping = dma_map_single_attrs(&pdev->dev, data + bp->rx_dma_offset,
644 bp->rx_buf_use_size, bp->rx_dir,
645 DMA_ATTR_WEAK_ORDERING);
Michael Chanc0c050c2015-10-22 16:01:17 -0400646
647 if (dma_mapping_error(&pdev->dev, *mapping)) {
648 kfree(data);
649 data = NULL;
650 }
651 return data;
652}
653
Michael Chan38413402017-02-06 16:55:43 -0500654int bnxt_alloc_rx_data(struct bnxt *bp, struct bnxt_rx_ring_info *rxr,
655 u16 prod, gfp_t gfp)
Michael Chanc0c050c2015-10-22 16:01:17 -0400656{
657 struct rx_bd *rxbd = &rxr->rx_desc_ring[RX_RING(prod)][RX_IDX(prod)];
658 struct bnxt_sw_rx_bd *rx_buf = &rxr->rx_buf_ring[prod];
Michael Chanc0c050c2015-10-22 16:01:17 -0400659 dma_addr_t mapping;
660
Michael Chanc61fb992017-02-06 16:55:36 -0500661 if (BNXT_RX_PAGE_MODE(bp)) {
662 struct page *page = __bnxt_alloc_rx_page(bp, &mapping, gfp);
Michael Chanc0c050c2015-10-22 16:01:17 -0400663
Michael Chanc61fb992017-02-06 16:55:36 -0500664 if (!page)
665 return -ENOMEM;
666
667 rx_buf->data = page;
668 rx_buf->data_ptr = page_address(page) + bp->rx_offset;
669 } else {
670 u8 *data = __bnxt_alloc_rx_data(bp, &mapping, gfp);
671
672 if (!data)
673 return -ENOMEM;
674
675 rx_buf->data = data;
676 rx_buf->data_ptr = data + bp->rx_offset;
677 }
Michael Chan11cd1192017-02-06 16:55:33 -0500678 rx_buf->mapping = mapping;
Michael Chanc0c050c2015-10-22 16:01:17 -0400679
680 rxbd->rx_bd_haddr = cpu_to_le64(mapping);
Michael Chanc0c050c2015-10-22 16:01:17 -0400681 return 0;
682}
683
Michael Chanc6d30e82017-02-06 16:55:42 -0500684void bnxt_reuse_rx_data(struct bnxt_rx_ring_info *rxr, u16 cons, void *data)
Michael Chanc0c050c2015-10-22 16:01:17 -0400685{
686 u16 prod = rxr->rx_prod;
687 struct bnxt_sw_rx_bd *cons_rx_buf, *prod_rx_buf;
688 struct rx_bd *cons_bd, *prod_bd;
689
690 prod_rx_buf = &rxr->rx_buf_ring[prod];
691 cons_rx_buf = &rxr->rx_buf_ring[cons];
692
693 prod_rx_buf->data = data;
Michael Chan6bb19472017-02-06 16:55:32 -0500694 prod_rx_buf->data_ptr = cons_rx_buf->data_ptr;
Michael Chanc0c050c2015-10-22 16:01:17 -0400695
Michael Chan11cd1192017-02-06 16:55:33 -0500696 prod_rx_buf->mapping = cons_rx_buf->mapping;
Michael Chanc0c050c2015-10-22 16:01:17 -0400697
698 prod_bd = &rxr->rx_desc_ring[RX_RING(prod)][RX_IDX(prod)];
699 cons_bd = &rxr->rx_desc_ring[RX_RING(cons)][RX_IDX(cons)];
700
701 prod_bd->rx_bd_haddr = cons_bd->rx_bd_haddr;
702}
703
704static inline u16 bnxt_find_next_agg_idx(struct bnxt_rx_ring_info *rxr, u16 idx)
705{
706 u16 next, max = rxr->rx_agg_bmap_size;
707
708 next = find_next_zero_bit(rxr->rx_agg_bmap, max, idx);
709 if (next >= max)
710 next = find_first_zero_bit(rxr->rx_agg_bmap, max);
711 return next;
712}
713
714static inline int bnxt_alloc_rx_page(struct bnxt *bp,
715 struct bnxt_rx_ring_info *rxr,
716 u16 prod, gfp_t gfp)
717{
718 struct rx_bd *rxbd =
719 &rxr->rx_agg_desc_ring[RX_RING(prod)][RX_IDX(prod)];
720 struct bnxt_sw_rx_agg_bd *rx_agg_buf;
721 struct pci_dev *pdev = bp->pdev;
722 struct page *page;
723 dma_addr_t mapping;
724 u16 sw_prod = rxr->rx_sw_agg_prod;
Michael Chan89d0a062016-04-25 02:30:51 -0400725 unsigned int offset = 0;
Michael Chanc0c050c2015-10-22 16:01:17 -0400726
Michael Chan89d0a062016-04-25 02:30:51 -0400727 if (PAGE_SIZE > BNXT_RX_PAGE_SIZE) {
728 page = rxr->rx_page;
729 if (!page) {
730 page = alloc_page(gfp);
731 if (!page)
732 return -ENOMEM;
733 rxr->rx_page = page;
734 rxr->rx_page_offset = 0;
735 }
736 offset = rxr->rx_page_offset;
737 rxr->rx_page_offset += BNXT_RX_PAGE_SIZE;
738 if (rxr->rx_page_offset == PAGE_SIZE)
739 rxr->rx_page = NULL;
740 else
741 get_page(page);
742 } else {
743 page = alloc_page(gfp);
744 if (!page)
745 return -ENOMEM;
746 }
Michael Chanc0c050c2015-10-22 16:01:17 -0400747
Shannon Nelsonc519fe92017-05-09 18:30:12 -0700748 mapping = dma_map_page_attrs(&pdev->dev, page, offset,
749 BNXT_RX_PAGE_SIZE, PCI_DMA_FROMDEVICE,
750 DMA_ATTR_WEAK_ORDERING);
Michael Chanc0c050c2015-10-22 16:01:17 -0400751 if (dma_mapping_error(&pdev->dev, mapping)) {
752 __free_page(page);
753 return -EIO;
754 }
755
756 if (unlikely(test_bit(sw_prod, rxr->rx_agg_bmap)))
757 sw_prod = bnxt_find_next_agg_idx(rxr, sw_prod);
758
759 __set_bit(sw_prod, rxr->rx_agg_bmap);
760 rx_agg_buf = &rxr->rx_agg_ring[sw_prod];
761 rxr->rx_sw_agg_prod = NEXT_RX_AGG(sw_prod);
762
763 rx_agg_buf->page = page;
Michael Chan89d0a062016-04-25 02:30:51 -0400764 rx_agg_buf->offset = offset;
Michael Chanc0c050c2015-10-22 16:01:17 -0400765 rx_agg_buf->mapping = mapping;
766 rxbd->rx_bd_haddr = cpu_to_le64(mapping);
767 rxbd->rx_bd_opaque = sw_prod;
768 return 0;
769}
770
771static void bnxt_reuse_rx_agg_bufs(struct bnxt_napi *bnapi, u16 cp_cons,
772 u32 agg_bufs)
773{
774 struct bnxt *bp = bnapi->bp;
775 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
Michael Chanb6ab4b02016-01-02 23:44:59 -0500776 struct bnxt_rx_ring_info *rxr = bnapi->rx_ring;
Michael Chanc0c050c2015-10-22 16:01:17 -0400777 u16 prod = rxr->rx_agg_prod;
778 u16 sw_prod = rxr->rx_sw_agg_prod;
779 u32 i;
780
781 for (i = 0; i < agg_bufs; i++) {
782 u16 cons;
783 struct rx_agg_cmp *agg;
784 struct bnxt_sw_rx_agg_bd *cons_rx_buf, *prod_rx_buf;
785 struct rx_bd *prod_bd;
786 struct page *page;
787
788 agg = (struct rx_agg_cmp *)
789 &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)];
790 cons = agg->rx_agg_cmp_opaque;
791 __clear_bit(cons, rxr->rx_agg_bmap);
792
793 if (unlikely(test_bit(sw_prod, rxr->rx_agg_bmap)))
794 sw_prod = bnxt_find_next_agg_idx(rxr, sw_prod);
795
796 __set_bit(sw_prod, rxr->rx_agg_bmap);
797 prod_rx_buf = &rxr->rx_agg_ring[sw_prod];
798 cons_rx_buf = &rxr->rx_agg_ring[cons];
799
800 /* It is possible for sw_prod to be equal to cons, so
801 * set cons_rx_buf->page to NULL first.
802 */
803 page = cons_rx_buf->page;
804 cons_rx_buf->page = NULL;
805 prod_rx_buf->page = page;
Michael Chan89d0a062016-04-25 02:30:51 -0400806 prod_rx_buf->offset = cons_rx_buf->offset;
Michael Chanc0c050c2015-10-22 16:01:17 -0400807
808 prod_rx_buf->mapping = cons_rx_buf->mapping;
809
810 prod_bd = &rxr->rx_agg_desc_ring[RX_RING(prod)][RX_IDX(prod)];
811
812 prod_bd->rx_bd_haddr = cpu_to_le64(cons_rx_buf->mapping);
813 prod_bd->rx_bd_opaque = sw_prod;
814
815 prod = NEXT_RX_AGG(prod);
816 sw_prod = NEXT_RX_AGG(sw_prod);
817 cp_cons = NEXT_CMP(cp_cons);
818 }
819 rxr->rx_agg_prod = prod;
820 rxr->rx_sw_agg_prod = sw_prod;
821}
822
Michael Chanc61fb992017-02-06 16:55:36 -0500823static struct sk_buff *bnxt_rx_page_skb(struct bnxt *bp,
824 struct bnxt_rx_ring_info *rxr,
825 u16 cons, void *data, u8 *data_ptr,
826 dma_addr_t dma_addr,
827 unsigned int offset_and_len)
828{
829 unsigned int payload = offset_and_len >> 16;
830 unsigned int len = offset_and_len & 0xffff;
831 struct skb_frag_struct *frag;
832 struct page *page = data;
833 u16 prod = rxr->rx_prod;
834 struct sk_buff *skb;
835 int off, err;
836
837 err = bnxt_alloc_rx_data(bp, rxr, prod, GFP_ATOMIC);
838 if (unlikely(err)) {
839 bnxt_reuse_rx_data(rxr, cons, data);
840 return NULL;
841 }
842 dma_addr -= bp->rx_dma_offset;
Shannon Nelsonc519fe92017-05-09 18:30:12 -0700843 dma_unmap_page_attrs(&bp->pdev->dev, dma_addr, PAGE_SIZE, bp->rx_dir,
844 DMA_ATTR_WEAK_ORDERING);
Michael Chanc61fb992017-02-06 16:55:36 -0500845
846 if (unlikely(!payload))
847 payload = eth_get_headlen(data_ptr, len);
848
849 skb = napi_alloc_skb(&rxr->bnapi->napi, payload);
850 if (!skb) {
851 __free_page(page);
852 return NULL;
853 }
854
855 off = (void *)data_ptr - page_address(page);
856 skb_add_rx_frag(skb, 0, page, off, len, PAGE_SIZE);
857 memcpy(skb->data - NET_IP_ALIGN, data_ptr - NET_IP_ALIGN,
858 payload + NET_IP_ALIGN);
859
860 frag = &skb_shinfo(skb)->frags[0];
861 skb_frag_size_sub(frag, payload);
862 frag->page_offset += payload;
863 skb->data_len -= payload;
864 skb->tail += payload;
865
866 return skb;
867}
868
Michael Chanc0c050c2015-10-22 16:01:17 -0400869static struct sk_buff *bnxt_rx_skb(struct bnxt *bp,
870 struct bnxt_rx_ring_info *rxr, u16 cons,
Michael Chan6bb19472017-02-06 16:55:32 -0500871 void *data, u8 *data_ptr,
872 dma_addr_t dma_addr,
873 unsigned int offset_and_len)
Michael Chanc0c050c2015-10-22 16:01:17 -0400874{
Michael Chan6bb19472017-02-06 16:55:32 -0500875 u16 prod = rxr->rx_prod;
Michael Chanc0c050c2015-10-22 16:01:17 -0400876 struct sk_buff *skb;
Michael Chan6bb19472017-02-06 16:55:32 -0500877 int err;
Michael Chanc0c050c2015-10-22 16:01:17 -0400878
879 err = bnxt_alloc_rx_data(bp, rxr, prod, GFP_ATOMIC);
880 if (unlikely(err)) {
881 bnxt_reuse_rx_data(rxr, cons, data);
882 return NULL;
883 }
884
885 skb = build_skb(data, 0);
Shannon Nelsonc519fe92017-05-09 18:30:12 -0700886 dma_unmap_single_attrs(&bp->pdev->dev, dma_addr, bp->rx_buf_use_size,
887 bp->rx_dir, DMA_ATTR_WEAK_ORDERING);
Michael Chanc0c050c2015-10-22 16:01:17 -0400888 if (!skb) {
889 kfree(data);
890 return NULL;
891 }
892
Michael Chanb3dba772017-02-06 16:55:35 -0500893 skb_reserve(skb, bp->rx_offset);
Michael Chan6bb19472017-02-06 16:55:32 -0500894 skb_put(skb, offset_and_len & 0xffff);
Michael Chanc0c050c2015-10-22 16:01:17 -0400895 return skb;
896}
897
898static struct sk_buff *bnxt_rx_pages(struct bnxt *bp, struct bnxt_napi *bnapi,
899 struct sk_buff *skb, u16 cp_cons,
900 u32 agg_bufs)
901{
902 struct pci_dev *pdev = bp->pdev;
903 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
Michael Chanb6ab4b02016-01-02 23:44:59 -0500904 struct bnxt_rx_ring_info *rxr = bnapi->rx_ring;
Michael Chanc0c050c2015-10-22 16:01:17 -0400905 u16 prod = rxr->rx_agg_prod;
906 u32 i;
907
908 for (i = 0; i < agg_bufs; i++) {
909 u16 cons, frag_len;
910 struct rx_agg_cmp *agg;
911 struct bnxt_sw_rx_agg_bd *cons_rx_buf;
912 struct page *page;
913 dma_addr_t mapping;
914
915 agg = (struct rx_agg_cmp *)
916 &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)];
917 cons = agg->rx_agg_cmp_opaque;
918 frag_len = (le32_to_cpu(agg->rx_agg_cmp_len_flags_type) &
919 RX_AGG_CMP_LEN) >> RX_AGG_CMP_LEN_SHIFT;
920
921 cons_rx_buf = &rxr->rx_agg_ring[cons];
Michael Chan89d0a062016-04-25 02:30:51 -0400922 skb_fill_page_desc(skb, i, cons_rx_buf->page,
923 cons_rx_buf->offset, frag_len);
Michael Chanc0c050c2015-10-22 16:01:17 -0400924 __clear_bit(cons, rxr->rx_agg_bmap);
925
926 /* It is possible for bnxt_alloc_rx_page() to allocate
927 * a sw_prod index that equals the cons index, so we
928 * need to clear the cons entry now.
929 */
Michael Chan11cd1192017-02-06 16:55:33 -0500930 mapping = cons_rx_buf->mapping;
Michael Chanc0c050c2015-10-22 16:01:17 -0400931 page = cons_rx_buf->page;
932 cons_rx_buf->page = NULL;
933
934 if (bnxt_alloc_rx_page(bp, rxr, prod, GFP_ATOMIC) != 0) {
935 struct skb_shared_info *shinfo;
936 unsigned int nr_frags;
937
938 shinfo = skb_shinfo(skb);
939 nr_frags = --shinfo->nr_frags;
940 __skb_frag_set_page(&shinfo->frags[nr_frags], NULL);
941
942 dev_kfree_skb(skb);
943
944 cons_rx_buf->page = page;
945
946 /* Update prod since possibly some pages have been
947 * allocated already.
948 */
949 rxr->rx_agg_prod = prod;
950 bnxt_reuse_rx_agg_bufs(bnapi, cp_cons, agg_bufs - i);
951 return NULL;
952 }
953
Shannon Nelsonc519fe92017-05-09 18:30:12 -0700954 dma_unmap_page_attrs(&pdev->dev, mapping, BNXT_RX_PAGE_SIZE,
955 PCI_DMA_FROMDEVICE,
956 DMA_ATTR_WEAK_ORDERING);
Michael Chanc0c050c2015-10-22 16:01:17 -0400957
958 skb->data_len += frag_len;
959 skb->len += frag_len;
960 skb->truesize += PAGE_SIZE;
961
962 prod = NEXT_RX_AGG(prod);
963 cp_cons = NEXT_CMP(cp_cons);
964 }
965 rxr->rx_agg_prod = prod;
966 return skb;
967}
968
969static int bnxt_agg_bufs_valid(struct bnxt *bp, struct bnxt_cp_ring_info *cpr,
970 u8 agg_bufs, u32 *raw_cons)
971{
972 u16 last;
973 struct rx_agg_cmp *agg;
974
975 *raw_cons = ADV_RAW_CMP(*raw_cons, agg_bufs);
976 last = RING_CMP(*raw_cons);
977 agg = (struct rx_agg_cmp *)
978 &cpr->cp_desc_ring[CP_RING(last)][CP_IDX(last)];
979 return RX_AGG_CMP_VALID(agg, *raw_cons);
980}
981
982static inline struct sk_buff *bnxt_copy_skb(struct bnxt_napi *bnapi, u8 *data,
983 unsigned int len,
984 dma_addr_t mapping)
985{
986 struct bnxt *bp = bnapi->bp;
987 struct pci_dev *pdev = bp->pdev;
988 struct sk_buff *skb;
989
990 skb = napi_alloc_skb(&bnapi->napi, len);
991 if (!skb)
992 return NULL;
993
Michael Chan745fc052017-02-06 16:55:34 -0500994 dma_sync_single_for_cpu(&pdev->dev, mapping, bp->rx_copy_thresh,
995 bp->rx_dir);
Michael Chanc0c050c2015-10-22 16:01:17 -0400996
Michael Chan6bb19472017-02-06 16:55:32 -0500997 memcpy(skb->data - NET_IP_ALIGN, data - NET_IP_ALIGN,
998 len + NET_IP_ALIGN);
Michael Chanc0c050c2015-10-22 16:01:17 -0400999
Michael Chan745fc052017-02-06 16:55:34 -05001000 dma_sync_single_for_device(&pdev->dev, mapping, bp->rx_copy_thresh,
1001 bp->rx_dir);
Michael Chanc0c050c2015-10-22 16:01:17 -04001002
1003 skb_put(skb, len);
1004 return skb;
1005}
1006
Michael Chanfa7e2812016-05-10 19:18:00 -04001007static int bnxt_discard_rx(struct bnxt *bp, struct bnxt_napi *bnapi,
1008 u32 *raw_cons, void *cmp)
1009{
1010 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
1011 struct rx_cmp *rxcmp = cmp;
1012 u32 tmp_raw_cons = *raw_cons;
1013 u8 cmp_type, agg_bufs = 0;
1014
1015 cmp_type = RX_CMP_TYPE(rxcmp);
1016
1017 if (cmp_type == CMP_TYPE_RX_L2_CMP) {
1018 agg_bufs = (le32_to_cpu(rxcmp->rx_cmp_misc_v1) &
1019 RX_CMP_AGG_BUFS) >>
1020 RX_CMP_AGG_BUFS_SHIFT;
1021 } else if (cmp_type == CMP_TYPE_RX_L2_TPA_END_CMP) {
1022 struct rx_tpa_end_cmp *tpa_end = cmp;
1023
1024 agg_bufs = (le32_to_cpu(tpa_end->rx_tpa_end_cmp_misc_v1) &
1025 RX_TPA_END_CMP_AGG_BUFS) >>
1026 RX_TPA_END_CMP_AGG_BUFS_SHIFT;
1027 }
1028
1029 if (agg_bufs) {
1030 if (!bnxt_agg_bufs_valid(bp, cpr, agg_bufs, &tmp_raw_cons))
1031 return -EBUSY;
1032 }
1033 *raw_cons = tmp_raw_cons;
1034 return 0;
1035}
1036
Michael Chanc213eae2017-10-13 21:09:29 -04001037static void bnxt_queue_sp_work(struct bnxt *bp)
1038{
1039 if (BNXT_PF(bp))
1040 queue_work(bnxt_pf_wq, &bp->sp_task);
1041 else
1042 schedule_work(&bp->sp_task);
1043}
1044
1045static void bnxt_cancel_sp_work(struct bnxt *bp)
1046{
1047 if (BNXT_PF(bp))
1048 flush_workqueue(bnxt_pf_wq);
1049 else
1050 cancel_work_sync(&bp->sp_task);
1051}
1052
Michael Chanfa7e2812016-05-10 19:18:00 -04001053static void bnxt_sched_reset(struct bnxt *bp, struct bnxt_rx_ring_info *rxr)
1054{
1055 if (!rxr->bnapi->in_reset) {
1056 rxr->bnapi->in_reset = true;
1057 set_bit(BNXT_RESET_TASK_SP_EVENT, &bp->sp_event);
Michael Chanc213eae2017-10-13 21:09:29 -04001058 bnxt_queue_sp_work(bp);
Michael Chanfa7e2812016-05-10 19:18:00 -04001059 }
1060 rxr->rx_next_cons = 0xffff;
1061}
1062
Michael Chanc0c050c2015-10-22 16:01:17 -04001063static void bnxt_tpa_start(struct bnxt *bp, struct bnxt_rx_ring_info *rxr,
1064 struct rx_tpa_start_cmp *tpa_start,
1065 struct rx_tpa_start_cmp_ext *tpa_start1)
1066{
1067 u8 agg_id = TPA_START_AGG_ID(tpa_start);
1068 u16 cons, prod;
1069 struct bnxt_tpa_info *tpa_info;
1070 struct bnxt_sw_rx_bd *cons_rx_buf, *prod_rx_buf;
1071 struct rx_bd *prod_bd;
1072 dma_addr_t mapping;
1073
1074 cons = tpa_start->rx_tpa_start_cmp_opaque;
1075 prod = rxr->rx_prod;
1076 cons_rx_buf = &rxr->rx_buf_ring[cons];
1077 prod_rx_buf = &rxr->rx_buf_ring[prod];
1078 tpa_info = &rxr->rx_tpa[agg_id];
1079
Michael Chanfa7e2812016-05-10 19:18:00 -04001080 if (unlikely(cons != rxr->rx_next_cons)) {
1081 bnxt_sched_reset(bp, rxr);
1082 return;
1083 }
Sathya Perlaee5c7fb2017-07-24 12:34:28 -04001084 /* Store cfa_code in tpa_info to use in tpa_end
1085 * completion processing.
1086 */
1087 tpa_info->cfa_code = TPA_START_CFA_CODE(tpa_start1);
Michael Chanc0c050c2015-10-22 16:01:17 -04001088 prod_rx_buf->data = tpa_info->data;
Michael Chan6bb19472017-02-06 16:55:32 -05001089 prod_rx_buf->data_ptr = tpa_info->data_ptr;
Michael Chanc0c050c2015-10-22 16:01:17 -04001090
1091 mapping = tpa_info->mapping;
Michael Chan11cd1192017-02-06 16:55:33 -05001092 prod_rx_buf->mapping = mapping;
Michael Chanc0c050c2015-10-22 16:01:17 -04001093
1094 prod_bd = &rxr->rx_desc_ring[RX_RING(prod)][RX_IDX(prod)];
1095
1096 prod_bd->rx_bd_haddr = cpu_to_le64(mapping);
1097
1098 tpa_info->data = cons_rx_buf->data;
Michael Chan6bb19472017-02-06 16:55:32 -05001099 tpa_info->data_ptr = cons_rx_buf->data_ptr;
Michael Chanc0c050c2015-10-22 16:01:17 -04001100 cons_rx_buf->data = NULL;
Michael Chan11cd1192017-02-06 16:55:33 -05001101 tpa_info->mapping = cons_rx_buf->mapping;
Michael Chanc0c050c2015-10-22 16:01:17 -04001102
1103 tpa_info->len =
1104 le32_to_cpu(tpa_start->rx_tpa_start_cmp_len_flags_type) >>
1105 RX_TPA_START_CMP_LEN_SHIFT;
1106 if (likely(TPA_START_HASH_VALID(tpa_start))) {
1107 u32 hash_type = TPA_START_HASH_TYPE(tpa_start);
1108
1109 tpa_info->hash_type = PKT_HASH_TYPE_L4;
1110 tpa_info->gso_type = SKB_GSO_TCPV4;
1111 /* RSS profiles 1 and 3 with extract code 0 for inner 4-tuple */
1112 if (hash_type == 3)
1113 tpa_info->gso_type = SKB_GSO_TCPV6;
1114 tpa_info->rss_hash =
1115 le32_to_cpu(tpa_start->rx_tpa_start_cmp_rss_hash);
1116 } else {
1117 tpa_info->hash_type = PKT_HASH_TYPE_NONE;
1118 tpa_info->gso_type = 0;
1119 if (netif_msg_rx_err(bp))
1120 netdev_warn(bp->dev, "TPA packet without valid hash\n");
1121 }
1122 tpa_info->flags2 = le32_to_cpu(tpa_start1->rx_tpa_start_cmp_flags2);
1123 tpa_info->metadata = le32_to_cpu(tpa_start1->rx_tpa_start_cmp_metadata);
Michael Chan94758f82016-06-13 02:25:35 -04001124 tpa_info->hdr_info = le32_to_cpu(tpa_start1->rx_tpa_start_cmp_hdr_info);
Michael Chanc0c050c2015-10-22 16:01:17 -04001125
1126 rxr->rx_prod = NEXT_RX(prod);
1127 cons = NEXT_RX(cons);
Michael Chan376a5b82016-05-10 19:17:59 -04001128 rxr->rx_next_cons = NEXT_RX(cons);
Michael Chanc0c050c2015-10-22 16:01:17 -04001129 cons_rx_buf = &rxr->rx_buf_ring[cons];
1130
1131 bnxt_reuse_rx_data(rxr, cons, cons_rx_buf->data);
1132 rxr->rx_prod = NEXT_RX(rxr->rx_prod);
1133 cons_rx_buf->data = NULL;
1134}
1135
1136static void bnxt_abort_tpa(struct bnxt *bp, struct bnxt_napi *bnapi,
1137 u16 cp_cons, u32 agg_bufs)
1138{
1139 if (agg_bufs)
1140 bnxt_reuse_rx_agg_bufs(bnapi, cp_cons, agg_bufs);
1141}
1142
Michael Chan94758f82016-06-13 02:25:35 -04001143static struct sk_buff *bnxt_gro_func_5731x(struct bnxt_tpa_info *tpa_info,
1144 int payload_off, int tcp_ts,
1145 struct sk_buff *skb)
1146{
1147#ifdef CONFIG_INET
1148 struct tcphdr *th;
1149 int len, nw_off;
1150 u16 outer_ip_off, inner_ip_off, inner_mac_off;
1151 u32 hdr_info = tpa_info->hdr_info;
1152 bool loopback = false;
1153
1154 inner_ip_off = BNXT_TPA_INNER_L3_OFF(hdr_info);
1155 inner_mac_off = BNXT_TPA_INNER_L2_OFF(hdr_info);
1156 outer_ip_off = BNXT_TPA_OUTER_L3_OFF(hdr_info);
1157
1158 /* If the packet is an internal loopback packet, the offsets will
1159 * have an extra 4 bytes.
1160 */
1161 if (inner_mac_off == 4) {
1162 loopback = true;
1163 } else if (inner_mac_off > 4) {
1164 __be16 proto = *((__be16 *)(skb->data + inner_ip_off -
1165 ETH_HLEN - 2));
1166
1167 /* We only support inner iPv4/ipv6. If we don't see the
1168 * correct protocol ID, it must be a loopback packet where
1169 * the offsets are off by 4.
1170 */
Dan Carpenter09a76362016-07-07 11:23:09 +03001171 if (proto != htons(ETH_P_IP) && proto != htons(ETH_P_IPV6))
Michael Chan94758f82016-06-13 02:25:35 -04001172 loopback = true;
1173 }
1174 if (loopback) {
1175 /* internal loopback packet, subtract all offsets by 4 */
1176 inner_ip_off -= 4;
1177 inner_mac_off -= 4;
1178 outer_ip_off -= 4;
1179 }
1180
1181 nw_off = inner_ip_off - ETH_HLEN;
1182 skb_set_network_header(skb, nw_off);
1183 if (tpa_info->flags2 & RX_TPA_START_CMP_FLAGS2_IP_TYPE) {
1184 struct ipv6hdr *iph = ipv6_hdr(skb);
1185
1186 skb_set_transport_header(skb, nw_off + sizeof(struct ipv6hdr));
1187 len = skb->len - skb_transport_offset(skb);
1188 th = tcp_hdr(skb);
1189 th->check = ~tcp_v6_check(len, &iph->saddr, &iph->daddr, 0);
1190 } else {
1191 struct iphdr *iph = ip_hdr(skb);
1192
1193 skb_set_transport_header(skb, nw_off + sizeof(struct iphdr));
1194 len = skb->len - skb_transport_offset(skb);
1195 th = tcp_hdr(skb);
1196 th->check = ~tcp_v4_check(len, iph->saddr, iph->daddr, 0);
1197 }
1198
1199 if (inner_mac_off) { /* tunnel */
1200 struct udphdr *uh = NULL;
1201 __be16 proto = *((__be16 *)(skb->data + outer_ip_off -
1202 ETH_HLEN - 2));
1203
1204 if (proto == htons(ETH_P_IP)) {
1205 struct iphdr *iph = (struct iphdr *)skb->data;
1206
1207 if (iph->protocol == IPPROTO_UDP)
1208 uh = (struct udphdr *)(iph + 1);
1209 } else {
1210 struct ipv6hdr *iph = (struct ipv6hdr *)skb->data;
1211
1212 if (iph->nexthdr == IPPROTO_UDP)
1213 uh = (struct udphdr *)(iph + 1);
1214 }
1215 if (uh) {
1216 if (uh->check)
1217 skb_shinfo(skb)->gso_type |=
1218 SKB_GSO_UDP_TUNNEL_CSUM;
1219 else
1220 skb_shinfo(skb)->gso_type |= SKB_GSO_UDP_TUNNEL;
1221 }
1222 }
1223#endif
1224 return skb;
1225}
1226
Michael Chanc0c050c2015-10-22 16:01:17 -04001227#define BNXT_IPV4_HDR_SIZE (sizeof(struct iphdr) + sizeof(struct tcphdr))
1228#define BNXT_IPV6_HDR_SIZE (sizeof(struct ipv6hdr) + sizeof(struct tcphdr))
1229
Michael Chan309369c2016-06-13 02:25:34 -04001230static struct sk_buff *bnxt_gro_func_5730x(struct bnxt_tpa_info *tpa_info,
1231 int payload_off, int tcp_ts,
Michael Chanc0c050c2015-10-22 16:01:17 -04001232 struct sk_buff *skb)
1233{
Michael Chand1611c32015-10-25 22:27:57 -04001234#ifdef CONFIG_INET
Michael Chanc0c050c2015-10-22 16:01:17 -04001235 struct tcphdr *th;
Michael Chan719ca812017-01-17 22:07:19 -05001236 int len, nw_off, tcp_opt_len = 0;
Michael Chanc0c050c2015-10-22 16:01:17 -04001237
Michael Chan309369c2016-06-13 02:25:34 -04001238 if (tcp_ts)
Michael Chanc0c050c2015-10-22 16:01:17 -04001239 tcp_opt_len = 12;
1240
Michael Chanc0c050c2015-10-22 16:01:17 -04001241 if (tpa_info->gso_type == SKB_GSO_TCPV4) {
1242 struct iphdr *iph;
1243
1244 nw_off = payload_off - BNXT_IPV4_HDR_SIZE - tcp_opt_len -
1245 ETH_HLEN;
1246 skb_set_network_header(skb, nw_off);
1247 iph = ip_hdr(skb);
1248 skb_set_transport_header(skb, nw_off + sizeof(struct iphdr));
1249 len = skb->len - skb_transport_offset(skb);
1250 th = tcp_hdr(skb);
1251 th->check = ~tcp_v4_check(len, iph->saddr, iph->daddr, 0);
1252 } else if (tpa_info->gso_type == SKB_GSO_TCPV6) {
1253 struct ipv6hdr *iph;
1254
1255 nw_off = payload_off - BNXT_IPV6_HDR_SIZE - tcp_opt_len -
1256 ETH_HLEN;
1257 skb_set_network_header(skb, nw_off);
1258 iph = ipv6_hdr(skb);
1259 skb_set_transport_header(skb, nw_off + sizeof(struct ipv6hdr));
1260 len = skb->len - skb_transport_offset(skb);
1261 th = tcp_hdr(skb);
1262 th->check = ~tcp_v6_check(len, &iph->saddr, &iph->daddr, 0);
1263 } else {
1264 dev_kfree_skb_any(skb);
1265 return NULL;
1266 }
Michael Chanc0c050c2015-10-22 16:01:17 -04001267
1268 if (nw_off) { /* tunnel */
1269 struct udphdr *uh = NULL;
1270
1271 if (skb->protocol == htons(ETH_P_IP)) {
1272 struct iphdr *iph = (struct iphdr *)skb->data;
1273
1274 if (iph->protocol == IPPROTO_UDP)
1275 uh = (struct udphdr *)(iph + 1);
1276 } else {
1277 struct ipv6hdr *iph = (struct ipv6hdr *)skb->data;
1278
1279 if (iph->nexthdr == IPPROTO_UDP)
1280 uh = (struct udphdr *)(iph + 1);
1281 }
1282 if (uh) {
1283 if (uh->check)
1284 skb_shinfo(skb)->gso_type |=
1285 SKB_GSO_UDP_TUNNEL_CSUM;
1286 else
1287 skb_shinfo(skb)->gso_type |= SKB_GSO_UDP_TUNNEL;
1288 }
1289 }
1290#endif
1291 return skb;
1292}
1293
Michael Chan309369c2016-06-13 02:25:34 -04001294static inline struct sk_buff *bnxt_gro_skb(struct bnxt *bp,
1295 struct bnxt_tpa_info *tpa_info,
1296 struct rx_tpa_end_cmp *tpa_end,
1297 struct rx_tpa_end_cmp_ext *tpa_end1,
1298 struct sk_buff *skb)
1299{
1300#ifdef CONFIG_INET
1301 int payload_off;
1302 u16 segs;
1303
1304 segs = TPA_END_TPA_SEGS(tpa_end);
1305 if (segs == 1)
1306 return skb;
1307
1308 NAPI_GRO_CB(skb)->count = segs;
1309 skb_shinfo(skb)->gso_size =
1310 le32_to_cpu(tpa_end1->rx_tpa_end_cmp_seg_len);
1311 skb_shinfo(skb)->gso_type = tpa_info->gso_type;
1312 payload_off = (le32_to_cpu(tpa_end->rx_tpa_end_cmp_misc_v1) &
1313 RX_TPA_END_CMP_PAYLOAD_OFFSET) >>
1314 RX_TPA_END_CMP_PAYLOAD_OFFSET_SHIFT;
1315 skb = bp->gro_func(tpa_info, payload_off, TPA_END_GRO_TS(tpa_end), skb);
Michael Chan59109062016-12-29 12:13:35 -05001316 if (likely(skb))
1317 tcp_gro_complete(skb);
Michael Chan309369c2016-06-13 02:25:34 -04001318#endif
1319 return skb;
1320}
1321
Sathya Perlaee5c7fb2017-07-24 12:34:28 -04001322/* Given the cfa_code of a received packet determine which
1323 * netdev (vf-rep or PF) the packet is destined to.
1324 */
1325static struct net_device *bnxt_get_pkt_dev(struct bnxt *bp, u16 cfa_code)
1326{
1327 struct net_device *dev = bnxt_get_vf_rep(bp, cfa_code);
1328
1329 /* if vf-rep dev is NULL, the must belongs to the PF */
1330 return dev ? dev : bp->dev;
1331}
1332
Michael Chanc0c050c2015-10-22 16:01:17 -04001333static inline struct sk_buff *bnxt_tpa_end(struct bnxt *bp,
1334 struct bnxt_napi *bnapi,
1335 u32 *raw_cons,
1336 struct rx_tpa_end_cmp *tpa_end,
1337 struct rx_tpa_end_cmp_ext *tpa_end1,
Michael Chan4e5dbbda2017-02-06 16:55:37 -05001338 u8 *event)
Michael Chanc0c050c2015-10-22 16:01:17 -04001339{
1340 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
Michael Chanb6ab4b02016-01-02 23:44:59 -05001341 struct bnxt_rx_ring_info *rxr = bnapi->rx_ring;
Michael Chanc0c050c2015-10-22 16:01:17 -04001342 u8 agg_id = TPA_END_AGG_ID(tpa_end);
Michael Chan6bb19472017-02-06 16:55:32 -05001343 u8 *data_ptr, agg_bufs;
Michael Chanc0c050c2015-10-22 16:01:17 -04001344 u16 cp_cons = RING_CMP(*raw_cons);
1345 unsigned int len;
1346 struct bnxt_tpa_info *tpa_info;
1347 dma_addr_t mapping;
1348 struct sk_buff *skb;
Michael Chan6bb19472017-02-06 16:55:32 -05001349 void *data;
Michael Chanc0c050c2015-10-22 16:01:17 -04001350
Michael Chanfa7e2812016-05-10 19:18:00 -04001351 if (unlikely(bnapi->in_reset)) {
1352 int rc = bnxt_discard_rx(bp, bnapi, raw_cons, tpa_end);
1353
1354 if (rc < 0)
1355 return ERR_PTR(-EBUSY);
1356 return NULL;
1357 }
1358
Michael Chanc0c050c2015-10-22 16:01:17 -04001359 tpa_info = &rxr->rx_tpa[agg_id];
1360 data = tpa_info->data;
Michael Chan6bb19472017-02-06 16:55:32 -05001361 data_ptr = tpa_info->data_ptr;
1362 prefetch(data_ptr);
Michael Chanc0c050c2015-10-22 16:01:17 -04001363 len = tpa_info->len;
1364 mapping = tpa_info->mapping;
1365
1366 agg_bufs = (le32_to_cpu(tpa_end->rx_tpa_end_cmp_misc_v1) &
1367 RX_TPA_END_CMP_AGG_BUFS) >> RX_TPA_END_CMP_AGG_BUFS_SHIFT;
1368
1369 if (agg_bufs) {
1370 if (!bnxt_agg_bufs_valid(bp, cpr, agg_bufs, raw_cons))
1371 return ERR_PTR(-EBUSY);
1372
Michael Chan4e5dbbda2017-02-06 16:55:37 -05001373 *event |= BNXT_AGG_EVENT;
Michael Chanc0c050c2015-10-22 16:01:17 -04001374 cp_cons = NEXT_CMP(cp_cons);
1375 }
1376
Michael Chan69c149e2017-06-23 14:01:00 -04001377 if (unlikely(agg_bufs > MAX_SKB_FRAGS || TPA_END_ERRORS(tpa_end1))) {
Michael Chanc0c050c2015-10-22 16:01:17 -04001378 bnxt_abort_tpa(bp, bnapi, cp_cons, agg_bufs);
Michael Chan69c149e2017-06-23 14:01:00 -04001379 if (agg_bufs > MAX_SKB_FRAGS)
1380 netdev_warn(bp->dev, "TPA frags %d exceeded MAX_SKB_FRAGS %d\n",
1381 agg_bufs, (int)MAX_SKB_FRAGS);
Michael Chanc0c050c2015-10-22 16:01:17 -04001382 return NULL;
1383 }
1384
1385 if (len <= bp->rx_copy_thresh) {
Michael Chan6bb19472017-02-06 16:55:32 -05001386 skb = bnxt_copy_skb(bnapi, data_ptr, len, mapping);
Michael Chanc0c050c2015-10-22 16:01:17 -04001387 if (!skb) {
1388 bnxt_abort_tpa(bp, bnapi, cp_cons, agg_bufs);
1389 return NULL;
1390 }
1391 } else {
1392 u8 *new_data;
1393 dma_addr_t new_mapping;
1394
1395 new_data = __bnxt_alloc_rx_data(bp, &new_mapping, GFP_ATOMIC);
1396 if (!new_data) {
1397 bnxt_abort_tpa(bp, bnapi, cp_cons, agg_bufs);
1398 return NULL;
1399 }
1400
1401 tpa_info->data = new_data;
Michael Chanb3dba772017-02-06 16:55:35 -05001402 tpa_info->data_ptr = new_data + bp->rx_offset;
Michael Chanc0c050c2015-10-22 16:01:17 -04001403 tpa_info->mapping = new_mapping;
1404
1405 skb = build_skb(data, 0);
Shannon Nelsonc519fe92017-05-09 18:30:12 -07001406 dma_unmap_single_attrs(&bp->pdev->dev, mapping,
1407 bp->rx_buf_use_size, bp->rx_dir,
1408 DMA_ATTR_WEAK_ORDERING);
Michael Chanc0c050c2015-10-22 16:01:17 -04001409
1410 if (!skb) {
1411 kfree(data);
1412 bnxt_abort_tpa(bp, bnapi, cp_cons, agg_bufs);
1413 return NULL;
1414 }
Michael Chanb3dba772017-02-06 16:55:35 -05001415 skb_reserve(skb, bp->rx_offset);
Michael Chanc0c050c2015-10-22 16:01:17 -04001416 skb_put(skb, len);
1417 }
1418
1419 if (agg_bufs) {
1420 skb = bnxt_rx_pages(bp, bnapi, skb, cp_cons, agg_bufs);
1421 if (!skb) {
1422 /* Page reuse already handled by bnxt_rx_pages(). */
1423 return NULL;
1424 }
1425 }
Sathya Perlaee5c7fb2017-07-24 12:34:28 -04001426
1427 skb->protocol =
1428 eth_type_trans(skb, bnxt_get_pkt_dev(bp, tpa_info->cfa_code));
Michael Chanc0c050c2015-10-22 16:01:17 -04001429
1430 if (tpa_info->hash_type != PKT_HASH_TYPE_NONE)
1431 skb_set_hash(skb, tpa_info->rss_hash, tpa_info->hash_type);
1432
Michael Chan8852ddb2016-06-06 02:37:16 -04001433 if ((tpa_info->flags2 & RX_CMP_FLAGS2_META_FORMAT_VLAN) &&
1434 (skb->dev->features & NETIF_F_HW_VLAN_CTAG_RX)) {
Michael Chanc0c050c2015-10-22 16:01:17 -04001435 u16 vlan_proto = tpa_info->metadata >>
1436 RX_CMP_FLAGS2_METADATA_TPID_SFT;
Michael Chan8852ddb2016-06-06 02:37:16 -04001437 u16 vtag = tpa_info->metadata & RX_CMP_FLAGS2_METADATA_VID_MASK;
Michael Chanc0c050c2015-10-22 16:01:17 -04001438
Michael Chan8852ddb2016-06-06 02:37:16 -04001439 __vlan_hwaccel_put_tag(skb, htons(vlan_proto), vtag);
Michael Chanc0c050c2015-10-22 16:01:17 -04001440 }
1441
1442 skb_checksum_none_assert(skb);
1443 if (likely(tpa_info->flags2 & RX_TPA_START_CMP_FLAGS2_L4_CS_CALC)) {
1444 skb->ip_summed = CHECKSUM_UNNECESSARY;
1445 skb->csum_level =
1446 (tpa_info->flags2 & RX_CMP_FLAGS2_T_L4_CS_CALC) >> 3;
1447 }
1448
1449 if (TPA_END_GRO(tpa_end))
Michael Chan309369c2016-06-13 02:25:34 -04001450 skb = bnxt_gro_skb(bp, tpa_info, tpa_end, tpa_end1, skb);
Michael Chanc0c050c2015-10-22 16:01:17 -04001451
1452 return skb;
1453}
1454
Sathya Perlaee5c7fb2017-07-24 12:34:28 -04001455static void bnxt_deliver_skb(struct bnxt *bp, struct bnxt_napi *bnapi,
1456 struct sk_buff *skb)
1457{
1458 if (skb->dev != bp->dev) {
1459 /* this packet belongs to a vf-rep */
1460 bnxt_vf_rep_rx(bp, skb);
1461 return;
1462 }
1463 skb_record_rx_queue(skb, bnapi->index);
1464 napi_gro_receive(&bnapi->napi, skb);
1465}
1466
Michael Chanc0c050c2015-10-22 16:01:17 -04001467/* returns the following:
1468 * 1 - 1 packet successfully received
1469 * 0 - successful TPA_START, packet not completed yet
1470 * -EBUSY - completion ring does not have all the agg buffers yet
1471 * -ENOMEM - packet aborted due to out of memory
1472 * -EIO - packet aborted due to hw error indicated in BD
1473 */
1474static int bnxt_rx_pkt(struct bnxt *bp, struct bnxt_napi *bnapi, u32 *raw_cons,
Michael Chan4e5dbbda2017-02-06 16:55:37 -05001475 u8 *event)
Michael Chanc0c050c2015-10-22 16:01:17 -04001476{
1477 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
Michael Chanb6ab4b02016-01-02 23:44:59 -05001478 struct bnxt_rx_ring_info *rxr = bnapi->rx_ring;
Michael Chanc0c050c2015-10-22 16:01:17 -04001479 struct net_device *dev = bp->dev;
1480 struct rx_cmp *rxcmp;
1481 struct rx_cmp_ext *rxcmp1;
1482 u32 tmp_raw_cons = *raw_cons;
Sathya Perlaee5c7fb2017-07-24 12:34:28 -04001483 u16 cfa_code, cons, prod, cp_cons = RING_CMP(tmp_raw_cons);
Michael Chanc0c050c2015-10-22 16:01:17 -04001484 struct bnxt_sw_rx_bd *rx_buf;
1485 unsigned int len;
Michael Chan6bb19472017-02-06 16:55:32 -05001486 u8 *data_ptr, agg_bufs, cmp_type;
Michael Chanc0c050c2015-10-22 16:01:17 -04001487 dma_addr_t dma_addr;
1488 struct sk_buff *skb;
Michael Chan6bb19472017-02-06 16:55:32 -05001489 void *data;
Michael Chanc0c050c2015-10-22 16:01:17 -04001490 int rc = 0;
Michael Chanc61fb992017-02-06 16:55:36 -05001491 u32 misc;
Michael Chanc0c050c2015-10-22 16:01:17 -04001492
1493 rxcmp = (struct rx_cmp *)
1494 &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)];
1495
1496 tmp_raw_cons = NEXT_RAW_CMP(tmp_raw_cons);
1497 cp_cons = RING_CMP(tmp_raw_cons);
1498 rxcmp1 = (struct rx_cmp_ext *)
1499 &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)];
1500
1501 if (!RX_CMP_VALID(rxcmp1, tmp_raw_cons))
1502 return -EBUSY;
1503
1504 cmp_type = RX_CMP_TYPE(rxcmp);
1505
1506 prod = rxr->rx_prod;
1507
1508 if (cmp_type == CMP_TYPE_RX_L2_TPA_START_CMP) {
1509 bnxt_tpa_start(bp, rxr, (struct rx_tpa_start_cmp *)rxcmp,
1510 (struct rx_tpa_start_cmp_ext *)rxcmp1);
1511
Michael Chan4e5dbbda2017-02-06 16:55:37 -05001512 *event |= BNXT_RX_EVENT;
Michael Chanc0c050c2015-10-22 16:01:17 -04001513 goto next_rx_no_prod;
1514
1515 } else if (cmp_type == CMP_TYPE_RX_L2_TPA_END_CMP) {
1516 skb = bnxt_tpa_end(bp, bnapi, &tmp_raw_cons,
1517 (struct rx_tpa_end_cmp *)rxcmp,
Michael Chan4e5dbbda2017-02-06 16:55:37 -05001518 (struct rx_tpa_end_cmp_ext *)rxcmp1, event);
Michael Chanc0c050c2015-10-22 16:01:17 -04001519
Tobias Klauser1fac4b22017-09-26 15:12:26 +02001520 if (IS_ERR(skb))
Michael Chanc0c050c2015-10-22 16:01:17 -04001521 return -EBUSY;
1522
1523 rc = -ENOMEM;
1524 if (likely(skb)) {
Sathya Perlaee5c7fb2017-07-24 12:34:28 -04001525 bnxt_deliver_skb(bp, bnapi, skb);
Michael Chanc0c050c2015-10-22 16:01:17 -04001526 rc = 1;
1527 }
Michael Chan4e5dbbda2017-02-06 16:55:37 -05001528 *event |= BNXT_RX_EVENT;
Michael Chanc0c050c2015-10-22 16:01:17 -04001529 goto next_rx_no_prod;
1530 }
1531
1532 cons = rxcmp->rx_cmp_opaque;
1533 rx_buf = &rxr->rx_buf_ring[cons];
1534 data = rx_buf->data;
Michael Chan6bb19472017-02-06 16:55:32 -05001535 data_ptr = rx_buf->data_ptr;
Michael Chanfa7e2812016-05-10 19:18:00 -04001536 if (unlikely(cons != rxr->rx_next_cons)) {
1537 int rc1 = bnxt_discard_rx(bp, bnapi, raw_cons, rxcmp);
1538
1539 bnxt_sched_reset(bp, rxr);
1540 return rc1;
1541 }
Michael Chan6bb19472017-02-06 16:55:32 -05001542 prefetch(data_ptr);
Michael Chanc0c050c2015-10-22 16:01:17 -04001543
Michael Chanc61fb992017-02-06 16:55:36 -05001544 misc = le32_to_cpu(rxcmp->rx_cmp_misc_v1);
1545 agg_bufs = (misc & RX_CMP_AGG_BUFS) >> RX_CMP_AGG_BUFS_SHIFT;
Michael Chanc0c050c2015-10-22 16:01:17 -04001546
1547 if (agg_bufs) {
1548 if (!bnxt_agg_bufs_valid(bp, cpr, agg_bufs, &tmp_raw_cons))
1549 return -EBUSY;
1550
1551 cp_cons = NEXT_CMP(cp_cons);
Michael Chan4e5dbbda2017-02-06 16:55:37 -05001552 *event |= BNXT_AGG_EVENT;
Michael Chanc0c050c2015-10-22 16:01:17 -04001553 }
Michael Chan4e5dbbda2017-02-06 16:55:37 -05001554 *event |= BNXT_RX_EVENT;
Michael Chanc0c050c2015-10-22 16:01:17 -04001555
1556 rx_buf->data = NULL;
1557 if (rxcmp1->rx_cmp_cfa_code_errors_v2 & RX_CMP_L2_ERRORS) {
1558 bnxt_reuse_rx_data(rxr, cons, data);
1559 if (agg_bufs)
1560 bnxt_reuse_rx_agg_bufs(bnapi, cp_cons, agg_bufs);
1561
1562 rc = -EIO;
1563 goto next_rx;
1564 }
1565
1566 len = le32_to_cpu(rxcmp->rx_cmp_len_flags_type) >> RX_CMP_LEN_SHIFT;
Michael Chan11cd1192017-02-06 16:55:33 -05001567 dma_addr = rx_buf->mapping;
Michael Chanc0c050c2015-10-22 16:01:17 -04001568
Michael Chanc6d30e82017-02-06 16:55:42 -05001569 if (bnxt_rx_xdp(bp, rxr, cons, data, &data_ptr, &len, event)) {
1570 rc = 1;
1571 goto next_rx;
1572 }
1573
Michael Chanc0c050c2015-10-22 16:01:17 -04001574 if (len <= bp->rx_copy_thresh) {
Michael Chan6bb19472017-02-06 16:55:32 -05001575 skb = bnxt_copy_skb(bnapi, data_ptr, len, dma_addr);
Michael Chanc0c050c2015-10-22 16:01:17 -04001576 bnxt_reuse_rx_data(rxr, cons, data);
1577 if (!skb) {
1578 rc = -ENOMEM;
1579 goto next_rx;
1580 }
1581 } else {
Michael Chanc61fb992017-02-06 16:55:36 -05001582 u32 payload;
1583
Michael Chanc6d30e82017-02-06 16:55:42 -05001584 if (rx_buf->data_ptr == data_ptr)
1585 payload = misc & RX_CMP_PAYLOAD_OFFSET;
1586 else
1587 payload = 0;
Michael Chan6bb19472017-02-06 16:55:32 -05001588 skb = bp->rx_skb_func(bp, rxr, cons, data, data_ptr, dma_addr,
Michael Chanc61fb992017-02-06 16:55:36 -05001589 payload | len);
Michael Chanc0c050c2015-10-22 16:01:17 -04001590 if (!skb) {
1591 rc = -ENOMEM;
1592 goto next_rx;
1593 }
1594 }
1595
1596 if (agg_bufs) {
1597 skb = bnxt_rx_pages(bp, bnapi, skb, cp_cons, agg_bufs);
1598 if (!skb) {
1599 rc = -ENOMEM;
1600 goto next_rx;
1601 }
1602 }
1603
1604 if (RX_CMP_HASH_VALID(rxcmp)) {
1605 u32 hash_type = RX_CMP_HASH_TYPE(rxcmp);
1606 enum pkt_hash_types type = PKT_HASH_TYPE_L4;
1607
1608 /* RSS profiles 1 and 3 with extract code 0 for inner 4-tuple */
1609 if (hash_type != 1 && hash_type != 3)
1610 type = PKT_HASH_TYPE_L3;
1611 skb_set_hash(skb, le32_to_cpu(rxcmp->rx_cmp_rss_hash), type);
1612 }
1613
Sathya Perlaee5c7fb2017-07-24 12:34:28 -04001614 cfa_code = RX_CMP_CFA_CODE(rxcmp1);
1615 skb->protocol = eth_type_trans(skb, bnxt_get_pkt_dev(bp, cfa_code));
Michael Chanc0c050c2015-10-22 16:01:17 -04001616
Michael Chan8852ddb2016-06-06 02:37:16 -04001617 if ((rxcmp1->rx_cmp_flags2 &
1618 cpu_to_le32(RX_CMP_FLAGS2_META_FORMAT_VLAN)) &&
1619 (skb->dev->features & NETIF_F_HW_VLAN_CTAG_RX)) {
Michael Chanc0c050c2015-10-22 16:01:17 -04001620 u32 meta_data = le32_to_cpu(rxcmp1->rx_cmp_meta_data);
Michael Chan8852ddb2016-06-06 02:37:16 -04001621 u16 vtag = meta_data & RX_CMP_FLAGS2_METADATA_VID_MASK;
Michael Chanc0c050c2015-10-22 16:01:17 -04001622 u16 vlan_proto = meta_data >> RX_CMP_FLAGS2_METADATA_TPID_SFT;
1623
Michael Chan8852ddb2016-06-06 02:37:16 -04001624 __vlan_hwaccel_put_tag(skb, htons(vlan_proto), vtag);
Michael Chanc0c050c2015-10-22 16:01:17 -04001625 }
1626
1627 skb_checksum_none_assert(skb);
1628 if (RX_CMP_L4_CS_OK(rxcmp1)) {
1629 if (dev->features & NETIF_F_RXCSUM) {
1630 skb->ip_summed = CHECKSUM_UNNECESSARY;
1631 skb->csum_level = RX_CMP_ENCAP(rxcmp1);
1632 }
1633 } else {
Satish Baddipadige665e3502015-12-27 18:19:21 -05001634 if (rxcmp1->rx_cmp_cfa_code_errors_v2 & RX_CMP_L4_CS_ERR_BITS) {
1635 if (dev->features & NETIF_F_RXCSUM)
1636 cpr->rx_l4_csum_errors++;
1637 }
Michael Chanc0c050c2015-10-22 16:01:17 -04001638 }
1639
Sathya Perlaee5c7fb2017-07-24 12:34:28 -04001640 bnxt_deliver_skb(bp, bnapi, skb);
Michael Chanc0c050c2015-10-22 16:01:17 -04001641 rc = 1;
1642
1643next_rx:
1644 rxr->rx_prod = NEXT_RX(prod);
Michael Chan376a5b82016-05-10 19:17:59 -04001645 rxr->rx_next_cons = NEXT_RX(cons);
Michael Chanc0c050c2015-10-22 16:01:17 -04001646
1647next_rx_no_prod:
1648 *raw_cons = tmp_raw_cons;
1649
1650 return rc;
1651}
1652
Michael Chan2270bc52017-06-23 14:01:01 -04001653/* In netpoll mode, if we are using a combined completion ring, we need to
1654 * discard the rx packets and recycle the buffers.
1655 */
1656static int bnxt_force_rx_discard(struct bnxt *bp, struct bnxt_napi *bnapi,
1657 u32 *raw_cons, u8 *event)
1658{
1659 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
1660 u32 tmp_raw_cons = *raw_cons;
1661 struct rx_cmp_ext *rxcmp1;
1662 struct rx_cmp *rxcmp;
1663 u16 cp_cons;
1664 u8 cmp_type;
1665
1666 cp_cons = RING_CMP(tmp_raw_cons);
1667 rxcmp = (struct rx_cmp *)
1668 &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)];
1669
1670 tmp_raw_cons = NEXT_RAW_CMP(tmp_raw_cons);
1671 cp_cons = RING_CMP(tmp_raw_cons);
1672 rxcmp1 = (struct rx_cmp_ext *)
1673 &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)];
1674
1675 if (!RX_CMP_VALID(rxcmp1, tmp_raw_cons))
1676 return -EBUSY;
1677
1678 cmp_type = RX_CMP_TYPE(rxcmp);
1679 if (cmp_type == CMP_TYPE_RX_L2_CMP) {
1680 rxcmp1->rx_cmp_cfa_code_errors_v2 |=
1681 cpu_to_le32(RX_CMPL_ERRORS_CRC_ERROR);
1682 } else if (cmp_type == CMP_TYPE_RX_L2_TPA_END_CMP) {
1683 struct rx_tpa_end_cmp_ext *tpa_end1;
1684
1685 tpa_end1 = (struct rx_tpa_end_cmp_ext *)rxcmp1;
1686 tpa_end1->rx_tpa_end_cmp_errors_v2 |=
1687 cpu_to_le32(RX_TPA_END_CMP_ERRORS);
1688 }
1689 return bnxt_rx_pkt(bp, bnapi, raw_cons, event);
1690}
1691
Michael Chan4bb13ab2016-04-05 14:09:01 -04001692#define BNXT_GET_EVENT_PORT(data) \
Michael Chan87c374d2016-12-02 21:17:16 -05001693 ((data) & \
1694 ASYNC_EVENT_CMPL_PORT_CONN_NOT_ALLOWED_EVENT_DATA1_PORT_ID_MASK)
Michael Chan4bb13ab2016-04-05 14:09:01 -04001695
Michael Chanc0c050c2015-10-22 16:01:17 -04001696static int bnxt_async_event_process(struct bnxt *bp,
1697 struct hwrm_async_event_cmpl *cmpl)
1698{
1699 u16 event_id = le16_to_cpu(cmpl->event_id);
1700
1701 /* TODO CHIMP_FW: Define event id's for link change, error etc */
1702 switch (event_id) {
Michael Chan87c374d2016-12-02 21:17:16 -05001703 case ASYNC_EVENT_CMPL_EVENT_ID_LINK_SPEED_CFG_CHANGE: {
Michael Chan8cbde112016-04-11 04:11:14 -04001704 u32 data1 = le32_to_cpu(cmpl->event_data1);
1705 struct bnxt_link_info *link_info = &bp->link_info;
1706
1707 if (BNXT_VF(bp))
1708 goto async_event_process_exit;
Michael Chana8168b62017-12-06 17:31:22 -05001709
1710 /* print unsupported speed warning in forced speed mode only */
1711 if (!(link_info->autoneg & BNXT_AUTONEG_SPEED) &&
1712 (data1 & 0x20000)) {
Michael Chan8cbde112016-04-11 04:11:14 -04001713 u16 fw_speed = link_info->force_link_speed;
1714 u32 speed = bnxt_fw_to_ethtool_speed(fw_speed);
1715
Michael Chana8168b62017-12-06 17:31:22 -05001716 if (speed != SPEED_UNKNOWN)
1717 netdev_warn(bp->dev, "Link speed %d no longer supported\n",
1718 speed);
Michael Chan8cbde112016-04-11 04:11:14 -04001719 }
Michael Chan286ef9d2016-11-16 21:13:08 -05001720 set_bit(BNXT_LINK_SPEED_CHNG_SP_EVENT, &bp->sp_event);
Michael Chan8cbde112016-04-11 04:11:14 -04001721 /* fall thru */
1722 }
Michael Chan87c374d2016-12-02 21:17:16 -05001723 case ASYNC_EVENT_CMPL_EVENT_ID_LINK_STATUS_CHANGE:
Michael Chanc0c050c2015-10-22 16:01:17 -04001724 set_bit(BNXT_LINK_CHNG_SP_EVENT, &bp->sp_event);
Jeffrey Huang19241362016-02-26 04:00:00 -05001725 break;
Michael Chan87c374d2016-12-02 21:17:16 -05001726 case ASYNC_EVENT_CMPL_EVENT_ID_PF_DRVR_UNLOAD:
Jeffrey Huang19241362016-02-26 04:00:00 -05001727 set_bit(BNXT_HWRM_PF_UNLOAD_SP_EVENT, &bp->sp_event);
Michael Chanc0c050c2015-10-22 16:01:17 -04001728 break;
Michael Chan87c374d2016-12-02 21:17:16 -05001729 case ASYNC_EVENT_CMPL_EVENT_ID_PORT_CONN_NOT_ALLOWED: {
Michael Chan4bb13ab2016-04-05 14:09:01 -04001730 u32 data1 = le32_to_cpu(cmpl->event_data1);
1731 u16 port_id = BNXT_GET_EVENT_PORT(data1);
1732
1733 if (BNXT_VF(bp))
1734 break;
1735
1736 if (bp->pf.port_id != port_id)
1737 break;
1738
Michael Chan4bb13ab2016-04-05 14:09:01 -04001739 set_bit(BNXT_HWRM_PORT_MODULE_SP_EVENT, &bp->sp_event);
1740 break;
1741 }
Michael Chan87c374d2016-12-02 21:17:16 -05001742 case ASYNC_EVENT_CMPL_EVENT_ID_VF_CFG_CHANGE:
Michael Chanfc0f1922016-06-13 02:25:30 -04001743 if (BNXT_PF(bp))
1744 goto async_event_process_exit;
1745 set_bit(BNXT_RESET_TASK_SILENT_SP_EVENT, &bp->sp_event);
1746 break;
Michael Chanc0c050c2015-10-22 16:01:17 -04001747 default:
Jeffrey Huang19241362016-02-26 04:00:00 -05001748 goto async_event_process_exit;
Michael Chanc0c050c2015-10-22 16:01:17 -04001749 }
Michael Chanc213eae2017-10-13 21:09:29 -04001750 bnxt_queue_sp_work(bp);
Jeffrey Huang19241362016-02-26 04:00:00 -05001751async_event_process_exit:
Michael Chana588e452016-12-07 00:26:21 -05001752 bnxt_ulp_async_events(bp, cmpl);
Michael Chanc0c050c2015-10-22 16:01:17 -04001753 return 0;
1754}
1755
1756static int bnxt_hwrm_handler(struct bnxt *bp, struct tx_cmp *txcmp)
1757{
1758 u16 cmpl_type = TX_CMP_TYPE(txcmp), vf_id, seq_id;
1759 struct hwrm_cmpl *h_cmpl = (struct hwrm_cmpl *)txcmp;
1760 struct hwrm_fwd_req_cmpl *fwd_req_cmpl =
1761 (struct hwrm_fwd_req_cmpl *)txcmp;
1762
1763 switch (cmpl_type) {
1764 case CMPL_BASE_TYPE_HWRM_DONE:
1765 seq_id = le16_to_cpu(h_cmpl->sequence_id);
1766 if (seq_id == bp->hwrm_intr_seq_id)
1767 bp->hwrm_intr_seq_id = HWRM_SEQ_ID_INVALID;
1768 else
1769 netdev_err(bp->dev, "Invalid hwrm seq id %d\n", seq_id);
1770 break;
1771
1772 case CMPL_BASE_TYPE_HWRM_FWD_REQ:
1773 vf_id = le16_to_cpu(fwd_req_cmpl->source_id);
1774
1775 if ((vf_id < bp->pf.first_vf_id) ||
1776 (vf_id >= bp->pf.first_vf_id + bp->pf.active_vfs)) {
1777 netdev_err(bp->dev, "Msg contains invalid VF id %x\n",
1778 vf_id);
1779 return -EINVAL;
1780 }
1781
1782 set_bit(vf_id - bp->pf.first_vf_id, bp->pf.vf_event_bmap);
1783 set_bit(BNXT_HWRM_EXEC_FWD_REQ_SP_EVENT, &bp->sp_event);
Michael Chanc213eae2017-10-13 21:09:29 -04001784 bnxt_queue_sp_work(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04001785 break;
1786
1787 case CMPL_BASE_TYPE_HWRM_ASYNC_EVENT:
1788 bnxt_async_event_process(bp,
1789 (struct hwrm_async_event_cmpl *)txcmp);
1790
1791 default:
1792 break;
1793 }
1794
1795 return 0;
1796}
1797
1798static irqreturn_t bnxt_msix(int irq, void *dev_instance)
1799{
1800 struct bnxt_napi *bnapi = dev_instance;
1801 struct bnxt *bp = bnapi->bp;
1802 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
1803 u32 cons = RING_CMP(cpr->cp_raw_cons);
1804
1805 prefetch(&cpr->cp_desc_ring[CP_RING(cons)][CP_IDX(cons)]);
1806 napi_schedule(&bnapi->napi);
1807 return IRQ_HANDLED;
1808}
1809
1810static inline int bnxt_has_work(struct bnxt *bp, struct bnxt_cp_ring_info *cpr)
1811{
1812 u32 raw_cons = cpr->cp_raw_cons;
1813 u16 cons = RING_CMP(raw_cons);
1814 struct tx_cmp *txcmp;
1815
1816 txcmp = &cpr->cp_desc_ring[CP_RING(cons)][CP_IDX(cons)];
1817
1818 return TX_CMP_VALID(txcmp, raw_cons);
1819}
1820
Michael Chanc0c050c2015-10-22 16:01:17 -04001821static irqreturn_t bnxt_inta(int irq, void *dev_instance)
1822{
1823 struct bnxt_napi *bnapi = dev_instance;
1824 struct bnxt *bp = bnapi->bp;
1825 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
1826 u32 cons = RING_CMP(cpr->cp_raw_cons);
1827 u32 int_status;
1828
1829 prefetch(&cpr->cp_desc_ring[CP_RING(cons)][CP_IDX(cons)]);
1830
1831 if (!bnxt_has_work(bp, cpr)) {
Jeffrey Huang11809492015-11-05 16:25:49 -05001832 int_status = readl(bp->bar0 + BNXT_CAG_REG_LEGACY_INT_STATUS);
Michael Chanc0c050c2015-10-22 16:01:17 -04001833 /* return if erroneous interrupt */
1834 if (!(int_status & (0x10000 << cpr->cp_ring_struct.fw_ring_id)))
1835 return IRQ_NONE;
1836 }
1837
1838 /* disable ring IRQ */
1839 BNXT_CP_DB_IRQ_DIS(cpr->cp_doorbell);
1840
1841 /* Return here if interrupt is shared and is disabled. */
1842 if (unlikely(atomic_read(&bp->intr_sem) != 0))
1843 return IRQ_HANDLED;
1844
1845 napi_schedule(&bnapi->napi);
1846 return IRQ_HANDLED;
1847}
1848
1849static int bnxt_poll_work(struct bnxt *bp, struct bnxt_napi *bnapi, int budget)
1850{
1851 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
1852 u32 raw_cons = cpr->cp_raw_cons;
1853 u32 cons;
1854 int tx_pkts = 0;
1855 int rx_pkts = 0;
Michael Chan4e5dbbda2017-02-06 16:55:37 -05001856 u8 event = 0;
Michael Chanc0c050c2015-10-22 16:01:17 -04001857 struct tx_cmp *txcmp;
1858
1859 while (1) {
1860 int rc;
1861
1862 cons = RING_CMP(raw_cons);
1863 txcmp = &cpr->cp_desc_ring[CP_RING(cons)][CP_IDX(cons)];
1864
1865 if (!TX_CMP_VALID(txcmp, raw_cons))
1866 break;
1867
Michael Chan67a95e22016-05-04 16:56:43 -04001868 /* The valid test of the entry must be done first before
1869 * reading any further.
1870 */
Michael Chanb67daab2016-05-15 03:04:51 -04001871 dma_rmb();
Michael Chanc0c050c2015-10-22 16:01:17 -04001872 if (TX_CMP_TYPE(txcmp) == CMP_TYPE_TX_L2_CMP) {
1873 tx_pkts++;
1874 /* return full budget so NAPI will complete. */
1875 if (unlikely(tx_pkts > bp->tx_wake_thresh))
1876 rx_pkts = budget;
1877 } else if ((TX_CMP_TYPE(txcmp) & 0x30) == 0x10) {
Michael Chan2270bc52017-06-23 14:01:01 -04001878 if (likely(budget))
1879 rc = bnxt_rx_pkt(bp, bnapi, &raw_cons, &event);
1880 else
1881 rc = bnxt_force_rx_discard(bp, bnapi, &raw_cons,
1882 &event);
Michael Chanc0c050c2015-10-22 16:01:17 -04001883 if (likely(rc >= 0))
1884 rx_pkts += rc;
Michael Chan903649e2017-08-28 13:40:30 -04001885 /* Increment rx_pkts when rc is -ENOMEM to count towards
1886 * the NAPI budget. Otherwise, we may potentially loop
1887 * here forever if we consistently cannot allocate
1888 * buffers.
1889 */
1890 else if (rc == -ENOMEM)
1891 rx_pkts++;
Michael Chanc0c050c2015-10-22 16:01:17 -04001892 else if (rc == -EBUSY) /* partial completion */
1893 break;
Michael Chanc0c050c2015-10-22 16:01:17 -04001894 } else if (unlikely((TX_CMP_TYPE(txcmp) ==
1895 CMPL_BASE_TYPE_HWRM_DONE) ||
1896 (TX_CMP_TYPE(txcmp) ==
1897 CMPL_BASE_TYPE_HWRM_FWD_REQ) ||
1898 (TX_CMP_TYPE(txcmp) ==
1899 CMPL_BASE_TYPE_HWRM_ASYNC_EVENT))) {
1900 bnxt_hwrm_handler(bp, txcmp);
1901 }
1902 raw_cons = NEXT_RAW_CMP(raw_cons);
1903
1904 if (rx_pkts == budget)
1905 break;
1906 }
1907
Michael Chan38413402017-02-06 16:55:43 -05001908 if (event & BNXT_TX_EVENT) {
1909 struct bnxt_tx_ring_info *txr = bnapi->tx_ring;
1910 void __iomem *db = txr->tx_doorbell;
1911 u16 prod = txr->tx_prod;
1912
1913 /* Sync BD data before updating doorbell */
1914 wmb();
1915
Michael Chan434c9752017-05-29 19:06:08 -04001916 bnxt_db_write(bp, db, DB_KEY_TX | prod);
Michael Chan38413402017-02-06 16:55:43 -05001917 }
1918
Michael Chanc0c050c2015-10-22 16:01:17 -04001919 cpr->cp_raw_cons = raw_cons;
1920 /* ACK completion ring before freeing tx ring and producing new
1921 * buffers in rx/agg rings to prevent overflowing the completion
1922 * ring.
1923 */
1924 BNXT_CP_DB(cpr->cp_doorbell, cpr->cp_raw_cons);
1925
1926 if (tx_pkts)
Michael Chanfa3e93e2017-02-06 16:55:41 -05001927 bnapi->tx_int(bp, bnapi, tx_pkts);
Michael Chanc0c050c2015-10-22 16:01:17 -04001928
Michael Chan4e5dbbda2017-02-06 16:55:37 -05001929 if (event & BNXT_RX_EVENT) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05001930 struct bnxt_rx_ring_info *rxr = bnapi->rx_ring;
Michael Chanc0c050c2015-10-22 16:01:17 -04001931
Michael Chan434c9752017-05-29 19:06:08 -04001932 bnxt_db_write(bp, rxr->rx_doorbell, DB_KEY_RX | rxr->rx_prod);
1933 if (event & BNXT_AGG_EVENT)
1934 bnxt_db_write(bp, rxr->rx_agg_doorbell,
1935 DB_KEY_RX | rxr->rx_agg_prod);
Michael Chanc0c050c2015-10-22 16:01:17 -04001936 }
1937 return rx_pkts;
1938}
1939
Prashant Sreedharan10bbdaf2016-07-18 07:15:23 -04001940static int bnxt_poll_nitroa0(struct napi_struct *napi, int budget)
1941{
1942 struct bnxt_napi *bnapi = container_of(napi, struct bnxt_napi, napi);
1943 struct bnxt *bp = bnapi->bp;
1944 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
1945 struct bnxt_rx_ring_info *rxr = bnapi->rx_ring;
1946 struct tx_cmp *txcmp;
1947 struct rx_cmp_ext *rxcmp1;
1948 u32 cp_cons, tmp_raw_cons;
1949 u32 raw_cons = cpr->cp_raw_cons;
1950 u32 rx_pkts = 0;
Michael Chan4e5dbbda2017-02-06 16:55:37 -05001951 u8 event = 0;
Prashant Sreedharan10bbdaf2016-07-18 07:15:23 -04001952
1953 while (1) {
1954 int rc;
1955
1956 cp_cons = RING_CMP(raw_cons);
1957 txcmp = &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)];
1958
1959 if (!TX_CMP_VALID(txcmp, raw_cons))
1960 break;
1961
1962 if ((TX_CMP_TYPE(txcmp) & 0x30) == 0x10) {
1963 tmp_raw_cons = NEXT_RAW_CMP(raw_cons);
1964 cp_cons = RING_CMP(tmp_raw_cons);
1965 rxcmp1 = (struct rx_cmp_ext *)
1966 &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)];
1967
1968 if (!RX_CMP_VALID(rxcmp1, tmp_raw_cons))
1969 break;
1970
1971 /* force an error to recycle the buffer */
1972 rxcmp1->rx_cmp_cfa_code_errors_v2 |=
1973 cpu_to_le32(RX_CMPL_ERRORS_CRC_ERROR);
1974
Michael Chan4e5dbbda2017-02-06 16:55:37 -05001975 rc = bnxt_rx_pkt(bp, bnapi, &raw_cons, &event);
Prashant Sreedharan10bbdaf2016-07-18 07:15:23 -04001976 if (likely(rc == -EIO))
1977 rx_pkts++;
1978 else if (rc == -EBUSY) /* partial completion */
1979 break;
1980 } else if (unlikely(TX_CMP_TYPE(txcmp) ==
1981 CMPL_BASE_TYPE_HWRM_DONE)) {
1982 bnxt_hwrm_handler(bp, txcmp);
1983 } else {
1984 netdev_err(bp->dev,
1985 "Invalid completion received on special ring\n");
1986 }
1987 raw_cons = NEXT_RAW_CMP(raw_cons);
1988
1989 if (rx_pkts == budget)
1990 break;
1991 }
1992
1993 cpr->cp_raw_cons = raw_cons;
1994 BNXT_CP_DB(cpr->cp_doorbell, cpr->cp_raw_cons);
Michael Chan434c9752017-05-29 19:06:08 -04001995 bnxt_db_write(bp, rxr->rx_doorbell, DB_KEY_RX | rxr->rx_prod);
Prashant Sreedharan10bbdaf2016-07-18 07:15:23 -04001996
Michael Chan434c9752017-05-29 19:06:08 -04001997 if (event & BNXT_AGG_EVENT)
1998 bnxt_db_write(bp, rxr->rx_agg_doorbell,
1999 DB_KEY_RX | rxr->rx_agg_prod);
Prashant Sreedharan10bbdaf2016-07-18 07:15:23 -04002000
2001 if (!bnxt_has_work(bp, cpr) && rx_pkts < budget) {
Eric Dumazet6ad20162017-01-30 08:22:01 -08002002 napi_complete_done(napi, rx_pkts);
Prashant Sreedharan10bbdaf2016-07-18 07:15:23 -04002003 BNXT_CP_DB_REARM(cpr->cp_doorbell, cpr->cp_raw_cons);
2004 }
2005 return rx_pkts;
2006}
2007
Michael Chanc0c050c2015-10-22 16:01:17 -04002008static int bnxt_poll(struct napi_struct *napi, int budget)
2009{
2010 struct bnxt_napi *bnapi = container_of(napi, struct bnxt_napi, napi);
2011 struct bnxt *bp = bnapi->bp;
2012 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
2013 int work_done = 0;
2014
Michael Chanc0c050c2015-10-22 16:01:17 -04002015 while (1) {
2016 work_done += bnxt_poll_work(bp, bnapi, budget - work_done);
2017
2018 if (work_done >= budget)
2019 break;
2020
2021 if (!bnxt_has_work(bp, cpr)) {
Michael Chane7b95692016-12-29 12:13:32 -05002022 if (napi_complete_done(napi, work_done))
2023 BNXT_CP_DB_REARM(cpr->cp_doorbell,
2024 cpr->cp_raw_cons);
Michael Chanc0c050c2015-10-22 16:01:17 -04002025 break;
2026 }
2027 }
2028 mmiowb();
Michael Chanc0c050c2015-10-22 16:01:17 -04002029 return work_done;
2030}
2031
Michael Chanc0c050c2015-10-22 16:01:17 -04002032static void bnxt_free_tx_skbs(struct bnxt *bp)
2033{
2034 int i, max_idx;
2035 struct pci_dev *pdev = bp->pdev;
2036
Michael Chanb6ab4b02016-01-02 23:44:59 -05002037 if (!bp->tx_ring)
Michael Chanc0c050c2015-10-22 16:01:17 -04002038 return;
2039
2040 max_idx = bp->tx_nr_pages * TX_DESC_CNT;
2041 for (i = 0; i < bp->tx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05002042 struct bnxt_tx_ring_info *txr = &bp->tx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04002043 int j;
2044
Michael Chanc0c050c2015-10-22 16:01:17 -04002045 for (j = 0; j < max_idx;) {
2046 struct bnxt_sw_tx_bd *tx_buf = &txr->tx_buf_ring[j];
2047 struct sk_buff *skb = tx_buf->skb;
2048 int k, last;
2049
2050 if (!skb) {
2051 j++;
2052 continue;
2053 }
2054
2055 tx_buf->skb = NULL;
2056
2057 if (tx_buf->is_push) {
2058 dev_kfree_skb(skb);
2059 j += 2;
2060 continue;
2061 }
2062
2063 dma_unmap_single(&pdev->dev,
2064 dma_unmap_addr(tx_buf, mapping),
2065 skb_headlen(skb),
2066 PCI_DMA_TODEVICE);
2067
2068 last = tx_buf->nr_frags;
2069 j += 2;
Michael Chand612a572016-01-28 03:11:22 -05002070 for (k = 0; k < last; k++, j++) {
2071 int ring_idx = j & bp->tx_ring_mask;
Michael Chanc0c050c2015-10-22 16:01:17 -04002072 skb_frag_t *frag = &skb_shinfo(skb)->frags[k];
2073
Michael Chand612a572016-01-28 03:11:22 -05002074 tx_buf = &txr->tx_buf_ring[ring_idx];
Michael Chanc0c050c2015-10-22 16:01:17 -04002075 dma_unmap_page(
2076 &pdev->dev,
2077 dma_unmap_addr(tx_buf, mapping),
2078 skb_frag_size(frag), PCI_DMA_TODEVICE);
2079 }
2080 dev_kfree_skb(skb);
2081 }
2082 netdev_tx_reset_queue(netdev_get_tx_queue(bp->dev, i));
2083 }
2084}
2085
2086static void bnxt_free_rx_skbs(struct bnxt *bp)
2087{
2088 int i, max_idx, max_agg_idx;
2089 struct pci_dev *pdev = bp->pdev;
2090
Michael Chanb6ab4b02016-01-02 23:44:59 -05002091 if (!bp->rx_ring)
Michael Chanc0c050c2015-10-22 16:01:17 -04002092 return;
2093
2094 max_idx = bp->rx_nr_pages * RX_DESC_CNT;
2095 max_agg_idx = bp->rx_agg_nr_pages * RX_DESC_CNT;
2096 for (i = 0; i < bp->rx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05002097 struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04002098 int j;
2099
Michael Chanc0c050c2015-10-22 16:01:17 -04002100 if (rxr->rx_tpa) {
2101 for (j = 0; j < MAX_TPA; j++) {
2102 struct bnxt_tpa_info *tpa_info =
2103 &rxr->rx_tpa[j];
2104 u8 *data = tpa_info->data;
2105
2106 if (!data)
2107 continue;
2108
Shannon Nelsonc519fe92017-05-09 18:30:12 -07002109 dma_unmap_single_attrs(&pdev->dev,
2110 tpa_info->mapping,
2111 bp->rx_buf_use_size,
2112 bp->rx_dir,
2113 DMA_ATTR_WEAK_ORDERING);
Michael Chanc0c050c2015-10-22 16:01:17 -04002114
2115 tpa_info->data = NULL;
2116
2117 kfree(data);
2118 }
2119 }
2120
2121 for (j = 0; j < max_idx; j++) {
2122 struct bnxt_sw_rx_bd *rx_buf = &rxr->rx_buf_ring[j];
Michael Chan3ed3a832017-03-28 19:47:31 -04002123 dma_addr_t mapping = rx_buf->mapping;
Michael Chan6bb19472017-02-06 16:55:32 -05002124 void *data = rx_buf->data;
Michael Chanc0c050c2015-10-22 16:01:17 -04002125
2126 if (!data)
2127 continue;
2128
Michael Chanc0c050c2015-10-22 16:01:17 -04002129 rx_buf->data = NULL;
2130
Michael Chan3ed3a832017-03-28 19:47:31 -04002131 if (BNXT_RX_PAGE_MODE(bp)) {
2132 mapping -= bp->rx_dma_offset;
Shannon Nelsonc519fe92017-05-09 18:30:12 -07002133 dma_unmap_page_attrs(&pdev->dev, mapping,
2134 PAGE_SIZE, bp->rx_dir,
2135 DMA_ATTR_WEAK_ORDERING);
Michael Chanc61fb992017-02-06 16:55:36 -05002136 __free_page(data);
Michael Chan3ed3a832017-03-28 19:47:31 -04002137 } else {
Shannon Nelsonc519fe92017-05-09 18:30:12 -07002138 dma_unmap_single_attrs(&pdev->dev, mapping,
2139 bp->rx_buf_use_size,
2140 bp->rx_dir,
2141 DMA_ATTR_WEAK_ORDERING);
Michael Chanc61fb992017-02-06 16:55:36 -05002142 kfree(data);
Michael Chan3ed3a832017-03-28 19:47:31 -04002143 }
Michael Chanc0c050c2015-10-22 16:01:17 -04002144 }
2145
2146 for (j = 0; j < max_agg_idx; j++) {
2147 struct bnxt_sw_rx_agg_bd *rx_agg_buf =
2148 &rxr->rx_agg_ring[j];
2149 struct page *page = rx_agg_buf->page;
2150
2151 if (!page)
2152 continue;
2153
Shannon Nelsonc519fe92017-05-09 18:30:12 -07002154 dma_unmap_page_attrs(&pdev->dev, rx_agg_buf->mapping,
2155 BNXT_RX_PAGE_SIZE,
2156 PCI_DMA_FROMDEVICE,
2157 DMA_ATTR_WEAK_ORDERING);
Michael Chanc0c050c2015-10-22 16:01:17 -04002158
2159 rx_agg_buf->page = NULL;
2160 __clear_bit(j, rxr->rx_agg_bmap);
2161
2162 __free_page(page);
2163 }
Michael Chan89d0a062016-04-25 02:30:51 -04002164 if (rxr->rx_page) {
2165 __free_page(rxr->rx_page);
2166 rxr->rx_page = NULL;
2167 }
Michael Chanc0c050c2015-10-22 16:01:17 -04002168 }
2169}
2170
2171static void bnxt_free_skbs(struct bnxt *bp)
2172{
2173 bnxt_free_tx_skbs(bp);
2174 bnxt_free_rx_skbs(bp);
2175}
2176
2177static void bnxt_free_ring(struct bnxt *bp, struct bnxt_ring_struct *ring)
2178{
2179 struct pci_dev *pdev = bp->pdev;
2180 int i;
2181
2182 for (i = 0; i < ring->nr_pages; i++) {
2183 if (!ring->pg_arr[i])
2184 continue;
2185
2186 dma_free_coherent(&pdev->dev, ring->page_size,
2187 ring->pg_arr[i], ring->dma_arr[i]);
2188
2189 ring->pg_arr[i] = NULL;
2190 }
2191 if (ring->pg_tbl) {
2192 dma_free_coherent(&pdev->dev, ring->nr_pages * 8,
2193 ring->pg_tbl, ring->pg_tbl_map);
2194 ring->pg_tbl = NULL;
2195 }
2196 if (ring->vmem_size && *ring->vmem) {
2197 vfree(*ring->vmem);
2198 *ring->vmem = NULL;
2199 }
2200}
2201
2202static int bnxt_alloc_ring(struct bnxt *bp, struct bnxt_ring_struct *ring)
2203{
2204 int i;
2205 struct pci_dev *pdev = bp->pdev;
2206
2207 if (ring->nr_pages > 1) {
2208 ring->pg_tbl = dma_alloc_coherent(&pdev->dev,
2209 ring->nr_pages * 8,
2210 &ring->pg_tbl_map,
2211 GFP_KERNEL);
2212 if (!ring->pg_tbl)
2213 return -ENOMEM;
2214 }
2215
2216 for (i = 0; i < ring->nr_pages; i++) {
2217 ring->pg_arr[i] = dma_alloc_coherent(&pdev->dev,
2218 ring->page_size,
2219 &ring->dma_arr[i],
2220 GFP_KERNEL);
2221 if (!ring->pg_arr[i])
2222 return -ENOMEM;
2223
2224 if (ring->nr_pages > 1)
2225 ring->pg_tbl[i] = cpu_to_le64(ring->dma_arr[i]);
2226 }
2227
2228 if (ring->vmem_size) {
2229 *ring->vmem = vzalloc(ring->vmem_size);
2230 if (!(*ring->vmem))
2231 return -ENOMEM;
2232 }
2233 return 0;
2234}
2235
2236static void bnxt_free_rx_rings(struct bnxt *bp)
2237{
2238 int i;
2239
Michael Chanb6ab4b02016-01-02 23:44:59 -05002240 if (!bp->rx_ring)
Michael Chanc0c050c2015-10-22 16:01:17 -04002241 return;
2242
2243 for (i = 0; i < bp->rx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05002244 struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04002245 struct bnxt_ring_struct *ring;
2246
Michael Chanc6d30e82017-02-06 16:55:42 -05002247 if (rxr->xdp_prog)
2248 bpf_prog_put(rxr->xdp_prog);
2249
Michael Chanc0c050c2015-10-22 16:01:17 -04002250 kfree(rxr->rx_tpa);
2251 rxr->rx_tpa = NULL;
2252
2253 kfree(rxr->rx_agg_bmap);
2254 rxr->rx_agg_bmap = NULL;
2255
2256 ring = &rxr->rx_ring_struct;
2257 bnxt_free_ring(bp, ring);
2258
2259 ring = &rxr->rx_agg_ring_struct;
2260 bnxt_free_ring(bp, ring);
2261 }
2262}
2263
2264static int bnxt_alloc_rx_rings(struct bnxt *bp)
2265{
2266 int i, rc, agg_rings = 0, tpa_rings = 0;
2267
Michael Chanb6ab4b02016-01-02 23:44:59 -05002268 if (!bp->rx_ring)
2269 return -ENOMEM;
2270
Michael Chanc0c050c2015-10-22 16:01:17 -04002271 if (bp->flags & BNXT_FLAG_AGG_RINGS)
2272 agg_rings = 1;
2273
2274 if (bp->flags & BNXT_FLAG_TPA)
2275 tpa_rings = 1;
2276
2277 for (i = 0; i < bp->rx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05002278 struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04002279 struct bnxt_ring_struct *ring;
2280
Michael Chanc0c050c2015-10-22 16:01:17 -04002281 ring = &rxr->rx_ring_struct;
2282
2283 rc = bnxt_alloc_ring(bp, ring);
2284 if (rc)
2285 return rc;
2286
2287 if (agg_rings) {
2288 u16 mem_size;
2289
2290 ring = &rxr->rx_agg_ring_struct;
2291 rc = bnxt_alloc_ring(bp, ring);
2292 if (rc)
2293 return rc;
2294
2295 rxr->rx_agg_bmap_size = bp->rx_agg_ring_mask + 1;
2296 mem_size = rxr->rx_agg_bmap_size / 8;
2297 rxr->rx_agg_bmap = kzalloc(mem_size, GFP_KERNEL);
2298 if (!rxr->rx_agg_bmap)
2299 return -ENOMEM;
2300
2301 if (tpa_rings) {
2302 rxr->rx_tpa = kcalloc(MAX_TPA,
2303 sizeof(struct bnxt_tpa_info),
2304 GFP_KERNEL);
2305 if (!rxr->rx_tpa)
2306 return -ENOMEM;
2307 }
2308 }
2309 }
2310 return 0;
2311}
2312
2313static void bnxt_free_tx_rings(struct bnxt *bp)
2314{
2315 int i;
2316 struct pci_dev *pdev = bp->pdev;
2317
Michael Chanb6ab4b02016-01-02 23:44:59 -05002318 if (!bp->tx_ring)
Michael Chanc0c050c2015-10-22 16:01:17 -04002319 return;
2320
2321 for (i = 0; i < bp->tx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05002322 struct bnxt_tx_ring_info *txr = &bp->tx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04002323 struct bnxt_ring_struct *ring;
2324
Michael Chanc0c050c2015-10-22 16:01:17 -04002325 if (txr->tx_push) {
2326 dma_free_coherent(&pdev->dev, bp->tx_push_size,
2327 txr->tx_push, txr->tx_push_mapping);
2328 txr->tx_push = NULL;
2329 }
2330
2331 ring = &txr->tx_ring_struct;
2332
2333 bnxt_free_ring(bp, ring);
2334 }
2335}
2336
2337static int bnxt_alloc_tx_rings(struct bnxt *bp)
2338{
2339 int i, j, rc;
2340 struct pci_dev *pdev = bp->pdev;
2341
2342 bp->tx_push_size = 0;
2343 if (bp->tx_push_thresh) {
2344 int push_size;
2345
2346 push_size = L1_CACHE_ALIGN(sizeof(struct tx_push_bd) +
2347 bp->tx_push_thresh);
2348
Michael Chan4419dbe2016-02-10 17:33:49 -05002349 if (push_size > 256) {
Michael Chanc0c050c2015-10-22 16:01:17 -04002350 push_size = 0;
2351 bp->tx_push_thresh = 0;
2352 }
2353
2354 bp->tx_push_size = push_size;
2355 }
2356
2357 for (i = 0, j = 0; i < bp->tx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05002358 struct bnxt_tx_ring_info *txr = &bp->tx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04002359 struct bnxt_ring_struct *ring;
2360
Michael Chanc0c050c2015-10-22 16:01:17 -04002361 ring = &txr->tx_ring_struct;
2362
2363 rc = bnxt_alloc_ring(bp, ring);
2364 if (rc)
2365 return rc;
2366
2367 if (bp->tx_push_size) {
Michael Chanc0c050c2015-10-22 16:01:17 -04002368 dma_addr_t mapping;
2369
2370 /* One pre-allocated DMA buffer to backup
2371 * TX push operation
2372 */
2373 txr->tx_push = dma_alloc_coherent(&pdev->dev,
2374 bp->tx_push_size,
2375 &txr->tx_push_mapping,
2376 GFP_KERNEL);
2377
2378 if (!txr->tx_push)
2379 return -ENOMEM;
2380
Michael Chanc0c050c2015-10-22 16:01:17 -04002381 mapping = txr->tx_push_mapping +
2382 sizeof(struct tx_push_bd);
Michael Chan4419dbe2016-02-10 17:33:49 -05002383 txr->data_mapping = cpu_to_le64(mapping);
Michael Chanc0c050c2015-10-22 16:01:17 -04002384
Michael Chan4419dbe2016-02-10 17:33:49 -05002385 memset(txr->tx_push, 0, sizeof(struct tx_push_bd));
Michael Chanc0c050c2015-10-22 16:01:17 -04002386 }
2387 ring->queue_id = bp->q_info[j].queue_id;
Michael Chan5f449242017-02-06 16:55:40 -05002388 if (i < bp->tx_nr_rings_xdp)
2389 continue;
Michael Chanc0c050c2015-10-22 16:01:17 -04002390 if (i % bp->tx_nr_rings_per_tc == (bp->tx_nr_rings_per_tc - 1))
2391 j++;
2392 }
2393 return 0;
2394}
2395
2396static void bnxt_free_cp_rings(struct bnxt *bp)
2397{
2398 int i;
2399
2400 if (!bp->bnapi)
2401 return;
2402
2403 for (i = 0; i < bp->cp_nr_rings; i++) {
2404 struct bnxt_napi *bnapi = bp->bnapi[i];
2405 struct bnxt_cp_ring_info *cpr;
2406 struct bnxt_ring_struct *ring;
2407
2408 if (!bnapi)
2409 continue;
2410
2411 cpr = &bnapi->cp_ring;
2412 ring = &cpr->cp_ring_struct;
2413
2414 bnxt_free_ring(bp, ring);
2415 }
2416}
2417
2418static int bnxt_alloc_cp_rings(struct bnxt *bp)
2419{
2420 int i, rc;
2421
2422 for (i = 0; i < bp->cp_nr_rings; i++) {
2423 struct bnxt_napi *bnapi = bp->bnapi[i];
2424 struct bnxt_cp_ring_info *cpr;
2425 struct bnxt_ring_struct *ring;
2426
2427 if (!bnapi)
2428 continue;
2429
2430 cpr = &bnapi->cp_ring;
2431 ring = &cpr->cp_ring_struct;
2432
2433 rc = bnxt_alloc_ring(bp, ring);
2434 if (rc)
2435 return rc;
2436 }
2437 return 0;
2438}
2439
2440static void bnxt_init_ring_struct(struct bnxt *bp)
2441{
2442 int i;
2443
2444 for (i = 0; i < bp->cp_nr_rings; i++) {
2445 struct bnxt_napi *bnapi = bp->bnapi[i];
2446 struct bnxt_cp_ring_info *cpr;
2447 struct bnxt_rx_ring_info *rxr;
2448 struct bnxt_tx_ring_info *txr;
2449 struct bnxt_ring_struct *ring;
2450
2451 if (!bnapi)
2452 continue;
2453
2454 cpr = &bnapi->cp_ring;
2455 ring = &cpr->cp_ring_struct;
2456 ring->nr_pages = bp->cp_nr_pages;
2457 ring->page_size = HW_CMPD_RING_SIZE;
2458 ring->pg_arr = (void **)cpr->cp_desc_ring;
2459 ring->dma_arr = cpr->cp_desc_mapping;
2460 ring->vmem_size = 0;
2461
Michael Chanb6ab4b02016-01-02 23:44:59 -05002462 rxr = bnapi->rx_ring;
Michael Chan3b2b7d92016-01-02 23:45:00 -05002463 if (!rxr)
2464 goto skip_rx;
2465
Michael Chanc0c050c2015-10-22 16:01:17 -04002466 ring = &rxr->rx_ring_struct;
2467 ring->nr_pages = bp->rx_nr_pages;
2468 ring->page_size = HW_RXBD_RING_SIZE;
2469 ring->pg_arr = (void **)rxr->rx_desc_ring;
2470 ring->dma_arr = rxr->rx_desc_mapping;
2471 ring->vmem_size = SW_RXBD_RING_SIZE * bp->rx_nr_pages;
2472 ring->vmem = (void **)&rxr->rx_buf_ring;
2473
2474 ring = &rxr->rx_agg_ring_struct;
2475 ring->nr_pages = bp->rx_agg_nr_pages;
2476 ring->page_size = HW_RXBD_RING_SIZE;
2477 ring->pg_arr = (void **)rxr->rx_agg_desc_ring;
2478 ring->dma_arr = rxr->rx_agg_desc_mapping;
2479 ring->vmem_size = SW_RXBD_AGG_RING_SIZE * bp->rx_agg_nr_pages;
2480 ring->vmem = (void **)&rxr->rx_agg_ring;
2481
Michael Chan3b2b7d92016-01-02 23:45:00 -05002482skip_rx:
Michael Chanb6ab4b02016-01-02 23:44:59 -05002483 txr = bnapi->tx_ring;
Michael Chan3b2b7d92016-01-02 23:45:00 -05002484 if (!txr)
2485 continue;
2486
Michael Chanc0c050c2015-10-22 16:01:17 -04002487 ring = &txr->tx_ring_struct;
2488 ring->nr_pages = bp->tx_nr_pages;
2489 ring->page_size = HW_RXBD_RING_SIZE;
2490 ring->pg_arr = (void **)txr->tx_desc_ring;
2491 ring->dma_arr = txr->tx_desc_mapping;
2492 ring->vmem_size = SW_TXBD_RING_SIZE * bp->tx_nr_pages;
2493 ring->vmem = (void **)&txr->tx_buf_ring;
2494 }
2495}
2496
2497static void bnxt_init_rxbd_pages(struct bnxt_ring_struct *ring, u32 type)
2498{
2499 int i;
2500 u32 prod;
2501 struct rx_bd **rx_buf_ring;
2502
2503 rx_buf_ring = (struct rx_bd **)ring->pg_arr;
2504 for (i = 0, prod = 0; i < ring->nr_pages; i++) {
2505 int j;
2506 struct rx_bd *rxbd;
2507
2508 rxbd = rx_buf_ring[i];
2509 if (!rxbd)
2510 continue;
2511
2512 for (j = 0; j < RX_DESC_CNT; j++, rxbd++, prod++) {
2513 rxbd->rx_bd_len_flags_type = cpu_to_le32(type);
2514 rxbd->rx_bd_opaque = prod;
2515 }
2516 }
2517}
2518
2519static int bnxt_init_one_rx_ring(struct bnxt *bp, int ring_nr)
2520{
2521 struct net_device *dev = bp->dev;
Michael Chanc0c050c2015-10-22 16:01:17 -04002522 struct bnxt_rx_ring_info *rxr;
2523 struct bnxt_ring_struct *ring;
2524 u32 prod, type;
2525 int i;
2526
Michael Chanc0c050c2015-10-22 16:01:17 -04002527 type = (bp->rx_buf_use_size << RX_BD_LEN_SHIFT) |
2528 RX_BD_TYPE_RX_PACKET_BD | RX_BD_FLAGS_EOP;
2529
2530 if (NET_IP_ALIGN == 2)
2531 type |= RX_BD_FLAGS_SOP;
2532
Michael Chanb6ab4b02016-01-02 23:44:59 -05002533 rxr = &bp->rx_ring[ring_nr];
Michael Chanc0c050c2015-10-22 16:01:17 -04002534 ring = &rxr->rx_ring_struct;
2535 bnxt_init_rxbd_pages(ring, type);
2536
Michael Chanc6d30e82017-02-06 16:55:42 -05002537 if (BNXT_RX_PAGE_MODE(bp) && bp->xdp_prog) {
2538 rxr->xdp_prog = bpf_prog_add(bp->xdp_prog, 1);
2539 if (IS_ERR(rxr->xdp_prog)) {
2540 int rc = PTR_ERR(rxr->xdp_prog);
2541
2542 rxr->xdp_prog = NULL;
2543 return rc;
2544 }
2545 }
Michael Chanc0c050c2015-10-22 16:01:17 -04002546 prod = rxr->rx_prod;
2547 for (i = 0; i < bp->rx_ring_size; i++) {
2548 if (bnxt_alloc_rx_data(bp, rxr, prod, GFP_KERNEL) != 0) {
2549 netdev_warn(dev, "init'ed rx ring %d with %d/%d skbs only\n",
2550 ring_nr, i, bp->rx_ring_size);
2551 break;
2552 }
2553 prod = NEXT_RX(prod);
2554 }
2555 rxr->rx_prod = prod;
2556 ring->fw_ring_id = INVALID_HW_RING_ID;
2557
Michael Chanedd0c2c2015-12-27 18:19:19 -05002558 ring = &rxr->rx_agg_ring_struct;
2559 ring->fw_ring_id = INVALID_HW_RING_ID;
2560
Michael Chanc0c050c2015-10-22 16:01:17 -04002561 if (!(bp->flags & BNXT_FLAG_AGG_RINGS))
2562 return 0;
2563
Michael Chan2839f282016-04-25 02:30:50 -04002564 type = ((u32)BNXT_RX_PAGE_SIZE << RX_BD_LEN_SHIFT) |
Michael Chanc0c050c2015-10-22 16:01:17 -04002565 RX_BD_TYPE_RX_AGG_BD | RX_BD_FLAGS_SOP;
2566
2567 bnxt_init_rxbd_pages(ring, type);
2568
2569 prod = rxr->rx_agg_prod;
2570 for (i = 0; i < bp->rx_agg_ring_size; i++) {
2571 if (bnxt_alloc_rx_page(bp, rxr, prod, GFP_KERNEL) != 0) {
2572 netdev_warn(dev, "init'ed rx ring %d with %d/%d pages only\n",
2573 ring_nr, i, bp->rx_ring_size);
2574 break;
2575 }
2576 prod = NEXT_RX_AGG(prod);
2577 }
2578 rxr->rx_agg_prod = prod;
Michael Chanc0c050c2015-10-22 16:01:17 -04002579
2580 if (bp->flags & BNXT_FLAG_TPA) {
2581 if (rxr->rx_tpa) {
2582 u8 *data;
2583 dma_addr_t mapping;
2584
2585 for (i = 0; i < MAX_TPA; i++) {
2586 data = __bnxt_alloc_rx_data(bp, &mapping,
2587 GFP_KERNEL);
2588 if (!data)
2589 return -ENOMEM;
2590
2591 rxr->rx_tpa[i].data = data;
Michael Chanb3dba772017-02-06 16:55:35 -05002592 rxr->rx_tpa[i].data_ptr = data + bp->rx_offset;
Michael Chanc0c050c2015-10-22 16:01:17 -04002593 rxr->rx_tpa[i].mapping = mapping;
2594 }
2595 } else {
2596 netdev_err(bp->dev, "No resource allocated for LRO/GRO\n");
2597 return -ENOMEM;
2598 }
2599 }
2600
2601 return 0;
2602}
2603
Sankar Patchineelam22479252017-03-28 19:47:29 -04002604static void bnxt_init_cp_rings(struct bnxt *bp)
2605{
2606 int i;
2607
2608 for (i = 0; i < bp->cp_nr_rings; i++) {
2609 struct bnxt_cp_ring_info *cpr = &bp->bnapi[i]->cp_ring;
2610 struct bnxt_ring_struct *ring = &cpr->cp_ring_struct;
2611
2612 ring->fw_ring_id = INVALID_HW_RING_ID;
2613 }
2614}
2615
Michael Chanc0c050c2015-10-22 16:01:17 -04002616static int bnxt_init_rx_rings(struct bnxt *bp)
2617{
2618 int i, rc = 0;
2619
Michael Chanc61fb992017-02-06 16:55:36 -05002620 if (BNXT_RX_PAGE_MODE(bp)) {
Michael Chanc6d30e82017-02-06 16:55:42 -05002621 bp->rx_offset = NET_IP_ALIGN + XDP_PACKET_HEADROOM;
2622 bp->rx_dma_offset = XDP_PACKET_HEADROOM;
Michael Chanc61fb992017-02-06 16:55:36 -05002623 } else {
2624 bp->rx_offset = BNXT_RX_OFFSET;
2625 bp->rx_dma_offset = BNXT_RX_DMA_OFFSET;
2626 }
Michael Chanb3dba772017-02-06 16:55:35 -05002627
Michael Chanc0c050c2015-10-22 16:01:17 -04002628 for (i = 0; i < bp->rx_nr_rings; i++) {
2629 rc = bnxt_init_one_rx_ring(bp, i);
2630 if (rc)
2631 break;
2632 }
2633
2634 return rc;
2635}
2636
2637static int bnxt_init_tx_rings(struct bnxt *bp)
2638{
2639 u16 i;
2640
2641 bp->tx_wake_thresh = max_t(int, bp->tx_ring_size / 2,
2642 MAX_SKB_FRAGS + 1);
2643
2644 for (i = 0; i < bp->tx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05002645 struct bnxt_tx_ring_info *txr = &bp->tx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04002646 struct bnxt_ring_struct *ring = &txr->tx_ring_struct;
2647
2648 ring->fw_ring_id = INVALID_HW_RING_ID;
2649 }
2650
2651 return 0;
2652}
2653
2654static void bnxt_free_ring_grps(struct bnxt *bp)
2655{
2656 kfree(bp->grp_info);
2657 bp->grp_info = NULL;
2658}
2659
2660static int bnxt_init_ring_grps(struct bnxt *bp, bool irq_re_init)
2661{
2662 int i;
2663
2664 if (irq_re_init) {
2665 bp->grp_info = kcalloc(bp->cp_nr_rings,
2666 sizeof(struct bnxt_ring_grp_info),
2667 GFP_KERNEL);
2668 if (!bp->grp_info)
2669 return -ENOMEM;
2670 }
2671 for (i = 0; i < bp->cp_nr_rings; i++) {
2672 if (irq_re_init)
2673 bp->grp_info[i].fw_stats_ctx = INVALID_HW_RING_ID;
2674 bp->grp_info[i].fw_grp_id = INVALID_HW_RING_ID;
2675 bp->grp_info[i].rx_fw_ring_id = INVALID_HW_RING_ID;
2676 bp->grp_info[i].agg_fw_ring_id = INVALID_HW_RING_ID;
2677 bp->grp_info[i].cp_fw_ring_id = INVALID_HW_RING_ID;
2678 }
2679 return 0;
2680}
2681
2682static void bnxt_free_vnics(struct bnxt *bp)
2683{
2684 kfree(bp->vnic_info);
2685 bp->vnic_info = NULL;
2686 bp->nr_vnics = 0;
2687}
2688
2689static int bnxt_alloc_vnics(struct bnxt *bp)
2690{
2691 int num_vnics = 1;
2692
2693#ifdef CONFIG_RFS_ACCEL
2694 if (bp->flags & BNXT_FLAG_RFS)
2695 num_vnics += bp->rx_nr_rings;
2696#endif
2697
Prashant Sreedharandc52c6c2016-07-18 07:15:24 -04002698 if (BNXT_CHIP_TYPE_NITRO_A0(bp))
2699 num_vnics++;
2700
Michael Chanc0c050c2015-10-22 16:01:17 -04002701 bp->vnic_info = kcalloc(num_vnics, sizeof(struct bnxt_vnic_info),
2702 GFP_KERNEL);
2703 if (!bp->vnic_info)
2704 return -ENOMEM;
2705
2706 bp->nr_vnics = num_vnics;
2707 return 0;
2708}
2709
2710static void bnxt_init_vnics(struct bnxt *bp)
2711{
2712 int i;
2713
2714 for (i = 0; i < bp->nr_vnics; i++) {
2715 struct bnxt_vnic_info *vnic = &bp->vnic_info[i];
2716
2717 vnic->fw_vnic_id = INVALID_HW_RING_ID;
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04002718 vnic->fw_rss_cos_lb_ctx[0] = INVALID_HW_RING_ID;
2719 vnic->fw_rss_cos_lb_ctx[1] = INVALID_HW_RING_ID;
Michael Chanc0c050c2015-10-22 16:01:17 -04002720 vnic->fw_l2_ctx_id = INVALID_HW_RING_ID;
2721
2722 if (bp->vnic_info[i].rss_hash_key) {
2723 if (i == 0)
2724 prandom_bytes(vnic->rss_hash_key,
2725 HW_HASH_KEY_SIZE);
2726 else
2727 memcpy(vnic->rss_hash_key,
2728 bp->vnic_info[0].rss_hash_key,
2729 HW_HASH_KEY_SIZE);
2730 }
2731 }
2732}
2733
2734static int bnxt_calc_nr_ring_pages(u32 ring_size, int desc_per_pg)
2735{
2736 int pages;
2737
2738 pages = ring_size / desc_per_pg;
2739
2740 if (!pages)
2741 return 1;
2742
2743 pages++;
2744
2745 while (pages & (pages - 1))
2746 pages++;
2747
2748 return pages;
2749}
2750
Michael Chanc6d30e82017-02-06 16:55:42 -05002751void bnxt_set_tpa_flags(struct bnxt *bp)
Michael Chanc0c050c2015-10-22 16:01:17 -04002752{
2753 bp->flags &= ~BNXT_FLAG_TPA;
Michael Chan341138c2017-01-13 01:32:01 -05002754 if (bp->flags & BNXT_FLAG_NO_AGG_RINGS)
2755 return;
Michael Chanc0c050c2015-10-22 16:01:17 -04002756 if (bp->dev->features & NETIF_F_LRO)
2757 bp->flags |= BNXT_FLAG_LRO;
Michael Chan94758f82016-06-13 02:25:35 -04002758 if (bp->dev->features & NETIF_F_GRO)
Michael Chanc0c050c2015-10-22 16:01:17 -04002759 bp->flags |= BNXT_FLAG_GRO;
2760}
2761
2762/* bp->rx_ring_size, bp->tx_ring_size, dev->mtu, BNXT_FLAG_{G|L}RO flags must
2763 * be set on entry.
2764 */
2765void bnxt_set_ring_params(struct bnxt *bp)
2766{
2767 u32 ring_size, rx_size, rx_space;
2768 u32 agg_factor = 0, agg_ring_size = 0;
2769
2770 /* 8 for CRC and VLAN */
2771 rx_size = SKB_DATA_ALIGN(bp->dev->mtu + ETH_HLEN + NET_IP_ALIGN + 8);
2772
2773 rx_space = rx_size + NET_SKB_PAD +
2774 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
2775
2776 bp->rx_copy_thresh = BNXT_RX_COPY_THRESH;
2777 ring_size = bp->rx_ring_size;
2778 bp->rx_agg_ring_size = 0;
2779 bp->rx_agg_nr_pages = 0;
2780
2781 if (bp->flags & BNXT_FLAG_TPA)
Michael Chan2839f282016-04-25 02:30:50 -04002782 agg_factor = min_t(u32, 4, 65536 / BNXT_RX_PAGE_SIZE);
Michael Chanc0c050c2015-10-22 16:01:17 -04002783
2784 bp->flags &= ~BNXT_FLAG_JUMBO;
Michael Chanbdbd1eb2016-12-29 12:13:43 -05002785 if (rx_space > PAGE_SIZE && !(bp->flags & BNXT_FLAG_NO_AGG_RINGS)) {
Michael Chanc0c050c2015-10-22 16:01:17 -04002786 u32 jumbo_factor;
2787
2788 bp->flags |= BNXT_FLAG_JUMBO;
2789 jumbo_factor = PAGE_ALIGN(bp->dev->mtu - 40) >> PAGE_SHIFT;
2790 if (jumbo_factor > agg_factor)
2791 agg_factor = jumbo_factor;
2792 }
2793 agg_ring_size = ring_size * agg_factor;
2794
2795 if (agg_ring_size) {
2796 bp->rx_agg_nr_pages = bnxt_calc_nr_ring_pages(agg_ring_size,
2797 RX_DESC_CNT);
2798 if (bp->rx_agg_nr_pages > MAX_RX_AGG_PAGES) {
2799 u32 tmp = agg_ring_size;
2800
2801 bp->rx_agg_nr_pages = MAX_RX_AGG_PAGES;
2802 agg_ring_size = MAX_RX_AGG_PAGES * RX_DESC_CNT - 1;
2803 netdev_warn(bp->dev, "rx agg ring size %d reduced to %d.\n",
2804 tmp, agg_ring_size);
2805 }
2806 bp->rx_agg_ring_size = agg_ring_size;
2807 bp->rx_agg_ring_mask = (bp->rx_agg_nr_pages * RX_DESC_CNT) - 1;
2808 rx_size = SKB_DATA_ALIGN(BNXT_RX_COPY_THRESH + NET_IP_ALIGN);
2809 rx_space = rx_size + NET_SKB_PAD +
2810 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
2811 }
2812
2813 bp->rx_buf_use_size = rx_size;
2814 bp->rx_buf_size = rx_space;
2815
2816 bp->rx_nr_pages = bnxt_calc_nr_ring_pages(ring_size, RX_DESC_CNT);
2817 bp->rx_ring_mask = (bp->rx_nr_pages * RX_DESC_CNT) - 1;
2818
2819 ring_size = bp->tx_ring_size;
2820 bp->tx_nr_pages = bnxt_calc_nr_ring_pages(ring_size, TX_DESC_CNT);
2821 bp->tx_ring_mask = (bp->tx_nr_pages * TX_DESC_CNT) - 1;
2822
2823 ring_size = bp->rx_ring_size * (2 + agg_factor) + bp->tx_ring_size;
2824 bp->cp_ring_size = ring_size;
2825
2826 bp->cp_nr_pages = bnxt_calc_nr_ring_pages(ring_size, CP_DESC_CNT);
2827 if (bp->cp_nr_pages > MAX_CP_PAGES) {
2828 bp->cp_nr_pages = MAX_CP_PAGES;
2829 bp->cp_ring_size = MAX_CP_PAGES * CP_DESC_CNT - 1;
2830 netdev_warn(bp->dev, "completion ring size %d reduced to %d.\n",
2831 ring_size, bp->cp_ring_size);
2832 }
2833 bp->cp_bit = bp->cp_nr_pages * CP_DESC_CNT;
2834 bp->cp_ring_mask = bp->cp_bit - 1;
2835}
2836
Michael Chanc61fb992017-02-06 16:55:36 -05002837int bnxt_set_rx_skb_mode(struct bnxt *bp, bool page_mode)
Michael Chan6bb19472017-02-06 16:55:32 -05002838{
Michael Chanc61fb992017-02-06 16:55:36 -05002839 if (page_mode) {
2840 if (bp->dev->mtu > BNXT_MAX_PAGE_MODE_MTU)
2841 return -EOPNOTSUPP;
Michael Chan7eb9bb32017-10-26 11:51:25 -04002842 bp->dev->max_mtu =
2843 min_t(u16, bp->max_mtu, BNXT_MAX_PAGE_MODE_MTU);
Michael Chanc61fb992017-02-06 16:55:36 -05002844 bp->flags &= ~BNXT_FLAG_AGG_RINGS;
2845 bp->flags |= BNXT_FLAG_NO_AGG_RINGS | BNXT_FLAG_RX_PAGE_MODE;
2846 bp->dev->hw_features &= ~NETIF_F_LRO;
2847 bp->dev->features &= ~NETIF_F_LRO;
2848 bp->rx_dir = DMA_BIDIRECTIONAL;
2849 bp->rx_skb_func = bnxt_rx_page_skb;
2850 } else {
Michael Chan7eb9bb32017-10-26 11:51:25 -04002851 bp->dev->max_mtu = bp->max_mtu;
Michael Chanc61fb992017-02-06 16:55:36 -05002852 bp->flags &= ~BNXT_FLAG_RX_PAGE_MODE;
2853 bp->rx_dir = DMA_FROM_DEVICE;
2854 bp->rx_skb_func = bnxt_rx_skb;
2855 }
Michael Chan6bb19472017-02-06 16:55:32 -05002856 return 0;
2857}
2858
Michael Chanc0c050c2015-10-22 16:01:17 -04002859static void bnxt_free_vnic_attributes(struct bnxt *bp)
2860{
2861 int i;
2862 struct bnxt_vnic_info *vnic;
2863 struct pci_dev *pdev = bp->pdev;
2864
2865 if (!bp->vnic_info)
2866 return;
2867
2868 for (i = 0; i < bp->nr_vnics; i++) {
2869 vnic = &bp->vnic_info[i];
2870
2871 kfree(vnic->fw_grp_ids);
2872 vnic->fw_grp_ids = NULL;
2873
2874 kfree(vnic->uc_list);
2875 vnic->uc_list = NULL;
2876
2877 if (vnic->mc_list) {
2878 dma_free_coherent(&pdev->dev, vnic->mc_list_size,
2879 vnic->mc_list, vnic->mc_list_mapping);
2880 vnic->mc_list = NULL;
2881 }
2882
2883 if (vnic->rss_table) {
2884 dma_free_coherent(&pdev->dev, PAGE_SIZE,
2885 vnic->rss_table,
2886 vnic->rss_table_dma_addr);
2887 vnic->rss_table = NULL;
2888 }
2889
2890 vnic->rss_hash_key = NULL;
2891 vnic->flags = 0;
2892 }
2893}
2894
2895static int bnxt_alloc_vnic_attributes(struct bnxt *bp)
2896{
2897 int i, rc = 0, size;
2898 struct bnxt_vnic_info *vnic;
2899 struct pci_dev *pdev = bp->pdev;
2900 int max_rings;
2901
2902 for (i = 0; i < bp->nr_vnics; i++) {
2903 vnic = &bp->vnic_info[i];
2904
2905 if (vnic->flags & BNXT_VNIC_UCAST_FLAG) {
2906 int mem_size = (BNXT_MAX_UC_ADDRS - 1) * ETH_ALEN;
2907
2908 if (mem_size > 0) {
2909 vnic->uc_list = kmalloc(mem_size, GFP_KERNEL);
2910 if (!vnic->uc_list) {
2911 rc = -ENOMEM;
2912 goto out;
2913 }
2914 }
2915 }
2916
2917 if (vnic->flags & BNXT_VNIC_MCAST_FLAG) {
2918 vnic->mc_list_size = BNXT_MAX_MC_ADDRS * ETH_ALEN;
2919 vnic->mc_list =
2920 dma_alloc_coherent(&pdev->dev,
2921 vnic->mc_list_size,
2922 &vnic->mc_list_mapping,
2923 GFP_KERNEL);
2924 if (!vnic->mc_list) {
2925 rc = -ENOMEM;
2926 goto out;
2927 }
2928 }
2929
2930 if (vnic->flags & BNXT_VNIC_RSS_FLAG)
2931 max_rings = bp->rx_nr_rings;
2932 else
2933 max_rings = 1;
2934
2935 vnic->fw_grp_ids = kcalloc(max_rings, sizeof(u16), GFP_KERNEL);
2936 if (!vnic->fw_grp_ids) {
2937 rc = -ENOMEM;
2938 goto out;
2939 }
2940
Michael Chanae10ae72016-12-29 12:13:38 -05002941 if ((bp->flags & BNXT_FLAG_NEW_RSS_CAP) &&
2942 !(vnic->flags & BNXT_VNIC_RSS_FLAG))
2943 continue;
2944
Michael Chanc0c050c2015-10-22 16:01:17 -04002945 /* Allocate rss table and hash key */
2946 vnic->rss_table = dma_alloc_coherent(&pdev->dev, PAGE_SIZE,
2947 &vnic->rss_table_dma_addr,
2948 GFP_KERNEL);
2949 if (!vnic->rss_table) {
2950 rc = -ENOMEM;
2951 goto out;
2952 }
2953
2954 size = L1_CACHE_ALIGN(HW_HASH_INDEX_SIZE * sizeof(u16));
2955
2956 vnic->rss_hash_key = ((void *)vnic->rss_table) + size;
2957 vnic->rss_hash_key_dma_addr = vnic->rss_table_dma_addr + size;
2958 }
2959 return 0;
2960
2961out:
2962 return rc;
2963}
2964
2965static void bnxt_free_hwrm_resources(struct bnxt *bp)
2966{
2967 struct pci_dev *pdev = bp->pdev;
2968
2969 dma_free_coherent(&pdev->dev, PAGE_SIZE, bp->hwrm_cmd_resp_addr,
2970 bp->hwrm_cmd_resp_dma_addr);
2971
2972 bp->hwrm_cmd_resp_addr = NULL;
2973 if (bp->hwrm_dbg_resp_addr) {
2974 dma_free_coherent(&pdev->dev, HWRM_DBG_REG_BUF_SIZE,
2975 bp->hwrm_dbg_resp_addr,
2976 bp->hwrm_dbg_resp_dma_addr);
2977
2978 bp->hwrm_dbg_resp_addr = NULL;
2979 }
2980}
2981
2982static int bnxt_alloc_hwrm_resources(struct bnxt *bp)
2983{
2984 struct pci_dev *pdev = bp->pdev;
2985
2986 bp->hwrm_cmd_resp_addr = dma_alloc_coherent(&pdev->dev, PAGE_SIZE,
2987 &bp->hwrm_cmd_resp_dma_addr,
2988 GFP_KERNEL);
2989 if (!bp->hwrm_cmd_resp_addr)
2990 return -ENOMEM;
2991 bp->hwrm_dbg_resp_addr = dma_alloc_coherent(&pdev->dev,
2992 HWRM_DBG_REG_BUF_SIZE,
2993 &bp->hwrm_dbg_resp_dma_addr,
2994 GFP_KERNEL);
2995 if (!bp->hwrm_dbg_resp_addr)
2996 netdev_warn(bp->dev, "fail to alloc debug register dma mem\n");
2997
2998 return 0;
2999}
3000
Deepak Khungare605db82017-05-29 19:06:04 -04003001static void bnxt_free_hwrm_short_cmd_req(struct bnxt *bp)
3002{
3003 if (bp->hwrm_short_cmd_req_addr) {
3004 struct pci_dev *pdev = bp->pdev;
3005
3006 dma_free_coherent(&pdev->dev, BNXT_HWRM_MAX_REQ_LEN,
3007 bp->hwrm_short_cmd_req_addr,
3008 bp->hwrm_short_cmd_req_dma_addr);
3009 bp->hwrm_short_cmd_req_addr = NULL;
3010 }
3011}
3012
3013static int bnxt_alloc_hwrm_short_cmd_req(struct bnxt *bp)
3014{
3015 struct pci_dev *pdev = bp->pdev;
3016
3017 bp->hwrm_short_cmd_req_addr =
3018 dma_alloc_coherent(&pdev->dev, BNXT_HWRM_MAX_REQ_LEN,
3019 &bp->hwrm_short_cmd_req_dma_addr,
3020 GFP_KERNEL);
3021 if (!bp->hwrm_short_cmd_req_addr)
3022 return -ENOMEM;
3023
3024 return 0;
3025}
3026
Michael Chanc0c050c2015-10-22 16:01:17 -04003027static void bnxt_free_stats(struct bnxt *bp)
3028{
3029 u32 size, i;
3030 struct pci_dev *pdev = bp->pdev;
3031
Michael Chan3bdf56c2016-03-07 15:38:45 -05003032 if (bp->hw_rx_port_stats) {
3033 dma_free_coherent(&pdev->dev, bp->hw_port_stats_size,
3034 bp->hw_rx_port_stats,
3035 bp->hw_rx_port_stats_map);
3036 bp->hw_rx_port_stats = NULL;
3037 bp->flags &= ~BNXT_FLAG_PORT_STATS;
3038 }
3039
Michael Chanc0c050c2015-10-22 16:01:17 -04003040 if (!bp->bnapi)
3041 return;
3042
3043 size = sizeof(struct ctx_hw_stats);
3044
3045 for (i = 0; i < bp->cp_nr_rings; i++) {
3046 struct bnxt_napi *bnapi = bp->bnapi[i];
3047 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
3048
3049 if (cpr->hw_stats) {
3050 dma_free_coherent(&pdev->dev, size, cpr->hw_stats,
3051 cpr->hw_stats_map);
3052 cpr->hw_stats = NULL;
3053 }
3054 }
3055}
3056
3057static int bnxt_alloc_stats(struct bnxt *bp)
3058{
3059 u32 size, i;
3060 struct pci_dev *pdev = bp->pdev;
3061
3062 size = sizeof(struct ctx_hw_stats);
3063
3064 for (i = 0; i < bp->cp_nr_rings; i++) {
3065 struct bnxt_napi *bnapi = bp->bnapi[i];
3066 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
3067
3068 cpr->hw_stats = dma_alloc_coherent(&pdev->dev, size,
3069 &cpr->hw_stats_map,
3070 GFP_KERNEL);
3071 if (!cpr->hw_stats)
3072 return -ENOMEM;
3073
3074 cpr->hw_stats_ctx_id = INVALID_STATS_CTX_ID;
3075 }
Michael Chan3bdf56c2016-03-07 15:38:45 -05003076
Prashant Sreedharan3e8060f2016-07-18 07:15:20 -04003077 if (BNXT_PF(bp) && bp->chip_num != CHIP_NUM_58700) {
Michael Chan3bdf56c2016-03-07 15:38:45 -05003078 bp->hw_port_stats_size = sizeof(struct rx_port_stats) +
3079 sizeof(struct tx_port_stats) + 1024;
3080
3081 bp->hw_rx_port_stats =
3082 dma_alloc_coherent(&pdev->dev, bp->hw_port_stats_size,
3083 &bp->hw_rx_port_stats_map,
3084 GFP_KERNEL);
3085 if (!bp->hw_rx_port_stats)
3086 return -ENOMEM;
3087
3088 bp->hw_tx_port_stats = (void *)(bp->hw_rx_port_stats + 1) +
3089 512;
3090 bp->hw_tx_port_stats_map = bp->hw_rx_port_stats_map +
3091 sizeof(struct rx_port_stats) + 512;
3092 bp->flags |= BNXT_FLAG_PORT_STATS;
3093 }
Michael Chanc0c050c2015-10-22 16:01:17 -04003094 return 0;
3095}
3096
3097static void bnxt_clear_ring_indices(struct bnxt *bp)
3098{
3099 int i;
3100
3101 if (!bp->bnapi)
3102 return;
3103
3104 for (i = 0; i < bp->cp_nr_rings; i++) {
3105 struct bnxt_napi *bnapi = bp->bnapi[i];
3106 struct bnxt_cp_ring_info *cpr;
3107 struct bnxt_rx_ring_info *rxr;
3108 struct bnxt_tx_ring_info *txr;
3109
3110 if (!bnapi)
3111 continue;
3112
3113 cpr = &bnapi->cp_ring;
3114 cpr->cp_raw_cons = 0;
3115
Michael Chanb6ab4b02016-01-02 23:44:59 -05003116 txr = bnapi->tx_ring;
Michael Chan3b2b7d92016-01-02 23:45:00 -05003117 if (txr) {
3118 txr->tx_prod = 0;
3119 txr->tx_cons = 0;
3120 }
Michael Chanc0c050c2015-10-22 16:01:17 -04003121
Michael Chanb6ab4b02016-01-02 23:44:59 -05003122 rxr = bnapi->rx_ring;
Michael Chan3b2b7d92016-01-02 23:45:00 -05003123 if (rxr) {
3124 rxr->rx_prod = 0;
3125 rxr->rx_agg_prod = 0;
3126 rxr->rx_sw_agg_prod = 0;
Michael Chan376a5b82016-05-10 19:17:59 -04003127 rxr->rx_next_cons = 0;
Michael Chan3b2b7d92016-01-02 23:45:00 -05003128 }
Michael Chanc0c050c2015-10-22 16:01:17 -04003129 }
3130}
3131
3132static void bnxt_free_ntp_fltrs(struct bnxt *bp, bool irq_reinit)
3133{
3134#ifdef CONFIG_RFS_ACCEL
3135 int i;
3136
3137 /* Under rtnl_lock and all our NAPIs have been disabled. It's
3138 * safe to delete the hash table.
3139 */
3140 for (i = 0; i < BNXT_NTP_FLTR_HASH_SIZE; i++) {
3141 struct hlist_head *head;
3142 struct hlist_node *tmp;
3143 struct bnxt_ntuple_filter *fltr;
3144
3145 head = &bp->ntp_fltr_hash_tbl[i];
3146 hlist_for_each_entry_safe(fltr, tmp, head, hash) {
3147 hlist_del(&fltr->hash);
3148 kfree(fltr);
3149 }
3150 }
3151 if (irq_reinit) {
3152 kfree(bp->ntp_fltr_bmap);
3153 bp->ntp_fltr_bmap = NULL;
3154 }
3155 bp->ntp_fltr_count = 0;
3156#endif
3157}
3158
3159static int bnxt_alloc_ntp_fltrs(struct bnxt *bp)
3160{
3161#ifdef CONFIG_RFS_ACCEL
3162 int i, rc = 0;
3163
3164 if (!(bp->flags & BNXT_FLAG_RFS))
3165 return 0;
3166
3167 for (i = 0; i < BNXT_NTP_FLTR_HASH_SIZE; i++)
3168 INIT_HLIST_HEAD(&bp->ntp_fltr_hash_tbl[i]);
3169
3170 bp->ntp_fltr_count = 0;
Dan Carpenterac45bd92017-05-06 03:49:01 +03003171 bp->ntp_fltr_bmap = kcalloc(BITS_TO_LONGS(BNXT_NTP_FLTR_MAX_FLTR),
3172 sizeof(long),
Michael Chanc0c050c2015-10-22 16:01:17 -04003173 GFP_KERNEL);
3174
3175 if (!bp->ntp_fltr_bmap)
3176 rc = -ENOMEM;
3177
3178 return rc;
3179#else
3180 return 0;
3181#endif
3182}
3183
3184static void bnxt_free_mem(struct bnxt *bp, bool irq_re_init)
3185{
3186 bnxt_free_vnic_attributes(bp);
3187 bnxt_free_tx_rings(bp);
3188 bnxt_free_rx_rings(bp);
3189 bnxt_free_cp_rings(bp);
3190 bnxt_free_ntp_fltrs(bp, irq_re_init);
3191 if (irq_re_init) {
3192 bnxt_free_stats(bp);
3193 bnxt_free_ring_grps(bp);
3194 bnxt_free_vnics(bp);
Michael Chana960dec2017-02-06 16:55:39 -05003195 kfree(bp->tx_ring_map);
3196 bp->tx_ring_map = NULL;
Michael Chanb6ab4b02016-01-02 23:44:59 -05003197 kfree(bp->tx_ring);
3198 bp->tx_ring = NULL;
3199 kfree(bp->rx_ring);
3200 bp->rx_ring = NULL;
Michael Chanc0c050c2015-10-22 16:01:17 -04003201 kfree(bp->bnapi);
3202 bp->bnapi = NULL;
3203 } else {
3204 bnxt_clear_ring_indices(bp);
3205 }
3206}
3207
3208static int bnxt_alloc_mem(struct bnxt *bp, bool irq_re_init)
3209{
Michael Chan01657bc2016-01-02 23:45:03 -05003210 int i, j, rc, size, arr_size;
Michael Chanc0c050c2015-10-22 16:01:17 -04003211 void *bnapi;
3212
3213 if (irq_re_init) {
3214 /* Allocate bnapi mem pointer array and mem block for
3215 * all queues
3216 */
3217 arr_size = L1_CACHE_ALIGN(sizeof(struct bnxt_napi *) *
3218 bp->cp_nr_rings);
3219 size = L1_CACHE_ALIGN(sizeof(struct bnxt_napi));
3220 bnapi = kzalloc(arr_size + size * bp->cp_nr_rings, GFP_KERNEL);
3221 if (!bnapi)
3222 return -ENOMEM;
3223
3224 bp->bnapi = bnapi;
3225 bnapi += arr_size;
3226 for (i = 0; i < bp->cp_nr_rings; i++, bnapi += size) {
3227 bp->bnapi[i] = bnapi;
3228 bp->bnapi[i]->index = i;
3229 bp->bnapi[i]->bp = bp;
3230 }
3231
Michael Chanb6ab4b02016-01-02 23:44:59 -05003232 bp->rx_ring = kcalloc(bp->rx_nr_rings,
3233 sizeof(struct bnxt_rx_ring_info),
3234 GFP_KERNEL);
3235 if (!bp->rx_ring)
3236 return -ENOMEM;
3237
3238 for (i = 0; i < bp->rx_nr_rings; i++) {
3239 bp->rx_ring[i].bnapi = bp->bnapi[i];
3240 bp->bnapi[i]->rx_ring = &bp->rx_ring[i];
3241 }
3242
3243 bp->tx_ring = kcalloc(bp->tx_nr_rings,
3244 sizeof(struct bnxt_tx_ring_info),
3245 GFP_KERNEL);
3246 if (!bp->tx_ring)
3247 return -ENOMEM;
3248
Michael Chana960dec2017-02-06 16:55:39 -05003249 bp->tx_ring_map = kcalloc(bp->tx_nr_rings, sizeof(u16),
3250 GFP_KERNEL);
3251
3252 if (!bp->tx_ring_map)
3253 return -ENOMEM;
3254
Michael Chan01657bc2016-01-02 23:45:03 -05003255 if (bp->flags & BNXT_FLAG_SHARED_RINGS)
3256 j = 0;
3257 else
3258 j = bp->rx_nr_rings;
3259
3260 for (i = 0; i < bp->tx_nr_rings; i++, j++) {
3261 bp->tx_ring[i].bnapi = bp->bnapi[j];
3262 bp->bnapi[j]->tx_ring = &bp->tx_ring[i];
Michael Chan5f449242017-02-06 16:55:40 -05003263 bp->tx_ring_map[i] = bp->tx_nr_rings_xdp + i;
Michael Chan38413402017-02-06 16:55:43 -05003264 if (i >= bp->tx_nr_rings_xdp) {
Michael Chan5f449242017-02-06 16:55:40 -05003265 bp->tx_ring[i].txq_index = i -
3266 bp->tx_nr_rings_xdp;
Michael Chan38413402017-02-06 16:55:43 -05003267 bp->bnapi[j]->tx_int = bnxt_tx_int;
3268 } else {
Michael Chanfa3e93e2017-02-06 16:55:41 -05003269 bp->bnapi[j]->flags |= BNXT_NAPI_FLAG_XDP;
Michael Chan38413402017-02-06 16:55:43 -05003270 bp->bnapi[j]->tx_int = bnxt_tx_int_xdp;
3271 }
Michael Chanb6ab4b02016-01-02 23:44:59 -05003272 }
3273
Michael Chanc0c050c2015-10-22 16:01:17 -04003274 rc = bnxt_alloc_stats(bp);
3275 if (rc)
3276 goto alloc_mem_err;
3277
3278 rc = bnxt_alloc_ntp_fltrs(bp);
3279 if (rc)
3280 goto alloc_mem_err;
3281
3282 rc = bnxt_alloc_vnics(bp);
3283 if (rc)
3284 goto alloc_mem_err;
3285 }
3286
3287 bnxt_init_ring_struct(bp);
3288
3289 rc = bnxt_alloc_rx_rings(bp);
3290 if (rc)
3291 goto alloc_mem_err;
3292
3293 rc = bnxt_alloc_tx_rings(bp);
3294 if (rc)
3295 goto alloc_mem_err;
3296
3297 rc = bnxt_alloc_cp_rings(bp);
3298 if (rc)
3299 goto alloc_mem_err;
3300
3301 bp->vnic_info[0].flags |= BNXT_VNIC_RSS_FLAG | BNXT_VNIC_MCAST_FLAG |
3302 BNXT_VNIC_UCAST_FLAG;
3303 rc = bnxt_alloc_vnic_attributes(bp);
3304 if (rc)
3305 goto alloc_mem_err;
3306 return 0;
3307
3308alloc_mem_err:
3309 bnxt_free_mem(bp, true);
3310 return rc;
3311}
3312
Michael Chan9d8bc092016-12-29 12:13:33 -05003313static void bnxt_disable_int(struct bnxt *bp)
3314{
3315 int i;
3316
3317 if (!bp->bnapi)
3318 return;
3319
3320 for (i = 0; i < bp->cp_nr_rings; i++) {
3321 struct bnxt_napi *bnapi = bp->bnapi[i];
3322 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
Michael Chandaf1f1e2017-02-20 19:25:17 -05003323 struct bnxt_ring_struct *ring = &cpr->cp_ring_struct;
Michael Chan9d8bc092016-12-29 12:13:33 -05003324
Michael Chandaf1f1e2017-02-20 19:25:17 -05003325 if (ring->fw_ring_id != INVALID_HW_RING_ID)
3326 BNXT_CP_DB(cpr->cp_doorbell, cpr->cp_raw_cons);
Michael Chan9d8bc092016-12-29 12:13:33 -05003327 }
3328}
3329
3330static void bnxt_disable_int_sync(struct bnxt *bp)
3331{
3332 int i;
3333
3334 atomic_inc(&bp->intr_sem);
3335
3336 bnxt_disable_int(bp);
3337 for (i = 0; i < bp->cp_nr_rings; i++)
3338 synchronize_irq(bp->irq_tbl[i].vector);
3339}
3340
3341static void bnxt_enable_int(struct bnxt *bp)
3342{
3343 int i;
3344
3345 atomic_set(&bp->intr_sem, 0);
3346 for (i = 0; i < bp->cp_nr_rings; i++) {
3347 struct bnxt_napi *bnapi = bp->bnapi[i];
3348 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
3349
3350 BNXT_CP_DB_REARM(cpr->cp_doorbell, cpr->cp_raw_cons);
3351 }
3352}
3353
Michael Chanc0c050c2015-10-22 16:01:17 -04003354void bnxt_hwrm_cmd_hdr_init(struct bnxt *bp, void *request, u16 req_type,
3355 u16 cmpl_ring, u16 target_id)
3356{
Michael Chana8643e12016-02-26 04:00:05 -05003357 struct input *req = request;
Michael Chanc0c050c2015-10-22 16:01:17 -04003358
Michael Chana8643e12016-02-26 04:00:05 -05003359 req->req_type = cpu_to_le16(req_type);
3360 req->cmpl_ring = cpu_to_le16(cmpl_ring);
3361 req->target_id = cpu_to_le16(target_id);
Michael Chanc0c050c2015-10-22 16:01:17 -04003362 req->resp_addr = cpu_to_le64(bp->hwrm_cmd_resp_dma_addr);
3363}
3364
Michael Chanfbfbc482016-02-26 04:00:07 -05003365static int bnxt_hwrm_do_send_msg(struct bnxt *bp, void *msg, u32 msg_len,
3366 int timeout, bool silent)
Michael Chanc0c050c2015-10-22 16:01:17 -04003367{
Michael Chana11fa2b2016-05-15 03:04:47 -04003368 int i, intr_process, rc, tmo_count;
Michael Chana8643e12016-02-26 04:00:05 -05003369 struct input *req = msg;
Michael Chanc0c050c2015-10-22 16:01:17 -04003370 u32 *data = msg;
3371 __le32 *resp_len, *valid;
3372 u16 cp_ring_id, len = 0;
3373 struct hwrm_err_output *resp = bp->hwrm_cmd_resp_addr;
Deepak Khungare605db82017-05-29 19:06:04 -04003374 u16 max_req_len = BNXT_HWRM_MAX_REQ_LEN;
Vasundhara Volamebd58182017-12-01 03:13:05 -05003375 struct hwrm_short_input short_input = {0};
Michael Chanc0c050c2015-10-22 16:01:17 -04003376
Michael Chana8643e12016-02-26 04:00:05 -05003377 req->seq_id = cpu_to_le16(bp->hwrm_cmd_seq++);
Michael Chanc0c050c2015-10-22 16:01:17 -04003378 memset(resp, 0, PAGE_SIZE);
Michael Chana8643e12016-02-26 04:00:05 -05003379 cp_ring_id = le16_to_cpu(req->cmpl_ring);
Michael Chanc0c050c2015-10-22 16:01:17 -04003380 intr_process = (cp_ring_id == INVALID_HW_RING_ID) ? 0 : 1;
3381
Deepak Khungare605db82017-05-29 19:06:04 -04003382 if (bp->flags & BNXT_FLAG_SHORT_CMD) {
3383 void *short_cmd_req = bp->hwrm_short_cmd_req_addr;
Deepak Khungare605db82017-05-29 19:06:04 -04003384
3385 memcpy(short_cmd_req, req, msg_len);
3386 memset(short_cmd_req + msg_len, 0, BNXT_HWRM_MAX_REQ_LEN -
3387 msg_len);
3388
3389 short_input.req_type = req->req_type;
3390 short_input.signature =
3391 cpu_to_le16(SHORT_REQ_SIGNATURE_SHORT_CMD);
3392 short_input.size = cpu_to_le16(msg_len);
3393 short_input.req_addr =
3394 cpu_to_le64(bp->hwrm_short_cmd_req_dma_addr);
3395
3396 data = (u32 *)&short_input;
3397 msg_len = sizeof(short_input);
3398
3399 /* Sync memory write before updating doorbell */
3400 wmb();
3401
3402 max_req_len = BNXT_HWRM_SHORT_REQ_LEN;
3403 }
3404
Michael Chanc0c050c2015-10-22 16:01:17 -04003405 /* Write request msg to hwrm channel */
3406 __iowrite32_copy(bp->bar0, data, msg_len / 4);
3407
Deepak Khungare605db82017-05-29 19:06:04 -04003408 for (i = msg_len; i < max_req_len; i += 4)
Michael Chand79979a2016-01-07 19:56:57 -05003409 writel(0, bp->bar0 + i);
3410
Michael Chanc0c050c2015-10-22 16:01:17 -04003411 /* currently supports only one outstanding message */
3412 if (intr_process)
Michael Chana8643e12016-02-26 04:00:05 -05003413 bp->hwrm_intr_seq_id = le16_to_cpu(req->seq_id);
Michael Chanc0c050c2015-10-22 16:01:17 -04003414
3415 /* Ring channel doorbell */
3416 writel(1, bp->bar0 + 0x100);
3417
Michael Chanff4fe812016-02-26 04:00:04 -05003418 if (!timeout)
3419 timeout = DFLT_HWRM_CMD_TIMEOUT;
3420
Michael Chanc0c050c2015-10-22 16:01:17 -04003421 i = 0;
Michael Chana11fa2b2016-05-15 03:04:47 -04003422 tmo_count = timeout * 40;
Michael Chanc0c050c2015-10-22 16:01:17 -04003423 if (intr_process) {
3424 /* Wait until hwrm response cmpl interrupt is processed */
3425 while (bp->hwrm_intr_seq_id != HWRM_SEQ_ID_INVALID &&
Michael Chana11fa2b2016-05-15 03:04:47 -04003426 i++ < tmo_count) {
3427 usleep_range(25, 40);
Michael Chanc0c050c2015-10-22 16:01:17 -04003428 }
3429
3430 if (bp->hwrm_intr_seq_id != HWRM_SEQ_ID_INVALID) {
3431 netdev_err(bp->dev, "Resp cmpl intr err msg: 0x%x\n",
Michael Chana8643e12016-02-26 04:00:05 -05003432 le16_to_cpu(req->req_type));
Michael Chanc0c050c2015-10-22 16:01:17 -04003433 return -1;
3434 }
3435 } else {
3436 /* Check if response len is updated */
3437 resp_len = bp->hwrm_cmd_resp_addr + HWRM_RESP_LEN_OFFSET;
Michael Chana11fa2b2016-05-15 03:04:47 -04003438 for (i = 0; i < tmo_count; i++) {
Michael Chanc0c050c2015-10-22 16:01:17 -04003439 len = (le32_to_cpu(*resp_len) & HWRM_RESP_LEN_MASK) >>
3440 HWRM_RESP_LEN_SFT;
3441 if (len)
3442 break;
Michael Chana11fa2b2016-05-15 03:04:47 -04003443 usleep_range(25, 40);
Michael Chanc0c050c2015-10-22 16:01:17 -04003444 }
3445
Michael Chana11fa2b2016-05-15 03:04:47 -04003446 if (i >= tmo_count) {
Michael Chanc0c050c2015-10-22 16:01:17 -04003447 netdev_err(bp->dev, "Error (timeout: %d) msg {0x%x 0x%x} len:%d\n",
Michael Chana8643e12016-02-26 04:00:05 -05003448 timeout, le16_to_cpu(req->req_type),
Michael Chan8578d6c2016-05-15 03:04:48 -04003449 le16_to_cpu(req->seq_id), len);
Michael Chanc0c050c2015-10-22 16:01:17 -04003450 return -1;
3451 }
3452
3453 /* Last word of resp contains valid bit */
3454 valid = bp->hwrm_cmd_resp_addr + len - 4;
Michael Chana11fa2b2016-05-15 03:04:47 -04003455 for (i = 0; i < 5; i++) {
Michael Chanc0c050c2015-10-22 16:01:17 -04003456 if (le32_to_cpu(*valid) & HWRM_RESP_VALID_MASK)
3457 break;
Michael Chana11fa2b2016-05-15 03:04:47 -04003458 udelay(1);
Michael Chanc0c050c2015-10-22 16:01:17 -04003459 }
3460
Michael Chana11fa2b2016-05-15 03:04:47 -04003461 if (i >= 5) {
Michael Chanc0c050c2015-10-22 16:01:17 -04003462 netdev_err(bp->dev, "Error (timeout: %d) msg {0x%x 0x%x} len:%d v:%d\n",
Michael Chana8643e12016-02-26 04:00:05 -05003463 timeout, le16_to_cpu(req->req_type),
3464 le16_to_cpu(req->seq_id), len, *valid);
Michael Chanc0c050c2015-10-22 16:01:17 -04003465 return -1;
3466 }
3467 }
3468
3469 rc = le16_to_cpu(resp->error_code);
Michael Chanfbfbc482016-02-26 04:00:07 -05003470 if (rc && !silent)
Michael Chanc0c050c2015-10-22 16:01:17 -04003471 netdev_err(bp->dev, "hwrm req_type 0x%x seq id 0x%x error 0x%x\n",
3472 le16_to_cpu(resp->req_type),
3473 le16_to_cpu(resp->seq_id), rc);
Michael Chanfbfbc482016-02-26 04:00:07 -05003474 return rc;
3475}
3476
3477int _hwrm_send_message(struct bnxt *bp, void *msg, u32 msg_len, int timeout)
3478{
3479 return bnxt_hwrm_do_send_msg(bp, msg, msg_len, timeout, false);
Michael Chanc0c050c2015-10-22 16:01:17 -04003480}
3481
Michael Chancc72f3b2017-10-13 21:09:33 -04003482int _hwrm_send_message_silent(struct bnxt *bp, void *msg, u32 msg_len,
3483 int timeout)
3484{
3485 return bnxt_hwrm_do_send_msg(bp, msg, msg_len, timeout, true);
3486}
3487
Michael Chanc0c050c2015-10-22 16:01:17 -04003488int hwrm_send_message(struct bnxt *bp, void *msg, u32 msg_len, int timeout)
3489{
3490 int rc;
3491
3492 mutex_lock(&bp->hwrm_cmd_lock);
3493 rc = _hwrm_send_message(bp, msg, msg_len, timeout);
3494 mutex_unlock(&bp->hwrm_cmd_lock);
3495 return rc;
3496}
3497
Michael Chan90e209212016-02-26 04:00:08 -05003498int hwrm_send_message_silent(struct bnxt *bp, void *msg, u32 msg_len,
3499 int timeout)
3500{
3501 int rc;
3502
3503 mutex_lock(&bp->hwrm_cmd_lock);
3504 rc = bnxt_hwrm_do_send_msg(bp, msg, msg_len, timeout, true);
3505 mutex_unlock(&bp->hwrm_cmd_lock);
3506 return rc;
3507}
3508
Michael Chana1653b12016-12-07 00:26:20 -05003509int bnxt_hwrm_func_rgtr_async_events(struct bnxt *bp, unsigned long *bmap,
3510 int bmap_size)
Michael Chanc0c050c2015-10-22 16:01:17 -04003511{
3512 struct hwrm_func_drv_rgtr_input req = {0};
Michael Chan25be8622016-04-05 14:09:00 -04003513 DECLARE_BITMAP(async_events_bmap, 256);
3514 u32 *events = (u32 *)async_events_bmap;
Michael Chana1653b12016-12-07 00:26:20 -05003515 int i;
Michael Chanc0c050c2015-10-22 16:01:17 -04003516
3517 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_DRV_RGTR, -1, -1);
3518
3519 req.enables =
Michael Chana1653b12016-12-07 00:26:20 -05003520 cpu_to_le32(FUNC_DRV_RGTR_REQ_ENABLES_ASYNC_EVENT_FWD);
Michael Chanc0c050c2015-10-22 16:01:17 -04003521
Michael Chan25be8622016-04-05 14:09:00 -04003522 memset(async_events_bmap, 0, sizeof(async_events_bmap));
3523 for (i = 0; i < ARRAY_SIZE(bnxt_async_events_arr); i++)
3524 __set_bit(bnxt_async_events_arr[i], async_events_bmap);
3525
Michael Chana1653b12016-12-07 00:26:20 -05003526 if (bmap && bmap_size) {
3527 for (i = 0; i < bmap_size; i++) {
3528 if (test_bit(i, bmap))
3529 __set_bit(i, async_events_bmap);
3530 }
3531 }
3532
Michael Chan25be8622016-04-05 14:09:00 -04003533 for (i = 0; i < 8; i++)
3534 req.async_event_fwd[i] |= cpu_to_le32(events[i]);
3535
Michael Chana1653b12016-12-07 00:26:20 -05003536 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3537}
3538
3539static int bnxt_hwrm_func_drv_rgtr(struct bnxt *bp)
3540{
3541 struct hwrm_func_drv_rgtr_input req = {0};
3542
3543 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_DRV_RGTR, -1, -1);
3544
3545 req.enables =
3546 cpu_to_le32(FUNC_DRV_RGTR_REQ_ENABLES_OS_TYPE |
3547 FUNC_DRV_RGTR_REQ_ENABLES_VER);
3548
Michael Chan11f15ed2016-04-05 14:08:55 -04003549 req.os_type = cpu_to_le16(FUNC_DRV_RGTR_REQ_OS_TYPE_LINUX);
Michael Chanc0c050c2015-10-22 16:01:17 -04003550 req.ver_maj = DRV_VER_MAJ;
3551 req.ver_min = DRV_VER_MIN;
3552 req.ver_upd = DRV_VER_UPD;
3553
3554 if (BNXT_PF(bp)) {
Michael Chan9b0436c2017-07-11 13:05:36 -04003555 u32 data[8];
Michael Chana1653b12016-12-07 00:26:20 -05003556 int i;
Michael Chanc0c050c2015-10-22 16:01:17 -04003557
Michael Chan9b0436c2017-07-11 13:05:36 -04003558 memset(data, 0, sizeof(data));
3559 for (i = 0; i < ARRAY_SIZE(bnxt_vf_req_snif); i++) {
3560 u16 cmd = bnxt_vf_req_snif[i];
3561 unsigned int bit, idx;
3562
3563 idx = cmd / 32;
3564 bit = cmd % 32;
3565 data[idx] |= 1 << bit;
3566 }
Michael Chanc0c050c2015-10-22 16:01:17 -04003567
Michael Chande68f5de2015-12-09 19:35:41 -05003568 for (i = 0; i < 8; i++)
3569 req.vf_req_fwd[i] = cpu_to_le32(data[i]);
3570
Michael Chanc0c050c2015-10-22 16:01:17 -04003571 req.enables |=
3572 cpu_to_le32(FUNC_DRV_RGTR_REQ_ENABLES_VF_REQ_FWD);
3573 }
3574
3575 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3576}
3577
Jeffrey Huangbe58a0d2015-12-27 18:19:18 -05003578static int bnxt_hwrm_func_drv_unrgtr(struct bnxt *bp)
3579{
3580 struct hwrm_func_drv_unrgtr_input req = {0};
3581
3582 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_DRV_UNRGTR, -1, -1);
3583 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3584}
3585
Michael Chanc0c050c2015-10-22 16:01:17 -04003586static int bnxt_hwrm_tunnel_dst_port_free(struct bnxt *bp, u8 tunnel_type)
3587{
3588 u32 rc = 0;
3589 struct hwrm_tunnel_dst_port_free_input req = {0};
3590
3591 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_TUNNEL_DST_PORT_FREE, -1, -1);
3592 req.tunnel_type = tunnel_type;
3593
3594 switch (tunnel_type) {
3595 case TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_VXLAN:
3596 req.tunnel_dst_port_id = bp->vxlan_fw_dst_port_id;
3597 break;
3598 case TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_GENEVE:
3599 req.tunnel_dst_port_id = bp->nge_fw_dst_port_id;
3600 break;
3601 default:
3602 break;
3603 }
3604
3605 rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3606 if (rc)
3607 netdev_err(bp->dev, "hwrm_tunnel_dst_port_free failed. rc:%d\n",
3608 rc);
3609 return rc;
3610}
3611
3612static int bnxt_hwrm_tunnel_dst_port_alloc(struct bnxt *bp, __be16 port,
3613 u8 tunnel_type)
3614{
3615 u32 rc = 0;
3616 struct hwrm_tunnel_dst_port_alloc_input req = {0};
3617 struct hwrm_tunnel_dst_port_alloc_output *resp = bp->hwrm_cmd_resp_addr;
3618
3619 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_TUNNEL_DST_PORT_ALLOC, -1, -1);
3620
3621 req.tunnel_type = tunnel_type;
3622 req.tunnel_dst_port_val = port;
3623
3624 mutex_lock(&bp->hwrm_cmd_lock);
3625 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3626 if (rc) {
3627 netdev_err(bp->dev, "hwrm_tunnel_dst_port_alloc failed. rc:%d\n",
3628 rc);
3629 goto err_out;
3630 }
3631
Christophe Jaillet57aac712016-11-22 06:14:40 +01003632 switch (tunnel_type) {
3633 case TUNNEL_DST_PORT_ALLOC_REQ_TUNNEL_TYPE_VXLAN:
Michael Chanc0c050c2015-10-22 16:01:17 -04003634 bp->vxlan_fw_dst_port_id = resp->tunnel_dst_port_id;
Christophe Jaillet57aac712016-11-22 06:14:40 +01003635 break;
3636 case TUNNEL_DST_PORT_ALLOC_REQ_TUNNEL_TYPE_GENEVE:
Michael Chanc0c050c2015-10-22 16:01:17 -04003637 bp->nge_fw_dst_port_id = resp->tunnel_dst_port_id;
Christophe Jaillet57aac712016-11-22 06:14:40 +01003638 break;
3639 default:
3640 break;
3641 }
3642
Michael Chanc0c050c2015-10-22 16:01:17 -04003643err_out:
3644 mutex_unlock(&bp->hwrm_cmd_lock);
3645 return rc;
3646}
3647
3648static int bnxt_hwrm_cfa_l2_set_rx_mask(struct bnxt *bp, u16 vnic_id)
3649{
3650 struct hwrm_cfa_l2_set_rx_mask_input req = {0};
3651 struct bnxt_vnic_info *vnic = &bp->vnic_info[vnic_id];
3652
3653 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_CFA_L2_SET_RX_MASK, -1, -1);
Michael Chanc1935542015-12-27 18:19:28 -05003654 req.vnic_id = cpu_to_le32(vnic->fw_vnic_id);
Michael Chanc0c050c2015-10-22 16:01:17 -04003655
3656 req.num_mc_entries = cpu_to_le32(vnic->mc_list_count);
3657 req.mc_tbl_addr = cpu_to_le64(vnic->mc_list_mapping);
3658 req.mask = cpu_to_le32(vnic->rx_mask);
3659 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3660}
3661
3662#ifdef CONFIG_RFS_ACCEL
3663static int bnxt_hwrm_cfa_ntuple_filter_free(struct bnxt *bp,
3664 struct bnxt_ntuple_filter *fltr)
3665{
3666 struct hwrm_cfa_ntuple_filter_free_input req = {0};
3667
3668 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_CFA_NTUPLE_FILTER_FREE, -1, -1);
3669 req.ntuple_filter_id = fltr->filter_id;
3670 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3671}
3672
3673#define BNXT_NTP_FLTR_FLAGS \
3674 (CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_L2_FILTER_ID | \
3675 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_ETHERTYPE | \
3676 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_MACADDR | \
3677 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_IPADDR_TYPE | \
3678 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_IPADDR | \
3679 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_IPADDR_MASK | \
3680 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_IPADDR | \
3681 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_IPADDR_MASK | \
3682 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_IP_PROTOCOL | \
3683 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_PORT | \
3684 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_PORT_MASK | \
3685 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_PORT | \
3686 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_PORT_MASK | \
Michael Chanc1935542015-12-27 18:19:28 -05003687 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_ID)
Michael Chanc0c050c2015-10-22 16:01:17 -04003688
Michael Chan61aad722017-02-12 19:18:14 -05003689#define BNXT_NTP_TUNNEL_FLTR_FLAG \
3690 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_TUNNEL_TYPE
3691
Michael Chanc0c050c2015-10-22 16:01:17 -04003692static int bnxt_hwrm_cfa_ntuple_filter_alloc(struct bnxt *bp,
3693 struct bnxt_ntuple_filter *fltr)
3694{
3695 int rc = 0;
3696 struct hwrm_cfa_ntuple_filter_alloc_input req = {0};
3697 struct hwrm_cfa_ntuple_filter_alloc_output *resp =
3698 bp->hwrm_cmd_resp_addr;
3699 struct flow_keys *keys = &fltr->fkeys;
3700 struct bnxt_vnic_info *vnic = &bp->vnic_info[fltr->rxq + 1];
3701
3702 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_CFA_NTUPLE_FILTER_ALLOC, -1, -1);
Michael Chana54c4d72016-07-25 12:33:35 -04003703 req.l2_filter_id = bp->vnic_info[0].fw_l2_filter_id[fltr->l2_fltr_idx];
Michael Chanc0c050c2015-10-22 16:01:17 -04003704
3705 req.enables = cpu_to_le32(BNXT_NTP_FLTR_FLAGS);
3706
3707 req.ethertype = htons(ETH_P_IP);
3708 memcpy(req.src_macaddr, fltr->src_mac_addr, ETH_ALEN);
Michael Chanc1935542015-12-27 18:19:28 -05003709 req.ip_addr_type = CFA_NTUPLE_FILTER_ALLOC_REQ_IP_ADDR_TYPE_IPV4;
Michael Chanc0c050c2015-10-22 16:01:17 -04003710 req.ip_protocol = keys->basic.ip_proto;
3711
Michael Chandda0e742016-12-29 12:13:40 -05003712 if (keys->basic.n_proto == htons(ETH_P_IPV6)) {
3713 int i;
3714
3715 req.ethertype = htons(ETH_P_IPV6);
3716 req.ip_addr_type =
3717 CFA_NTUPLE_FILTER_ALLOC_REQ_IP_ADDR_TYPE_IPV6;
3718 *(struct in6_addr *)&req.src_ipaddr[0] =
3719 keys->addrs.v6addrs.src;
3720 *(struct in6_addr *)&req.dst_ipaddr[0] =
3721 keys->addrs.v6addrs.dst;
3722 for (i = 0; i < 4; i++) {
3723 req.src_ipaddr_mask[i] = cpu_to_be32(0xffffffff);
3724 req.dst_ipaddr_mask[i] = cpu_to_be32(0xffffffff);
3725 }
3726 } else {
3727 req.src_ipaddr[0] = keys->addrs.v4addrs.src;
3728 req.src_ipaddr_mask[0] = cpu_to_be32(0xffffffff);
3729 req.dst_ipaddr[0] = keys->addrs.v4addrs.dst;
3730 req.dst_ipaddr_mask[0] = cpu_to_be32(0xffffffff);
3731 }
Michael Chan61aad722017-02-12 19:18:14 -05003732 if (keys->control.flags & FLOW_DIS_ENCAPSULATION) {
3733 req.enables |= cpu_to_le32(BNXT_NTP_TUNNEL_FLTR_FLAG);
3734 req.tunnel_type =
3735 CFA_NTUPLE_FILTER_ALLOC_REQ_TUNNEL_TYPE_ANYTUNNEL;
3736 }
Michael Chanc0c050c2015-10-22 16:01:17 -04003737
3738 req.src_port = keys->ports.src;
3739 req.src_port_mask = cpu_to_be16(0xffff);
3740 req.dst_port = keys->ports.dst;
3741 req.dst_port_mask = cpu_to_be16(0xffff);
3742
Michael Chanc1935542015-12-27 18:19:28 -05003743 req.dst_id = cpu_to_le16(vnic->fw_vnic_id);
Michael Chanc0c050c2015-10-22 16:01:17 -04003744 mutex_lock(&bp->hwrm_cmd_lock);
3745 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3746 if (!rc)
3747 fltr->filter_id = resp->ntuple_filter_id;
3748 mutex_unlock(&bp->hwrm_cmd_lock);
3749 return rc;
3750}
3751#endif
3752
3753static int bnxt_hwrm_set_vnic_filter(struct bnxt *bp, u16 vnic_id, u16 idx,
3754 u8 *mac_addr)
3755{
3756 u32 rc = 0;
3757 struct hwrm_cfa_l2_filter_alloc_input req = {0};
3758 struct hwrm_cfa_l2_filter_alloc_output *resp = bp->hwrm_cmd_resp_addr;
3759
3760 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_CFA_L2_FILTER_ALLOC, -1, -1);
Prashant Sreedharandc52c6c2016-07-18 07:15:24 -04003761 req.flags = cpu_to_le32(CFA_L2_FILTER_ALLOC_REQ_FLAGS_PATH_RX);
3762 if (!BNXT_CHIP_TYPE_NITRO_A0(bp))
3763 req.flags |=
3764 cpu_to_le32(CFA_L2_FILTER_ALLOC_REQ_FLAGS_OUTERMOST);
Michael Chanc1935542015-12-27 18:19:28 -05003765 req.dst_id = cpu_to_le16(bp->vnic_info[vnic_id].fw_vnic_id);
Michael Chanc0c050c2015-10-22 16:01:17 -04003766 req.enables =
3767 cpu_to_le32(CFA_L2_FILTER_ALLOC_REQ_ENABLES_L2_ADDR |
Michael Chanc1935542015-12-27 18:19:28 -05003768 CFA_L2_FILTER_ALLOC_REQ_ENABLES_DST_ID |
Michael Chanc0c050c2015-10-22 16:01:17 -04003769 CFA_L2_FILTER_ALLOC_REQ_ENABLES_L2_ADDR_MASK);
3770 memcpy(req.l2_addr, mac_addr, ETH_ALEN);
3771 req.l2_addr_mask[0] = 0xff;
3772 req.l2_addr_mask[1] = 0xff;
3773 req.l2_addr_mask[2] = 0xff;
3774 req.l2_addr_mask[3] = 0xff;
3775 req.l2_addr_mask[4] = 0xff;
3776 req.l2_addr_mask[5] = 0xff;
3777
3778 mutex_lock(&bp->hwrm_cmd_lock);
3779 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3780 if (!rc)
3781 bp->vnic_info[vnic_id].fw_l2_filter_id[idx] =
3782 resp->l2_filter_id;
3783 mutex_unlock(&bp->hwrm_cmd_lock);
3784 return rc;
3785}
3786
3787static int bnxt_hwrm_clear_vnic_filter(struct bnxt *bp)
3788{
3789 u16 i, j, num_of_vnics = 1; /* only vnic 0 supported */
3790 int rc = 0;
3791
3792 /* Any associated ntuple filters will also be cleared by firmware. */
3793 mutex_lock(&bp->hwrm_cmd_lock);
3794 for (i = 0; i < num_of_vnics; i++) {
3795 struct bnxt_vnic_info *vnic = &bp->vnic_info[i];
3796
3797 for (j = 0; j < vnic->uc_filter_count; j++) {
3798 struct hwrm_cfa_l2_filter_free_input req = {0};
3799
3800 bnxt_hwrm_cmd_hdr_init(bp, &req,
3801 HWRM_CFA_L2_FILTER_FREE, -1, -1);
3802
3803 req.l2_filter_id = vnic->fw_l2_filter_id[j];
3804
3805 rc = _hwrm_send_message(bp, &req, sizeof(req),
3806 HWRM_CMD_TIMEOUT);
3807 }
3808 vnic->uc_filter_count = 0;
3809 }
3810 mutex_unlock(&bp->hwrm_cmd_lock);
3811
3812 return rc;
3813}
3814
3815static int bnxt_hwrm_vnic_set_tpa(struct bnxt *bp, u16 vnic_id, u32 tpa_flags)
3816{
3817 struct bnxt_vnic_info *vnic = &bp->vnic_info[vnic_id];
3818 struct hwrm_vnic_tpa_cfg_input req = {0};
3819
3820 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_TPA_CFG, -1, -1);
3821
3822 if (tpa_flags) {
3823 u16 mss = bp->dev->mtu - 40;
3824 u32 nsegs, n, segs = 0, flags;
3825
3826 flags = VNIC_TPA_CFG_REQ_FLAGS_TPA |
3827 VNIC_TPA_CFG_REQ_FLAGS_ENCAP_TPA |
3828 VNIC_TPA_CFG_REQ_FLAGS_RSC_WND_UPDATE |
3829 VNIC_TPA_CFG_REQ_FLAGS_AGG_WITH_ECN |
3830 VNIC_TPA_CFG_REQ_FLAGS_AGG_WITH_SAME_GRE_SEQ;
3831 if (tpa_flags & BNXT_FLAG_GRO)
3832 flags |= VNIC_TPA_CFG_REQ_FLAGS_GRO;
3833
3834 req.flags = cpu_to_le32(flags);
3835
3836 req.enables =
3837 cpu_to_le32(VNIC_TPA_CFG_REQ_ENABLES_MAX_AGG_SEGS |
Michael Chanc1935542015-12-27 18:19:28 -05003838 VNIC_TPA_CFG_REQ_ENABLES_MAX_AGGS |
3839 VNIC_TPA_CFG_REQ_ENABLES_MIN_AGG_LEN);
Michael Chanc0c050c2015-10-22 16:01:17 -04003840
3841 /* Number of segs are log2 units, and first packet is not
3842 * included as part of this units.
3843 */
Michael Chan2839f282016-04-25 02:30:50 -04003844 if (mss <= BNXT_RX_PAGE_SIZE) {
3845 n = BNXT_RX_PAGE_SIZE / mss;
Michael Chanc0c050c2015-10-22 16:01:17 -04003846 nsegs = (MAX_SKB_FRAGS - 1) * n;
3847 } else {
Michael Chan2839f282016-04-25 02:30:50 -04003848 n = mss / BNXT_RX_PAGE_SIZE;
3849 if (mss & (BNXT_RX_PAGE_SIZE - 1))
Michael Chanc0c050c2015-10-22 16:01:17 -04003850 n++;
3851 nsegs = (MAX_SKB_FRAGS - n) / n;
3852 }
3853
3854 segs = ilog2(nsegs);
3855 req.max_agg_segs = cpu_to_le16(segs);
3856 req.max_aggs = cpu_to_le16(VNIC_TPA_CFG_REQ_MAX_AGGS_MAX);
Michael Chanc1935542015-12-27 18:19:28 -05003857
3858 req.min_agg_len = cpu_to_le32(512);
Michael Chanc0c050c2015-10-22 16:01:17 -04003859 }
3860 req.vnic_id = cpu_to_le16(vnic->fw_vnic_id);
3861
3862 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3863}
3864
3865static int bnxt_hwrm_vnic_set_rss(struct bnxt *bp, u16 vnic_id, bool set_rss)
3866{
3867 u32 i, j, max_rings;
3868 struct bnxt_vnic_info *vnic = &bp->vnic_info[vnic_id];
3869 struct hwrm_vnic_rss_cfg_input req = {0};
3870
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04003871 if (vnic->fw_rss_cos_lb_ctx[0] == INVALID_HW_RING_ID)
Michael Chanc0c050c2015-10-22 16:01:17 -04003872 return 0;
3873
3874 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_RSS_CFG, -1, -1);
3875 if (set_rss) {
Michael Chan87da7f72016-11-16 21:13:09 -05003876 req.hash_type = cpu_to_le32(bp->rss_hash_cfg);
Prashant Sreedharandc52c6c2016-07-18 07:15:24 -04003877 if (vnic->flags & BNXT_VNIC_RSS_FLAG) {
3878 if (BNXT_CHIP_TYPE_NITRO_A0(bp))
3879 max_rings = bp->rx_nr_rings - 1;
3880 else
3881 max_rings = bp->rx_nr_rings;
3882 } else {
Michael Chanc0c050c2015-10-22 16:01:17 -04003883 max_rings = 1;
Prashant Sreedharandc52c6c2016-07-18 07:15:24 -04003884 }
Michael Chanc0c050c2015-10-22 16:01:17 -04003885
3886 /* Fill the RSS indirection table with ring group ids */
3887 for (i = 0, j = 0; i < HW_HASH_INDEX_SIZE; i++, j++) {
3888 if (j == max_rings)
3889 j = 0;
3890 vnic->rss_table[i] = cpu_to_le16(vnic->fw_grp_ids[j]);
3891 }
3892
3893 req.ring_grp_tbl_addr = cpu_to_le64(vnic->rss_table_dma_addr);
3894 req.hash_key_tbl_addr =
3895 cpu_to_le64(vnic->rss_hash_key_dma_addr);
3896 }
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04003897 req.rss_ctx_idx = cpu_to_le16(vnic->fw_rss_cos_lb_ctx[0]);
Michael Chanc0c050c2015-10-22 16:01:17 -04003898 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3899}
3900
3901static int bnxt_hwrm_vnic_set_hds(struct bnxt *bp, u16 vnic_id)
3902{
3903 struct bnxt_vnic_info *vnic = &bp->vnic_info[vnic_id];
3904 struct hwrm_vnic_plcmodes_cfg_input req = {0};
3905
3906 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_PLCMODES_CFG, -1, -1);
3907 req.flags = cpu_to_le32(VNIC_PLCMODES_CFG_REQ_FLAGS_JUMBO_PLACEMENT |
3908 VNIC_PLCMODES_CFG_REQ_FLAGS_HDS_IPV4 |
3909 VNIC_PLCMODES_CFG_REQ_FLAGS_HDS_IPV6);
3910 req.enables =
3911 cpu_to_le32(VNIC_PLCMODES_CFG_REQ_ENABLES_JUMBO_THRESH_VALID |
3912 VNIC_PLCMODES_CFG_REQ_ENABLES_HDS_THRESHOLD_VALID);
3913 /* thresholds not implemented in firmware yet */
3914 req.jumbo_thresh = cpu_to_le16(bp->rx_copy_thresh);
3915 req.hds_threshold = cpu_to_le16(bp->rx_copy_thresh);
3916 req.vnic_id = cpu_to_le32(vnic->fw_vnic_id);
3917 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3918}
3919
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04003920static void bnxt_hwrm_vnic_ctx_free_one(struct bnxt *bp, u16 vnic_id,
3921 u16 ctx_idx)
Michael Chanc0c050c2015-10-22 16:01:17 -04003922{
3923 struct hwrm_vnic_rss_cos_lb_ctx_free_input req = {0};
3924
3925 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_RSS_COS_LB_CTX_FREE, -1, -1);
3926 req.rss_cos_lb_ctx_id =
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04003927 cpu_to_le16(bp->vnic_info[vnic_id].fw_rss_cos_lb_ctx[ctx_idx]);
Michael Chanc0c050c2015-10-22 16:01:17 -04003928
3929 hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04003930 bp->vnic_info[vnic_id].fw_rss_cos_lb_ctx[ctx_idx] = INVALID_HW_RING_ID;
Michael Chanc0c050c2015-10-22 16:01:17 -04003931}
3932
3933static void bnxt_hwrm_vnic_ctx_free(struct bnxt *bp)
3934{
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04003935 int i, j;
Michael Chanc0c050c2015-10-22 16:01:17 -04003936
3937 for (i = 0; i < bp->nr_vnics; i++) {
3938 struct bnxt_vnic_info *vnic = &bp->vnic_info[i];
3939
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04003940 for (j = 0; j < BNXT_MAX_CTX_PER_VNIC; j++) {
3941 if (vnic->fw_rss_cos_lb_ctx[j] != INVALID_HW_RING_ID)
3942 bnxt_hwrm_vnic_ctx_free_one(bp, i, j);
3943 }
Michael Chanc0c050c2015-10-22 16:01:17 -04003944 }
3945 bp->rsscos_nr_ctxs = 0;
3946}
3947
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04003948static int bnxt_hwrm_vnic_ctx_alloc(struct bnxt *bp, u16 vnic_id, u16 ctx_idx)
Michael Chanc0c050c2015-10-22 16:01:17 -04003949{
3950 int rc;
3951 struct hwrm_vnic_rss_cos_lb_ctx_alloc_input req = {0};
3952 struct hwrm_vnic_rss_cos_lb_ctx_alloc_output *resp =
3953 bp->hwrm_cmd_resp_addr;
3954
3955 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_RSS_COS_LB_CTX_ALLOC, -1,
3956 -1);
3957
3958 mutex_lock(&bp->hwrm_cmd_lock);
3959 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3960 if (!rc)
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04003961 bp->vnic_info[vnic_id].fw_rss_cos_lb_ctx[ctx_idx] =
Michael Chanc0c050c2015-10-22 16:01:17 -04003962 le16_to_cpu(resp->rss_cos_lb_ctx_id);
3963 mutex_unlock(&bp->hwrm_cmd_lock);
3964
3965 return rc;
3966}
3967
Michael Chana588e452016-12-07 00:26:21 -05003968int bnxt_hwrm_vnic_cfg(struct bnxt *bp, u16 vnic_id)
Michael Chanc0c050c2015-10-22 16:01:17 -04003969{
Michael Chanb81a90d2016-01-02 23:45:01 -05003970 unsigned int ring = 0, grp_idx;
Michael Chanc0c050c2015-10-22 16:01:17 -04003971 struct bnxt_vnic_info *vnic = &bp->vnic_info[vnic_id];
3972 struct hwrm_vnic_cfg_input req = {0};
Michael Chancf6645f2016-06-13 02:25:28 -04003973 u16 def_vlan = 0;
Michael Chanc0c050c2015-10-22 16:01:17 -04003974
3975 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_CFG, -1, -1);
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04003976
Prashant Sreedharandc52c6c2016-07-18 07:15:24 -04003977 req.enables = cpu_to_le32(VNIC_CFG_REQ_ENABLES_DFLT_RING_GRP);
3978 /* Only RSS support for now TBD: COS & LB */
3979 if (vnic->fw_rss_cos_lb_ctx[0] != INVALID_HW_RING_ID) {
3980 req.rss_rule = cpu_to_le16(vnic->fw_rss_cos_lb_ctx[0]);
3981 req.enables |= cpu_to_le32(VNIC_CFG_REQ_ENABLES_RSS_RULE |
3982 VNIC_CFG_REQ_ENABLES_MRU);
Michael Chanae10ae72016-12-29 12:13:38 -05003983 } else if (vnic->flags & BNXT_VNIC_RFS_NEW_RSS_FLAG) {
3984 req.rss_rule =
3985 cpu_to_le16(bp->vnic_info[0].fw_rss_cos_lb_ctx[0]);
3986 req.enables |= cpu_to_le32(VNIC_CFG_REQ_ENABLES_RSS_RULE |
3987 VNIC_CFG_REQ_ENABLES_MRU);
3988 req.flags |= cpu_to_le32(VNIC_CFG_REQ_FLAGS_RSS_DFLT_CR_MODE);
Prashant Sreedharandc52c6c2016-07-18 07:15:24 -04003989 } else {
3990 req.rss_rule = cpu_to_le16(0xffff);
3991 }
3992
3993 if (BNXT_CHIP_TYPE_NITRO_A0(bp) &&
3994 (vnic->fw_rss_cos_lb_ctx[0] != INVALID_HW_RING_ID)) {
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04003995 req.cos_rule = cpu_to_le16(vnic->fw_rss_cos_lb_ctx[1]);
3996 req.enables |= cpu_to_le32(VNIC_CFG_REQ_ENABLES_COS_RULE);
3997 } else {
3998 req.cos_rule = cpu_to_le16(0xffff);
3999 }
4000
Michael Chanc0c050c2015-10-22 16:01:17 -04004001 if (vnic->flags & BNXT_VNIC_RSS_FLAG)
Michael Chanb81a90d2016-01-02 23:45:01 -05004002 ring = 0;
Michael Chanc0c050c2015-10-22 16:01:17 -04004003 else if (vnic->flags & BNXT_VNIC_RFS_FLAG)
Michael Chanb81a90d2016-01-02 23:45:01 -05004004 ring = vnic_id - 1;
Prashant Sreedharan76595192016-07-18 07:15:22 -04004005 else if ((vnic_id == 1) && BNXT_CHIP_TYPE_NITRO_A0(bp))
4006 ring = bp->rx_nr_rings - 1;
Michael Chanc0c050c2015-10-22 16:01:17 -04004007
Michael Chanb81a90d2016-01-02 23:45:01 -05004008 grp_idx = bp->rx_ring[ring].bnapi->index;
Michael Chanc0c050c2015-10-22 16:01:17 -04004009 req.vnic_id = cpu_to_le16(vnic->fw_vnic_id);
4010 req.dflt_ring_grp = cpu_to_le16(bp->grp_info[grp_idx].fw_grp_id);
4011
4012 req.lb_rule = cpu_to_le16(0xffff);
4013 req.mru = cpu_to_le16(bp->dev->mtu + ETH_HLEN + ETH_FCS_LEN +
4014 VLAN_HLEN);
4015
Michael Chancf6645f2016-06-13 02:25:28 -04004016#ifdef CONFIG_BNXT_SRIOV
4017 if (BNXT_VF(bp))
4018 def_vlan = bp->vf.vlan;
4019#endif
4020 if ((bp->flags & BNXT_FLAG_STRIP_VLAN) || def_vlan)
Michael Chanc0c050c2015-10-22 16:01:17 -04004021 req.flags |= cpu_to_le32(VNIC_CFG_REQ_FLAGS_VLAN_STRIP_MODE);
Michael Chana588e452016-12-07 00:26:21 -05004022 if (!vnic_id && bnxt_ulp_registered(bp->edev, BNXT_ROCE_ULP))
4023 req.flags |=
4024 cpu_to_le32(VNIC_CFG_REQ_FLAGS_ROCE_DUAL_VNIC_MODE);
Michael Chanc0c050c2015-10-22 16:01:17 -04004025
4026 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4027}
4028
4029static int bnxt_hwrm_vnic_free_one(struct bnxt *bp, u16 vnic_id)
4030{
4031 u32 rc = 0;
4032
4033 if (bp->vnic_info[vnic_id].fw_vnic_id != INVALID_HW_RING_ID) {
4034 struct hwrm_vnic_free_input req = {0};
4035
4036 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_FREE, -1, -1);
4037 req.vnic_id =
4038 cpu_to_le32(bp->vnic_info[vnic_id].fw_vnic_id);
4039
4040 rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4041 if (rc)
4042 return rc;
4043 bp->vnic_info[vnic_id].fw_vnic_id = INVALID_HW_RING_ID;
4044 }
4045 return rc;
4046}
4047
4048static void bnxt_hwrm_vnic_free(struct bnxt *bp)
4049{
4050 u16 i;
4051
4052 for (i = 0; i < bp->nr_vnics; i++)
4053 bnxt_hwrm_vnic_free_one(bp, i);
4054}
4055
Michael Chanb81a90d2016-01-02 23:45:01 -05004056static int bnxt_hwrm_vnic_alloc(struct bnxt *bp, u16 vnic_id,
4057 unsigned int start_rx_ring_idx,
4058 unsigned int nr_rings)
Michael Chanc0c050c2015-10-22 16:01:17 -04004059{
Michael Chanb81a90d2016-01-02 23:45:01 -05004060 int rc = 0;
4061 unsigned int i, j, grp_idx, end_idx = start_rx_ring_idx + nr_rings;
Michael Chanc0c050c2015-10-22 16:01:17 -04004062 struct hwrm_vnic_alloc_input req = {0};
4063 struct hwrm_vnic_alloc_output *resp = bp->hwrm_cmd_resp_addr;
4064
4065 /* map ring groups to this vnic */
Michael Chanb81a90d2016-01-02 23:45:01 -05004066 for (i = start_rx_ring_idx, j = 0; i < end_idx; i++, j++) {
4067 grp_idx = bp->rx_ring[i].bnapi->index;
4068 if (bp->grp_info[grp_idx].fw_grp_id == INVALID_HW_RING_ID) {
Michael Chanc0c050c2015-10-22 16:01:17 -04004069 netdev_err(bp->dev, "Not enough ring groups avail:%x req:%x\n",
Michael Chanb81a90d2016-01-02 23:45:01 -05004070 j, nr_rings);
Michael Chanc0c050c2015-10-22 16:01:17 -04004071 break;
4072 }
4073 bp->vnic_info[vnic_id].fw_grp_ids[j] =
Michael Chanb81a90d2016-01-02 23:45:01 -05004074 bp->grp_info[grp_idx].fw_grp_id;
Michael Chanc0c050c2015-10-22 16:01:17 -04004075 }
4076
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04004077 bp->vnic_info[vnic_id].fw_rss_cos_lb_ctx[0] = INVALID_HW_RING_ID;
4078 bp->vnic_info[vnic_id].fw_rss_cos_lb_ctx[1] = INVALID_HW_RING_ID;
Michael Chanc0c050c2015-10-22 16:01:17 -04004079 if (vnic_id == 0)
4080 req.flags = cpu_to_le32(VNIC_ALLOC_REQ_FLAGS_DEFAULT);
4081
4082 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_ALLOC, -1, -1);
4083
4084 mutex_lock(&bp->hwrm_cmd_lock);
4085 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4086 if (!rc)
4087 bp->vnic_info[vnic_id].fw_vnic_id = le32_to_cpu(resp->vnic_id);
4088 mutex_unlock(&bp->hwrm_cmd_lock);
4089 return rc;
4090}
4091
Michael Chan8fdefd62016-12-29 12:13:36 -05004092static int bnxt_hwrm_vnic_qcaps(struct bnxt *bp)
4093{
4094 struct hwrm_vnic_qcaps_output *resp = bp->hwrm_cmd_resp_addr;
4095 struct hwrm_vnic_qcaps_input req = {0};
4096 int rc;
4097
4098 if (bp->hwrm_spec_code < 0x10600)
4099 return 0;
4100
4101 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_QCAPS, -1, -1);
4102 mutex_lock(&bp->hwrm_cmd_lock);
4103 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4104 if (!rc) {
4105 if (resp->flags &
4106 cpu_to_le32(VNIC_QCAPS_RESP_FLAGS_RSS_DFLT_CR_CAP))
4107 bp->flags |= BNXT_FLAG_NEW_RSS_CAP;
4108 }
4109 mutex_unlock(&bp->hwrm_cmd_lock);
4110 return rc;
4111}
4112
Michael Chanc0c050c2015-10-22 16:01:17 -04004113static int bnxt_hwrm_ring_grp_alloc(struct bnxt *bp)
4114{
4115 u16 i;
4116 u32 rc = 0;
4117
4118 mutex_lock(&bp->hwrm_cmd_lock);
4119 for (i = 0; i < bp->rx_nr_rings; i++) {
4120 struct hwrm_ring_grp_alloc_input req = {0};
4121 struct hwrm_ring_grp_alloc_output *resp =
4122 bp->hwrm_cmd_resp_addr;
Michael Chanb81a90d2016-01-02 23:45:01 -05004123 unsigned int grp_idx = bp->rx_ring[i].bnapi->index;
Michael Chanc0c050c2015-10-22 16:01:17 -04004124
4125 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_RING_GRP_ALLOC, -1, -1);
4126
Michael Chanb81a90d2016-01-02 23:45:01 -05004127 req.cr = cpu_to_le16(bp->grp_info[grp_idx].cp_fw_ring_id);
4128 req.rr = cpu_to_le16(bp->grp_info[grp_idx].rx_fw_ring_id);
4129 req.ar = cpu_to_le16(bp->grp_info[grp_idx].agg_fw_ring_id);
4130 req.sc = cpu_to_le16(bp->grp_info[grp_idx].fw_stats_ctx);
Michael Chanc0c050c2015-10-22 16:01:17 -04004131
4132 rc = _hwrm_send_message(bp, &req, sizeof(req),
4133 HWRM_CMD_TIMEOUT);
4134 if (rc)
4135 break;
4136
Michael Chanb81a90d2016-01-02 23:45:01 -05004137 bp->grp_info[grp_idx].fw_grp_id =
4138 le32_to_cpu(resp->ring_group_id);
Michael Chanc0c050c2015-10-22 16:01:17 -04004139 }
4140 mutex_unlock(&bp->hwrm_cmd_lock);
4141 return rc;
4142}
4143
4144static int bnxt_hwrm_ring_grp_free(struct bnxt *bp)
4145{
4146 u16 i;
4147 u32 rc = 0;
4148 struct hwrm_ring_grp_free_input req = {0};
4149
4150 if (!bp->grp_info)
4151 return 0;
4152
4153 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_RING_GRP_FREE, -1, -1);
4154
4155 mutex_lock(&bp->hwrm_cmd_lock);
4156 for (i = 0; i < bp->cp_nr_rings; i++) {
4157 if (bp->grp_info[i].fw_grp_id == INVALID_HW_RING_ID)
4158 continue;
4159 req.ring_group_id =
4160 cpu_to_le32(bp->grp_info[i].fw_grp_id);
4161
4162 rc = _hwrm_send_message(bp, &req, sizeof(req),
4163 HWRM_CMD_TIMEOUT);
4164 if (rc)
4165 break;
4166 bp->grp_info[i].fw_grp_id = INVALID_HW_RING_ID;
4167 }
4168 mutex_unlock(&bp->hwrm_cmd_lock);
4169 return rc;
4170}
4171
4172static int hwrm_ring_alloc_send_msg(struct bnxt *bp,
4173 struct bnxt_ring_struct *ring,
4174 u32 ring_type, u32 map_index,
4175 u32 stats_ctx_id)
4176{
4177 int rc = 0, err = 0;
4178 struct hwrm_ring_alloc_input req = {0};
4179 struct hwrm_ring_alloc_output *resp = bp->hwrm_cmd_resp_addr;
4180 u16 ring_id;
4181
4182 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_RING_ALLOC, -1, -1);
4183
4184 req.enables = 0;
4185 if (ring->nr_pages > 1) {
4186 req.page_tbl_addr = cpu_to_le64(ring->pg_tbl_map);
4187 /* Page size is in log2 units */
4188 req.page_size = BNXT_PAGE_SHIFT;
4189 req.page_tbl_depth = 1;
4190 } else {
4191 req.page_tbl_addr = cpu_to_le64(ring->dma_arr[0]);
4192 }
4193 req.fbo = 0;
4194 /* Association of ring index with doorbell index and MSIX number */
4195 req.logical_id = cpu_to_le16(map_index);
4196
4197 switch (ring_type) {
4198 case HWRM_RING_ALLOC_TX:
4199 req.ring_type = RING_ALLOC_REQ_RING_TYPE_TX;
4200 /* Association of transmit ring with completion ring */
4201 req.cmpl_ring_id =
4202 cpu_to_le16(bp->grp_info[map_index].cp_fw_ring_id);
4203 req.length = cpu_to_le32(bp->tx_ring_mask + 1);
4204 req.stat_ctx_id = cpu_to_le32(stats_ctx_id);
4205 req.queue_id = cpu_to_le16(ring->queue_id);
4206 break;
4207 case HWRM_RING_ALLOC_RX:
4208 req.ring_type = RING_ALLOC_REQ_RING_TYPE_RX;
4209 req.length = cpu_to_le32(bp->rx_ring_mask + 1);
4210 break;
4211 case HWRM_RING_ALLOC_AGG:
4212 req.ring_type = RING_ALLOC_REQ_RING_TYPE_RX;
4213 req.length = cpu_to_le32(bp->rx_agg_ring_mask + 1);
4214 break;
4215 case HWRM_RING_ALLOC_CMPL:
Michael Chanbac9a7e2017-02-12 19:18:10 -05004216 req.ring_type = RING_ALLOC_REQ_RING_TYPE_L2_CMPL;
Michael Chanc0c050c2015-10-22 16:01:17 -04004217 req.length = cpu_to_le32(bp->cp_ring_mask + 1);
4218 if (bp->flags & BNXT_FLAG_USING_MSIX)
4219 req.int_mode = RING_ALLOC_REQ_INT_MODE_MSIX;
4220 break;
4221 default:
4222 netdev_err(bp->dev, "hwrm alloc invalid ring type %d\n",
4223 ring_type);
4224 return -1;
4225 }
4226
4227 mutex_lock(&bp->hwrm_cmd_lock);
4228 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4229 err = le16_to_cpu(resp->error_code);
4230 ring_id = le16_to_cpu(resp->ring_id);
4231 mutex_unlock(&bp->hwrm_cmd_lock);
4232
4233 if (rc || err) {
4234 switch (ring_type) {
Michael Chanbac9a7e2017-02-12 19:18:10 -05004235 case RING_FREE_REQ_RING_TYPE_L2_CMPL:
Michael Chanc0c050c2015-10-22 16:01:17 -04004236 netdev_err(bp->dev, "hwrm_ring_alloc cp failed. rc:%x err:%x\n",
4237 rc, err);
4238 return -1;
4239
4240 case RING_FREE_REQ_RING_TYPE_RX:
4241 netdev_err(bp->dev, "hwrm_ring_alloc rx failed. rc:%x err:%x\n",
4242 rc, err);
4243 return -1;
4244
4245 case RING_FREE_REQ_RING_TYPE_TX:
4246 netdev_err(bp->dev, "hwrm_ring_alloc tx failed. rc:%x err:%x\n",
4247 rc, err);
4248 return -1;
4249
4250 default:
4251 netdev_err(bp->dev, "Invalid ring\n");
4252 return -1;
4253 }
4254 }
4255 ring->fw_ring_id = ring_id;
4256 return rc;
4257}
4258
Michael Chan486b5c22016-12-29 12:13:42 -05004259static int bnxt_hwrm_set_async_event_cr(struct bnxt *bp, int idx)
4260{
4261 int rc;
4262
4263 if (BNXT_PF(bp)) {
4264 struct hwrm_func_cfg_input req = {0};
4265
4266 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_CFG, -1, -1);
4267 req.fid = cpu_to_le16(0xffff);
4268 req.enables = cpu_to_le32(FUNC_CFG_REQ_ENABLES_ASYNC_EVENT_CR);
4269 req.async_event_cr = cpu_to_le16(idx);
4270 rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4271 } else {
4272 struct hwrm_func_vf_cfg_input req = {0};
4273
4274 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_VF_CFG, -1, -1);
4275 req.enables =
4276 cpu_to_le32(FUNC_VF_CFG_REQ_ENABLES_ASYNC_EVENT_CR);
4277 req.async_event_cr = cpu_to_le16(idx);
4278 rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4279 }
4280 return rc;
4281}
4282
Michael Chanc0c050c2015-10-22 16:01:17 -04004283static int bnxt_hwrm_ring_alloc(struct bnxt *bp)
4284{
4285 int i, rc = 0;
4286
Michael Chanedd0c2c2015-12-27 18:19:19 -05004287 for (i = 0; i < bp->cp_nr_rings; i++) {
4288 struct bnxt_napi *bnapi = bp->bnapi[i];
4289 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
4290 struct bnxt_ring_struct *ring = &cpr->cp_ring_struct;
Michael Chanc0c050c2015-10-22 16:01:17 -04004291
Prashant Sreedharan33e52d82016-03-28 19:46:04 -04004292 cpr->cp_doorbell = bp->bar1 + i * 0x80;
Michael Chanedd0c2c2015-12-27 18:19:19 -05004293 rc = hwrm_ring_alloc_send_msg(bp, ring, HWRM_RING_ALLOC_CMPL, i,
4294 INVALID_STATS_CTX_ID);
4295 if (rc)
4296 goto err_out;
Michael Chanedd0c2c2015-12-27 18:19:19 -05004297 BNXT_CP_DB(cpr->cp_doorbell, cpr->cp_raw_cons);
4298 bp->grp_info[i].cp_fw_ring_id = ring->fw_ring_id;
Michael Chan486b5c22016-12-29 12:13:42 -05004299
4300 if (!i) {
4301 rc = bnxt_hwrm_set_async_event_cr(bp, ring->fw_ring_id);
4302 if (rc)
4303 netdev_warn(bp->dev, "Failed to set async event completion ring.\n");
4304 }
Michael Chanc0c050c2015-10-22 16:01:17 -04004305 }
4306
Michael Chanedd0c2c2015-12-27 18:19:19 -05004307 for (i = 0; i < bp->tx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05004308 struct bnxt_tx_ring_info *txr = &bp->tx_ring[i];
Michael Chanedd0c2c2015-12-27 18:19:19 -05004309 struct bnxt_ring_struct *ring = &txr->tx_ring_struct;
Michael Chanb81a90d2016-01-02 23:45:01 -05004310 u32 map_idx = txr->bnapi->index;
4311 u16 fw_stats_ctx = bp->grp_info[map_idx].fw_stats_ctx;
Michael Chanc0c050c2015-10-22 16:01:17 -04004312
Michael Chanb81a90d2016-01-02 23:45:01 -05004313 rc = hwrm_ring_alloc_send_msg(bp, ring, HWRM_RING_ALLOC_TX,
4314 map_idx, fw_stats_ctx);
Michael Chanedd0c2c2015-12-27 18:19:19 -05004315 if (rc)
4316 goto err_out;
Michael Chanb81a90d2016-01-02 23:45:01 -05004317 txr->tx_doorbell = bp->bar1 + map_idx * 0x80;
Michael Chanc0c050c2015-10-22 16:01:17 -04004318 }
4319
Michael Chanedd0c2c2015-12-27 18:19:19 -05004320 for (i = 0; i < bp->rx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05004321 struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i];
Michael Chanedd0c2c2015-12-27 18:19:19 -05004322 struct bnxt_ring_struct *ring = &rxr->rx_ring_struct;
Michael Chanb81a90d2016-01-02 23:45:01 -05004323 u32 map_idx = rxr->bnapi->index;
Michael Chanc0c050c2015-10-22 16:01:17 -04004324
Michael Chanb81a90d2016-01-02 23:45:01 -05004325 rc = hwrm_ring_alloc_send_msg(bp, ring, HWRM_RING_ALLOC_RX,
4326 map_idx, INVALID_STATS_CTX_ID);
Michael Chanedd0c2c2015-12-27 18:19:19 -05004327 if (rc)
4328 goto err_out;
Michael Chanb81a90d2016-01-02 23:45:01 -05004329 rxr->rx_doorbell = bp->bar1 + map_idx * 0x80;
Michael Chanedd0c2c2015-12-27 18:19:19 -05004330 writel(DB_KEY_RX | rxr->rx_prod, rxr->rx_doorbell);
Michael Chanb81a90d2016-01-02 23:45:01 -05004331 bp->grp_info[map_idx].rx_fw_ring_id = ring->fw_ring_id;
Michael Chanc0c050c2015-10-22 16:01:17 -04004332 }
4333
4334 if (bp->flags & BNXT_FLAG_AGG_RINGS) {
4335 for (i = 0; i < bp->rx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05004336 struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04004337 struct bnxt_ring_struct *ring =
4338 &rxr->rx_agg_ring_struct;
Michael Chanb81a90d2016-01-02 23:45:01 -05004339 u32 grp_idx = rxr->bnapi->index;
4340 u32 map_idx = grp_idx + bp->rx_nr_rings;
Michael Chanc0c050c2015-10-22 16:01:17 -04004341
4342 rc = hwrm_ring_alloc_send_msg(bp, ring,
4343 HWRM_RING_ALLOC_AGG,
Michael Chanb81a90d2016-01-02 23:45:01 -05004344 map_idx,
Michael Chanc0c050c2015-10-22 16:01:17 -04004345 INVALID_STATS_CTX_ID);
4346 if (rc)
4347 goto err_out;
4348
Michael Chanb81a90d2016-01-02 23:45:01 -05004349 rxr->rx_agg_doorbell = bp->bar1 + map_idx * 0x80;
Michael Chanc0c050c2015-10-22 16:01:17 -04004350 writel(DB_KEY_RX | rxr->rx_agg_prod,
4351 rxr->rx_agg_doorbell);
Michael Chanb81a90d2016-01-02 23:45:01 -05004352 bp->grp_info[grp_idx].agg_fw_ring_id = ring->fw_ring_id;
Michael Chanc0c050c2015-10-22 16:01:17 -04004353 }
4354 }
4355err_out:
4356 return rc;
4357}
4358
4359static int hwrm_ring_free_send_msg(struct bnxt *bp,
4360 struct bnxt_ring_struct *ring,
4361 u32 ring_type, int cmpl_ring_id)
4362{
4363 int rc;
4364 struct hwrm_ring_free_input req = {0};
4365 struct hwrm_ring_free_output *resp = bp->hwrm_cmd_resp_addr;
4366 u16 error_code;
4367
Prashant Sreedharan74608fc2016-01-28 03:11:20 -05004368 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_RING_FREE, cmpl_ring_id, -1);
Michael Chanc0c050c2015-10-22 16:01:17 -04004369 req.ring_type = ring_type;
4370 req.ring_id = cpu_to_le16(ring->fw_ring_id);
4371
4372 mutex_lock(&bp->hwrm_cmd_lock);
4373 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4374 error_code = le16_to_cpu(resp->error_code);
4375 mutex_unlock(&bp->hwrm_cmd_lock);
4376
4377 if (rc || error_code) {
4378 switch (ring_type) {
Michael Chanbac9a7e2017-02-12 19:18:10 -05004379 case RING_FREE_REQ_RING_TYPE_L2_CMPL:
Michael Chanc0c050c2015-10-22 16:01:17 -04004380 netdev_err(bp->dev, "hwrm_ring_free cp failed. rc:%d\n",
4381 rc);
4382 return rc;
4383 case RING_FREE_REQ_RING_TYPE_RX:
4384 netdev_err(bp->dev, "hwrm_ring_free rx failed. rc:%d\n",
4385 rc);
4386 return rc;
4387 case RING_FREE_REQ_RING_TYPE_TX:
4388 netdev_err(bp->dev, "hwrm_ring_free tx failed. rc:%d\n",
4389 rc);
4390 return rc;
4391 default:
4392 netdev_err(bp->dev, "Invalid ring\n");
4393 return -1;
4394 }
4395 }
4396 return 0;
4397}
4398
Michael Chanedd0c2c2015-12-27 18:19:19 -05004399static void bnxt_hwrm_ring_free(struct bnxt *bp, bool close_path)
Michael Chanc0c050c2015-10-22 16:01:17 -04004400{
Michael Chanedd0c2c2015-12-27 18:19:19 -05004401 int i;
Michael Chanc0c050c2015-10-22 16:01:17 -04004402
4403 if (!bp->bnapi)
Michael Chanedd0c2c2015-12-27 18:19:19 -05004404 return;
Michael Chanc0c050c2015-10-22 16:01:17 -04004405
Michael Chanedd0c2c2015-12-27 18:19:19 -05004406 for (i = 0; i < bp->tx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05004407 struct bnxt_tx_ring_info *txr = &bp->tx_ring[i];
Michael Chanedd0c2c2015-12-27 18:19:19 -05004408 struct bnxt_ring_struct *ring = &txr->tx_ring_struct;
Michael Chanb81a90d2016-01-02 23:45:01 -05004409 u32 grp_idx = txr->bnapi->index;
4410 u32 cmpl_ring_id = bp->grp_info[grp_idx].cp_fw_ring_id;
Michael Chanc0c050c2015-10-22 16:01:17 -04004411
Michael Chanedd0c2c2015-12-27 18:19:19 -05004412 if (ring->fw_ring_id != INVALID_HW_RING_ID) {
4413 hwrm_ring_free_send_msg(bp, ring,
4414 RING_FREE_REQ_RING_TYPE_TX,
4415 close_path ? cmpl_ring_id :
4416 INVALID_HW_RING_ID);
4417 ring->fw_ring_id = INVALID_HW_RING_ID;
Michael Chanc0c050c2015-10-22 16:01:17 -04004418 }
4419 }
4420
Michael Chanedd0c2c2015-12-27 18:19:19 -05004421 for (i = 0; i < bp->rx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05004422 struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i];
Michael Chanedd0c2c2015-12-27 18:19:19 -05004423 struct bnxt_ring_struct *ring = &rxr->rx_ring_struct;
Michael Chanb81a90d2016-01-02 23:45:01 -05004424 u32 grp_idx = rxr->bnapi->index;
4425 u32 cmpl_ring_id = bp->grp_info[grp_idx].cp_fw_ring_id;
Michael Chanc0c050c2015-10-22 16:01:17 -04004426
Michael Chanedd0c2c2015-12-27 18:19:19 -05004427 if (ring->fw_ring_id != INVALID_HW_RING_ID) {
4428 hwrm_ring_free_send_msg(bp, ring,
4429 RING_FREE_REQ_RING_TYPE_RX,
4430 close_path ? cmpl_ring_id :
4431 INVALID_HW_RING_ID);
4432 ring->fw_ring_id = INVALID_HW_RING_ID;
Michael Chanb81a90d2016-01-02 23:45:01 -05004433 bp->grp_info[grp_idx].rx_fw_ring_id =
4434 INVALID_HW_RING_ID;
Michael Chanc0c050c2015-10-22 16:01:17 -04004435 }
4436 }
4437
Michael Chanedd0c2c2015-12-27 18:19:19 -05004438 for (i = 0; i < bp->rx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05004439 struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i];
Michael Chanedd0c2c2015-12-27 18:19:19 -05004440 struct bnxt_ring_struct *ring = &rxr->rx_agg_ring_struct;
Michael Chanb81a90d2016-01-02 23:45:01 -05004441 u32 grp_idx = rxr->bnapi->index;
4442 u32 cmpl_ring_id = bp->grp_info[grp_idx].cp_fw_ring_id;
Michael Chanc0c050c2015-10-22 16:01:17 -04004443
Michael Chanedd0c2c2015-12-27 18:19:19 -05004444 if (ring->fw_ring_id != INVALID_HW_RING_ID) {
4445 hwrm_ring_free_send_msg(bp, ring,
4446 RING_FREE_REQ_RING_TYPE_RX,
4447 close_path ? cmpl_ring_id :
4448 INVALID_HW_RING_ID);
4449 ring->fw_ring_id = INVALID_HW_RING_ID;
Michael Chanb81a90d2016-01-02 23:45:01 -05004450 bp->grp_info[grp_idx].agg_fw_ring_id =
4451 INVALID_HW_RING_ID;
Michael Chanc0c050c2015-10-22 16:01:17 -04004452 }
4453 }
4454
Michael Chan9d8bc092016-12-29 12:13:33 -05004455 /* The completion rings are about to be freed. After that the
4456 * IRQ doorbell will not work anymore. So we need to disable
4457 * IRQ here.
4458 */
4459 bnxt_disable_int_sync(bp);
4460
Michael Chanedd0c2c2015-12-27 18:19:19 -05004461 for (i = 0; i < bp->cp_nr_rings; i++) {
4462 struct bnxt_napi *bnapi = bp->bnapi[i];
4463 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
4464 struct bnxt_ring_struct *ring = &cpr->cp_ring_struct;
Michael Chanc0c050c2015-10-22 16:01:17 -04004465
Michael Chanedd0c2c2015-12-27 18:19:19 -05004466 if (ring->fw_ring_id != INVALID_HW_RING_ID) {
4467 hwrm_ring_free_send_msg(bp, ring,
Michael Chanbac9a7e2017-02-12 19:18:10 -05004468 RING_FREE_REQ_RING_TYPE_L2_CMPL,
Michael Chanedd0c2c2015-12-27 18:19:19 -05004469 INVALID_HW_RING_ID);
4470 ring->fw_ring_id = INVALID_HW_RING_ID;
4471 bp->grp_info[i].cp_fw_ring_id = INVALID_HW_RING_ID;
Michael Chanc0c050c2015-10-22 16:01:17 -04004472 }
4473 }
Michael Chanc0c050c2015-10-22 16:01:17 -04004474}
4475
Michael Chan391be5c2016-12-29 12:13:41 -05004476/* Caller must hold bp->hwrm_cmd_lock */
4477int __bnxt_hwrm_get_tx_rings(struct bnxt *bp, u16 fid, int *tx_rings)
4478{
4479 struct hwrm_func_qcfg_output *resp = bp->hwrm_cmd_resp_addr;
4480 struct hwrm_func_qcfg_input req = {0};
4481 int rc;
4482
4483 if (bp->hwrm_spec_code < 0x10601)
4484 return 0;
4485
4486 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_QCFG, -1, -1);
4487 req.fid = cpu_to_le16(fid);
4488 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4489 if (!rc)
4490 *tx_rings = le16_to_cpu(resp->alloc_tx_rings);
4491
4492 return rc;
4493}
4494
Michael Chand1e79252017-02-06 16:55:38 -05004495static int bnxt_hwrm_reserve_tx_rings(struct bnxt *bp, int *tx_rings)
Michael Chan391be5c2016-12-29 12:13:41 -05004496{
4497 struct hwrm_func_cfg_input req = {0};
4498 int rc;
4499
4500 if (bp->hwrm_spec_code < 0x10601)
4501 return 0;
4502
4503 if (BNXT_VF(bp))
4504 return 0;
4505
4506 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_CFG, -1, -1);
4507 req.fid = cpu_to_le16(0xffff);
4508 req.enables = cpu_to_le32(FUNC_CFG_REQ_ENABLES_NUM_TX_RINGS);
4509 req.num_tx_rings = cpu_to_le16(*tx_rings);
4510 rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4511 if (rc)
4512 return rc;
4513
4514 mutex_lock(&bp->hwrm_cmd_lock);
4515 rc = __bnxt_hwrm_get_tx_rings(bp, 0xffff, tx_rings);
4516 mutex_unlock(&bp->hwrm_cmd_lock);
Michael Chan98fdbe72017-08-28 13:40:26 -04004517 if (!rc)
4518 bp->tx_reserved_rings = *tx_rings;
Michael Chan391be5c2016-12-29 12:13:41 -05004519 return rc;
4520}
4521
Michael Chan98fdbe72017-08-28 13:40:26 -04004522static int bnxt_hwrm_check_tx_rings(struct bnxt *bp, int tx_rings)
4523{
4524 struct hwrm_func_cfg_input req = {0};
4525 int rc;
4526
4527 if (bp->hwrm_spec_code < 0x10801)
4528 return 0;
4529
4530 if (BNXT_VF(bp))
4531 return 0;
4532
4533 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_CFG, -1, -1);
4534 req.fid = cpu_to_le16(0xffff);
4535 req.flags = cpu_to_le32(FUNC_CFG_REQ_FLAGS_TX_ASSETS_TEST);
4536 req.enables = cpu_to_le32(FUNC_CFG_REQ_ENABLES_NUM_TX_RINGS);
4537 req.num_tx_rings = cpu_to_le16(tx_rings);
4538 rc = hwrm_send_message_silent(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4539 if (rc)
4540 return -ENOMEM;
4541 return 0;
4542}
4543
Michael Chanf8503962017-10-26 11:51:28 -04004544static void bnxt_hwrm_set_coal_params(struct bnxt_coal *hw_coal,
Michael Chanbb053f52016-02-26 04:00:02 -05004545 struct hwrm_ring_cmpl_ring_cfg_aggint_params_input *req)
4546{
Michael Chanf8503962017-10-26 11:51:28 -04004547 u16 val, tmr, max, flags;
4548
4549 max = hw_coal->bufs_per_record * 128;
4550 if (hw_coal->budget)
4551 max = hw_coal->bufs_per_record * hw_coal->budget;
4552
4553 val = clamp_t(u16, hw_coal->coal_bufs, 1, max);
4554 req->num_cmpl_aggr_int = cpu_to_le16(val);
Michael Chanb153cbc2017-11-03 03:32:39 -04004555
4556 /* This is a 6-bit value and must not be 0, or we'll get non stop IRQ */
4557 val = min_t(u16, val, 63);
Michael Chanf8503962017-10-26 11:51:28 -04004558 req->num_cmpl_dma_aggr = cpu_to_le16(val);
4559
Michael Chanb153cbc2017-11-03 03:32:39 -04004560 /* This is a 6-bit value and must not be 0, or we'll get non stop IRQ */
4561 val = clamp_t(u16, hw_coal->coal_bufs_irq, 1, 63);
Michael Chanf8503962017-10-26 11:51:28 -04004562 req->num_cmpl_dma_aggr_during_int = cpu_to_le16(val);
4563
4564 tmr = BNXT_USEC_TO_COAL_TIMER(hw_coal->coal_ticks);
4565 tmr = max_t(u16, tmr, 1);
4566 req->int_lat_tmr_max = cpu_to_le16(tmr);
4567
4568 /* min timer set to 1/2 of interrupt timer */
4569 val = tmr / 2;
4570 req->int_lat_tmr_min = cpu_to_le16(val);
4571
4572 /* buf timer set to 1/4 of interrupt timer */
4573 val = max_t(u16, tmr / 4, 1);
4574 req->cmpl_aggr_dma_tmr = cpu_to_le16(val);
4575
4576 tmr = BNXT_USEC_TO_COAL_TIMER(hw_coal->coal_ticks_irq);
4577 tmr = max_t(u16, tmr, 1);
4578 req->cmpl_aggr_dma_tmr_during_int = cpu_to_le16(tmr);
4579
4580 flags = RING_CMPL_RING_CFG_AGGINT_PARAMS_REQ_FLAGS_TIMER_RESET;
4581 if (hw_coal->idle_thresh && hw_coal->coal_ticks < hw_coal->idle_thresh)
4582 flags |= RING_CMPL_RING_CFG_AGGINT_PARAMS_REQ_FLAGS_RING_IDLE;
Michael Chanbb053f52016-02-26 04:00:02 -05004583 req->flags = cpu_to_le16(flags);
Michael Chanbb053f52016-02-26 04:00:02 -05004584}
4585
Michael Chanc0c050c2015-10-22 16:01:17 -04004586int bnxt_hwrm_set_coal(struct bnxt *bp)
4587{
4588 int i, rc = 0;
Michael Chandfc9c942016-02-26 04:00:03 -05004589 struct hwrm_ring_cmpl_ring_cfg_aggint_params_input req_rx = {0},
4590 req_tx = {0}, *req;
Michael Chanc0c050c2015-10-22 16:01:17 -04004591
Michael Chandfc9c942016-02-26 04:00:03 -05004592 bnxt_hwrm_cmd_hdr_init(bp, &req_rx,
4593 HWRM_RING_CMPL_RING_CFG_AGGINT_PARAMS, -1, -1);
4594 bnxt_hwrm_cmd_hdr_init(bp, &req_tx,
4595 HWRM_RING_CMPL_RING_CFG_AGGINT_PARAMS, -1, -1);
Michael Chanc0c050c2015-10-22 16:01:17 -04004596
Michael Chanf8503962017-10-26 11:51:28 -04004597 bnxt_hwrm_set_coal_params(&bp->rx_coal, &req_rx);
4598 bnxt_hwrm_set_coal_params(&bp->tx_coal, &req_tx);
Michael Chanc0c050c2015-10-22 16:01:17 -04004599
4600 mutex_lock(&bp->hwrm_cmd_lock);
4601 for (i = 0; i < bp->cp_nr_rings; i++) {
Michael Chandfc9c942016-02-26 04:00:03 -05004602 struct bnxt_napi *bnapi = bp->bnapi[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04004603
Michael Chandfc9c942016-02-26 04:00:03 -05004604 req = &req_rx;
4605 if (!bnapi->rx_ring)
4606 req = &req_tx;
4607 req->ring_id = cpu_to_le16(bp->grp_info[i].cp_fw_ring_id);
4608
4609 rc = _hwrm_send_message(bp, req, sizeof(*req),
Michael Chanc0c050c2015-10-22 16:01:17 -04004610 HWRM_CMD_TIMEOUT);
4611 if (rc)
4612 break;
4613 }
4614 mutex_unlock(&bp->hwrm_cmd_lock);
4615 return rc;
4616}
4617
4618static int bnxt_hwrm_stat_ctx_free(struct bnxt *bp)
4619{
4620 int rc = 0, i;
4621 struct hwrm_stat_ctx_free_input req = {0};
4622
4623 if (!bp->bnapi)
4624 return 0;
4625
Prashant Sreedharan3e8060f2016-07-18 07:15:20 -04004626 if (BNXT_CHIP_TYPE_NITRO_A0(bp))
4627 return 0;
4628
Michael Chanc0c050c2015-10-22 16:01:17 -04004629 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_STAT_CTX_FREE, -1, -1);
4630
4631 mutex_lock(&bp->hwrm_cmd_lock);
4632 for (i = 0; i < bp->cp_nr_rings; i++) {
4633 struct bnxt_napi *bnapi = bp->bnapi[i];
4634 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
4635
4636 if (cpr->hw_stats_ctx_id != INVALID_STATS_CTX_ID) {
4637 req.stat_ctx_id = cpu_to_le32(cpr->hw_stats_ctx_id);
4638
4639 rc = _hwrm_send_message(bp, &req, sizeof(req),
4640 HWRM_CMD_TIMEOUT);
4641 if (rc)
4642 break;
4643
4644 cpr->hw_stats_ctx_id = INVALID_STATS_CTX_ID;
4645 }
4646 }
4647 mutex_unlock(&bp->hwrm_cmd_lock);
4648 return rc;
4649}
4650
4651static int bnxt_hwrm_stat_ctx_alloc(struct bnxt *bp)
4652{
4653 int rc = 0, i;
4654 struct hwrm_stat_ctx_alloc_input req = {0};
4655 struct hwrm_stat_ctx_alloc_output *resp = bp->hwrm_cmd_resp_addr;
4656
Prashant Sreedharan3e8060f2016-07-18 07:15:20 -04004657 if (BNXT_CHIP_TYPE_NITRO_A0(bp))
4658 return 0;
4659
Michael Chanc0c050c2015-10-22 16:01:17 -04004660 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_STAT_CTX_ALLOC, -1, -1);
4661
Michael Chan51f30782016-07-01 18:46:29 -04004662 req.update_period_ms = cpu_to_le32(bp->stats_coal_ticks / 1000);
Michael Chanc0c050c2015-10-22 16:01:17 -04004663
4664 mutex_lock(&bp->hwrm_cmd_lock);
4665 for (i = 0; i < bp->cp_nr_rings; i++) {
4666 struct bnxt_napi *bnapi = bp->bnapi[i];
4667 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
4668
4669 req.stats_dma_addr = cpu_to_le64(cpr->hw_stats_map);
4670
4671 rc = _hwrm_send_message(bp, &req, sizeof(req),
4672 HWRM_CMD_TIMEOUT);
4673 if (rc)
4674 break;
4675
4676 cpr->hw_stats_ctx_id = le32_to_cpu(resp->stat_ctx_id);
4677
4678 bp->grp_info[i].fw_stats_ctx = cpr->hw_stats_ctx_id;
4679 }
4680 mutex_unlock(&bp->hwrm_cmd_lock);
Pan Bian89aa8442016-12-03 17:56:17 +08004681 return rc;
Michael Chanc0c050c2015-10-22 16:01:17 -04004682}
4683
Michael Chancf6645f2016-06-13 02:25:28 -04004684static int bnxt_hwrm_func_qcfg(struct bnxt *bp)
4685{
4686 struct hwrm_func_qcfg_input req = {0};
Satish Baddipadige567b2ab2016-06-13 02:25:31 -04004687 struct hwrm_func_qcfg_output *resp = bp->hwrm_cmd_resp_addr;
Michael Chan9315edc2017-07-24 12:34:25 -04004688 u16 flags;
Michael Chancf6645f2016-06-13 02:25:28 -04004689 int rc;
4690
4691 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_QCFG, -1, -1);
4692 req.fid = cpu_to_le16(0xffff);
4693 mutex_lock(&bp->hwrm_cmd_lock);
4694 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4695 if (rc)
4696 goto func_qcfg_exit;
4697
4698#ifdef CONFIG_BNXT_SRIOV
4699 if (BNXT_VF(bp)) {
Michael Chancf6645f2016-06-13 02:25:28 -04004700 struct bnxt_vf_info *vf = &bp->vf;
4701
4702 vf->vlan = le16_to_cpu(resp->vlan) & VLAN_VID_MASK;
4703 }
4704#endif
Michael Chan9315edc2017-07-24 12:34:25 -04004705 flags = le16_to_cpu(resp->flags);
4706 if (flags & (FUNC_QCFG_RESP_FLAGS_FW_DCBX_AGENT_ENABLED |
4707 FUNC_QCFG_RESP_FLAGS_FW_LLDP_AGENT_ENABLED)) {
4708 bp->flags |= BNXT_FLAG_FW_LLDP_AGENT;
4709 if (flags & FUNC_QCFG_RESP_FLAGS_FW_DCBX_AGENT_ENABLED)
4710 bp->flags |= BNXT_FLAG_FW_DCBX_AGENT;
Deepak Khungar9e54e322017-04-21 20:11:26 -04004711 }
Michael Chan9315edc2017-07-24 12:34:25 -04004712 if (BNXT_PF(bp) && (flags & FUNC_QCFG_RESP_FLAGS_MULTI_HOST))
4713 bp->flags |= BNXT_FLAG_MULTI_HOST;
Michael Chanbc39f882017-03-08 18:44:34 -05004714
Satish Baddipadige567b2ab2016-06-13 02:25:31 -04004715 switch (resp->port_partition_type) {
4716 case FUNC_QCFG_RESP_PORT_PARTITION_TYPE_NPAR1_0:
4717 case FUNC_QCFG_RESP_PORT_PARTITION_TYPE_NPAR1_5:
4718 case FUNC_QCFG_RESP_PORT_PARTITION_TYPE_NPAR2_0:
4719 bp->port_partition_type = resp->port_partition_type;
4720 break;
4721 }
Michael Chan32e8239c2017-07-24 12:34:21 -04004722 if (bp->hwrm_spec_code < 0x10707 ||
4723 resp->evb_mode == FUNC_QCFG_RESP_EVB_MODE_VEB)
4724 bp->br_mode = BRIDGE_MODE_VEB;
4725 else if (resp->evb_mode == FUNC_QCFG_RESP_EVB_MODE_VEPA)
4726 bp->br_mode = BRIDGE_MODE_VEPA;
4727 else
4728 bp->br_mode = BRIDGE_MODE_UNDEF;
Michael Chancf6645f2016-06-13 02:25:28 -04004729
Michael Chan7eb9bb32017-10-26 11:51:25 -04004730 bp->max_mtu = le16_to_cpu(resp->max_mtu_configured);
4731 if (!bp->max_mtu)
4732 bp->max_mtu = BNXT_MAX_MTU;
4733
Michael Chancf6645f2016-06-13 02:25:28 -04004734func_qcfg_exit:
4735 mutex_unlock(&bp->hwrm_cmd_lock);
4736 return rc;
4737}
4738
Michael Chan7b08f662016-12-07 00:26:18 -05004739static int bnxt_hwrm_func_qcaps(struct bnxt *bp)
Michael Chanc0c050c2015-10-22 16:01:17 -04004740{
4741 int rc = 0;
4742 struct hwrm_func_qcaps_input req = {0};
4743 struct hwrm_func_qcaps_output *resp = bp->hwrm_cmd_resp_addr;
4744
4745 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_QCAPS, -1, -1);
4746 req.fid = cpu_to_le16(0xffff);
4747
4748 mutex_lock(&bp->hwrm_cmd_lock);
4749 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4750 if (rc)
4751 goto hwrm_func_qcaps_exit;
4752
Michael Chane4060d32016-12-07 00:26:19 -05004753 if (resp->flags & cpu_to_le32(FUNC_QCAPS_RESP_FLAGS_ROCE_V1_SUPPORTED))
4754 bp->flags |= BNXT_FLAG_ROCEV1_CAP;
4755 if (resp->flags & cpu_to_le32(FUNC_QCAPS_RESP_FLAGS_ROCE_V2_SUPPORTED))
4756 bp->flags |= BNXT_FLAG_ROCEV2_CAP;
4757
Michael Chan7cc5a202016-09-19 03:58:05 -04004758 bp->tx_push_thresh = 0;
4759 if (resp->flags &
4760 cpu_to_le32(FUNC_QCAPS_RESP_FLAGS_PUSH_MODE_SUPPORTED))
4761 bp->tx_push_thresh = BNXT_TX_PUSH_THRESH;
4762
Michael Chanc0c050c2015-10-22 16:01:17 -04004763 if (BNXT_PF(bp)) {
4764 struct bnxt_pf_info *pf = &bp->pf;
4765
4766 pf->fw_fid = le16_to_cpu(resp->fid);
4767 pf->port_id = le16_to_cpu(resp->port_id);
Michael Chan87027db2016-07-01 18:46:28 -04004768 bp->dev->dev_port = pf->port_id;
Michael Chan11f15ed2016-04-05 14:08:55 -04004769 memcpy(pf->mac_addr, resp->mac_address, ETH_ALEN);
Michael Chanc0c050c2015-10-22 16:01:17 -04004770 pf->max_rsscos_ctxs = le16_to_cpu(resp->max_rsscos_ctx);
4771 pf->max_cp_rings = le16_to_cpu(resp->max_cmpl_rings);
4772 pf->max_tx_rings = le16_to_cpu(resp->max_tx_rings);
Michael Chanc0c050c2015-10-22 16:01:17 -04004773 pf->max_rx_rings = le16_to_cpu(resp->max_rx_rings);
Michael Chanb72d4a62015-12-27 18:19:27 -05004774 pf->max_hw_ring_grps = le32_to_cpu(resp->max_hw_ring_grps);
4775 if (!pf->max_hw_ring_grps)
4776 pf->max_hw_ring_grps = pf->max_tx_rings;
Michael Chanc0c050c2015-10-22 16:01:17 -04004777 pf->max_l2_ctxs = le16_to_cpu(resp->max_l2_ctxs);
4778 pf->max_vnics = le16_to_cpu(resp->max_vnics);
4779 pf->max_stat_ctxs = le16_to_cpu(resp->max_stat_ctx);
4780 pf->first_vf_id = le16_to_cpu(resp->first_vf_id);
4781 pf->max_vfs = le16_to_cpu(resp->max_vfs);
4782 pf->max_encap_records = le32_to_cpu(resp->max_encap_records);
4783 pf->max_decap_records = le32_to_cpu(resp->max_decap_records);
4784 pf->max_tx_em_flows = le32_to_cpu(resp->max_tx_em_flows);
4785 pf->max_tx_wm_flows = le32_to_cpu(resp->max_tx_wm_flows);
4786 pf->max_rx_em_flows = le32_to_cpu(resp->max_rx_em_flows);
4787 pf->max_rx_wm_flows = le32_to_cpu(resp->max_rx_wm_flows);
Michael Chanc1ef1462017-04-04 18:14:07 -04004788 if (resp->flags &
4789 cpu_to_le32(FUNC_QCAPS_RESP_FLAGS_WOL_MAGICPKT_SUPPORTED))
4790 bp->flags |= BNXT_FLAG_WOL_CAP;
Michael Chanc0c050c2015-10-22 16:01:17 -04004791 } else {
Michael Chan379a80a2015-10-23 15:06:19 -04004792#ifdef CONFIG_BNXT_SRIOV
Michael Chanc0c050c2015-10-22 16:01:17 -04004793 struct bnxt_vf_info *vf = &bp->vf;
4794
4795 vf->fw_fid = le16_to_cpu(resp->fid);
Michael Chanc0c050c2015-10-22 16:01:17 -04004796
4797 vf->max_rsscos_ctxs = le16_to_cpu(resp->max_rsscos_ctx);
4798 vf->max_cp_rings = le16_to_cpu(resp->max_cmpl_rings);
4799 vf->max_tx_rings = le16_to_cpu(resp->max_tx_rings);
4800 vf->max_rx_rings = le16_to_cpu(resp->max_rx_rings);
Michael Chanb72d4a62015-12-27 18:19:27 -05004801 vf->max_hw_ring_grps = le32_to_cpu(resp->max_hw_ring_grps);
4802 if (!vf->max_hw_ring_grps)
4803 vf->max_hw_ring_grps = vf->max_tx_rings;
Michael Chanc0c050c2015-10-22 16:01:17 -04004804 vf->max_l2_ctxs = le16_to_cpu(resp->max_l2_ctxs);
4805 vf->max_vnics = le16_to_cpu(resp->max_vnics);
4806 vf->max_stat_ctxs = le16_to_cpu(resp->max_stat_ctx);
Michael Chan7cc5a202016-09-19 03:58:05 -04004807
4808 memcpy(vf->mac_addr, resp->mac_address, ETH_ALEN);
Michael Chan379a80a2015-10-23 15:06:19 -04004809#endif
Michael Chanc0c050c2015-10-22 16:01:17 -04004810 }
4811
Michael Chanc0c050c2015-10-22 16:01:17 -04004812hwrm_func_qcaps_exit:
4813 mutex_unlock(&bp->hwrm_cmd_lock);
4814 return rc;
4815}
4816
4817static int bnxt_hwrm_func_reset(struct bnxt *bp)
4818{
4819 struct hwrm_func_reset_input req = {0};
4820
4821 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_RESET, -1, -1);
4822 req.enables = 0;
4823
4824 return hwrm_send_message(bp, &req, sizeof(req), HWRM_RESET_TIMEOUT);
4825}
4826
4827static int bnxt_hwrm_queue_qportcfg(struct bnxt *bp)
4828{
4829 int rc = 0;
4830 struct hwrm_queue_qportcfg_input req = {0};
4831 struct hwrm_queue_qportcfg_output *resp = bp->hwrm_cmd_resp_addr;
4832 u8 i, *qptr;
4833
4834 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_QUEUE_QPORTCFG, -1, -1);
4835
4836 mutex_lock(&bp->hwrm_cmd_lock);
4837 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4838 if (rc)
4839 goto qportcfg_exit;
4840
4841 if (!resp->max_configurable_queues) {
4842 rc = -EINVAL;
4843 goto qportcfg_exit;
4844 }
4845 bp->max_tc = resp->max_configurable_queues;
Michael Chan87c374d2016-12-02 21:17:16 -05004846 bp->max_lltc = resp->max_configurable_lossless_queues;
Michael Chanc0c050c2015-10-22 16:01:17 -04004847 if (bp->max_tc > BNXT_MAX_QUEUE)
4848 bp->max_tc = BNXT_MAX_QUEUE;
4849
Michael Chan441cabb2016-09-19 03:58:02 -04004850 if (resp->queue_cfg_info & QUEUE_QPORTCFG_RESP_QUEUE_CFG_INFO_ASYM_CFG)
4851 bp->max_tc = 1;
4852
Michael Chan87c374d2016-12-02 21:17:16 -05004853 if (bp->max_lltc > bp->max_tc)
4854 bp->max_lltc = bp->max_tc;
4855
Michael Chanc0c050c2015-10-22 16:01:17 -04004856 qptr = &resp->queue_id0;
4857 for (i = 0; i < bp->max_tc; i++) {
4858 bp->q_info[i].queue_id = *qptr++;
4859 bp->q_info[i].queue_profile = *qptr++;
4860 }
4861
4862qportcfg_exit:
4863 mutex_unlock(&bp->hwrm_cmd_lock);
4864 return rc;
4865}
4866
4867static int bnxt_hwrm_ver_get(struct bnxt *bp)
4868{
4869 int rc;
4870 struct hwrm_ver_get_input req = {0};
4871 struct hwrm_ver_get_output *resp = bp->hwrm_cmd_resp_addr;
Deepak Khungare605db82017-05-29 19:06:04 -04004872 u32 dev_caps_cfg;
Michael Chanc0c050c2015-10-22 16:01:17 -04004873
Michael Chane6ef2692016-03-28 19:46:05 -04004874 bp->hwrm_max_req_len = HWRM_MAX_REQ_LEN;
Michael Chanc0c050c2015-10-22 16:01:17 -04004875 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VER_GET, -1, -1);
4876 req.hwrm_intf_maj = HWRM_VERSION_MAJOR;
4877 req.hwrm_intf_min = HWRM_VERSION_MINOR;
4878 req.hwrm_intf_upd = HWRM_VERSION_UPDATE;
4879 mutex_lock(&bp->hwrm_cmd_lock);
4880 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4881 if (rc)
4882 goto hwrm_ver_get_exit;
4883
4884 memcpy(&bp->ver_resp, resp, sizeof(struct hwrm_ver_get_output));
4885
Michael Chan11f15ed2016-04-05 14:08:55 -04004886 bp->hwrm_spec_code = resp->hwrm_intf_maj << 16 |
4887 resp->hwrm_intf_min << 8 | resp->hwrm_intf_upd;
Michael Chanc1935542015-12-27 18:19:28 -05004888 if (resp->hwrm_intf_maj < 1) {
4889 netdev_warn(bp->dev, "HWRM interface %d.%d.%d is older than 1.0.0.\n",
Michael Chanc0c050c2015-10-22 16:01:17 -04004890 resp->hwrm_intf_maj, resp->hwrm_intf_min,
Michael Chanc1935542015-12-27 18:19:28 -05004891 resp->hwrm_intf_upd);
4892 netdev_warn(bp->dev, "Please update firmware with HWRM interface 1.0.0 or newer.\n");
Michael Chanc0c050c2015-10-22 16:01:17 -04004893 }
Michael Chan431aa1e2017-10-26 11:51:23 -04004894 snprintf(bp->fw_ver_str, BC_HWRM_STR_LEN, "%d.%d.%d.%d",
Michael Chanc0c050c2015-10-22 16:01:17 -04004895 resp->hwrm_fw_maj, resp->hwrm_fw_min, resp->hwrm_fw_bld,
Michael Chan431aa1e2017-10-26 11:51:23 -04004896 resp->hwrm_fw_rsvd);
Michael Chanc0c050c2015-10-22 16:01:17 -04004897
Michael Chanff4fe812016-02-26 04:00:04 -05004898 bp->hwrm_cmd_timeout = le16_to_cpu(resp->def_req_timeout);
4899 if (!bp->hwrm_cmd_timeout)
4900 bp->hwrm_cmd_timeout = DFLT_HWRM_CMD_TIMEOUT;
4901
Michael Chane6ef2692016-03-28 19:46:05 -04004902 if (resp->hwrm_intf_maj >= 1)
4903 bp->hwrm_max_req_len = le16_to_cpu(resp->max_req_win_len);
4904
Michael Chan659c8052016-06-13 02:25:33 -04004905 bp->chip_num = le16_to_cpu(resp->chip_num);
Prashant Sreedharan3e8060f2016-07-18 07:15:20 -04004906 if (bp->chip_num == CHIP_NUM_58700 && !resp->chip_rev &&
4907 !resp->chip_metal)
4908 bp->flags |= BNXT_FLAG_CHIP_NITRO_A0;
Michael Chan659c8052016-06-13 02:25:33 -04004909
Deepak Khungare605db82017-05-29 19:06:04 -04004910 dev_caps_cfg = le32_to_cpu(resp->dev_caps_cfg);
4911 if ((dev_caps_cfg & VER_GET_RESP_DEV_CAPS_CFG_SHORT_CMD_SUPPORTED) &&
4912 (dev_caps_cfg & VER_GET_RESP_DEV_CAPS_CFG_SHORT_CMD_REQUIRED))
4913 bp->flags |= BNXT_FLAG_SHORT_CMD;
4914
Michael Chanc0c050c2015-10-22 16:01:17 -04004915hwrm_ver_get_exit:
4916 mutex_unlock(&bp->hwrm_cmd_lock);
4917 return rc;
4918}
4919
Rob Swindell5ac67d82016-09-19 03:58:03 -04004920int bnxt_hwrm_fw_set_time(struct bnxt *bp)
4921{
4922 struct hwrm_fw_set_time_input req = {0};
Arnd Bergmann7dfaa7b2017-11-06 15:04:39 +01004923 struct tm tm;
4924 time64_t now = ktime_get_real_seconds();
Rob Swindell5ac67d82016-09-19 03:58:03 -04004925
4926 if (bp->hwrm_spec_code < 0x10400)
4927 return -EOPNOTSUPP;
4928
Arnd Bergmann7dfaa7b2017-11-06 15:04:39 +01004929 time64_to_tm(now, 0, &tm);
Rob Swindell5ac67d82016-09-19 03:58:03 -04004930 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FW_SET_TIME, -1, -1);
4931 req.year = cpu_to_le16(1900 + tm.tm_year);
4932 req.month = 1 + tm.tm_mon;
4933 req.day = tm.tm_mday;
4934 req.hour = tm.tm_hour;
4935 req.minute = tm.tm_min;
4936 req.second = tm.tm_sec;
4937 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4938}
4939
Michael Chan3bdf56c2016-03-07 15:38:45 -05004940static int bnxt_hwrm_port_qstats(struct bnxt *bp)
4941{
4942 int rc;
4943 struct bnxt_pf_info *pf = &bp->pf;
4944 struct hwrm_port_qstats_input req = {0};
4945
4946 if (!(bp->flags & BNXT_FLAG_PORT_STATS))
4947 return 0;
4948
4949 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_QSTATS, -1, -1);
4950 req.port_id = cpu_to_le16(pf->port_id);
4951 req.tx_stat_host_addr = cpu_to_le64(bp->hw_tx_port_stats_map);
4952 req.rx_stat_host_addr = cpu_to_le64(bp->hw_rx_port_stats_map);
4953 rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4954 return rc;
4955}
4956
Michael Chanc0c050c2015-10-22 16:01:17 -04004957static void bnxt_hwrm_free_tunnel_ports(struct bnxt *bp)
4958{
4959 if (bp->vxlan_port_cnt) {
4960 bnxt_hwrm_tunnel_dst_port_free(
4961 bp, TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_VXLAN);
4962 }
4963 bp->vxlan_port_cnt = 0;
4964 if (bp->nge_port_cnt) {
4965 bnxt_hwrm_tunnel_dst_port_free(
4966 bp, TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_GENEVE);
4967 }
4968 bp->nge_port_cnt = 0;
4969}
4970
4971static int bnxt_set_tpa(struct bnxt *bp, bool set_tpa)
4972{
4973 int rc, i;
4974 u32 tpa_flags = 0;
4975
4976 if (set_tpa)
4977 tpa_flags = bp->flags & BNXT_FLAG_TPA;
4978 for (i = 0; i < bp->nr_vnics; i++) {
4979 rc = bnxt_hwrm_vnic_set_tpa(bp, i, tpa_flags);
4980 if (rc) {
4981 netdev_err(bp->dev, "hwrm vnic set tpa failure rc for vnic %d: %x\n",
Sankar Patchineelam23e12c82017-03-28 19:47:30 -04004982 i, rc);
Michael Chanc0c050c2015-10-22 16:01:17 -04004983 return rc;
4984 }
4985 }
4986 return 0;
4987}
4988
4989static void bnxt_hwrm_clear_vnic_rss(struct bnxt *bp)
4990{
4991 int i;
4992
4993 for (i = 0; i < bp->nr_vnics; i++)
4994 bnxt_hwrm_vnic_set_rss(bp, i, false);
4995}
4996
4997static void bnxt_hwrm_resource_free(struct bnxt *bp, bool close_path,
4998 bool irq_re_init)
4999{
5000 if (bp->vnic_info) {
5001 bnxt_hwrm_clear_vnic_filter(bp);
5002 /* clear all RSS setting before free vnic ctx */
5003 bnxt_hwrm_clear_vnic_rss(bp);
5004 bnxt_hwrm_vnic_ctx_free(bp);
5005 /* before free the vnic, undo the vnic tpa settings */
5006 if (bp->flags & BNXT_FLAG_TPA)
5007 bnxt_set_tpa(bp, false);
5008 bnxt_hwrm_vnic_free(bp);
5009 }
5010 bnxt_hwrm_ring_free(bp, close_path);
5011 bnxt_hwrm_ring_grp_free(bp);
5012 if (irq_re_init) {
5013 bnxt_hwrm_stat_ctx_free(bp);
5014 bnxt_hwrm_free_tunnel_ports(bp);
5015 }
5016}
5017
Michael Chan39d8ba22017-07-24 12:34:22 -04005018static int bnxt_hwrm_set_br_mode(struct bnxt *bp, u16 br_mode)
5019{
5020 struct hwrm_func_cfg_input req = {0};
5021 int rc;
5022
5023 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_CFG, -1, -1);
5024 req.fid = cpu_to_le16(0xffff);
5025 req.enables = cpu_to_le32(FUNC_CFG_REQ_ENABLES_EVB_MODE);
5026 if (br_mode == BRIDGE_MODE_VEB)
5027 req.evb_mode = FUNC_CFG_REQ_EVB_MODE_VEB;
5028 else if (br_mode == BRIDGE_MODE_VEPA)
5029 req.evb_mode = FUNC_CFG_REQ_EVB_MODE_VEPA;
5030 else
5031 return -EINVAL;
5032 rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
5033 if (rc)
5034 rc = -EIO;
5035 return rc;
5036}
5037
Michael Chanc0c050c2015-10-22 16:01:17 -04005038static int bnxt_setup_vnic(struct bnxt *bp, u16 vnic_id)
5039{
Michael Chanae10ae72016-12-29 12:13:38 -05005040 struct bnxt_vnic_info *vnic = &bp->vnic_info[vnic_id];
Michael Chanc0c050c2015-10-22 16:01:17 -04005041 int rc;
5042
Michael Chanae10ae72016-12-29 12:13:38 -05005043 if (vnic->flags & BNXT_VNIC_RFS_NEW_RSS_FLAG)
5044 goto skip_rss_ctx;
5045
Michael Chanc0c050c2015-10-22 16:01:17 -04005046 /* allocate context for vnic */
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04005047 rc = bnxt_hwrm_vnic_ctx_alloc(bp, vnic_id, 0);
Michael Chanc0c050c2015-10-22 16:01:17 -04005048 if (rc) {
5049 netdev_err(bp->dev, "hwrm vnic %d alloc failure rc: %x\n",
5050 vnic_id, rc);
5051 goto vnic_setup_err;
5052 }
5053 bp->rsscos_nr_ctxs++;
5054
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04005055 if (BNXT_CHIP_TYPE_NITRO_A0(bp)) {
5056 rc = bnxt_hwrm_vnic_ctx_alloc(bp, vnic_id, 1);
5057 if (rc) {
5058 netdev_err(bp->dev, "hwrm vnic %d cos ctx alloc failure rc: %x\n",
5059 vnic_id, rc);
5060 goto vnic_setup_err;
5061 }
5062 bp->rsscos_nr_ctxs++;
5063 }
5064
Michael Chanae10ae72016-12-29 12:13:38 -05005065skip_rss_ctx:
Michael Chanc0c050c2015-10-22 16:01:17 -04005066 /* configure default vnic, ring grp */
5067 rc = bnxt_hwrm_vnic_cfg(bp, vnic_id);
5068 if (rc) {
5069 netdev_err(bp->dev, "hwrm vnic %d cfg failure rc: %x\n",
5070 vnic_id, rc);
5071 goto vnic_setup_err;
5072 }
5073
5074 /* Enable RSS hashing on vnic */
5075 rc = bnxt_hwrm_vnic_set_rss(bp, vnic_id, true);
5076 if (rc) {
5077 netdev_err(bp->dev, "hwrm vnic %d set rss failure rc: %x\n",
5078 vnic_id, rc);
5079 goto vnic_setup_err;
5080 }
5081
5082 if (bp->flags & BNXT_FLAG_AGG_RINGS) {
5083 rc = bnxt_hwrm_vnic_set_hds(bp, vnic_id);
5084 if (rc) {
5085 netdev_err(bp->dev, "hwrm vnic %d set hds failure rc: %x\n",
5086 vnic_id, rc);
5087 }
5088 }
5089
5090vnic_setup_err:
5091 return rc;
5092}
5093
5094static int bnxt_alloc_rfs_vnics(struct bnxt *bp)
5095{
5096#ifdef CONFIG_RFS_ACCEL
5097 int i, rc = 0;
5098
5099 for (i = 0; i < bp->rx_nr_rings; i++) {
Michael Chanae10ae72016-12-29 12:13:38 -05005100 struct bnxt_vnic_info *vnic;
Michael Chanc0c050c2015-10-22 16:01:17 -04005101 u16 vnic_id = i + 1;
5102 u16 ring_id = i;
5103
5104 if (vnic_id >= bp->nr_vnics)
5105 break;
5106
Michael Chanae10ae72016-12-29 12:13:38 -05005107 vnic = &bp->vnic_info[vnic_id];
5108 vnic->flags |= BNXT_VNIC_RFS_FLAG;
5109 if (bp->flags & BNXT_FLAG_NEW_RSS_CAP)
5110 vnic->flags |= BNXT_VNIC_RFS_NEW_RSS_FLAG;
Michael Chanb81a90d2016-01-02 23:45:01 -05005111 rc = bnxt_hwrm_vnic_alloc(bp, vnic_id, ring_id, 1);
Michael Chanc0c050c2015-10-22 16:01:17 -04005112 if (rc) {
5113 netdev_err(bp->dev, "hwrm vnic %d alloc failure rc: %x\n",
5114 vnic_id, rc);
5115 break;
5116 }
5117 rc = bnxt_setup_vnic(bp, vnic_id);
5118 if (rc)
5119 break;
5120 }
5121 return rc;
5122#else
5123 return 0;
5124#endif
5125}
5126
Michael Chan17c71ac2016-07-01 18:46:27 -04005127/* Allow PF and VF with default VLAN to be in promiscuous mode */
5128static bool bnxt_promisc_ok(struct bnxt *bp)
5129{
5130#ifdef CONFIG_BNXT_SRIOV
5131 if (BNXT_VF(bp) && !bp->vf.vlan)
5132 return false;
5133#endif
5134 return true;
5135}
5136
Prashant Sreedharandc52c6c2016-07-18 07:15:24 -04005137static int bnxt_setup_nitroa0_vnic(struct bnxt *bp)
5138{
5139 unsigned int rc = 0;
5140
5141 rc = bnxt_hwrm_vnic_alloc(bp, 1, bp->rx_nr_rings - 1, 1);
5142 if (rc) {
5143 netdev_err(bp->dev, "Cannot allocate special vnic for NS2 A0: %x\n",
5144 rc);
5145 return rc;
5146 }
5147
5148 rc = bnxt_hwrm_vnic_cfg(bp, 1);
5149 if (rc) {
5150 netdev_err(bp->dev, "Cannot allocate special vnic for NS2 A0: %x\n",
5151 rc);
5152 return rc;
5153 }
5154 return rc;
5155}
5156
Michael Chanb664f002015-12-02 01:54:08 -05005157static int bnxt_cfg_rx_mode(struct bnxt *);
Michael Chan7d2837d2016-05-04 16:56:44 -04005158static bool bnxt_mc_list_updated(struct bnxt *, u32 *);
Michael Chanb664f002015-12-02 01:54:08 -05005159
Michael Chanc0c050c2015-10-22 16:01:17 -04005160static int bnxt_init_chip(struct bnxt *bp, bool irq_re_init)
5161{
Michael Chan7d2837d2016-05-04 16:56:44 -04005162 struct bnxt_vnic_info *vnic = &bp->vnic_info[0];
Michael Chanc0c050c2015-10-22 16:01:17 -04005163 int rc = 0;
Prashant Sreedharan76595192016-07-18 07:15:22 -04005164 unsigned int rx_nr_rings = bp->rx_nr_rings;
Michael Chanc0c050c2015-10-22 16:01:17 -04005165
5166 if (irq_re_init) {
5167 rc = bnxt_hwrm_stat_ctx_alloc(bp);
5168 if (rc) {
5169 netdev_err(bp->dev, "hwrm stat ctx alloc failure rc: %x\n",
5170 rc);
5171 goto err_out;
5172 }
Michael Chan98fdbe72017-08-28 13:40:26 -04005173 if (bp->tx_reserved_rings != bp->tx_nr_rings) {
5174 int tx = bp->tx_nr_rings;
5175
5176 if (bnxt_hwrm_reserve_tx_rings(bp, &tx) ||
5177 tx < bp->tx_nr_rings) {
5178 rc = -ENOMEM;
5179 goto err_out;
5180 }
5181 }
Michael Chanc0c050c2015-10-22 16:01:17 -04005182 }
5183
5184 rc = bnxt_hwrm_ring_alloc(bp);
5185 if (rc) {
5186 netdev_err(bp->dev, "hwrm ring alloc failure rc: %x\n", rc);
5187 goto err_out;
5188 }
5189
5190 rc = bnxt_hwrm_ring_grp_alloc(bp);
5191 if (rc) {
5192 netdev_err(bp->dev, "hwrm_ring_grp alloc failure: %x\n", rc);
5193 goto err_out;
5194 }
5195
Prashant Sreedharan76595192016-07-18 07:15:22 -04005196 if (BNXT_CHIP_TYPE_NITRO_A0(bp))
5197 rx_nr_rings--;
5198
Michael Chanc0c050c2015-10-22 16:01:17 -04005199 /* default vnic 0 */
Prashant Sreedharan76595192016-07-18 07:15:22 -04005200 rc = bnxt_hwrm_vnic_alloc(bp, 0, 0, rx_nr_rings);
Michael Chanc0c050c2015-10-22 16:01:17 -04005201 if (rc) {
5202 netdev_err(bp->dev, "hwrm vnic alloc failure rc: %x\n", rc);
5203 goto err_out;
5204 }
5205
5206 rc = bnxt_setup_vnic(bp, 0);
5207 if (rc)
5208 goto err_out;
5209
5210 if (bp->flags & BNXT_FLAG_RFS) {
5211 rc = bnxt_alloc_rfs_vnics(bp);
5212 if (rc)
5213 goto err_out;
5214 }
5215
5216 if (bp->flags & BNXT_FLAG_TPA) {
5217 rc = bnxt_set_tpa(bp, true);
5218 if (rc)
5219 goto err_out;
5220 }
5221
5222 if (BNXT_VF(bp))
5223 bnxt_update_vf_mac(bp);
5224
5225 /* Filter for default vnic 0 */
5226 rc = bnxt_hwrm_set_vnic_filter(bp, 0, 0, bp->dev->dev_addr);
5227 if (rc) {
5228 netdev_err(bp->dev, "HWRM vnic filter failure rc: %x\n", rc);
5229 goto err_out;
5230 }
Michael Chan7d2837d2016-05-04 16:56:44 -04005231 vnic->uc_filter_count = 1;
Michael Chanc0c050c2015-10-22 16:01:17 -04005232
Michael Chan7d2837d2016-05-04 16:56:44 -04005233 vnic->rx_mask = CFA_L2_SET_RX_MASK_REQ_MASK_BCAST;
Michael Chanc0c050c2015-10-22 16:01:17 -04005234
Michael Chan17c71ac2016-07-01 18:46:27 -04005235 if ((bp->dev->flags & IFF_PROMISC) && bnxt_promisc_ok(bp))
Michael Chan7d2837d2016-05-04 16:56:44 -04005236 vnic->rx_mask |= CFA_L2_SET_RX_MASK_REQ_MASK_PROMISCUOUS;
5237
5238 if (bp->dev->flags & IFF_ALLMULTI) {
5239 vnic->rx_mask |= CFA_L2_SET_RX_MASK_REQ_MASK_ALL_MCAST;
5240 vnic->mc_list_count = 0;
5241 } else {
5242 u32 mask = 0;
5243
5244 bnxt_mc_list_updated(bp, &mask);
5245 vnic->rx_mask |= mask;
5246 }
Michael Chanc0c050c2015-10-22 16:01:17 -04005247
Michael Chanb664f002015-12-02 01:54:08 -05005248 rc = bnxt_cfg_rx_mode(bp);
5249 if (rc)
Michael Chanc0c050c2015-10-22 16:01:17 -04005250 goto err_out;
Michael Chanc0c050c2015-10-22 16:01:17 -04005251
5252 rc = bnxt_hwrm_set_coal(bp);
5253 if (rc)
5254 netdev_warn(bp->dev, "HWRM set coalescing failure rc: %x\n",
Prashant Sreedharandc52c6c2016-07-18 07:15:24 -04005255 rc);
5256
5257 if (BNXT_CHIP_TYPE_NITRO_A0(bp)) {
5258 rc = bnxt_setup_nitroa0_vnic(bp);
5259 if (rc)
5260 netdev_err(bp->dev, "Special vnic setup failure for NS2 A0 rc: %x\n",
5261 rc);
5262 }
Michael Chanc0c050c2015-10-22 16:01:17 -04005263
Michael Chancf6645f2016-06-13 02:25:28 -04005264 if (BNXT_VF(bp)) {
5265 bnxt_hwrm_func_qcfg(bp);
5266 netdev_update_features(bp->dev);
5267 }
5268
Michael Chanc0c050c2015-10-22 16:01:17 -04005269 return 0;
5270
5271err_out:
5272 bnxt_hwrm_resource_free(bp, 0, true);
5273
5274 return rc;
5275}
5276
5277static int bnxt_shutdown_nic(struct bnxt *bp, bool irq_re_init)
5278{
5279 bnxt_hwrm_resource_free(bp, 1, irq_re_init);
5280 return 0;
5281}
5282
5283static int bnxt_init_nic(struct bnxt *bp, bool irq_re_init)
5284{
Sankar Patchineelam22479252017-03-28 19:47:29 -04005285 bnxt_init_cp_rings(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04005286 bnxt_init_rx_rings(bp);
5287 bnxt_init_tx_rings(bp);
5288 bnxt_init_ring_grps(bp, irq_re_init);
5289 bnxt_init_vnics(bp);
5290
5291 return bnxt_init_chip(bp, irq_re_init);
5292}
5293
Michael Chanc0c050c2015-10-22 16:01:17 -04005294static int bnxt_set_real_num_queues(struct bnxt *bp)
5295{
5296 int rc;
5297 struct net_device *dev = bp->dev;
5298
Michael Chan5f449242017-02-06 16:55:40 -05005299 rc = netif_set_real_num_tx_queues(dev, bp->tx_nr_rings -
5300 bp->tx_nr_rings_xdp);
Michael Chanc0c050c2015-10-22 16:01:17 -04005301 if (rc)
5302 return rc;
5303
5304 rc = netif_set_real_num_rx_queues(dev, bp->rx_nr_rings);
5305 if (rc)
5306 return rc;
5307
5308#ifdef CONFIG_RFS_ACCEL
Michael Chan45019a12015-12-27 18:19:22 -05005309 if (bp->flags & BNXT_FLAG_RFS)
Michael Chanc0c050c2015-10-22 16:01:17 -04005310 dev->rx_cpu_rmap = alloc_irq_cpu_rmap(bp->rx_nr_rings);
Michael Chanc0c050c2015-10-22 16:01:17 -04005311#endif
5312
5313 return rc;
5314}
5315
Michael Chan6e6c5a52016-01-02 23:45:02 -05005316static int bnxt_trim_rings(struct bnxt *bp, int *rx, int *tx, int max,
5317 bool shared)
5318{
5319 int _rx = *rx, _tx = *tx;
5320
5321 if (shared) {
5322 *rx = min_t(int, _rx, max);
5323 *tx = min_t(int, _tx, max);
5324 } else {
5325 if (max < 2)
5326 return -ENOMEM;
5327
5328 while (_rx + _tx > max) {
5329 if (_rx > _tx && _rx > 1)
5330 _rx--;
5331 else if (_tx > 1)
5332 _tx--;
5333 }
5334 *rx = _rx;
5335 *tx = _tx;
5336 }
5337 return 0;
5338}
5339
Michael Chan78095922016-12-07 00:26:16 -05005340static void bnxt_setup_msix(struct bnxt *bp)
5341{
5342 const int len = sizeof(bp->irq_tbl[0].name);
5343 struct net_device *dev = bp->dev;
5344 int tcs, i;
5345
5346 tcs = netdev_get_num_tc(dev);
5347 if (tcs > 1) {
Michael Chand1e79252017-02-06 16:55:38 -05005348 int i, off, count;
Michael Chan78095922016-12-07 00:26:16 -05005349
Michael Chand1e79252017-02-06 16:55:38 -05005350 for (i = 0; i < tcs; i++) {
5351 count = bp->tx_nr_rings_per_tc;
5352 off = i * count;
5353 netdev_set_tc_queue(dev, i, count, off);
Michael Chan78095922016-12-07 00:26:16 -05005354 }
5355 }
5356
5357 for (i = 0; i < bp->cp_nr_rings; i++) {
5358 char *attr;
5359
5360 if (bp->flags & BNXT_FLAG_SHARED_RINGS)
5361 attr = "TxRx";
5362 else if (i < bp->rx_nr_rings)
5363 attr = "rx";
5364 else
5365 attr = "tx";
5366
5367 snprintf(bp->irq_tbl[i].name, len, "%s-%s-%d", dev->name, attr,
5368 i);
5369 bp->irq_tbl[i].handler = bnxt_msix;
5370 }
5371}
5372
5373static void bnxt_setup_inta(struct bnxt *bp)
5374{
5375 const int len = sizeof(bp->irq_tbl[0].name);
5376
5377 if (netdev_get_num_tc(bp->dev))
5378 netdev_reset_tc(bp->dev);
5379
5380 snprintf(bp->irq_tbl[0].name, len, "%s-%s-%d", bp->dev->name, "TxRx",
5381 0);
5382 bp->irq_tbl[0].handler = bnxt_inta;
5383}
5384
5385static int bnxt_setup_int_mode(struct bnxt *bp)
5386{
5387 int rc;
5388
5389 if (bp->flags & BNXT_FLAG_USING_MSIX)
5390 bnxt_setup_msix(bp);
5391 else
5392 bnxt_setup_inta(bp);
5393
5394 rc = bnxt_set_real_num_queues(bp);
5395 return rc;
5396}
5397
Michael Chanb7429952017-01-13 01:32:00 -05005398#ifdef CONFIG_RFS_ACCEL
Michael Chan8079e8f2016-12-29 12:13:37 -05005399static unsigned int bnxt_get_max_func_rss_ctxs(struct bnxt *bp)
5400{
5401#if defined(CONFIG_BNXT_SRIOV)
5402 if (BNXT_VF(bp))
5403 return bp->vf.max_rsscos_ctxs;
5404#endif
5405 return bp->pf.max_rsscos_ctxs;
5406}
5407
5408static unsigned int bnxt_get_max_func_vnics(struct bnxt *bp)
5409{
5410#if defined(CONFIG_BNXT_SRIOV)
5411 if (BNXT_VF(bp))
5412 return bp->vf.max_vnics;
5413#endif
5414 return bp->pf.max_vnics;
5415}
Michael Chanb7429952017-01-13 01:32:00 -05005416#endif
Michael Chan8079e8f2016-12-29 12:13:37 -05005417
Michael Chane4060d32016-12-07 00:26:19 -05005418unsigned int bnxt_get_max_func_stat_ctxs(struct bnxt *bp)
5419{
5420#if defined(CONFIG_BNXT_SRIOV)
5421 if (BNXT_VF(bp))
5422 return bp->vf.max_stat_ctxs;
5423#endif
5424 return bp->pf.max_stat_ctxs;
5425}
5426
Michael Chana588e452016-12-07 00:26:21 -05005427void bnxt_set_max_func_stat_ctxs(struct bnxt *bp, unsigned int max)
5428{
5429#if defined(CONFIG_BNXT_SRIOV)
5430 if (BNXT_VF(bp))
5431 bp->vf.max_stat_ctxs = max;
5432 else
5433#endif
5434 bp->pf.max_stat_ctxs = max;
5435}
5436
Michael Chane4060d32016-12-07 00:26:19 -05005437unsigned int bnxt_get_max_func_cp_rings(struct bnxt *bp)
5438{
5439#if defined(CONFIG_BNXT_SRIOV)
5440 if (BNXT_VF(bp))
5441 return bp->vf.max_cp_rings;
5442#endif
5443 return bp->pf.max_cp_rings;
5444}
5445
Michael Chana588e452016-12-07 00:26:21 -05005446void bnxt_set_max_func_cp_rings(struct bnxt *bp, unsigned int max)
5447{
5448#if defined(CONFIG_BNXT_SRIOV)
5449 if (BNXT_VF(bp))
5450 bp->vf.max_cp_rings = max;
5451 else
5452#endif
5453 bp->pf.max_cp_rings = max;
5454}
5455
Michael Chan78095922016-12-07 00:26:16 -05005456static unsigned int bnxt_get_max_func_irqs(struct bnxt *bp)
5457{
5458#if defined(CONFIG_BNXT_SRIOV)
5459 if (BNXT_VF(bp))
Michael Chan68a946b2017-04-04 18:14:17 -04005460 return min_t(unsigned int, bp->vf.max_irqs,
5461 bp->vf.max_cp_rings);
Michael Chan78095922016-12-07 00:26:16 -05005462#endif
Michael Chan68a946b2017-04-04 18:14:17 -04005463 return min_t(unsigned int, bp->pf.max_irqs, bp->pf.max_cp_rings);
Michael Chan78095922016-12-07 00:26:16 -05005464}
5465
Michael Chan33c26572016-12-07 00:26:15 -05005466void bnxt_set_max_func_irqs(struct bnxt *bp, unsigned int max_irqs)
5467{
5468#if defined(CONFIG_BNXT_SRIOV)
5469 if (BNXT_VF(bp))
5470 bp->vf.max_irqs = max_irqs;
5471 else
5472#endif
5473 bp->pf.max_irqs = max_irqs;
5474}
5475
Michael Chan78095922016-12-07 00:26:16 -05005476static int bnxt_init_msix(struct bnxt *bp)
Michael Chanc0c050c2015-10-22 16:01:17 -04005477{
Michael Chan01657bc2016-01-02 23:45:03 -05005478 int i, total_vecs, rc = 0, min = 1;
Michael Chan78095922016-12-07 00:26:16 -05005479 struct msix_entry *msix_ent;
Michael Chanc0c050c2015-10-22 16:01:17 -04005480
Michael Chan78095922016-12-07 00:26:16 -05005481 total_vecs = bnxt_get_max_func_irqs(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04005482 msix_ent = kcalloc(total_vecs, sizeof(struct msix_entry), GFP_KERNEL);
5483 if (!msix_ent)
5484 return -ENOMEM;
5485
5486 for (i = 0; i < total_vecs; i++) {
5487 msix_ent[i].entry = i;
5488 msix_ent[i].vector = 0;
5489 }
5490
Michael Chan01657bc2016-01-02 23:45:03 -05005491 if (!(bp->flags & BNXT_FLAG_SHARED_RINGS))
5492 min = 2;
5493
5494 total_vecs = pci_enable_msix_range(bp->pdev, msix_ent, min, total_vecs);
Michael Chanc0c050c2015-10-22 16:01:17 -04005495 if (total_vecs < 0) {
5496 rc = -ENODEV;
5497 goto msix_setup_exit;
5498 }
5499
5500 bp->irq_tbl = kcalloc(total_vecs, sizeof(struct bnxt_irq), GFP_KERNEL);
5501 if (bp->irq_tbl) {
Michael Chan78095922016-12-07 00:26:16 -05005502 for (i = 0; i < total_vecs; i++)
5503 bp->irq_tbl[i].vector = msix_ent[i].vector;
Michael Chanc0c050c2015-10-22 16:01:17 -04005504
Michael Chan78095922016-12-07 00:26:16 -05005505 bp->total_irqs = total_vecs;
Michael Chanc0c050c2015-10-22 16:01:17 -04005506 /* Trim rings based upon num of vectors allocated */
Michael Chan6e6c5a52016-01-02 23:45:02 -05005507 rc = bnxt_trim_rings(bp, &bp->rx_nr_rings, &bp->tx_nr_rings,
Michael Chan01657bc2016-01-02 23:45:03 -05005508 total_vecs, min == 1);
Michael Chan6e6c5a52016-01-02 23:45:02 -05005509 if (rc)
5510 goto msix_setup_exit;
5511
Michael Chanc0c050c2015-10-22 16:01:17 -04005512 bp->tx_nr_rings_per_tc = bp->tx_nr_rings;
Michael Chan78095922016-12-07 00:26:16 -05005513 bp->cp_nr_rings = (min == 1) ?
5514 max_t(int, bp->tx_nr_rings, bp->rx_nr_rings) :
5515 bp->tx_nr_rings + bp->rx_nr_rings;
Michael Chanc0c050c2015-10-22 16:01:17 -04005516
Michael Chanc0c050c2015-10-22 16:01:17 -04005517 } else {
5518 rc = -ENOMEM;
5519 goto msix_setup_exit;
5520 }
5521 bp->flags |= BNXT_FLAG_USING_MSIX;
5522 kfree(msix_ent);
5523 return 0;
5524
5525msix_setup_exit:
Michael Chan78095922016-12-07 00:26:16 -05005526 netdev_err(bp->dev, "bnxt_init_msix err: %x\n", rc);
5527 kfree(bp->irq_tbl);
5528 bp->irq_tbl = NULL;
Michael Chanc0c050c2015-10-22 16:01:17 -04005529 pci_disable_msix(bp->pdev);
5530 kfree(msix_ent);
5531 return rc;
5532}
5533
Michael Chan78095922016-12-07 00:26:16 -05005534static int bnxt_init_inta(struct bnxt *bp)
Michael Chanc0c050c2015-10-22 16:01:17 -04005535{
Michael Chanc0c050c2015-10-22 16:01:17 -04005536 bp->irq_tbl = kcalloc(1, sizeof(struct bnxt_irq), GFP_KERNEL);
Michael Chan78095922016-12-07 00:26:16 -05005537 if (!bp->irq_tbl)
5538 return -ENOMEM;
5539
5540 bp->total_irqs = 1;
Michael Chanc0c050c2015-10-22 16:01:17 -04005541 bp->rx_nr_rings = 1;
5542 bp->tx_nr_rings = 1;
5543 bp->cp_nr_rings = 1;
5544 bp->tx_nr_rings_per_tc = bp->tx_nr_rings;
Michael Chan01657bc2016-01-02 23:45:03 -05005545 bp->flags |= BNXT_FLAG_SHARED_RINGS;
Michael Chanc0c050c2015-10-22 16:01:17 -04005546 bp->irq_tbl[0].vector = bp->pdev->irq;
Michael Chan78095922016-12-07 00:26:16 -05005547 return 0;
Michael Chanc0c050c2015-10-22 16:01:17 -04005548}
5549
Michael Chan78095922016-12-07 00:26:16 -05005550static int bnxt_init_int_mode(struct bnxt *bp)
Michael Chanc0c050c2015-10-22 16:01:17 -04005551{
5552 int rc = 0;
5553
5554 if (bp->flags & BNXT_FLAG_MSIX_CAP)
Michael Chan78095922016-12-07 00:26:16 -05005555 rc = bnxt_init_msix(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04005556
Michael Chan1fa72e22016-04-25 02:30:49 -04005557 if (!(bp->flags & BNXT_FLAG_USING_MSIX) && BNXT_PF(bp)) {
Michael Chanc0c050c2015-10-22 16:01:17 -04005558 /* fallback to INTA */
Michael Chan78095922016-12-07 00:26:16 -05005559 rc = bnxt_init_inta(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04005560 }
5561 return rc;
5562}
5563
Michael Chan78095922016-12-07 00:26:16 -05005564static void bnxt_clear_int_mode(struct bnxt *bp)
5565{
5566 if (bp->flags & BNXT_FLAG_USING_MSIX)
5567 pci_disable_msix(bp->pdev);
5568
5569 kfree(bp->irq_tbl);
5570 bp->irq_tbl = NULL;
5571 bp->flags &= ~BNXT_FLAG_USING_MSIX;
5572}
5573
Michael Chanc0c050c2015-10-22 16:01:17 -04005574static void bnxt_free_irq(struct bnxt *bp)
5575{
5576 struct bnxt_irq *irq;
5577 int i;
5578
5579#ifdef CONFIG_RFS_ACCEL
5580 free_irq_cpu_rmap(bp->dev->rx_cpu_rmap);
5581 bp->dev->rx_cpu_rmap = NULL;
5582#endif
5583 if (!bp->irq_tbl)
5584 return;
5585
5586 for (i = 0; i < bp->cp_nr_rings; i++) {
5587 irq = &bp->irq_tbl[i];
Vasundhara Volam56f0fd82017-08-28 13:40:27 -04005588 if (irq->requested) {
5589 if (irq->have_cpumask) {
5590 irq_set_affinity_hint(irq->vector, NULL);
5591 free_cpumask_var(irq->cpu_mask);
5592 irq->have_cpumask = 0;
5593 }
Michael Chanc0c050c2015-10-22 16:01:17 -04005594 free_irq(irq->vector, bp->bnapi[i]);
Vasundhara Volam56f0fd82017-08-28 13:40:27 -04005595 }
5596
Michael Chanc0c050c2015-10-22 16:01:17 -04005597 irq->requested = 0;
5598 }
Michael Chanc0c050c2015-10-22 16:01:17 -04005599}
5600
5601static int bnxt_request_irq(struct bnxt *bp)
5602{
Michael Chanb81a90d2016-01-02 23:45:01 -05005603 int i, j, rc = 0;
Michael Chanc0c050c2015-10-22 16:01:17 -04005604 unsigned long flags = 0;
5605#ifdef CONFIG_RFS_ACCEL
5606 struct cpu_rmap *rmap = bp->dev->rx_cpu_rmap;
5607#endif
5608
5609 if (!(bp->flags & BNXT_FLAG_USING_MSIX))
5610 flags = IRQF_SHARED;
5611
Michael Chanb81a90d2016-01-02 23:45:01 -05005612 for (i = 0, j = 0; i < bp->cp_nr_rings; i++) {
Michael Chanc0c050c2015-10-22 16:01:17 -04005613 struct bnxt_irq *irq = &bp->irq_tbl[i];
5614#ifdef CONFIG_RFS_ACCEL
Michael Chanb81a90d2016-01-02 23:45:01 -05005615 if (rmap && bp->bnapi[i]->rx_ring) {
Michael Chanc0c050c2015-10-22 16:01:17 -04005616 rc = irq_cpu_rmap_add(rmap, irq->vector);
5617 if (rc)
5618 netdev_warn(bp->dev, "failed adding irq rmap for ring %d\n",
Michael Chanb81a90d2016-01-02 23:45:01 -05005619 j);
5620 j++;
Michael Chanc0c050c2015-10-22 16:01:17 -04005621 }
5622#endif
5623 rc = request_irq(irq->vector, irq->handler, flags, irq->name,
5624 bp->bnapi[i]);
5625 if (rc)
5626 break;
5627
5628 irq->requested = 1;
Vasundhara Volam56f0fd82017-08-28 13:40:27 -04005629
5630 if (zalloc_cpumask_var(&irq->cpu_mask, GFP_KERNEL)) {
5631 int numa_node = dev_to_node(&bp->pdev->dev);
5632
5633 irq->have_cpumask = 1;
5634 cpumask_set_cpu(cpumask_local_spread(i, numa_node),
5635 irq->cpu_mask);
5636 rc = irq_set_affinity_hint(irq->vector, irq->cpu_mask);
5637 if (rc) {
5638 netdev_warn(bp->dev,
5639 "Set affinity failed, IRQ = %d\n",
5640 irq->vector);
5641 break;
5642 }
5643 }
Michael Chanc0c050c2015-10-22 16:01:17 -04005644 }
5645 return rc;
5646}
5647
5648static void bnxt_del_napi(struct bnxt *bp)
5649{
5650 int i;
5651
5652 if (!bp->bnapi)
5653 return;
5654
5655 for (i = 0; i < bp->cp_nr_rings; i++) {
5656 struct bnxt_napi *bnapi = bp->bnapi[i];
5657
5658 napi_hash_del(&bnapi->napi);
5659 netif_napi_del(&bnapi->napi);
5660 }
Eric Dumazete5f6f562016-11-16 06:31:52 -08005661 /* We called napi_hash_del() before netif_napi_del(), we need
5662 * to respect an RCU grace period before freeing napi structures.
5663 */
5664 synchronize_net();
Michael Chanc0c050c2015-10-22 16:01:17 -04005665}
5666
5667static void bnxt_init_napi(struct bnxt *bp)
5668{
5669 int i;
Prashant Sreedharan10bbdaf2016-07-18 07:15:23 -04005670 unsigned int cp_nr_rings = bp->cp_nr_rings;
Michael Chanc0c050c2015-10-22 16:01:17 -04005671 struct bnxt_napi *bnapi;
5672
5673 if (bp->flags & BNXT_FLAG_USING_MSIX) {
Prashant Sreedharan10bbdaf2016-07-18 07:15:23 -04005674 if (BNXT_CHIP_TYPE_NITRO_A0(bp))
5675 cp_nr_rings--;
5676 for (i = 0; i < cp_nr_rings; i++) {
Michael Chanc0c050c2015-10-22 16:01:17 -04005677 bnapi = bp->bnapi[i];
5678 netif_napi_add(bp->dev, &bnapi->napi,
5679 bnxt_poll, 64);
Michael Chanc0c050c2015-10-22 16:01:17 -04005680 }
Prashant Sreedharan10bbdaf2016-07-18 07:15:23 -04005681 if (BNXT_CHIP_TYPE_NITRO_A0(bp)) {
5682 bnapi = bp->bnapi[cp_nr_rings];
5683 netif_napi_add(bp->dev, &bnapi->napi,
5684 bnxt_poll_nitroa0, 64);
Prashant Sreedharan10bbdaf2016-07-18 07:15:23 -04005685 }
Michael Chanc0c050c2015-10-22 16:01:17 -04005686 } else {
5687 bnapi = bp->bnapi[0];
5688 netif_napi_add(bp->dev, &bnapi->napi, bnxt_poll, 64);
Michael Chanc0c050c2015-10-22 16:01:17 -04005689 }
5690}
5691
5692static void bnxt_disable_napi(struct bnxt *bp)
5693{
5694 int i;
5695
5696 if (!bp->bnapi)
5697 return;
5698
Michael Chanb356a2e2016-12-29 12:13:31 -05005699 for (i = 0; i < bp->cp_nr_rings; i++)
Michael Chanc0c050c2015-10-22 16:01:17 -04005700 napi_disable(&bp->bnapi[i]->napi);
Michael Chanc0c050c2015-10-22 16:01:17 -04005701}
5702
5703static void bnxt_enable_napi(struct bnxt *bp)
5704{
5705 int i;
5706
5707 for (i = 0; i < bp->cp_nr_rings; i++) {
Michael Chanfa7e2812016-05-10 19:18:00 -04005708 bp->bnapi[i]->in_reset = false;
Michael Chanc0c050c2015-10-22 16:01:17 -04005709 napi_enable(&bp->bnapi[i]->napi);
5710 }
5711}
5712
Michael Chan7df4ae92016-12-02 21:17:17 -05005713void bnxt_tx_disable(struct bnxt *bp)
Michael Chanc0c050c2015-10-22 16:01:17 -04005714{
5715 int i;
Michael Chanc0c050c2015-10-22 16:01:17 -04005716 struct bnxt_tx_ring_info *txr;
Michael Chanc0c050c2015-10-22 16:01:17 -04005717
Michael Chanb6ab4b02016-01-02 23:44:59 -05005718 if (bp->tx_ring) {
Michael Chanc0c050c2015-10-22 16:01:17 -04005719 for (i = 0; i < bp->tx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05005720 txr = &bp->tx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04005721 txr->dev_state = BNXT_DEV_STATE_CLOSING;
Michael Chanc0c050c2015-10-22 16:01:17 -04005722 }
5723 }
5724 /* Stop all TX queues */
5725 netif_tx_disable(bp->dev);
5726 netif_carrier_off(bp->dev);
5727}
5728
Michael Chan7df4ae92016-12-02 21:17:17 -05005729void bnxt_tx_enable(struct bnxt *bp)
Michael Chanc0c050c2015-10-22 16:01:17 -04005730{
5731 int i;
Michael Chanc0c050c2015-10-22 16:01:17 -04005732 struct bnxt_tx_ring_info *txr;
Michael Chanc0c050c2015-10-22 16:01:17 -04005733
5734 for (i = 0; i < bp->tx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05005735 txr = &bp->tx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04005736 txr->dev_state = 0;
5737 }
5738 netif_tx_wake_all_queues(bp->dev);
5739 if (bp->link_info.link_up)
5740 netif_carrier_on(bp->dev);
5741}
5742
5743static void bnxt_report_link(struct bnxt *bp)
5744{
5745 if (bp->link_info.link_up) {
5746 const char *duplex;
5747 const char *flow_ctrl;
Deepak Khungar38a21b32017-04-21 20:11:24 -04005748 u32 speed;
5749 u16 fec;
Michael Chanc0c050c2015-10-22 16:01:17 -04005750
5751 netif_carrier_on(bp->dev);
5752 if (bp->link_info.duplex == BNXT_LINK_DUPLEX_FULL)
5753 duplex = "full";
5754 else
5755 duplex = "half";
5756 if (bp->link_info.pause == BNXT_LINK_PAUSE_BOTH)
5757 flow_ctrl = "ON - receive & transmit";
5758 else if (bp->link_info.pause == BNXT_LINK_PAUSE_TX)
5759 flow_ctrl = "ON - transmit";
5760 else if (bp->link_info.pause == BNXT_LINK_PAUSE_RX)
5761 flow_ctrl = "ON - receive";
5762 else
5763 flow_ctrl = "none";
5764 speed = bnxt_fw_to_ethtool_speed(bp->link_info.link_speed);
Deepak Khungar38a21b32017-04-21 20:11:24 -04005765 netdev_info(bp->dev, "NIC Link is Up, %u Mbps %s duplex, Flow control: %s\n",
Michael Chanc0c050c2015-10-22 16:01:17 -04005766 speed, duplex, flow_ctrl);
Michael Chan170ce012016-04-05 14:08:57 -04005767 if (bp->flags & BNXT_FLAG_EEE_CAP)
5768 netdev_info(bp->dev, "EEE is %s\n",
5769 bp->eee.eee_active ? "active" :
5770 "not active");
Michael Chane70c7522017-02-12 19:18:16 -05005771 fec = bp->link_info.fec_cfg;
5772 if (!(fec & PORT_PHY_QCFG_RESP_FEC_CFG_FEC_NONE_SUPPORTED))
5773 netdev_info(bp->dev, "FEC autoneg %s encodings: %s\n",
5774 (fec & BNXT_FEC_AUTONEG) ? "on" : "off",
5775 (fec & BNXT_FEC_ENC_BASE_R) ? "BaseR" :
5776 (fec & BNXT_FEC_ENC_RS) ? "RS" : "None");
Michael Chanc0c050c2015-10-22 16:01:17 -04005777 } else {
5778 netif_carrier_off(bp->dev);
5779 netdev_err(bp->dev, "NIC Link is Down\n");
5780 }
5781}
5782
Michael Chan170ce012016-04-05 14:08:57 -04005783static int bnxt_hwrm_phy_qcaps(struct bnxt *bp)
5784{
5785 int rc = 0;
5786 struct hwrm_port_phy_qcaps_input req = {0};
5787 struct hwrm_port_phy_qcaps_output *resp = bp->hwrm_cmd_resp_addr;
Michael Chan93ed8112016-06-13 02:25:37 -04005788 struct bnxt_link_info *link_info = &bp->link_info;
Michael Chan170ce012016-04-05 14:08:57 -04005789
5790 if (bp->hwrm_spec_code < 0x10201)
5791 return 0;
5792
5793 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_PHY_QCAPS, -1, -1);
5794
5795 mutex_lock(&bp->hwrm_cmd_lock);
5796 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
5797 if (rc)
5798 goto hwrm_phy_qcaps_exit;
5799
Michael Chanacb20052017-07-24 12:34:20 -04005800 if (resp->flags & PORT_PHY_QCAPS_RESP_FLAGS_EEE_SUPPORTED) {
Michael Chan170ce012016-04-05 14:08:57 -04005801 struct ethtool_eee *eee = &bp->eee;
5802 u16 fw_speeds = le16_to_cpu(resp->supported_speeds_eee_mode);
5803
5804 bp->flags |= BNXT_FLAG_EEE_CAP;
5805 eee->supported = _bnxt_fw_to_ethtool_adv_spds(fw_speeds, 0);
5806 bp->lpi_tmr_lo = le32_to_cpu(resp->tx_lpi_timer_low) &
5807 PORT_PHY_QCAPS_RESP_TX_LPI_TIMER_LOW_MASK;
5808 bp->lpi_tmr_hi = le32_to_cpu(resp->valid_tx_lpi_timer_high) &
5809 PORT_PHY_QCAPS_RESP_TX_LPI_TIMER_HIGH_MASK;
5810 }
Michael Chan520ad892017-03-08 18:44:35 -05005811 if (resp->supported_speeds_auto_mode)
5812 link_info->support_auto_speeds =
5813 le16_to_cpu(resp->supported_speeds_auto_mode);
Michael Chan170ce012016-04-05 14:08:57 -04005814
Michael Chand5430d32017-08-28 13:40:31 -04005815 bp->port_count = resp->port_cnt;
5816
Michael Chan170ce012016-04-05 14:08:57 -04005817hwrm_phy_qcaps_exit:
5818 mutex_unlock(&bp->hwrm_cmd_lock);
5819 return rc;
5820}
5821
Michael Chanc0c050c2015-10-22 16:01:17 -04005822static int bnxt_update_link(struct bnxt *bp, bool chng_link_state)
5823{
5824 int rc = 0;
5825 struct bnxt_link_info *link_info = &bp->link_info;
5826 struct hwrm_port_phy_qcfg_input req = {0};
5827 struct hwrm_port_phy_qcfg_output *resp = bp->hwrm_cmd_resp_addr;
5828 u8 link_up = link_info->link_up;
Michael Chan286ef9d2016-11-16 21:13:08 -05005829 u16 diff;
Michael Chanc0c050c2015-10-22 16:01:17 -04005830
5831 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_PHY_QCFG, -1, -1);
5832
5833 mutex_lock(&bp->hwrm_cmd_lock);
5834 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
5835 if (rc) {
5836 mutex_unlock(&bp->hwrm_cmd_lock);
5837 return rc;
5838 }
5839
5840 memcpy(&link_info->phy_qcfg_resp, resp, sizeof(*resp));
5841 link_info->phy_link_status = resp->link;
Michael Chanacb20052017-07-24 12:34:20 -04005842 link_info->duplex = resp->duplex_cfg;
5843 if (bp->hwrm_spec_code >= 0x10800)
5844 link_info->duplex = resp->duplex_state;
Michael Chanc0c050c2015-10-22 16:01:17 -04005845 link_info->pause = resp->pause;
5846 link_info->auto_mode = resp->auto_mode;
5847 link_info->auto_pause_setting = resp->auto_pause;
Michael Chan32773602016-03-07 15:38:42 -05005848 link_info->lp_pause = resp->link_partner_adv_pause;
Michael Chanc0c050c2015-10-22 16:01:17 -04005849 link_info->force_pause_setting = resp->force_pause;
Michael Chanacb20052017-07-24 12:34:20 -04005850 link_info->duplex_setting = resp->duplex_cfg;
Michael Chanc0c050c2015-10-22 16:01:17 -04005851 if (link_info->phy_link_status == BNXT_LINK_LINK)
5852 link_info->link_speed = le16_to_cpu(resp->link_speed);
5853 else
5854 link_info->link_speed = 0;
5855 link_info->force_link_speed = le16_to_cpu(resp->force_link_speed);
Michael Chanc0c050c2015-10-22 16:01:17 -04005856 link_info->support_speeds = le16_to_cpu(resp->support_speeds);
5857 link_info->auto_link_speeds = le16_to_cpu(resp->auto_link_speed_mask);
Michael Chan32773602016-03-07 15:38:42 -05005858 link_info->lp_auto_link_speeds =
5859 le16_to_cpu(resp->link_partner_adv_speeds);
Michael Chanc0c050c2015-10-22 16:01:17 -04005860 link_info->preemphasis = le32_to_cpu(resp->preemphasis);
5861 link_info->phy_ver[0] = resp->phy_maj;
5862 link_info->phy_ver[1] = resp->phy_min;
5863 link_info->phy_ver[2] = resp->phy_bld;
5864 link_info->media_type = resp->media_type;
Michael Chan03efbec2016-04-11 04:11:11 -04005865 link_info->phy_type = resp->phy_type;
Michael Chan11f15ed2016-04-05 14:08:55 -04005866 link_info->transceiver = resp->xcvr_pkg_type;
Michael Chan170ce012016-04-05 14:08:57 -04005867 link_info->phy_addr = resp->eee_config_phy_addr &
5868 PORT_PHY_QCFG_RESP_PHY_ADDR_MASK;
Ajit Khaparde42ee18f2016-05-15 03:04:44 -04005869 link_info->module_status = resp->module_status;
Michael Chanc0c050c2015-10-22 16:01:17 -04005870
Michael Chan170ce012016-04-05 14:08:57 -04005871 if (bp->flags & BNXT_FLAG_EEE_CAP) {
5872 struct ethtool_eee *eee = &bp->eee;
5873 u16 fw_speeds;
5874
5875 eee->eee_active = 0;
5876 if (resp->eee_config_phy_addr &
5877 PORT_PHY_QCFG_RESP_EEE_CONFIG_EEE_ACTIVE) {
5878 eee->eee_active = 1;
5879 fw_speeds = le16_to_cpu(
5880 resp->link_partner_adv_eee_link_speed_mask);
5881 eee->lp_advertised =
5882 _bnxt_fw_to_ethtool_adv_spds(fw_speeds, 0);
5883 }
5884
5885 /* Pull initial EEE config */
5886 if (!chng_link_state) {
5887 if (resp->eee_config_phy_addr &
5888 PORT_PHY_QCFG_RESP_EEE_CONFIG_EEE_ENABLED)
5889 eee->eee_enabled = 1;
5890
5891 fw_speeds = le16_to_cpu(resp->adv_eee_link_speed_mask);
5892 eee->advertised =
5893 _bnxt_fw_to_ethtool_adv_spds(fw_speeds, 0);
5894
5895 if (resp->eee_config_phy_addr &
5896 PORT_PHY_QCFG_RESP_EEE_CONFIG_EEE_TX_LPI) {
5897 __le32 tmr;
5898
5899 eee->tx_lpi_enabled = 1;
5900 tmr = resp->xcvr_identifier_type_tx_lpi_timer;
5901 eee->tx_lpi_timer = le32_to_cpu(tmr) &
5902 PORT_PHY_QCFG_RESP_TX_LPI_TIMER_MASK;
5903 }
5904 }
5905 }
Michael Chane70c7522017-02-12 19:18:16 -05005906
5907 link_info->fec_cfg = PORT_PHY_QCFG_RESP_FEC_CFG_FEC_NONE_SUPPORTED;
5908 if (bp->hwrm_spec_code >= 0x10504)
5909 link_info->fec_cfg = le16_to_cpu(resp->fec_cfg);
5910
Michael Chanc0c050c2015-10-22 16:01:17 -04005911 /* TODO: need to add more logic to report VF link */
5912 if (chng_link_state) {
5913 if (link_info->phy_link_status == BNXT_LINK_LINK)
5914 link_info->link_up = 1;
5915 else
5916 link_info->link_up = 0;
5917 if (link_up != link_info->link_up)
5918 bnxt_report_link(bp);
5919 } else {
5920 /* alwasy link down if not require to update link state */
5921 link_info->link_up = 0;
5922 }
5923 mutex_unlock(&bp->hwrm_cmd_lock);
Michael Chan286ef9d2016-11-16 21:13:08 -05005924
5925 diff = link_info->support_auto_speeds ^ link_info->advertising;
5926 if ((link_info->support_auto_speeds | diff) !=
5927 link_info->support_auto_speeds) {
5928 /* An advertised speed is no longer supported, so we need to
Michael Chan0eaa24b2017-01-25 02:55:08 -05005929 * update the advertisement settings. Caller holds RTNL
5930 * so we can modify link settings.
Michael Chan286ef9d2016-11-16 21:13:08 -05005931 */
Michael Chan286ef9d2016-11-16 21:13:08 -05005932 link_info->advertising = link_info->support_auto_speeds;
Michael Chan0eaa24b2017-01-25 02:55:08 -05005933 if (link_info->autoneg & BNXT_AUTONEG_SPEED)
Michael Chan286ef9d2016-11-16 21:13:08 -05005934 bnxt_hwrm_set_link_setting(bp, true, false);
Michael Chan286ef9d2016-11-16 21:13:08 -05005935 }
Michael Chanc0c050c2015-10-22 16:01:17 -04005936 return 0;
5937}
5938
Michael Chan10289be2016-05-15 03:04:49 -04005939static void bnxt_get_port_module_status(struct bnxt *bp)
5940{
5941 struct bnxt_link_info *link_info = &bp->link_info;
5942 struct hwrm_port_phy_qcfg_output *resp = &link_info->phy_qcfg_resp;
5943 u8 module_status;
5944
5945 if (bnxt_update_link(bp, true))
5946 return;
5947
5948 module_status = link_info->module_status;
5949 switch (module_status) {
5950 case PORT_PHY_QCFG_RESP_MODULE_STATUS_DISABLETX:
5951 case PORT_PHY_QCFG_RESP_MODULE_STATUS_PWRDOWN:
5952 case PORT_PHY_QCFG_RESP_MODULE_STATUS_WARNINGMSG:
5953 netdev_warn(bp->dev, "Unqualified SFP+ module detected on port %d\n",
5954 bp->pf.port_id);
5955 if (bp->hwrm_spec_code >= 0x10201) {
5956 netdev_warn(bp->dev, "Module part number %s\n",
5957 resp->phy_vendor_partnumber);
5958 }
5959 if (module_status == PORT_PHY_QCFG_RESP_MODULE_STATUS_DISABLETX)
5960 netdev_warn(bp->dev, "TX is disabled\n");
5961 if (module_status == PORT_PHY_QCFG_RESP_MODULE_STATUS_PWRDOWN)
5962 netdev_warn(bp->dev, "SFP+ module is shutdown\n");
5963 }
5964}
5965
Michael Chanc0c050c2015-10-22 16:01:17 -04005966static void
5967bnxt_hwrm_set_pause_common(struct bnxt *bp, struct hwrm_port_phy_cfg_input *req)
5968{
5969 if (bp->link_info.autoneg & BNXT_AUTONEG_FLOW_CTRL) {
Michael Chanc9ee9512016-04-05 14:08:56 -04005970 if (bp->hwrm_spec_code >= 0x10201)
5971 req->auto_pause =
5972 PORT_PHY_CFG_REQ_AUTO_PAUSE_AUTONEG_PAUSE;
Michael Chanc0c050c2015-10-22 16:01:17 -04005973 if (bp->link_info.req_flow_ctrl & BNXT_LINK_PAUSE_RX)
5974 req->auto_pause |= PORT_PHY_CFG_REQ_AUTO_PAUSE_RX;
5975 if (bp->link_info.req_flow_ctrl & BNXT_LINK_PAUSE_TX)
Michael Chan49b5c7a2016-03-28 19:46:06 -04005976 req->auto_pause |= PORT_PHY_CFG_REQ_AUTO_PAUSE_TX;
Michael Chanc0c050c2015-10-22 16:01:17 -04005977 req->enables |=
5978 cpu_to_le32(PORT_PHY_CFG_REQ_ENABLES_AUTO_PAUSE);
5979 } else {
5980 if (bp->link_info.req_flow_ctrl & BNXT_LINK_PAUSE_RX)
5981 req->force_pause |= PORT_PHY_CFG_REQ_FORCE_PAUSE_RX;
5982 if (bp->link_info.req_flow_ctrl & BNXT_LINK_PAUSE_TX)
5983 req->force_pause |= PORT_PHY_CFG_REQ_FORCE_PAUSE_TX;
5984 req->enables |=
5985 cpu_to_le32(PORT_PHY_CFG_REQ_ENABLES_FORCE_PAUSE);
Michael Chanc9ee9512016-04-05 14:08:56 -04005986 if (bp->hwrm_spec_code >= 0x10201) {
5987 req->auto_pause = req->force_pause;
5988 req->enables |= cpu_to_le32(
5989 PORT_PHY_CFG_REQ_ENABLES_AUTO_PAUSE);
5990 }
Michael Chanc0c050c2015-10-22 16:01:17 -04005991 }
5992}
5993
5994static void bnxt_hwrm_set_link_common(struct bnxt *bp,
5995 struct hwrm_port_phy_cfg_input *req)
5996{
5997 u8 autoneg = bp->link_info.autoneg;
5998 u16 fw_link_speed = bp->link_info.req_link_speed;
Michael Chan68515a12016-12-29 12:13:34 -05005999 u16 advertising = bp->link_info.advertising;
Michael Chanc0c050c2015-10-22 16:01:17 -04006000
6001 if (autoneg & BNXT_AUTONEG_SPEED) {
6002 req->auto_mode |=
Michael Chan11f15ed2016-04-05 14:08:55 -04006003 PORT_PHY_CFG_REQ_AUTO_MODE_SPEED_MASK;
Michael Chanc0c050c2015-10-22 16:01:17 -04006004
6005 req->enables |= cpu_to_le32(
6006 PORT_PHY_CFG_REQ_ENABLES_AUTO_LINK_SPEED_MASK);
6007 req->auto_link_speed_mask = cpu_to_le16(advertising);
6008
6009 req->enables |= cpu_to_le32(PORT_PHY_CFG_REQ_ENABLES_AUTO_MODE);
6010 req->flags |=
6011 cpu_to_le32(PORT_PHY_CFG_REQ_FLAGS_RESTART_AUTONEG);
6012 } else {
6013 req->force_link_speed = cpu_to_le16(fw_link_speed);
6014 req->flags |= cpu_to_le32(PORT_PHY_CFG_REQ_FLAGS_FORCE);
6015 }
6016
Michael Chanc0c050c2015-10-22 16:01:17 -04006017 /* tell chimp that the setting takes effect immediately */
6018 req->flags |= cpu_to_le32(PORT_PHY_CFG_REQ_FLAGS_RESET_PHY);
6019}
6020
6021int bnxt_hwrm_set_pause(struct bnxt *bp)
6022{
6023 struct hwrm_port_phy_cfg_input req = {0};
6024 int rc;
6025
6026 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_PHY_CFG, -1, -1);
6027 bnxt_hwrm_set_pause_common(bp, &req);
6028
6029 if ((bp->link_info.autoneg & BNXT_AUTONEG_FLOW_CTRL) ||
6030 bp->link_info.force_link_chng)
6031 bnxt_hwrm_set_link_common(bp, &req);
6032
6033 mutex_lock(&bp->hwrm_cmd_lock);
6034 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
6035 if (!rc && !(bp->link_info.autoneg & BNXT_AUTONEG_FLOW_CTRL)) {
6036 /* since changing of pause setting doesn't trigger any link
6037 * change event, the driver needs to update the current pause
6038 * result upon successfully return of the phy_cfg command
6039 */
6040 bp->link_info.pause =
6041 bp->link_info.force_pause_setting = bp->link_info.req_flow_ctrl;
6042 bp->link_info.auto_pause_setting = 0;
6043 if (!bp->link_info.force_link_chng)
6044 bnxt_report_link(bp);
6045 }
6046 bp->link_info.force_link_chng = false;
6047 mutex_unlock(&bp->hwrm_cmd_lock);
6048 return rc;
6049}
6050
Michael Chan939f7f02016-04-05 14:08:58 -04006051static void bnxt_hwrm_set_eee(struct bnxt *bp,
6052 struct hwrm_port_phy_cfg_input *req)
6053{
6054 struct ethtool_eee *eee = &bp->eee;
6055
6056 if (eee->eee_enabled) {
6057 u16 eee_speeds;
6058 u32 flags = PORT_PHY_CFG_REQ_FLAGS_EEE_ENABLE;
6059
6060 if (eee->tx_lpi_enabled)
6061 flags |= PORT_PHY_CFG_REQ_FLAGS_EEE_TX_LPI_ENABLE;
6062 else
6063 flags |= PORT_PHY_CFG_REQ_FLAGS_EEE_TX_LPI_DISABLE;
6064
6065 req->flags |= cpu_to_le32(flags);
6066 eee_speeds = bnxt_get_fw_auto_link_speeds(eee->advertised);
6067 req->eee_link_speed_mask = cpu_to_le16(eee_speeds);
6068 req->tx_lpi_timer = cpu_to_le32(eee->tx_lpi_timer);
6069 } else {
6070 req->flags |= cpu_to_le32(PORT_PHY_CFG_REQ_FLAGS_EEE_DISABLE);
6071 }
6072}
6073
6074int bnxt_hwrm_set_link_setting(struct bnxt *bp, bool set_pause, bool set_eee)
Michael Chanc0c050c2015-10-22 16:01:17 -04006075{
6076 struct hwrm_port_phy_cfg_input req = {0};
6077
6078 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_PHY_CFG, -1, -1);
6079 if (set_pause)
6080 bnxt_hwrm_set_pause_common(bp, &req);
6081
6082 bnxt_hwrm_set_link_common(bp, &req);
Michael Chan939f7f02016-04-05 14:08:58 -04006083
6084 if (set_eee)
6085 bnxt_hwrm_set_eee(bp, &req);
Michael Chanc0c050c2015-10-22 16:01:17 -04006086 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
6087}
6088
Michael Chan33f7d552016-04-11 04:11:12 -04006089static int bnxt_hwrm_shutdown_link(struct bnxt *bp)
6090{
6091 struct hwrm_port_phy_cfg_input req = {0};
6092
Satish Baddipadige567b2ab2016-06-13 02:25:31 -04006093 if (!BNXT_SINGLE_PF(bp))
Michael Chan33f7d552016-04-11 04:11:12 -04006094 return 0;
6095
6096 if (pci_num_vf(bp->pdev))
6097 return 0;
6098
6099 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_PHY_CFG, -1, -1);
Michael Chan16d663a2016-11-16 21:13:07 -05006100 req.flags = cpu_to_le32(PORT_PHY_CFG_REQ_FLAGS_FORCE_LINK_DWN);
Michael Chan33f7d552016-04-11 04:11:12 -04006101 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
6102}
6103
Michael Chan5ad2cbe2017-01-13 01:32:03 -05006104static int bnxt_hwrm_port_led_qcaps(struct bnxt *bp)
6105{
6106 struct hwrm_port_led_qcaps_output *resp = bp->hwrm_cmd_resp_addr;
6107 struct hwrm_port_led_qcaps_input req = {0};
6108 struct bnxt_pf_info *pf = &bp->pf;
6109 int rc;
6110
6111 if (BNXT_VF(bp) || bp->hwrm_spec_code < 0x10601)
6112 return 0;
6113
6114 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_LED_QCAPS, -1, -1);
6115 req.port_id = cpu_to_le16(pf->port_id);
6116 mutex_lock(&bp->hwrm_cmd_lock);
6117 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
6118 if (rc) {
6119 mutex_unlock(&bp->hwrm_cmd_lock);
6120 return rc;
6121 }
6122 if (resp->num_leds > 0 && resp->num_leds < BNXT_MAX_LED) {
6123 int i;
6124
6125 bp->num_leds = resp->num_leds;
6126 memcpy(bp->leds, &resp->led0_id, sizeof(bp->leds[0]) *
6127 bp->num_leds);
6128 for (i = 0; i < bp->num_leds; i++) {
6129 struct bnxt_led_info *led = &bp->leds[i];
6130 __le16 caps = led->led_state_caps;
6131
6132 if (!led->led_group_id ||
6133 !BNXT_LED_ALT_BLINK_CAP(caps)) {
6134 bp->num_leds = 0;
6135 break;
6136 }
6137 }
6138 }
6139 mutex_unlock(&bp->hwrm_cmd_lock);
6140 return 0;
6141}
6142
Michael Chan5282db62017-04-04 18:14:10 -04006143int bnxt_hwrm_alloc_wol_fltr(struct bnxt *bp)
6144{
6145 struct hwrm_wol_filter_alloc_input req = {0};
6146 struct hwrm_wol_filter_alloc_output *resp = bp->hwrm_cmd_resp_addr;
6147 int rc;
6148
6149 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_WOL_FILTER_ALLOC, -1, -1);
6150 req.port_id = cpu_to_le16(bp->pf.port_id);
6151 req.wol_type = WOL_FILTER_ALLOC_REQ_WOL_TYPE_MAGICPKT;
6152 req.enables = cpu_to_le32(WOL_FILTER_ALLOC_REQ_ENABLES_MAC_ADDRESS);
6153 memcpy(req.mac_address, bp->dev->dev_addr, ETH_ALEN);
6154 mutex_lock(&bp->hwrm_cmd_lock);
6155 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
6156 if (!rc)
6157 bp->wol_filter_id = resp->wol_filter_id;
6158 mutex_unlock(&bp->hwrm_cmd_lock);
6159 return rc;
6160}
6161
6162int bnxt_hwrm_free_wol_fltr(struct bnxt *bp)
6163{
6164 struct hwrm_wol_filter_free_input req = {0};
6165 int rc;
6166
6167 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_WOL_FILTER_FREE, -1, -1);
6168 req.port_id = cpu_to_le16(bp->pf.port_id);
6169 req.enables = cpu_to_le32(WOL_FILTER_FREE_REQ_ENABLES_WOL_FILTER_ID);
6170 req.wol_filter_id = bp->wol_filter_id;
6171 rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
6172 return rc;
6173}
6174
Michael Chanc1ef1462017-04-04 18:14:07 -04006175static u16 bnxt_hwrm_get_wol_fltrs(struct bnxt *bp, u16 handle)
6176{
6177 struct hwrm_wol_filter_qcfg_input req = {0};
6178 struct hwrm_wol_filter_qcfg_output *resp = bp->hwrm_cmd_resp_addr;
6179 u16 next_handle = 0;
6180 int rc;
6181
6182 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_WOL_FILTER_QCFG, -1, -1);
6183 req.port_id = cpu_to_le16(bp->pf.port_id);
6184 req.handle = cpu_to_le16(handle);
6185 mutex_lock(&bp->hwrm_cmd_lock);
6186 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
6187 if (!rc) {
6188 next_handle = le16_to_cpu(resp->next_handle);
6189 if (next_handle != 0) {
6190 if (resp->wol_type ==
6191 WOL_FILTER_ALLOC_REQ_WOL_TYPE_MAGICPKT) {
6192 bp->wol = 1;
6193 bp->wol_filter_id = resp->wol_filter_id;
6194 }
6195 }
6196 }
6197 mutex_unlock(&bp->hwrm_cmd_lock);
6198 return next_handle;
6199}
6200
6201static void bnxt_get_wol_settings(struct bnxt *bp)
6202{
6203 u16 handle = 0;
6204
6205 if (!BNXT_PF(bp) || !(bp->flags & BNXT_FLAG_WOL_CAP))
6206 return;
6207
6208 do {
6209 handle = bnxt_hwrm_get_wol_fltrs(bp, handle);
6210 } while (handle && handle != 0xffff);
6211}
6212
Michael Chan939f7f02016-04-05 14:08:58 -04006213static bool bnxt_eee_config_ok(struct bnxt *bp)
6214{
6215 struct ethtool_eee *eee = &bp->eee;
6216 struct bnxt_link_info *link_info = &bp->link_info;
6217
6218 if (!(bp->flags & BNXT_FLAG_EEE_CAP))
6219 return true;
6220
6221 if (eee->eee_enabled) {
6222 u32 advertising =
6223 _bnxt_fw_to_ethtool_adv_spds(link_info->advertising, 0);
6224
6225 if (!(link_info->autoneg & BNXT_AUTONEG_SPEED)) {
6226 eee->eee_enabled = 0;
6227 return false;
6228 }
6229 if (eee->advertised & ~advertising) {
6230 eee->advertised = advertising & eee->supported;
6231 return false;
6232 }
6233 }
6234 return true;
6235}
6236
Michael Chanc0c050c2015-10-22 16:01:17 -04006237static int bnxt_update_phy_setting(struct bnxt *bp)
6238{
6239 int rc;
6240 bool update_link = false;
6241 bool update_pause = false;
Michael Chan939f7f02016-04-05 14:08:58 -04006242 bool update_eee = false;
Michael Chanc0c050c2015-10-22 16:01:17 -04006243 struct bnxt_link_info *link_info = &bp->link_info;
6244
6245 rc = bnxt_update_link(bp, true);
6246 if (rc) {
6247 netdev_err(bp->dev, "failed to update link (rc: %x)\n",
6248 rc);
6249 return rc;
6250 }
Michael Chan33dac242017-02-12 19:18:15 -05006251 if (!BNXT_SINGLE_PF(bp))
6252 return 0;
6253
Michael Chanc0c050c2015-10-22 16:01:17 -04006254 if ((link_info->autoneg & BNXT_AUTONEG_FLOW_CTRL) &&
Michael Chanc9ee9512016-04-05 14:08:56 -04006255 (link_info->auto_pause_setting & BNXT_LINK_PAUSE_BOTH) !=
6256 link_info->req_flow_ctrl)
Michael Chanc0c050c2015-10-22 16:01:17 -04006257 update_pause = true;
6258 if (!(link_info->autoneg & BNXT_AUTONEG_FLOW_CTRL) &&
6259 link_info->force_pause_setting != link_info->req_flow_ctrl)
6260 update_pause = true;
Michael Chanc0c050c2015-10-22 16:01:17 -04006261 if (!(link_info->autoneg & BNXT_AUTONEG_SPEED)) {
6262 if (BNXT_AUTO_MODE(link_info->auto_mode))
6263 update_link = true;
6264 if (link_info->req_link_speed != link_info->force_link_speed)
6265 update_link = true;
Michael Chande730182016-02-19 19:43:20 -05006266 if (link_info->req_duplex != link_info->duplex_setting)
6267 update_link = true;
Michael Chanc0c050c2015-10-22 16:01:17 -04006268 } else {
6269 if (link_info->auto_mode == BNXT_LINK_AUTO_NONE)
6270 update_link = true;
6271 if (link_info->advertising != link_info->auto_link_speeds)
6272 update_link = true;
Michael Chanc0c050c2015-10-22 16:01:17 -04006273 }
6274
Michael Chan16d663a2016-11-16 21:13:07 -05006275 /* The last close may have shutdown the link, so need to call
6276 * PHY_CFG to bring it back up.
6277 */
6278 if (!netif_carrier_ok(bp->dev))
6279 update_link = true;
6280
Michael Chan939f7f02016-04-05 14:08:58 -04006281 if (!bnxt_eee_config_ok(bp))
6282 update_eee = true;
6283
Michael Chanc0c050c2015-10-22 16:01:17 -04006284 if (update_link)
Michael Chan939f7f02016-04-05 14:08:58 -04006285 rc = bnxt_hwrm_set_link_setting(bp, update_pause, update_eee);
Michael Chanc0c050c2015-10-22 16:01:17 -04006286 else if (update_pause)
6287 rc = bnxt_hwrm_set_pause(bp);
6288 if (rc) {
6289 netdev_err(bp->dev, "failed to update phy setting (rc: %x)\n",
6290 rc);
6291 return rc;
6292 }
6293
6294 return rc;
6295}
6296
Jeffrey Huang11809492015-11-05 16:25:49 -05006297/* Common routine to pre-map certain register block to different GRC window.
6298 * A PF has 16 4K windows and a VF has 4 4K windows. However, only 15 windows
6299 * in PF and 3 windows in VF that can be customized to map in different
6300 * register blocks.
6301 */
6302static void bnxt_preset_reg_win(struct bnxt *bp)
6303{
6304 if (BNXT_PF(bp)) {
6305 /* CAG registers map to GRC window #4 */
6306 writel(BNXT_CAG_REG_BASE,
6307 bp->bar0 + BNXT_GRCPF_REG_WINDOW_BASE_OUT + 12);
6308 }
6309}
6310
Michael Chanc0c050c2015-10-22 16:01:17 -04006311static int __bnxt_open_nic(struct bnxt *bp, bool irq_re_init, bool link_re_init)
6312{
6313 int rc = 0;
6314
Jeffrey Huang11809492015-11-05 16:25:49 -05006315 bnxt_preset_reg_win(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04006316 netif_carrier_off(bp->dev);
6317 if (irq_re_init) {
6318 rc = bnxt_setup_int_mode(bp);
6319 if (rc) {
6320 netdev_err(bp->dev, "bnxt_setup_int_mode err: %x\n",
6321 rc);
6322 return rc;
6323 }
6324 }
6325 if ((bp->flags & BNXT_FLAG_RFS) &&
6326 !(bp->flags & BNXT_FLAG_USING_MSIX)) {
6327 /* disable RFS if falling back to INTA */
6328 bp->dev->hw_features &= ~NETIF_F_NTUPLE;
6329 bp->flags &= ~BNXT_FLAG_RFS;
6330 }
6331
6332 rc = bnxt_alloc_mem(bp, irq_re_init);
6333 if (rc) {
6334 netdev_err(bp->dev, "bnxt_alloc_mem err: %x\n", rc);
6335 goto open_err_free_mem;
6336 }
6337
6338 if (irq_re_init) {
6339 bnxt_init_napi(bp);
6340 rc = bnxt_request_irq(bp);
6341 if (rc) {
6342 netdev_err(bp->dev, "bnxt_request_irq err: %x\n", rc);
6343 goto open_err;
6344 }
6345 }
6346
6347 bnxt_enable_napi(bp);
6348
6349 rc = bnxt_init_nic(bp, irq_re_init);
6350 if (rc) {
6351 netdev_err(bp->dev, "bnxt_init_nic err: %x\n", rc);
6352 goto open_err;
6353 }
6354
6355 if (link_re_init) {
Michael Chane2dc9b62017-10-13 21:09:30 -04006356 mutex_lock(&bp->link_lock);
Michael Chanc0c050c2015-10-22 16:01:17 -04006357 rc = bnxt_update_phy_setting(bp);
Michael Chane2dc9b62017-10-13 21:09:30 -04006358 mutex_unlock(&bp->link_lock);
Michael Chanc0c050c2015-10-22 16:01:17 -04006359 if (rc)
Michael Chanba41d462016-02-19 19:43:21 -05006360 netdev_warn(bp->dev, "failed to update phy settings\n");
Michael Chanc0c050c2015-10-22 16:01:17 -04006361 }
6362
Alexander Duyck7cdd5fc2016-06-16 12:21:36 -07006363 if (irq_re_init)
Alexander Duyckad51b8e2016-06-16 12:21:19 -07006364 udp_tunnel_get_rx_info(bp->dev);
Michael Chanc0c050c2015-10-22 16:01:17 -04006365
Michael Chancaefe522015-12-09 19:35:42 -05006366 set_bit(BNXT_STATE_OPEN, &bp->state);
Michael Chanc0c050c2015-10-22 16:01:17 -04006367 bnxt_enable_int(bp);
6368 /* Enable TX queues */
6369 bnxt_tx_enable(bp);
6370 mod_timer(&bp->timer, jiffies + bp->current_interval);
Michael Chan10289be2016-05-15 03:04:49 -04006371 /* Poll link status and check for SFP+ module status */
6372 bnxt_get_port_module_status(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04006373
Sathya Perlaee5c7fb2017-07-24 12:34:28 -04006374 /* VF-reps may need to be re-opened after the PF is re-opened */
6375 if (BNXT_PF(bp))
6376 bnxt_vf_reps_open(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04006377 return 0;
6378
6379open_err:
6380 bnxt_disable_napi(bp);
6381 bnxt_del_napi(bp);
6382
6383open_err_free_mem:
6384 bnxt_free_skbs(bp);
6385 bnxt_free_irq(bp);
6386 bnxt_free_mem(bp, true);
6387 return rc;
6388}
6389
6390/* rtnl_lock held */
6391int bnxt_open_nic(struct bnxt *bp, bool irq_re_init, bool link_re_init)
6392{
6393 int rc = 0;
6394
6395 rc = __bnxt_open_nic(bp, irq_re_init, link_re_init);
6396 if (rc) {
6397 netdev_err(bp->dev, "nic open fail (rc: %x)\n", rc);
6398 dev_close(bp->dev);
6399 }
6400 return rc;
6401}
6402
Michael Chanf7dc1ea2017-04-04 18:14:13 -04006403/* rtnl_lock held, open the NIC half way by allocating all resources, but
6404 * NAPI, IRQ, and TX are not enabled. This is mainly used for offline
6405 * self tests.
6406 */
6407int bnxt_half_open_nic(struct bnxt *bp)
6408{
6409 int rc = 0;
6410
6411 rc = bnxt_alloc_mem(bp, false);
6412 if (rc) {
6413 netdev_err(bp->dev, "bnxt_alloc_mem err: %x\n", rc);
6414 goto half_open_err;
6415 }
6416 rc = bnxt_init_nic(bp, false);
6417 if (rc) {
6418 netdev_err(bp->dev, "bnxt_init_nic err: %x\n", rc);
6419 goto half_open_err;
6420 }
6421 return 0;
6422
6423half_open_err:
6424 bnxt_free_skbs(bp);
6425 bnxt_free_mem(bp, false);
6426 dev_close(bp->dev);
6427 return rc;
6428}
6429
6430/* rtnl_lock held, this call can only be made after a previous successful
6431 * call to bnxt_half_open_nic().
6432 */
6433void bnxt_half_close_nic(struct bnxt *bp)
6434{
6435 bnxt_hwrm_resource_free(bp, false, false);
6436 bnxt_free_skbs(bp);
6437 bnxt_free_mem(bp, false);
6438}
6439
Michael Chanc0c050c2015-10-22 16:01:17 -04006440static int bnxt_open(struct net_device *dev)
6441{
6442 struct bnxt *bp = netdev_priv(dev);
Michael Chanc0c050c2015-10-22 16:01:17 -04006443
Michael Chanc0c050c2015-10-22 16:01:17 -04006444 return __bnxt_open_nic(bp, true, true);
6445}
6446
Michael Chanf9b76eb2017-07-11 13:05:34 -04006447static bool bnxt_drv_busy(struct bnxt *bp)
6448{
6449 return (test_bit(BNXT_STATE_IN_SP_TASK, &bp->state) ||
6450 test_bit(BNXT_STATE_READ_STATS, &bp->state));
6451}
6452
Michael Chanc0c050c2015-10-22 16:01:17 -04006453int bnxt_close_nic(struct bnxt *bp, bool irq_re_init, bool link_re_init)
6454{
6455 int rc = 0;
6456
6457#ifdef CONFIG_BNXT_SRIOV
6458 if (bp->sriov_cfg) {
6459 rc = wait_event_interruptible_timeout(bp->sriov_cfg_wait,
6460 !bp->sriov_cfg,
6461 BNXT_SRIOV_CFG_WAIT_TMO);
6462 if (rc)
6463 netdev_warn(bp->dev, "timeout waiting for SRIOV config operation to complete!\n");
6464 }
Sathya Perlaee5c7fb2017-07-24 12:34:28 -04006465
6466 /* Close the VF-reps before closing PF */
6467 if (BNXT_PF(bp))
6468 bnxt_vf_reps_close(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04006469#endif
6470 /* Change device state to avoid TX queue wake up's */
6471 bnxt_tx_disable(bp);
6472
Michael Chancaefe522015-12-09 19:35:42 -05006473 clear_bit(BNXT_STATE_OPEN, &bp->state);
Michael Chan4cebdce2015-12-09 19:35:43 -05006474 smp_mb__after_atomic();
Michael Chanf9b76eb2017-07-11 13:05:34 -04006475 while (bnxt_drv_busy(bp))
Michael Chan4cebdce2015-12-09 19:35:43 -05006476 msleep(20);
Michael Chanc0c050c2015-10-22 16:01:17 -04006477
Michael Chan9d8bc092016-12-29 12:13:33 -05006478 /* Flush rings and and disable interrupts */
Michael Chanc0c050c2015-10-22 16:01:17 -04006479 bnxt_shutdown_nic(bp, irq_re_init);
6480
6481 /* TODO CHIMP_FW: Link/PHY related cleanup if (link_re_init) */
6482
6483 bnxt_disable_napi(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04006484 del_timer_sync(&bp->timer);
6485 bnxt_free_skbs(bp);
6486
6487 if (irq_re_init) {
6488 bnxt_free_irq(bp);
6489 bnxt_del_napi(bp);
6490 }
6491 bnxt_free_mem(bp, irq_re_init);
6492 return rc;
6493}
6494
6495static int bnxt_close(struct net_device *dev)
6496{
6497 struct bnxt *bp = netdev_priv(dev);
6498
6499 bnxt_close_nic(bp, true, true);
Michael Chan33f7d552016-04-11 04:11:12 -04006500 bnxt_hwrm_shutdown_link(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04006501 return 0;
6502}
6503
6504/* rtnl_lock held */
6505static int bnxt_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
6506{
6507 switch (cmd) {
6508 case SIOCGMIIPHY:
6509 /* fallthru */
6510 case SIOCGMIIREG: {
6511 if (!netif_running(dev))
6512 return -EAGAIN;
6513
6514 return 0;
6515 }
6516
6517 case SIOCSMIIREG:
6518 if (!netif_running(dev))
6519 return -EAGAIN;
6520
6521 return 0;
6522
6523 default:
6524 /* do nothing */
6525 break;
6526 }
6527 return -EOPNOTSUPP;
6528}
6529
stephen hemmingerbc1f4472017-01-06 19:12:52 -08006530static void
Michael Chanc0c050c2015-10-22 16:01:17 -04006531bnxt_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
6532{
6533 u32 i;
6534 struct bnxt *bp = netdev_priv(dev);
6535
Michael Chanf9b76eb2017-07-11 13:05:34 -04006536 set_bit(BNXT_STATE_READ_STATS, &bp->state);
6537 /* Make sure bnxt_close_nic() sees that we are reading stats before
6538 * we check the BNXT_STATE_OPEN flag.
6539 */
6540 smp_mb__after_atomic();
6541 if (!test_bit(BNXT_STATE_OPEN, &bp->state)) {
6542 clear_bit(BNXT_STATE_READ_STATS, &bp->state);
stephen hemmingerbc1f4472017-01-06 19:12:52 -08006543 return;
Michael Chanf9b76eb2017-07-11 13:05:34 -04006544 }
Michael Chanc0c050c2015-10-22 16:01:17 -04006545
6546 /* TODO check if we need to synchronize with bnxt_close path */
6547 for (i = 0; i < bp->cp_nr_rings; i++) {
6548 struct bnxt_napi *bnapi = bp->bnapi[i];
6549 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
6550 struct ctx_hw_stats *hw_stats = cpr->hw_stats;
6551
6552 stats->rx_packets += le64_to_cpu(hw_stats->rx_ucast_pkts);
6553 stats->rx_packets += le64_to_cpu(hw_stats->rx_mcast_pkts);
6554 stats->rx_packets += le64_to_cpu(hw_stats->rx_bcast_pkts);
6555
6556 stats->tx_packets += le64_to_cpu(hw_stats->tx_ucast_pkts);
6557 stats->tx_packets += le64_to_cpu(hw_stats->tx_mcast_pkts);
6558 stats->tx_packets += le64_to_cpu(hw_stats->tx_bcast_pkts);
6559
6560 stats->rx_bytes += le64_to_cpu(hw_stats->rx_ucast_bytes);
6561 stats->rx_bytes += le64_to_cpu(hw_stats->rx_mcast_bytes);
6562 stats->rx_bytes += le64_to_cpu(hw_stats->rx_bcast_bytes);
6563
6564 stats->tx_bytes += le64_to_cpu(hw_stats->tx_ucast_bytes);
6565 stats->tx_bytes += le64_to_cpu(hw_stats->tx_mcast_bytes);
6566 stats->tx_bytes += le64_to_cpu(hw_stats->tx_bcast_bytes);
6567
6568 stats->rx_missed_errors +=
6569 le64_to_cpu(hw_stats->rx_discard_pkts);
6570
6571 stats->multicast += le64_to_cpu(hw_stats->rx_mcast_pkts);
6572
Michael Chanc0c050c2015-10-22 16:01:17 -04006573 stats->tx_dropped += le64_to_cpu(hw_stats->tx_drop_pkts);
6574 }
6575
Michael Chan9947f832016-03-07 15:38:46 -05006576 if (bp->flags & BNXT_FLAG_PORT_STATS) {
6577 struct rx_port_stats *rx = bp->hw_rx_port_stats;
6578 struct tx_port_stats *tx = bp->hw_tx_port_stats;
6579
6580 stats->rx_crc_errors = le64_to_cpu(rx->rx_fcs_err_frames);
6581 stats->rx_frame_errors = le64_to_cpu(rx->rx_align_err_frames);
6582 stats->rx_length_errors = le64_to_cpu(rx->rx_undrsz_frames) +
6583 le64_to_cpu(rx->rx_ovrsz_frames) +
6584 le64_to_cpu(rx->rx_runt_frames);
6585 stats->rx_errors = le64_to_cpu(rx->rx_false_carrier_frames) +
6586 le64_to_cpu(rx->rx_jbr_frames);
6587 stats->collisions = le64_to_cpu(tx->tx_total_collisions);
6588 stats->tx_fifo_errors = le64_to_cpu(tx->tx_fifo_underruns);
6589 stats->tx_errors = le64_to_cpu(tx->tx_err);
6590 }
Michael Chanf9b76eb2017-07-11 13:05:34 -04006591 clear_bit(BNXT_STATE_READ_STATS, &bp->state);
Michael Chanc0c050c2015-10-22 16:01:17 -04006592}
6593
6594static bool bnxt_mc_list_updated(struct bnxt *bp, u32 *rx_mask)
6595{
6596 struct net_device *dev = bp->dev;
6597 struct bnxt_vnic_info *vnic = &bp->vnic_info[0];
6598 struct netdev_hw_addr *ha;
6599 u8 *haddr;
6600 int mc_count = 0;
6601 bool update = false;
6602 int off = 0;
6603
6604 netdev_for_each_mc_addr(ha, dev) {
6605 if (mc_count >= BNXT_MAX_MC_ADDRS) {
6606 *rx_mask |= CFA_L2_SET_RX_MASK_REQ_MASK_ALL_MCAST;
6607 vnic->mc_list_count = 0;
6608 return false;
6609 }
6610 haddr = ha->addr;
6611 if (!ether_addr_equal(haddr, vnic->mc_list + off)) {
6612 memcpy(vnic->mc_list + off, haddr, ETH_ALEN);
6613 update = true;
6614 }
6615 off += ETH_ALEN;
6616 mc_count++;
6617 }
6618 if (mc_count)
6619 *rx_mask |= CFA_L2_SET_RX_MASK_REQ_MASK_MCAST;
6620
6621 if (mc_count != vnic->mc_list_count) {
6622 vnic->mc_list_count = mc_count;
6623 update = true;
6624 }
6625 return update;
6626}
6627
6628static bool bnxt_uc_list_updated(struct bnxt *bp)
6629{
6630 struct net_device *dev = bp->dev;
6631 struct bnxt_vnic_info *vnic = &bp->vnic_info[0];
6632 struct netdev_hw_addr *ha;
6633 int off = 0;
6634
6635 if (netdev_uc_count(dev) != (vnic->uc_filter_count - 1))
6636 return true;
6637
6638 netdev_for_each_uc_addr(ha, dev) {
6639 if (!ether_addr_equal(ha->addr, vnic->uc_list + off))
6640 return true;
6641
6642 off += ETH_ALEN;
6643 }
6644 return false;
6645}
6646
6647static void bnxt_set_rx_mode(struct net_device *dev)
6648{
6649 struct bnxt *bp = netdev_priv(dev);
6650 struct bnxt_vnic_info *vnic = &bp->vnic_info[0];
6651 u32 mask = vnic->rx_mask;
6652 bool mc_update = false;
6653 bool uc_update;
6654
6655 if (!netif_running(dev))
6656 return;
6657
6658 mask &= ~(CFA_L2_SET_RX_MASK_REQ_MASK_PROMISCUOUS |
6659 CFA_L2_SET_RX_MASK_REQ_MASK_MCAST |
6660 CFA_L2_SET_RX_MASK_REQ_MASK_ALL_MCAST);
6661
Michael Chan17c71ac2016-07-01 18:46:27 -04006662 if ((dev->flags & IFF_PROMISC) && bnxt_promisc_ok(bp))
Michael Chanc0c050c2015-10-22 16:01:17 -04006663 mask |= CFA_L2_SET_RX_MASK_REQ_MASK_PROMISCUOUS;
6664
6665 uc_update = bnxt_uc_list_updated(bp);
6666
6667 if (dev->flags & IFF_ALLMULTI) {
6668 mask |= CFA_L2_SET_RX_MASK_REQ_MASK_ALL_MCAST;
6669 vnic->mc_list_count = 0;
6670 } else {
6671 mc_update = bnxt_mc_list_updated(bp, &mask);
6672 }
6673
6674 if (mask != vnic->rx_mask || uc_update || mc_update) {
6675 vnic->rx_mask = mask;
6676
6677 set_bit(BNXT_RX_MASK_SP_EVENT, &bp->sp_event);
Michael Chanc213eae2017-10-13 21:09:29 -04006678 bnxt_queue_sp_work(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04006679 }
6680}
6681
Michael Chanb664f002015-12-02 01:54:08 -05006682static int bnxt_cfg_rx_mode(struct bnxt *bp)
Michael Chanc0c050c2015-10-22 16:01:17 -04006683{
6684 struct net_device *dev = bp->dev;
6685 struct bnxt_vnic_info *vnic = &bp->vnic_info[0];
6686 struct netdev_hw_addr *ha;
6687 int i, off = 0, rc;
6688 bool uc_update;
6689
6690 netif_addr_lock_bh(dev);
6691 uc_update = bnxt_uc_list_updated(bp);
6692 netif_addr_unlock_bh(dev);
6693
6694 if (!uc_update)
6695 goto skip_uc;
6696
6697 mutex_lock(&bp->hwrm_cmd_lock);
6698 for (i = 1; i < vnic->uc_filter_count; i++) {
6699 struct hwrm_cfa_l2_filter_free_input req = {0};
6700
6701 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_CFA_L2_FILTER_FREE, -1,
6702 -1);
6703
6704 req.l2_filter_id = vnic->fw_l2_filter_id[i];
6705
6706 rc = _hwrm_send_message(bp, &req, sizeof(req),
6707 HWRM_CMD_TIMEOUT);
6708 }
6709 mutex_unlock(&bp->hwrm_cmd_lock);
6710
6711 vnic->uc_filter_count = 1;
6712
6713 netif_addr_lock_bh(dev);
6714 if (netdev_uc_count(dev) > (BNXT_MAX_UC_ADDRS - 1)) {
6715 vnic->rx_mask |= CFA_L2_SET_RX_MASK_REQ_MASK_PROMISCUOUS;
6716 } else {
6717 netdev_for_each_uc_addr(ha, dev) {
6718 memcpy(vnic->uc_list + off, ha->addr, ETH_ALEN);
6719 off += ETH_ALEN;
6720 vnic->uc_filter_count++;
6721 }
6722 }
6723 netif_addr_unlock_bh(dev);
6724
6725 for (i = 1, off = 0; i < vnic->uc_filter_count; i++, off += ETH_ALEN) {
6726 rc = bnxt_hwrm_set_vnic_filter(bp, 0, i, vnic->uc_list + off);
6727 if (rc) {
6728 netdev_err(bp->dev, "HWRM vnic filter failure rc: %x\n",
6729 rc);
6730 vnic->uc_filter_count = i;
Michael Chanb664f002015-12-02 01:54:08 -05006731 return rc;
Michael Chanc0c050c2015-10-22 16:01:17 -04006732 }
6733 }
6734
6735skip_uc:
6736 rc = bnxt_hwrm_cfa_l2_set_rx_mask(bp, 0);
6737 if (rc)
6738 netdev_err(bp->dev, "HWRM cfa l2 rx mask failure rc: %x\n",
6739 rc);
Michael Chanb664f002015-12-02 01:54:08 -05006740
6741 return rc;
Michael Chanc0c050c2015-10-22 16:01:17 -04006742}
6743
Michael Chan8079e8f2016-12-29 12:13:37 -05006744/* If the chip and firmware supports RFS */
6745static bool bnxt_rfs_supported(struct bnxt *bp)
6746{
6747 if (BNXT_PF(bp) && !BNXT_CHIP_TYPE_NITRO_A0(bp))
6748 return true;
Michael Chanae10ae72016-12-29 12:13:38 -05006749 if (bp->flags & BNXT_FLAG_NEW_RSS_CAP)
6750 return true;
Michael Chan8079e8f2016-12-29 12:13:37 -05006751 return false;
6752}
6753
6754/* If runtime conditions support RFS */
Michael Chan2bcfa6f2015-12-27 18:19:24 -05006755static bool bnxt_rfs_capable(struct bnxt *bp)
6756{
6757#ifdef CONFIG_RFS_ACCEL
Michael Chan8079e8f2016-12-29 12:13:37 -05006758 int vnics, max_vnics, max_rss_ctxs;
Michael Chan2bcfa6f2015-12-27 18:19:24 -05006759
Michael Chan964fd482017-02-12 19:18:13 -05006760 if (!(bp->flags & BNXT_FLAG_MSIX_CAP))
Michael Chan2bcfa6f2015-12-27 18:19:24 -05006761 return false;
6762
6763 vnics = 1 + bp->rx_nr_rings;
Michael Chan8079e8f2016-12-29 12:13:37 -05006764 max_vnics = bnxt_get_max_func_vnics(bp);
6765 max_rss_ctxs = bnxt_get_max_func_rss_ctxs(bp);
Michael Chanae10ae72016-12-29 12:13:38 -05006766
6767 /* RSS contexts not a limiting factor */
6768 if (bp->flags & BNXT_FLAG_NEW_RSS_CAP)
6769 max_rss_ctxs = max_vnics;
Michael Chan8079e8f2016-12-29 12:13:37 -05006770 if (vnics > max_vnics || vnics > max_rss_ctxs) {
Vasundhara Volama2304902016-07-25 12:33:36 -04006771 netdev_warn(bp->dev,
6772 "Not enough resources to support NTUPLE filters, enough resources for up to %d rx rings\n",
Michael Chan8079e8f2016-12-29 12:13:37 -05006773 min(max_rss_ctxs - 1, max_vnics - 1));
Michael Chan2bcfa6f2015-12-27 18:19:24 -05006774 return false;
Vasundhara Volama2304902016-07-25 12:33:36 -04006775 }
Michael Chan2bcfa6f2015-12-27 18:19:24 -05006776
6777 return true;
6778#else
6779 return false;
6780#endif
6781}
6782
Michael Chanc0c050c2015-10-22 16:01:17 -04006783static netdev_features_t bnxt_fix_features(struct net_device *dev,
6784 netdev_features_t features)
6785{
Michael Chan2bcfa6f2015-12-27 18:19:24 -05006786 struct bnxt *bp = netdev_priv(dev);
6787
Vasundhara Volama2304902016-07-25 12:33:36 -04006788 if ((features & NETIF_F_NTUPLE) && !bnxt_rfs_capable(bp))
Michael Chan2bcfa6f2015-12-27 18:19:24 -05006789 features &= ~NETIF_F_NTUPLE;
Michael Chan5a9f6b22016-06-06 02:37:15 -04006790
6791 /* Both CTAG and STAG VLAN accelaration on the RX side have to be
6792 * turned on or off together.
6793 */
6794 if ((features & (NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_STAG_RX)) !=
6795 (NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_STAG_RX)) {
6796 if (dev->features & NETIF_F_HW_VLAN_CTAG_RX)
6797 features &= ~(NETIF_F_HW_VLAN_CTAG_RX |
6798 NETIF_F_HW_VLAN_STAG_RX);
6799 else
6800 features |= NETIF_F_HW_VLAN_CTAG_RX |
6801 NETIF_F_HW_VLAN_STAG_RX;
6802 }
Michael Chancf6645f2016-06-13 02:25:28 -04006803#ifdef CONFIG_BNXT_SRIOV
6804 if (BNXT_VF(bp)) {
6805 if (bp->vf.vlan) {
6806 features &= ~(NETIF_F_HW_VLAN_CTAG_RX |
6807 NETIF_F_HW_VLAN_STAG_RX);
6808 }
6809 }
6810#endif
Michael Chanc0c050c2015-10-22 16:01:17 -04006811 return features;
6812}
6813
6814static int bnxt_set_features(struct net_device *dev, netdev_features_t features)
6815{
6816 struct bnxt *bp = netdev_priv(dev);
6817 u32 flags = bp->flags;
6818 u32 changes;
6819 int rc = 0;
6820 bool re_init = false;
6821 bool update_tpa = false;
6822
6823 flags &= ~BNXT_FLAG_ALL_CONFIG_FEATS;
Prashant Sreedharan3e8060f2016-07-18 07:15:20 -04006824 if ((features & NETIF_F_GRO) && !BNXT_CHIP_TYPE_NITRO_A0(bp))
Michael Chanc0c050c2015-10-22 16:01:17 -04006825 flags |= BNXT_FLAG_GRO;
6826 if (features & NETIF_F_LRO)
6827 flags |= BNXT_FLAG_LRO;
6828
Michael Chanbdbd1eb2016-12-29 12:13:43 -05006829 if (bp->flags & BNXT_FLAG_NO_AGG_RINGS)
6830 flags &= ~BNXT_FLAG_TPA;
6831
Michael Chanc0c050c2015-10-22 16:01:17 -04006832 if (features & NETIF_F_HW_VLAN_CTAG_RX)
6833 flags |= BNXT_FLAG_STRIP_VLAN;
6834
6835 if (features & NETIF_F_NTUPLE)
6836 flags |= BNXT_FLAG_RFS;
6837
6838 changes = flags ^ bp->flags;
6839 if (changes & BNXT_FLAG_TPA) {
6840 update_tpa = true;
6841 if ((bp->flags & BNXT_FLAG_TPA) == 0 ||
6842 (flags & BNXT_FLAG_TPA) == 0)
6843 re_init = true;
6844 }
6845
6846 if (changes & ~BNXT_FLAG_TPA)
6847 re_init = true;
6848
6849 if (flags != bp->flags) {
6850 u32 old_flags = bp->flags;
6851
6852 bp->flags = flags;
6853
Michael Chan2bcfa6f2015-12-27 18:19:24 -05006854 if (!test_bit(BNXT_STATE_OPEN, &bp->state)) {
Michael Chanc0c050c2015-10-22 16:01:17 -04006855 if (update_tpa)
6856 bnxt_set_ring_params(bp);
6857 return rc;
6858 }
6859
6860 if (re_init) {
6861 bnxt_close_nic(bp, false, false);
6862 if (update_tpa)
6863 bnxt_set_ring_params(bp);
6864
6865 return bnxt_open_nic(bp, false, false);
6866 }
6867 if (update_tpa) {
6868 rc = bnxt_set_tpa(bp,
6869 (flags & BNXT_FLAG_TPA) ?
6870 true : false);
6871 if (rc)
6872 bp->flags = old_flags;
6873 }
6874 }
6875 return rc;
6876}
6877
Michael Chan9f554592016-01-02 23:44:58 -05006878static void bnxt_dump_tx_sw_state(struct bnxt_napi *bnapi)
6879{
Michael Chanb6ab4b02016-01-02 23:44:59 -05006880 struct bnxt_tx_ring_info *txr = bnapi->tx_ring;
Michael Chan9f554592016-01-02 23:44:58 -05006881 int i = bnapi->index;
6882
Michael Chan3b2b7d92016-01-02 23:45:00 -05006883 if (!txr)
6884 return;
6885
Michael Chan9f554592016-01-02 23:44:58 -05006886 netdev_info(bnapi->bp->dev, "[%d]: tx{fw_ring: %d prod: %x cons: %x}\n",
6887 i, txr->tx_ring_struct.fw_ring_id, txr->tx_prod,
6888 txr->tx_cons);
6889}
6890
6891static void bnxt_dump_rx_sw_state(struct bnxt_napi *bnapi)
6892{
Michael Chanb6ab4b02016-01-02 23:44:59 -05006893 struct bnxt_rx_ring_info *rxr = bnapi->rx_ring;
Michael Chan9f554592016-01-02 23:44:58 -05006894 int i = bnapi->index;
6895
Michael Chan3b2b7d92016-01-02 23:45:00 -05006896 if (!rxr)
6897 return;
6898
Michael Chan9f554592016-01-02 23:44:58 -05006899 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",
6900 i, rxr->rx_ring_struct.fw_ring_id, rxr->rx_prod,
6901 rxr->rx_agg_ring_struct.fw_ring_id, rxr->rx_agg_prod,
6902 rxr->rx_sw_agg_prod);
6903}
6904
6905static void bnxt_dump_cp_sw_state(struct bnxt_napi *bnapi)
6906{
6907 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
6908 int i = bnapi->index;
6909
6910 netdev_info(bnapi->bp->dev, "[%d]: cp{fw_ring: %d raw_cons: %x}\n",
6911 i, cpr->cp_ring_struct.fw_ring_id, cpr->cp_raw_cons);
6912}
6913
Michael Chanc0c050c2015-10-22 16:01:17 -04006914static void bnxt_dbg_dump_states(struct bnxt *bp)
6915{
6916 int i;
6917 struct bnxt_napi *bnapi;
Michael Chanc0c050c2015-10-22 16:01:17 -04006918
6919 for (i = 0; i < bp->cp_nr_rings; i++) {
6920 bnapi = bp->bnapi[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04006921 if (netif_msg_drv(bp)) {
Michael Chan9f554592016-01-02 23:44:58 -05006922 bnxt_dump_tx_sw_state(bnapi);
6923 bnxt_dump_rx_sw_state(bnapi);
6924 bnxt_dump_cp_sw_state(bnapi);
Michael Chanc0c050c2015-10-22 16:01:17 -04006925 }
6926 }
6927}
6928
Michael Chan6988bd92016-06-13 02:25:29 -04006929static void bnxt_reset_task(struct bnxt *bp, bool silent)
Michael Chanc0c050c2015-10-22 16:01:17 -04006930{
Michael Chan6988bd92016-06-13 02:25:29 -04006931 if (!silent)
6932 bnxt_dbg_dump_states(bp);
Michael Chan028de142015-12-09 19:35:44 -05006933 if (netif_running(bp->dev)) {
Michael Chanb386cd32017-03-08 18:44:33 -05006934 int rc;
6935
6936 if (!silent)
6937 bnxt_ulp_stop(bp);
Michael Chan028de142015-12-09 19:35:44 -05006938 bnxt_close_nic(bp, false, false);
Michael Chanb386cd32017-03-08 18:44:33 -05006939 rc = bnxt_open_nic(bp, false, false);
6940 if (!silent && !rc)
6941 bnxt_ulp_start(bp);
Michael Chan028de142015-12-09 19:35:44 -05006942 }
Michael Chanc0c050c2015-10-22 16:01:17 -04006943}
6944
6945static void bnxt_tx_timeout(struct net_device *dev)
6946{
6947 struct bnxt *bp = netdev_priv(dev);
6948
6949 netdev_err(bp->dev, "TX timeout detected, starting reset task!\n");
6950 set_bit(BNXT_RESET_TASK_SP_EVENT, &bp->sp_event);
Michael Chanc213eae2017-10-13 21:09:29 -04006951 bnxt_queue_sp_work(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04006952}
6953
6954#ifdef CONFIG_NET_POLL_CONTROLLER
6955static void bnxt_poll_controller(struct net_device *dev)
6956{
6957 struct bnxt *bp = netdev_priv(dev);
6958 int i;
6959
Michael Chan2270bc52017-06-23 14:01:01 -04006960 /* Only process tx rings/combined rings in netpoll mode. */
6961 for (i = 0; i < bp->tx_nr_rings; i++) {
6962 struct bnxt_tx_ring_info *txr = &bp->tx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04006963
Michael Chan2270bc52017-06-23 14:01:01 -04006964 napi_schedule(&txr->bnapi->napi);
Michael Chanc0c050c2015-10-22 16:01:17 -04006965 }
6966}
6967#endif
6968
Kees Cooke99e88a2017-10-16 14:43:17 -07006969static void bnxt_timer(struct timer_list *t)
Michael Chanc0c050c2015-10-22 16:01:17 -04006970{
Kees Cooke99e88a2017-10-16 14:43:17 -07006971 struct bnxt *bp = from_timer(bp, t, timer);
Michael Chanc0c050c2015-10-22 16:01:17 -04006972 struct net_device *dev = bp->dev;
6973
6974 if (!netif_running(dev))
6975 return;
6976
6977 if (atomic_read(&bp->intr_sem) != 0)
6978 goto bnxt_restart_timer;
6979
Michael Chanadcc3312017-07-24 12:34:24 -04006980 if (bp->link_info.link_up && (bp->flags & BNXT_FLAG_PORT_STATS) &&
6981 bp->stats_coal_ticks) {
Michael Chan3bdf56c2016-03-07 15:38:45 -05006982 set_bit(BNXT_PERIODIC_STATS_SP_EVENT, &bp->sp_event);
Michael Chanc213eae2017-10-13 21:09:29 -04006983 bnxt_queue_sp_work(bp);
Michael Chan3bdf56c2016-03-07 15:38:45 -05006984 }
Sathya Perla5a84acb2017-10-26 11:51:31 -04006985
6986 if (bnxt_tc_flower_enabled(bp)) {
6987 set_bit(BNXT_FLOW_STATS_SP_EVENT, &bp->sp_event);
6988 bnxt_queue_sp_work(bp);
6989 }
Michael Chanc0c050c2015-10-22 16:01:17 -04006990bnxt_restart_timer:
6991 mod_timer(&bp->timer, jiffies + bp->current_interval);
6992}
6993
Michael Chana551ee92017-01-25 02:55:07 -05006994static void bnxt_rtnl_lock_sp(struct bnxt *bp)
Michael Chan6988bd92016-06-13 02:25:29 -04006995{
Michael Chana551ee92017-01-25 02:55:07 -05006996 /* We are called from bnxt_sp_task which has BNXT_STATE_IN_SP_TASK
6997 * set. If the device is being closed, bnxt_close() may be holding
Michael Chan6988bd92016-06-13 02:25:29 -04006998 * rtnl() and waiting for BNXT_STATE_IN_SP_TASK to clear. So we
6999 * must clear BNXT_STATE_IN_SP_TASK before holding rtnl().
7000 */
7001 clear_bit(BNXT_STATE_IN_SP_TASK, &bp->state);
7002 rtnl_lock();
Michael Chana551ee92017-01-25 02:55:07 -05007003}
7004
7005static void bnxt_rtnl_unlock_sp(struct bnxt *bp)
7006{
Michael Chan6988bd92016-06-13 02:25:29 -04007007 set_bit(BNXT_STATE_IN_SP_TASK, &bp->state);
7008 rtnl_unlock();
7009}
7010
Michael Chana551ee92017-01-25 02:55:07 -05007011/* Only called from bnxt_sp_task() */
7012static void bnxt_reset(struct bnxt *bp, bool silent)
7013{
7014 bnxt_rtnl_lock_sp(bp);
7015 if (test_bit(BNXT_STATE_OPEN, &bp->state))
7016 bnxt_reset_task(bp, silent);
7017 bnxt_rtnl_unlock_sp(bp);
7018}
7019
Michael Chanc0c050c2015-10-22 16:01:17 -04007020static void bnxt_cfg_ntp_filters(struct bnxt *);
7021
7022static void bnxt_sp_task(struct work_struct *work)
7023{
7024 struct bnxt *bp = container_of(work, struct bnxt, sp_task);
Michael Chanc0c050c2015-10-22 16:01:17 -04007025
Michael Chan4cebdce2015-12-09 19:35:43 -05007026 set_bit(BNXT_STATE_IN_SP_TASK, &bp->state);
7027 smp_mb__after_atomic();
7028 if (!test_bit(BNXT_STATE_OPEN, &bp->state)) {
7029 clear_bit(BNXT_STATE_IN_SP_TASK, &bp->state);
Michael Chanc0c050c2015-10-22 16:01:17 -04007030 return;
Michael Chan4cebdce2015-12-09 19:35:43 -05007031 }
Michael Chanc0c050c2015-10-22 16:01:17 -04007032
7033 if (test_and_clear_bit(BNXT_RX_MASK_SP_EVENT, &bp->sp_event))
7034 bnxt_cfg_rx_mode(bp);
7035
7036 if (test_and_clear_bit(BNXT_RX_NTP_FLTR_SP_EVENT, &bp->sp_event))
7037 bnxt_cfg_ntp_filters(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04007038 if (test_and_clear_bit(BNXT_HWRM_EXEC_FWD_REQ_SP_EVENT, &bp->sp_event))
7039 bnxt_hwrm_exec_fwd_req(bp);
7040 if (test_and_clear_bit(BNXT_VXLAN_ADD_PORT_SP_EVENT, &bp->sp_event)) {
7041 bnxt_hwrm_tunnel_dst_port_alloc(
7042 bp, bp->vxlan_port,
7043 TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_VXLAN);
7044 }
7045 if (test_and_clear_bit(BNXT_VXLAN_DEL_PORT_SP_EVENT, &bp->sp_event)) {
7046 bnxt_hwrm_tunnel_dst_port_free(
7047 bp, TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_VXLAN);
7048 }
Alexander Duyck7cdd5fc2016-06-16 12:21:36 -07007049 if (test_and_clear_bit(BNXT_GENEVE_ADD_PORT_SP_EVENT, &bp->sp_event)) {
7050 bnxt_hwrm_tunnel_dst_port_alloc(
7051 bp, bp->nge_port,
7052 TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_GENEVE);
7053 }
7054 if (test_and_clear_bit(BNXT_GENEVE_DEL_PORT_SP_EVENT, &bp->sp_event)) {
7055 bnxt_hwrm_tunnel_dst_port_free(
7056 bp, TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_GENEVE);
7057 }
Michael Chan3bdf56c2016-03-07 15:38:45 -05007058 if (test_and_clear_bit(BNXT_PERIODIC_STATS_SP_EVENT, &bp->sp_event))
7059 bnxt_hwrm_port_qstats(bp);
7060
Michael Chan0eaa24b2017-01-25 02:55:08 -05007061 if (test_and_clear_bit(BNXT_LINK_CHNG_SP_EVENT, &bp->sp_event)) {
Michael Chane2dc9b62017-10-13 21:09:30 -04007062 int rc;
Michael Chan0eaa24b2017-01-25 02:55:08 -05007063
Michael Chane2dc9b62017-10-13 21:09:30 -04007064 mutex_lock(&bp->link_lock);
Michael Chan0eaa24b2017-01-25 02:55:08 -05007065 if (test_and_clear_bit(BNXT_LINK_SPEED_CHNG_SP_EVENT,
7066 &bp->sp_event))
7067 bnxt_hwrm_phy_qcaps(bp);
7068
Michael Chane2dc9b62017-10-13 21:09:30 -04007069 rc = bnxt_update_link(bp, true);
7070 mutex_unlock(&bp->link_lock);
Michael Chan0eaa24b2017-01-25 02:55:08 -05007071 if (rc)
7072 netdev_err(bp->dev, "SP task can't update link (rc: %x)\n",
7073 rc);
7074 }
Michael Chan90c694b2017-01-25 02:55:09 -05007075 if (test_and_clear_bit(BNXT_HWRM_PORT_MODULE_SP_EVENT, &bp->sp_event)) {
Michael Chane2dc9b62017-10-13 21:09:30 -04007076 mutex_lock(&bp->link_lock);
7077 bnxt_get_port_module_status(bp);
7078 mutex_unlock(&bp->link_lock);
Michael Chan90c694b2017-01-25 02:55:09 -05007079 }
Sathya Perla5a84acb2017-10-26 11:51:31 -04007080
7081 if (test_and_clear_bit(BNXT_FLOW_STATS_SP_EVENT, &bp->sp_event))
7082 bnxt_tc_flow_stats_work(bp);
7083
Michael Chane2dc9b62017-10-13 21:09:30 -04007084 /* These functions below will clear BNXT_STATE_IN_SP_TASK. They
7085 * must be the last functions to be called before exiting.
7086 */
Michael Chanc0c050c2015-10-22 16:01:17 -04007087 if (test_and_clear_bit(BNXT_RESET_TASK_SP_EVENT, &bp->sp_event))
7088 bnxt_reset(bp, false);
7089
7090 if (test_and_clear_bit(BNXT_RESET_TASK_SILENT_SP_EVENT, &bp->sp_event))
7091 bnxt_reset(bp, true);
7092
Michael Chanc0c050c2015-10-22 16:01:17 -04007093 smp_mb__before_atomic();
7094 clear_bit(BNXT_STATE_IN_SP_TASK, &bp->state);
7095}
7096
Michael Chand1e79252017-02-06 16:55:38 -05007097/* Under rtnl_lock */
Michael Chan98fdbe72017-08-28 13:40:26 -04007098int bnxt_check_rings(struct bnxt *bp, int tx, int rx, bool sh, int tcs,
7099 int tx_xdp)
Michael Chand1e79252017-02-06 16:55:38 -05007100{
7101 int max_rx, max_tx, tx_sets = 1;
7102 int tx_rings_needed;
Michael Chand1e79252017-02-06 16:55:38 -05007103 int rc;
7104
Michael Chand1e79252017-02-06 16:55:38 -05007105 if (tcs)
7106 tx_sets = tcs;
7107
7108 rc = bnxt_get_max_rings(bp, &max_rx, &max_tx, sh);
7109 if (rc)
7110 return rc;
7111
7112 if (max_rx < rx)
7113 return -ENOMEM;
7114
Michael Chan5f449242017-02-06 16:55:40 -05007115 tx_rings_needed = tx * tx_sets + tx_xdp;
Michael Chand1e79252017-02-06 16:55:38 -05007116 if (max_tx < tx_rings_needed)
7117 return -ENOMEM;
7118
Michael Chan98fdbe72017-08-28 13:40:26 -04007119 return bnxt_hwrm_check_tx_rings(bp, tx_rings_needed);
Michael Chand1e79252017-02-06 16:55:38 -05007120}
7121
Sathya Perla17086392017-02-20 19:25:18 -05007122static void bnxt_unmap_bars(struct bnxt *bp, struct pci_dev *pdev)
7123{
7124 if (bp->bar2) {
7125 pci_iounmap(pdev, bp->bar2);
7126 bp->bar2 = NULL;
7127 }
7128
7129 if (bp->bar1) {
7130 pci_iounmap(pdev, bp->bar1);
7131 bp->bar1 = NULL;
7132 }
7133
7134 if (bp->bar0) {
7135 pci_iounmap(pdev, bp->bar0);
7136 bp->bar0 = NULL;
7137 }
7138}
7139
7140static void bnxt_cleanup_pci(struct bnxt *bp)
7141{
7142 bnxt_unmap_bars(bp, bp->pdev);
7143 pci_release_regions(bp->pdev);
7144 pci_disable_device(bp->pdev);
7145}
7146
Michael Chan18775aa2017-10-26 11:51:27 -04007147static void bnxt_init_dflt_coal(struct bnxt *bp)
7148{
7149 struct bnxt_coal *coal;
7150
7151 /* Tick values in micro seconds.
7152 * 1 coal_buf x bufs_per_record = 1 completion record.
7153 */
7154 coal = &bp->rx_coal;
7155 coal->coal_ticks = 14;
7156 coal->coal_bufs = 30;
7157 coal->coal_ticks_irq = 1;
7158 coal->coal_bufs_irq = 2;
7159 coal->idle_thresh = 25;
7160 coal->bufs_per_record = 2;
7161 coal->budget = 64; /* NAPI budget */
7162
7163 coal = &bp->tx_coal;
7164 coal->coal_ticks = 28;
7165 coal->coal_bufs = 30;
7166 coal->coal_ticks_irq = 2;
7167 coal->coal_bufs_irq = 2;
7168 coal->bufs_per_record = 1;
7169
7170 bp->stats_coal_ticks = BNXT_DEF_STATS_COAL_TICKS;
7171}
7172
Michael Chanc0c050c2015-10-22 16:01:17 -04007173static int bnxt_init_board(struct pci_dev *pdev, struct net_device *dev)
7174{
7175 int rc;
7176 struct bnxt *bp = netdev_priv(dev);
7177
7178 SET_NETDEV_DEV(dev, &pdev->dev);
7179
7180 /* enable device (incl. PCI PM wakeup), and bus-mastering */
7181 rc = pci_enable_device(pdev);
7182 if (rc) {
7183 dev_err(&pdev->dev, "Cannot enable PCI device, aborting\n");
7184 goto init_err;
7185 }
7186
7187 if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
7188 dev_err(&pdev->dev,
7189 "Cannot find PCI device base address, aborting\n");
7190 rc = -ENODEV;
7191 goto init_err_disable;
7192 }
7193
7194 rc = pci_request_regions(pdev, DRV_MODULE_NAME);
7195 if (rc) {
7196 dev_err(&pdev->dev, "Cannot obtain PCI resources, aborting\n");
7197 goto init_err_disable;
7198 }
7199
7200 if (dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64)) != 0 &&
7201 dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32)) != 0) {
7202 dev_err(&pdev->dev, "System does not support DMA, aborting\n");
7203 goto init_err_disable;
7204 }
7205
7206 pci_set_master(pdev);
7207
7208 bp->dev = dev;
7209 bp->pdev = pdev;
7210
7211 bp->bar0 = pci_ioremap_bar(pdev, 0);
7212 if (!bp->bar0) {
7213 dev_err(&pdev->dev, "Cannot map device registers, aborting\n");
7214 rc = -ENOMEM;
7215 goto init_err_release;
7216 }
7217
7218 bp->bar1 = pci_ioremap_bar(pdev, 2);
7219 if (!bp->bar1) {
7220 dev_err(&pdev->dev, "Cannot map doorbell registers, aborting\n");
7221 rc = -ENOMEM;
7222 goto init_err_release;
7223 }
7224
7225 bp->bar2 = pci_ioremap_bar(pdev, 4);
7226 if (!bp->bar2) {
7227 dev_err(&pdev->dev, "Cannot map bar4 registers, aborting\n");
7228 rc = -ENOMEM;
7229 goto init_err_release;
7230 }
7231
Satish Baddipadige6316ea62016-03-07 15:38:48 -05007232 pci_enable_pcie_error_reporting(pdev);
7233
Michael Chanc0c050c2015-10-22 16:01:17 -04007234 INIT_WORK(&bp->sp_task, bnxt_sp_task);
7235
7236 spin_lock_init(&bp->ntp_fltr_lock);
7237
7238 bp->rx_ring_size = BNXT_DEFAULT_RX_RING_SIZE;
7239 bp->tx_ring_size = BNXT_DEFAULT_TX_RING_SIZE;
7240
Michael Chan18775aa2017-10-26 11:51:27 -04007241 bnxt_init_dflt_coal(bp);
Michael Chan51f30782016-07-01 18:46:29 -04007242
Kees Cooke99e88a2017-10-16 14:43:17 -07007243 timer_setup(&bp->timer, bnxt_timer, 0);
Michael Chanc0c050c2015-10-22 16:01:17 -04007244 bp->current_interval = BNXT_TIMER_INTERVAL;
7245
Michael Chancaefe522015-12-09 19:35:42 -05007246 clear_bit(BNXT_STATE_OPEN, &bp->state);
Michael Chanc0c050c2015-10-22 16:01:17 -04007247 return 0;
7248
7249init_err_release:
Sathya Perla17086392017-02-20 19:25:18 -05007250 bnxt_unmap_bars(bp, pdev);
Michael Chanc0c050c2015-10-22 16:01:17 -04007251 pci_release_regions(pdev);
7252
7253init_err_disable:
7254 pci_disable_device(pdev);
7255
7256init_err:
7257 return rc;
7258}
7259
7260/* rtnl_lock held */
7261static int bnxt_change_mac_addr(struct net_device *dev, void *p)
7262{
7263 struct sockaddr *addr = p;
Jeffrey Huang1fc2cfd2015-12-02 01:54:06 -05007264 struct bnxt *bp = netdev_priv(dev);
7265 int rc = 0;
Michael Chanc0c050c2015-10-22 16:01:17 -04007266
7267 if (!is_valid_ether_addr(addr->sa_data))
7268 return -EADDRNOTAVAIL;
7269
Michael Chanc1a7bdf2017-10-26 11:51:24 -04007270 if (ether_addr_equal(addr->sa_data, dev->dev_addr))
7271 return 0;
7272
Michael Chan84c33dd2016-04-11 04:11:13 -04007273 rc = bnxt_approve_mac(bp, addr->sa_data);
7274 if (rc)
7275 return rc;
Michael Chanc0c050c2015-10-22 16:01:17 -04007276
Jeffrey Huang1fc2cfd2015-12-02 01:54:06 -05007277 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
7278 if (netif_running(dev)) {
7279 bnxt_close_nic(bp, false, false);
7280 rc = bnxt_open_nic(bp, false, false);
7281 }
7282
7283 return rc;
Michael Chanc0c050c2015-10-22 16:01:17 -04007284}
7285
7286/* rtnl_lock held */
7287static int bnxt_change_mtu(struct net_device *dev, int new_mtu)
7288{
7289 struct bnxt *bp = netdev_priv(dev);
7290
Michael Chanc0c050c2015-10-22 16:01:17 -04007291 if (netif_running(dev))
7292 bnxt_close_nic(bp, false, false);
7293
7294 dev->mtu = new_mtu;
7295 bnxt_set_ring_params(bp);
7296
7297 if (netif_running(dev))
7298 return bnxt_open_nic(bp, false, false);
7299
7300 return 0;
7301}
7302
Michael Chanc5e3deb2016-12-02 21:17:15 -05007303int bnxt_setup_mq_tc(struct net_device *dev, u8 tc)
Michael Chanc0c050c2015-10-22 16:01:17 -04007304{
7305 struct bnxt *bp = netdev_priv(dev);
Michael Chan3ffb6a32016-11-11 00:11:42 -05007306 bool sh = false;
Michael Chand1e79252017-02-06 16:55:38 -05007307 int rc;
John Fastabend16e5cc62016-02-16 21:16:43 -08007308
Michael Chanc0c050c2015-10-22 16:01:17 -04007309 if (tc > bp->max_tc) {
Michael Chanb451c8b2017-02-12 19:18:17 -05007310 netdev_err(dev, "Too many traffic classes requested: %d. Max supported is %d.\n",
Michael Chanc0c050c2015-10-22 16:01:17 -04007311 tc, bp->max_tc);
7312 return -EINVAL;
7313 }
7314
7315 if (netdev_get_num_tc(dev) == tc)
7316 return 0;
7317
Michael Chan3ffb6a32016-11-11 00:11:42 -05007318 if (bp->flags & BNXT_FLAG_SHARED_RINGS)
7319 sh = true;
7320
Michael Chan98fdbe72017-08-28 13:40:26 -04007321 rc = bnxt_check_rings(bp, bp->tx_nr_rings_per_tc, bp->rx_nr_rings,
7322 sh, tc, bp->tx_nr_rings_xdp);
Michael Chand1e79252017-02-06 16:55:38 -05007323 if (rc)
7324 return rc;
Michael Chanc0c050c2015-10-22 16:01:17 -04007325
7326 /* Needs to close the device and do hw resource re-allocations */
7327 if (netif_running(bp->dev))
7328 bnxt_close_nic(bp, true, false);
7329
7330 if (tc) {
7331 bp->tx_nr_rings = bp->tx_nr_rings_per_tc * tc;
7332 netdev_set_num_tc(dev, tc);
7333 } else {
7334 bp->tx_nr_rings = bp->tx_nr_rings_per_tc;
7335 netdev_reset_tc(dev);
7336 }
Michael Chan87e9b372017-08-23 19:34:03 -04007337 bp->tx_nr_rings += bp->tx_nr_rings_xdp;
Michael Chan3ffb6a32016-11-11 00:11:42 -05007338 bp->cp_nr_rings = sh ? max_t(int, bp->tx_nr_rings, bp->rx_nr_rings) :
7339 bp->tx_nr_rings + bp->rx_nr_rings;
Michael Chanc0c050c2015-10-22 16:01:17 -04007340 bp->num_stat_ctxs = bp->cp_nr_rings;
7341
7342 if (netif_running(bp->dev))
7343 return bnxt_open_nic(bp, true, false);
7344
7345 return 0;
7346}
7347
Jiri Pirko9e0fd152017-10-19 15:50:39 +02007348static int bnxt_setup_tc_block_cb(enum tc_setup_type type, void *type_data,
7349 void *cb_priv)
Sathya Perla2ae74082017-08-28 13:40:33 -04007350{
Jiri Pirko9e0fd152017-10-19 15:50:39 +02007351 struct bnxt *bp = cb_priv;
Sathya Perla2ae74082017-08-28 13:40:33 -04007352
Jiri Pirko44ae12a2017-11-01 11:47:39 +01007353 if (!bnxt_tc_flower_enabled(bp) || !tc_can_offload(bp->dev))
Sathya Perla2ae74082017-08-28 13:40:33 -04007354 return -EOPNOTSUPP;
7355
Jiri Pirko9e0fd152017-10-19 15:50:39 +02007356 switch (type) {
7357 case TC_SETUP_CLSFLOWER:
7358 return bnxt_tc_setup_flower(bp, bp->pf.fw_fid, type_data);
7359 default:
7360 return -EOPNOTSUPP;
7361 }
7362}
7363
7364static int bnxt_setup_tc_block(struct net_device *dev,
7365 struct tc_block_offload *f)
7366{
7367 struct bnxt *bp = netdev_priv(dev);
7368
7369 if (f->binder_type != TCF_BLOCK_BINDER_TYPE_CLSACT_INGRESS)
7370 return -EOPNOTSUPP;
7371
7372 switch (f->command) {
7373 case TC_BLOCK_BIND:
7374 return tcf_block_cb_register(f->block, bnxt_setup_tc_block_cb,
7375 bp, bp);
7376 case TC_BLOCK_UNBIND:
7377 tcf_block_cb_unregister(f->block, bnxt_setup_tc_block_cb, bp);
7378 return 0;
7379 default:
7380 return -EOPNOTSUPP;
7381 }
Sathya Perla2ae74082017-08-28 13:40:33 -04007382}
7383
Jiri Pirko2572ac52017-08-07 10:15:17 +02007384static int bnxt_setup_tc(struct net_device *dev, enum tc_setup_type type,
Jiri Pirkode4784c2017-08-07 10:15:32 +02007385 void *type_data)
Michael Chanc5e3deb2016-12-02 21:17:15 -05007386{
Sathya Perla2ae74082017-08-28 13:40:33 -04007387 switch (type) {
Jiri Pirko9e0fd152017-10-19 15:50:39 +02007388 case TC_SETUP_BLOCK:
7389 return bnxt_setup_tc_block(dev, type_data);
Nogah Frankel575ed7d2017-11-06 07:23:42 +01007390 case TC_SETUP_QDISC_MQPRIO: {
Sathya Perla2ae74082017-08-28 13:40:33 -04007391 struct tc_mqprio_qopt *mqprio = type_data;
Jiri Pirkode4784c2017-08-07 10:15:32 +02007392
Sathya Perla2ae74082017-08-28 13:40:33 -04007393 mqprio->hw = TC_MQPRIO_HW_OFFLOAD_TCS;
7394
7395 return bnxt_setup_mq_tc(dev, mqprio->num_tc);
7396 }
7397 default:
Jiri Pirko38cf0422017-08-07 10:15:31 +02007398 return -EOPNOTSUPP;
Sathya Perla2ae74082017-08-28 13:40:33 -04007399 }
Michael Chanc5e3deb2016-12-02 21:17:15 -05007400}
7401
Michael Chanc0c050c2015-10-22 16:01:17 -04007402#ifdef CONFIG_RFS_ACCEL
7403static bool bnxt_fltr_match(struct bnxt_ntuple_filter *f1,
7404 struct bnxt_ntuple_filter *f2)
7405{
7406 struct flow_keys *keys1 = &f1->fkeys;
7407 struct flow_keys *keys2 = &f2->fkeys;
7408
7409 if (keys1->addrs.v4addrs.src == keys2->addrs.v4addrs.src &&
7410 keys1->addrs.v4addrs.dst == keys2->addrs.v4addrs.dst &&
7411 keys1->ports.ports == keys2->ports.ports &&
7412 keys1->basic.ip_proto == keys2->basic.ip_proto &&
7413 keys1->basic.n_proto == keys2->basic.n_proto &&
Michael Chan61aad722017-02-12 19:18:14 -05007414 keys1->control.flags == keys2->control.flags &&
Michael Chana54c4d72016-07-25 12:33:35 -04007415 ether_addr_equal(f1->src_mac_addr, f2->src_mac_addr) &&
7416 ether_addr_equal(f1->dst_mac_addr, f2->dst_mac_addr))
Michael Chanc0c050c2015-10-22 16:01:17 -04007417 return true;
7418
7419 return false;
7420}
7421
7422static int bnxt_rx_flow_steer(struct net_device *dev, const struct sk_buff *skb,
7423 u16 rxq_index, u32 flow_id)
7424{
7425 struct bnxt *bp = netdev_priv(dev);
7426 struct bnxt_ntuple_filter *fltr, *new_fltr;
7427 struct flow_keys *fkeys;
7428 struct ethhdr *eth = (struct ethhdr *)skb_mac_header(skb);
Michael Chana54c4d72016-07-25 12:33:35 -04007429 int rc = 0, idx, bit_id, l2_idx = 0;
Michael Chanc0c050c2015-10-22 16:01:17 -04007430 struct hlist_head *head;
7431
Michael Chana54c4d72016-07-25 12:33:35 -04007432 if (!ether_addr_equal(dev->dev_addr, eth->h_dest)) {
7433 struct bnxt_vnic_info *vnic = &bp->vnic_info[0];
7434 int off = 0, j;
7435
7436 netif_addr_lock_bh(dev);
7437 for (j = 0; j < vnic->uc_filter_count; j++, off += ETH_ALEN) {
7438 if (ether_addr_equal(eth->h_dest,
7439 vnic->uc_list + off)) {
7440 l2_idx = j + 1;
7441 break;
7442 }
7443 }
7444 netif_addr_unlock_bh(dev);
7445 if (!l2_idx)
7446 return -EINVAL;
7447 }
Michael Chanc0c050c2015-10-22 16:01:17 -04007448 new_fltr = kzalloc(sizeof(*new_fltr), GFP_ATOMIC);
7449 if (!new_fltr)
7450 return -ENOMEM;
7451
7452 fkeys = &new_fltr->fkeys;
7453 if (!skb_flow_dissect_flow_keys(skb, fkeys, 0)) {
7454 rc = -EPROTONOSUPPORT;
7455 goto err_free;
7456 }
7457
Michael Chandda0e742016-12-29 12:13:40 -05007458 if ((fkeys->basic.n_proto != htons(ETH_P_IP) &&
7459 fkeys->basic.n_proto != htons(ETH_P_IPV6)) ||
Michael Chanc0c050c2015-10-22 16:01:17 -04007460 ((fkeys->basic.ip_proto != IPPROTO_TCP) &&
7461 (fkeys->basic.ip_proto != IPPROTO_UDP))) {
7462 rc = -EPROTONOSUPPORT;
7463 goto err_free;
7464 }
Michael Chandda0e742016-12-29 12:13:40 -05007465 if (fkeys->basic.n_proto == htons(ETH_P_IPV6) &&
7466 bp->hwrm_spec_code < 0x10601) {
7467 rc = -EPROTONOSUPPORT;
7468 goto err_free;
7469 }
Michael Chan61aad722017-02-12 19:18:14 -05007470 if ((fkeys->control.flags & FLOW_DIS_ENCAPSULATION) &&
7471 bp->hwrm_spec_code < 0x10601) {
7472 rc = -EPROTONOSUPPORT;
7473 goto err_free;
7474 }
Michael Chanc0c050c2015-10-22 16:01:17 -04007475
Michael Chana54c4d72016-07-25 12:33:35 -04007476 memcpy(new_fltr->dst_mac_addr, eth->h_dest, ETH_ALEN);
Michael Chanc0c050c2015-10-22 16:01:17 -04007477 memcpy(new_fltr->src_mac_addr, eth->h_source, ETH_ALEN);
7478
7479 idx = skb_get_hash_raw(skb) & BNXT_NTP_FLTR_HASH_MASK;
7480 head = &bp->ntp_fltr_hash_tbl[idx];
7481 rcu_read_lock();
7482 hlist_for_each_entry_rcu(fltr, head, hash) {
7483 if (bnxt_fltr_match(fltr, new_fltr)) {
7484 rcu_read_unlock();
7485 rc = 0;
7486 goto err_free;
7487 }
7488 }
7489 rcu_read_unlock();
7490
7491 spin_lock_bh(&bp->ntp_fltr_lock);
Michael Chan84e86b92015-11-05 16:25:50 -05007492 bit_id = bitmap_find_free_region(bp->ntp_fltr_bmap,
7493 BNXT_NTP_FLTR_MAX_FLTR, 0);
7494 if (bit_id < 0) {
Michael Chanc0c050c2015-10-22 16:01:17 -04007495 spin_unlock_bh(&bp->ntp_fltr_lock);
7496 rc = -ENOMEM;
7497 goto err_free;
7498 }
7499
Michael Chan84e86b92015-11-05 16:25:50 -05007500 new_fltr->sw_id = (u16)bit_id;
Michael Chanc0c050c2015-10-22 16:01:17 -04007501 new_fltr->flow_id = flow_id;
Michael Chana54c4d72016-07-25 12:33:35 -04007502 new_fltr->l2_fltr_idx = l2_idx;
Michael Chanc0c050c2015-10-22 16:01:17 -04007503 new_fltr->rxq = rxq_index;
7504 hlist_add_head_rcu(&new_fltr->hash, head);
7505 bp->ntp_fltr_count++;
7506 spin_unlock_bh(&bp->ntp_fltr_lock);
7507
7508 set_bit(BNXT_RX_NTP_FLTR_SP_EVENT, &bp->sp_event);
Michael Chanc213eae2017-10-13 21:09:29 -04007509 bnxt_queue_sp_work(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04007510
7511 return new_fltr->sw_id;
7512
7513err_free:
7514 kfree(new_fltr);
7515 return rc;
7516}
7517
7518static void bnxt_cfg_ntp_filters(struct bnxt *bp)
7519{
7520 int i;
7521
7522 for (i = 0; i < BNXT_NTP_FLTR_HASH_SIZE; i++) {
7523 struct hlist_head *head;
7524 struct hlist_node *tmp;
7525 struct bnxt_ntuple_filter *fltr;
7526 int rc;
7527
7528 head = &bp->ntp_fltr_hash_tbl[i];
7529 hlist_for_each_entry_safe(fltr, tmp, head, hash) {
7530 bool del = false;
7531
7532 if (test_bit(BNXT_FLTR_VALID, &fltr->state)) {
7533 if (rps_may_expire_flow(bp->dev, fltr->rxq,
7534 fltr->flow_id,
7535 fltr->sw_id)) {
7536 bnxt_hwrm_cfa_ntuple_filter_free(bp,
7537 fltr);
7538 del = true;
7539 }
7540 } else {
7541 rc = bnxt_hwrm_cfa_ntuple_filter_alloc(bp,
7542 fltr);
7543 if (rc)
7544 del = true;
7545 else
7546 set_bit(BNXT_FLTR_VALID, &fltr->state);
7547 }
7548
7549 if (del) {
7550 spin_lock_bh(&bp->ntp_fltr_lock);
7551 hlist_del_rcu(&fltr->hash);
7552 bp->ntp_fltr_count--;
7553 spin_unlock_bh(&bp->ntp_fltr_lock);
7554 synchronize_rcu();
7555 clear_bit(fltr->sw_id, bp->ntp_fltr_bmap);
7556 kfree(fltr);
7557 }
7558 }
7559 }
Jeffrey Huang19241362016-02-26 04:00:00 -05007560 if (test_and_clear_bit(BNXT_HWRM_PF_UNLOAD_SP_EVENT, &bp->sp_event))
7561 netdev_info(bp->dev, "Receive PF driver unload event!");
Michael Chanc0c050c2015-10-22 16:01:17 -04007562}
7563
7564#else
7565
7566static void bnxt_cfg_ntp_filters(struct bnxt *bp)
7567{
7568}
7569
7570#endif /* CONFIG_RFS_ACCEL */
7571
Alexander Duyckad51b8e2016-06-16 12:21:19 -07007572static void bnxt_udp_tunnel_add(struct net_device *dev,
7573 struct udp_tunnel_info *ti)
Michael Chanc0c050c2015-10-22 16:01:17 -04007574{
7575 struct bnxt *bp = netdev_priv(dev);
7576
Alexander Duyckad51b8e2016-06-16 12:21:19 -07007577 if (ti->sa_family != AF_INET6 && ti->sa_family != AF_INET)
7578 return;
7579
Michael Chanc0c050c2015-10-22 16:01:17 -04007580 if (!netif_running(dev))
7581 return;
7582
Alexander Duyckad51b8e2016-06-16 12:21:19 -07007583 switch (ti->type) {
7584 case UDP_TUNNEL_TYPE_VXLAN:
7585 if (bp->vxlan_port_cnt && bp->vxlan_port != ti->port)
7586 return;
Michael Chanc0c050c2015-10-22 16:01:17 -04007587
Alexander Duyckad51b8e2016-06-16 12:21:19 -07007588 bp->vxlan_port_cnt++;
7589 if (bp->vxlan_port_cnt == 1) {
7590 bp->vxlan_port = ti->port;
7591 set_bit(BNXT_VXLAN_ADD_PORT_SP_EVENT, &bp->sp_event);
Michael Chanc213eae2017-10-13 21:09:29 -04007592 bnxt_queue_sp_work(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04007593 }
Alexander Duyckad51b8e2016-06-16 12:21:19 -07007594 break;
Alexander Duyck7cdd5fc2016-06-16 12:21:36 -07007595 case UDP_TUNNEL_TYPE_GENEVE:
7596 if (bp->nge_port_cnt && bp->nge_port != ti->port)
7597 return;
7598
7599 bp->nge_port_cnt++;
7600 if (bp->nge_port_cnt == 1) {
7601 bp->nge_port = ti->port;
7602 set_bit(BNXT_GENEVE_ADD_PORT_SP_EVENT, &bp->sp_event);
7603 }
7604 break;
Alexander Duyckad51b8e2016-06-16 12:21:19 -07007605 default:
7606 return;
Michael Chanc0c050c2015-10-22 16:01:17 -04007607 }
Alexander Duyckad51b8e2016-06-16 12:21:19 -07007608
Michael Chanc213eae2017-10-13 21:09:29 -04007609 bnxt_queue_sp_work(bp);
Alexander Duyckad51b8e2016-06-16 12:21:19 -07007610}
7611
7612static void bnxt_udp_tunnel_del(struct net_device *dev,
7613 struct udp_tunnel_info *ti)
7614{
7615 struct bnxt *bp = netdev_priv(dev);
7616
7617 if (ti->sa_family != AF_INET6 && ti->sa_family != AF_INET)
7618 return;
7619
7620 if (!netif_running(dev))
7621 return;
7622
7623 switch (ti->type) {
7624 case UDP_TUNNEL_TYPE_VXLAN:
7625 if (!bp->vxlan_port_cnt || bp->vxlan_port != ti->port)
7626 return;
7627 bp->vxlan_port_cnt--;
7628
7629 if (bp->vxlan_port_cnt != 0)
7630 return;
7631
7632 set_bit(BNXT_VXLAN_DEL_PORT_SP_EVENT, &bp->sp_event);
7633 break;
Alexander Duyck7cdd5fc2016-06-16 12:21:36 -07007634 case UDP_TUNNEL_TYPE_GENEVE:
7635 if (!bp->nge_port_cnt || bp->nge_port != ti->port)
7636 return;
7637 bp->nge_port_cnt--;
7638
7639 if (bp->nge_port_cnt != 0)
7640 return;
7641
7642 set_bit(BNXT_GENEVE_DEL_PORT_SP_EVENT, &bp->sp_event);
7643 break;
Alexander Duyckad51b8e2016-06-16 12:21:19 -07007644 default:
7645 return;
7646 }
7647
Michael Chanc213eae2017-10-13 21:09:29 -04007648 bnxt_queue_sp_work(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04007649}
7650
Michael Chan39d8ba22017-07-24 12:34:22 -04007651static int bnxt_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
7652 struct net_device *dev, u32 filter_mask,
7653 int nlflags)
7654{
7655 struct bnxt *bp = netdev_priv(dev);
7656
7657 return ndo_dflt_bridge_getlink(skb, pid, seq, dev, bp->br_mode, 0, 0,
7658 nlflags, filter_mask, NULL);
7659}
7660
7661static int bnxt_bridge_setlink(struct net_device *dev, struct nlmsghdr *nlh,
7662 u16 flags)
7663{
7664 struct bnxt *bp = netdev_priv(dev);
7665 struct nlattr *attr, *br_spec;
7666 int rem, rc = 0;
7667
7668 if (bp->hwrm_spec_code < 0x10708 || !BNXT_SINGLE_PF(bp))
7669 return -EOPNOTSUPP;
7670
7671 br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
7672 if (!br_spec)
7673 return -EINVAL;
7674
7675 nla_for_each_nested(attr, br_spec, rem) {
7676 u16 mode;
7677
7678 if (nla_type(attr) != IFLA_BRIDGE_MODE)
7679 continue;
7680
7681 if (nla_len(attr) < sizeof(mode))
7682 return -EINVAL;
7683
7684 mode = nla_get_u16(attr);
7685 if (mode == bp->br_mode)
7686 break;
7687
7688 rc = bnxt_hwrm_set_br_mode(bp, mode);
7689 if (!rc)
7690 bp->br_mode = mode;
7691 break;
7692 }
7693 return rc;
7694}
7695
Sathya Perlac124a622017-07-24 12:34:29 -04007696static int bnxt_get_phys_port_name(struct net_device *dev, char *buf,
7697 size_t len)
7698{
7699 struct bnxt *bp = netdev_priv(dev);
7700 int rc;
7701
7702 /* The PF and it's VF-reps only support the switchdev framework */
7703 if (!BNXT_PF(bp))
7704 return -EOPNOTSUPP;
7705
Sathya Perla53f70b82017-07-25 13:28:41 -04007706 rc = snprintf(buf, len, "p%d", bp->pf.port_id);
Sathya Perlac124a622017-07-24 12:34:29 -04007707
7708 if (rc >= len)
7709 return -EOPNOTSUPP;
7710 return 0;
7711}
7712
7713int bnxt_port_attr_get(struct bnxt *bp, struct switchdev_attr *attr)
7714{
7715 if (bp->eswitch_mode != DEVLINK_ESWITCH_MODE_SWITCHDEV)
7716 return -EOPNOTSUPP;
7717
7718 /* The PF and it's VF-reps only support the switchdev framework */
7719 if (!BNXT_PF(bp))
7720 return -EOPNOTSUPP;
7721
7722 switch (attr->id) {
7723 case SWITCHDEV_ATTR_ID_PORT_PARENT_ID:
7724 /* In SRIOV each PF-pool (PF + child VFs) serves as a
7725 * switching domain, the PF's perm mac-addr can be used
7726 * as the unique parent-id
7727 */
7728 attr->u.ppid.id_len = ETH_ALEN;
7729 ether_addr_copy(attr->u.ppid.id, bp->pf.mac_addr);
7730 break;
7731 default:
7732 return -EOPNOTSUPP;
7733 }
7734 return 0;
7735}
7736
7737static int bnxt_swdev_port_attr_get(struct net_device *dev,
7738 struct switchdev_attr *attr)
7739{
7740 return bnxt_port_attr_get(netdev_priv(dev), attr);
7741}
7742
7743static const struct switchdev_ops bnxt_switchdev_ops = {
7744 .switchdev_port_attr_get = bnxt_swdev_port_attr_get
7745};
7746
Michael Chanc0c050c2015-10-22 16:01:17 -04007747static const struct net_device_ops bnxt_netdev_ops = {
7748 .ndo_open = bnxt_open,
7749 .ndo_start_xmit = bnxt_start_xmit,
7750 .ndo_stop = bnxt_close,
7751 .ndo_get_stats64 = bnxt_get_stats64,
7752 .ndo_set_rx_mode = bnxt_set_rx_mode,
7753 .ndo_do_ioctl = bnxt_ioctl,
7754 .ndo_validate_addr = eth_validate_addr,
7755 .ndo_set_mac_address = bnxt_change_mac_addr,
7756 .ndo_change_mtu = bnxt_change_mtu,
7757 .ndo_fix_features = bnxt_fix_features,
7758 .ndo_set_features = bnxt_set_features,
7759 .ndo_tx_timeout = bnxt_tx_timeout,
7760#ifdef CONFIG_BNXT_SRIOV
7761 .ndo_get_vf_config = bnxt_get_vf_config,
7762 .ndo_set_vf_mac = bnxt_set_vf_mac,
7763 .ndo_set_vf_vlan = bnxt_set_vf_vlan,
7764 .ndo_set_vf_rate = bnxt_set_vf_bw,
7765 .ndo_set_vf_link_state = bnxt_set_vf_link_state,
7766 .ndo_set_vf_spoofchk = bnxt_set_vf_spoofchk,
7767#endif
7768#ifdef CONFIG_NET_POLL_CONTROLLER
7769 .ndo_poll_controller = bnxt_poll_controller,
7770#endif
7771 .ndo_setup_tc = bnxt_setup_tc,
7772#ifdef CONFIG_RFS_ACCEL
7773 .ndo_rx_flow_steer = bnxt_rx_flow_steer,
7774#endif
Alexander Duyckad51b8e2016-06-16 12:21:19 -07007775 .ndo_udp_tunnel_add = bnxt_udp_tunnel_add,
7776 .ndo_udp_tunnel_del = bnxt_udp_tunnel_del,
Jakub Kicinskif4e63522017-11-03 13:56:16 -07007777 .ndo_bpf = bnxt_xdp,
Michael Chan39d8ba22017-07-24 12:34:22 -04007778 .ndo_bridge_getlink = bnxt_bridge_getlink,
7779 .ndo_bridge_setlink = bnxt_bridge_setlink,
Sathya Perlac124a622017-07-24 12:34:29 -04007780 .ndo_get_phys_port_name = bnxt_get_phys_port_name
Michael Chanc0c050c2015-10-22 16:01:17 -04007781};
7782
7783static void bnxt_remove_one(struct pci_dev *pdev)
7784{
7785 struct net_device *dev = pci_get_drvdata(pdev);
7786 struct bnxt *bp = netdev_priv(dev);
7787
Sathya Perla4ab0c6a2017-07-24 12:34:27 -04007788 if (BNXT_PF(bp)) {
Michael Chanc0c050c2015-10-22 16:01:17 -04007789 bnxt_sriov_disable(bp);
Sathya Perla4ab0c6a2017-07-24 12:34:27 -04007790 bnxt_dl_unregister(bp);
7791 }
Michael Chanc0c050c2015-10-22 16:01:17 -04007792
Satish Baddipadige6316ea62016-03-07 15:38:48 -05007793 pci_disable_pcie_error_reporting(pdev);
Michael Chanc0c050c2015-10-22 16:01:17 -04007794 unregister_netdev(dev);
Sathya Perla2ae74082017-08-28 13:40:33 -04007795 bnxt_shutdown_tc(bp);
Michael Chanc213eae2017-10-13 21:09:29 -04007796 bnxt_cancel_sp_work(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04007797 bp->sp_event = 0;
7798
Michael Chan78095922016-12-07 00:26:16 -05007799 bnxt_clear_int_mode(bp);
Jeffrey Huangbe58a0d2015-12-27 18:19:18 -05007800 bnxt_hwrm_func_drv_unrgtr(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04007801 bnxt_free_hwrm_resources(bp);
Deepak Khungare605db82017-05-29 19:06:04 -04007802 bnxt_free_hwrm_short_cmd_req(bp);
Michael Chaneb513652017-04-04 18:14:12 -04007803 bnxt_ethtool_free(bp);
Michael Chan7df4ae92016-12-02 21:17:17 -05007804 bnxt_dcb_free(bp);
Michael Chana588e452016-12-07 00:26:21 -05007805 kfree(bp->edev);
7806 bp->edev = NULL;
Sathya Perla17086392017-02-20 19:25:18 -05007807 bnxt_cleanup_pci(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04007808 free_netdev(dev);
Michael Chanc0c050c2015-10-22 16:01:17 -04007809}
7810
7811static int bnxt_probe_phy(struct bnxt *bp)
7812{
7813 int rc = 0;
7814 struct bnxt_link_info *link_info = &bp->link_info;
Michael Chanc0c050c2015-10-22 16:01:17 -04007815
Michael Chan170ce012016-04-05 14:08:57 -04007816 rc = bnxt_hwrm_phy_qcaps(bp);
7817 if (rc) {
7818 netdev_err(bp->dev, "Probe phy can't get phy capabilities (rc: %x)\n",
7819 rc);
7820 return rc;
7821 }
Michael Chane2dc9b62017-10-13 21:09:30 -04007822 mutex_init(&bp->link_lock);
Michael Chan170ce012016-04-05 14:08:57 -04007823
Michael Chanc0c050c2015-10-22 16:01:17 -04007824 rc = bnxt_update_link(bp, false);
7825 if (rc) {
7826 netdev_err(bp->dev, "Probe phy can't update link (rc: %x)\n",
7827 rc);
7828 return rc;
7829 }
7830
Michael Chan93ed8112016-06-13 02:25:37 -04007831 /* Older firmware does not have supported_auto_speeds, so assume
7832 * that all supported speeds can be autonegotiated.
7833 */
7834 if (link_info->auto_link_speeds && !link_info->support_auto_speeds)
7835 link_info->support_auto_speeds = link_info->support_speeds;
7836
Michael Chanc0c050c2015-10-22 16:01:17 -04007837 /*initialize the ethool setting copy with NVM settings */
Michael Chan0d8abf02016-02-10 17:33:47 -05007838 if (BNXT_AUTO_MODE(link_info->auto_mode)) {
Michael Chanc9ee9512016-04-05 14:08:56 -04007839 link_info->autoneg = BNXT_AUTONEG_SPEED;
7840 if (bp->hwrm_spec_code >= 0x10201) {
7841 if (link_info->auto_pause_setting &
7842 PORT_PHY_CFG_REQ_AUTO_PAUSE_AUTONEG_PAUSE)
7843 link_info->autoneg |= BNXT_AUTONEG_FLOW_CTRL;
7844 } else {
7845 link_info->autoneg |= BNXT_AUTONEG_FLOW_CTRL;
7846 }
Michael Chan0d8abf02016-02-10 17:33:47 -05007847 link_info->advertising = link_info->auto_link_speeds;
Michael Chan0d8abf02016-02-10 17:33:47 -05007848 } else {
7849 link_info->req_link_speed = link_info->force_link_speed;
7850 link_info->req_duplex = link_info->duplex_setting;
Michael Chanc0c050c2015-10-22 16:01:17 -04007851 }
Michael Chanc9ee9512016-04-05 14:08:56 -04007852 if (link_info->autoneg & BNXT_AUTONEG_FLOW_CTRL)
7853 link_info->req_flow_ctrl =
7854 link_info->auto_pause_setting & BNXT_LINK_PAUSE_BOTH;
7855 else
7856 link_info->req_flow_ctrl = link_info->force_pause_setting;
Michael Chanc0c050c2015-10-22 16:01:17 -04007857 return rc;
7858}
7859
7860static int bnxt_get_max_irq(struct pci_dev *pdev)
7861{
7862 u16 ctrl;
7863
7864 if (!pdev->msix_cap)
7865 return 1;
7866
7867 pci_read_config_word(pdev, pdev->msix_cap + PCI_MSIX_FLAGS, &ctrl);
7868 return (ctrl & PCI_MSIX_FLAGS_QSIZE) + 1;
7869}
7870
Michael Chan6e6c5a52016-01-02 23:45:02 -05007871static void _bnxt_get_max_rings(struct bnxt *bp, int *max_rx, int *max_tx,
7872 int *max_cp)
Michael Chanc0c050c2015-10-22 16:01:17 -04007873{
Michael Chan6e6c5a52016-01-02 23:45:02 -05007874 int max_ring_grps = 0;
Michael Chanc0c050c2015-10-22 16:01:17 -04007875
Michael Chan379a80a2015-10-23 15:06:19 -04007876#ifdef CONFIG_BNXT_SRIOV
Arnd Bergmann415b6f12016-01-12 16:05:08 +01007877 if (!BNXT_PF(bp)) {
Michael Chanc0c050c2015-10-22 16:01:17 -04007878 *max_tx = bp->vf.max_tx_rings;
7879 *max_rx = bp->vf.max_rx_rings;
Michael Chan6e6c5a52016-01-02 23:45:02 -05007880 *max_cp = min_t(int, bp->vf.max_irqs, bp->vf.max_cp_rings);
7881 *max_cp = min_t(int, *max_cp, bp->vf.max_stat_ctxs);
Michael Chanb72d4a62015-12-27 18:19:27 -05007882 max_ring_grps = bp->vf.max_hw_ring_grps;
Arnd Bergmann415b6f12016-01-12 16:05:08 +01007883 } else
Michael Chan379a80a2015-10-23 15:06:19 -04007884#endif
Arnd Bergmann415b6f12016-01-12 16:05:08 +01007885 {
7886 *max_tx = bp->pf.max_tx_rings;
7887 *max_rx = bp->pf.max_rx_rings;
7888 *max_cp = min_t(int, bp->pf.max_irqs, bp->pf.max_cp_rings);
7889 *max_cp = min_t(int, *max_cp, bp->pf.max_stat_ctxs);
7890 max_ring_grps = bp->pf.max_hw_ring_grps;
Michael Chanc0c050c2015-10-22 16:01:17 -04007891 }
Prashant Sreedharan76595192016-07-18 07:15:22 -04007892 if (BNXT_CHIP_TYPE_NITRO_A0(bp) && BNXT_PF(bp)) {
7893 *max_cp -= 1;
7894 *max_rx -= 2;
7895 }
Michael Chanc0c050c2015-10-22 16:01:17 -04007896 if (bp->flags & BNXT_FLAG_AGG_RINGS)
7897 *max_rx >>= 1;
Michael Chanb72d4a62015-12-27 18:19:27 -05007898 *max_rx = min_t(int, *max_rx, max_ring_grps);
Michael Chan6e6c5a52016-01-02 23:45:02 -05007899}
7900
7901int bnxt_get_max_rings(struct bnxt *bp, int *max_rx, int *max_tx, bool shared)
7902{
7903 int rx, tx, cp;
7904
7905 _bnxt_get_max_rings(bp, &rx, &tx, &cp);
7906 if (!rx || !tx || !cp)
7907 return -ENOMEM;
7908
7909 *max_rx = rx;
7910 *max_tx = tx;
7911 return bnxt_trim_rings(bp, max_rx, max_tx, cp, shared);
7912}
7913
Michael Chane4060d32016-12-07 00:26:19 -05007914static int bnxt_get_dflt_rings(struct bnxt *bp, int *max_rx, int *max_tx,
7915 bool shared)
7916{
7917 int rc;
7918
7919 rc = bnxt_get_max_rings(bp, max_rx, max_tx, shared);
Michael Chanbdbd1eb2016-12-29 12:13:43 -05007920 if (rc && (bp->flags & BNXT_FLAG_AGG_RINGS)) {
7921 /* Not enough rings, try disabling agg rings. */
7922 bp->flags &= ~BNXT_FLAG_AGG_RINGS;
7923 rc = bnxt_get_max_rings(bp, max_rx, max_tx, shared);
7924 if (rc)
7925 return rc;
7926 bp->flags |= BNXT_FLAG_NO_AGG_RINGS;
7927 bp->dev->hw_features &= ~NETIF_F_LRO;
7928 bp->dev->features &= ~NETIF_F_LRO;
7929 bnxt_set_ring_params(bp);
7930 }
Michael Chane4060d32016-12-07 00:26:19 -05007931
7932 if (bp->flags & BNXT_FLAG_ROCE_CAP) {
7933 int max_cp, max_stat, max_irq;
7934
7935 /* Reserve minimum resources for RoCE */
7936 max_cp = bnxt_get_max_func_cp_rings(bp);
7937 max_stat = bnxt_get_max_func_stat_ctxs(bp);
7938 max_irq = bnxt_get_max_func_irqs(bp);
7939 if (max_cp <= BNXT_MIN_ROCE_CP_RINGS ||
7940 max_irq <= BNXT_MIN_ROCE_CP_RINGS ||
7941 max_stat <= BNXT_MIN_ROCE_STAT_CTXS)
7942 return 0;
7943
7944 max_cp -= BNXT_MIN_ROCE_CP_RINGS;
7945 max_irq -= BNXT_MIN_ROCE_CP_RINGS;
7946 max_stat -= BNXT_MIN_ROCE_STAT_CTXS;
7947 max_cp = min_t(int, max_cp, max_irq);
7948 max_cp = min_t(int, max_cp, max_stat);
7949 rc = bnxt_trim_rings(bp, max_rx, max_tx, max_cp, shared);
7950 if (rc)
7951 rc = 0;
7952 }
7953 return rc;
7954}
7955
Michael Chan702c2212017-05-29 19:06:10 -04007956static int bnxt_set_dflt_rings(struct bnxt *bp, bool sh)
Michael Chan6e6c5a52016-01-02 23:45:02 -05007957{
7958 int dflt_rings, max_rx_rings, max_tx_rings, rc;
Michael Chan6e6c5a52016-01-02 23:45:02 -05007959
7960 if (sh)
7961 bp->flags |= BNXT_FLAG_SHARED_RINGS;
7962 dflt_rings = netif_get_num_default_rss_queues();
Michael Chand5430d32017-08-28 13:40:31 -04007963 /* Reduce default rings to reduce memory usage on multi-port cards */
7964 if (bp->port_count > 1)
7965 dflt_rings = min_t(int, dflt_rings, 4);
Michael Chane4060d32016-12-07 00:26:19 -05007966 rc = bnxt_get_dflt_rings(bp, &max_rx_rings, &max_tx_rings, sh);
Michael Chan6e6c5a52016-01-02 23:45:02 -05007967 if (rc)
7968 return rc;
7969 bp->rx_nr_rings = min_t(int, dflt_rings, max_rx_rings);
7970 bp->tx_nr_rings_per_tc = min_t(int, dflt_rings, max_tx_rings);
Michael Chan391be5c2016-12-29 12:13:41 -05007971
7972 rc = bnxt_hwrm_reserve_tx_rings(bp, &bp->tx_nr_rings_per_tc);
7973 if (rc)
7974 netdev_warn(bp->dev, "Unable to reserve tx rings\n");
7975
Michael Chan6e6c5a52016-01-02 23:45:02 -05007976 bp->tx_nr_rings = bp->tx_nr_rings_per_tc;
7977 bp->cp_nr_rings = sh ? max_t(int, bp->tx_nr_rings, bp->rx_nr_rings) :
7978 bp->tx_nr_rings + bp->rx_nr_rings;
7979 bp->num_stat_ctxs = bp->cp_nr_rings;
Prashant Sreedharan76595192016-07-18 07:15:22 -04007980 if (BNXT_CHIP_TYPE_NITRO_A0(bp)) {
7981 bp->rx_nr_rings++;
7982 bp->cp_nr_rings++;
7983 }
Michael Chan6e6c5a52016-01-02 23:45:02 -05007984 return rc;
Michael Chanc0c050c2015-10-22 16:01:17 -04007985}
7986
Michael Chan7b08f662016-12-07 00:26:18 -05007987void bnxt_restore_pf_fw_resources(struct bnxt *bp)
7988{
7989 ASSERT_RTNL();
7990 bnxt_hwrm_func_qcaps(bp);
Michael Chana588e452016-12-07 00:26:21 -05007991 bnxt_subtract_ulp_resources(bp, BNXT_ROCE_ULP);
Michael Chan7b08f662016-12-07 00:26:18 -05007992}
7993
Michael Chana22a6ac2017-08-23 19:34:05 -04007994static int bnxt_init_mac_addr(struct bnxt *bp)
7995{
7996 int rc = 0;
7997
7998 if (BNXT_PF(bp)) {
7999 memcpy(bp->dev->dev_addr, bp->pf.mac_addr, ETH_ALEN);
8000 } else {
8001#ifdef CONFIG_BNXT_SRIOV
8002 struct bnxt_vf_info *vf = &bp->vf;
8003
8004 if (is_valid_ether_addr(vf->mac_addr)) {
8005 /* overwrite netdev dev_adr with admin VF MAC */
8006 memcpy(bp->dev->dev_addr, vf->mac_addr, ETH_ALEN);
8007 } else {
8008 eth_hw_addr_random(bp->dev);
8009 rc = bnxt_approve_mac(bp, bp->dev->dev_addr);
8010 }
8011#endif
8012 }
8013 return rc;
8014}
8015
Ajit Khaparde90c4f782016-05-15 03:04:45 -04008016static void bnxt_parse_log_pcie_link(struct bnxt *bp)
8017{
8018 enum pcie_link_width width = PCIE_LNK_WIDTH_UNKNOWN;
8019 enum pci_bus_speed speed = PCI_SPEED_UNKNOWN;
8020
Vasundhara Volam7ab07602017-10-13 21:09:31 -04008021 if (pcie_get_minimum_link(pci_physfn(bp->pdev), &speed, &width) ||
Ajit Khaparde90c4f782016-05-15 03:04:45 -04008022 speed == PCI_SPEED_UNKNOWN || width == PCIE_LNK_WIDTH_UNKNOWN)
8023 netdev_info(bp->dev, "Failed to determine PCIe Link Info\n");
8024 else
8025 netdev_info(bp->dev, "PCIe: Speed %s Width x%d\n",
8026 speed == PCIE_SPEED_2_5GT ? "2.5GT/s" :
8027 speed == PCIE_SPEED_5_0GT ? "5.0GT/s" :
8028 speed == PCIE_SPEED_8_0GT ? "8.0GT/s" :
8029 "Unknown", width);
8030}
8031
Michael Chanc0c050c2015-10-22 16:01:17 -04008032static int bnxt_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
8033{
8034 static int version_printed;
8035 struct net_device *dev;
8036 struct bnxt *bp;
Michael Chan6e6c5a52016-01-02 23:45:02 -05008037 int rc, max_irqs;
Michael Chanc0c050c2015-10-22 16:01:17 -04008038
Ray Jui4e003382017-02-20 19:25:16 -05008039 if (pci_is_bridge(pdev))
Prashant Sreedharanfa853dd2016-07-18 07:15:25 -04008040 return -ENODEV;
8041
Michael Chanc0c050c2015-10-22 16:01:17 -04008042 if (version_printed++ == 0)
8043 pr_info("%s", version);
8044
8045 max_irqs = bnxt_get_max_irq(pdev);
8046 dev = alloc_etherdev_mq(sizeof(*bp), max_irqs);
8047 if (!dev)
8048 return -ENOMEM;
8049
8050 bp = netdev_priv(dev);
8051
8052 if (bnxt_vf_pciid(ent->driver_data))
8053 bp->flags |= BNXT_FLAG_VF;
8054
Michael Chan2bcfa6f2015-12-27 18:19:24 -05008055 if (pdev->msix_cap)
Michael Chanc0c050c2015-10-22 16:01:17 -04008056 bp->flags |= BNXT_FLAG_MSIX_CAP;
Michael Chanc0c050c2015-10-22 16:01:17 -04008057
8058 rc = bnxt_init_board(pdev, dev);
8059 if (rc < 0)
8060 goto init_err_free;
8061
8062 dev->netdev_ops = &bnxt_netdev_ops;
8063 dev->watchdog_timeo = BNXT_TX_TIMEOUT;
8064 dev->ethtool_ops = &bnxt_ethtool_ops;
David S. Millerbc880552017-07-24 21:20:16 -07008065 SWITCHDEV_SET_OPS(dev, &bnxt_switchdev_ops);
Michael Chanc0c050c2015-10-22 16:01:17 -04008066 pci_set_drvdata(pdev, dev);
8067
Prashant Sreedharan3e8060f2016-07-18 07:15:20 -04008068 rc = bnxt_alloc_hwrm_resources(bp);
8069 if (rc)
Sathya Perla17086392017-02-20 19:25:18 -05008070 goto init_err_pci_clean;
Prashant Sreedharan3e8060f2016-07-18 07:15:20 -04008071
8072 mutex_init(&bp->hwrm_cmd_lock);
8073 rc = bnxt_hwrm_ver_get(bp);
8074 if (rc)
Sathya Perla17086392017-02-20 19:25:18 -05008075 goto init_err_pci_clean;
Prashant Sreedharan3e8060f2016-07-18 07:15:20 -04008076
Deepak Khungare605db82017-05-29 19:06:04 -04008077 if (bp->flags & BNXT_FLAG_SHORT_CMD) {
8078 rc = bnxt_alloc_hwrm_short_cmd_req(bp);
8079 if (rc)
8080 goto init_err_pci_clean;
8081 }
8082
Michael Chan3c2217a2017-03-08 18:44:32 -05008083 rc = bnxt_hwrm_func_reset(bp);
8084 if (rc)
8085 goto init_err_pci_clean;
8086
Rob Swindell5ac67d82016-09-19 03:58:03 -04008087 bnxt_hwrm_fw_set_time(bp);
8088
Michael Chanc0c050c2015-10-22 16:01:17 -04008089 dev->hw_features = NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM | NETIF_F_SG |
8090 NETIF_F_TSO | NETIF_F_TSO6 |
8091 NETIF_F_GSO_UDP_TUNNEL | NETIF_F_GSO_GRE |
Tom Herbert7e133182016-05-18 09:06:10 -07008092 NETIF_F_GSO_IPXIP4 |
Alexander Duyck152971e2016-05-02 09:38:55 -07008093 NETIF_F_GSO_UDP_TUNNEL_CSUM | NETIF_F_GSO_GRE_CSUM |
8094 NETIF_F_GSO_PARTIAL | NETIF_F_RXHASH |
Prashant Sreedharan3e8060f2016-07-18 07:15:20 -04008095 NETIF_F_RXCSUM | NETIF_F_GRO;
8096
8097 if (!BNXT_CHIP_TYPE_NITRO_A0(bp))
8098 dev->hw_features |= NETIF_F_LRO;
Michael Chanc0c050c2015-10-22 16:01:17 -04008099
Michael Chanc0c050c2015-10-22 16:01:17 -04008100 dev->hw_enc_features =
8101 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM | NETIF_F_SG |
8102 NETIF_F_TSO | NETIF_F_TSO6 |
8103 NETIF_F_GSO_UDP_TUNNEL | NETIF_F_GSO_GRE |
Alexander Duyck152971e2016-05-02 09:38:55 -07008104 NETIF_F_GSO_UDP_TUNNEL_CSUM | NETIF_F_GSO_GRE_CSUM |
Tom Herbert7e133182016-05-18 09:06:10 -07008105 NETIF_F_GSO_IPXIP4 | NETIF_F_GSO_PARTIAL;
Alexander Duyck152971e2016-05-02 09:38:55 -07008106 dev->gso_partial_features = NETIF_F_GSO_UDP_TUNNEL_CSUM |
8107 NETIF_F_GSO_GRE_CSUM;
Michael Chanc0c050c2015-10-22 16:01:17 -04008108 dev->vlan_features = dev->hw_features | NETIF_F_HIGHDMA;
8109 dev->hw_features |= NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_CTAG_TX |
8110 NETIF_F_HW_VLAN_STAG_RX | NETIF_F_HW_VLAN_STAG_TX;
8111 dev->features |= dev->hw_features | NETIF_F_HIGHDMA;
8112 dev->priv_flags |= IFF_UNICAST_FLT;
8113
8114#ifdef CONFIG_BNXT_SRIOV
8115 init_waitqueue_head(&bp->sriov_cfg_wait);
Sathya Perla4ab0c6a2017-07-24 12:34:27 -04008116 mutex_init(&bp->sriov_lock);
Michael Chanc0c050c2015-10-22 16:01:17 -04008117#endif
Michael Chan309369c2016-06-13 02:25:34 -04008118 bp->gro_func = bnxt_gro_func_5730x;
Michael Chan3284f9e2017-05-29 19:06:07 -04008119 if (BNXT_CHIP_P4_PLUS(bp))
Michael Chan94758f82016-06-13 02:25:35 -04008120 bp->gro_func = bnxt_gro_func_5731x;
Michael Chan434c9752017-05-29 19:06:08 -04008121 else
8122 bp->flags |= BNXT_FLAG_DOUBLE_DB;
Michael Chan309369c2016-06-13 02:25:34 -04008123
Michael Chanc0c050c2015-10-22 16:01:17 -04008124 rc = bnxt_hwrm_func_drv_rgtr(bp);
8125 if (rc)
Sathya Perla17086392017-02-20 19:25:18 -05008126 goto init_err_pci_clean;
Michael Chanc0c050c2015-10-22 16:01:17 -04008127
Michael Chana1653b12016-12-07 00:26:20 -05008128 rc = bnxt_hwrm_func_rgtr_async_events(bp, NULL, 0);
8129 if (rc)
Sathya Perla17086392017-02-20 19:25:18 -05008130 goto init_err_pci_clean;
Michael Chana1653b12016-12-07 00:26:20 -05008131
Michael Chana588e452016-12-07 00:26:21 -05008132 bp->ulp_probe = bnxt_ulp_probe;
8133
Michael Chanc0c050c2015-10-22 16:01:17 -04008134 /* Get the MAX capabilities for this function */
8135 rc = bnxt_hwrm_func_qcaps(bp);
8136 if (rc) {
8137 netdev_err(bp->dev, "hwrm query capability failure rc: %x\n",
8138 rc);
8139 rc = -1;
Sathya Perla17086392017-02-20 19:25:18 -05008140 goto init_err_pci_clean;
Michael Chanc0c050c2015-10-22 16:01:17 -04008141 }
Michael Chana22a6ac2017-08-23 19:34:05 -04008142 rc = bnxt_init_mac_addr(bp);
8143 if (rc) {
8144 dev_err(&pdev->dev, "Unable to initialize mac address.\n");
8145 rc = -EADDRNOTAVAIL;
8146 goto init_err_pci_clean;
8147 }
Michael Chanc0c050c2015-10-22 16:01:17 -04008148 rc = bnxt_hwrm_queue_qportcfg(bp);
8149 if (rc) {
8150 netdev_err(bp->dev, "hwrm query qportcfg failure rc: %x\n",
8151 rc);
8152 rc = -1;
Sathya Perla17086392017-02-20 19:25:18 -05008153 goto init_err_pci_clean;
Michael Chanc0c050c2015-10-22 16:01:17 -04008154 }
8155
Satish Baddipadige567b2ab2016-06-13 02:25:31 -04008156 bnxt_hwrm_func_qcfg(bp);
Michael Chan5ad2cbe2017-01-13 01:32:03 -05008157 bnxt_hwrm_port_led_qcaps(bp);
Michael Chaneb513652017-04-04 18:14:12 -04008158 bnxt_ethtool_init(bp);
Michael Chan87fe6032017-05-16 16:39:43 -04008159 bnxt_dcb_init(bp);
Satish Baddipadige567b2ab2016-06-13 02:25:31 -04008160
Michael Chan7eb9bb32017-10-26 11:51:25 -04008161 /* MTU range: 60 - FW defined max */
8162 dev->min_mtu = ETH_ZLEN;
8163 dev->max_mtu = bp->max_mtu;
8164
Michael Chand5430d32017-08-28 13:40:31 -04008165 rc = bnxt_probe_phy(bp);
8166 if (rc)
8167 goto init_err_pci_clean;
8168
Michael Chanc61fb992017-02-06 16:55:36 -05008169 bnxt_set_rx_skb_mode(bp, false);
Michael Chanc0c050c2015-10-22 16:01:17 -04008170 bnxt_set_tpa_flags(bp);
8171 bnxt_set_ring_params(bp);
Michael Chan33c26572016-12-07 00:26:15 -05008172 bnxt_set_max_func_irqs(bp, max_irqs);
Michael Chan702c2212017-05-29 19:06:10 -04008173 rc = bnxt_set_dflt_rings(bp, true);
Michael Chanbdbd1eb2016-12-29 12:13:43 -05008174 if (rc) {
8175 netdev_err(bp->dev, "Not enough rings available.\n");
8176 rc = -ENOMEM;
Sathya Perla17086392017-02-20 19:25:18 -05008177 goto init_err_pci_clean;
Michael Chanbdbd1eb2016-12-29 12:13:43 -05008178 }
Michael Chanc0c050c2015-10-22 16:01:17 -04008179
Michael Chan87da7f72016-11-16 21:13:09 -05008180 /* Default RSS hash cfg. */
8181 bp->rss_hash_cfg = VNIC_RSS_CFG_REQ_HASH_TYPE_IPV4 |
8182 VNIC_RSS_CFG_REQ_HASH_TYPE_TCP_IPV4 |
8183 VNIC_RSS_CFG_REQ_HASH_TYPE_IPV6 |
8184 VNIC_RSS_CFG_REQ_HASH_TYPE_TCP_IPV6;
Michael Chan3284f9e2017-05-29 19:06:07 -04008185 if (BNXT_CHIP_P4_PLUS(bp) && bp->hwrm_spec_code >= 0x10501) {
Michael Chan87da7f72016-11-16 21:13:09 -05008186 bp->flags |= BNXT_FLAG_UDP_RSS_CAP;
8187 bp->rss_hash_cfg |= VNIC_RSS_CFG_REQ_HASH_TYPE_UDP_IPV4 |
8188 VNIC_RSS_CFG_REQ_HASH_TYPE_UDP_IPV6;
8189 }
8190
Michael Chan8fdefd62016-12-29 12:13:36 -05008191 bnxt_hwrm_vnic_qcaps(bp);
Michael Chan8079e8f2016-12-29 12:13:37 -05008192 if (bnxt_rfs_supported(bp)) {
Michael Chan2bcfa6f2015-12-27 18:19:24 -05008193 dev->hw_features |= NETIF_F_NTUPLE;
8194 if (bnxt_rfs_capable(bp)) {
8195 bp->flags |= BNXT_FLAG_RFS;
8196 dev->features |= NETIF_F_NTUPLE;
8197 }
8198 }
8199
Michael Chanc0c050c2015-10-22 16:01:17 -04008200 if (dev->hw_features & NETIF_F_HW_VLAN_CTAG_RX)
8201 bp->flags |= BNXT_FLAG_STRIP_VLAN;
8202
Michael Chan78095922016-12-07 00:26:16 -05008203 rc = bnxt_init_int_mode(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04008204 if (rc)
Sathya Perla17086392017-02-20 19:25:18 -05008205 goto init_err_pci_clean;
Michael Chanc0c050c2015-10-22 16:01:17 -04008206
Michael Chanc1ef1462017-04-04 18:14:07 -04008207 bnxt_get_wol_settings(bp);
Michael Chand196ece2017-04-04 18:14:08 -04008208 if (bp->flags & BNXT_FLAG_WOL_CAP)
8209 device_set_wakeup_enable(&pdev->dev, bp->wol);
8210 else
8211 device_set_wakeup_capable(&pdev->dev, false);
Michael Chanc1ef1462017-04-04 18:14:07 -04008212
Michael Chanc213eae2017-10-13 21:09:29 -04008213 if (BNXT_PF(bp)) {
8214 if (!bnxt_pf_wq) {
8215 bnxt_pf_wq =
8216 create_singlethread_workqueue("bnxt_pf_wq");
8217 if (!bnxt_pf_wq) {
8218 dev_err(&pdev->dev, "Unable to create workqueue.\n");
8219 goto init_err_pci_clean;
8220 }
8221 }
Sathya Perla2ae74082017-08-28 13:40:33 -04008222 bnxt_init_tc(bp);
Michael Chanc213eae2017-10-13 21:09:29 -04008223 }
Sathya Perla2ae74082017-08-28 13:40:33 -04008224
Michael Chan78095922016-12-07 00:26:16 -05008225 rc = register_netdev(dev);
8226 if (rc)
Sathya Perla2ae74082017-08-28 13:40:33 -04008227 goto init_err_cleanup_tc;
Michael Chan78095922016-12-07 00:26:16 -05008228
Sathya Perla4ab0c6a2017-07-24 12:34:27 -04008229 if (BNXT_PF(bp))
8230 bnxt_dl_register(bp);
8231
Michael Chanc0c050c2015-10-22 16:01:17 -04008232 netdev_info(dev, "%s found at mem %lx, node addr %pM\n",
8233 board_info[ent->driver_data].name,
8234 (long)pci_resource_start(pdev, 0), dev->dev_addr);
8235
Ajit Khaparde90c4f782016-05-15 03:04:45 -04008236 bnxt_parse_log_pcie_link(bp);
8237
Michael Chanc0c050c2015-10-22 16:01:17 -04008238 return 0;
8239
Sathya Perla2ae74082017-08-28 13:40:33 -04008240init_err_cleanup_tc:
8241 bnxt_shutdown_tc(bp);
Michael Chan78095922016-12-07 00:26:16 -05008242 bnxt_clear_int_mode(bp);
8243
Sathya Perla17086392017-02-20 19:25:18 -05008244init_err_pci_clean:
8245 bnxt_cleanup_pci(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04008246
8247init_err_free:
8248 free_netdev(dev);
8249 return rc;
8250}
8251
Michael Chand196ece2017-04-04 18:14:08 -04008252static void bnxt_shutdown(struct pci_dev *pdev)
8253{
8254 struct net_device *dev = pci_get_drvdata(pdev);
8255 struct bnxt *bp;
8256
8257 if (!dev)
8258 return;
8259
8260 rtnl_lock();
8261 bp = netdev_priv(dev);
8262 if (!bp)
8263 goto shutdown_exit;
8264
8265 if (netif_running(dev))
8266 dev_close(dev);
8267
Ray Juia7f3f932017-12-01 03:13:02 -05008268 bnxt_ulp_shutdown(bp);
8269
Michael Chand196ece2017-04-04 18:14:08 -04008270 if (system_state == SYSTEM_POWER_OFF) {
8271 bnxt_clear_int_mode(bp);
8272 pci_wake_from_d3(pdev, bp->wol);
8273 pci_set_power_state(pdev, PCI_D3hot);
8274 }
8275
8276shutdown_exit:
8277 rtnl_unlock();
8278}
8279
Michael Chanf65a2042017-04-04 18:14:11 -04008280#ifdef CONFIG_PM_SLEEP
8281static int bnxt_suspend(struct device *device)
8282{
8283 struct pci_dev *pdev = to_pci_dev(device);
8284 struct net_device *dev = pci_get_drvdata(pdev);
8285 struct bnxt *bp = netdev_priv(dev);
8286 int rc = 0;
8287
8288 rtnl_lock();
8289 if (netif_running(dev)) {
8290 netif_device_detach(dev);
8291 rc = bnxt_close(dev);
8292 }
8293 bnxt_hwrm_func_drv_unrgtr(bp);
8294 rtnl_unlock();
8295 return rc;
8296}
8297
8298static int bnxt_resume(struct device *device)
8299{
8300 struct pci_dev *pdev = to_pci_dev(device);
8301 struct net_device *dev = pci_get_drvdata(pdev);
8302 struct bnxt *bp = netdev_priv(dev);
8303 int rc = 0;
8304
8305 rtnl_lock();
8306 if (bnxt_hwrm_ver_get(bp) || bnxt_hwrm_func_drv_rgtr(bp)) {
8307 rc = -ENODEV;
8308 goto resume_exit;
8309 }
8310 rc = bnxt_hwrm_func_reset(bp);
8311 if (rc) {
8312 rc = -EBUSY;
8313 goto resume_exit;
8314 }
8315 bnxt_get_wol_settings(bp);
8316 if (netif_running(dev)) {
8317 rc = bnxt_open(dev);
8318 if (!rc)
8319 netif_device_attach(dev);
8320 }
8321
8322resume_exit:
8323 rtnl_unlock();
8324 return rc;
8325}
8326
8327static SIMPLE_DEV_PM_OPS(bnxt_pm_ops, bnxt_suspend, bnxt_resume);
8328#define BNXT_PM_OPS (&bnxt_pm_ops)
8329
8330#else
8331
8332#define BNXT_PM_OPS NULL
8333
8334#endif /* CONFIG_PM_SLEEP */
8335
Satish Baddipadige6316ea62016-03-07 15:38:48 -05008336/**
8337 * bnxt_io_error_detected - called when PCI error is detected
8338 * @pdev: Pointer to PCI device
8339 * @state: The current pci connection state
8340 *
8341 * This function is called after a PCI bus error affecting
8342 * this device has been detected.
8343 */
8344static pci_ers_result_t bnxt_io_error_detected(struct pci_dev *pdev,
8345 pci_channel_state_t state)
8346{
8347 struct net_device *netdev = pci_get_drvdata(pdev);
Michael Chana588e452016-12-07 00:26:21 -05008348 struct bnxt *bp = netdev_priv(netdev);
Satish Baddipadige6316ea62016-03-07 15:38:48 -05008349
8350 netdev_info(netdev, "PCI I/O error detected\n");
8351
8352 rtnl_lock();
8353 netif_device_detach(netdev);
8354
Michael Chana588e452016-12-07 00:26:21 -05008355 bnxt_ulp_stop(bp);
8356
Satish Baddipadige6316ea62016-03-07 15:38:48 -05008357 if (state == pci_channel_io_perm_failure) {
8358 rtnl_unlock();
8359 return PCI_ERS_RESULT_DISCONNECT;
8360 }
8361
8362 if (netif_running(netdev))
8363 bnxt_close(netdev);
8364
8365 pci_disable_device(pdev);
8366 rtnl_unlock();
8367
8368 /* Request a slot slot reset. */
8369 return PCI_ERS_RESULT_NEED_RESET;
8370}
8371
8372/**
8373 * bnxt_io_slot_reset - called after the pci bus has been reset.
8374 * @pdev: Pointer to PCI device
8375 *
8376 * Restart the card from scratch, as if from a cold-boot.
8377 * At this point, the card has exprienced a hard reset,
8378 * followed by fixups by BIOS, and has its config space
8379 * set up identically to what it was at cold boot.
8380 */
8381static pci_ers_result_t bnxt_io_slot_reset(struct pci_dev *pdev)
8382{
8383 struct net_device *netdev = pci_get_drvdata(pdev);
8384 struct bnxt *bp = netdev_priv(netdev);
8385 int err = 0;
8386 pci_ers_result_t result = PCI_ERS_RESULT_DISCONNECT;
8387
8388 netdev_info(bp->dev, "PCI Slot Reset\n");
8389
8390 rtnl_lock();
8391
8392 if (pci_enable_device(pdev)) {
8393 dev_err(&pdev->dev,
8394 "Cannot re-enable PCI device after reset.\n");
8395 } else {
8396 pci_set_master(pdev);
8397
Michael Chanaa8ed022016-12-07 00:26:17 -05008398 err = bnxt_hwrm_func_reset(bp);
8399 if (!err && netif_running(netdev))
Satish Baddipadige6316ea62016-03-07 15:38:48 -05008400 err = bnxt_open(netdev);
8401
Michael Chana588e452016-12-07 00:26:21 -05008402 if (!err) {
Satish Baddipadige6316ea62016-03-07 15:38:48 -05008403 result = PCI_ERS_RESULT_RECOVERED;
Michael Chana588e452016-12-07 00:26:21 -05008404 bnxt_ulp_start(bp);
8405 }
Satish Baddipadige6316ea62016-03-07 15:38:48 -05008406 }
8407
8408 if (result != PCI_ERS_RESULT_RECOVERED && netif_running(netdev))
8409 dev_close(netdev);
8410
8411 rtnl_unlock();
8412
8413 err = pci_cleanup_aer_uncorrect_error_status(pdev);
8414 if (err) {
8415 dev_err(&pdev->dev,
8416 "pci_cleanup_aer_uncorrect_error_status failed 0x%0x\n",
8417 err); /* non-fatal, continue */
8418 }
8419
8420 return PCI_ERS_RESULT_RECOVERED;
8421}
8422
8423/**
8424 * bnxt_io_resume - called when traffic can start flowing again.
8425 * @pdev: Pointer to PCI device
8426 *
8427 * This callback is called when the error recovery driver tells
8428 * us that its OK to resume normal operation.
8429 */
8430static void bnxt_io_resume(struct pci_dev *pdev)
8431{
8432 struct net_device *netdev = pci_get_drvdata(pdev);
8433
8434 rtnl_lock();
8435
8436 netif_device_attach(netdev);
8437
8438 rtnl_unlock();
8439}
8440
8441static const struct pci_error_handlers bnxt_err_handler = {
8442 .error_detected = bnxt_io_error_detected,
8443 .slot_reset = bnxt_io_slot_reset,
8444 .resume = bnxt_io_resume
8445};
8446
Michael Chanc0c050c2015-10-22 16:01:17 -04008447static struct pci_driver bnxt_pci_driver = {
8448 .name = DRV_MODULE_NAME,
8449 .id_table = bnxt_pci_tbl,
8450 .probe = bnxt_init_one,
8451 .remove = bnxt_remove_one,
Michael Chand196ece2017-04-04 18:14:08 -04008452 .shutdown = bnxt_shutdown,
Michael Chanf65a2042017-04-04 18:14:11 -04008453 .driver.pm = BNXT_PM_OPS,
Satish Baddipadige6316ea62016-03-07 15:38:48 -05008454 .err_handler = &bnxt_err_handler,
Michael Chanc0c050c2015-10-22 16:01:17 -04008455#if defined(CONFIG_BNXT_SRIOV)
8456 .sriov_configure = bnxt_sriov_configure,
8457#endif
8458};
8459
Michael Chanc213eae2017-10-13 21:09:29 -04008460static int __init bnxt_init(void)
8461{
8462 return pci_register_driver(&bnxt_pci_driver);
8463}
8464
8465static void __exit bnxt_exit(void)
8466{
8467 pci_unregister_driver(&bnxt_pci_driver);
8468 if (bnxt_pf_wq)
8469 destroy_workqueue(bnxt_pf_wq);
8470}
8471
8472module_init(bnxt_init);
8473module_exit(bnxt_exit);