blob: 5d21c14853acc90cb07434fec4460ce004614db5 [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 Chan894aa692018-01-17 03:21:03 -05004 * Copyright (c) 2016-2018 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>
Vasundhara Volamcde49a42018-08-05 16:51:56 -040054#include <linux/hwmon.h>
55#include <linux/hwmon-sysfs.h>
Michael Chanc0c050c2015-10-22 16:01:17 -040056
57#include "bnxt_hsi.h"
58#include "bnxt.h"
Michael Chana588e452016-12-07 00:26:21 -050059#include "bnxt_ulp.h"
Michael Chanc0c050c2015-10-22 16:01:17 -040060#include "bnxt_sriov.h"
61#include "bnxt_ethtool.h"
Michael Chan7df4ae92016-12-02 21:17:17 -050062#include "bnxt_dcb.h"
Michael Chanc6d30e82017-02-06 16:55:42 -050063#include "bnxt_xdp.h"
Sathya Perla4ab0c6a2017-07-24 12:34:27 -040064#include "bnxt_vfr.h"
Sathya Perla2ae74082017-08-28 13:40:33 -040065#include "bnxt_tc.h"
Steve Lin3c467bf2017-10-19 10:45:56 -040066#include "bnxt_devlink.h"
Andy Gospodarekcabfb092018-04-26 17:44:40 -040067#include "bnxt_debugfs.h"
Michael Chanc0c050c2015-10-22 16:01:17 -040068
69#define BNXT_TX_TIMEOUT (5 * HZ)
70
71static const char version[] =
72 "Broadcom NetXtreme-C/E driver " DRV_MODULE_NAME " v" DRV_MODULE_VERSION "\n";
73
74MODULE_LICENSE("GPL");
75MODULE_DESCRIPTION("Broadcom BCM573xx network driver");
76MODULE_VERSION(DRV_MODULE_VERSION);
77
78#define BNXT_RX_OFFSET (NET_SKB_PAD + NET_IP_ALIGN)
79#define BNXT_RX_DMA_OFFSET NET_SKB_PAD
80#define BNXT_RX_COPY_THRESH 256
81
Michael Chan4419dbe2016-02-10 17:33:49 -050082#define BNXT_TX_PUSH_THRESH 164
Michael Chanc0c050c2015-10-22 16:01:17 -040083
84enum board_idx {
David Christensenfbc9a522015-12-27 18:19:29 -050085 BCM57301,
Michael Chanc0c050c2015-10-22 16:01:17 -040086 BCM57302,
87 BCM57304,
Michael Chan1f681682016-07-25 12:33:37 -040088 BCM57417_NPAR,
Prashant Sreedharanfa853dd2016-07-18 07:15:25 -040089 BCM58700,
Michael Chanb24eb6a2016-06-13 02:25:36 -040090 BCM57311,
91 BCM57312,
David Christensenfbc9a522015-12-27 18:19:29 -050092 BCM57402,
Michael Chanc0c050c2015-10-22 16:01:17 -040093 BCM57404,
94 BCM57406,
Michael Chan1f681682016-07-25 12:33:37 -040095 BCM57402_NPAR,
96 BCM57407,
Michael Chanb24eb6a2016-06-13 02:25:36 -040097 BCM57412,
98 BCM57414,
99 BCM57416,
100 BCM57417,
Michael Chan1f681682016-07-25 12:33:37 -0400101 BCM57412_NPAR,
Michael Chan5049e332016-05-15 03:04:50 -0400102 BCM57314,
Michael Chan1f681682016-07-25 12:33:37 -0400103 BCM57417_SFP,
104 BCM57416_SFP,
105 BCM57404_NPAR,
106 BCM57406_NPAR,
107 BCM57407_SFP,
Michael Chanadbc8302016-09-19 03:58:01 -0400108 BCM57407_NPAR,
Michael Chan1f681682016-07-25 12:33:37 -0400109 BCM57414_NPAR,
110 BCM57416_NPAR,
Deepak Khungar32b40792017-02-12 19:18:18 -0500111 BCM57452,
112 BCM57454,
Vasundhara Volam92abef32018-01-17 03:21:13 -0500113 BCM5745x_NPAR,
Michael Chan1ab968d2018-10-14 07:02:59 -0400114 BCM57508,
Ray Jui4a581392017-08-28 13:40:28 -0400115 BCM58802,
Ray Jui8ed693b2017-10-26 11:51:20 -0400116 BCM58804,
Ray Jui4a581392017-08-28 13:40:28 -0400117 BCM58808,
Michael Chanadbc8302016-09-19 03:58:01 -0400118 NETXTREME_E_VF,
119 NETXTREME_C_VF,
Rob Miller618784e2017-10-26 11:51:21 -0400120 NETXTREME_S_VF,
Michael Chanc0c050c2015-10-22 16:01:17 -0400121};
122
123/* indexed by enum above */
124static const struct {
125 char *name;
126} board_info[] = {
Scott Branden27573a72017-08-28 13:40:29 -0400127 [BCM57301] = { "Broadcom BCM57301 NetXtreme-C 10Gb Ethernet" },
128 [BCM57302] = { "Broadcom BCM57302 NetXtreme-C 10Gb/25Gb Ethernet" },
129 [BCM57304] = { "Broadcom BCM57304 NetXtreme-C 10Gb/25Gb/40Gb/50Gb Ethernet" },
130 [BCM57417_NPAR] = { "Broadcom BCM57417 NetXtreme-E Ethernet Partition" },
131 [BCM58700] = { "Broadcom BCM58700 Nitro 1Gb/2.5Gb/10Gb Ethernet" },
132 [BCM57311] = { "Broadcom BCM57311 NetXtreme-C 10Gb Ethernet" },
133 [BCM57312] = { "Broadcom BCM57312 NetXtreme-C 10Gb/25Gb Ethernet" },
134 [BCM57402] = { "Broadcom BCM57402 NetXtreme-E 10Gb Ethernet" },
135 [BCM57404] = { "Broadcom BCM57404 NetXtreme-E 10Gb/25Gb Ethernet" },
136 [BCM57406] = { "Broadcom BCM57406 NetXtreme-E 10GBase-T Ethernet" },
137 [BCM57402_NPAR] = { "Broadcom BCM57402 NetXtreme-E Ethernet Partition" },
138 [BCM57407] = { "Broadcom BCM57407 NetXtreme-E 10GBase-T Ethernet" },
139 [BCM57412] = { "Broadcom BCM57412 NetXtreme-E 10Gb Ethernet" },
140 [BCM57414] = { "Broadcom BCM57414 NetXtreme-E 10Gb/25Gb Ethernet" },
141 [BCM57416] = { "Broadcom BCM57416 NetXtreme-E 10GBase-T Ethernet" },
142 [BCM57417] = { "Broadcom BCM57417 NetXtreme-E 10GBase-T Ethernet" },
143 [BCM57412_NPAR] = { "Broadcom BCM57412 NetXtreme-E Ethernet Partition" },
144 [BCM57314] = { "Broadcom BCM57314 NetXtreme-C 10Gb/25Gb/40Gb/50Gb Ethernet" },
145 [BCM57417_SFP] = { "Broadcom BCM57417 NetXtreme-E 10Gb/25Gb Ethernet" },
146 [BCM57416_SFP] = { "Broadcom BCM57416 NetXtreme-E 10Gb Ethernet" },
147 [BCM57404_NPAR] = { "Broadcom BCM57404 NetXtreme-E Ethernet Partition" },
148 [BCM57406_NPAR] = { "Broadcom BCM57406 NetXtreme-E Ethernet Partition" },
149 [BCM57407_SFP] = { "Broadcom BCM57407 NetXtreme-E 25Gb Ethernet" },
150 [BCM57407_NPAR] = { "Broadcom BCM57407 NetXtreme-E Ethernet Partition" },
151 [BCM57414_NPAR] = { "Broadcom BCM57414 NetXtreme-E Ethernet Partition" },
152 [BCM57416_NPAR] = { "Broadcom BCM57416 NetXtreme-E Ethernet Partition" },
153 [BCM57452] = { "Broadcom BCM57452 NetXtreme-E 10Gb/25Gb/40Gb/50Gb Ethernet" },
154 [BCM57454] = { "Broadcom BCM57454 NetXtreme-E 10Gb/25Gb/40Gb/50Gb/100Gb Ethernet" },
Vasundhara Volam92abef32018-01-17 03:21:13 -0500155 [BCM5745x_NPAR] = { "Broadcom BCM5745x NetXtreme-E Ethernet Partition" },
Michael Chan1ab968d2018-10-14 07:02:59 -0400156 [BCM57508] = { "Broadcom BCM57508 NetXtreme-E 10Gb/25Gb/50Gb/100Gb/200Gb Ethernet" },
Scott Branden27573a72017-08-28 13:40:29 -0400157 [BCM58802] = { "Broadcom BCM58802 NetXtreme-S 10Gb/25Gb/40Gb/50Gb Ethernet" },
Ray Jui8ed693b2017-10-26 11:51:20 -0400158 [BCM58804] = { "Broadcom BCM58804 NetXtreme-S 10Gb/25Gb/40Gb/50Gb/100Gb Ethernet" },
Scott Branden27573a72017-08-28 13:40:29 -0400159 [BCM58808] = { "Broadcom BCM58808 NetXtreme-S 10Gb/25Gb/40Gb/50Gb/100Gb Ethernet" },
160 [NETXTREME_E_VF] = { "Broadcom NetXtreme-E Ethernet Virtual Function" },
161 [NETXTREME_C_VF] = { "Broadcom NetXtreme-C Ethernet Virtual Function" },
Rob Miller618784e2017-10-26 11:51:21 -0400162 [NETXTREME_S_VF] = { "Broadcom NetXtreme-S Ethernet Virtual Function" },
Michael Chanc0c050c2015-10-22 16:01:17 -0400163};
164
165static const struct pci_device_id bnxt_pci_tbl[] = {
Vasundhara Volam92abef32018-01-17 03:21:13 -0500166 { PCI_VDEVICE(BROADCOM, 0x1604), .driver_data = BCM5745x_NPAR },
167 { PCI_VDEVICE(BROADCOM, 0x1605), .driver_data = BCM5745x_NPAR },
Ray Jui4a581392017-08-28 13:40:28 -0400168 { PCI_VDEVICE(BROADCOM, 0x1614), .driver_data = BCM57454 },
Michael Chanadbc8302016-09-19 03:58:01 -0400169 { PCI_VDEVICE(BROADCOM, 0x16c0), .driver_data = BCM57417_NPAR },
David Christensenfbc9a522015-12-27 18:19:29 -0500170 { PCI_VDEVICE(BROADCOM, 0x16c8), .driver_data = BCM57301 },
Michael Chanc0c050c2015-10-22 16:01:17 -0400171 { PCI_VDEVICE(BROADCOM, 0x16c9), .driver_data = BCM57302 },
172 { PCI_VDEVICE(BROADCOM, 0x16ca), .driver_data = BCM57304 },
Michael Chan1f681682016-07-25 12:33:37 -0400173 { PCI_VDEVICE(BROADCOM, 0x16cc), .driver_data = BCM57417_NPAR },
Prashant Sreedharanfa853dd2016-07-18 07:15:25 -0400174 { PCI_VDEVICE(BROADCOM, 0x16cd), .driver_data = BCM58700 },
Michael Chanb24eb6a2016-06-13 02:25:36 -0400175 { PCI_VDEVICE(BROADCOM, 0x16ce), .driver_data = BCM57311 },
176 { PCI_VDEVICE(BROADCOM, 0x16cf), .driver_data = BCM57312 },
David Christensenfbc9a522015-12-27 18:19:29 -0500177 { PCI_VDEVICE(BROADCOM, 0x16d0), .driver_data = BCM57402 },
Michael Chanc0c050c2015-10-22 16:01:17 -0400178 { PCI_VDEVICE(BROADCOM, 0x16d1), .driver_data = BCM57404 },
179 { PCI_VDEVICE(BROADCOM, 0x16d2), .driver_data = BCM57406 },
Michael Chan1f681682016-07-25 12:33:37 -0400180 { PCI_VDEVICE(BROADCOM, 0x16d4), .driver_data = BCM57402_NPAR },
181 { PCI_VDEVICE(BROADCOM, 0x16d5), .driver_data = BCM57407 },
Michael Chanb24eb6a2016-06-13 02:25:36 -0400182 { PCI_VDEVICE(BROADCOM, 0x16d6), .driver_data = BCM57412 },
183 { PCI_VDEVICE(BROADCOM, 0x16d7), .driver_data = BCM57414 },
184 { PCI_VDEVICE(BROADCOM, 0x16d8), .driver_data = BCM57416 },
185 { PCI_VDEVICE(BROADCOM, 0x16d9), .driver_data = BCM57417 },
Michael Chan1f681682016-07-25 12:33:37 -0400186 { PCI_VDEVICE(BROADCOM, 0x16de), .driver_data = BCM57412_NPAR },
Michael Chan5049e332016-05-15 03:04:50 -0400187 { PCI_VDEVICE(BROADCOM, 0x16df), .driver_data = BCM57314 },
Michael Chan1f681682016-07-25 12:33:37 -0400188 { PCI_VDEVICE(BROADCOM, 0x16e2), .driver_data = BCM57417_SFP },
189 { PCI_VDEVICE(BROADCOM, 0x16e3), .driver_data = BCM57416_SFP },
190 { PCI_VDEVICE(BROADCOM, 0x16e7), .driver_data = BCM57404_NPAR },
191 { PCI_VDEVICE(BROADCOM, 0x16e8), .driver_data = BCM57406_NPAR },
192 { PCI_VDEVICE(BROADCOM, 0x16e9), .driver_data = BCM57407_SFP },
Michael Chanadbc8302016-09-19 03:58:01 -0400193 { PCI_VDEVICE(BROADCOM, 0x16ea), .driver_data = BCM57407_NPAR },
194 { PCI_VDEVICE(BROADCOM, 0x16eb), .driver_data = BCM57412_NPAR },
Michael Chan1f681682016-07-25 12:33:37 -0400195 { PCI_VDEVICE(BROADCOM, 0x16ec), .driver_data = BCM57414_NPAR },
Michael Chanadbc8302016-09-19 03:58:01 -0400196 { PCI_VDEVICE(BROADCOM, 0x16ed), .driver_data = BCM57414_NPAR },
Michael Chan1f681682016-07-25 12:33:37 -0400197 { PCI_VDEVICE(BROADCOM, 0x16ee), .driver_data = BCM57416_NPAR },
Michael Chanadbc8302016-09-19 03:58:01 -0400198 { PCI_VDEVICE(BROADCOM, 0x16ef), .driver_data = BCM57416_NPAR },
Ray Jui4a581392017-08-28 13:40:28 -0400199 { PCI_VDEVICE(BROADCOM, 0x16f0), .driver_data = BCM58808 },
Deepak Khungar32b40792017-02-12 19:18:18 -0500200 { PCI_VDEVICE(BROADCOM, 0x16f1), .driver_data = BCM57452 },
Michael Chan1ab968d2018-10-14 07:02:59 -0400201 { PCI_VDEVICE(BROADCOM, 0x1750), .driver_data = BCM57508 },
Ray Jui4a581392017-08-28 13:40:28 -0400202 { PCI_VDEVICE(BROADCOM, 0xd802), .driver_data = BCM58802 },
Ray Jui8ed693b2017-10-26 11:51:20 -0400203 { PCI_VDEVICE(BROADCOM, 0xd804), .driver_data = BCM58804 },
Michael Chanc0c050c2015-10-22 16:01:17 -0400204#ifdef CONFIG_BNXT_SRIOV
Deepak Khungarc7ef35e2017-05-29 19:06:05 -0400205 { PCI_VDEVICE(BROADCOM, 0x1606), .driver_data = NETXTREME_E_VF },
206 { PCI_VDEVICE(BROADCOM, 0x1609), .driver_data = NETXTREME_E_VF },
Michael Chanadbc8302016-09-19 03:58:01 -0400207 { PCI_VDEVICE(BROADCOM, 0x16c1), .driver_data = NETXTREME_E_VF },
208 { PCI_VDEVICE(BROADCOM, 0x16cb), .driver_data = NETXTREME_C_VF },
209 { PCI_VDEVICE(BROADCOM, 0x16d3), .driver_data = NETXTREME_E_VF },
210 { PCI_VDEVICE(BROADCOM, 0x16dc), .driver_data = NETXTREME_E_VF },
211 { PCI_VDEVICE(BROADCOM, 0x16e1), .driver_data = NETXTREME_C_VF },
212 { PCI_VDEVICE(BROADCOM, 0x16e5), .driver_data = NETXTREME_C_VF },
Rob Miller618784e2017-10-26 11:51:21 -0400213 { PCI_VDEVICE(BROADCOM, 0xd800), .driver_data = NETXTREME_S_VF },
Michael Chanc0c050c2015-10-22 16:01:17 -0400214#endif
215 { 0 }
216};
217
218MODULE_DEVICE_TABLE(pci, bnxt_pci_tbl);
219
220static const u16 bnxt_vf_req_snif[] = {
221 HWRM_FUNC_CFG,
Vasundhara Volam91cdda42018-01-17 03:21:14 -0500222 HWRM_FUNC_VF_CFG,
Michael Chanc0c050c2015-10-22 16:01:17 -0400223 HWRM_PORT_PHY_QCFG,
224 HWRM_CFA_L2_FILTER_ALLOC,
225};
226
Michael Chan25be8622016-04-05 14:09:00 -0400227static const u16 bnxt_async_events_arr[] = {
Michael Chan87c374d2016-12-02 21:17:16 -0500228 ASYNC_EVENT_CMPL_EVENT_ID_LINK_STATUS_CHANGE,
229 ASYNC_EVENT_CMPL_EVENT_ID_PF_DRVR_UNLOAD,
230 ASYNC_EVENT_CMPL_EVENT_ID_PORT_CONN_NOT_ALLOWED,
231 ASYNC_EVENT_CMPL_EVENT_ID_VF_CFG_CHANGE,
232 ASYNC_EVENT_CMPL_EVENT_ID_LINK_SPEED_CFG_CHANGE,
Michael Chan25be8622016-04-05 14:09:00 -0400233};
234
Michael Chanc213eae2017-10-13 21:09:29 -0400235static struct workqueue_struct *bnxt_pf_wq;
236
Michael Chanc0c050c2015-10-22 16:01:17 -0400237static bool bnxt_vf_pciid(enum board_idx idx)
238{
Rob Miller618784e2017-10-26 11:51:21 -0400239 return (idx == NETXTREME_C_VF || idx == NETXTREME_E_VF ||
240 idx == NETXTREME_S_VF);
Michael Chanc0c050c2015-10-22 16:01:17 -0400241}
242
243#define DB_CP_REARM_FLAGS (DB_KEY_CP | DB_IDX_VALID)
244#define DB_CP_FLAGS (DB_KEY_CP | DB_IDX_VALID | DB_IRQ_DIS)
245#define DB_CP_IRQ_DIS_FLAGS (DB_KEY_CP | DB_IRQ_DIS)
246
Michael Chanc0c050c2015-10-22 16:01:17 -0400247#define BNXT_CP_DB_IRQ_DIS(db) \
248 writel(DB_CP_IRQ_DIS_FLAGS, db)
249
Michael Chan697197e2018-10-14 07:02:46 -0400250#define BNXT_DB_CQ(db, idx) \
251 writel(DB_CP_FLAGS | RING_CMP(idx), (db)->doorbell)
252
253#define BNXT_DB_NQ_P5(db, idx) \
254 writeq((db)->db_key64 | DBR_TYPE_NQ | RING_CMP(idx), (db)->doorbell)
255
256#define BNXT_DB_CQ_ARM(db, idx) \
257 writel(DB_CP_REARM_FLAGS | RING_CMP(idx), (db)->doorbell)
258
259#define BNXT_DB_NQ_ARM_P5(db, idx) \
260 writeq((db)->db_key64 | DBR_TYPE_NQ_ARM | RING_CMP(idx), (db)->doorbell)
261
262static void bnxt_db_nq(struct bnxt *bp, struct bnxt_db_info *db, u32 idx)
263{
264 if (bp->flags & BNXT_FLAG_CHIP_P5)
265 BNXT_DB_NQ_P5(db, idx);
266 else
267 BNXT_DB_CQ(db, idx);
268}
269
270static void bnxt_db_nq_arm(struct bnxt *bp, struct bnxt_db_info *db, u32 idx)
271{
272 if (bp->flags & BNXT_FLAG_CHIP_P5)
273 BNXT_DB_NQ_ARM_P5(db, idx);
274 else
275 BNXT_DB_CQ_ARM(db, idx);
276}
277
278static void bnxt_db_cq(struct bnxt *bp, struct bnxt_db_info *db, u32 idx)
279{
280 if (bp->flags & BNXT_FLAG_CHIP_P5)
281 writeq(db->db_key64 | DBR_TYPE_CQ_ARMALL | RING_CMP(idx),
282 db->doorbell);
283 else
284 BNXT_DB_CQ(db, idx);
285}
286
Michael Chan38413402017-02-06 16:55:43 -0500287const u16 bnxt_lhint_arr[] = {
Michael Chanc0c050c2015-10-22 16:01:17 -0400288 TX_BD_FLAGS_LHINT_512_AND_SMALLER,
289 TX_BD_FLAGS_LHINT_512_TO_1023,
290 TX_BD_FLAGS_LHINT_1024_TO_2047,
291 TX_BD_FLAGS_LHINT_1024_TO_2047,
292 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
293 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
294 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
295 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
296 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
297 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
298 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
299 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
300 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
301 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
302 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
303 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
304 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
305 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
306 TX_BD_FLAGS_LHINT_2048_AND_LARGER,
307};
308
Sathya Perlaee5c7fb2017-07-24 12:34:28 -0400309static u16 bnxt_xmit_get_cfa_action(struct sk_buff *skb)
310{
311 struct metadata_dst *md_dst = skb_metadata_dst(skb);
312
313 if (!md_dst || md_dst->type != METADATA_HW_PORT_MUX)
314 return 0;
315
316 return md_dst->u.port_info.port_id;
317}
318
Michael Chanc0c050c2015-10-22 16:01:17 -0400319static netdev_tx_t bnxt_start_xmit(struct sk_buff *skb, struct net_device *dev)
320{
321 struct bnxt *bp = netdev_priv(dev);
322 struct tx_bd *txbd;
323 struct tx_bd_ext *txbd1;
324 struct netdev_queue *txq;
325 int i;
326 dma_addr_t mapping;
327 unsigned int length, pad = 0;
328 u32 len, free_size, vlan_tag_flags, cfa_action, flags;
329 u16 prod, last_frag;
330 struct pci_dev *pdev = bp->pdev;
Michael Chanc0c050c2015-10-22 16:01:17 -0400331 struct bnxt_tx_ring_info *txr;
332 struct bnxt_sw_tx_bd *tx_buf;
333
334 i = skb_get_queue_mapping(skb);
335 if (unlikely(i >= bp->tx_nr_rings)) {
336 dev_kfree_skb_any(skb);
337 return NETDEV_TX_OK;
338 }
339
Michael Chanc0c050c2015-10-22 16:01:17 -0400340 txq = netdev_get_tx_queue(dev, i);
Michael Chana960dec2017-02-06 16:55:39 -0500341 txr = &bp->tx_ring[bp->tx_ring_map[i]];
Michael Chanc0c050c2015-10-22 16:01:17 -0400342 prod = txr->tx_prod;
343
344 free_size = bnxt_tx_avail(bp, txr);
345 if (unlikely(free_size < skb_shinfo(skb)->nr_frags + 2)) {
346 netif_tx_stop_queue(txq);
347 return NETDEV_TX_BUSY;
348 }
349
350 length = skb->len;
351 len = skb_headlen(skb);
352 last_frag = skb_shinfo(skb)->nr_frags;
353
354 txbd = &txr->tx_desc_ring[TX_RING(prod)][TX_IDX(prod)];
355
356 txbd->tx_bd_opaque = prod;
357
358 tx_buf = &txr->tx_buf_ring[prod];
359 tx_buf->skb = skb;
360 tx_buf->nr_frags = last_frag;
361
362 vlan_tag_flags = 0;
Sathya Perlaee5c7fb2017-07-24 12:34:28 -0400363 cfa_action = bnxt_xmit_get_cfa_action(skb);
Michael Chanc0c050c2015-10-22 16:01:17 -0400364 if (skb_vlan_tag_present(skb)) {
365 vlan_tag_flags = TX_BD_CFA_META_KEY_VLAN |
366 skb_vlan_tag_get(skb);
367 /* Currently supports 8021Q, 8021AD vlan offloads
368 * QINQ1, QINQ2, QINQ3 vlan headers are deprecated
369 */
370 if (skb->vlan_proto == htons(ETH_P_8021Q))
371 vlan_tag_flags |= 1 << TX_BD_CFA_META_TPID_SHIFT;
372 }
373
374 if (free_size == bp->tx_ring_size && length <= bp->tx_push_thresh) {
Michael Chan4419dbe2016-02-10 17:33:49 -0500375 struct tx_push_buffer *tx_push_buf = txr->tx_push;
376 struct tx_push_bd *tx_push = &tx_push_buf->push_bd;
377 struct tx_bd_ext *tx_push1 = &tx_push->txbd2;
Michael Chan697197e2018-10-14 07:02:46 -0400378 void __iomem *db = txr->tx_db.doorbell;
Michael Chan4419dbe2016-02-10 17:33:49 -0500379 void *pdata = tx_push_buf->data;
380 u64 *end;
381 int j, push_len;
Michael Chanc0c050c2015-10-22 16:01:17 -0400382
383 /* Set COAL_NOW to be ready quickly for the next push */
384 tx_push->tx_bd_len_flags_type =
385 cpu_to_le32((length << TX_BD_LEN_SHIFT) |
386 TX_BD_TYPE_LONG_TX_BD |
387 TX_BD_FLAGS_LHINT_512_AND_SMALLER |
388 TX_BD_FLAGS_COAL_NOW |
389 TX_BD_FLAGS_PACKET_END |
390 (2 << TX_BD_FLAGS_BD_CNT_SHIFT));
391
392 if (skb->ip_summed == CHECKSUM_PARTIAL)
393 tx_push1->tx_bd_hsize_lflags =
394 cpu_to_le32(TX_BD_FLAGS_TCP_UDP_CHKSUM);
395 else
396 tx_push1->tx_bd_hsize_lflags = 0;
397
398 tx_push1->tx_bd_cfa_meta = cpu_to_le32(vlan_tag_flags);
Sathya Perlaee5c7fb2017-07-24 12:34:28 -0400399 tx_push1->tx_bd_cfa_action =
400 cpu_to_le32(cfa_action << TX_BD_CFA_ACTION_SHIFT);
Michael Chanc0c050c2015-10-22 16:01:17 -0400401
Michael Chanfbb0fa82016-02-22 02:10:26 -0500402 end = pdata + length;
403 end = PTR_ALIGN(end, 8) - 1;
Michael Chan4419dbe2016-02-10 17:33:49 -0500404 *end = 0;
405
Michael Chanc0c050c2015-10-22 16:01:17 -0400406 skb_copy_from_linear_data(skb, pdata, len);
407 pdata += len;
408 for (j = 0; j < last_frag; j++) {
409 skb_frag_t *frag = &skb_shinfo(skb)->frags[j];
410 void *fptr;
411
412 fptr = skb_frag_address_safe(frag);
413 if (!fptr)
414 goto normal_tx;
415
416 memcpy(pdata, fptr, skb_frag_size(frag));
417 pdata += skb_frag_size(frag);
418 }
419
Michael Chan4419dbe2016-02-10 17:33:49 -0500420 txbd->tx_bd_len_flags_type = tx_push->tx_bd_len_flags_type;
421 txbd->tx_bd_haddr = txr->data_mapping;
Michael Chanc0c050c2015-10-22 16:01:17 -0400422 prod = NEXT_TX(prod);
423 txbd = &txr->tx_desc_ring[TX_RING(prod)][TX_IDX(prod)];
424 memcpy(txbd, tx_push1, sizeof(*txbd));
425 prod = NEXT_TX(prod);
Michael Chan4419dbe2016-02-10 17:33:49 -0500426 tx_push->doorbell =
Michael Chanc0c050c2015-10-22 16:01:17 -0400427 cpu_to_le32(DB_KEY_TX_PUSH | DB_LONG_TX_PUSH | prod);
428 txr->tx_prod = prod;
429
Michael Chanb9a84602016-06-06 02:37:14 -0400430 tx_buf->is_push = 1;
Michael Chanc0c050c2015-10-22 16:01:17 -0400431 netdev_tx_sent_queue(txq, skb->len);
Michael Chanb9a84602016-06-06 02:37:14 -0400432 wmb(); /* Sync is_push and byte queue before pushing data */
Michael Chanc0c050c2015-10-22 16:01:17 -0400433
Michael Chan4419dbe2016-02-10 17:33:49 -0500434 push_len = (length + sizeof(*tx_push) + 7) / 8;
435 if (push_len > 16) {
Michael Chan697197e2018-10-14 07:02:46 -0400436 __iowrite64_copy(db, tx_push_buf, 16);
437 __iowrite32_copy(db + 4, tx_push_buf + 1,
Michael Chan9d137442016-09-05 01:57:35 -0400438 (push_len - 16) << 1);
Michael Chan4419dbe2016-02-10 17:33:49 -0500439 } else {
Michael Chan697197e2018-10-14 07:02:46 -0400440 __iowrite64_copy(db, tx_push_buf, push_len);
Michael Chan4419dbe2016-02-10 17:33:49 -0500441 }
Michael Chanc0c050c2015-10-22 16:01:17 -0400442
Michael Chanc0c050c2015-10-22 16:01:17 -0400443 goto tx_done;
444 }
445
446normal_tx:
447 if (length < BNXT_MIN_PKT_SIZE) {
448 pad = BNXT_MIN_PKT_SIZE - length;
449 if (skb_pad(skb, pad)) {
450 /* SKB already freed. */
451 tx_buf->skb = NULL;
452 return NETDEV_TX_OK;
453 }
454 length = BNXT_MIN_PKT_SIZE;
455 }
456
457 mapping = dma_map_single(&pdev->dev, skb->data, len, DMA_TO_DEVICE);
458
459 if (unlikely(dma_mapping_error(&pdev->dev, mapping))) {
460 dev_kfree_skb_any(skb);
461 tx_buf->skb = NULL;
462 return NETDEV_TX_OK;
463 }
464
465 dma_unmap_addr_set(tx_buf, mapping, mapping);
466 flags = (len << TX_BD_LEN_SHIFT) | TX_BD_TYPE_LONG_TX_BD |
467 ((last_frag + 2) << TX_BD_FLAGS_BD_CNT_SHIFT);
468
469 txbd->tx_bd_haddr = cpu_to_le64(mapping);
470
471 prod = NEXT_TX(prod);
472 txbd1 = (struct tx_bd_ext *)
473 &txr->tx_desc_ring[TX_RING(prod)][TX_IDX(prod)];
474
475 txbd1->tx_bd_hsize_lflags = 0;
476 if (skb_is_gso(skb)) {
477 u32 hdr_len;
478
479 if (skb->encapsulation)
480 hdr_len = skb_inner_network_offset(skb) +
481 skb_inner_network_header_len(skb) +
482 inner_tcp_hdrlen(skb);
483 else
484 hdr_len = skb_transport_offset(skb) +
485 tcp_hdrlen(skb);
486
487 txbd1->tx_bd_hsize_lflags = cpu_to_le32(TX_BD_FLAGS_LSO |
488 TX_BD_FLAGS_T_IPID |
489 (hdr_len << (TX_BD_HSIZE_SHIFT - 1)));
490 length = skb_shinfo(skb)->gso_size;
491 txbd1->tx_bd_mss = cpu_to_le32(length);
492 length += hdr_len;
493 } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
494 txbd1->tx_bd_hsize_lflags =
495 cpu_to_le32(TX_BD_FLAGS_TCP_UDP_CHKSUM);
496 txbd1->tx_bd_mss = 0;
497 }
498
499 length >>= 9;
500 flags |= bnxt_lhint_arr[length];
501 txbd->tx_bd_len_flags_type = cpu_to_le32(flags);
502
503 txbd1->tx_bd_cfa_meta = cpu_to_le32(vlan_tag_flags);
Sathya Perlaee5c7fb2017-07-24 12:34:28 -0400504 txbd1->tx_bd_cfa_action =
505 cpu_to_le32(cfa_action << TX_BD_CFA_ACTION_SHIFT);
Michael Chanc0c050c2015-10-22 16:01:17 -0400506 for (i = 0; i < last_frag; i++) {
507 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
508
509 prod = NEXT_TX(prod);
510 txbd = &txr->tx_desc_ring[TX_RING(prod)][TX_IDX(prod)];
511
512 len = skb_frag_size(frag);
513 mapping = skb_frag_dma_map(&pdev->dev, frag, 0, len,
514 DMA_TO_DEVICE);
515
516 if (unlikely(dma_mapping_error(&pdev->dev, mapping)))
517 goto tx_dma_error;
518
519 tx_buf = &txr->tx_buf_ring[prod];
520 dma_unmap_addr_set(tx_buf, mapping, mapping);
521
522 txbd->tx_bd_haddr = cpu_to_le64(mapping);
523
524 flags = len << TX_BD_LEN_SHIFT;
525 txbd->tx_bd_len_flags_type = cpu_to_le32(flags);
526 }
527
528 flags &= ~TX_BD_LEN;
529 txbd->tx_bd_len_flags_type =
530 cpu_to_le32(((len + pad) << TX_BD_LEN_SHIFT) | flags |
531 TX_BD_FLAGS_PACKET_END);
532
533 netdev_tx_sent_queue(txq, skb->len);
534
535 /* Sync BD data before updating doorbell */
536 wmb();
537
538 prod = NEXT_TX(prod);
539 txr->tx_prod = prod;
540
Michael Chanffe40642017-05-30 20:03:00 -0400541 if (!skb->xmit_more || netif_xmit_stopped(txq))
Michael Chan697197e2018-10-14 07:02:46 -0400542 bnxt_db_write(bp, &txr->tx_db, prod);
Michael Chanc0c050c2015-10-22 16:01:17 -0400543
544tx_done:
545
546 mmiowb();
547
548 if (unlikely(bnxt_tx_avail(bp, txr) <= MAX_SKB_FRAGS + 1)) {
Michael Chan4d172f22017-05-29 19:06:09 -0400549 if (skb->xmit_more && !tx_buf->is_push)
Michael Chan697197e2018-10-14 07:02:46 -0400550 bnxt_db_write(bp, &txr->tx_db, prod);
Michael Chan4d172f22017-05-29 19:06:09 -0400551
Michael Chanc0c050c2015-10-22 16:01:17 -0400552 netif_tx_stop_queue(txq);
553
554 /* netif_tx_stop_queue() must be done before checking
555 * tx index in bnxt_tx_avail() below, because in
556 * bnxt_tx_int(), we update tx index before checking for
557 * netif_tx_queue_stopped().
558 */
559 smp_mb();
560 if (bnxt_tx_avail(bp, txr) > bp->tx_wake_thresh)
561 netif_tx_wake_queue(txq);
562 }
563 return NETDEV_TX_OK;
564
565tx_dma_error:
566 last_frag = i;
567
568 /* start back at beginning and unmap skb */
569 prod = txr->tx_prod;
570 tx_buf = &txr->tx_buf_ring[prod];
571 tx_buf->skb = NULL;
572 dma_unmap_single(&pdev->dev, dma_unmap_addr(tx_buf, mapping),
573 skb_headlen(skb), PCI_DMA_TODEVICE);
574 prod = NEXT_TX(prod);
575
576 /* unmap remaining mapped pages */
577 for (i = 0; i < last_frag; i++) {
578 prod = NEXT_TX(prod);
579 tx_buf = &txr->tx_buf_ring[prod];
580 dma_unmap_page(&pdev->dev, dma_unmap_addr(tx_buf, mapping),
581 skb_frag_size(&skb_shinfo(skb)->frags[i]),
582 PCI_DMA_TODEVICE);
583 }
584
585 dev_kfree_skb_any(skb);
586 return NETDEV_TX_OK;
587}
588
589static void bnxt_tx_int(struct bnxt *bp, struct bnxt_napi *bnapi, int nr_pkts)
590{
Michael Chanb6ab4b02016-01-02 23:44:59 -0500591 struct bnxt_tx_ring_info *txr = bnapi->tx_ring;
Michael Chana960dec2017-02-06 16:55:39 -0500592 struct netdev_queue *txq = netdev_get_tx_queue(bp->dev, txr->txq_index);
Michael Chanc0c050c2015-10-22 16:01:17 -0400593 u16 cons = txr->tx_cons;
594 struct pci_dev *pdev = bp->pdev;
595 int i;
596 unsigned int tx_bytes = 0;
597
598 for (i = 0; i < nr_pkts; i++) {
599 struct bnxt_sw_tx_bd *tx_buf;
600 struct sk_buff *skb;
601 int j, last;
602
603 tx_buf = &txr->tx_buf_ring[cons];
604 cons = NEXT_TX(cons);
605 skb = tx_buf->skb;
606 tx_buf->skb = NULL;
607
608 if (tx_buf->is_push) {
609 tx_buf->is_push = 0;
610 goto next_tx_int;
611 }
612
613 dma_unmap_single(&pdev->dev, dma_unmap_addr(tx_buf, mapping),
614 skb_headlen(skb), PCI_DMA_TODEVICE);
615 last = tx_buf->nr_frags;
616
617 for (j = 0; j < last; j++) {
618 cons = NEXT_TX(cons);
619 tx_buf = &txr->tx_buf_ring[cons];
620 dma_unmap_page(
621 &pdev->dev,
622 dma_unmap_addr(tx_buf, mapping),
623 skb_frag_size(&skb_shinfo(skb)->frags[j]),
624 PCI_DMA_TODEVICE);
625 }
626
627next_tx_int:
628 cons = NEXT_TX(cons);
629
630 tx_bytes += skb->len;
631 dev_kfree_skb_any(skb);
632 }
633
634 netdev_tx_completed_queue(txq, nr_pkts, tx_bytes);
635 txr->tx_cons = cons;
636
637 /* Need to make the tx_cons update visible to bnxt_start_xmit()
638 * before checking for netif_tx_queue_stopped(). Without the
639 * memory barrier, there is a small possibility that bnxt_start_xmit()
640 * will miss it and cause the queue to be stopped forever.
641 */
642 smp_mb();
643
644 if (unlikely(netif_tx_queue_stopped(txq)) &&
645 (bnxt_tx_avail(bp, txr) > bp->tx_wake_thresh)) {
646 __netif_tx_lock(txq, smp_processor_id());
647 if (netif_tx_queue_stopped(txq) &&
648 bnxt_tx_avail(bp, txr) > bp->tx_wake_thresh &&
649 txr->dev_state != BNXT_DEV_STATE_CLOSING)
650 netif_tx_wake_queue(txq);
651 __netif_tx_unlock(txq);
652 }
653}
654
Michael Chanc61fb992017-02-06 16:55:36 -0500655static struct page *__bnxt_alloc_rx_page(struct bnxt *bp, dma_addr_t *mapping,
656 gfp_t gfp)
657{
658 struct device *dev = &bp->pdev->dev;
659 struct page *page;
660
661 page = alloc_page(gfp);
662 if (!page)
663 return NULL;
664
Shannon Nelsonc519fe92017-05-09 18:30:12 -0700665 *mapping = dma_map_page_attrs(dev, page, 0, PAGE_SIZE, bp->rx_dir,
666 DMA_ATTR_WEAK_ORDERING);
Michael Chanc61fb992017-02-06 16:55:36 -0500667 if (dma_mapping_error(dev, *mapping)) {
668 __free_page(page);
669 return NULL;
670 }
671 *mapping += bp->rx_dma_offset;
672 return page;
673}
674
Michael Chanc0c050c2015-10-22 16:01:17 -0400675static inline u8 *__bnxt_alloc_rx_data(struct bnxt *bp, dma_addr_t *mapping,
676 gfp_t gfp)
677{
678 u8 *data;
679 struct pci_dev *pdev = bp->pdev;
680
681 data = kmalloc(bp->rx_buf_size, gfp);
682 if (!data)
683 return NULL;
684
Shannon Nelsonc519fe92017-05-09 18:30:12 -0700685 *mapping = dma_map_single_attrs(&pdev->dev, data + bp->rx_dma_offset,
686 bp->rx_buf_use_size, bp->rx_dir,
687 DMA_ATTR_WEAK_ORDERING);
Michael Chanc0c050c2015-10-22 16:01:17 -0400688
689 if (dma_mapping_error(&pdev->dev, *mapping)) {
690 kfree(data);
691 data = NULL;
692 }
693 return data;
694}
695
Michael Chan38413402017-02-06 16:55:43 -0500696int bnxt_alloc_rx_data(struct bnxt *bp, struct bnxt_rx_ring_info *rxr,
697 u16 prod, gfp_t gfp)
Michael Chanc0c050c2015-10-22 16:01:17 -0400698{
699 struct rx_bd *rxbd = &rxr->rx_desc_ring[RX_RING(prod)][RX_IDX(prod)];
700 struct bnxt_sw_rx_bd *rx_buf = &rxr->rx_buf_ring[prod];
Michael Chanc0c050c2015-10-22 16:01:17 -0400701 dma_addr_t mapping;
702
Michael Chanc61fb992017-02-06 16:55:36 -0500703 if (BNXT_RX_PAGE_MODE(bp)) {
704 struct page *page = __bnxt_alloc_rx_page(bp, &mapping, gfp);
Michael Chanc0c050c2015-10-22 16:01:17 -0400705
Michael Chanc61fb992017-02-06 16:55:36 -0500706 if (!page)
707 return -ENOMEM;
708
709 rx_buf->data = page;
710 rx_buf->data_ptr = page_address(page) + bp->rx_offset;
711 } else {
712 u8 *data = __bnxt_alloc_rx_data(bp, &mapping, gfp);
713
714 if (!data)
715 return -ENOMEM;
716
717 rx_buf->data = data;
718 rx_buf->data_ptr = data + bp->rx_offset;
719 }
Michael Chan11cd1192017-02-06 16:55:33 -0500720 rx_buf->mapping = mapping;
Michael Chanc0c050c2015-10-22 16:01:17 -0400721
722 rxbd->rx_bd_haddr = cpu_to_le64(mapping);
Michael Chanc0c050c2015-10-22 16:01:17 -0400723 return 0;
724}
725
Michael Chanc6d30e82017-02-06 16:55:42 -0500726void bnxt_reuse_rx_data(struct bnxt_rx_ring_info *rxr, u16 cons, void *data)
Michael Chanc0c050c2015-10-22 16:01:17 -0400727{
728 u16 prod = rxr->rx_prod;
729 struct bnxt_sw_rx_bd *cons_rx_buf, *prod_rx_buf;
730 struct rx_bd *cons_bd, *prod_bd;
731
732 prod_rx_buf = &rxr->rx_buf_ring[prod];
733 cons_rx_buf = &rxr->rx_buf_ring[cons];
734
735 prod_rx_buf->data = data;
Michael Chan6bb19472017-02-06 16:55:32 -0500736 prod_rx_buf->data_ptr = cons_rx_buf->data_ptr;
Michael Chanc0c050c2015-10-22 16:01:17 -0400737
Michael Chan11cd1192017-02-06 16:55:33 -0500738 prod_rx_buf->mapping = cons_rx_buf->mapping;
Michael Chanc0c050c2015-10-22 16:01:17 -0400739
740 prod_bd = &rxr->rx_desc_ring[RX_RING(prod)][RX_IDX(prod)];
741 cons_bd = &rxr->rx_desc_ring[RX_RING(cons)][RX_IDX(cons)];
742
743 prod_bd->rx_bd_haddr = cons_bd->rx_bd_haddr;
744}
745
746static inline u16 bnxt_find_next_agg_idx(struct bnxt_rx_ring_info *rxr, u16 idx)
747{
748 u16 next, max = rxr->rx_agg_bmap_size;
749
750 next = find_next_zero_bit(rxr->rx_agg_bmap, max, idx);
751 if (next >= max)
752 next = find_first_zero_bit(rxr->rx_agg_bmap, max);
753 return next;
754}
755
756static inline int bnxt_alloc_rx_page(struct bnxt *bp,
757 struct bnxt_rx_ring_info *rxr,
758 u16 prod, gfp_t gfp)
759{
760 struct rx_bd *rxbd =
761 &rxr->rx_agg_desc_ring[RX_RING(prod)][RX_IDX(prod)];
762 struct bnxt_sw_rx_agg_bd *rx_agg_buf;
763 struct pci_dev *pdev = bp->pdev;
764 struct page *page;
765 dma_addr_t mapping;
766 u16 sw_prod = rxr->rx_sw_agg_prod;
Michael Chan89d0a062016-04-25 02:30:51 -0400767 unsigned int offset = 0;
Michael Chanc0c050c2015-10-22 16:01:17 -0400768
Michael Chan89d0a062016-04-25 02:30:51 -0400769 if (PAGE_SIZE > BNXT_RX_PAGE_SIZE) {
770 page = rxr->rx_page;
771 if (!page) {
772 page = alloc_page(gfp);
773 if (!page)
774 return -ENOMEM;
775 rxr->rx_page = page;
776 rxr->rx_page_offset = 0;
777 }
778 offset = rxr->rx_page_offset;
779 rxr->rx_page_offset += BNXT_RX_PAGE_SIZE;
780 if (rxr->rx_page_offset == PAGE_SIZE)
781 rxr->rx_page = NULL;
782 else
783 get_page(page);
784 } else {
785 page = alloc_page(gfp);
786 if (!page)
787 return -ENOMEM;
788 }
Michael Chanc0c050c2015-10-22 16:01:17 -0400789
Shannon Nelsonc519fe92017-05-09 18:30:12 -0700790 mapping = dma_map_page_attrs(&pdev->dev, page, offset,
791 BNXT_RX_PAGE_SIZE, PCI_DMA_FROMDEVICE,
792 DMA_ATTR_WEAK_ORDERING);
Michael Chanc0c050c2015-10-22 16:01:17 -0400793 if (dma_mapping_error(&pdev->dev, mapping)) {
794 __free_page(page);
795 return -EIO;
796 }
797
798 if (unlikely(test_bit(sw_prod, rxr->rx_agg_bmap)))
799 sw_prod = bnxt_find_next_agg_idx(rxr, sw_prod);
800
801 __set_bit(sw_prod, rxr->rx_agg_bmap);
802 rx_agg_buf = &rxr->rx_agg_ring[sw_prod];
803 rxr->rx_sw_agg_prod = NEXT_RX_AGG(sw_prod);
804
805 rx_agg_buf->page = page;
Michael Chan89d0a062016-04-25 02:30:51 -0400806 rx_agg_buf->offset = offset;
Michael Chanc0c050c2015-10-22 16:01:17 -0400807 rx_agg_buf->mapping = mapping;
808 rxbd->rx_bd_haddr = cpu_to_le64(mapping);
809 rxbd->rx_bd_opaque = sw_prod;
810 return 0;
811}
812
Michael Chane44758b2018-10-14 07:02:55 -0400813static void bnxt_reuse_rx_agg_bufs(struct bnxt_cp_ring_info *cpr, u16 cp_cons,
Michael Chanc0c050c2015-10-22 16:01:17 -0400814 u32 agg_bufs)
815{
Michael Chane44758b2018-10-14 07:02:55 -0400816 struct bnxt_napi *bnapi = cpr->bnapi;
Michael Chanc0c050c2015-10-22 16:01:17 -0400817 struct bnxt *bp = bnapi->bp;
Michael Chanb6ab4b02016-01-02 23:44:59 -0500818 struct bnxt_rx_ring_info *rxr = bnapi->rx_ring;
Michael Chanc0c050c2015-10-22 16:01:17 -0400819 u16 prod = rxr->rx_agg_prod;
820 u16 sw_prod = rxr->rx_sw_agg_prod;
821 u32 i;
822
823 for (i = 0; i < agg_bufs; i++) {
824 u16 cons;
825 struct rx_agg_cmp *agg;
826 struct bnxt_sw_rx_agg_bd *cons_rx_buf, *prod_rx_buf;
827 struct rx_bd *prod_bd;
828 struct page *page;
829
830 agg = (struct rx_agg_cmp *)
831 &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)];
832 cons = agg->rx_agg_cmp_opaque;
833 __clear_bit(cons, rxr->rx_agg_bmap);
834
835 if (unlikely(test_bit(sw_prod, rxr->rx_agg_bmap)))
836 sw_prod = bnxt_find_next_agg_idx(rxr, sw_prod);
837
838 __set_bit(sw_prod, rxr->rx_agg_bmap);
839 prod_rx_buf = &rxr->rx_agg_ring[sw_prod];
840 cons_rx_buf = &rxr->rx_agg_ring[cons];
841
842 /* It is possible for sw_prod to be equal to cons, so
843 * set cons_rx_buf->page to NULL first.
844 */
845 page = cons_rx_buf->page;
846 cons_rx_buf->page = NULL;
847 prod_rx_buf->page = page;
Michael Chan89d0a062016-04-25 02:30:51 -0400848 prod_rx_buf->offset = cons_rx_buf->offset;
Michael Chanc0c050c2015-10-22 16:01:17 -0400849
850 prod_rx_buf->mapping = cons_rx_buf->mapping;
851
852 prod_bd = &rxr->rx_agg_desc_ring[RX_RING(prod)][RX_IDX(prod)];
853
854 prod_bd->rx_bd_haddr = cpu_to_le64(cons_rx_buf->mapping);
855 prod_bd->rx_bd_opaque = sw_prod;
856
857 prod = NEXT_RX_AGG(prod);
858 sw_prod = NEXT_RX_AGG(sw_prod);
859 cp_cons = NEXT_CMP(cp_cons);
860 }
861 rxr->rx_agg_prod = prod;
862 rxr->rx_sw_agg_prod = sw_prod;
863}
864
Michael Chanc61fb992017-02-06 16:55:36 -0500865static struct sk_buff *bnxt_rx_page_skb(struct bnxt *bp,
866 struct bnxt_rx_ring_info *rxr,
867 u16 cons, void *data, u8 *data_ptr,
868 dma_addr_t dma_addr,
869 unsigned int offset_and_len)
870{
871 unsigned int payload = offset_and_len >> 16;
872 unsigned int len = offset_and_len & 0xffff;
873 struct skb_frag_struct *frag;
874 struct page *page = data;
875 u16 prod = rxr->rx_prod;
876 struct sk_buff *skb;
877 int off, err;
878
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 dma_addr -= bp->rx_dma_offset;
Shannon Nelsonc519fe92017-05-09 18:30:12 -0700885 dma_unmap_page_attrs(&bp->pdev->dev, dma_addr, PAGE_SIZE, bp->rx_dir,
886 DMA_ATTR_WEAK_ORDERING);
Michael Chanc61fb992017-02-06 16:55:36 -0500887
888 if (unlikely(!payload))
889 payload = eth_get_headlen(data_ptr, len);
890
891 skb = napi_alloc_skb(&rxr->bnapi->napi, payload);
892 if (!skb) {
893 __free_page(page);
894 return NULL;
895 }
896
897 off = (void *)data_ptr - page_address(page);
898 skb_add_rx_frag(skb, 0, page, off, len, PAGE_SIZE);
899 memcpy(skb->data - NET_IP_ALIGN, data_ptr - NET_IP_ALIGN,
900 payload + NET_IP_ALIGN);
901
902 frag = &skb_shinfo(skb)->frags[0];
903 skb_frag_size_sub(frag, payload);
904 frag->page_offset += payload;
905 skb->data_len -= payload;
906 skb->tail += payload;
907
908 return skb;
909}
910
Michael Chanc0c050c2015-10-22 16:01:17 -0400911static struct sk_buff *bnxt_rx_skb(struct bnxt *bp,
912 struct bnxt_rx_ring_info *rxr, u16 cons,
Michael Chan6bb19472017-02-06 16:55:32 -0500913 void *data, u8 *data_ptr,
914 dma_addr_t dma_addr,
915 unsigned int offset_and_len)
Michael Chanc0c050c2015-10-22 16:01:17 -0400916{
Michael Chan6bb19472017-02-06 16:55:32 -0500917 u16 prod = rxr->rx_prod;
Michael Chanc0c050c2015-10-22 16:01:17 -0400918 struct sk_buff *skb;
Michael Chan6bb19472017-02-06 16:55:32 -0500919 int err;
Michael Chanc0c050c2015-10-22 16:01:17 -0400920
921 err = bnxt_alloc_rx_data(bp, rxr, prod, GFP_ATOMIC);
922 if (unlikely(err)) {
923 bnxt_reuse_rx_data(rxr, cons, data);
924 return NULL;
925 }
926
927 skb = build_skb(data, 0);
Shannon Nelsonc519fe92017-05-09 18:30:12 -0700928 dma_unmap_single_attrs(&bp->pdev->dev, dma_addr, bp->rx_buf_use_size,
929 bp->rx_dir, DMA_ATTR_WEAK_ORDERING);
Michael Chanc0c050c2015-10-22 16:01:17 -0400930 if (!skb) {
931 kfree(data);
932 return NULL;
933 }
934
Michael Chanb3dba772017-02-06 16:55:35 -0500935 skb_reserve(skb, bp->rx_offset);
Michael Chan6bb19472017-02-06 16:55:32 -0500936 skb_put(skb, offset_and_len & 0xffff);
Michael Chanc0c050c2015-10-22 16:01:17 -0400937 return skb;
938}
939
Michael Chane44758b2018-10-14 07:02:55 -0400940static struct sk_buff *bnxt_rx_pages(struct bnxt *bp,
941 struct bnxt_cp_ring_info *cpr,
Michael Chanc0c050c2015-10-22 16:01:17 -0400942 struct sk_buff *skb, u16 cp_cons,
943 u32 agg_bufs)
944{
Michael Chane44758b2018-10-14 07:02:55 -0400945 struct bnxt_napi *bnapi = cpr->bnapi;
Michael Chanc0c050c2015-10-22 16:01:17 -0400946 struct pci_dev *pdev = bp->pdev;
Michael Chanb6ab4b02016-01-02 23:44:59 -0500947 struct bnxt_rx_ring_info *rxr = bnapi->rx_ring;
Michael Chanc0c050c2015-10-22 16:01:17 -0400948 u16 prod = rxr->rx_agg_prod;
949 u32 i;
950
951 for (i = 0; i < agg_bufs; i++) {
952 u16 cons, frag_len;
953 struct rx_agg_cmp *agg;
954 struct bnxt_sw_rx_agg_bd *cons_rx_buf;
955 struct page *page;
956 dma_addr_t mapping;
957
958 agg = (struct rx_agg_cmp *)
959 &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)];
960 cons = agg->rx_agg_cmp_opaque;
961 frag_len = (le32_to_cpu(agg->rx_agg_cmp_len_flags_type) &
962 RX_AGG_CMP_LEN) >> RX_AGG_CMP_LEN_SHIFT;
963
964 cons_rx_buf = &rxr->rx_agg_ring[cons];
Michael Chan89d0a062016-04-25 02:30:51 -0400965 skb_fill_page_desc(skb, i, cons_rx_buf->page,
966 cons_rx_buf->offset, frag_len);
Michael Chanc0c050c2015-10-22 16:01:17 -0400967 __clear_bit(cons, rxr->rx_agg_bmap);
968
969 /* It is possible for bnxt_alloc_rx_page() to allocate
970 * a sw_prod index that equals the cons index, so we
971 * need to clear the cons entry now.
972 */
Michael Chan11cd1192017-02-06 16:55:33 -0500973 mapping = cons_rx_buf->mapping;
Michael Chanc0c050c2015-10-22 16:01:17 -0400974 page = cons_rx_buf->page;
975 cons_rx_buf->page = NULL;
976
977 if (bnxt_alloc_rx_page(bp, rxr, prod, GFP_ATOMIC) != 0) {
978 struct skb_shared_info *shinfo;
979 unsigned int nr_frags;
980
981 shinfo = skb_shinfo(skb);
982 nr_frags = --shinfo->nr_frags;
983 __skb_frag_set_page(&shinfo->frags[nr_frags], NULL);
984
985 dev_kfree_skb(skb);
986
987 cons_rx_buf->page = page;
988
989 /* Update prod since possibly some pages have been
990 * allocated already.
991 */
992 rxr->rx_agg_prod = prod;
Michael Chane44758b2018-10-14 07:02:55 -0400993 bnxt_reuse_rx_agg_bufs(cpr, cp_cons, agg_bufs - i);
Michael Chanc0c050c2015-10-22 16:01:17 -0400994 return NULL;
995 }
996
Shannon Nelsonc519fe92017-05-09 18:30:12 -0700997 dma_unmap_page_attrs(&pdev->dev, mapping, BNXT_RX_PAGE_SIZE,
998 PCI_DMA_FROMDEVICE,
999 DMA_ATTR_WEAK_ORDERING);
Michael Chanc0c050c2015-10-22 16:01:17 -04001000
1001 skb->data_len += frag_len;
1002 skb->len += frag_len;
1003 skb->truesize += PAGE_SIZE;
1004
1005 prod = NEXT_RX_AGG(prod);
1006 cp_cons = NEXT_CMP(cp_cons);
1007 }
1008 rxr->rx_agg_prod = prod;
1009 return skb;
1010}
1011
1012static int bnxt_agg_bufs_valid(struct bnxt *bp, struct bnxt_cp_ring_info *cpr,
1013 u8 agg_bufs, u32 *raw_cons)
1014{
1015 u16 last;
1016 struct rx_agg_cmp *agg;
1017
1018 *raw_cons = ADV_RAW_CMP(*raw_cons, agg_bufs);
1019 last = RING_CMP(*raw_cons);
1020 agg = (struct rx_agg_cmp *)
1021 &cpr->cp_desc_ring[CP_RING(last)][CP_IDX(last)];
1022 return RX_AGG_CMP_VALID(agg, *raw_cons);
1023}
1024
1025static inline struct sk_buff *bnxt_copy_skb(struct bnxt_napi *bnapi, u8 *data,
1026 unsigned int len,
1027 dma_addr_t mapping)
1028{
1029 struct bnxt *bp = bnapi->bp;
1030 struct pci_dev *pdev = bp->pdev;
1031 struct sk_buff *skb;
1032
1033 skb = napi_alloc_skb(&bnapi->napi, len);
1034 if (!skb)
1035 return NULL;
1036
Michael Chan745fc052017-02-06 16:55:34 -05001037 dma_sync_single_for_cpu(&pdev->dev, mapping, bp->rx_copy_thresh,
1038 bp->rx_dir);
Michael Chanc0c050c2015-10-22 16:01:17 -04001039
Michael Chan6bb19472017-02-06 16:55:32 -05001040 memcpy(skb->data - NET_IP_ALIGN, data - NET_IP_ALIGN,
1041 len + NET_IP_ALIGN);
Michael Chanc0c050c2015-10-22 16:01:17 -04001042
Michael Chan745fc052017-02-06 16:55:34 -05001043 dma_sync_single_for_device(&pdev->dev, mapping, bp->rx_copy_thresh,
1044 bp->rx_dir);
Michael Chanc0c050c2015-10-22 16:01:17 -04001045
1046 skb_put(skb, len);
1047 return skb;
1048}
1049
Michael Chane44758b2018-10-14 07:02:55 -04001050static int bnxt_discard_rx(struct bnxt *bp, struct bnxt_cp_ring_info *cpr,
Michael Chanfa7e2812016-05-10 19:18:00 -04001051 u32 *raw_cons, void *cmp)
1052{
Michael Chanfa7e2812016-05-10 19:18:00 -04001053 struct rx_cmp *rxcmp = cmp;
1054 u32 tmp_raw_cons = *raw_cons;
1055 u8 cmp_type, agg_bufs = 0;
1056
1057 cmp_type = RX_CMP_TYPE(rxcmp);
1058
1059 if (cmp_type == CMP_TYPE_RX_L2_CMP) {
1060 agg_bufs = (le32_to_cpu(rxcmp->rx_cmp_misc_v1) &
1061 RX_CMP_AGG_BUFS) >>
1062 RX_CMP_AGG_BUFS_SHIFT;
1063 } else if (cmp_type == CMP_TYPE_RX_L2_TPA_END_CMP) {
1064 struct rx_tpa_end_cmp *tpa_end = cmp;
1065
1066 agg_bufs = (le32_to_cpu(tpa_end->rx_tpa_end_cmp_misc_v1) &
1067 RX_TPA_END_CMP_AGG_BUFS) >>
1068 RX_TPA_END_CMP_AGG_BUFS_SHIFT;
1069 }
1070
1071 if (agg_bufs) {
1072 if (!bnxt_agg_bufs_valid(bp, cpr, agg_bufs, &tmp_raw_cons))
1073 return -EBUSY;
1074 }
1075 *raw_cons = tmp_raw_cons;
1076 return 0;
1077}
1078
Michael Chanc213eae2017-10-13 21:09:29 -04001079static void bnxt_queue_sp_work(struct bnxt *bp)
1080{
1081 if (BNXT_PF(bp))
1082 queue_work(bnxt_pf_wq, &bp->sp_task);
1083 else
1084 schedule_work(&bp->sp_task);
1085}
1086
1087static void bnxt_cancel_sp_work(struct bnxt *bp)
1088{
1089 if (BNXT_PF(bp))
1090 flush_workqueue(bnxt_pf_wq);
1091 else
1092 cancel_work_sync(&bp->sp_task);
1093}
1094
Michael Chanfa7e2812016-05-10 19:18:00 -04001095static void bnxt_sched_reset(struct bnxt *bp, struct bnxt_rx_ring_info *rxr)
1096{
1097 if (!rxr->bnapi->in_reset) {
1098 rxr->bnapi->in_reset = true;
1099 set_bit(BNXT_RESET_TASK_SP_EVENT, &bp->sp_event);
Michael Chanc213eae2017-10-13 21:09:29 -04001100 bnxt_queue_sp_work(bp);
Michael Chanfa7e2812016-05-10 19:18:00 -04001101 }
1102 rxr->rx_next_cons = 0xffff;
1103}
1104
Michael Chanc0c050c2015-10-22 16:01:17 -04001105static void bnxt_tpa_start(struct bnxt *bp, struct bnxt_rx_ring_info *rxr,
1106 struct rx_tpa_start_cmp *tpa_start,
1107 struct rx_tpa_start_cmp_ext *tpa_start1)
1108{
1109 u8 agg_id = TPA_START_AGG_ID(tpa_start);
1110 u16 cons, prod;
1111 struct bnxt_tpa_info *tpa_info;
1112 struct bnxt_sw_rx_bd *cons_rx_buf, *prod_rx_buf;
1113 struct rx_bd *prod_bd;
1114 dma_addr_t mapping;
1115
1116 cons = tpa_start->rx_tpa_start_cmp_opaque;
1117 prod = rxr->rx_prod;
1118 cons_rx_buf = &rxr->rx_buf_ring[cons];
1119 prod_rx_buf = &rxr->rx_buf_ring[prod];
1120 tpa_info = &rxr->rx_tpa[agg_id];
1121
Michael Chanfa7e2812016-05-10 19:18:00 -04001122 if (unlikely(cons != rxr->rx_next_cons)) {
1123 bnxt_sched_reset(bp, rxr);
1124 return;
1125 }
Sathya Perlaee5c7fb2017-07-24 12:34:28 -04001126 /* Store cfa_code in tpa_info to use in tpa_end
1127 * completion processing.
1128 */
1129 tpa_info->cfa_code = TPA_START_CFA_CODE(tpa_start1);
Michael Chanc0c050c2015-10-22 16:01:17 -04001130 prod_rx_buf->data = tpa_info->data;
Michael Chan6bb19472017-02-06 16:55:32 -05001131 prod_rx_buf->data_ptr = tpa_info->data_ptr;
Michael Chanc0c050c2015-10-22 16:01:17 -04001132
1133 mapping = tpa_info->mapping;
Michael Chan11cd1192017-02-06 16:55:33 -05001134 prod_rx_buf->mapping = mapping;
Michael Chanc0c050c2015-10-22 16:01:17 -04001135
1136 prod_bd = &rxr->rx_desc_ring[RX_RING(prod)][RX_IDX(prod)];
1137
1138 prod_bd->rx_bd_haddr = cpu_to_le64(mapping);
1139
1140 tpa_info->data = cons_rx_buf->data;
Michael Chan6bb19472017-02-06 16:55:32 -05001141 tpa_info->data_ptr = cons_rx_buf->data_ptr;
Michael Chanc0c050c2015-10-22 16:01:17 -04001142 cons_rx_buf->data = NULL;
Michael Chan11cd1192017-02-06 16:55:33 -05001143 tpa_info->mapping = cons_rx_buf->mapping;
Michael Chanc0c050c2015-10-22 16:01:17 -04001144
1145 tpa_info->len =
1146 le32_to_cpu(tpa_start->rx_tpa_start_cmp_len_flags_type) >>
1147 RX_TPA_START_CMP_LEN_SHIFT;
1148 if (likely(TPA_START_HASH_VALID(tpa_start))) {
1149 u32 hash_type = TPA_START_HASH_TYPE(tpa_start);
1150
1151 tpa_info->hash_type = PKT_HASH_TYPE_L4;
1152 tpa_info->gso_type = SKB_GSO_TCPV4;
1153 /* RSS profiles 1 and 3 with extract code 0 for inner 4-tuple */
Michael Chan50f011b2018-08-05 16:51:51 -04001154 if (hash_type == 3 || TPA_START_IS_IPV6(tpa_start1))
Michael Chanc0c050c2015-10-22 16:01:17 -04001155 tpa_info->gso_type = SKB_GSO_TCPV6;
1156 tpa_info->rss_hash =
1157 le32_to_cpu(tpa_start->rx_tpa_start_cmp_rss_hash);
1158 } else {
1159 tpa_info->hash_type = PKT_HASH_TYPE_NONE;
1160 tpa_info->gso_type = 0;
1161 if (netif_msg_rx_err(bp))
1162 netdev_warn(bp->dev, "TPA packet without valid hash\n");
1163 }
1164 tpa_info->flags2 = le32_to_cpu(tpa_start1->rx_tpa_start_cmp_flags2);
1165 tpa_info->metadata = le32_to_cpu(tpa_start1->rx_tpa_start_cmp_metadata);
Michael Chan94758f82016-06-13 02:25:35 -04001166 tpa_info->hdr_info = le32_to_cpu(tpa_start1->rx_tpa_start_cmp_hdr_info);
Michael Chanc0c050c2015-10-22 16:01:17 -04001167
1168 rxr->rx_prod = NEXT_RX(prod);
1169 cons = NEXT_RX(cons);
Michael Chan376a5b82016-05-10 19:17:59 -04001170 rxr->rx_next_cons = NEXT_RX(cons);
Michael Chanc0c050c2015-10-22 16:01:17 -04001171 cons_rx_buf = &rxr->rx_buf_ring[cons];
1172
1173 bnxt_reuse_rx_data(rxr, cons, cons_rx_buf->data);
1174 rxr->rx_prod = NEXT_RX(rxr->rx_prod);
1175 cons_rx_buf->data = NULL;
1176}
1177
Michael Chane44758b2018-10-14 07:02:55 -04001178static void bnxt_abort_tpa(struct bnxt_cp_ring_info *cpr, u16 cp_cons,
1179 u32 agg_bufs)
Michael Chanc0c050c2015-10-22 16:01:17 -04001180{
1181 if (agg_bufs)
Michael Chane44758b2018-10-14 07:02:55 -04001182 bnxt_reuse_rx_agg_bufs(cpr, cp_cons, agg_bufs);
Michael Chanc0c050c2015-10-22 16:01:17 -04001183}
1184
Michael Chan94758f82016-06-13 02:25:35 -04001185static struct sk_buff *bnxt_gro_func_5731x(struct bnxt_tpa_info *tpa_info,
1186 int payload_off, int tcp_ts,
1187 struct sk_buff *skb)
1188{
1189#ifdef CONFIG_INET
1190 struct tcphdr *th;
1191 int len, nw_off;
1192 u16 outer_ip_off, inner_ip_off, inner_mac_off;
1193 u32 hdr_info = tpa_info->hdr_info;
1194 bool loopback = false;
1195
1196 inner_ip_off = BNXT_TPA_INNER_L3_OFF(hdr_info);
1197 inner_mac_off = BNXT_TPA_INNER_L2_OFF(hdr_info);
1198 outer_ip_off = BNXT_TPA_OUTER_L3_OFF(hdr_info);
1199
1200 /* If the packet is an internal loopback packet, the offsets will
1201 * have an extra 4 bytes.
1202 */
1203 if (inner_mac_off == 4) {
1204 loopback = true;
1205 } else if (inner_mac_off > 4) {
1206 __be16 proto = *((__be16 *)(skb->data + inner_ip_off -
1207 ETH_HLEN - 2));
1208
1209 /* We only support inner iPv4/ipv6. If we don't see the
1210 * correct protocol ID, it must be a loopback packet where
1211 * the offsets are off by 4.
1212 */
Dan Carpenter09a76362016-07-07 11:23:09 +03001213 if (proto != htons(ETH_P_IP) && proto != htons(ETH_P_IPV6))
Michael Chan94758f82016-06-13 02:25:35 -04001214 loopback = true;
1215 }
1216 if (loopback) {
1217 /* internal loopback packet, subtract all offsets by 4 */
1218 inner_ip_off -= 4;
1219 inner_mac_off -= 4;
1220 outer_ip_off -= 4;
1221 }
1222
1223 nw_off = inner_ip_off - ETH_HLEN;
1224 skb_set_network_header(skb, nw_off);
1225 if (tpa_info->flags2 & RX_TPA_START_CMP_FLAGS2_IP_TYPE) {
1226 struct ipv6hdr *iph = ipv6_hdr(skb);
1227
1228 skb_set_transport_header(skb, nw_off + sizeof(struct ipv6hdr));
1229 len = skb->len - skb_transport_offset(skb);
1230 th = tcp_hdr(skb);
1231 th->check = ~tcp_v6_check(len, &iph->saddr, &iph->daddr, 0);
1232 } else {
1233 struct iphdr *iph = ip_hdr(skb);
1234
1235 skb_set_transport_header(skb, nw_off + sizeof(struct iphdr));
1236 len = skb->len - skb_transport_offset(skb);
1237 th = tcp_hdr(skb);
1238 th->check = ~tcp_v4_check(len, iph->saddr, iph->daddr, 0);
1239 }
1240
1241 if (inner_mac_off) { /* tunnel */
1242 struct udphdr *uh = NULL;
1243 __be16 proto = *((__be16 *)(skb->data + outer_ip_off -
1244 ETH_HLEN - 2));
1245
1246 if (proto == htons(ETH_P_IP)) {
1247 struct iphdr *iph = (struct iphdr *)skb->data;
1248
1249 if (iph->protocol == IPPROTO_UDP)
1250 uh = (struct udphdr *)(iph + 1);
1251 } else {
1252 struct ipv6hdr *iph = (struct ipv6hdr *)skb->data;
1253
1254 if (iph->nexthdr == IPPROTO_UDP)
1255 uh = (struct udphdr *)(iph + 1);
1256 }
1257 if (uh) {
1258 if (uh->check)
1259 skb_shinfo(skb)->gso_type |=
1260 SKB_GSO_UDP_TUNNEL_CSUM;
1261 else
1262 skb_shinfo(skb)->gso_type |= SKB_GSO_UDP_TUNNEL;
1263 }
1264 }
1265#endif
1266 return skb;
1267}
1268
Michael Chanc0c050c2015-10-22 16:01:17 -04001269#define BNXT_IPV4_HDR_SIZE (sizeof(struct iphdr) + sizeof(struct tcphdr))
1270#define BNXT_IPV6_HDR_SIZE (sizeof(struct ipv6hdr) + sizeof(struct tcphdr))
1271
Michael Chan309369c2016-06-13 02:25:34 -04001272static struct sk_buff *bnxt_gro_func_5730x(struct bnxt_tpa_info *tpa_info,
1273 int payload_off, int tcp_ts,
Michael Chanc0c050c2015-10-22 16:01:17 -04001274 struct sk_buff *skb)
1275{
Michael Chand1611c32015-10-25 22:27:57 -04001276#ifdef CONFIG_INET
Michael Chanc0c050c2015-10-22 16:01:17 -04001277 struct tcphdr *th;
Michael Chan719ca812017-01-17 22:07:19 -05001278 int len, nw_off, tcp_opt_len = 0;
Michael Chanc0c050c2015-10-22 16:01:17 -04001279
Michael Chan309369c2016-06-13 02:25:34 -04001280 if (tcp_ts)
Michael Chanc0c050c2015-10-22 16:01:17 -04001281 tcp_opt_len = 12;
1282
Michael Chanc0c050c2015-10-22 16:01:17 -04001283 if (tpa_info->gso_type == SKB_GSO_TCPV4) {
1284 struct iphdr *iph;
1285
1286 nw_off = payload_off - BNXT_IPV4_HDR_SIZE - tcp_opt_len -
1287 ETH_HLEN;
1288 skb_set_network_header(skb, nw_off);
1289 iph = ip_hdr(skb);
1290 skb_set_transport_header(skb, nw_off + sizeof(struct iphdr));
1291 len = skb->len - skb_transport_offset(skb);
1292 th = tcp_hdr(skb);
1293 th->check = ~tcp_v4_check(len, iph->saddr, iph->daddr, 0);
1294 } else if (tpa_info->gso_type == SKB_GSO_TCPV6) {
1295 struct ipv6hdr *iph;
1296
1297 nw_off = payload_off - BNXT_IPV6_HDR_SIZE - tcp_opt_len -
1298 ETH_HLEN;
1299 skb_set_network_header(skb, nw_off);
1300 iph = ipv6_hdr(skb);
1301 skb_set_transport_header(skb, nw_off + sizeof(struct ipv6hdr));
1302 len = skb->len - skb_transport_offset(skb);
1303 th = tcp_hdr(skb);
1304 th->check = ~tcp_v6_check(len, &iph->saddr, &iph->daddr, 0);
1305 } else {
1306 dev_kfree_skb_any(skb);
1307 return NULL;
1308 }
Michael Chanc0c050c2015-10-22 16:01:17 -04001309
1310 if (nw_off) { /* tunnel */
1311 struct udphdr *uh = NULL;
1312
1313 if (skb->protocol == htons(ETH_P_IP)) {
1314 struct iphdr *iph = (struct iphdr *)skb->data;
1315
1316 if (iph->protocol == IPPROTO_UDP)
1317 uh = (struct udphdr *)(iph + 1);
1318 } else {
1319 struct ipv6hdr *iph = (struct ipv6hdr *)skb->data;
1320
1321 if (iph->nexthdr == IPPROTO_UDP)
1322 uh = (struct udphdr *)(iph + 1);
1323 }
1324 if (uh) {
1325 if (uh->check)
1326 skb_shinfo(skb)->gso_type |=
1327 SKB_GSO_UDP_TUNNEL_CSUM;
1328 else
1329 skb_shinfo(skb)->gso_type |= SKB_GSO_UDP_TUNNEL;
1330 }
1331 }
1332#endif
1333 return skb;
1334}
1335
Michael Chan309369c2016-06-13 02:25:34 -04001336static inline struct sk_buff *bnxt_gro_skb(struct bnxt *bp,
1337 struct bnxt_tpa_info *tpa_info,
1338 struct rx_tpa_end_cmp *tpa_end,
1339 struct rx_tpa_end_cmp_ext *tpa_end1,
1340 struct sk_buff *skb)
1341{
1342#ifdef CONFIG_INET
1343 int payload_off;
1344 u16 segs;
1345
1346 segs = TPA_END_TPA_SEGS(tpa_end);
1347 if (segs == 1)
1348 return skb;
1349
1350 NAPI_GRO_CB(skb)->count = segs;
1351 skb_shinfo(skb)->gso_size =
1352 le32_to_cpu(tpa_end1->rx_tpa_end_cmp_seg_len);
1353 skb_shinfo(skb)->gso_type = tpa_info->gso_type;
1354 payload_off = (le32_to_cpu(tpa_end->rx_tpa_end_cmp_misc_v1) &
1355 RX_TPA_END_CMP_PAYLOAD_OFFSET) >>
1356 RX_TPA_END_CMP_PAYLOAD_OFFSET_SHIFT;
1357 skb = bp->gro_func(tpa_info, payload_off, TPA_END_GRO_TS(tpa_end), skb);
Michael Chan59109062016-12-29 12:13:35 -05001358 if (likely(skb))
1359 tcp_gro_complete(skb);
Michael Chan309369c2016-06-13 02:25:34 -04001360#endif
1361 return skb;
1362}
1363
Sathya Perlaee5c7fb2017-07-24 12:34:28 -04001364/* Given the cfa_code of a received packet determine which
1365 * netdev (vf-rep or PF) the packet is destined to.
1366 */
1367static struct net_device *bnxt_get_pkt_dev(struct bnxt *bp, u16 cfa_code)
1368{
1369 struct net_device *dev = bnxt_get_vf_rep(bp, cfa_code);
1370
1371 /* if vf-rep dev is NULL, the must belongs to the PF */
1372 return dev ? dev : bp->dev;
1373}
1374
Michael Chanc0c050c2015-10-22 16:01:17 -04001375static inline struct sk_buff *bnxt_tpa_end(struct bnxt *bp,
Michael Chane44758b2018-10-14 07:02:55 -04001376 struct bnxt_cp_ring_info *cpr,
Michael Chanc0c050c2015-10-22 16:01:17 -04001377 u32 *raw_cons,
1378 struct rx_tpa_end_cmp *tpa_end,
1379 struct rx_tpa_end_cmp_ext *tpa_end1,
Michael Chan4e5dbbda2017-02-06 16:55:37 -05001380 u8 *event)
Michael Chanc0c050c2015-10-22 16:01:17 -04001381{
Michael Chane44758b2018-10-14 07:02:55 -04001382 struct bnxt_napi *bnapi = cpr->bnapi;
Michael Chanb6ab4b02016-01-02 23:44:59 -05001383 struct bnxt_rx_ring_info *rxr = bnapi->rx_ring;
Michael Chanc0c050c2015-10-22 16:01:17 -04001384 u8 agg_id = TPA_END_AGG_ID(tpa_end);
Michael Chan6bb19472017-02-06 16:55:32 -05001385 u8 *data_ptr, agg_bufs;
Michael Chanc0c050c2015-10-22 16:01:17 -04001386 u16 cp_cons = RING_CMP(*raw_cons);
1387 unsigned int len;
1388 struct bnxt_tpa_info *tpa_info;
1389 dma_addr_t mapping;
1390 struct sk_buff *skb;
Michael Chan6bb19472017-02-06 16:55:32 -05001391 void *data;
Michael Chanc0c050c2015-10-22 16:01:17 -04001392
Michael Chanfa7e2812016-05-10 19:18:00 -04001393 if (unlikely(bnapi->in_reset)) {
Michael Chane44758b2018-10-14 07:02:55 -04001394 int rc = bnxt_discard_rx(bp, cpr, raw_cons, tpa_end);
Michael Chanfa7e2812016-05-10 19:18:00 -04001395
1396 if (rc < 0)
1397 return ERR_PTR(-EBUSY);
1398 return NULL;
1399 }
1400
Michael Chanc0c050c2015-10-22 16:01:17 -04001401 tpa_info = &rxr->rx_tpa[agg_id];
1402 data = tpa_info->data;
Michael Chan6bb19472017-02-06 16:55:32 -05001403 data_ptr = tpa_info->data_ptr;
1404 prefetch(data_ptr);
Michael Chanc0c050c2015-10-22 16:01:17 -04001405 len = tpa_info->len;
1406 mapping = tpa_info->mapping;
1407
1408 agg_bufs = (le32_to_cpu(tpa_end->rx_tpa_end_cmp_misc_v1) &
1409 RX_TPA_END_CMP_AGG_BUFS) >> RX_TPA_END_CMP_AGG_BUFS_SHIFT;
1410
1411 if (agg_bufs) {
1412 if (!bnxt_agg_bufs_valid(bp, cpr, agg_bufs, raw_cons))
1413 return ERR_PTR(-EBUSY);
1414
Michael Chan4e5dbbda2017-02-06 16:55:37 -05001415 *event |= BNXT_AGG_EVENT;
Michael Chanc0c050c2015-10-22 16:01:17 -04001416 cp_cons = NEXT_CMP(cp_cons);
1417 }
1418
Michael Chan69c149e2017-06-23 14:01:00 -04001419 if (unlikely(agg_bufs > MAX_SKB_FRAGS || TPA_END_ERRORS(tpa_end1))) {
Michael Chane44758b2018-10-14 07:02:55 -04001420 bnxt_abort_tpa(cpr, cp_cons, agg_bufs);
Michael Chan69c149e2017-06-23 14:01:00 -04001421 if (agg_bufs > MAX_SKB_FRAGS)
1422 netdev_warn(bp->dev, "TPA frags %d exceeded MAX_SKB_FRAGS %d\n",
1423 agg_bufs, (int)MAX_SKB_FRAGS);
Michael Chanc0c050c2015-10-22 16:01:17 -04001424 return NULL;
1425 }
1426
1427 if (len <= bp->rx_copy_thresh) {
Michael Chan6bb19472017-02-06 16:55:32 -05001428 skb = bnxt_copy_skb(bnapi, data_ptr, len, mapping);
Michael Chanc0c050c2015-10-22 16:01:17 -04001429 if (!skb) {
Michael Chane44758b2018-10-14 07:02:55 -04001430 bnxt_abort_tpa(cpr, cp_cons, agg_bufs);
Michael Chanc0c050c2015-10-22 16:01:17 -04001431 return NULL;
1432 }
1433 } else {
1434 u8 *new_data;
1435 dma_addr_t new_mapping;
1436
1437 new_data = __bnxt_alloc_rx_data(bp, &new_mapping, GFP_ATOMIC);
1438 if (!new_data) {
Michael Chane44758b2018-10-14 07:02:55 -04001439 bnxt_abort_tpa(cpr, cp_cons, agg_bufs);
Michael Chanc0c050c2015-10-22 16:01:17 -04001440 return NULL;
1441 }
1442
1443 tpa_info->data = new_data;
Michael Chanb3dba772017-02-06 16:55:35 -05001444 tpa_info->data_ptr = new_data + bp->rx_offset;
Michael Chanc0c050c2015-10-22 16:01:17 -04001445 tpa_info->mapping = new_mapping;
1446
1447 skb = build_skb(data, 0);
Shannon Nelsonc519fe92017-05-09 18:30:12 -07001448 dma_unmap_single_attrs(&bp->pdev->dev, mapping,
1449 bp->rx_buf_use_size, bp->rx_dir,
1450 DMA_ATTR_WEAK_ORDERING);
Michael Chanc0c050c2015-10-22 16:01:17 -04001451
1452 if (!skb) {
1453 kfree(data);
Michael Chane44758b2018-10-14 07:02:55 -04001454 bnxt_abort_tpa(cpr, cp_cons, agg_bufs);
Michael Chanc0c050c2015-10-22 16:01:17 -04001455 return NULL;
1456 }
Michael Chanb3dba772017-02-06 16:55:35 -05001457 skb_reserve(skb, bp->rx_offset);
Michael Chanc0c050c2015-10-22 16:01:17 -04001458 skb_put(skb, len);
1459 }
1460
1461 if (agg_bufs) {
Michael Chane44758b2018-10-14 07:02:55 -04001462 skb = bnxt_rx_pages(bp, cpr, skb, cp_cons, agg_bufs);
Michael Chanc0c050c2015-10-22 16:01:17 -04001463 if (!skb) {
1464 /* Page reuse already handled by bnxt_rx_pages(). */
1465 return NULL;
1466 }
1467 }
Sathya Perlaee5c7fb2017-07-24 12:34:28 -04001468
1469 skb->protocol =
1470 eth_type_trans(skb, bnxt_get_pkt_dev(bp, tpa_info->cfa_code));
Michael Chanc0c050c2015-10-22 16:01:17 -04001471
1472 if (tpa_info->hash_type != PKT_HASH_TYPE_NONE)
1473 skb_set_hash(skb, tpa_info->rss_hash, tpa_info->hash_type);
1474
Michael Chan8852ddb2016-06-06 02:37:16 -04001475 if ((tpa_info->flags2 & RX_CMP_FLAGS2_META_FORMAT_VLAN) &&
1476 (skb->dev->features & NETIF_F_HW_VLAN_CTAG_RX)) {
Michael Chanc0c050c2015-10-22 16:01:17 -04001477 u16 vlan_proto = tpa_info->metadata >>
1478 RX_CMP_FLAGS2_METADATA_TPID_SFT;
Michael Chaned7bc6022018-03-09 23:46:06 -05001479 u16 vtag = tpa_info->metadata & RX_CMP_FLAGS2_METADATA_TCI_MASK;
Michael Chanc0c050c2015-10-22 16:01:17 -04001480
Michael Chan8852ddb2016-06-06 02:37:16 -04001481 __vlan_hwaccel_put_tag(skb, htons(vlan_proto), vtag);
Michael Chanc0c050c2015-10-22 16:01:17 -04001482 }
1483
1484 skb_checksum_none_assert(skb);
1485 if (likely(tpa_info->flags2 & RX_TPA_START_CMP_FLAGS2_L4_CS_CALC)) {
1486 skb->ip_summed = CHECKSUM_UNNECESSARY;
1487 skb->csum_level =
1488 (tpa_info->flags2 & RX_CMP_FLAGS2_T_L4_CS_CALC) >> 3;
1489 }
1490
1491 if (TPA_END_GRO(tpa_end))
Michael Chan309369c2016-06-13 02:25:34 -04001492 skb = bnxt_gro_skb(bp, tpa_info, tpa_end, tpa_end1, skb);
Michael Chanc0c050c2015-10-22 16:01:17 -04001493
1494 return skb;
1495}
1496
Sathya Perlaee5c7fb2017-07-24 12:34:28 -04001497static void bnxt_deliver_skb(struct bnxt *bp, struct bnxt_napi *bnapi,
1498 struct sk_buff *skb)
1499{
1500 if (skb->dev != bp->dev) {
1501 /* this packet belongs to a vf-rep */
1502 bnxt_vf_rep_rx(bp, skb);
1503 return;
1504 }
1505 skb_record_rx_queue(skb, bnapi->index);
1506 napi_gro_receive(&bnapi->napi, skb);
1507}
1508
Michael Chanc0c050c2015-10-22 16:01:17 -04001509/* returns the following:
1510 * 1 - 1 packet successfully received
1511 * 0 - successful TPA_START, packet not completed yet
1512 * -EBUSY - completion ring does not have all the agg buffers yet
1513 * -ENOMEM - packet aborted due to out of memory
1514 * -EIO - packet aborted due to hw error indicated in BD
1515 */
Michael Chane44758b2018-10-14 07:02:55 -04001516static int bnxt_rx_pkt(struct bnxt *bp, struct bnxt_cp_ring_info *cpr,
1517 u32 *raw_cons, u8 *event)
Michael Chanc0c050c2015-10-22 16:01:17 -04001518{
Michael Chane44758b2018-10-14 07:02:55 -04001519 struct bnxt_napi *bnapi = cpr->bnapi;
Michael Chanb6ab4b02016-01-02 23:44:59 -05001520 struct bnxt_rx_ring_info *rxr = bnapi->rx_ring;
Michael Chanc0c050c2015-10-22 16:01:17 -04001521 struct net_device *dev = bp->dev;
1522 struct rx_cmp *rxcmp;
1523 struct rx_cmp_ext *rxcmp1;
1524 u32 tmp_raw_cons = *raw_cons;
Sathya Perlaee5c7fb2017-07-24 12:34:28 -04001525 u16 cfa_code, cons, prod, cp_cons = RING_CMP(tmp_raw_cons);
Michael Chanc0c050c2015-10-22 16:01:17 -04001526 struct bnxt_sw_rx_bd *rx_buf;
1527 unsigned int len;
Michael Chan6bb19472017-02-06 16:55:32 -05001528 u8 *data_ptr, agg_bufs, cmp_type;
Michael Chanc0c050c2015-10-22 16:01:17 -04001529 dma_addr_t dma_addr;
1530 struct sk_buff *skb;
Michael Chan6bb19472017-02-06 16:55:32 -05001531 void *data;
Michael Chanc0c050c2015-10-22 16:01:17 -04001532 int rc = 0;
Michael Chanc61fb992017-02-06 16:55:36 -05001533 u32 misc;
Michael Chanc0c050c2015-10-22 16:01:17 -04001534
1535 rxcmp = (struct rx_cmp *)
1536 &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)];
1537
1538 tmp_raw_cons = NEXT_RAW_CMP(tmp_raw_cons);
1539 cp_cons = RING_CMP(tmp_raw_cons);
1540 rxcmp1 = (struct rx_cmp_ext *)
1541 &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)];
1542
1543 if (!RX_CMP_VALID(rxcmp1, tmp_raw_cons))
1544 return -EBUSY;
1545
1546 cmp_type = RX_CMP_TYPE(rxcmp);
1547
1548 prod = rxr->rx_prod;
1549
1550 if (cmp_type == CMP_TYPE_RX_L2_TPA_START_CMP) {
1551 bnxt_tpa_start(bp, rxr, (struct rx_tpa_start_cmp *)rxcmp,
1552 (struct rx_tpa_start_cmp_ext *)rxcmp1);
1553
Michael Chan4e5dbbda2017-02-06 16:55:37 -05001554 *event |= BNXT_RX_EVENT;
Colin Ian Kinge7e70fa2018-01-16 10:22:50 +00001555 goto next_rx_no_prod_no_len;
Michael Chanc0c050c2015-10-22 16:01:17 -04001556
1557 } else if (cmp_type == CMP_TYPE_RX_L2_TPA_END_CMP) {
Michael Chane44758b2018-10-14 07:02:55 -04001558 skb = bnxt_tpa_end(bp, cpr, &tmp_raw_cons,
Michael Chanc0c050c2015-10-22 16:01:17 -04001559 (struct rx_tpa_end_cmp *)rxcmp,
Michael Chan4e5dbbda2017-02-06 16:55:37 -05001560 (struct rx_tpa_end_cmp_ext *)rxcmp1, event);
Michael Chanc0c050c2015-10-22 16:01:17 -04001561
Tobias Klauser1fac4b22017-09-26 15:12:26 +02001562 if (IS_ERR(skb))
Michael Chanc0c050c2015-10-22 16:01:17 -04001563 return -EBUSY;
1564
1565 rc = -ENOMEM;
1566 if (likely(skb)) {
Sathya Perlaee5c7fb2017-07-24 12:34:28 -04001567 bnxt_deliver_skb(bp, bnapi, skb);
Michael Chanc0c050c2015-10-22 16:01:17 -04001568 rc = 1;
1569 }
Michael Chan4e5dbbda2017-02-06 16:55:37 -05001570 *event |= BNXT_RX_EVENT;
Colin Ian Kinge7e70fa2018-01-16 10:22:50 +00001571 goto next_rx_no_prod_no_len;
Michael Chanc0c050c2015-10-22 16:01:17 -04001572 }
1573
1574 cons = rxcmp->rx_cmp_opaque;
1575 rx_buf = &rxr->rx_buf_ring[cons];
1576 data = rx_buf->data;
Michael Chan6bb19472017-02-06 16:55:32 -05001577 data_ptr = rx_buf->data_ptr;
Michael Chanfa7e2812016-05-10 19:18:00 -04001578 if (unlikely(cons != rxr->rx_next_cons)) {
Michael Chane44758b2018-10-14 07:02:55 -04001579 int rc1 = bnxt_discard_rx(bp, cpr, raw_cons, rxcmp);
Michael Chanfa7e2812016-05-10 19:18:00 -04001580
1581 bnxt_sched_reset(bp, rxr);
1582 return rc1;
1583 }
Michael Chan6bb19472017-02-06 16:55:32 -05001584 prefetch(data_ptr);
Michael Chanc0c050c2015-10-22 16:01:17 -04001585
Michael Chanc61fb992017-02-06 16:55:36 -05001586 misc = le32_to_cpu(rxcmp->rx_cmp_misc_v1);
1587 agg_bufs = (misc & RX_CMP_AGG_BUFS) >> RX_CMP_AGG_BUFS_SHIFT;
Michael Chanc0c050c2015-10-22 16:01:17 -04001588
1589 if (agg_bufs) {
1590 if (!bnxt_agg_bufs_valid(bp, cpr, agg_bufs, &tmp_raw_cons))
1591 return -EBUSY;
1592
1593 cp_cons = NEXT_CMP(cp_cons);
Michael Chan4e5dbbda2017-02-06 16:55:37 -05001594 *event |= BNXT_AGG_EVENT;
Michael Chanc0c050c2015-10-22 16:01:17 -04001595 }
Michael Chan4e5dbbda2017-02-06 16:55:37 -05001596 *event |= BNXT_RX_EVENT;
Michael Chanc0c050c2015-10-22 16:01:17 -04001597
1598 rx_buf->data = NULL;
1599 if (rxcmp1->rx_cmp_cfa_code_errors_v2 & RX_CMP_L2_ERRORS) {
1600 bnxt_reuse_rx_data(rxr, cons, data);
1601 if (agg_bufs)
Michael Chane44758b2018-10-14 07:02:55 -04001602 bnxt_reuse_rx_agg_bufs(cpr, cp_cons, agg_bufs);
Michael Chanc0c050c2015-10-22 16:01:17 -04001603
1604 rc = -EIO;
1605 goto next_rx;
1606 }
1607
1608 len = le32_to_cpu(rxcmp->rx_cmp_len_flags_type) >> RX_CMP_LEN_SHIFT;
Michael Chan11cd1192017-02-06 16:55:33 -05001609 dma_addr = rx_buf->mapping;
Michael Chanc0c050c2015-10-22 16:01:17 -04001610
Michael Chanc6d30e82017-02-06 16:55:42 -05001611 if (bnxt_rx_xdp(bp, rxr, cons, data, &data_ptr, &len, event)) {
1612 rc = 1;
1613 goto next_rx;
1614 }
1615
Michael Chanc0c050c2015-10-22 16:01:17 -04001616 if (len <= bp->rx_copy_thresh) {
Michael Chan6bb19472017-02-06 16:55:32 -05001617 skb = bnxt_copy_skb(bnapi, data_ptr, len, dma_addr);
Michael Chanc0c050c2015-10-22 16:01:17 -04001618 bnxt_reuse_rx_data(rxr, cons, data);
1619 if (!skb) {
1620 rc = -ENOMEM;
1621 goto next_rx;
1622 }
1623 } else {
Michael Chanc61fb992017-02-06 16:55:36 -05001624 u32 payload;
1625
Michael Chanc6d30e82017-02-06 16:55:42 -05001626 if (rx_buf->data_ptr == data_ptr)
1627 payload = misc & RX_CMP_PAYLOAD_OFFSET;
1628 else
1629 payload = 0;
Michael Chan6bb19472017-02-06 16:55:32 -05001630 skb = bp->rx_skb_func(bp, rxr, cons, data, data_ptr, dma_addr,
Michael Chanc61fb992017-02-06 16:55:36 -05001631 payload | len);
Michael Chanc0c050c2015-10-22 16:01:17 -04001632 if (!skb) {
1633 rc = -ENOMEM;
1634 goto next_rx;
1635 }
1636 }
1637
1638 if (agg_bufs) {
Michael Chane44758b2018-10-14 07:02:55 -04001639 skb = bnxt_rx_pages(bp, cpr, skb, cp_cons, agg_bufs);
Michael Chanc0c050c2015-10-22 16:01:17 -04001640 if (!skb) {
1641 rc = -ENOMEM;
1642 goto next_rx;
1643 }
1644 }
1645
1646 if (RX_CMP_HASH_VALID(rxcmp)) {
1647 u32 hash_type = RX_CMP_HASH_TYPE(rxcmp);
1648 enum pkt_hash_types type = PKT_HASH_TYPE_L4;
1649
1650 /* RSS profiles 1 and 3 with extract code 0 for inner 4-tuple */
1651 if (hash_type != 1 && hash_type != 3)
1652 type = PKT_HASH_TYPE_L3;
1653 skb_set_hash(skb, le32_to_cpu(rxcmp->rx_cmp_rss_hash), type);
1654 }
1655
Sathya Perlaee5c7fb2017-07-24 12:34:28 -04001656 cfa_code = RX_CMP_CFA_CODE(rxcmp1);
1657 skb->protocol = eth_type_trans(skb, bnxt_get_pkt_dev(bp, cfa_code));
Michael Chanc0c050c2015-10-22 16:01:17 -04001658
Michael Chan8852ddb2016-06-06 02:37:16 -04001659 if ((rxcmp1->rx_cmp_flags2 &
1660 cpu_to_le32(RX_CMP_FLAGS2_META_FORMAT_VLAN)) &&
1661 (skb->dev->features & NETIF_F_HW_VLAN_CTAG_RX)) {
Michael Chanc0c050c2015-10-22 16:01:17 -04001662 u32 meta_data = le32_to_cpu(rxcmp1->rx_cmp_meta_data);
Michael Chaned7bc6022018-03-09 23:46:06 -05001663 u16 vtag = meta_data & RX_CMP_FLAGS2_METADATA_TCI_MASK;
Michael Chanc0c050c2015-10-22 16:01:17 -04001664 u16 vlan_proto = meta_data >> RX_CMP_FLAGS2_METADATA_TPID_SFT;
1665
Michael Chan8852ddb2016-06-06 02:37:16 -04001666 __vlan_hwaccel_put_tag(skb, htons(vlan_proto), vtag);
Michael Chanc0c050c2015-10-22 16:01:17 -04001667 }
1668
1669 skb_checksum_none_assert(skb);
1670 if (RX_CMP_L4_CS_OK(rxcmp1)) {
1671 if (dev->features & NETIF_F_RXCSUM) {
1672 skb->ip_summed = CHECKSUM_UNNECESSARY;
1673 skb->csum_level = RX_CMP_ENCAP(rxcmp1);
1674 }
1675 } else {
Satish Baddipadige665e3502015-12-27 18:19:21 -05001676 if (rxcmp1->rx_cmp_cfa_code_errors_v2 & RX_CMP_L4_CS_ERR_BITS) {
1677 if (dev->features & NETIF_F_RXCSUM)
Michael Chand1981922018-11-15 03:25:38 -05001678 bnapi->cp_ring.rx_l4_csum_errors++;
Satish Baddipadige665e3502015-12-27 18:19:21 -05001679 }
Michael Chanc0c050c2015-10-22 16:01:17 -04001680 }
1681
Sathya Perlaee5c7fb2017-07-24 12:34:28 -04001682 bnxt_deliver_skb(bp, bnapi, skb);
Michael Chanc0c050c2015-10-22 16:01:17 -04001683 rc = 1;
1684
1685next_rx:
1686 rxr->rx_prod = NEXT_RX(prod);
Michael Chan376a5b82016-05-10 19:17:59 -04001687 rxr->rx_next_cons = NEXT_RX(cons);
Michael Chanc0c050c2015-10-22 16:01:17 -04001688
Andy Gospodarek6a8788f2018-01-09 16:06:20 -05001689 cpr->rx_packets += 1;
1690 cpr->rx_bytes += len;
Colin Ian Kinge7e70fa2018-01-16 10:22:50 +00001691
1692next_rx_no_prod_no_len:
Michael Chanc0c050c2015-10-22 16:01:17 -04001693 *raw_cons = tmp_raw_cons;
1694
1695 return rc;
1696}
1697
Michael Chan2270bc52017-06-23 14:01:01 -04001698/* In netpoll mode, if we are using a combined completion ring, we need to
1699 * discard the rx packets and recycle the buffers.
1700 */
Michael Chane44758b2018-10-14 07:02:55 -04001701static int bnxt_force_rx_discard(struct bnxt *bp,
1702 struct bnxt_cp_ring_info *cpr,
Michael Chan2270bc52017-06-23 14:01:01 -04001703 u32 *raw_cons, u8 *event)
1704{
Michael Chan2270bc52017-06-23 14:01:01 -04001705 u32 tmp_raw_cons = *raw_cons;
1706 struct rx_cmp_ext *rxcmp1;
1707 struct rx_cmp *rxcmp;
1708 u16 cp_cons;
1709 u8 cmp_type;
1710
1711 cp_cons = RING_CMP(tmp_raw_cons);
1712 rxcmp = (struct rx_cmp *)
1713 &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)];
1714
1715 tmp_raw_cons = NEXT_RAW_CMP(tmp_raw_cons);
1716 cp_cons = RING_CMP(tmp_raw_cons);
1717 rxcmp1 = (struct rx_cmp_ext *)
1718 &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)];
1719
1720 if (!RX_CMP_VALID(rxcmp1, tmp_raw_cons))
1721 return -EBUSY;
1722
1723 cmp_type = RX_CMP_TYPE(rxcmp);
1724 if (cmp_type == CMP_TYPE_RX_L2_CMP) {
1725 rxcmp1->rx_cmp_cfa_code_errors_v2 |=
1726 cpu_to_le32(RX_CMPL_ERRORS_CRC_ERROR);
1727 } else if (cmp_type == CMP_TYPE_RX_L2_TPA_END_CMP) {
1728 struct rx_tpa_end_cmp_ext *tpa_end1;
1729
1730 tpa_end1 = (struct rx_tpa_end_cmp_ext *)rxcmp1;
1731 tpa_end1->rx_tpa_end_cmp_errors_v2 |=
1732 cpu_to_le32(RX_TPA_END_CMP_ERRORS);
1733 }
Michael Chane44758b2018-10-14 07:02:55 -04001734 return bnxt_rx_pkt(bp, cpr, raw_cons, event);
Michael Chan2270bc52017-06-23 14:01:01 -04001735}
1736
Michael Chan4bb13ab2016-04-05 14:09:01 -04001737#define BNXT_GET_EVENT_PORT(data) \
Michael Chan87c374d2016-12-02 21:17:16 -05001738 ((data) & \
1739 ASYNC_EVENT_CMPL_PORT_CONN_NOT_ALLOWED_EVENT_DATA1_PORT_ID_MASK)
Michael Chan4bb13ab2016-04-05 14:09:01 -04001740
Michael Chanc0c050c2015-10-22 16:01:17 -04001741static int bnxt_async_event_process(struct bnxt *bp,
1742 struct hwrm_async_event_cmpl *cmpl)
1743{
1744 u16 event_id = le16_to_cpu(cmpl->event_id);
1745
1746 /* TODO CHIMP_FW: Define event id's for link change, error etc */
1747 switch (event_id) {
Michael Chan87c374d2016-12-02 21:17:16 -05001748 case ASYNC_EVENT_CMPL_EVENT_ID_LINK_SPEED_CFG_CHANGE: {
Michael Chan8cbde112016-04-11 04:11:14 -04001749 u32 data1 = le32_to_cpu(cmpl->event_data1);
1750 struct bnxt_link_info *link_info = &bp->link_info;
1751
1752 if (BNXT_VF(bp))
1753 goto async_event_process_exit;
Michael Chana8168b62017-12-06 17:31:22 -05001754
1755 /* print unsupported speed warning in forced speed mode only */
1756 if (!(link_info->autoneg & BNXT_AUTONEG_SPEED) &&
1757 (data1 & 0x20000)) {
Michael Chan8cbde112016-04-11 04:11:14 -04001758 u16 fw_speed = link_info->force_link_speed;
1759 u32 speed = bnxt_fw_to_ethtool_speed(fw_speed);
1760
Michael Chana8168b62017-12-06 17:31:22 -05001761 if (speed != SPEED_UNKNOWN)
1762 netdev_warn(bp->dev, "Link speed %d no longer supported\n",
1763 speed);
Michael Chan8cbde112016-04-11 04:11:14 -04001764 }
Michael Chan286ef9d2016-11-16 21:13:08 -05001765 set_bit(BNXT_LINK_SPEED_CHNG_SP_EVENT, &bp->sp_event);
Michael Chan8cbde112016-04-11 04:11:14 -04001766 }
Gustavo A. R. Silvabc171e82018-08-07 18:11:14 -05001767 /* fall through */
Michael Chan87c374d2016-12-02 21:17:16 -05001768 case ASYNC_EVENT_CMPL_EVENT_ID_LINK_STATUS_CHANGE:
Michael Chanc0c050c2015-10-22 16:01:17 -04001769 set_bit(BNXT_LINK_CHNG_SP_EVENT, &bp->sp_event);
Jeffrey Huang19241362016-02-26 04:00:00 -05001770 break;
Michael Chan87c374d2016-12-02 21:17:16 -05001771 case ASYNC_EVENT_CMPL_EVENT_ID_PF_DRVR_UNLOAD:
Jeffrey Huang19241362016-02-26 04:00:00 -05001772 set_bit(BNXT_HWRM_PF_UNLOAD_SP_EVENT, &bp->sp_event);
Michael Chanc0c050c2015-10-22 16:01:17 -04001773 break;
Michael Chan87c374d2016-12-02 21:17:16 -05001774 case ASYNC_EVENT_CMPL_EVENT_ID_PORT_CONN_NOT_ALLOWED: {
Michael Chan4bb13ab2016-04-05 14:09:01 -04001775 u32 data1 = le32_to_cpu(cmpl->event_data1);
1776 u16 port_id = BNXT_GET_EVENT_PORT(data1);
1777
1778 if (BNXT_VF(bp))
1779 break;
1780
1781 if (bp->pf.port_id != port_id)
1782 break;
1783
Michael Chan4bb13ab2016-04-05 14:09:01 -04001784 set_bit(BNXT_HWRM_PORT_MODULE_SP_EVENT, &bp->sp_event);
1785 break;
1786 }
Michael Chan87c374d2016-12-02 21:17:16 -05001787 case ASYNC_EVENT_CMPL_EVENT_ID_VF_CFG_CHANGE:
Michael Chanfc0f1922016-06-13 02:25:30 -04001788 if (BNXT_PF(bp))
1789 goto async_event_process_exit;
1790 set_bit(BNXT_RESET_TASK_SILENT_SP_EVENT, &bp->sp_event);
1791 break;
Michael Chanc0c050c2015-10-22 16:01:17 -04001792 default:
Jeffrey Huang19241362016-02-26 04:00:00 -05001793 goto async_event_process_exit;
Michael Chanc0c050c2015-10-22 16:01:17 -04001794 }
Michael Chanc213eae2017-10-13 21:09:29 -04001795 bnxt_queue_sp_work(bp);
Jeffrey Huang19241362016-02-26 04:00:00 -05001796async_event_process_exit:
Michael Chana588e452016-12-07 00:26:21 -05001797 bnxt_ulp_async_events(bp, cmpl);
Michael Chanc0c050c2015-10-22 16:01:17 -04001798 return 0;
1799}
1800
1801static int bnxt_hwrm_handler(struct bnxt *bp, struct tx_cmp *txcmp)
1802{
1803 u16 cmpl_type = TX_CMP_TYPE(txcmp), vf_id, seq_id;
1804 struct hwrm_cmpl *h_cmpl = (struct hwrm_cmpl *)txcmp;
1805 struct hwrm_fwd_req_cmpl *fwd_req_cmpl =
1806 (struct hwrm_fwd_req_cmpl *)txcmp;
1807
1808 switch (cmpl_type) {
1809 case CMPL_BASE_TYPE_HWRM_DONE:
1810 seq_id = le16_to_cpu(h_cmpl->sequence_id);
1811 if (seq_id == bp->hwrm_intr_seq_id)
1812 bp->hwrm_intr_seq_id = HWRM_SEQ_ID_INVALID;
1813 else
1814 netdev_err(bp->dev, "Invalid hwrm seq id %d\n", seq_id);
1815 break;
1816
1817 case CMPL_BASE_TYPE_HWRM_FWD_REQ:
1818 vf_id = le16_to_cpu(fwd_req_cmpl->source_id);
1819
1820 if ((vf_id < bp->pf.first_vf_id) ||
1821 (vf_id >= bp->pf.first_vf_id + bp->pf.active_vfs)) {
1822 netdev_err(bp->dev, "Msg contains invalid VF id %x\n",
1823 vf_id);
1824 return -EINVAL;
1825 }
1826
1827 set_bit(vf_id - bp->pf.first_vf_id, bp->pf.vf_event_bmap);
1828 set_bit(BNXT_HWRM_EXEC_FWD_REQ_SP_EVENT, &bp->sp_event);
Michael Chanc213eae2017-10-13 21:09:29 -04001829 bnxt_queue_sp_work(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04001830 break;
1831
1832 case CMPL_BASE_TYPE_HWRM_ASYNC_EVENT:
1833 bnxt_async_event_process(bp,
1834 (struct hwrm_async_event_cmpl *)txcmp);
1835
1836 default:
1837 break;
1838 }
1839
1840 return 0;
1841}
1842
1843static irqreturn_t bnxt_msix(int irq, void *dev_instance)
1844{
1845 struct bnxt_napi *bnapi = dev_instance;
1846 struct bnxt *bp = bnapi->bp;
1847 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
1848 u32 cons = RING_CMP(cpr->cp_raw_cons);
1849
Andy Gospodarek6a8788f2018-01-09 16:06:20 -05001850 cpr->event_ctr++;
Michael Chanc0c050c2015-10-22 16:01:17 -04001851 prefetch(&cpr->cp_desc_ring[CP_RING(cons)][CP_IDX(cons)]);
1852 napi_schedule(&bnapi->napi);
1853 return IRQ_HANDLED;
1854}
1855
1856static inline int bnxt_has_work(struct bnxt *bp, struct bnxt_cp_ring_info *cpr)
1857{
1858 u32 raw_cons = cpr->cp_raw_cons;
1859 u16 cons = RING_CMP(raw_cons);
1860 struct tx_cmp *txcmp;
1861
1862 txcmp = &cpr->cp_desc_ring[CP_RING(cons)][CP_IDX(cons)];
1863
1864 return TX_CMP_VALID(txcmp, raw_cons);
1865}
1866
Michael Chanc0c050c2015-10-22 16:01:17 -04001867static irqreturn_t bnxt_inta(int irq, void *dev_instance)
1868{
1869 struct bnxt_napi *bnapi = dev_instance;
1870 struct bnxt *bp = bnapi->bp;
1871 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
1872 u32 cons = RING_CMP(cpr->cp_raw_cons);
1873 u32 int_status;
1874
1875 prefetch(&cpr->cp_desc_ring[CP_RING(cons)][CP_IDX(cons)]);
1876
1877 if (!bnxt_has_work(bp, cpr)) {
Jeffrey Huang11809492015-11-05 16:25:49 -05001878 int_status = readl(bp->bar0 + BNXT_CAG_REG_LEGACY_INT_STATUS);
Michael Chanc0c050c2015-10-22 16:01:17 -04001879 /* return if erroneous interrupt */
1880 if (!(int_status & (0x10000 << cpr->cp_ring_struct.fw_ring_id)))
1881 return IRQ_NONE;
1882 }
1883
1884 /* disable ring IRQ */
Michael Chan697197e2018-10-14 07:02:46 -04001885 BNXT_CP_DB_IRQ_DIS(cpr->cp_db.doorbell);
Michael Chanc0c050c2015-10-22 16:01:17 -04001886
1887 /* Return here if interrupt is shared and is disabled. */
1888 if (unlikely(atomic_read(&bp->intr_sem) != 0))
1889 return IRQ_HANDLED;
1890
1891 napi_schedule(&bnapi->napi);
1892 return IRQ_HANDLED;
1893}
1894
Michael Chan3675b922018-10-14 07:02:57 -04001895static int __bnxt_poll_work(struct bnxt *bp, struct bnxt_cp_ring_info *cpr,
1896 int budget)
Michael Chanc0c050c2015-10-22 16:01:17 -04001897{
Michael Chane44758b2018-10-14 07:02:55 -04001898 struct bnxt_napi *bnapi = cpr->bnapi;
Michael Chanc0c050c2015-10-22 16:01:17 -04001899 u32 raw_cons = cpr->cp_raw_cons;
1900 u32 cons;
1901 int tx_pkts = 0;
1902 int rx_pkts = 0;
Michael Chan4e5dbbda2017-02-06 16:55:37 -05001903 u8 event = 0;
Michael Chanc0c050c2015-10-22 16:01:17 -04001904 struct tx_cmp *txcmp;
1905
Michael Chan0fcec982018-10-14 07:02:58 -04001906 cpr->has_more_work = 0;
Michael Chanc0c050c2015-10-22 16:01:17 -04001907 while (1) {
1908 int rc;
1909
1910 cons = RING_CMP(raw_cons);
1911 txcmp = &cpr->cp_desc_ring[CP_RING(cons)][CP_IDX(cons)];
1912
1913 if (!TX_CMP_VALID(txcmp, raw_cons))
1914 break;
1915
Michael Chan67a95e22016-05-04 16:56:43 -04001916 /* The valid test of the entry must be done first before
1917 * reading any further.
1918 */
Michael Chanb67daab2016-05-15 03:04:51 -04001919 dma_rmb();
Michael Chan3675b922018-10-14 07:02:57 -04001920 cpr->had_work_done = 1;
Michael Chanc0c050c2015-10-22 16:01:17 -04001921 if (TX_CMP_TYPE(txcmp) == CMP_TYPE_TX_L2_CMP) {
1922 tx_pkts++;
1923 /* return full budget so NAPI will complete. */
Michael Chan73f21c62018-09-26 00:41:04 -04001924 if (unlikely(tx_pkts > bp->tx_wake_thresh)) {
Michael Chanc0c050c2015-10-22 16:01:17 -04001925 rx_pkts = budget;
Michael Chan73f21c62018-09-26 00:41:04 -04001926 raw_cons = NEXT_RAW_CMP(raw_cons);
Michael Chan0fcec982018-10-14 07:02:58 -04001927 if (budget)
1928 cpr->has_more_work = 1;
Michael Chan73f21c62018-09-26 00:41:04 -04001929 break;
1930 }
Michael Chanc0c050c2015-10-22 16:01:17 -04001931 } else if ((TX_CMP_TYPE(txcmp) & 0x30) == 0x10) {
Michael Chan2270bc52017-06-23 14:01:01 -04001932 if (likely(budget))
Michael Chane44758b2018-10-14 07:02:55 -04001933 rc = bnxt_rx_pkt(bp, cpr, &raw_cons, &event);
Michael Chan2270bc52017-06-23 14:01:01 -04001934 else
Michael Chane44758b2018-10-14 07:02:55 -04001935 rc = bnxt_force_rx_discard(bp, cpr, &raw_cons,
Michael Chan2270bc52017-06-23 14:01:01 -04001936 &event);
Michael Chanc0c050c2015-10-22 16:01:17 -04001937 if (likely(rc >= 0))
1938 rx_pkts += rc;
Michael Chan903649e2017-08-28 13:40:30 -04001939 /* Increment rx_pkts when rc is -ENOMEM to count towards
1940 * the NAPI budget. Otherwise, we may potentially loop
1941 * here forever if we consistently cannot allocate
1942 * buffers.
1943 */
Calvin Owens2edbdb32017-12-08 09:05:26 -08001944 else if (rc == -ENOMEM && budget)
Michael Chan903649e2017-08-28 13:40:30 -04001945 rx_pkts++;
Michael Chanc0c050c2015-10-22 16:01:17 -04001946 else if (rc == -EBUSY) /* partial completion */
1947 break;
Michael Chanc0c050c2015-10-22 16:01:17 -04001948 } else if (unlikely((TX_CMP_TYPE(txcmp) ==
1949 CMPL_BASE_TYPE_HWRM_DONE) ||
1950 (TX_CMP_TYPE(txcmp) ==
1951 CMPL_BASE_TYPE_HWRM_FWD_REQ) ||
1952 (TX_CMP_TYPE(txcmp) ==
1953 CMPL_BASE_TYPE_HWRM_ASYNC_EVENT))) {
1954 bnxt_hwrm_handler(bp, txcmp);
1955 }
1956 raw_cons = NEXT_RAW_CMP(raw_cons);
1957
Michael Chan0fcec982018-10-14 07:02:58 -04001958 if (rx_pkts && rx_pkts == budget) {
1959 cpr->has_more_work = 1;
Michael Chanc0c050c2015-10-22 16:01:17 -04001960 break;
Michael Chan0fcec982018-10-14 07:02:58 -04001961 }
Michael Chanc0c050c2015-10-22 16:01:17 -04001962 }
1963
Michael Chan38413402017-02-06 16:55:43 -05001964 if (event & BNXT_TX_EVENT) {
1965 struct bnxt_tx_ring_info *txr = bnapi->tx_ring;
Michael Chan38413402017-02-06 16:55:43 -05001966 u16 prod = txr->tx_prod;
1967
1968 /* Sync BD data before updating doorbell */
1969 wmb();
1970
Michael Chan697197e2018-10-14 07:02:46 -04001971 bnxt_db_write_relaxed(bp, &txr->tx_db, prod);
Michael Chan38413402017-02-06 16:55:43 -05001972 }
1973
Michael Chanc0c050c2015-10-22 16:01:17 -04001974 cpr->cp_raw_cons = raw_cons;
Michael Chan3675b922018-10-14 07:02:57 -04001975 bnapi->tx_pkts += tx_pkts;
1976 bnapi->events |= event;
1977 return rx_pkts;
1978}
1979
1980static void __bnxt_poll_work_done(struct bnxt *bp, struct bnxt_napi *bnapi)
1981{
1982 if (bnapi->tx_pkts) {
1983 bnapi->tx_int(bp, bnapi, bnapi->tx_pkts);
1984 bnapi->tx_pkts = 0;
1985 }
1986
1987 if (bnapi->events & BNXT_RX_EVENT) {
1988 struct bnxt_rx_ring_info *rxr = bnapi->rx_ring;
1989
1990 bnxt_db_write(bp, &rxr->rx_db, rxr->rx_prod);
1991 if (bnapi->events & BNXT_AGG_EVENT)
1992 bnxt_db_write(bp, &rxr->rx_agg_db, rxr->rx_agg_prod);
1993 }
1994 bnapi->events = 0;
1995}
1996
1997static int bnxt_poll_work(struct bnxt *bp, struct bnxt_cp_ring_info *cpr,
1998 int budget)
1999{
2000 struct bnxt_napi *bnapi = cpr->bnapi;
2001 int rx_pkts;
2002
2003 rx_pkts = __bnxt_poll_work(bp, cpr, budget);
2004
Michael Chanc0c050c2015-10-22 16:01:17 -04002005 /* ACK completion ring before freeing tx ring and producing new
2006 * buffers in rx/agg rings to prevent overflowing the completion
2007 * ring.
2008 */
Michael Chan697197e2018-10-14 07:02:46 -04002009 bnxt_db_cq(bp, &cpr->cp_db, cpr->cp_raw_cons);
Michael Chanc0c050c2015-10-22 16:01:17 -04002010
Michael Chan3675b922018-10-14 07:02:57 -04002011 __bnxt_poll_work_done(bp, bnapi);
Michael Chanc0c050c2015-10-22 16:01:17 -04002012 return rx_pkts;
2013}
2014
Prashant Sreedharan10bbdaf2016-07-18 07:15:23 -04002015static int bnxt_poll_nitroa0(struct napi_struct *napi, int budget)
2016{
2017 struct bnxt_napi *bnapi = container_of(napi, struct bnxt_napi, napi);
2018 struct bnxt *bp = bnapi->bp;
2019 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
2020 struct bnxt_rx_ring_info *rxr = bnapi->rx_ring;
2021 struct tx_cmp *txcmp;
2022 struct rx_cmp_ext *rxcmp1;
2023 u32 cp_cons, tmp_raw_cons;
2024 u32 raw_cons = cpr->cp_raw_cons;
2025 u32 rx_pkts = 0;
Michael Chan4e5dbbda2017-02-06 16:55:37 -05002026 u8 event = 0;
Prashant Sreedharan10bbdaf2016-07-18 07:15:23 -04002027
2028 while (1) {
2029 int rc;
2030
2031 cp_cons = RING_CMP(raw_cons);
2032 txcmp = &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)];
2033
2034 if (!TX_CMP_VALID(txcmp, raw_cons))
2035 break;
2036
2037 if ((TX_CMP_TYPE(txcmp) & 0x30) == 0x10) {
2038 tmp_raw_cons = NEXT_RAW_CMP(raw_cons);
2039 cp_cons = RING_CMP(tmp_raw_cons);
2040 rxcmp1 = (struct rx_cmp_ext *)
2041 &cpr->cp_desc_ring[CP_RING(cp_cons)][CP_IDX(cp_cons)];
2042
2043 if (!RX_CMP_VALID(rxcmp1, tmp_raw_cons))
2044 break;
2045
2046 /* force an error to recycle the buffer */
2047 rxcmp1->rx_cmp_cfa_code_errors_v2 |=
2048 cpu_to_le32(RX_CMPL_ERRORS_CRC_ERROR);
2049
Michael Chane44758b2018-10-14 07:02:55 -04002050 rc = bnxt_rx_pkt(bp, cpr, &raw_cons, &event);
Calvin Owens2edbdb32017-12-08 09:05:26 -08002051 if (likely(rc == -EIO) && budget)
Prashant Sreedharan10bbdaf2016-07-18 07:15:23 -04002052 rx_pkts++;
2053 else if (rc == -EBUSY) /* partial completion */
2054 break;
2055 } else if (unlikely(TX_CMP_TYPE(txcmp) ==
2056 CMPL_BASE_TYPE_HWRM_DONE)) {
2057 bnxt_hwrm_handler(bp, txcmp);
2058 } else {
2059 netdev_err(bp->dev,
2060 "Invalid completion received on special ring\n");
2061 }
2062 raw_cons = NEXT_RAW_CMP(raw_cons);
2063
2064 if (rx_pkts == budget)
2065 break;
2066 }
2067
2068 cpr->cp_raw_cons = raw_cons;
Michael Chan697197e2018-10-14 07:02:46 -04002069 BNXT_DB_CQ(&cpr->cp_db, cpr->cp_raw_cons);
2070 bnxt_db_write(bp, &rxr->rx_db, rxr->rx_prod);
Prashant Sreedharan10bbdaf2016-07-18 07:15:23 -04002071
Michael Chan434c9752017-05-29 19:06:08 -04002072 if (event & BNXT_AGG_EVENT)
Michael Chan697197e2018-10-14 07:02:46 -04002073 bnxt_db_write(bp, &rxr->rx_agg_db, rxr->rx_agg_prod);
Prashant Sreedharan10bbdaf2016-07-18 07:15:23 -04002074
2075 if (!bnxt_has_work(bp, cpr) && rx_pkts < budget) {
Eric Dumazet6ad20162017-01-30 08:22:01 -08002076 napi_complete_done(napi, rx_pkts);
Michael Chan697197e2018-10-14 07:02:46 -04002077 BNXT_DB_CQ_ARM(&cpr->cp_db, cpr->cp_raw_cons);
Prashant Sreedharan10bbdaf2016-07-18 07:15:23 -04002078 }
2079 return rx_pkts;
2080}
2081
Michael Chanc0c050c2015-10-22 16:01:17 -04002082static int bnxt_poll(struct napi_struct *napi, int budget)
2083{
2084 struct bnxt_napi *bnapi = container_of(napi, struct bnxt_napi, napi);
2085 struct bnxt *bp = bnapi->bp;
2086 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
2087 int work_done = 0;
2088
Michael Chanc0c050c2015-10-22 16:01:17 -04002089 while (1) {
Michael Chane44758b2018-10-14 07:02:55 -04002090 work_done += bnxt_poll_work(bp, cpr, budget - work_done);
Michael Chanc0c050c2015-10-22 16:01:17 -04002091
Michael Chan73f21c62018-09-26 00:41:04 -04002092 if (work_done >= budget) {
2093 if (!budget)
Michael Chan697197e2018-10-14 07:02:46 -04002094 BNXT_DB_CQ_ARM(&cpr->cp_db, cpr->cp_raw_cons);
Michael Chanc0c050c2015-10-22 16:01:17 -04002095 break;
Michael Chan73f21c62018-09-26 00:41:04 -04002096 }
Michael Chanc0c050c2015-10-22 16:01:17 -04002097
2098 if (!bnxt_has_work(bp, cpr)) {
Michael Chane7b95692016-12-29 12:13:32 -05002099 if (napi_complete_done(napi, work_done))
Michael Chan697197e2018-10-14 07:02:46 -04002100 BNXT_DB_CQ_ARM(&cpr->cp_db, cpr->cp_raw_cons);
Michael Chanc0c050c2015-10-22 16:01:17 -04002101 break;
2102 }
2103 }
Andy Gospodarek6a8788f2018-01-09 16:06:20 -05002104 if (bp->flags & BNXT_FLAG_DIM) {
2105 struct net_dim_sample dim_sample;
2106
2107 net_dim_sample(cpr->event_ctr,
2108 cpr->rx_packets,
2109 cpr->rx_bytes,
2110 &dim_sample);
2111 net_dim(&cpr->dim, dim_sample);
2112 }
Michael Chanc0c050c2015-10-22 16:01:17 -04002113 mmiowb();
Michael Chanc0c050c2015-10-22 16:01:17 -04002114 return work_done;
2115}
2116
Michael Chan0fcec982018-10-14 07:02:58 -04002117static int __bnxt_poll_cqs(struct bnxt *bp, struct bnxt_napi *bnapi, int budget)
2118{
2119 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
2120 int i, work_done = 0;
2121
2122 for (i = 0; i < 2; i++) {
2123 struct bnxt_cp_ring_info *cpr2 = cpr->cp_ring_arr[i];
2124
2125 if (cpr2) {
2126 work_done += __bnxt_poll_work(bp, cpr2,
2127 budget - work_done);
2128 cpr->has_more_work |= cpr2->has_more_work;
2129 }
2130 }
2131 return work_done;
2132}
2133
2134static void __bnxt_poll_cqs_done(struct bnxt *bp, struct bnxt_napi *bnapi,
2135 u64 dbr_type, bool all)
2136{
2137 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
2138 int i;
2139
2140 for (i = 0; i < 2; i++) {
2141 struct bnxt_cp_ring_info *cpr2 = cpr->cp_ring_arr[i];
2142 struct bnxt_db_info *db;
2143
2144 if (cpr2 && (all || cpr2->had_work_done)) {
2145 db = &cpr2->cp_db;
2146 writeq(db->db_key64 | dbr_type |
2147 RING_CMP(cpr2->cp_raw_cons), db->doorbell);
2148 cpr2->had_work_done = 0;
2149 }
2150 }
2151 __bnxt_poll_work_done(bp, bnapi);
2152}
2153
2154static int bnxt_poll_p5(struct napi_struct *napi, int budget)
2155{
2156 struct bnxt_napi *bnapi = container_of(napi, struct bnxt_napi, napi);
2157 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
2158 u32 raw_cons = cpr->cp_raw_cons;
2159 struct bnxt *bp = bnapi->bp;
2160 struct nqe_cn *nqcmp;
2161 int work_done = 0;
2162 u32 cons;
2163
2164 if (cpr->has_more_work) {
2165 cpr->has_more_work = 0;
2166 work_done = __bnxt_poll_cqs(bp, bnapi, budget);
2167 if (cpr->has_more_work) {
2168 __bnxt_poll_cqs_done(bp, bnapi, DBR_TYPE_CQ, false);
2169 return work_done;
2170 }
2171 __bnxt_poll_cqs_done(bp, bnapi, DBR_TYPE_CQ_ARMALL, true);
2172 if (napi_complete_done(napi, work_done))
2173 BNXT_DB_NQ_ARM_P5(&cpr->cp_db, cpr->cp_raw_cons);
2174 return work_done;
2175 }
2176 while (1) {
2177 cons = RING_CMP(raw_cons);
2178 nqcmp = &cpr->nq_desc_ring[CP_RING(cons)][CP_IDX(cons)];
2179
2180 if (!NQ_CMP_VALID(nqcmp, raw_cons)) {
2181 __bnxt_poll_cqs_done(bp, bnapi, DBR_TYPE_CQ_ARMALL,
2182 false);
2183 cpr->cp_raw_cons = raw_cons;
2184 if (napi_complete_done(napi, work_done))
2185 BNXT_DB_NQ_ARM_P5(&cpr->cp_db,
2186 cpr->cp_raw_cons);
2187 return work_done;
2188 }
2189
2190 /* The valid test of the entry must be done first before
2191 * reading any further.
2192 */
2193 dma_rmb();
2194
2195 if (nqcmp->type == cpu_to_le16(NQ_CN_TYPE_CQ_NOTIFICATION)) {
2196 u32 idx = le32_to_cpu(nqcmp->cq_handle_low);
2197 struct bnxt_cp_ring_info *cpr2;
2198
2199 cpr2 = cpr->cp_ring_arr[idx];
2200 work_done += __bnxt_poll_work(bp, cpr2,
2201 budget - work_done);
2202 cpr->has_more_work = cpr2->has_more_work;
2203 } else {
2204 bnxt_hwrm_handler(bp, (struct tx_cmp *)nqcmp);
2205 }
2206 raw_cons = NEXT_RAW_CMP(raw_cons);
2207 if (cpr->has_more_work)
2208 break;
2209 }
2210 __bnxt_poll_cqs_done(bp, bnapi, DBR_TYPE_CQ, true);
2211 cpr->cp_raw_cons = raw_cons;
2212 return work_done;
2213}
2214
Michael Chanc0c050c2015-10-22 16:01:17 -04002215static void bnxt_free_tx_skbs(struct bnxt *bp)
2216{
2217 int i, max_idx;
2218 struct pci_dev *pdev = bp->pdev;
2219
Michael Chanb6ab4b02016-01-02 23:44:59 -05002220 if (!bp->tx_ring)
Michael Chanc0c050c2015-10-22 16:01:17 -04002221 return;
2222
2223 max_idx = bp->tx_nr_pages * TX_DESC_CNT;
2224 for (i = 0; i < bp->tx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05002225 struct bnxt_tx_ring_info *txr = &bp->tx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04002226 int j;
2227
Michael Chanc0c050c2015-10-22 16:01:17 -04002228 for (j = 0; j < max_idx;) {
2229 struct bnxt_sw_tx_bd *tx_buf = &txr->tx_buf_ring[j];
2230 struct sk_buff *skb = tx_buf->skb;
2231 int k, last;
2232
2233 if (!skb) {
2234 j++;
2235 continue;
2236 }
2237
2238 tx_buf->skb = NULL;
2239
2240 if (tx_buf->is_push) {
2241 dev_kfree_skb(skb);
2242 j += 2;
2243 continue;
2244 }
2245
2246 dma_unmap_single(&pdev->dev,
2247 dma_unmap_addr(tx_buf, mapping),
2248 skb_headlen(skb),
2249 PCI_DMA_TODEVICE);
2250
2251 last = tx_buf->nr_frags;
2252 j += 2;
Michael Chand612a572016-01-28 03:11:22 -05002253 for (k = 0; k < last; k++, j++) {
2254 int ring_idx = j & bp->tx_ring_mask;
Michael Chanc0c050c2015-10-22 16:01:17 -04002255 skb_frag_t *frag = &skb_shinfo(skb)->frags[k];
2256
Michael Chand612a572016-01-28 03:11:22 -05002257 tx_buf = &txr->tx_buf_ring[ring_idx];
Michael Chanc0c050c2015-10-22 16:01:17 -04002258 dma_unmap_page(
2259 &pdev->dev,
2260 dma_unmap_addr(tx_buf, mapping),
2261 skb_frag_size(frag), PCI_DMA_TODEVICE);
2262 }
2263 dev_kfree_skb(skb);
2264 }
2265 netdev_tx_reset_queue(netdev_get_tx_queue(bp->dev, i));
2266 }
2267}
2268
2269static void bnxt_free_rx_skbs(struct bnxt *bp)
2270{
2271 int i, max_idx, max_agg_idx;
2272 struct pci_dev *pdev = bp->pdev;
2273
Michael Chanb6ab4b02016-01-02 23:44:59 -05002274 if (!bp->rx_ring)
Michael Chanc0c050c2015-10-22 16:01:17 -04002275 return;
2276
2277 max_idx = bp->rx_nr_pages * RX_DESC_CNT;
2278 max_agg_idx = bp->rx_agg_nr_pages * RX_DESC_CNT;
2279 for (i = 0; i < bp->rx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05002280 struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04002281 int j;
2282
Michael Chanc0c050c2015-10-22 16:01:17 -04002283 if (rxr->rx_tpa) {
2284 for (j = 0; j < MAX_TPA; j++) {
2285 struct bnxt_tpa_info *tpa_info =
2286 &rxr->rx_tpa[j];
2287 u8 *data = tpa_info->data;
2288
2289 if (!data)
2290 continue;
2291
Shannon Nelsonc519fe92017-05-09 18:30:12 -07002292 dma_unmap_single_attrs(&pdev->dev,
2293 tpa_info->mapping,
2294 bp->rx_buf_use_size,
2295 bp->rx_dir,
2296 DMA_ATTR_WEAK_ORDERING);
Michael Chanc0c050c2015-10-22 16:01:17 -04002297
2298 tpa_info->data = NULL;
2299
2300 kfree(data);
2301 }
2302 }
2303
2304 for (j = 0; j < max_idx; j++) {
2305 struct bnxt_sw_rx_bd *rx_buf = &rxr->rx_buf_ring[j];
Michael Chan3ed3a832017-03-28 19:47:31 -04002306 dma_addr_t mapping = rx_buf->mapping;
Michael Chan6bb19472017-02-06 16:55:32 -05002307 void *data = rx_buf->data;
Michael Chanc0c050c2015-10-22 16:01:17 -04002308
2309 if (!data)
2310 continue;
2311
Michael Chanc0c050c2015-10-22 16:01:17 -04002312 rx_buf->data = NULL;
2313
Michael Chan3ed3a832017-03-28 19:47:31 -04002314 if (BNXT_RX_PAGE_MODE(bp)) {
2315 mapping -= bp->rx_dma_offset;
Shannon Nelsonc519fe92017-05-09 18:30:12 -07002316 dma_unmap_page_attrs(&pdev->dev, mapping,
2317 PAGE_SIZE, bp->rx_dir,
2318 DMA_ATTR_WEAK_ORDERING);
Michael Chanc61fb992017-02-06 16:55:36 -05002319 __free_page(data);
Michael Chan3ed3a832017-03-28 19:47:31 -04002320 } else {
Shannon Nelsonc519fe92017-05-09 18:30:12 -07002321 dma_unmap_single_attrs(&pdev->dev, mapping,
2322 bp->rx_buf_use_size,
2323 bp->rx_dir,
2324 DMA_ATTR_WEAK_ORDERING);
Michael Chanc61fb992017-02-06 16:55:36 -05002325 kfree(data);
Michael Chan3ed3a832017-03-28 19:47:31 -04002326 }
Michael Chanc0c050c2015-10-22 16:01:17 -04002327 }
2328
2329 for (j = 0; j < max_agg_idx; j++) {
2330 struct bnxt_sw_rx_agg_bd *rx_agg_buf =
2331 &rxr->rx_agg_ring[j];
2332 struct page *page = rx_agg_buf->page;
2333
2334 if (!page)
2335 continue;
2336
Shannon Nelsonc519fe92017-05-09 18:30:12 -07002337 dma_unmap_page_attrs(&pdev->dev, rx_agg_buf->mapping,
2338 BNXT_RX_PAGE_SIZE,
2339 PCI_DMA_FROMDEVICE,
2340 DMA_ATTR_WEAK_ORDERING);
Michael Chanc0c050c2015-10-22 16:01:17 -04002341
2342 rx_agg_buf->page = NULL;
2343 __clear_bit(j, rxr->rx_agg_bmap);
2344
2345 __free_page(page);
2346 }
Michael Chan89d0a062016-04-25 02:30:51 -04002347 if (rxr->rx_page) {
2348 __free_page(rxr->rx_page);
2349 rxr->rx_page = NULL;
2350 }
Michael Chanc0c050c2015-10-22 16:01:17 -04002351 }
2352}
2353
2354static void bnxt_free_skbs(struct bnxt *bp)
2355{
2356 bnxt_free_tx_skbs(bp);
2357 bnxt_free_rx_skbs(bp);
2358}
2359
Michael Chan6fe19882018-10-14 07:02:41 -04002360static void bnxt_free_ring(struct bnxt *bp, struct bnxt_ring_mem_info *rmem)
Michael Chanc0c050c2015-10-22 16:01:17 -04002361{
2362 struct pci_dev *pdev = bp->pdev;
2363 int i;
2364
Michael Chan6fe19882018-10-14 07:02:41 -04002365 for (i = 0; i < rmem->nr_pages; i++) {
2366 if (!rmem->pg_arr[i])
Michael Chanc0c050c2015-10-22 16:01:17 -04002367 continue;
2368
Michael Chan6fe19882018-10-14 07:02:41 -04002369 dma_free_coherent(&pdev->dev, rmem->page_size,
2370 rmem->pg_arr[i], rmem->dma_arr[i]);
Michael Chanc0c050c2015-10-22 16:01:17 -04002371
Michael Chan6fe19882018-10-14 07:02:41 -04002372 rmem->pg_arr[i] = NULL;
Michael Chanc0c050c2015-10-22 16:01:17 -04002373 }
Michael Chan6fe19882018-10-14 07:02:41 -04002374 if (rmem->pg_tbl) {
2375 dma_free_coherent(&pdev->dev, rmem->nr_pages * 8,
2376 rmem->pg_tbl, rmem->pg_tbl_map);
2377 rmem->pg_tbl = NULL;
Michael Chanc0c050c2015-10-22 16:01:17 -04002378 }
Michael Chan6fe19882018-10-14 07:02:41 -04002379 if (rmem->vmem_size && *rmem->vmem) {
2380 vfree(*rmem->vmem);
2381 *rmem->vmem = NULL;
Michael Chanc0c050c2015-10-22 16:01:17 -04002382 }
2383}
2384
Michael Chan6fe19882018-10-14 07:02:41 -04002385static int bnxt_alloc_ring(struct bnxt *bp, struct bnxt_ring_mem_info *rmem)
Michael Chanc0c050c2015-10-22 16:01:17 -04002386{
Michael Chanc0c050c2015-10-22 16:01:17 -04002387 struct pci_dev *pdev = bp->pdev;
Michael Chan66cca202018-10-14 07:02:42 -04002388 u64 valid_bit = 0;
Michael Chan6fe19882018-10-14 07:02:41 -04002389 int i;
Michael Chanc0c050c2015-10-22 16:01:17 -04002390
Michael Chan66cca202018-10-14 07:02:42 -04002391 if (rmem->flags & (BNXT_RMEM_VALID_PTE_FLAG | BNXT_RMEM_RING_PTE_FLAG))
2392 valid_bit = PTU_PTE_VALID;
Michael Chan6fe19882018-10-14 07:02:41 -04002393 if (rmem->nr_pages > 1) {
2394 rmem->pg_tbl = dma_alloc_coherent(&pdev->dev,
2395 rmem->nr_pages * 8,
2396 &rmem->pg_tbl_map,
Michael Chanc0c050c2015-10-22 16:01:17 -04002397 GFP_KERNEL);
Michael Chan6fe19882018-10-14 07:02:41 -04002398 if (!rmem->pg_tbl)
Michael Chanc0c050c2015-10-22 16:01:17 -04002399 return -ENOMEM;
2400 }
2401
Michael Chan6fe19882018-10-14 07:02:41 -04002402 for (i = 0; i < rmem->nr_pages; i++) {
Michael Chan66cca202018-10-14 07:02:42 -04002403 u64 extra_bits = valid_bit;
2404
Michael Chan6fe19882018-10-14 07:02:41 -04002405 rmem->pg_arr[i] = dma_alloc_coherent(&pdev->dev,
2406 rmem->page_size,
2407 &rmem->dma_arr[i],
Michael Chanc0c050c2015-10-22 16:01:17 -04002408 GFP_KERNEL);
Michael Chan6fe19882018-10-14 07:02:41 -04002409 if (!rmem->pg_arr[i])
Michael Chanc0c050c2015-10-22 16:01:17 -04002410 return -ENOMEM;
2411
Michael Chan66cca202018-10-14 07:02:42 -04002412 if (rmem->nr_pages > 1) {
2413 if (i == rmem->nr_pages - 2 &&
2414 (rmem->flags & BNXT_RMEM_RING_PTE_FLAG))
2415 extra_bits |= PTU_PTE_NEXT_TO_LAST;
2416 else if (i == rmem->nr_pages - 1 &&
2417 (rmem->flags & BNXT_RMEM_RING_PTE_FLAG))
2418 extra_bits |= PTU_PTE_LAST;
2419 rmem->pg_tbl[i] =
2420 cpu_to_le64(rmem->dma_arr[i] | extra_bits);
2421 }
Michael Chanc0c050c2015-10-22 16:01:17 -04002422 }
2423
Michael Chan6fe19882018-10-14 07:02:41 -04002424 if (rmem->vmem_size) {
2425 *rmem->vmem = vzalloc(rmem->vmem_size);
2426 if (!(*rmem->vmem))
Michael Chanc0c050c2015-10-22 16:01:17 -04002427 return -ENOMEM;
2428 }
2429 return 0;
2430}
2431
2432static void bnxt_free_rx_rings(struct bnxt *bp)
2433{
2434 int i;
2435
Michael Chanb6ab4b02016-01-02 23:44:59 -05002436 if (!bp->rx_ring)
Michael Chanc0c050c2015-10-22 16:01:17 -04002437 return;
2438
2439 for (i = 0; i < bp->rx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05002440 struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04002441 struct bnxt_ring_struct *ring;
2442
Michael Chanc6d30e82017-02-06 16:55:42 -05002443 if (rxr->xdp_prog)
2444 bpf_prog_put(rxr->xdp_prog);
2445
Jesper Dangaard Brouer96a86042018-01-03 11:25:44 +01002446 if (xdp_rxq_info_is_reg(&rxr->xdp_rxq))
2447 xdp_rxq_info_unreg(&rxr->xdp_rxq);
2448
Michael Chanc0c050c2015-10-22 16:01:17 -04002449 kfree(rxr->rx_tpa);
2450 rxr->rx_tpa = NULL;
2451
2452 kfree(rxr->rx_agg_bmap);
2453 rxr->rx_agg_bmap = NULL;
2454
2455 ring = &rxr->rx_ring_struct;
Michael Chan6fe19882018-10-14 07:02:41 -04002456 bnxt_free_ring(bp, &ring->ring_mem);
Michael Chanc0c050c2015-10-22 16:01:17 -04002457
2458 ring = &rxr->rx_agg_ring_struct;
Michael Chan6fe19882018-10-14 07:02:41 -04002459 bnxt_free_ring(bp, &ring->ring_mem);
Michael Chanc0c050c2015-10-22 16:01:17 -04002460 }
2461}
2462
2463static int bnxt_alloc_rx_rings(struct bnxt *bp)
2464{
2465 int i, rc, agg_rings = 0, tpa_rings = 0;
2466
Michael Chanb6ab4b02016-01-02 23:44:59 -05002467 if (!bp->rx_ring)
2468 return -ENOMEM;
2469
Michael Chanc0c050c2015-10-22 16:01:17 -04002470 if (bp->flags & BNXT_FLAG_AGG_RINGS)
2471 agg_rings = 1;
2472
2473 if (bp->flags & BNXT_FLAG_TPA)
2474 tpa_rings = 1;
2475
2476 for (i = 0; i < bp->rx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05002477 struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04002478 struct bnxt_ring_struct *ring;
2479
Michael Chanc0c050c2015-10-22 16:01:17 -04002480 ring = &rxr->rx_ring_struct;
2481
Jesper Dangaard Brouer96a86042018-01-03 11:25:44 +01002482 rc = xdp_rxq_info_reg(&rxr->xdp_rxq, bp->dev, i);
2483 if (rc < 0)
2484 return rc;
2485
Michael Chan6fe19882018-10-14 07:02:41 -04002486 rc = bnxt_alloc_ring(bp, &ring->ring_mem);
Michael Chanc0c050c2015-10-22 16:01:17 -04002487 if (rc)
2488 return rc;
2489
Michael Chan2c61d212018-10-14 07:02:50 -04002490 ring->grp_idx = i;
Michael Chanc0c050c2015-10-22 16:01:17 -04002491 if (agg_rings) {
2492 u16 mem_size;
2493
2494 ring = &rxr->rx_agg_ring_struct;
Michael Chan6fe19882018-10-14 07:02:41 -04002495 rc = bnxt_alloc_ring(bp, &ring->ring_mem);
Michael Chanc0c050c2015-10-22 16:01:17 -04002496 if (rc)
2497 return rc;
2498
Michael Chan9899bb52018-03-31 13:54:16 -04002499 ring->grp_idx = i;
Michael Chanc0c050c2015-10-22 16:01:17 -04002500 rxr->rx_agg_bmap_size = bp->rx_agg_ring_mask + 1;
2501 mem_size = rxr->rx_agg_bmap_size / 8;
2502 rxr->rx_agg_bmap = kzalloc(mem_size, GFP_KERNEL);
2503 if (!rxr->rx_agg_bmap)
2504 return -ENOMEM;
2505
2506 if (tpa_rings) {
2507 rxr->rx_tpa = kcalloc(MAX_TPA,
2508 sizeof(struct bnxt_tpa_info),
2509 GFP_KERNEL);
2510 if (!rxr->rx_tpa)
2511 return -ENOMEM;
2512 }
2513 }
2514 }
2515 return 0;
2516}
2517
2518static void bnxt_free_tx_rings(struct bnxt *bp)
2519{
2520 int i;
2521 struct pci_dev *pdev = bp->pdev;
2522
Michael Chanb6ab4b02016-01-02 23:44:59 -05002523 if (!bp->tx_ring)
Michael Chanc0c050c2015-10-22 16:01:17 -04002524 return;
2525
2526 for (i = 0; i < bp->tx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05002527 struct bnxt_tx_ring_info *txr = &bp->tx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04002528 struct bnxt_ring_struct *ring;
2529
Michael Chanc0c050c2015-10-22 16:01:17 -04002530 if (txr->tx_push) {
2531 dma_free_coherent(&pdev->dev, bp->tx_push_size,
2532 txr->tx_push, txr->tx_push_mapping);
2533 txr->tx_push = NULL;
2534 }
2535
2536 ring = &txr->tx_ring_struct;
2537
Michael Chan6fe19882018-10-14 07:02:41 -04002538 bnxt_free_ring(bp, &ring->ring_mem);
Michael Chanc0c050c2015-10-22 16:01:17 -04002539 }
2540}
2541
2542static int bnxt_alloc_tx_rings(struct bnxt *bp)
2543{
2544 int i, j, rc;
2545 struct pci_dev *pdev = bp->pdev;
2546
2547 bp->tx_push_size = 0;
2548 if (bp->tx_push_thresh) {
2549 int push_size;
2550
2551 push_size = L1_CACHE_ALIGN(sizeof(struct tx_push_bd) +
2552 bp->tx_push_thresh);
2553
Michael Chan4419dbe2016-02-10 17:33:49 -05002554 if (push_size > 256) {
Michael Chanc0c050c2015-10-22 16:01:17 -04002555 push_size = 0;
2556 bp->tx_push_thresh = 0;
2557 }
2558
2559 bp->tx_push_size = push_size;
2560 }
2561
2562 for (i = 0, j = 0; i < bp->tx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05002563 struct bnxt_tx_ring_info *txr = &bp->tx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04002564 struct bnxt_ring_struct *ring;
Michael Chan2e8ef772018-04-26 17:44:31 -04002565 u8 qidx;
Michael Chanc0c050c2015-10-22 16:01:17 -04002566
Michael Chanc0c050c2015-10-22 16:01:17 -04002567 ring = &txr->tx_ring_struct;
2568
Michael Chan6fe19882018-10-14 07:02:41 -04002569 rc = bnxt_alloc_ring(bp, &ring->ring_mem);
Michael Chanc0c050c2015-10-22 16:01:17 -04002570 if (rc)
2571 return rc;
2572
Michael Chan9899bb52018-03-31 13:54:16 -04002573 ring->grp_idx = txr->bnapi->index;
Michael Chanc0c050c2015-10-22 16:01:17 -04002574 if (bp->tx_push_size) {
Michael Chanc0c050c2015-10-22 16:01:17 -04002575 dma_addr_t mapping;
2576
2577 /* One pre-allocated DMA buffer to backup
2578 * TX push operation
2579 */
2580 txr->tx_push = dma_alloc_coherent(&pdev->dev,
2581 bp->tx_push_size,
2582 &txr->tx_push_mapping,
2583 GFP_KERNEL);
2584
2585 if (!txr->tx_push)
2586 return -ENOMEM;
2587
Michael Chanc0c050c2015-10-22 16:01:17 -04002588 mapping = txr->tx_push_mapping +
2589 sizeof(struct tx_push_bd);
Michael Chan4419dbe2016-02-10 17:33:49 -05002590 txr->data_mapping = cpu_to_le64(mapping);
Michael Chanc0c050c2015-10-22 16:01:17 -04002591
Michael Chan4419dbe2016-02-10 17:33:49 -05002592 memset(txr->tx_push, 0, sizeof(struct tx_push_bd));
Michael Chanc0c050c2015-10-22 16:01:17 -04002593 }
Michael Chan2e8ef772018-04-26 17:44:31 -04002594 qidx = bp->tc_to_qidx[j];
2595 ring->queue_id = bp->q_info[qidx].queue_id;
Michael Chan5f449242017-02-06 16:55:40 -05002596 if (i < bp->tx_nr_rings_xdp)
2597 continue;
Michael Chanc0c050c2015-10-22 16:01:17 -04002598 if (i % bp->tx_nr_rings_per_tc == (bp->tx_nr_rings_per_tc - 1))
2599 j++;
2600 }
2601 return 0;
2602}
2603
2604static void bnxt_free_cp_rings(struct bnxt *bp)
2605{
2606 int i;
2607
2608 if (!bp->bnapi)
2609 return;
2610
2611 for (i = 0; i < bp->cp_nr_rings; i++) {
2612 struct bnxt_napi *bnapi = bp->bnapi[i];
2613 struct bnxt_cp_ring_info *cpr;
2614 struct bnxt_ring_struct *ring;
Michael Chan50e3ab72018-10-14 07:02:49 -04002615 int j;
Michael Chanc0c050c2015-10-22 16:01:17 -04002616
2617 if (!bnapi)
2618 continue;
2619
2620 cpr = &bnapi->cp_ring;
2621 ring = &cpr->cp_ring_struct;
2622
Michael Chan6fe19882018-10-14 07:02:41 -04002623 bnxt_free_ring(bp, &ring->ring_mem);
Michael Chan50e3ab72018-10-14 07:02:49 -04002624
2625 for (j = 0; j < 2; j++) {
2626 struct bnxt_cp_ring_info *cpr2 = cpr->cp_ring_arr[j];
2627
2628 if (cpr2) {
2629 ring = &cpr2->cp_ring_struct;
2630 bnxt_free_ring(bp, &ring->ring_mem);
2631 kfree(cpr2);
2632 cpr->cp_ring_arr[j] = NULL;
2633 }
2634 }
Michael Chanc0c050c2015-10-22 16:01:17 -04002635 }
2636}
2637
Michael Chan50e3ab72018-10-14 07:02:49 -04002638static struct bnxt_cp_ring_info *bnxt_alloc_cp_sub_ring(struct bnxt *bp)
2639{
2640 struct bnxt_ring_mem_info *rmem;
2641 struct bnxt_ring_struct *ring;
2642 struct bnxt_cp_ring_info *cpr;
2643 int rc;
2644
2645 cpr = kzalloc(sizeof(*cpr), GFP_KERNEL);
2646 if (!cpr)
2647 return NULL;
2648
2649 ring = &cpr->cp_ring_struct;
2650 rmem = &ring->ring_mem;
2651 rmem->nr_pages = bp->cp_nr_pages;
2652 rmem->page_size = HW_CMPD_RING_SIZE;
2653 rmem->pg_arr = (void **)cpr->cp_desc_ring;
2654 rmem->dma_arr = cpr->cp_desc_mapping;
2655 rmem->flags = BNXT_RMEM_RING_PTE_FLAG;
2656 rc = bnxt_alloc_ring(bp, rmem);
2657 if (rc) {
2658 bnxt_free_ring(bp, rmem);
2659 kfree(cpr);
2660 cpr = NULL;
2661 }
2662 return cpr;
2663}
2664
Michael Chanc0c050c2015-10-22 16:01:17 -04002665static int bnxt_alloc_cp_rings(struct bnxt *bp)
2666{
Michael Chan50e3ab72018-10-14 07:02:49 -04002667 bool sh = !!(bp->flags & BNXT_FLAG_SHARED_RINGS);
Michael Chane5811b82018-03-31 13:54:18 -04002668 int i, rc, ulp_base_vec, ulp_msix;
Michael Chanc0c050c2015-10-22 16:01:17 -04002669
Michael Chane5811b82018-03-31 13:54:18 -04002670 ulp_msix = bnxt_get_ulp_msix_num(bp);
2671 ulp_base_vec = bnxt_get_ulp_msix_base(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04002672 for (i = 0; i < bp->cp_nr_rings; i++) {
2673 struct bnxt_napi *bnapi = bp->bnapi[i];
2674 struct bnxt_cp_ring_info *cpr;
2675 struct bnxt_ring_struct *ring;
2676
2677 if (!bnapi)
2678 continue;
2679
2680 cpr = &bnapi->cp_ring;
Michael Chan50e3ab72018-10-14 07:02:49 -04002681 cpr->bnapi = bnapi;
Michael Chanc0c050c2015-10-22 16:01:17 -04002682 ring = &cpr->cp_ring_struct;
2683
Michael Chan6fe19882018-10-14 07:02:41 -04002684 rc = bnxt_alloc_ring(bp, &ring->ring_mem);
Michael Chanc0c050c2015-10-22 16:01:17 -04002685 if (rc)
2686 return rc;
Michael Chane5811b82018-03-31 13:54:18 -04002687
2688 if (ulp_msix && i >= ulp_base_vec)
2689 ring->map_idx = i + ulp_msix;
2690 else
2691 ring->map_idx = i;
Michael Chan50e3ab72018-10-14 07:02:49 -04002692
2693 if (!(bp->flags & BNXT_FLAG_CHIP_P5))
2694 continue;
2695
2696 if (i < bp->rx_nr_rings) {
2697 struct bnxt_cp_ring_info *cpr2 =
2698 bnxt_alloc_cp_sub_ring(bp);
2699
2700 cpr->cp_ring_arr[BNXT_RX_HDL] = cpr2;
2701 if (!cpr2)
2702 return -ENOMEM;
2703 cpr2->bnapi = bnapi;
2704 }
2705 if ((sh && i < bp->tx_nr_rings) ||
2706 (!sh && i >= bp->rx_nr_rings)) {
2707 struct bnxt_cp_ring_info *cpr2 =
2708 bnxt_alloc_cp_sub_ring(bp);
2709
2710 cpr->cp_ring_arr[BNXT_TX_HDL] = cpr2;
2711 if (!cpr2)
2712 return -ENOMEM;
2713 cpr2->bnapi = bnapi;
2714 }
Michael Chanc0c050c2015-10-22 16:01:17 -04002715 }
2716 return 0;
2717}
2718
2719static void bnxt_init_ring_struct(struct bnxt *bp)
2720{
2721 int i;
2722
2723 for (i = 0; i < bp->cp_nr_rings; i++) {
2724 struct bnxt_napi *bnapi = bp->bnapi[i];
Michael Chan6fe19882018-10-14 07:02:41 -04002725 struct bnxt_ring_mem_info *rmem;
Michael Chanc0c050c2015-10-22 16:01:17 -04002726 struct bnxt_cp_ring_info *cpr;
2727 struct bnxt_rx_ring_info *rxr;
2728 struct bnxt_tx_ring_info *txr;
2729 struct bnxt_ring_struct *ring;
2730
2731 if (!bnapi)
2732 continue;
2733
2734 cpr = &bnapi->cp_ring;
2735 ring = &cpr->cp_ring_struct;
Michael Chan6fe19882018-10-14 07:02:41 -04002736 rmem = &ring->ring_mem;
2737 rmem->nr_pages = bp->cp_nr_pages;
2738 rmem->page_size = HW_CMPD_RING_SIZE;
2739 rmem->pg_arr = (void **)cpr->cp_desc_ring;
2740 rmem->dma_arr = cpr->cp_desc_mapping;
2741 rmem->vmem_size = 0;
Michael Chanc0c050c2015-10-22 16:01:17 -04002742
Michael Chanb6ab4b02016-01-02 23:44:59 -05002743 rxr = bnapi->rx_ring;
Michael Chan3b2b7d92016-01-02 23:45:00 -05002744 if (!rxr)
2745 goto skip_rx;
2746
Michael Chanc0c050c2015-10-22 16:01:17 -04002747 ring = &rxr->rx_ring_struct;
Michael Chan6fe19882018-10-14 07:02:41 -04002748 rmem = &ring->ring_mem;
2749 rmem->nr_pages = bp->rx_nr_pages;
2750 rmem->page_size = HW_RXBD_RING_SIZE;
2751 rmem->pg_arr = (void **)rxr->rx_desc_ring;
2752 rmem->dma_arr = rxr->rx_desc_mapping;
2753 rmem->vmem_size = SW_RXBD_RING_SIZE * bp->rx_nr_pages;
2754 rmem->vmem = (void **)&rxr->rx_buf_ring;
Michael Chanc0c050c2015-10-22 16:01:17 -04002755
2756 ring = &rxr->rx_agg_ring_struct;
Michael Chan6fe19882018-10-14 07:02:41 -04002757 rmem = &ring->ring_mem;
2758 rmem->nr_pages = bp->rx_agg_nr_pages;
2759 rmem->page_size = HW_RXBD_RING_SIZE;
2760 rmem->pg_arr = (void **)rxr->rx_agg_desc_ring;
2761 rmem->dma_arr = rxr->rx_agg_desc_mapping;
2762 rmem->vmem_size = SW_RXBD_AGG_RING_SIZE * bp->rx_agg_nr_pages;
2763 rmem->vmem = (void **)&rxr->rx_agg_ring;
Michael Chanc0c050c2015-10-22 16:01:17 -04002764
Michael Chan3b2b7d92016-01-02 23:45:00 -05002765skip_rx:
Michael Chanb6ab4b02016-01-02 23:44:59 -05002766 txr = bnapi->tx_ring;
Michael Chan3b2b7d92016-01-02 23:45:00 -05002767 if (!txr)
2768 continue;
2769
Michael Chanc0c050c2015-10-22 16:01:17 -04002770 ring = &txr->tx_ring_struct;
Michael Chan6fe19882018-10-14 07:02:41 -04002771 rmem = &ring->ring_mem;
2772 rmem->nr_pages = bp->tx_nr_pages;
2773 rmem->page_size = HW_RXBD_RING_SIZE;
2774 rmem->pg_arr = (void **)txr->tx_desc_ring;
2775 rmem->dma_arr = txr->tx_desc_mapping;
2776 rmem->vmem_size = SW_TXBD_RING_SIZE * bp->tx_nr_pages;
2777 rmem->vmem = (void **)&txr->tx_buf_ring;
Michael Chanc0c050c2015-10-22 16:01:17 -04002778 }
2779}
2780
2781static void bnxt_init_rxbd_pages(struct bnxt_ring_struct *ring, u32 type)
2782{
2783 int i;
2784 u32 prod;
2785 struct rx_bd **rx_buf_ring;
2786
Michael Chan6fe19882018-10-14 07:02:41 -04002787 rx_buf_ring = (struct rx_bd **)ring->ring_mem.pg_arr;
2788 for (i = 0, prod = 0; i < ring->ring_mem.nr_pages; i++) {
Michael Chanc0c050c2015-10-22 16:01:17 -04002789 int j;
2790 struct rx_bd *rxbd;
2791
2792 rxbd = rx_buf_ring[i];
2793 if (!rxbd)
2794 continue;
2795
2796 for (j = 0; j < RX_DESC_CNT; j++, rxbd++, prod++) {
2797 rxbd->rx_bd_len_flags_type = cpu_to_le32(type);
2798 rxbd->rx_bd_opaque = prod;
2799 }
2800 }
2801}
2802
2803static int bnxt_init_one_rx_ring(struct bnxt *bp, int ring_nr)
2804{
2805 struct net_device *dev = bp->dev;
Michael Chanc0c050c2015-10-22 16:01:17 -04002806 struct bnxt_rx_ring_info *rxr;
2807 struct bnxt_ring_struct *ring;
2808 u32 prod, type;
2809 int i;
2810
Michael Chanc0c050c2015-10-22 16:01:17 -04002811 type = (bp->rx_buf_use_size << RX_BD_LEN_SHIFT) |
2812 RX_BD_TYPE_RX_PACKET_BD | RX_BD_FLAGS_EOP;
2813
2814 if (NET_IP_ALIGN == 2)
2815 type |= RX_BD_FLAGS_SOP;
2816
Michael Chanb6ab4b02016-01-02 23:44:59 -05002817 rxr = &bp->rx_ring[ring_nr];
Michael Chanc0c050c2015-10-22 16:01:17 -04002818 ring = &rxr->rx_ring_struct;
2819 bnxt_init_rxbd_pages(ring, type);
2820
Michael Chanc6d30e82017-02-06 16:55:42 -05002821 if (BNXT_RX_PAGE_MODE(bp) && bp->xdp_prog) {
2822 rxr->xdp_prog = bpf_prog_add(bp->xdp_prog, 1);
2823 if (IS_ERR(rxr->xdp_prog)) {
2824 int rc = PTR_ERR(rxr->xdp_prog);
2825
2826 rxr->xdp_prog = NULL;
2827 return rc;
2828 }
2829 }
Michael Chanc0c050c2015-10-22 16:01:17 -04002830 prod = rxr->rx_prod;
2831 for (i = 0; i < bp->rx_ring_size; i++) {
2832 if (bnxt_alloc_rx_data(bp, rxr, prod, GFP_KERNEL) != 0) {
2833 netdev_warn(dev, "init'ed rx ring %d with %d/%d skbs only\n",
2834 ring_nr, i, bp->rx_ring_size);
2835 break;
2836 }
2837 prod = NEXT_RX(prod);
2838 }
2839 rxr->rx_prod = prod;
2840 ring->fw_ring_id = INVALID_HW_RING_ID;
2841
Michael Chanedd0c2c2015-12-27 18:19:19 -05002842 ring = &rxr->rx_agg_ring_struct;
2843 ring->fw_ring_id = INVALID_HW_RING_ID;
2844
Michael Chanc0c050c2015-10-22 16:01:17 -04002845 if (!(bp->flags & BNXT_FLAG_AGG_RINGS))
2846 return 0;
2847
Michael Chan2839f282016-04-25 02:30:50 -04002848 type = ((u32)BNXT_RX_PAGE_SIZE << RX_BD_LEN_SHIFT) |
Michael Chanc0c050c2015-10-22 16:01:17 -04002849 RX_BD_TYPE_RX_AGG_BD | RX_BD_FLAGS_SOP;
2850
2851 bnxt_init_rxbd_pages(ring, type);
2852
2853 prod = rxr->rx_agg_prod;
2854 for (i = 0; i < bp->rx_agg_ring_size; i++) {
2855 if (bnxt_alloc_rx_page(bp, rxr, prod, GFP_KERNEL) != 0) {
2856 netdev_warn(dev, "init'ed rx ring %d with %d/%d pages only\n",
2857 ring_nr, i, bp->rx_ring_size);
2858 break;
2859 }
2860 prod = NEXT_RX_AGG(prod);
2861 }
2862 rxr->rx_agg_prod = prod;
Michael Chanc0c050c2015-10-22 16:01:17 -04002863
2864 if (bp->flags & BNXT_FLAG_TPA) {
2865 if (rxr->rx_tpa) {
2866 u8 *data;
2867 dma_addr_t mapping;
2868
2869 for (i = 0; i < MAX_TPA; i++) {
2870 data = __bnxt_alloc_rx_data(bp, &mapping,
2871 GFP_KERNEL);
2872 if (!data)
2873 return -ENOMEM;
2874
2875 rxr->rx_tpa[i].data = data;
Michael Chanb3dba772017-02-06 16:55:35 -05002876 rxr->rx_tpa[i].data_ptr = data + bp->rx_offset;
Michael Chanc0c050c2015-10-22 16:01:17 -04002877 rxr->rx_tpa[i].mapping = mapping;
2878 }
2879 } else {
2880 netdev_err(bp->dev, "No resource allocated for LRO/GRO\n");
2881 return -ENOMEM;
2882 }
2883 }
2884
2885 return 0;
2886}
2887
Sankar Patchineelam22479252017-03-28 19:47:29 -04002888static void bnxt_init_cp_rings(struct bnxt *bp)
2889{
Michael Chan3e08b182018-10-14 07:02:52 -04002890 int i, j;
Sankar Patchineelam22479252017-03-28 19:47:29 -04002891
2892 for (i = 0; i < bp->cp_nr_rings; i++) {
2893 struct bnxt_cp_ring_info *cpr = &bp->bnapi[i]->cp_ring;
2894 struct bnxt_ring_struct *ring = &cpr->cp_ring_struct;
2895
2896 ring->fw_ring_id = INVALID_HW_RING_ID;
Andy Gospodarek6a8788f2018-01-09 16:06:20 -05002897 cpr->rx_ring_coal.coal_ticks = bp->rx_coal.coal_ticks;
2898 cpr->rx_ring_coal.coal_bufs = bp->rx_coal.coal_bufs;
Michael Chan3e08b182018-10-14 07:02:52 -04002899 for (j = 0; j < 2; j++) {
2900 struct bnxt_cp_ring_info *cpr2 = cpr->cp_ring_arr[j];
2901
2902 if (!cpr2)
2903 continue;
2904
2905 ring = &cpr2->cp_ring_struct;
2906 ring->fw_ring_id = INVALID_HW_RING_ID;
2907 cpr2->rx_ring_coal.coal_ticks = bp->rx_coal.coal_ticks;
2908 cpr2->rx_ring_coal.coal_bufs = bp->rx_coal.coal_bufs;
2909 }
Sankar Patchineelam22479252017-03-28 19:47:29 -04002910 }
2911}
2912
Michael Chanc0c050c2015-10-22 16:01:17 -04002913static int bnxt_init_rx_rings(struct bnxt *bp)
2914{
2915 int i, rc = 0;
2916
Michael Chanc61fb992017-02-06 16:55:36 -05002917 if (BNXT_RX_PAGE_MODE(bp)) {
Michael Chanc6d30e82017-02-06 16:55:42 -05002918 bp->rx_offset = NET_IP_ALIGN + XDP_PACKET_HEADROOM;
2919 bp->rx_dma_offset = XDP_PACKET_HEADROOM;
Michael Chanc61fb992017-02-06 16:55:36 -05002920 } else {
2921 bp->rx_offset = BNXT_RX_OFFSET;
2922 bp->rx_dma_offset = BNXT_RX_DMA_OFFSET;
2923 }
Michael Chanb3dba772017-02-06 16:55:35 -05002924
Michael Chanc0c050c2015-10-22 16:01:17 -04002925 for (i = 0; i < bp->rx_nr_rings; i++) {
2926 rc = bnxt_init_one_rx_ring(bp, i);
2927 if (rc)
2928 break;
2929 }
2930
2931 return rc;
2932}
2933
2934static int bnxt_init_tx_rings(struct bnxt *bp)
2935{
2936 u16 i;
2937
2938 bp->tx_wake_thresh = max_t(int, bp->tx_ring_size / 2,
2939 MAX_SKB_FRAGS + 1);
2940
2941 for (i = 0; i < bp->tx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05002942 struct bnxt_tx_ring_info *txr = &bp->tx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04002943 struct bnxt_ring_struct *ring = &txr->tx_ring_struct;
2944
2945 ring->fw_ring_id = INVALID_HW_RING_ID;
2946 }
2947
2948 return 0;
2949}
2950
2951static void bnxt_free_ring_grps(struct bnxt *bp)
2952{
2953 kfree(bp->grp_info);
2954 bp->grp_info = NULL;
2955}
2956
2957static int bnxt_init_ring_grps(struct bnxt *bp, bool irq_re_init)
2958{
2959 int i;
2960
2961 if (irq_re_init) {
2962 bp->grp_info = kcalloc(bp->cp_nr_rings,
2963 sizeof(struct bnxt_ring_grp_info),
2964 GFP_KERNEL);
2965 if (!bp->grp_info)
2966 return -ENOMEM;
2967 }
2968 for (i = 0; i < bp->cp_nr_rings; i++) {
2969 if (irq_re_init)
2970 bp->grp_info[i].fw_stats_ctx = INVALID_HW_RING_ID;
2971 bp->grp_info[i].fw_grp_id = INVALID_HW_RING_ID;
2972 bp->grp_info[i].rx_fw_ring_id = INVALID_HW_RING_ID;
2973 bp->grp_info[i].agg_fw_ring_id = INVALID_HW_RING_ID;
2974 bp->grp_info[i].cp_fw_ring_id = INVALID_HW_RING_ID;
2975 }
2976 return 0;
2977}
2978
2979static void bnxt_free_vnics(struct bnxt *bp)
2980{
2981 kfree(bp->vnic_info);
2982 bp->vnic_info = NULL;
2983 bp->nr_vnics = 0;
2984}
2985
2986static int bnxt_alloc_vnics(struct bnxt *bp)
2987{
2988 int num_vnics = 1;
2989
2990#ifdef CONFIG_RFS_ACCEL
2991 if (bp->flags & BNXT_FLAG_RFS)
2992 num_vnics += bp->rx_nr_rings;
2993#endif
2994
Prashant Sreedharandc52c6c2016-07-18 07:15:24 -04002995 if (BNXT_CHIP_TYPE_NITRO_A0(bp))
2996 num_vnics++;
2997
Michael Chanc0c050c2015-10-22 16:01:17 -04002998 bp->vnic_info = kcalloc(num_vnics, sizeof(struct bnxt_vnic_info),
2999 GFP_KERNEL);
3000 if (!bp->vnic_info)
3001 return -ENOMEM;
3002
3003 bp->nr_vnics = num_vnics;
3004 return 0;
3005}
3006
3007static void bnxt_init_vnics(struct bnxt *bp)
3008{
3009 int i;
3010
3011 for (i = 0; i < bp->nr_vnics; i++) {
3012 struct bnxt_vnic_info *vnic = &bp->vnic_info[i];
Michael Chan44c6f722018-10-14 07:02:53 -04003013 int j;
Michael Chanc0c050c2015-10-22 16:01:17 -04003014
3015 vnic->fw_vnic_id = INVALID_HW_RING_ID;
Michael Chan44c6f722018-10-14 07:02:53 -04003016 for (j = 0; j < BNXT_MAX_CTX_PER_VNIC; j++)
3017 vnic->fw_rss_cos_lb_ctx[j] = INVALID_HW_RING_ID;
3018
Michael Chanc0c050c2015-10-22 16:01:17 -04003019 vnic->fw_l2_ctx_id = INVALID_HW_RING_ID;
3020
3021 if (bp->vnic_info[i].rss_hash_key) {
3022 if (i == 0)
3023 prandom_bytes(vnic->rss_hash_key,
3024 HW_HASH_KEY_SIZE);
3025 else
3026 memcpy(vnic->rss_hash_key,
3027 bp->vnic_info[0].rss_hash_key,
3028 HW_HASH_KEY_SIZE);
3029 }
3030 }
3031}
3032
3033static int bnxt_calc_nr_ring_pages(u32 ring_size, int desc_per_pg)
3034{
3035 int pages;
3036
3037 pages = ring_size / desc_per_pg;
3038
3039 if (!pages)
3040 return 1;
3041
3042 pages++;
3043
3044 while (pages & (pages - 1))
3045 pages++;
3046
3047 return pages;
3048}
3049
Michael Chanc6d30e82017-02-06 16:55:42 -05003050void bnxt_set_tpa_flags(struct bnxt *bp)
Michael Chanc0c050c2015-10-22 16:01:17 -04003051{
3052 bp->flags &= ~BNXT_FLAG_TPA;
Michael Chan341138c2017-01-13 01:32:01 -05003053 if (bp->flags & BNXT_FLAG_NO_AGG_RINGS)
3054 return;
Michael Chanc0c050c2015-10-22 16:01:17 -04003055 if (bp->dev->features & NETIF_F_LRO)
3056 bp->flags |= BNXT_FLAG_LRO;
Michael Chan1054aee2017-12-16 03:09:42 -05003057 else if (bp->dev->features & NETIF_F_GRO_HW)
Michael Chanc0c050c2015-10-22 16:01:17 -04003058 bp->flags |= BNXT_FLAG_GRO;
3059}
3060
3061/* bp->rx_ring_size, bp->tx_ring_size, dev->mtu, BNXT_FLAG_{G|L}RO flags must
3062 * be set on entry.
3063 */
3064void bnxt_set_ring_params(struct bnxt *bp)
3065{
3066 u32 ring_size, rx_size, rx_space;
3067 u32 agg_factor = 0, agg_ring_size = 0;
3068
3069 /* 8 for CRC and VLAN */
3070 rx_size = SKB_DATA_ALIGN(bp->dev->mtu + ETH_HLEN + NET_IP_ALIGN + 8);
3071
3072 rx_space = rx_size + NET_SKB_PAD +
3073 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
3074
3075 bp->rx_copy_thresh = BNXT_RX_COPY_THRESH;
3076 ring_size = bp->rx_ring_size;
3077 bp->rx_agg_ring_size = 0;
3078 bp->rx_agg_nr_pages = 0;
3079
3080 if (bp->flags & BNXT_FLAG_TPA)
Michael Chan2839f282016-04-25 02:30:50 -04003081 agg_factor = min_t(u32, 4, 65536 / BNXT_RX_PAGE_SIZE);
Michael Chanc0c050c2015-10-22 16:01:17 -04003082
3083 bp->flags &= ~BNXT_FLAG_JUMBO;
Michael Chanbdbd1eb2016-12-29 12:13:43 -05003084 if (rx_space > PAGE_SIZE && !(bp->flags & BNXT_FLAG_NO_AGG_RINGS)) {
Michael Chanc0c050c2015-10-22 16:01:17 -04003085 u32 jumbo_factor;
3086
3087 bp->flags |= BNXT_FLAG_JUMBO;
3088 jumbo_factor = PAGE_ALIGN(bp->dev->mtu - 40) >> PAGE_SHIFT;
3089 if (jumbo_factor > agg_factor)
3090 agg_factor = jumbo_factor;
3091 }
3092 agg_ring_size = ring_size * agg_factor;
3093
3094 if (agg_ring_size) {
3095 bp->rx_agg_nr_pages = bnxt_calc_nr_ring_pages(agg_ring_size,
3096 RX_DESC_CNT);
3097 if (bp->rx_agg_nr_pages > MAX_RX_AGG_PAGES) {
3098 u32 tmp = agg_ring_size;
3099
3100 bp->rx_agg_nr_pages = MAX_RX_AGG_PAGES;
3101 agg_ring_size = MAX_RX_AGG_PAGES * RX_DESC_CNT - 1;
3102 netdev_warn(bp->dev, "rx agg ring size %d reduced to %d.\n",
3103 tmp, agg_ring_size);
3104 }
3105 bp->rx_agg_ring_size = agg_ring_size;
3106 bp->rx_agg_ring_mask = (bp->rx_agg_nr_pages * RX_DESC_CNT) - 1;
3107 rx_size = SKB_DATA_ALIGN(BNXT_RX_COPY_THRESH + NET_IP_ALIGN);
3108 rx_space = rx_size + NET_SKB_PAD +
3109 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
3110 }
3111
3112 bp->rx_buf_use_size = rx_size;
3113 bp->rx_buf_size = rx_space;
3114
3115 bp->rx_nr_pages = bnxt_calc_nr_ring_pages(ring_size, RX_DESC_CNT);
3116 bp->rx_ring_mask = (bp->rx_nr_pages * RX_DESC_CNT) - 1;
3117
3118 ring_size = bp->tx_ring_size;
3119 bp->tx_nr_pages = bnxt_calc_nr_ring_pages(ring_size, TX_DESC_CNT);
3120 bp->tx_ring_mask = (bp->tx_nr_pages * TX_DESC_CNT) - 1;
3121
3122 ring_size = bp->rx_ring_size * (2 + agg_factor) + bp->tx_ring_size;
3123 bp->cp_ring_size = ring_size;
3124
3125 bp->cp_nr_pages = bnxt_calc_nr_ring_pages(ring_size, CP_DESC_CNT);
3126 if (bp->cp_nr_pages > MAX_CP_PAGES) {
3127 bp->cp_nr_pages = MAX_CP_PAGES;
3128 bp->cp_ring_size = MAX_CP_PAGES * CP_DESC_CNT - 1;
3129 netdev_warn(bp->dev, "completion ring size %d reduced to %d.\n",
3130 ring_size, bp->cp_ring_size);
3131 }
3132 bp->cp_bit = bp->cp_nr_pages * CP_DESC_CNT;
3133 bp->cp_ring_mask = bp->cp_bit - 1;
3134}
3135
Jesper Dangaard Brouer96a86042018-01-03 11:25:44 +01003136/* Changing allocation mode of RX rings.
3137 * TODO: Update when extending xdp_rxq_info to support allocation modes.
3138 */
Michael Chanc61fb992017-02-06 16:55:36 -05003139int bnxt_set_rx_skb_mode(struct bnxt *bp, bool page_mode)
Michael Chan6bb19472017-02-06 16:55:32 -05003140{
Michael Chanc61fb992017-02-06 16:55:36 -05003141 if (page_mode) {
3142 if (bp->dev->mtu > BNXT_MAX_PAGE_MODE_MTU)
3143 return -EOPNOTSUPP;
Michael Chan7eb9bb32017-10-26 11:51:25 -04003144 bp->dev->max_mtu =
3145 min_t(u16, bp->max_mtu, BNXT_MAX_PAGE_MODE_MTU);
Michael Chanc61fb992017-02-06 16:55:36 -05003146 bp->flags &= ~BNXT_FLAG_AGG_RINGS;
3147 bp->flags |= BNXT_FLAG_NO_AGG_RINGS | BNXT_FLAG_RX_PAGE_MODE;
Michael Chanc61fb992017-02-06 16:55:36 -05003148 bp->rx_dir = DMA_BIDIRECTIONAL;
3149 bp->rx_skb_func = bnxt_rx_page_skb;
Michael Chan1054aee2017-12-16 03:09:42 -05003150 /* Disable LRO or GRO_HW */
3151 netdev_update_features(bp->dev);
Michael Chanc61fb992017-02-06 16:55:36 -05003152 } else {
Michael Chan7eb9bb32017-10-26 11:51:25 -04003153 bp->dev->max_mtu = bp->max_mtu;
Michael Chanc61fb992017-02-06 16:55:36 -05003154 bp->flags &= ~BNXT_FLAG_RX_PAGE_MODE;
3155 bp->rx_dir = DMA_FROM_DEVICE;
3156 bp->rx_skb_func = bnxt_rx_skb;
3157 }
Michael Chan6bb19472017-02-06 16:55:32 -05003158 return 0;
3159}
3160
Michael Chanc0c050c2015-10-22 16:01:17 -04003161static void bnxt_free_vnic_attributes(struct bnxt *bp)
3162{
3163 int i;
3164 struct bnxt_vnic_info *vnic;
3165 struct pci_dev *pdev = bp->pdev;
3166
3167 if (!bp->vnic_info)
3168 return;
3169
3170 for (i = 0; i < bp->nr_vnics; i++) {
3171 vnic = &bp->vnic_info[i];
3172
3173 kfree(vnic->fw_grp_ids);
3174 vnic->fw_grp_ids = NULL;
3175
3176 kfree(vnic->uc_list);
3177 vnic->uc_list = NULL;
3178
3179 if (vnic->mc_list) {
3180 dma_free_coherent(&pdev->dev, vnic->mc_list_size,
3181 vnic->mc_list, vnic->mc_list_mapping);
3182 vnic->mc_list = NULL;
3183 }
3184
3185 if (vnic->rss_table) {
3186 dma_free_coherent(&pdev->dev, PAGE_SIZE,
3187 vnic->rss_table,
3188 vnic->rss_table_dma_addr);
3189 vnic->rss_table = NULL;
3190 }
3191
3192 vnic->rss_hash_key = NULL;
3193 vnic->flags = 0;
3194 }
3195}
3196
3197static int bnxt_alloc_vnic_attributes(struct bnxt *bp)
3198{
3199 int i, rc = 0, size;
3200 struct bnxt_vnic_info *vnic;
3201 struct pci_dev *pdev = bp->pdev;
3202 int max_rings;
3203
3204 for (i = 0; i < bp->nr_vnics; i++) {
3205 vnic = &bp->vnic_info[i];
3206
3207 if (vnic->flags & BNXT_VNIC_UCAST_FLAG) {
3208 int mem_size = (BNXT_MAX_UC_ADDRS - 1) * ETH_ALEN;
3209
3210 if (mem_size > 0) {
3211 vnic->uc_list = kmalloc(mem_size, GFP_KERNEL);
3212 if (!vnic->uc_list) {
3213 rc = -ENOMEM;
3214 goto out;
3215 }
3216 }
3217 }
3218
3219 if (vnic->flags & BNXT_VNIC_MCAST_FLAG) {
3220 vnic->mc_list_size = BNXT_MAX_MC_ADDRS * ETH_ALEN;
3221 vnic->mc_list =
3222 dma_alloc_coherent(&pdev->dev,
3223 vnic->mc_list_size,
3224 &vnic->mc_list_mapping,
3225 GFP_KERNEL);
3226 if (!vnic->mc_list) {
3227 rc = -ENOMEM;
3228 goto out;
3229 }
3230 }
3231
Michael Chan44c6f722018-10-14 07:02:53 -04003232 if (bp->flags & BNXT_FLAG_CHIP_P5)
3233 goto vnic_skip_grps;
3234
Michael Chanc0c050c2015-10-22 16:01:17 -04003235 if (vnic->flags & BNXT_VNIC_RSS_FLAG)
3236 max_rings = bp->rx_nr_rings;
3237 else
3238 max_rings = 1;
3239
3240 vnic->fw_grp_ids = kcalloc(max_rings, sizeof(u16), GFP_KERNEL);
3241 if (!vnic->fw_grp_ids) {
3242 rc = -ENOMEM;
3243 goto out;
3244 }
Michael Chan44c6f722018-10-14 07:02:53 -04003245vnic_skip_grps:
Michael Chanae10ae72016-12-29 12:13:38 -05003246 if ((bp->flags & BNXT_FLAG_NEW_RSS_CAP) &&
3247 !(vnic->flags & BNXT_VNIC_RSS_FLAG))
3248 continue;
3249
Michael Chanc0c050c2015-10-22 16:01:17 -04003250 /* Allocate rss table and hash key */
3251 vnic->rss_table = dma_alloc_coherent(&pdev->dev, PAGE_SIZE,
3252 &vnic->rss_table_dma_addr,
3253 GFP_KERNEL);
3254 if (!vnic->rss_table) {
3255 rc = -ENOMEM;
3256 goto out;
3257 }
3258
3259 size = L1_CACHE_ALIGN(HW_HASH_INDEX_SIZE * sizeof(u16));
3260
3261 vnic->rss_hash_key = ((void *)vnic->rss_table) + size;
3262 vnic->rss_hash_key_dma_addr = vnic->rss_table_dma_addr + size;
3263 }
3264 return 0;
3265
3266out:
3267 return rc;
3268}
3269
3270static void bnxt_free_hwrm_resources(struct bnxt *bp)
3271{
3272 struct pci_dev *pdev = bp->pdev;
3273
Venkat Duvvurua2bf74f2018-10-05 00:26:02 -04003274 if (bp->hwrm_cmd_resp_addr) {
3275 dma_free_coherent(&pdev->dev, PAGE_SIZE, bp->hwrm_cmd_resp_addr,
3276 bp->hwrm_cmd_resp_dma_addr);
3277 bp->hwrm_cmd_resp_addr = NULL;
3278 }
Michael Chanc0c050c2015-10-22 16:01:17 -04003279}
3280
3281static int bnxt_alloc_hwrm_resources(struct bnxt *bp)
3282{
3283 struct pci_dev *pdev = bp->pdev;
3284
3285 bp->hwrm_cmd_resp_addr = dma_alloc_coherent(&pdev->dev, PAGE_SIZE,
3286 &bp->hwrm_cmd_resp_dma_addr,
3287 GFP_KERNEL);
3288 if (!bp->hwrm_cmd_resp_addr)
3289 return -ENOMEM;
Michael Chanc0c050c2015-10-22 16:01:17 -04003290
3291 return 0;
3292}
3293
Deepak Khungare605db82017-05-29 19:06:04 -04003294static void bnxt_free_hwrm_short_cmd_req(struct bnxt *bp)
3295{
3296 if (bp->hwrm_short_cmd_req_addr) {
3297 struct pci_dev *pdev = bp->pdev;
3298
Michael Chan1dfddc42018-10-14 07:02:39 -04003299 dma_free_coherent(&pdev->dev, bp->hwrm_max_ext_req_len,
Deepak Khungare605db82017-05-29 19:06:04 -04003300 bp->hwrm_short_cmd_req_addr,
3301 bp->hwrm_short_cmd_req_dma_addr);
3302 bp->hwrm_short_cmd_req_addr = NULL;
3303 }
3304}
3305
3306static int bnxt_alloc_hwrm_short_cmd_req(struct bnxt *bp)
3307{
3308 struct pci_dev *pdev = bp->pdev;
3309
3310 bp->hwrm_short_cmd_req_addr =
Michael Chan1dfddc42018-10-14 07:02:39 -04003311 dma_alloc_coherent(&pdev->dev, bp->hwrm_max_ext_req_len,
Deepak Khungare605db82017-05-29 19:06:04 -04003312 &bp->hwrm_short_cmd_req_dma_addr,
3313 GFP_KERNEL);
3314 if (!bp->hwrm_short_cmd_req_addr)
3315 return -ENOMEM;
3316
3317 return 0;
3318}
3319
Michael Chanc0c050c2015-10-22 16:01:17 -04003320static void bnxt_free_stats(struct bnxt *bp)
3321{
3322 u32 size, i;
3323 struct pci_dev *pdev = bp->pdev;
3324
Vasundhara Volam00db3cb2018-03-31 13:54:12 -04003325 bp->flags &= ~BNXT_FLAG_PORT_STATS;
3326 bp->flags &= ~BNXT_FLAG_PORT_STATS_EXT;
3327
Michael Chan3bdf56c2016-03-07 15:38:45 -05003328 if (bp->hw_rx_port_stats) {
3329 dma_free_coherent(&pdev->dev, bp->hw_port_stats_size,
3330 bp->hw_rx_port_stats,
3331 bp->hw_rx_port_stats_map);
3332 bp->hw_rx_port_stats = NULL;
Vasundhara Volam00db3cb2018-03-31 13:54:12 -04003333 }
3334
Michael Chan36e53342018-10-14 07:02:38 -04003335 if (bp->hw_tx_port_stats_ext) {
3336 dma_free_coherent(&pdev->dev, sizeof(struct tx_port_stats_ext),
3337 bp->hw_tx_port_stats_ext,
3338 bp->hw_tx_port_stats_ext_map);
3339 bp->hw_tx_port_stats_ext = NULL;
3340 }
3341
Vasundhara Volam00db3cb2018-03-31 13:54:12 -04003342 if (bp->hw_rx_port_stats_ext) {
3343 dma_free_coherent(&pdev->dev, sizeof(struct rx_port_stats_ext),
3344 bp->hw_rx_port_stats_ext,
3345 bp->hw_rx_port_stats_ext_map);
3346 bp->hw_rx_port_stats_ext = NULL;
Michael Chan3bdf56c2016-03-07 15:38:45 -05003347 }
3348
Michael Chanc0c050c2015-10-22 16:01:17 -04003349 if (!bp->bnapi)
3350 return;
3351
3352 size = sizeof(struct ctx_hw_stats);
3353
3354 for (i = 0; i < bp->cp_nr_rings; i++) {
3355 struct bnxt_napi *bnapi = bp->bnapi[i];
3356 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
3357
3358 if (cpr->hw_stats) {
3359 dma_free_coherent(&pdev->dev, size, cpr->hw_stats,
3360 cpr->hw_stats_map);
3361 cpr->hw_stats = NULL;
3362 }
3363 }
3364}
3365
3366static int bnxt_alloc_stats(struct bnxt *bp)
3367{
3368 u32 size, i;
3369 struct pci_dev *pdev = bp->pdev;
3370
3371 size = sizeof(struct ctx_hw_stats);
3372
3373 for (i = 0; i < bp->cp_nr_rings; i++) {
3374 struct bnxt_napi *bnapi = bp->bnapi[i];
3375 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
3376
3377 cpr->hw_stats = dma_alloc_coherent(&pdev->dev, size,
3378 &cpr->hw_stats_map,
3379 GFP_KERNEL);
3380 if (!cpr->hw_stats)
3381 return -ENOMEM;
3382
3383 cpr->hw_stats_ctx_id = INVALID_STATS_CTX_ID;
3384 }
Michael Chan3bdf56c2016-03-07 15:38:45 -05003385
Prashant Sreedharan3e8060f2016-07-18 07:15:20 -04003386 if (BNXT_PF(bp) && bp->chip_num != CHIP_NUM_58700) {
Michael Chan3bdf56c2016-03-07 15:38:45 -05003387 bp->hw_port_stats_size = sizeof(struct rx_port_stats) +
3388 sizeof(struct tx_port_stats) + 1024;
3389
3390 bp->hw_rx_port_stats =
3391 dma_alloc_coherent(&pdev->dev, bp->hw_port_stats_size,
3392 &bp->hw_rx_port_stats_map,
3393 GFP_KERNEL);
3394 if (!bp->hw_rx_port_stats)
3395 return -ENOMEM;
3396
3397 bp->hw_tx_port_stats = (void *)(bp->hw_rx_port_stats + 1) +
3398 512;
3399 bp->hw_tx_port_stats_map = bp->hw_rx_port_stats_map +
3400 sizeof(struct rx_port_stats) + 512;
3401 bp->flags |= BNXT_FLAG_PORT_STATS;
Vasundhara Volam00db3cb2018-03-31 13:54:12 -04003402
3403 /* Display extended statistics only if FW supports it */
3404 if (bp->hwrm_spec_code < 0x10804 ||
3405 bp->hwrm_spec_code == 0x10900)
3406 return 0;
3407
3408 bp->hw_rx_port_stats_ext =
3409 dma_zalloc_coherent(&pdev->dev,
3410 sizeof(struct rx_port_stats_ext),
3411 &bp->hw_rx_port_stats_ext_map,
3412 GFP_KERNEL);
3413 if (!bp->hw_rx_port_stats_ext)
3414 return 0;
3415
Michael Chan36e53342018-10-14 07:02:38 -04003416 if (bp->hwrm_spec_code >= 0x10902) {
3417 bp->hw_tx_port_stats_ext =
3418 dma_zalloc_coherent(&pdev->dev,
3419 sizeof(struct tx_port_stats_ext),
3420 &bp->hw_tx_port_stats_ext_map,
3421 GFP_KERNEL);
3422 }
Vasundhara Volam00db3cb2018-03-31 13:54:12 -04003423 bp->flags |= BNXT_FLAG_PORT_STATS_EXT;
Michael Chan3bdf56c2016-03-07 15:38:45 -05003424 }
Michael Chanc0c050c2015-10-22 16:01:17 -04003425 return 0;
3426}
3427
3428static void bnxt_clear_ring_indices(struct bnxt *bp)
3429{
3430 int i;
3431
3432 if (!bp->bnapi)
3433 return;
3434
3435 for (i = 0; i < bp->cp_nr_rings; i++) {
3436 struct bnxt_napi *bnapi = bp->bnapi[i];
3437 struct bnxt_cp_ring_info *cpr;
3438 struct bnxt_rx_ring_info *rxr;
3439 struct bnxt_tx_ring_info *txr;
3440
3441 if (!bnapi)
3442 continue;
3443
3444 cpr = &bnapi->cp_ring;
3445 cpr->cp_raw_cons = 0;
3446
Michael Chanb6ab4b02016-01-02 23:44:59 -05003447 txr = bnapi->tx_ring;
Michael Chan3b2b7d92016-01-02 23:45:00 -05003448 if (txr) {
3449 txr->tx_prod = 0;
3450 txr->tx_cons = 0;
3451 }
Michael Chanc0c050c2015-10-22 16:01:17 -04003452
Michael Chanb6ab4b02016-01-02 23:44:59 -05003453 rxr = bnapi->rx_ring;
Michael Chan3b2b7d92016-01-02 23:45:00 -05003454 if (rxr) {
3455 rxr->rx_prod = 0;
3456 rxr->rx_agg_prod = 0;
3457 rxr->rx_sw_agg_prod = 0;
Michael Chan376a5b82016-05-10 19:17:59 -04003458 rxr->rx_next_cons = 0;
Michael Chan3b2b7d92016-01-02 23:45:00 -05003459 }
Michael Chanc0c050c2015-10-22 16:01:17 -04003460 }
3461}
3462
3463static void bnxt_free_ntp_fltrs(struct bnxt *bp, bool irq_reinit)
3464{
3465#ifdef CONFIG_RFS_ACCEL
3466 int i;
3467
3468 /* Under rtnl_lock and all our NAPIs have been disabled. It's
3469 * safe to delete the hash table.
3470 */
3471 for (i = 0; i < BNXT_NTP_FLTR_HASH_SIZE; i++) {
3472 struct hlist_head *head;
3473 struct hlist_node *tmp;
3474 struct bnxt_ntuple_filter *fltr;
3475
3476 head = &bp->ntp_fltr_hash_tbl[i];
3477 hlist_for_each_entry_safe(fltr, tmp, head, hash) {
3478 hlist_del(&fltr->hash);
3479 kfree(fltr);
3480 }
3481 }
3482 if (irq_reinit) {
3483 kfree(bp->ntp_fltr_bmap);
3484 bp->ntp_fltr_bmap = NULL;
3485 }
3486 bp->ntp_fltr_count = 0;
3487#endif
3488}
3489
3490static int bnxt_alloc_ntp_fltrs(struct bnxt *bp)
3491{
3492#ifdef CONFIG_RFS_ACCEL
3493 int i, rc = 0;
3494
3495 if (!(bp->flags & BNXT_FLAG_RFS))
3496 return 0;
3497
3498 for (i = 0; i < BNXT_NTP_FLTR_HASH_SIZE; i++)
3499 INIT_HLIST_HEAD(&bp->ntp_fltr_hash_tbl[i]);
3500
3501 bp->ntp_fltr_count = 0;
Dan Carpenterac45bd92017-05-06 03:49:01 +03003502 bp->ntp_fltr_bmap = kcalloc(BITS_TO_LONGS(BNXT_NTP_FLTR_MAX_FLTR),
3503 sizeof(long),
Michael Chanc0c050c2015-10-22 16:01:17 -04003504 GFP_KERNEL);
3505
3506 if (!bp->ntp_fltr_bmap)
3507 rc = -ENOMEM;
3508
3509 return rc;
3510#else
3511 return 0;
3512#endif
3513}
3514
3515static void bnxt_free_mem(struct bnxt *bp, bool irq_re_init)
3516{
3517 bnxt_free_vnic_attributes(bp);
3518 bnxt_free_tx_rings(bp);
3519 bnxt_free_rx_rings(bp);
3520 bnxt_free_cp_rings(bp);
3521 bnxt_free_ntp_fltrs(bp, irq_re_init);
3522 if (irq_re_init) {
3523 bnxt_free_stats(bp);
3524 bnxt_free_ring_grps(bp);
3525 bnxt_free_vnics(bp);
Michael Chana960dec2017-02-06 16:55:39 -05003526 kfree(bp->tx_ring_map);
3527 bp->tx_ring_map = NULL;
Michael Chanb6ab4b02016-01-02 23:44:59 -05003528 kfree(bp->tx_ring);
3529 bp->tx_ring = NULL;
3530 kfree(bp->rx_ring);
3531 bp->rx_ring = NULL;
Michael Chanc0c050c2015-10-22 16:01:17 -04003532 kfree(bp->bnapi);
3533 bp->bnapi = NULL;
3534 } else {
3535 bnxt_clear_ring_indices(bp);
3536 }
3537}
3538
3539static int bnxt_alloc_mem(struct bnxt *bp, bool irq_re_init)
3540{
Michael Chan01657bc2016-01-02 23:45:03 -05003541 int i, j, rc, size, arr_size;
Michael Chanc0c050c2015-10-22 16:01:17 -04003542 void *bnapi;
3543
3544 if (irq_re_init) {
3545 /* Allocate bnapi mem pointer array and mem block for
3546 * all queues
3547 */
3548 arr_size = L1_CACHE_ALIGN(sizeof(struct bnxt_napi *) *
3549 bp->cp_nr_rings);
3550 size = L1_CACHE_ALIGN(sizeof(struct bnxt_napi));
3551 bnapi = kzalloc(arr_size + size * bp->cp_nr_rings, GFP_KERNEL);
3552 if (!bnapi)
3553 return -ENOMEM;
3554
3555 bp->bnapi = bnapi;
3556 bnapi += arr_size;
3557 for (i = 0; i < bp->cp_nr_rings; i++, bnapi += size) {
3558 bp->bnapi[i] = bnapi;
3559 bp->bnapi[i]->index = i;
3560 bp->bnapi[i]->bp = bp;
Michael Chane38287b2018-10-14 07:02:45 -04003561 if (bp->flags & BNXT_FLAG_CHIP_P5) {
3562 struct bnxt_cp_ring_info *cpr =
3563 &bp->bnapi[i]->cp_ring;
3564
3565 cpr->cp_ring_struct.ring_mem.flags =
3566 BNXT_RMEM_RING_PTE_FLAG;
3567 }
Michael Chanc0c050c2015-10-22 16:01:17 -04003568 }
3569
Michael Chanb6ab4b02016-01-02 23:44:59 -05003570 bp->rx_ring = kcalloc(bp->rx_nr_rings,
3571 sizeof(struct bnxt_rx_ring_info),
3572 GFP_KERNEL);
3573 if (!bp->rx_ring)
3574 return -ENOMEM;
3575
3576 for (i = 0; i < bp->rx_nr_rings; i++) {
Michael Chane38287b2018-10-14 07:02:45 -04003577 struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i];
3578
3579 if (bp->flags & BNXT_FLAG_CHIP_P5) {
3580 rxr->rx_ring_struct.ring_mem.flags =
3581 BNXT_RMEM_RING_PTE_FLAG;
3582 rxr->rx_agg_ring_struct.ring_mem.flags =
3583 BNXT_RMEM_RING_PTE_FLAG;
3584 }
3585 rxr->bnapi = bp->bnapi[i];
Michael Chanb6ab4b02016-01-02 23:44:59 -05003586 bp->bnapi[i]->rx_ring = &bp->rx_ring[i];
3587 }
3588
3589 bp->tx_ring = kcalloc(bp->tx_nr_rings,
3590 sizeof(struct bnxt_tx_ring_info),
3591 GFP_KERNEL);
3592 if (!bp->tx_ring)
3593 return -ENOMEM;
3594
Michael Chana960dec2017-02-06 16:55:39 -05003595 bp->tx_ring_map = kcalloc(bp->tx_nr_rings, sizeof(u16),
3596 GFP_KERNEL);
3597
3598 if (!bp->tx_ring_map)
3599 return -ENOMEM;
3600
Michael Chan01657bc2016-01-02 23:45:03 -05003601 if (bp->flags & BNXT_FLAG_SHARED_RINGS)
3602 j = 0;
3603 else
3604 j = bp->rx_nr_rings;
3605
3606 for (i = 0; i < bp->tx_nr_rings; i++, j++) {
Michael Chane38287b2018-10-14 07:02:45 -04003607 struct bnxt_tx_ring_info *txr = &bp->tx_ring[i];
3608
3609 if (bp->flags & BNXT_FLAG_CHIP_P5)
3610 txr->tx_ring_struct.ring_mem.flags =
3611 BNXT_RMEM_RING_PTE_FLAG;
3612 txr->bnapi = bp->bnapi[j];
3613 bp->bnapi[j]->tx_ring = txr;
Michael Chan5f449242017-02-06 16:55:40 -05003614 bp->tx_ring_map[i] = bp->tx_nr_rings_xdp + i;
Michael Chan38413402017-02-06 16:55:43 -05003615 if (i >= bp->tx_nr_rings_xdp) {
Michael Chane38287b2018-10-14 07:02:45 -04003616 txr->txq_index = i - bp->tx_nr_rings_xdp;
Michael Chan38413402017-02-06 16:55:43 -05003617 bp->bnapi[j]->tx_int = bnxt_tx_int;
3618 } else {
Michael Chanfa3e93e2017-02-06 16:55:41 -05003619 bp->bnapi[j]->flags |= BNXT_NAPI_FLAG_XDP;
Michael Chan38413402017-02-06 16:55:43 -05003620 bp->bnapi[j]->tx_int = bnxt_tx_int_xdp;
3621 }
Michael Chanb6ab4b02016-01-02 23:44:59 -05003622 }
3623
Michael Chanc0c050c2015-10-22 16:01:17 -04003624 rc = bnxt_alloc_stats(bp);
3625 if (rc)
3626 goto alloc_mem_err;
3627
3628 rc = bnxt_alloc_ntp_fltrs(bp);
3629 if (rc)
3630 goto alloc_mem_err;
3631
3632 rc = bnxt_alloc_vnics(bp);
3633 if (rc)
3634 goto alloc_mem_err;
3635 }
3636
3637 bnxt_init_ring_struct(bp);
3638
3639 rc = bnxt_alloc_rx_rings(bp);
3640 if (rc)
3641 goto alloc_mem_err;
3642
3643 rc = bnxt_alloc_tx_rings(bp);
3644 if (rc)
3645 goto alloc_mem_err;
3646
3647 rc = bnxt_alloc_cp_rings(bp);
3648 if (rc)
3649 goto alloc_mem_err;
3650
3651 bp->vnic_info[0].flags |= BNXT_VNIC_RSS_FLAG | BNXT_VNIC_MCAST_FLAG |
3652 BNXT_VNIC_UCAST_FLAG;
3653 rc = bnxt_alloc_vnic_attributes(bp);
3654 if (rc)
3655 goto alloc_mem_err;
3656 return 0;
3657
3658alloc_mem_err:
3659 bnxt_free_mem(bp, true);
3660 return rc;
3661}
3662
Michael Chan9d8bc092016-12-29 12:13:33 -05003663static void bnxt_disable_int(struct bnxt *bp)
3664{
3665 int i;
3666
3667 if (!bp->bnapi)
3668 return;
3669
3670 for (i = 0; i < bp->cp_nr_rings; i++) {
3671 struct bnxt_napi *bnapi = bp->bnapi[i];
3672 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
Michael Chandaf1f1e2017-02-20 19:25:17 -05003673 struct bnxt_ring_struct *ring = &cpr->cp_ring_struct;
Michael Chan9d8bc092016-12-29 12:13:33 -05003674
Michael Chandaf1f1e2017-02-20 19:25:17 -05003675 if (ring->fw_ring_id != INVALID_HW_RING_ID)
Michael Chan697197e2018-10-14 07:02:46 -04003676 bnxt_db_nq(bp, &cpr->cp_db, cpr->cp_raw_cons);
Michael Chan9d8bc092016-12-29 12:13:33 -05003677 }
3678}
3679
Michael Chane5811b82018-03-31 13:54:18 -04003680static int bnxt_cp_num_to_irq_num(struct bnxt *bp, int n)
3681{
3682 struct bnxt_napi *bnapi = bp->bnapi[n];
3683 struct bnxt_cp_ring_info *cpr;
3684
3685 cpr = &bnapi->cp_ring;
3686 return cpr->cp_ring_struct.map_idx;
3687}
3688
Michael Chan9d8bc092016-12-29 12:13:33 -05003689static void bnxt_disable_int_sync(struct bnxt *bp)
3690{
3691 int i;
3692
3693 atomic_inc(&bp->intr_sem);
3694
3695 bnxt_disable_int(bp);
Michael Chane5811b82018-03-31 13:54:18 -04003696 for (i = 0; i < bp->cp_nr_rings; i++) {
3697 int map_idx = bnxt_cp_num_to_irq_num(bp, i);
3698
3699 synchronize_irq(bp->irq_tbl[map_idx].vector);
3700 }
Michael Chan9d8bc092016-12-29 12:13:33 -05003701}
3702
3703static void bnxt_enable_int(struct bnxt *bp)
3704{
3705 int i;
3706
3707 atomic_set(&bp->intr_sem, 0);
3708 for (i = 0; i < bp->cp_nr_rings; i++) {
3709 struct bnxt_napi *bnapi = bp->bnapi[i];
3710 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
3711
Michael Chan697197e2018-10-14 07:02:46 -04003712 bnxt_db_nq_arm(bp, &cpr->cp_db, cpr->cp_raw_cons);
Michael Chan9d8bc092016-12-29 12:13:33 -05003713 }
3714}
3715
Michael Chanc0c050c2015-10-22 16:01:17 -04003716void bnxt_hwrm_cmd_hdr_init(struct bnxt *bp, void *request, u16 req_type,
3717 u16 cmpl_ring, u16 target_id)
3718{
Michael Chana8643e12016-02-26 04:00:05 -05003719 struct input *req = request;
Michael Chanc0c050c2015-10-22 16:01:17 -04003720
Michael Chana8643e12016-02-26 04:00:05 -05003721 req->req_type = cpu_to_le16(req_type);
3722 req->cmpl_ring = cpu_to_le16(cmpl_ring);
3723 req->target_id = cpu_to_le16(target_id);
Michael Chanc0c050c2015-10-22 16:01:17 -04003724 req->resp_addr = cpu_to_le64(bp->hwrm_cmd_resp_dma_addr);
3725}
3726
Michael Chanfbfbc482016-02-26 04:00:07 -05003727static int bnxt_hwrm_do_send_msg(struct bnxt *bp, void *msg, u32 msg_len,
3728 int timeout, bool silent)
Michael Chanc0c050c2015-10-22 16:01:17 -04003729{
Michael Chana11fa2b2016-05-15 03:04:47 -04003730 int i, intr_process, rc, tmo_count;
Michael Chana8643e12016-02-26 04:00:05 -05003731 struct input *req = msg;
Michael Chanc0c050c2015-10-22 16:01:17 -04003732 u32 *data = msg;
Michael Chan845adfe2018-03-31 13:54:15 -04003733 __le32 *resp_len;
3734 u8 *valid;
Michael Chanc0c050c2015-10-22 16:01:17 -04003735 u16 cp_ring_id, len = 0;
3736 struct hwrm_err_output *resp = bp->hwrm_cmd_resp_addr;
Deepak Khungare605db82017-05-29 19:06:04 -04003737 u16 max_req_len = BNXT_HWRM_MAX_REQ_LEN;
Vasundhara Volamebd58182017-12-01 03:13:05 -05003738 struct hwrm_short_input short_input = {0};
Michael Chanc0c050c2015-10-22 16:01:17 -04003739
Michael Chana8643e12016-02-26 04:00:05 -05003740 req->seq_id = cpu_to_le16(bp->hwrm_cmd_seq++);
Michael Chanc0c050c2015-10-22 16:01:17 -04003741 memset(resp, 0, PAGE_SIZE);
Michael Chana8643e12016-02-26 04:00:05 -05003742 cp_ring_id = le16_to_cpu(req->cmpl_ring);
Michael Chanc0c050c2015-10-22 16:01:17 -04003743 intr_process = (cp_ring_id == INVALID_HW_RING_ID) ? 0 : 1;
3744
Michael Chan1dfddc42018-10-14 07:02:39 -04003745 if (msg_len > BNXT_HWRM_MAX_REQ_LEN) {
3746 if (msg_len > bp->hwrm_max_ext_req_len ||
3747 !bp->hwrm_short_cmd_req_addr)
3748 return -EINVAL;
3749 }
3750
3751 if ((bp->fw_cap & BNXT_FW_CAP_SHORT_CMD) ||
3752 msg_len > BNXT_HWRM_MAX_REQ_LEN) {
Deepak Khungare605db82017-05-29 19:06:04 -04003753 void *short_cmd_req = bp->hwrm_short_cmd_req_addr;
Michael Chan1dfddc42018-10-14 07:02:39 -04003754 u16 max_msg_len;
3755
3756 /* Set boundary for maximum extended request length for short
3757 * cmd format. If passed up from device use the max supported
3758 * internal req length.
3759 */
3760 max_msg_len = bp->hwrm_max_ext_req_len;
Deepak Khungare605db82017-05-29 19:06:04 -04003761
3762 memcpy(short_cmd_req, req, msg_len);
Michael Chan1dfddc42018-10-14 07:02:39 -04003763 if (msg_len < max_msg_len)
3764 memset(short_cmd_req + msg_len, 0,
3765 max_msg_len - msg_len);
Deepak Khungare605db82017-05-29 19:06:04 -04003766
3767 short_input.req_type = req->req_type;
3768 short_input.signature =
3769 cpu_to_le16(SHORT_REQ_SIGNATURE_SHORT_CMD);
3770 short_input.size = cpu_to_le16(msg_len);
3771 short_input.req_addr =
3772 cpu_to_le64(bp->hwrm_short_cmd_req_dma_addr);
3773
3774 data = (u32 *)&short_input;
3775 msg_len = sizeof(short_input);
3776
3777 /* Sync memory write before updating doorbell */
3778 wmb();
3779
3780 max_req_len = BNXT_HWRM_SHORT_REQ_LEN;
3781 }
3782
Michael Chanc0c050c2015-10-22 16:01:17 -04003783 /* Write request msg to hwrm channel */
3784 __iowrite32_copy(bp->bar0, data, msg_len / 4);
3785
Deepak Khungare605db82017-05-29 19:06:04 -04003786 for (i = msg_len; i < max_req_len; i += 4)
Michael Chand79979a2016-01-07 19:56:57 -05003787 writel(0, bp->bar0 + i);
3788
Michael Chanc0c050c2015-10-22 16:01:17 -04003789 /* currently supports only one outstanding message */
3790 if (intr_process)
Michael Chana8643e12016-02-26 04:00:05 -05003791 bp->hwrm_intr_seq_id = le16_to_cpu(req->seq_id);
Michael Chanc0c050c2015-10-22 16:01:17 -04003792
3793 /* Ring channel doorbell */
3794 writel(1, bp->bar0 + 0x100);
3795
Michael Chanff4fe812016-02-26 04:00:04 -05003796 if (!timeout)
3797 timeout = DFLT_HWRM_CMD_TIMEOUT;
Andy Gospodarek9751e8e2018-04-26 17:44:39 -04003798 /* convert timeout to usec */
3799 timeout *= 1000;
Michael Chanff4fe812016-02-26 04:00:04 -05003800
Michael Chanc0c050c2015-10-22 16:01:17 -04003801 i = 0;
Andy Gospodarek9751e8e2018-04-26 17:44:39 -04003802 /* Short timeout for the first few iterations:
3803 * number of loops = number of loops for short timeout +
3804 * number of loops for standard timeout.
3805 */
3806 tmo_count = HWRM_SHORT_TIMEOUT_COUNTER;
3807 timeout = timeout - HWRM_SHORT_MIN_TIMEOUT * HWRM_SHORT_TIMEOUT_COUNTER;
3808 tmo_count += DIV_ROUND_UP(timeout, HWRM_MIN_TIMEOUT);
Michael Chan845adfe2018-03-31 13:54:15 -04003809 resp_len = bp->hwrm_cmd_resp_addr + HWRM_RESP_LEN_OFFSET;
Michael Chanc0c050c2015-10-22 16:01:17 -04003810 if (intr_process) {
3811 /* Wait until hwrm response cmpl interrupt is processed */
3812 while (bp->hwrm_intr_seq_id != HWRM_SEQ_ID_INVALID &&
Michael Chana11fa2b2016-05-15 03:04:47 -04003813 i++ < tmo_count) {
Andy Gospodarek9751e8e2018-04-26 17:44:39 -04003814 /* on first few passes, just barely sleep */
3815 if (i < HWRM_SHORT_TIMEOUT_COUNTER)
3816 usleep_range(HWRM_SHORT_MIN_TIMEOUT,
3817 HWRM_SHORT_MAX_TIMEOUT);
3818 else
3819 usleep_range(HWRM_MIN_TIMEOUT,
3820 HWRM_MAX_TIMEOUT);
Michael Chanc0c050c2015-10-22 16:01:17 -04003821 }
3822
3823 if (bp->hwrm_intr_seq_id != HWRM_SEQ_ID_INVALID) {
3824 netdev_err(bp->dev, "Resp cmpl intr err msg: 0x%x\n",
Michael Chana8643e12016-02-26 04:00:05 -05003825 le16_to_cpu(req->req_type));
Michael Chanc0c050c2015-10-22 16:01:17 -04003826 return -1;
3827 }
Michael Chan845adfe2018-03-31 13:54:15 -04003828 len = (le32_to_cpu(*resp_len) & HWRM_RESP_LEN_MASK) >>
3829 HWRM_RESP_LEN_SFT;
3830 valid = bp->hwrm_cmd_resp_addr + len - 1;
Michael Chanc0c050c2015-10-22 16:01:17 -04003831 } else {
Michael Chancc559c12018-05-08 03:18:38 -04003832 int j;
3833
Michael Chanc0c050c2015-10-22 16:01:17 -04003834 /* Check if response len is updated */
Michael Chana11fa2b2016-05-15 03:04:47 -04003835 for (i = 0; i < tmo_count; i++) {
Michael Chanc0c050c2015-10-22 16:01:17 -04003836 len = (le32_to_cpu(*resp_len) & HWRM_RESP_LEN_MASK) >>
3837 HWRM_RESP_LEN_SFT;
3838 if (len)
3839 break;
Andy Gospodarek9751e8e2018-04-26 17:44:39 -04003840 /* on first few passes, just barely sleep */
3841 if (i < DFLT_HWRM_CMD_TIMEOUT)
3842 usleep_range(HWRM_SHORT_MIN_TIMEOUT,
3843 HWRM_SHORT_MAX_TIMEOUT);
3844 else
3845 usleep_range(HWRM_MIN_TIMEOUT,
3846 HWRM_MAX_TIMEOUT);
Michael Chanc0c050c2015-10-22 16:01:17 -04003847 }
3848
Michael Chana11fa2b2016-05-15 03:04:47 -04003849 if (i >= tmo_count) {
Michael Chanc0c050c2015-10-22 16:01:17 -04003850 netdev_err(bp->dev, "Error (timeout: %d) msg {0x%x 0x%x} len:%d\n",
Michael Chancc559c12018-05-08 03:18:38 -04003851 HWRM_TOTAL_TIMEOUT(i),
3852 le16_to_cpu(req->req_type),
Michael Chan8578d6c2016-05-15 03:04:48 -04003853 le16_to_cpu(req->seq_id), len);
Michael Chanc0c050c2015-10-22 16:01:17 -04003854 return -1;
3855 }
3856
Michael Chan845adfe2018-03-31 13:54:15 -04003857 /* Last byte of resp contains valid bit */
3858 valid = bp->hwrm_cmd_resp_addr + len - 1;
Michael Chancc559c12018-05-08 03:18:38 -04003859 for (j = 0; j < HWRM_VALID_BIT_DELAY_USEC; j++) {
Michael Chan845adfe2018-03-31 13:54:15 -04003860 /* make sure we read from updated DMA memory */
3861 dma_rmb();
3862 if (*valid)
Michael Chanc0c050c2015-10-22 16:01:17 -04003863 break;
Michael Chana11fa2b2016-05-15 03:04:47 -04003864 udelay(1);
Michael Chanc0c050c2015-10-22 16:01:17 -04003865 }
3866
Michael Chancc559c12018-05-08 03:18:38 -04003867 if (j >= HWRM_VALID_BIT_DELAY_USEC) {
Michael Chanc0c050c2015-10-22 16:01:17 -04003868 netdev_err(bp->dev, "Error (timeout: %d) msg {0x%x 0x%x} len:%d v:%d\n",
Michael Chancc559c12018-05-08 03:18:38 -04003869 HWRM_TOTAL_TIMEOUT(i),
3870 le16_to_cpu(req->req_type),
Michael Chana8643e12016-02-26 04:00:05 -05003871 le16_to_cpu(req->seq_id), len, *valid);
Michael Chanc0c050c2015-10-22 16:01:17 -04003872 return -1;
3873 }
3874 }
3875
Michael Chan845adfe2018-03-31 13:54:15 -04003876 /* Zero valid bit for compatibility. Valid bit in an older spec
3877 * may become a new field in a newer spec. We must make sure that
3878 * a new field not implemented by old spec will read zero.
3879 */
3880 *valid = 0;
Michael Chanc0c050c2015-10-22 16:01:17 -04003881 rc = le16_to_cpu(resp->error_code);
Michael Chanfbfbc482016-02-26 04:00:07 -05003882 if (rc && !silent)
Michael Chanc0c050c2015-10-22 16:01:17 -04003883 netdev_err(bp->dev, "hwrm req_type 0x%x seq id 0x%x error 0x%x\n",
3884 le16_to_cpu(resp->req_type),
3885 le16_to_cpu(resp->seq_id), rc);
Michael Chanfbfbc482016-02-26 04:00:07 -05003886 return rc;
3887}
3888
3889int _hwrm_send_message(struct bnxt *bp, void *msg, u32 msg_len, int timeout)
3890{
3891 return bnxt_hwrm_do_send_msg(bp, msg, msg_len, timeout, false);
Michael Chanc0c050c2015-10-22 16:01:17 -04003892}
3893
Michael Chancc72f3b2017-10-13 21:09:33 -04003894int _hwrm_send_message_silent(struct bnxt *bp, void *msg, u32 msg_len,
3895 int timeout)
3896{
3897 return bnxt_hwrm_do_send_msg(bp, msg, msg_len, timeout, true);
3898}
3899
Michael Chanc0c050c2015-10-22 16:01:17 -04003900int hwrm_send_message(struct bnxt *bp, void *msg, u32 msg_len, int timeout)
3901{
3902 int rc;
3903
3904 mutex_lock(&bp->hwrm_cmd_lock);
3905 rc = _hwrm_send_message(bp, msg, msg_len, timeout);
3906 mutex_unlock(&bp->hwrm_cmd_lock);
3907 return rc;
3908}
3909
Michael Chan90e209212016-02-26 04:00:08 -05003910int hwrm_send_message_silent(struct bnxt *bp, void *msg, u32 msg_len,
3911 int timeout)
3912{
3913 int rc;
3914
3915 mutex_lock(&bp->hwrm_cmd_lock);
3916 rc = bnxt_hwrm_do_send_msg(bp, msg, msg_len, timeout, true);
3917 mutex_unlock(&bp->hwrm_cmd_lock);
3918 return rc;
3919}
3920
Michael Chana1653b12016-12-07 00:26:20 -05003921int bnxt_hwrm_func_rgtr_async_events(struct bnxt *bp, unsigned long *bmap,
3922 int bmap_size)
Michael Chanc0c050c2015-10-22 16:01:17 -04003923{
3924 struct hwrm_func_drv_rgtr_input req = {0};
Michael Chan25be8622016-04-05 14:09:00 -04003925 DECLARE_BITMAP(async_events_bmap, 256);
3926 u32 *events = (u32 *)async_events_bmap;
Michael Chana1653b12016-12-07 00:26:20 -05003927 int i;
Michael Chanc0c050c2015-10-22 16:01:17 -04003928
3929 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_DRV_RGTR, -1, -1);
3930
3931 req.enables =
Michael Chana1653b12016-12-07 00:26:20 -05003932 cpu_to_le32(FUNC_DRV_RGTR_REQ_ENABLES_ASYNC_EVENT_FWD);
Michael Chanc0c050c2015-10-22 16:01:17 -04003933
Michael Chan25be8622016-04-05 14:09:00 -04003934 memset(async_events_bmap, 0, sizeof(async_events_bmap));
3935 for (i = 0; i < ARRAY_SIZE(bnxt_async_events_arr); i++)
3936 __set_bit(bnxt_async_events_arr[i], async_events_bmap);
3937
Michael Chana1653b12016-12-07 00:26:20 -05003938 if (bmap && bmap_size) {
3939 for (i = 0; i < bmap_size; i++) {
3940 if (test_bit(i, bmap))
3941 __set_bit(i, async_events_bmap);
3942 }
3943 }
3944
Michael Chan25be8622016-04-05 14:09:00 -04003945 for (i = 0; i < 8; i++)
3946 req.async_event_fwd[i] |= cpu_to_le32(events[i]);
3947
Michael Chana1653b12016-12-07 00:26:20 -05003948 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3949}
3950
3951static int bnxt_hwrm_func_drv_rgtr(struct bnxt *bp)
3952{
Michael Chan25e1acd2018-08-05 16:51:55 -04003953 struct hwrm_func_drv_rgtr_output *resp = bp->hwrm_cmd_resp_addr;
Michael Chana1653b12016-12-07 00:26:20 -05003954 struct hwrm_func_drv_rgtr_input req = {0};
Michael Chan25e1acd2018-08-05 16:51:55 -04003955 int rc;
Michael Chana1653b12016-12-07 00:26:20 -05003956
3957 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_DRV_RGTR, -1, -1);
3958
3959 req.enables =
3960 cpu_to_le32(FUNC_DRV_RGTR_REQ_ENABLES_OS_TYPE |
3961 FUNC_DRV_RGTR_REQ_ENABLES_VER);
3962
Michael Chan11f15ed2016-04-05 14:08:55 -04003963 req.os_type = cpu_to_le16(FUNC_DRV_RGTR_REQ_OS_TYPE_LINUX);
Michael Chand4f52de02018-03-31 13:54:06 -04003964 req.flags = cpu_to_le32(FUNC_DRV_RGTR_REQ_FLAGS_16BIT_VER_MODE);
3965 req.ver_maj_8b = DRV_VER_MAJ;
3966 req.ver_min_8b = DRV_VER_MIN;
3967 req.ver_upd_8b = DRV_VER_UPD;
3968 req.ver_maj = cpu_to_le16(DRV_VER_MAJ);
3969 req.ver_min = cpu_to_le16(DRV_VER_MIN);
3970 req.ver_upd = cpu_to_le16(DRV_VER_UPD);
Michael Chanc0c050c2015-10-22 16:01:17 -04003971
3972 if (BNXT_PF(bp)) {
Michael Chan9b0436c2017-07-11 13:05:36 -04003973 u32 data[8];
Michael Chana1653b12016-12-07 00:26:20 -05003974 int i;
Michael Chanc0c050c2015-10-22 16:01:17 -04003975
Michael Chan9b0436c2017-07-11 13:05:36 -04003976 memset(data, 0, sizeof(data));
3977 for (i = 0; i < ARRAY_SIZE(bnxt_vf_req_snif); i++) {
3978 u16 cmd = bnxt_vf_req_snif[i];
3979 unsigned int bit, idx;
3980
3981 idx = cmd / 32;
3982 bit = cmd % 32;
3983 data[idx] |= 1 << bit;
3984 }
Michael Chanc0c050c2015-10-22 16:01:17 -04003985
Michael Chande68f5de2015-12-09 19:35:41 -05003986 for (i = 0; i < 8; i++)
3987 req.vf_req_fwd[i] = cpu_to_le32(data[i]);
3988
Michael Chanc0c050c2015-10-22 16:01:17 -04003989 req.enables |=
3990 cpu_to_le32(FUNC_DRV_RGTR_REQ_ENABLES_VF_REQ_FWD);
3991 }
3992
Michael Chan25e1acd2018-08-05 16:51:55 -04003993 mutex_lock(&bp->hwrm_cmd_lock);
3994 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
3995 if (rc)
3996 rc = -EIO;
3997 else if (resp->flags &
3998 cpu_to_le32(FUNC_DRV_RGTR_RESP_FLAGS_IF_CHANGE_SUPPORTED))
3999 bp->fw_cap |= BNXT_FW_CAP_IF_CHANGE;
4000 mutex_unlock(&bp->hwrm_cmd_lock);
4001 return rc;
Michael Chanc0c050c2015-10-22 16:01:17 -04004002}
4003
Jeffrey Huangbe58a0d2015-12-27 18:19:18 -05004004static int bnxt_hwrm_func_drv_unrgtr(struct bnxt *bp)
4005{
4006 struct hwrm_func_drv_unrgtr_input req = {0};
4007
4008 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_DRV_UNRGTR, -1, -1);
4009 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4010}
4011
Michael Chanc0c050c2015-10-22 16:01:17 -04004012static int bnxt_hwrm_tunnel_dst_port_free(struct bnxt *bp, u8 tunnel_type)
4013{
4014 u32 rc = 0;
4015 struct hwrm_tunnel_dst_port_free_input req = {0};
4016
4017 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_TUNNEL_DST_PORT_FREE, -1, -1);
4018 req.tunnel_type = tunnel_type;
4019
4020 switch (tunnel_type) {
4021 case TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_VXLAN:
4022 req.tunnel_dst_port_id = bp->vxlan_fw_dst_port_id;
4023 break;
4024 case TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_GENEVE:
4025 req.tunnel_dst_port_id = bp->nge_fw_dst_port_id;
4026 break;
4027 default:
4028 break;
4029 }
4030
4031 rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4032 if (rc)
4033 netdev_err(bp->dev, "hwrm_tunnel_dst_port_free failed. rc:%d\n",
4034 rc);
4035 return rc;
4036}
4037
4038static int bnxt_hwrm_tunnel_dst_port_alloc(struct bnxt *bp, __be16 port,
4039 u8 tunnel_type)
4040{
4041 u32 rc = 0;
4042 struct hwrm_tunnel_dst_port_alloc_input req = {0};
4043 struct hwrm_tunnel_dst_port_alloc_output *resp = bp->hwrm_cmd_resp_addr;
4044
4045 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_TUNNEL_DST_PORT_ALLOC, -1, -1);
4046
4047 req.tunnel_type = tunnel_type;
4048 req.tunnel_dst_port_val = port;
4049
4050 mutex_lock(&bp->hwrm_cmd_lock);
4051 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4052 if (rc) {
4053 netdev_err(bp->dev, "hwrm_tunnel_dst_port_alloc failed. rc:%d\n",
4054 rc);
4055 goto err_out;
4056 }
4057
Christophe Jaillet57aac712016-11-22 06:14:40 +01004058 switch (tunnel_type) {
4059 case TUNNEL_DST_PORT_ALLOC_REQ_TUNNEL_TYPE_VXLAN:
Michael Chanc0c050c2015-10-22 16:01:17 -04004060 bp->vxlan_fw_dst_port_id = resp->tunnel_dst_port_id;
Christophe Jaillet57aac712016-11-22 06:14:40 +01004061 break;
4062 case TUNNEL_DST_PORT_ALLOC_REQ_TUNNEL_TYPE_GENEVE:
Michael Chanc0c050c2015-10-22 16:01:17 -04004063 bp->nge_fw_dst_port_id = resp->tunnel_dst_port_id;
Christophe Jaillet57aac712016-11-22 06:14:40 +01004064 break;
4065 default:
4066 break;
4067 }
4068
Michael Chanc0c050c2015-10-22 16:01:17 -04004069err_out:
4070 mutex_unlock(&bp->hwrm_cmd_lock);
4071 return rc;
4072}
4073
4074static int bnxt_hwrm_cfa_l2_set_rx_mask(struct bnxt *bp, u16 vnic_id)
4075{
4076 struct hwrm_cfa_l2_set_rx_mask_input req = {0};
4077 struct bnxt_vnic_info *vnic = &bp->vnic_info[vnic_id];
4078
4079 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_CFA_L2_SET_RX_MASK, -1, -1);
Michael Chanc1935542015-12-27 18:19:28 -05004080 req.vnic_id = cpu_to_le32(vnic->fw_vnic_id);
Michael Chanc0c050c2015-10-22 16:01:17 -04004081
4082 req.num_mc_entries = cpu_to_le32(vnic->mc_list_count);
4083 req.mc_tbl_addr = cpu_to_le64(vnic->mc_list_mapping);
4084 req.mask = cpu_to_le32(vnic->rx_mask);
4085 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4086}
4087
4088#ifdef CONFIG_RFS_ACCEL
4089static int bnxt_hwrm_cfa_ntuple_filter_free(struct bnxt *bp,
4090 struct bnxt_ntuple_filter *fltr)
4091{
4092 struct hwrm_cfa_ntuple_filter_free_input req = {0};
4093
4094 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_CFA_NTUPLE_FILTER_FREE, -1, -1);
4095 req.ntuple_filter_id = fltr->filter_id;
4096 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4097}
4098
4099#define BNXT_NTP_FLTR_FLAGS \
4100 (CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_L2_FILTER_ID | \
4101 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_ETHERTYPE | \
4102 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_MACADDR | \
4103 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_IPADDR_TYPE | \
4104 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_IPADDR | \
4105 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_IPADDR_MASK | \
4106 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_IPADDR | \
4107 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_IPADDR_MASK | \
4108 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_IP_PROTOCOL | \
4109 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_PORT | \
4110 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_SRC_PORT_MASK | \
4111 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_PORT | \
4112 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_PORT_MASK | \
Michael Chanc1935542015-12-27 18:19:28 -05004113 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_DST_ID)
Michael Chanc0c050c2015-10-22 16:01:17 -04004114
Michael Chan61aad722017-02-12 19:18:14 -05004115#define BNXT_NTP_TUNNEL_FLTR_FLAG \
4116 CFA_NTUPLE_FILTER_ALLOC_REQ_ENABLES_TUNNEL_TYPE
4117
Michael Chanc0c050c2015-10-22 16:01:17 -04004118static int bnxt_hwrm_cfa_ntuple_filter_alloc(struct bnxt *bp,
4119 struct bnxt_ntuple_filter *fltr)
4120{
4121 int rc = 0;
4122 struct hwrm_cfa_ntuple_filter_alloc_input req = {0};
4123 struct hwrm_cfa_ntuple_filter_alloc_output *resp =
4124 bp->hwrm_cmd_resp_addr;
4125 struct flow_keys *keys = &fltr->fkeys;
4126 struct bnxt_vnic_info *vnic = &bp->vnic_info[fltr->rxq + 1];
4127
4128 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_CFA_NTUPLE_FILTER_ALLOC, -1, -1);
Michael Chana54c4d72016-07-25 12:33:35 -04004129 req.l2_filter_id = bp->vnic_info[0].fw_l2_filter_id[fltr->l2_fltr_idx];
Michael Chanc0c050c2015-10-22 16:01:17 -04004130
4131 req.enables = cpu_to_le32(BNXT_NTP_FLTR_FLAGS);
4132
4133 req.ethertype = htons(ETH_P_IP);
4134 memcpy(req.src_macaddr, fltr->src_mac_addr, ETH_ALEN);
Michael Chanc1935542015-12-27 18:19:28 -05004135 req.ip_addr_type = CFA_NTUPLE_FILTER_ALLOC_REQ_IP_ADDR_TYPE_IPV4;
Michael Chanc0c050c2015-10-22 16:01:17 -04004136 req.ip_protocol = keys->basic.ip_proto;
4137
Michael Chandda0e742016-12-29 12:13:40 -05004138 if (keys->basic.n_proto == htons(ETH_P_IPV6)) {
4139 int i;
4140
4141 req.ethertype = htons(ETH_P_IPV6);
4142 req.ip_addr_type =
4143 CFA_NTUPLE_FILTER_ALLOC_REQ_IP_ADDR_TYPE_IPV6;
4144 *(struct in6_addr *)&req.src_ipaddr[0] =
4145 keys->addrs.v6addrs.src;
4146 *(struct in6_addr *)&req.dst_ipaddr[0] =
4147 keys->addrs.v6addrs.dst;
4148 for (i = 0; i < 4; i++) {
4149 req.src_ipaddr_mask[i] = cpu_to_be32(0xffffffff);
4150 req.dst_ipaddr_mask[i] = cpu_to_be32(0xffffffff);
4151 }
4152 } else {
4153 req.src_ipaddr[0] = keys->addrs.v4addrs.src;
4154 req.src_ipaddr_mask[0] = cpu_to_be32(0xffffffff);
4155 req.dst_ipaddr[0] = keys->addrs.v4addrs.dst;
4156 req.dst_ipaddr_mask[0] = cpu_to_be32(0xffffffff);
4157 }
Michael Chan61aad722017-02-12 19:18:14 -05004158 if (keys->control.flags & FLOW_DIS_ENCAPSULATION) {
4159 req.enables |= cpu_to_le32(BNXT_NTP_TUNNEL_FLTR_FLAG);
4160 req.tunnel_type =
4161 CFA_NTUPLE_FILTER_ALLOC_REQ_TUNNEL_TYPE_ANYTUNNEL;
4162 }
Michael Chanc0c050c2015-10-22 16:01:17 -04004163
4164 req.src_port = keys->ports.src;
4165 req.src_port_mask = cpu_to_be16(0xffff);
4166 req.dst_port = keys->ports.dst;
4167 req.dst_port_mask = cpu_to_be16(0xffff);
4168
Michael Chanc1935542015-12-27 18:19:28 -05004169 req.dst_id = cpu_to_le16(vnic->fw_vnic_id);
Michael Chanc0c050c2015-10-22 16:01:17 -04004170 mutex_lock(&bp->hwrm_cmd_lock);
4171 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4172 if (!rc)
4173 fltr->filter_id = resp->ntuple_filter_id;
4174 mutex_unlock(&bp->hwrm_cmd_lock);
4175 return rc;
4176}
4177#endif
4178
4179static int bnxt_hwrm_set_vnic_filter(struct bnxt *bp, u16 vnic_id, u16 idx,
4180 u8 *mac_addr)
4181{
4182 u32 rc = 0;
4183 struct hwrm_cfa_l2_filter_alloc_input req = {0};
4184 struct hwrm_cfa_l2_filter_alloc_output *resp = bp->hwrm_cmd_resp_addr;
4185
4186 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_CFA_L2_FILTER_ALLOC, -1, -1);
Prashant Sreedharandc52c6c2016-07-18 07:15:24 -04004187 req.flags = cpu_to_le32(CFA_L2_FILTER_ALLOC_REQ_FLAGS_PATH_RX);
4188 if (!BNXT_CHIP_TYPE_NITRO_A0(bp))
4189 req.flags |=
4190 cpu_to_le32(CFA_L2_FILTER_ALLOC_REQ_FLAGS_OUTERMOST);
Michael Chanc1935542015-12-27 18:19:28 -05004191 req.dst_id = cpu_to_le16(bp->vnic_info[vnic_id].fw_vnic_id);
Michael Chanc0c050c2015-10-22 16:01:17 -04004192 req.enables =
4193 cpu_to_le32(CFA_L2_FILTER_ALLOC_REQ_ENABLES_L2_ADDR |
Michael Chanc1935542015-12-27 18:19:28 -05004194 CFA_L2_FILTER_ALLOC_REQ_ENABLES_DST_ID |
Michael Chanc0c050c2015-10-22 16:01:17 -04004195 CFA_L2_FILTER_ALLOC_REQ_ENABLES_L2_ADDR_MASK);
4196 memcpy(req.l2_addr, mac_addr, ETH_ALEN);
4197 req.l2_addr_mask[0] = 0xff;
4198 req.l2_addr_mask[1] = 0xff;
4199 req.l2_addr_mask[2] = 0xff;
4200 req.l2_addr_mask[3] = 0xff;
4201 req.l2_addr_mask[4] = 0xff;
4202 req.l2_addr_mask[5] = 0xff;
4203
4204 mutex_lock(&bp->hwrm_cmd_lock);
4205 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4206 if (!rc)
4207 bp->vnic_info[vnic_id].fw_l2_filter_id[idx] =
4208 resp->l2_filter_id;
4209 mutex_unlock(&bp->hwrm_cmd_lock);
4210 return rc;
4211}
4212
4213static int bnxt_hwrm_clear_vnic_filter(struct bnxt *bp)
4214{
4215 u16 i, j, num_of_vnics = 1; /* only vnic 0 supported */
4216 int rc = 0;
4217
4218 /* Any associated ntuple filters will also be cleared by firmware. */
4219 mutex_lock(&bp->hwrm_cmd_lock);
4220 for (i = 0; i < num_of_vnics; i++) {
4221 struct bnxt_vnic_info *vnic = &bp->vnic_info[i];
4222
4223 for (j = 0; j < vnic->uc_filter_count; j++) {
4224 struct hwrm_cfa_l2_filter_free_input req = {0};
4225
4226 bnxt_hwrm_cmd_hdr_init(bp, &req,
4227 HWRM_CFA_L2_FILTER_FREE, -1, -1);
4228
4229 req.l2_filter_id = vnic->fw_l2_filter_id[j];
4230
4231 rc = _hwrm_send_message(bp, &req, sizeof(req),
4232 HWRM_CMD_TIMEOUT);
4233 }
4234 vnic->uc_filter_count = 0;
4235 }
4236 mutex_unlock(&bp->hwrm_cmd_lock);
4237
4238 return rc;
4239}
4240
4241static int bnxt_hwrm_vnic_set_tpa(struct bnxt *bp, u16 vnic_id, u32 tpa_flags)
4242{
4243 struct bnxt_vnic_info *vnic = &bp->vnic_info[vnic_id];
4244 struct hwrm_vnic_tpa_cfg_input req = {0};
4245
Michael Chan3c4fe802018-03-09 23:46:10 -05004246 if (vnic->fw_vnic_id == INVALID_HW_RING_ID)
4247 return 0;
4248
Michael Chanc0c050c2015-10-22 16:01:17 -04004249 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_TPA_CFG, -1, -1);
4250
4251 if (tpa_flags) {
4252 u16 mss = bp->dev->mtu - 40;
4253 u32 nsegs, n, segs = 0, flags;
4254
4255 flags = VNIC_TPA_CFG_REQ_FLAGS_TPA |
4256 VNIC_TPA_CFG_REQ_FLAGS_ENCAP_TPA |
4257 VNIC_TPA_CFG_REQ_FLAGS_RSC_WND_UPDATE |
4258 VNIC_TPA_CFG_REQ_FLAGS_AGG_WITH_ECN |
4259 VNIC_TPA_CFG_REQ_FLAGS_AGG_WITH_SAME_GRE_SEQ;
4260 if (tpa_flags & BNXT_FLAG_GRO)
4261 flags |= VNIC_TPA_CFG_REQ_FLAGS_GRO;
4262
4263 req.flags = cpu_to_le32(flags);
4264
4265 req.enables =
4266 cpu_to_le32(VNIC_TPA_CFG_REQ_ENABLES_MAX_AGG_SEGS |
Michael Chanc1935542015-12-27 18:19:28 -05004267 VNIC_TPA_CFG_REQ_ENABLES_MAX_AGGS |
4268 VNIC_TPA_CFG_REQ_ENABLES_MIN_AGG_LEN);
Michael Chanc0c050c2015-10-22 16:01:17 -04004269
4270 /* Number of segs are log2 units, and first packet is not
4271 * included as part of this units.
4272 */
Michael Chan2839f282016-04-25 02:30:50 -04004273 if (mss <= BNXT_RX_PAGE_SIZE) {
4274 n = BNXT_RX_PAGE_SIZE / mss;
Michael Chanc0c050c2015-10-22 16:01:17 -04004275 nsegs = (MAX_SKB_FRAGS - 1) * n;
4276 } else {
Michael Chan2839f282016-04-25 02:30:50 -04004277 n = mss / BNXT_RX_PAGE_SIZE;
4278 if (mss & (BNXT_RX_PAGE_SIZE - 1))
Michael Chanc0c050c2015-10-22 16:01:17 -04004279 n++;
4280 nsegs = (MAX_SKB_FRAGS - n) / n;
4281 }
4282
4283 segs = ilog2(nsegs);
4284 req.max_agg_segs = cpu_to_le16(segs);
4285 req.max_aggs = cpu_to_le16(VNIC_TPA_CFG_REQ_MAX_AGGS_MAX);
Michael Chanc1935542015-12-27 18:19:28 -05004286
4287 req.min_agg_len = cpu_to_le32(512);
Michael Chanc0c050c2015-10-22 16:01:17 -04004288 }
4289 req.vnic_id = cpu_to_le16(vnic->fw_vnic_id);
4290
4291 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4292}
4293
Michael Chan2c61d212018-10-14 07:02:50 -04004294static u16 bnxt_cp_ring_from_grp(struct bnxt *bp, struct bnxt_ring_struct *ring)
4295{
4296 struct bnxt_ring_grp_info *grp_info;
4297
4298 grp_info = &bp->grp_info[ring->grp_idx];
4299 return grp_info->cp_fw_ring_id;
4300}
4301
4302static u16 bnxt_cp_ring_for_rx(struct bnxt *bp, struct bnxt_rx_ring_info *rxr)
4303{
4304 if (bp->flags & BNXT_FLAG_CHIP_P5) {
4305 struct bnxt_napi *bnapi = rxr->bnapi;
4306 struct bnxt_cp_ring_info *cpr;
4307
4308 cpr = bnapi->cp_ring.cp_ring_arr[BNXT_RX_HDL];
4309 return cpr->cp_ring_struct.fw_ring_id;
4310 } else {
4311 return bnxt_cp_ring_from_grp(bp, &rxr->rx_ring_struct);
4312 }
4313}
4314
4315static u16 bnxt_cp_ring_for_tx(struct bnxt *bp, struct bnxt_tx_ring_info *txr)
4316{
4317 if (bp->flags & BNXT_FLAG_CHIP_P5) {
4318 struct bnxt_napi *bnapi = txr->bnapi;
4319 struct bnxt_cp_ring_info *cpr;
4320
4321 cpr = bnapi->cp_ring.cp_ring_arr[BNXT_TX_HDL];
4322 return cpr->cp_ring_struct.fw_ring_id;
4323 } else {
4324 return bnxt_cp_ring_from_grp(bp, &txr->tx_ring_struct);
4325 }
4326}
4327
Michael Chanc0c050c2015-10-22 16:01:17 -04004328static int bnxt_hwrm_vnic_set_rss(struct bnxt *bp, u16 vnic_id, bool set_rss)
4329{
4330 u32 i, j, max_rings;
4331 struct bnxt_vnic_info *vnic = &bp->vnic_info[vnic_id];
4332 struct hwrm_vnic_rss_cfg_input req = {0};
4333
Michael Chan7b3af4f2018-10-14 07:02:54 -04004334 if ((bp->flags & BNXT_FLAG_CHIP_P5) ||
4335 vnic->fw_rss_cos_lb_ctx[0] == INVALID_HW_RING_ID)
Michael Chanc0c050c2015-10-22 16:01:17 -04004336 return 0;
4337
4338 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_RSS_CFG, -1, -1);
4339 if (set_rss) {
Michael Chan87da7f72016-11-16 21:13:09 -05004340 req.hash_type = cpu_to_le32(bp->rss_hash_cfg);
Michael Chan50f011b2018-08-05 16:51:51 -04004341 req.hash_mode_flags = VNIC_RSS_CFG_REQ_HASH_MODE_FLAGS_DEFAULT;
Prashant Sreedharandc52c6c2016-07-18 07:15:24 -04004342 if (vnic->flags & BNXT_VNIC_RSS_FLAG) {
4343 if (BNXT_CHIP_TYPE_NITRO_A0(bp))
4344 max_rings = bp->rx_nr_rings - 1;
4345 else
4346 max_rings = bp->rx_nr_rings;
4347 } else {
Michael Chanc0c050c2015-10-22 16:01:17 -04004348 max_rings = 1;
Prashant Sreedharandc52c6c2016-07-18 07:15:24 -04004349 }
Michael Chanc0c050c2015-10-22 16:01:17 -04004350
4351 /* Fill the RSS indirection table with ring group ids */
4352 for (i = 0, j = 0; i < HW_HASH_INDEX_SIZE; i++, j++) {
4353 if (j == max_rings)
4354 j = 0;
4355 vnic->rss_table[i] = cpu_to_le16(vnic->fw_grp_ids[j]);
4356 }
4357
4358 req.ring_grp_tbl_addr = cpu_to_le64(vnic->rss_table_dma_addr);
4359 req.hash_key_tbl_addr =
4360 cpu_to_le64(vnic->rss_hash_key_dma_addr);
4361 }
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04004362 req.rss_ctx_idx = cpu_to_le16(vnic->fw_rss_cos_lb_ctx[0]);
Michael Chanc0c050c2015-10-22 16:01:17 -04004363 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4364}
4365
Michael Chan7b3af4f2018-10-14 07:02:54 -04004366static int bnxt_hwrm_vnic_set_rss_p5(struct bnxt *bp, u16 vnic_id, bool set_rss)
4367{
4368 struct bnxt_vnic_info *vnic = &bp->vnic_info[vnic_id];
4369 u32 i, j, k, nr_ctxs, max_rings = bp->rx_nr_rings;
4370 struct bnxt_rx_ring_info *rxr = &bp->rx_ring[0];
4371 struct hwrm_vnic_rss_cfg_input req = {0};
4372
4373 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_RSS_CFG, -1, -1);
4374 req.vnic_id = cpu_to_le16(vnic->fw_vnic_id);
4375 if (!set_rss) {
4376 hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4377 return 0;
4378 }
4379 req.hash_type = cpu_to_le32(bp->rss_hash_cfg);
4380 req.hash_mode_flags = VNIC_RSS_CFG_REQ_HASH_MODE_FLAGS_DEFAULT;
4381 req.ring_grp_tbl_addr = cpu_to_le64(vnic->rss_table_dma_addr);
4382 req.hash_key_tbl_addr = cpu_to_le64(vnic->rss_hash_key_dma_addr);
4383 nr_ctxs = DIV_ROUND_UP(bp->rx_nr_rings, 64);
4384 for (i = 0, k = 0; i < nr_ctxs; i++) {
4385 __le16 *ring_tbl = vnic->rss_table;
4386 int rc;
4387
4388 req.ring_table_pair_index = i;
4389 req.rss_ctx_idx = cpu_to_le16(vnic->fw_rss_cos_lb_ctx[i]);
4390 for (j = 0; j < 64; j++) {
4391 u16 ring_id;
4392
4393 ring_id = rxr->rx_ring_struct.fw_ring_id;
4394 *ring_tbl++ = cpu_to_le16(ring_id);
4395 ring_id = bnxt_cp_ring_for_rx(bp, rxr);
4396 *ring_tbl++ = cpu_to_le16(ring_id);
4397 rxr++;
4398 k++;
4399 if (k == max_rings) {
4400 k = 0;
4401 rxr = &bp->rx_ring[0];
4402 }
4403 }
4404 rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4405 if (rc)
4406 return -EIO;
4407 }
4408 return 0;
4409}
4410
Michael Chanc0c050c2015-10-22 16:01:17 -04004411static int bnxt_hwrm_vnic_set_hds(struct bnxt *bp, u16 vnic_id)
4412{
4413 struct bnxt_vnic_info *vnic = &bp->vnic_info[vnic_id];
4414 struct hwrm_vnic_plcmodes_cfg_input req = {0};
4415
4416 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_PLCMODES_CFG, -1, -1);
4417 req.flags = cpu_to_le32(VNIC_PLCMODES_CFG_REQ_FLAGS_JUMBO_PLACEMENT |
4418 VNIC_PLCMODES_CFG_REQ_FLAGS_HDS_IPV4 |
4419 VNIC_PLCMODES_CFG_REQ_FLAGS_HDS_IPV6);
4420 req.enables =
4421 cpu_to_le32(VNIC_PLCMODES_CFG_REQ_ENABLES_JUMBO_THRESH_VALID |
4422 VNIC_PLCMODES_CFG_REQ_ENABLES_HDS_THRESHOLD_VALID);
4423 /* thresholds not implemented in firmware yet */
4424 req.jumbo_thresh = cpu_to_le16(bp->rx_copy_thresh);
4425 req.hds_threshold = cpu_to_le16(bp->rx_copy_thresh);
4426 req.vnic_id = cpu_to_le32(vnic->fw_vnic_id);
4427 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4428}
4429
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04004430static void bnxt_hwrm_vnic_ctx_free_one(struct bnxt *bp, u16 vnic_id,
4431 u16 ctx_idx)
Michael Chanc0c050c2015-10-22 16:01:17 -04004432{
4433 struct hwrm_vnic_rss_cos_lb_ctx_free_input req = {0};
4434
4435 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_RSS_COS_LB_CTX_FREE, -1, -1);
4436 req.rss_cos_lb_ctx_id =
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04004437 cpu_to_le16(bp->vnic_info[vnic_id].fw_rss_cos_lb_ctx[ctx_idx]);
Michael Chanc0c050c2015-10-22 16:01:17 -04004438
4439 hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04004440 bp->vnic_info[vnic_id].fw_rss_cos_lb_ctx[ctx_idx] = INVALID_HW_RING_ID;
Michael Chanc0c050c2015-10-22 16:01:17 -04004441}
4442
4443static void bnxt_hwrm_vnic_ctx_free(struct bnxt *bp)
4444{
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04004445 int i, j;
Michael Chanc0c050c2015-10-22 16:01:17 -04004446
4447 for (i = 0; i < bp->nr_vnics; i++) {
4448 struct bnxt_vnic_info *vnic = &bp->vnic_info[i];
4449
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04004450 for (j = 0; j < BNXT_MAX_CTX_PER_VNIC; j++) {
4451 if (vnic->fw_rss_cos_lb_ctx[j] != INVALID_HW_RING_ID)
4452 bnxt_hwrm_vnic_ctx_free_one(bp, i, j);
4453 }
Michael Chanc0c050c2015-10-22 16:01:17 -04004454 }
4455 bp->rsscos_nr_ctxs = 0;
4456}
4457
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04004458static int bnxt_hwrm_vnic_ctx_alloc(struct bnxt *bp, u16 vnic_id, u16 ctx_idx)
Michael Chanc0c050c2015-10-22 16:01:17 -04004459{
4460 int rc;
4461 struct hwrm_vnic_rss_cos_lb_ctx_alloc_input req = {0};
4462 struct hwrm_vnic_rss_cos_lb_ctx_alloc_output *resp =
4463 bp->hwrm_cmd_resp_addr;
4464
4465 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_RSS_COS_LB_CTX_ALLOC, -1,
4466 -1);
4467
4468 mutex_lock(&bp->hwrm_cmd_lock);
4469 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4470 if (!rc)
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04004471 bp->vnic_info[vnic_id].fw_rss_cos_lb_ctx[ctx_idx] =
Michael Chanc0c050c2015-10-22 16:01:17 -04004472 le16_to_cpu(resp->rss_cos_lb_ctx_id);
4473 mutex_unlock(&bp->hwrm_cmd_lock);
4474
4475 return rc;
4476}
4477
Michael Chanabe93ad2018-03-31 13:54:08 -04004478static u32 bnxt_get_roce_vnic_mode(struct bnxt *bp)
4479{
4480 if (bp->flags & BNXT_FLAG_ROCE_MIRROR_CAP)
4481 return VNIC_CFG_REQ_FLAGS_ROCE_MIRRORING_CAPABLE_VNIC_MODE;
4482 return VNIC_CFG_REQ_FLAGS_ROCE_DUAL_VNIC_MODE;
4483}
4484
Michael Chana588e452016-12-07 00:26:21 -05004485int bnxt_hwrm_vnic_cfg(struct bnxt *bp, u16 vnic_id)
Michael Chanc0c050c2015-10-22 16:01:17 -04004486{
Michael Chanb81a90d2016-01-02 23:45:01 -05004487 unsigned int ring = 0, grp_idx;
Michael Chanc0c050c2015-10-22 16:01:17 -04004488 struct bnxt_vnic_info *vnic = &bp->vnic_info[vnic_id];
4489 struct hwrm_vnic_cfg_input req = {0};
Michael Chancf6645f2016-06-13 02:25:28 -04004490 u16 def_vlan = 0;
Michael Chanc0c050c2015-10-22 16:01:17 -04004491
4492 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_CFG, -1, -1);
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04004493
Michael Chan7b3af4f2018-10-14 07:02:54 -04004494 if (bp->flags & BNXT_FLAG_CHIP_P5) {
4495 struct bnxt_rx_ring_info *rxr = &bp->rx_ring[0];
4496
4497 req.default_rx_ring_id =
4498 cpu_to_le16(rxr->rx_ring_struct.fw_ring_id);
4499 req.default_cmpl_ring_id =
4500 cpu_to_le16(bnxt_cp_ring_for_rx(bp, rxr));
4501 req.enables =
4502 cpu_to_le32(VNIC_CFG_REQ_ENABLES_DEFAULT_RX_RING_ID |
4503 VNIC_CFG_REQ_ENABLES_DEFAULT_CMPL_RING_ID);
4504 goto vnic_mru;
4505 }
Prashant Sreedharandc52c6c2016-07-18 07:15:24 -04004506 req.enables = cpu_to_le32(VNIC_CFG_REQ_ENABLES_DFLT_RING_GRP);
4507 /* Only RSS support for now TBD: COS & LB */
4508 if (vnic->fw_rss_cos_lb_ctx[0] != INVALID_HW_RING_ID) {
4509 req.rss_rule = cpu_to_le16(vnic->fw_rss_cos_lb_ctx[0]);
4510 req.enables |= cpu_to_le32(VNIC_CFG_REQ_ENABLES_RSS_RULE |
4511 VNIC_CFG_REQ_ENABLES_MRU);
Michael Chanae10ae72016-12-29 12:13:38 -05004512 } else if (vnic->flags & BNXT_VNIC_RFS_NEW_RSS_FLAG) {
4513 req.rss_rule =
4514 cpu_to_le16(bp->vnic_info[0].fw_rss_cos_lb_ctx[0]);
4515 req.enables |= cpu_to_le32(VNIC_CFG_REQ_ENABLES_RSS_RULE |
4516 VNIC_CFG_REQ_ENABLES_MRU);
4517 req.flags |= cpu_to_le32(VNIC_CFG_REQ_FLAGS_RSS_DFLT_CR_MODE);
Prashant Sreedharandc52c6c2016-07-18 07:15:24 -04004518 } else {
4519 req.rss_rule = cpu_to_le16(0xffff);
4520 }
4521
4522 if (BNXT_CHIP_TYPE_NITRO_A0(bp) &&
4523 (vnic->fw_rss_cos_lb_ctx[0] != INVALID_HW_RING_ID)) {
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04004524 req.cos_rule = cpu_to_le16(vnic->fw_rss_cos_lb_ctx[1]);
4525 req.enables |= cpu_to_le32(VNIC_CFG_REQ_ENABLES_COS_RULE);
4526 } else {
4527 req.cos_rule = cpu_to_le16(0xffff);
4528 }
4529
Michael Chanc0c050c2015-10-22 16:01:17 -04004530 if (vnic->flags & BNXT_VNIC_RSS_FLAG)
Michael Chanb81a90d2016-01-02 23:45:01 -05004531 ring = 0;
Michael Chanc0c050c2015-10-22 16:01:17 -04004532 else if (vnic->flags & BNXT_VNIC_RFS_FLAG)
Michael Chanb81a90d2016-01-02 23:45:01 -05004533 ring = vnic_id - 1;
Prashant Sreedharan76595192016-07-18 07:15:22 -04004534 else if ((vnic_id == 1) && BNXT_CHIP_TYPE_NITRO_A0(bp))
4535 ring = bp->rx_nr_rings - 1;
Michael Chanc0c050c2015-10-22 16:01:17 -04004536
Michael Chanb81a90d2016-01-02 23:45:01 -05004537 grp_idx = bp->rx_ring[ring].bnapi->index;
Michael Chanc0c050c2015-10-22 16:01:17 -04004538 req.dflt_ring_grp = cpu_to_le16(bp->grp_info[grp_idx].fw_grp_id);
Michael Chanc0c050c2015-10-22 16:01:17 -04004539 req.lb_rule = cpu_to_le16(0xffff);
Michael Chan7b3af4f2018-10-14 07:02:54 -04004540vnic_mru:
Michael Chanc0c050c2015-10-22 16:01:17 -04004541 req.mru = cpu_to_le16(bp->dev->mtu + ETH_HLEN + ETH_FCS_LEN +
4542 VLAN_HLEN);
4543
Michael Chan7b3af4f2018-10-14 07:02:54 -04004544 req.vnic_id = cpu_to_le16(vnic->fw_vnic_id);
Michael Chancf6645f2016-06-13 02:25:28 -04004545#ifdef CONFIG_BNXT_SRIOV
4546 if (BNXT_VF(bp))
4547 def_vlan = bp->vf.vlan;
4548#endif
4549 if ((bp->flags & BNXT_FLAG_STRIP_VLAN) || def_vlan)
Michael Chanc0c050c2015-10-22 16:01:17 -04004550 req.flags |= cpu_to_le32(VNIC_CFG_REQ_FLAGS_VLAN_STRIP_MODE);
Michael Chana588e452016-12-07 00:26:21 -05004551 if (!vnic_id && bnxt_ulp_registered(bp->edev, BNXT_ROCE_ULP))
Michael Chanabe93ad2018-03-31 13:54:08 -04004552 req.flags |= cpu_to_le32(bnxt_get_roce_vnic_mode(bp));
Michael Chanc0c050c2015-10-22 16:01:17 -04004553
4554 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4555}
4556
4557static int bnxt_hwrm_vnic_free_one(struct bnxt *bp, u16 vnic_id)
4558{
4559 u32 rc = 0;
4560
4561 if (bp->vnic_info[vnic_id].fw_vnic_id != INVALID_HW_RING_ID) {
4562 struct hwrm_vnic_free_input req = {0};
4563
4564 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_FREE, -1, -1);
4565 req.vnic_id =
4566 cpu_to_le32(bp->vnic_info[vnic_id].fw_vnic_id);
4567
4568 rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4569 if (rc)
4570 return rc;
4571 bp->vnic_info[vnic_id].fw_vnic_id = INVALID_HW_RING_ID;
4572 }
4573 return rc;
4574}
4575
4576static void bnxt_hwrm_vnic_free(struct bnxt *bp)
4577{
4578 u16 i;
4579
4580 for (i = 0; i < bp->nr_vnics; i++)
4581 bnxt_hwrm_vnic_free_one(bp, i);
4582}
4583
Michael Chanb81a90d2016-01-02 23:45:01 -05004584static int bnxt_hwrm_vnic_alloc(struct bnxt *bp, u16 vnic_id,
4585 unsigned int start_rx_ring_idx,
4586 unsigned int nr_rings)
Michael Chanc0c050c2015-10-22 16:01:17 -04004587{
Michael Chanb81a90d2016-01-02 23:45:01 -05004588 int rc = 0;
4589 unsigned int i, j, grp_idx, end_idx = start_rx_ring_idx + nr_rings;
Michael Chanc0c050c2015-10-22 16:01:17 -04004590 struct hwrm_vnic_alloc_input req = {0};
4591 struct hwrm_vnic_alloc_output *resp = bp->hwrm_cmd_resp_addr;
Michael Chan44c6f722018-10-14 07:02:53 -04004592 struct bnxt_vnic_info *vnic = &bp->vnic_info[vnic_id];
4593
4594 if (bp->flags & BNXT_FLAG_CHIP_P5)
4595 goto vnic_no_ring_grps;
Michael Chanc0c050c2015-10-22 16:01:17 -04004596
4597 /* map ring groups to this vnic */
Michael Chanb81a90d2016-01-02 23:45:01 -05004598 for (i = start_rx_ring_idx, j = 0; i < end_idx; i++, j++) {
4599 grp_idx = bp->rx_ring[i].bnapi->index;
4600 if (bp->grp_info[grp_idx].fw_grp_id == INVALID_HW_RING_ID) {
Michael Chanc0c050c2015-10-22 16:01:17 -04004601 netdev_err(bp->dev, "Not enough ring groups avail:%x req:%x\n",
Michael Chanb81a90d2016-01-02 23:45:01 -05004602 j, nr_rings);
Michael Chanc0c050c2015-10-22 16:01:17 -04004603 break;
4604 }
Michael Chan44c6f722018-10-14 07:02:53 -04004605 vnic->fw_grp_ids[j] = bp->grp_info[grp_idx].fw_grp_id;
Michael Chanc0c050c2015-10-22 16:01:17 -04004606 }
4607
Michael Chan44c6f722018-10-14 07:02:53 -04004608vnic_no_ring_grps:
4609 for (i = 0; i < BNXT_MAX_CTX_PER_VNIC; i++)
4610 vnic->fw_rss_cos_lb_ctx[i] = INVALID_HW_RING_ID;
Michael Chanc0c050c2015-10-22 16:01:17 -04004611 if (vnic_id == 0)
4612 req.flags = cpu_to_le32(VNIC_ALLOC_REQ_FLAGS_DEFAULT);
4613
4614 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_ALLOC, -1, -1);
4615
4616 mutex_lock(&bp->hwrm_cmd_lock);
4617 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4618 if (!rc)
Michael Chan44c6f722018-10-14 07:02:53 -04004619 vnic->fw_vnic_id = le32_to_cpu(resp->vnic_id);
Michael Chanc0c050c2015-10-22 16:01:17 -04004620 mutex_unlock(&bp->hwrm_cmd_lock);
4621 return rc;
4622}
4623
Michael Chan8fdefd62016-12-29 12:13:36 -05004624static int bnxt_hwrm_vnic_qcaps(struct bnxt *bp)
4625{
4626 struct hwrm_vnic_qcaps_output *resp = bp->hwrm_cmd_resp_addr;
4627 struct hwrm_vnic_qcaps_input req = {0};
4628 int rc;
4629
4630 if (bp->hwrm_spec_code < 0x10600)
4631 return 0;
4632
4633 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VNIC_QCAPS, -1, -1);
4634 mutex_lock(&bp->hwrm_cmd_lock);
4635 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4636 if (!rc) {
Michael Chanabe93ad2018-03-31 13:54:08 -04004637 u32 flags = le32_to_cpu(resp->flags);
4638
Michael Chan41e8d792018-10-14 07:02:48 -04004639 if (!(bp->flags & BNXT_FLAG_CHIP_P5) &&
4640 (flags & VNIC_QCAPS_RESP_FLAGS_RSS_DFLT_CR_CAP))
Michael Chan8fdefd62016-12-29 12:13:36 -05004641 bp->flags |= BNXT_FLAG_NEW_RSS_CAP;
Michael Chanabe93ad2018-03-31 13:54:08 -04004642 if (flags &
4643 VNIC_QCAPS_RESP_FLAGS_ROCE_MIRRORING_CAPABLE_VNIC_CAP)
4644 bp->flags |= BNXT_FLAG_ROCE_MIRROR_CAP;
Michael Chan8fdefd62016-12-29 12:13:36 -05004645 }
4646 mutex_unlock(&bp->hwrm_cmd_lock);
4647 return rc;
4648}
4649
Michael Chanc0c050c2015-10-22 16:01:17 -04004650static int bnxt_hwrm_ring_grp_alloc(struct bnxt *bp)
4651{
4652 u16 i;
4653 u32 rc = 0;
4654
Michael Chan44c6f722018-10-14 07:02:53 -04004655 if (bp->flags & BNXT_FLAG_CHIP_P5)
4656 return 0;
4657
Michael Chanc0c050c2015-10-22 16:01:17 -04004658 mutex_lock(&bp->hwrm_cmd_lock);
4659 for (i = 0; i < bp->rx_nr_rings; i++) {
4660 struct hwrm_ring_grp_alloc_input req = {0};
4661 struct hwrm_ring_grp_alloc_output *resp =
4662 bp->hwrm_cmd_resp_addr;
Michael Chanb81a90d2016-01-02 23:45:01 -05004663 unsigned int grp_idx = bp->rx_ring[i].bnapi->index;
Michael Chanc0c050c2015-10-22 16:01:17 -04004664
4665 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_RING_GRP_ALLOC, -1, -1);
4666
Michael Chanb81a90d2016-01-02 23:45:01 -05004667 req.cr = cpu_to_le16(bp->grp_info[grp_idx].cp_fw_ring_id);
4668 req.rr = cpu_to_le16(bp->grp_info[grp_idx].rx_fw_ring_id);
4669 req.ar = cpu_to_le16(bp->grp_info[grp_idx].agg_fw_ring_id);
4670 req.sc = cpu_to_le16(bp->grp_info[grp_idx].fw_stats_ctx);
Michael Chanc0c050c2015-10-22 16:01:17 -04004671
4672 rc = _hwrm_send_message(bp, &req, sizeof(req),
4673 HWRM_CMD_TIMEOUT);
4674 if (rc)
4675 break;
4676
Michael Chanb81a90d2016-01-02 23:45:01 -05004677 bp->grp_info[grp_idx].fw_grp_id =
4678 le32_to_cpu(resp->ring_group_id);
Michael Chanc0c050c2015-10-22 16:01:17 -04004679 }
4680 mutex_unlock(&bp->hwrm_cmd_lock);
4681 return rc;
4682}
4683
4684static int bnxt_hwrm_ring_grp_free(struct bnxt *bp)
4685{
4686 u16 i;
4687 u32 rc = 0;
4688 struct hwrm_ring_grp_free_input req = {0};
4689
Michael Chan44c6f722018-10-14 07:02:53 -04004690 if (!bp->grp_info || (bp->flags & BNXT_FLAG_CHIP_P5))
Michael Chanc0c050c2015-10-22 16:01:17 -04004691 return 0;
4692
4693 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_RING_GRP_FREE, -1, -1);
4694
4695 mutex_lock(&bp->hwrm_cmd_lock);
4696 for (i = 0; i < bp->cp_nr_rings; i++) {
4697 if (bp->grp_info[i].fw_grp_id == INVALID_HW_RING_ID)
4698 continue;
4699 req.ring_group_id =
4700 cpu_to_le32(bp->grp_info[i].fw_grp_id);
4701
4702 rc = _hwrm_send_message(bp, &req, sizeof(req),
4703 HWRM_CMD_TIMEOUT);
4704 if (rc)
4705 break;
4706 bp->grp_info[i].fw_grp_id = INVALID_HW_RING_ID;
4707 }
4708 mutex_unlock(&bp->hwrm_cmd_lock);
4709 return rc;
4710}
4711
4712static int hwrm_ring_alloc_send_msg(struct bnxt *bp,
4713 struct bnxt_ring_struct *ring,
Michael Chan9899bb52018-03-31 13:54:16 -04004714 u32 ring_type, u32 map_index)
Michael Chanc0c050c2015-10-22 16:01:17 -04004715{
4716 int rc = 0, err = 0;
4717 struct hwrm_ring_alloc_input req = {0};
4718 struct hwrm_ring_alloc_output *resp = bp->hwrm_cmd_resp_addr;
Michael Chan6fe19882018-10-14 07:02:41 -04004719 struct bnxt_ring_mem_info *rmem = &ring->ring_mem;
Michael Chan9899bb52018-03-31 13:54:16 -04004720 struct bnxt_ring_grp_info *grp_info;
Michael Chanc0c050c2015-10-22 16:01:17 -04004721 u16 ring_id;
4722
4723 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_RING_ALLOC, -1, -1);
4724
4725 req.enables = 0;
Michael Chan6fe19882018-10-14 07:02:41 -04004726 if (rmem->nr_pages > 1) {
4727 req.page_tbl_addr = cpu_to_le64(rmem->pg_tbl_map);
Michael Chanc0c050c2015-10-22 16:01:17 -04004728 /* Page size is in log2 units */
4729 req.page_size = BNXT_PAGE_SHIFT;
4730 req.page_tbl_depth = 1;
4731 } else {
Michael Chan6fe19882018-10-14 07:02:41 -04004732 req.page_tbl_addr = cpu_to_le64(rmem->dma_arr[0]);
Michael Chanc0c050c2015-10-22 16:01:17 -04004733 }
4734 req.fbo = 0;
4735 /* Association of ring index with doorbell index and MSIX number */
4736 req.logical_id = cpu_to_le16(map_index);
4737
4738 switch (ring_type) {
Michael Chan2c61d212018-10-14 07:02:50 -04004739 case HWRM_RING_ALLOC_TX: {
4740 struct bnxt_tx_ring_info *txr;
4741
4742 txr = container_of(ring, struct bnxt_tx_ring_info,
4743 tx_ring_struct);
Michael Chanc0c050c2015-10-22 16:01:17 -04004744 req.ring_type = RING_ALLOC_REQ_RING_TYPE_TX;
4745 /* Association of transmit ring with completion ring */
Michael Chan9899bb52018-03-31 13:54:16 -04004746 grp_info = &bp->grp_info[ring->grp_idx];
Michael Chan2c61d212018-10-14 07:02:50 -04004747 req.cmpl_ring_id = cpu_to_le16(bnxt_cp_ring_for_tx(bp, txr));
Michael Chanc0c050c2015-10-22 16:01:17 -04004748 req.length = cpu_to_le32(bp->tx_ring_mask + 1);
Michael Chan9899bb52018-03-31 13:54:16 -04004749 req.stat_ctx_id = cpu_to_le32(grp_info->fw_stats_ctx);
Michael Chanc0c050c2015-10-22 16:01:17 -04004750 req.queue_id = cpu_to_le16(ring->queue_id);
4751 break;
Michael Chan2c61d212018-10-14 07:02:50 -04004752 }
Michael Chanc0c050c2015-10-22 16:01:17 -04004753 case HWRM_RING_ALLOC_RX:
4754 req.ring_type = RING_ALLOC_REQ_RING_TYPE_RX;
4755 req.length = cpu_to_le32(bp->rx_ring_mask + 1);
Michael Chan23aefdd2018-10-14 07:02:51 -04004756 if (bp->flags & BNXT_FLAG_CHIP_P5) {
4757 u16 flags = 0;
4758
4759 /* Association of rx ring with stats context */
4760 grp_info = &bp->grp_info[ring->grp_idx];
4761 req.rx_buf_size = cpu_to_le16(bp->rx_buf_use_size);
4762 req.stat_ctx_id = cpu_to_le32(grp_info->fw_stats_ctx);
4763 req.enables |= cpu_to_le32(
4764 RING_ALLOC_REQ_ENABLES_RX_BUF_SIZE_VALID);
4765 if (NET_IP_ALIGN == 2)
4766 flags = RING_ALLOC_REQ_FLAGS_RX_SOP_PAD;
4767 req.flags = cpu_to_le16(flags);
4768 }
Michael Chanc0c050c2015-10-22 16:01:17 -04004769 break;
4770 case HWRM_RING_ALLOC_AGG:
Michael Chan23aefdd2018-10-14 07:02:51 -04004771 if (bp->flags & BNXT_FLAG_CHIP_P5) {
4772 req.ring_type = RING_ALLOC_REQ_RING_TYPE_RX_AGG;
4773 /* Association of agg ring with rx ring */
4774 grp_info = &bp->grp_info[ring->grp_idx];
4775 req.rx_ring_id = cpu_to_le16(grp_info->rx_fw_ring_id);
4776 req.rx_buf_size = cpu_to_le16(BNXT_RX_PAGE_SIZE);
4777 req.stat_ctx_id = cpu_to_le32(grp_info->fw_stats_ctx);
4778 req.enables |= cpu_to_le32(
4779 RING_ALLOC_REQ_ENABLES_RX_RING_ID_VALID |
4780 RING_ALLOC_REQ_ENABLES_RX_BUF_SIZE_VALID);
4781 } else {
4782 req.ring_type = RING_ALLOC_REQ_RING_TYPE_RX;
4783 }
Michael Chanc0c050c2015-10-22 16:01:17 -04004784 req.length = cpu_to_le32(bp->rx_agg_ring_mask + 1);
4785 break;
4786 case HWRM_RING_ALLOC_CMPL:
Michael Chanbac9a7e2017-02-12 19:18:10 -05004787 req.ring_type = RING_ALLOC_REQ_RING_TYPE_L2_CMPL;
Michael Chanc0c050c2015-10-22 16:01:17 -04004788 req.length = cpu_to_le32(bp->cp_ring_mask + 1);
Michael Chan23aefdd2018-10-14 07:02:51 -04004789 if (bp->flags & BNXT_FLAG_CHIP_P5) {
4790 /* Association of cp ring with nq */
4791 grp_info = &bp->grp_info[map_index];
4792 req.nq_ring_id = cpu_to_le16(grp_info->cp_fw_ring_id);
4793 req.cq_handle = cpu_to_le64(ring->handle);
4794 req.enables |= cpu_to_le32(
4795 RING_ALLOC_REQ_ENABLES_NQ_RING_ID_VALID);
4796 } else if (bp->flags & BNXT_FLAG_USING_MSIX) {
4797 req.int_mode = RING_ALLOC_REQ_INT_MODE_MSIX;
4798 }
4799 break;
4800 case HWRM_RING_ALLOC_NQ:
4801 req.ring_type = RING_ALLOC_REQ_RING_TYPE_NQ;
4802 req.length = cpu_to_le32(bp->cp_ring_mask + 1);
Michael Chanc0c050c2015-10-22 16:01:17 -04004803 if (bp->flags & BNXT_FLAG_USING_MSIX)
4804 req.int_mode = RING_ALLOC_REQ_INT_MODE_MSIX;
4805 break;
4806 default:
4807 netdev_err(bp->dev, "hwrm alloc invalid ring type %d\n",
4808 ring_type);
4809 return -1;
4810 }
4811
4812 mutex_lock(&bp->hwrm_cmd_lock);
4813 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4814 err = le16_to_cpu(resp->error_code);
4815 ring_id = le16_to_cpu(resp->ring_id);
4816 mutex_unlock(&bp->hwrm_cmd_lock);
4817
4818 if (rc || err) {
Michael Chan2727c882018-04-26 17:44:35 -04004819 netdev_err(bp->dev, "hwrm_ring_alloc type %d failed. rc:%x err:%x\n",
4820 ring_type, rc, err);
4821 return -EIO;
Michael Chanc0c050c2015-10-22 16:01:17 -04004822 }
4823 ring->fw_ring_id = ring_id;
4824 return rc;
4825}
4826
Michael Chan486b5c22016-12-29 12:13:42 -05004827static int bnxt_hwrm_set_async_event_cr(struct bnxt *bp, int idx)
4828{
4829 int rc;
4830
4831 if (BNXT_PF(bp)) {
4832 struct hwrm_func_cfg_input req = {0};
4833
4834 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_CFG, -1, -1);
4835 req.fid = cpu_to_le16(0xffff);
4836 req.enables = cpu_to_le32(FUNC_CFG_REQ_ENABLES_ASYNC_EVENT_CR);
4837 req.async_event_cr = cpu_to_le16(idx);
4838 rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4839 } else {
4840 struct hwrm_func_vf_cfg_input req = {0};
4841
4842 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_VF_CFG, -1, -1);
4843 req.enables =
4844 cpu_to_le32(FUNC_VF_CFG_REQ_ENABLES_ASYNC_EVENT_CR);
4845 req.async_event_cr = cpu_to_le16(idx);
4846 rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
4847 }
4848 return rc;
4849}
4850
Michael Chan697197e2018-10-14 07:02:46 -04004851static void bnxt_set_db(struct bnxt *bp, struct bnxt_db_info *db, u32 ring_type,
4852 u32 map_idx, u32 xid)
4853{
4854 if (bp->flags & BNXT_FLAG_CHIP_P5) {
4855 if (BNXT_PF(bp))
4856 db->doorbell = bp->bar1 + 0x10000;
4857 else
4858 db->doorbell = bp->bar1 + 0x4000;
4859 switch (ring_type) {
4860 case HWRM_RING_ALLOC_TX:
4861 db->db_key64 = DBR_PATH_L2 | DBR_TYPE_SQ;
4862 break;
4863 case HWRM_RING_ALLOC_RX:
4864 case HWRM_RING_ALLOC_AGG:
4865 db->db_key64 = DBR_PATH_L2 | DBR_TYPE_SRQ;
4866 break;
4867 case HWRM_RING_ALLOC_CMPL:
4868 db->db_key64 = DBR_PATH_L2;
4869 break;
4870 case HWRM_RING_ALLOC_NQ:
4871 db->db_key64 = DBR_PATH_L2;
4872 break;
4873 }
4874 db->db_key64 |= (u64)xid << DBR_XID_SFT;
4875 } else {
4876 db->doorbell = bp->bar1 + map_idx * 0x80;
4877 switch (ring_type) {
4878 case HWRM_RING_ALLOC_TX:
4879 db->db_key32 = DB_KEY_TX;
4880 break;
4881 case HWRM_RING_ALLOC_RX:
4882 case HWRM_RING_ALLOC_AGG:
4883 db->db_key32 = DB_KEY_RX;
4884 break;
4885 case HWRM_RING_ALLOC_CMPL:
4886 db->db_key32 = DB_KEY_CP;
4887 break;
4888 }
4889 }
4890}
4891
Michael Chanc0c050c2015-10-22 16:01:17 -04004892static int bnxt_hwrm_ring_alloc(struct bnxt *bp)
4893{
4894 int i, rc = 0;
Michael Chan697197e2018-10-14 07:02:46 -04004895 u32 type;
Michael Chanc0c050c2015-10-22 16:01:17 -04004896
Michael Chan23aefdd2018-10-14 07:02:51 -04004897 if (bp->flags & BNXT_FLAG_CHIP_P5)
4898 type = HWRM_RING_ALLOC_NQ;
4899 else
4900 type = HWRM_RING_ALLOC_CMPL;
Michael Chanedd0c2c2015-12-27 18:19:19 -05004901 for (i = 0; i < bp->cp_nr_rings; i++) {
4902 struct bnxt_napi *bnapi = bp->bnapi[i];
4903 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
4904 struct bnxt_ring_struct *ring = &cpr->cp_ring_struct;
Michael Chan9899bb52018-03-31 13:54:16 -04004905 u32 map_idx = ring->map_idx;
Michael Chanc0c050c2015-10-22 16:01:17 -04004906
Michael Chan697197e2018-10-14 07:02:46 -04004907 rc = hwrm_ring_alloc_send_msg(bp, ring, type, map_idx);
Michael Chanedd0c2c2015-12-27 18:19:19 -05004908 if (rc)
4909 goto err_out;
Michael Chan697197e2018-10-14 07:02:46 -04004910 bnxt_set_db(bp, &cpr->cp_db, type, map_idx, ring->fw_ring_id);
4911 bnxt_db_nq(bp, &cpr->cp_db, cpr->cp_raw_cons);
Michael Chanedd0c2c2015-12-27 18:19:19 -05004912 bp->grp_info[i].cp_fw_ring_id = ring->fw_ring_id;
Michael Chan486b5c22016-12-29 12:13:42 -05004913
4914 if (!i) {
4915 rc = bnxt_hwrm_set_async_event_cr(bp, ring->fw_ring_id);
4916 if (rc)
4917 netdev_warn(bp->dev, "Failed to set async event completion ring.\n");
4918 }
Michael Chanc0c050c2015-10-22 16:01:17 -04004919 }
4920
Michael Chan697197e2018-10-14 07:02:46 -04004921 type = HWRM_RING_ALLOC_TX;
Michael Chanedd0c2c2015-12-27 18:19:19 -05004922 for (i = 0; i < bp->tx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05004923 struct bnxt_tx_ring_info *txr = &bp->tx_ring[i];
Michael Chan3e08b182018-10-14 07:02:52 -04004924 struct bnxt_ring_struct *ring;
4925 u32 map_idx;
Michael Chanc0c050c2015-10-22 16:01:17 -04004926
Michael Chan3e08b182018-10-14 07:02:52 -04004927 if (bp->flags & BNXT_FLAG_CHIP_P5) {
4928 struct bnxt_napi *bnapi = txr->bnapi;
4929 struct bnxt_cp_ring_info *cpr, *cpr2;
4930 u32 type2 = HWRM_RING_ALLOC_CMPL;
4931
4932 cpr = &bnapi->cp_ring;
4933 cpr2 = cpr->cp_ring_arr[BNXT_TX_HDL];
4934 ring = &cpr2->cp_ring_struct;
4935 ring->handle = BNXT_TX_HDL;
4936 map_idx = bnapi->index;
4937 rc = hwrm_ring_alloc_send_msg(bp, ring, type2, map_idx);
4938 if (rc)
4939 goto err_out;
4940 bnxt_set_db(bp, &cpr2->cp_db, type2, map_idx,
4941 ring->fw_ring_id);
4942 bnxt_db_cq(bp, &cpr2->cp_db, cpr2->cp_raw_cons);
4943 }
4944 ring = &txr->tx_ring_struct;
4945 map_idx = i;
Michael Chan697197e2018-10-14 07:02:46 -04004946 rc = hwrm_ring_alloc_send_msg(bp, ring, type, map_idx);
Michael Chanedd0c2c2015-12-27 18:19:19 -05004947 if (rc)
4948 goto err_out;
Michael Chan697197e2018-10-14 07:02:46 -04004949 bnxt_set_db(bp, &txr->tx_db, type, map_idx, ring->fw_ring_id);
Michael Chanc0c050c2015-10-22 16:01:17 -04004950 }
4951
Michael Chan697197e2018-10-14 07:02:46 -04004952 type = HWRM_RING_ALLOC_RX;
Michael Chanedd0c2c2015-12-27 18:19:19 -05004953 for (i = 0; i < bp->rx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05004954 struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i];
Michael Chanedd0c2c2015-12-27 18:19:19 -05004955 struct bnxt_ring_struct *ring = &rxr->rx_ring_struct;
Michael Chan3e08b182018-10-14 07:02:52 -04004956 struct bnxt_napi *bnapi = rxr->bnapi;
4957 u32 map_idx = bnapi->index;
Michael Chanc0c050c2015-10-22 16:01:17 -04004958
Michael Chan697197e2018-10-14 07:02:46 -04004959 rc = hwrm_ring_alloc_send_msg(bp, ring, type, map_idx);
Michael Chanedd0c2c2015-12-27 18:19:19 -05004960 if (rc)
4961 goto err_out;
Michael Chan697197e2018-10-14 07:02:46 -04004962 bnxt_set_db(bp, &rxr->rx_db, type, map_idx, ring->fw_ring_id);
4963 bnxt_db_write(bp, &rxr->rx_db, rxr->rx_prod);
Michael Chanb81a90d2016-01-02 23:45:01 -05004964 bp->grp_info[map_idx].rx_fw_ring_id = ring->fw_ring_id;
Michael Chan3e08b182018-10-14 07:02:52 -04004965 if (bp->flags & BNXT_FLAG_CHIP_P5) {
4966 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
4967 u32 type2 = HWRM_RING_ALLOC_CMPL;
4968 struct bnxt_cp_ring_info *cpr2;
4969
4970 cpr2 = cpr->cp_ring_arr[BNXT_RX_HDL];
4971 ring = &cpr2->cp_ring_struct;
4972 ring->handle = BNXT_RX_HDL;
4973 rc = hwrm_ring_alloc_send_msg(bp, ring, type2, map_idx);
4974 if (rc)
4975 goto err_out;
4976 bnxt_set_db(bp, &cpr2->cp_db, type2, map_idx,
4977 ring->fw_ring_id);
4978 bnxt_db_cq(bp, &cpr2->cp_db, cpr2->cp_raw_cons);
4979 }
Michael Chanc0c050c2015-10-22 16:01:17 -04004980 }
4981
4982 if (bp->flags & BNXT_FLAG_AGG_RINGS) {
Michael Chan697197e2018-10-14 07:02:46 -04004983 type = HWRM_RING_ALLOC_AGG;
Michael Chanc0c050c2015-10-22 16:01:17 -04004984 for (i = 0; i < bp->rx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05004985 struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04004986 struct bnxt_ring_struct *ring =
4987 &rxr->rx_agg_ring_struct;
Michael Chan9899bb52018-03-31 13:54:16 -04004988 u32 grp_idx = ring->grp_idx;
Michael Chanb81a90d2016-01-02 23:45:01 -05004989 u32 map_idx = grp_idx + bp->rx_nr_rings;
Michael Chanc0c050c2015-10-22 16:01:17 -04004990
Michael Chan697197e2018-10-14 07:02:46 -04004991 rc = hwrm_ring_alloc_send_msg(bp, ring, type, map_idx);
Michael Chanc0c050c2015-10-22 16:01:17 -04004992 if (rc)
4993 goto err_out;
4994
Michael Chan697197e2018-10-14 07:02:46 -04004995 bnxt_set_db(bp, &rxr->rx_agg_db, type, map_idx,
4996 ring->fw_ring_id);
4997 bnxt_db_write(bp, &rxr->rx_agg_db, rxr->rx_agg_prod);
Michael Chanb81a90d2016-01-02 23:45:01 -05004998 bp->grp_info[grp_idx].agg_fw_ring_id = ring->fw_ring_id;
Michael Chanc0c050c2015-10-22 16:01:17 -04004999 }
5000 }
5001err_out:
5002 return rc;
5003}
5004
5005static int hwrm_ring_free_send_msg(struct bnxt *bp,
5006 struct bnxt_ring_struct *ring,
5007 u32 ring_type, int cmpl_ring_id)
5008{
5009 int rc;
5010 struct hwrm_ring_free_input req = {0};
5011 struct hwrm_ring_free_output *resp = bp->hwrm_cmd_resp_addr;
5012 u16 error_code;
5013
Prashant Sreedharan74608fc2016-01-28 03:11:20 -05005014 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_RING_FREE, cmpl_ring_id, -1);
Michael Chanc0c050c2015-10-22 16:01:17 -04005015 req.ring_type = ring_type;
5016 req.ring_id = cpu_to_le16(ring->fw_ring_id);
5017
5018 mutex_lock(&bp->hwrm_cmd_lock);
5019 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
5020 error_code = le16_to_cpu(resp->error_code);
5021 mutex_unlock(&bp->hwrm_cmd_lock);
5022
5023 if (rc || error_code) {
Michael Chan2727c882018-04-26 17:44:35 -04005024 netdev_err(bp->dev, "hwrm_ring_free type %d failed. rc:%x err:%x\n",
5025 ring_type, rc, error_code);
5026 return -EIO;
Michael Chanc0c050c2015-10-22 16:01:17 -04005027 }
5028 return 0;
5029}
5030
Michael Chanedd0c2c2015-12-27 18:19:19 -05005031static void bnxt_hwrm_ring_free(struct bnxt *bp, bool close_path)
Michael Chanc0c050c2015-10-22 16:01:17 -04005032{
Michael Chan23aefdd2018-10-14 07:02:51 -04005033 u32 type;
Michael Chanedd0c2c2015-12-27 18:19:19 -05005034 int i;
Michael Chanc0c050c2015-10-22 16:01:17 -04005035
5036 if (!bp->bnapi)
Michael Chanedd0c2c2015-12-27 18:19:19 -05005037 return;
Michael Chanc0c050c2015-10-22 16:01:17 -04005038
Michael Chanedd0c2c2015-12-27 18:19:19 -05005039 for (i = 0; i < bp->tx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05005040 struct bnxt_tx_ring_info *txr = &bp->tx_ring[i];
Michael Chanedd0c2c2015-12-27 18:19:19 -05005041 struct bnxt_ring_struct *ring = &txr->tx_ring_struct;
Michael Chan2c61d212018-10-14 07:02:50 -04005042 u32 cmpl_ring_id;
Michael Chanc0c050c2015-10-22 16:01:17 -04005043
Michael Chan2c61d212018-10-14 07:02:50 -04005044 cmpl_ring_id = bnxt_cp_ring_for_tx(bp, txr);
Michael Chanedd0c2c2015-12-27 18:19:19 -05005045 if (ring->fw_ring_id != INVALID_HW_RING_ID) {
5046 hwrm_ring_free_send_msg(bp, ring,
5047 RING_FREE_REQ_RING_TYPE_TX,
5048 close_path ? cmpl_ring_id :
5049 INVALID_HW_RING_ID);
5050 ring->fw_ring_id = INVALID_HW_RING_ID;
Michael Chanc0c050c2015-10-22 16:01:17 -04005051 }
5052 }
5053
Michael Chanedd0c2c2015-12-27 18:19:19 -05005054 for (i = 0; i < bp->rx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05005055 struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i];
Michael Chanedd0c2c2015-12-27 18:19:19 -05005056 struct bnxt_ring_struct *ring = &rxr->rx_ring_struct;
Michael Chanb81a90d2016-01-02 23:45:01 -05005057 u32 grp_idx = rxr->bnapi->index;
Michael Chan2c61d212018-10-14 07:02:50 -04005058 u32 cmpl_ring_id;
Michael Chanc0c050c2015-10-22 16:01:17 -04005059
Michael Chan2c61d212018-10-14 07:02:50 -04005060 cmpl_ring_id = bnxt_cp_ring_for_rx(bp, rxr);
Michael Chanedd0c2c2015-12-27 18:19:19 -05005061 if (ring->fw_ring_id != INVALID_HW_RING_ID) {
5062 hwrm_ring_free_send_msg(bp, ring,
5063 RING_FREE_REQ_RING_TYPE_RX,
5064 close_path ? cmpl_ring_id :
5065 INVALID_HW_RING_ID);
5066 ring->fw_ring_id = INVALID_HW_RING_ID;
Michael Chanb81a90d2016-01-02 23:45:01 -05005067 bp->grp_info[grp_idx].rx_fw_ring_id =
5068 INVALID_HW_RING_ID;
Michael Chanc0c050c2015-10-22 16:01:17 -04005069 }
5070 }
5071
Michael Chan23aefdd2018-10-14 07:02:51 -04005072 if (bp->flags & BNXT_FLAG_CHIP_P5)
5073 type = RING_FREE_REQ_RING_TYPE_RX_AGG;
5074 else
5075 type = RING_FREE_REQ_RING_TYPE_RX;
Michael Chanedd0c2c2015-12-27 18:19:19 -05005076 for (i = 0; i < bp->rx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05005077 struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i];
Michael Chanedd0c2c2015-12-27 18:19:19 -05005078 struct bnxt_ring_struct *ring = &rxr->rx_agg_ring_struct;
Michael Chanb81a90d2016-01-02 23:45:01 -05005079 u32 grp_idx = rxr->bnapi->index;
Michael Chan2c61d212018-10-14 07:02:50 -04005080 u32 cmpl_ring_id;
Michael Chanc0c050c2015-10-22 16:01:17 -04005081
Michael Chan2c61d212018-10-14 07:02:50 -04005082 cmpl_ring_id = bnxt_cp_ring_for_rx(bp, rxr);
Michael Chanedd0c2c2015-12-27 18:19:19 -05005083 if (ring->fw_ring_id != INVALID_HW_RING_ID) {
Michael Chan23aefdd2018-10-14 07:02:51 -04005084 hwrm_ring_free_send_msg(bp, ring, type,
Michael Chanedd0c2c2015-12-27 18:19:19 -05005085 close_path ? cmpl_ring_id :
5086 INVALID_HW_RING_ID);
5087 ring->fw_ring_id = INVALID_HW_RING_ID;
Michael Chanb81a90d2016-01-02 23:45:01 -05005088 bp->grp_info[grp_idx].agg_fw_ring_id =
5089 INVALID_HW_RING_ID;
Michael Chanc0c050c2015-10-22 16:01:17 -04005090 }
5091 }
5092
Michael Chan9d8bc092016-12-29 12:13:33 -05005093 /* The completion rings are about to be freed. After that the
5094 * IRQ doorbell will not work anymore. So we need to disable
5095 * IRQ here.
5096 */
5097 bnxt_disable_int_sync(bp);
5098
Michael Chan23aefdd2018-10-14 07:02:51 -04005099 if (bp->flags & BNXT_FLAG_CHIP_P5)
5100 type = RING_FREE_REQ_RING_TYPE_NQ;
5101 else
5102 type = RING_FREE_REQ_RING_TYPE_L2_CMPL;
Michael Chanedd0c2c2015-12-27 18:19:19 -05005103 for (i = 0; i < bp->cp_nr_rings; i++) {
5104 struct bnxt_napi *bnapi = bp->bnapi[i];
5105 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
Michael Chan3e08b182018-10-14 07:02:52 -04005106 struct bnxt_ring_struct *ring;
5107 int j;
Michael Chanc0c050c2015-10-22 16:01:17 -04005108
Michael Chan3e08b182018-10-14 07:02:52 -04005109 for (j = 0; j < 2; j++) {
5110 struct bnxt_cp_ring_info *cpr2 = cpr->cp_ring_arr[j];
5111
5112 if (cpr2) {
5113 ring = &cpr2->cp_ring_struct;
5114 if (ring->fw_ring_id == INVALID_HW_RING_ID)
5115 continue;
5116 hwrm_ring_free_send_msg(bp, ring,
5117 RING_FREE_REQ_RING_TYPE_L2_CMPL,
5118 INVALID_HW_RING_ID);
5119 ring->fw_ring_id = INVALID_HW_RING_ID;
5120 }
5121 }
5122 ring = &cpr->cp_ring_struct;
Michael Chanedd0c2c2015-12-27 18:19:19 -05005123 if (ring->fw_ring_id != INVALID_HW_RING_ID) {
Michael Chan23aefdd2018-10-14 07:02:51 -04005124 hwrm_ring_free_send_msg(bp, ring, type,
Michael Chanedd0c2c2015-12-27 18:19:19 -05005125 INVALID_HW_RING_ID);
5126 ring->fw_ring_id = INVALID_HW_RING_ID;
5127 bp->grp_info[i].cp_fw_ring_id = INVALID_HW_RING_ID;
Michael Chanc0c050c2015-10-22 16:01:17 -04005128 }
5129 }
Michael Chanc0c050c2015-10-22 16:01:17 -04005130}
5131
Michael Chan41e8d792018-10-14 07:02:48 -04005132static int bnxt_trim_rings(struct bnxt *bp, int *rx, int *tx, int max,
5133 bool shared);
5134
Michael Chan674f50a2018-01-17 03:21:09 -05005135static int bnxt_hwrm_get_rings(struct bnxt *bp)
5136{
5137 struct hwrm_func_qcfg_output *resp = bp->hwrm_cmd_resp_addr;
5138 struct bnxt_hw_resc *hw_resc = &bp->hw_resc;
5139 struct hwrm_func_qcfg_input req = {0};
5140 int rc;
5141
5142 if (bp->hwrm_spec_code < 0x10601)
5143 return 0;
5144
5145 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_QCFG, -1, -1);
5146 req.fid = cpu_to_le16(0xffff);
5147 mutex_lock(&bp->hwrm_cmd_lock);
5148 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
5149 if (rc) {
5150 mutex_unlock(&bp->hwrm_cmd_lock);
5151 return -EIO;
5152 }
5153
5154 hw_resc->resv_tx_rings = le16_to_cpu(resp->alloc_tx_rings);
Michael Chanf1ca94d2018-08-05 16:51:53 -04005155 if (BNXT_NEW_RM(bp)) {
Michael Chan674f50a2018-01-17 03:21:09 -05005156 u16 cp, stats;
5157
5158 hw_resc->resv_rx_rings = le16_to_cpu(resp->alloc_rx_rings);
5159 hw_resc->resv_hw_ring_grps =
5160 le32_to_cpu(resp->alloc_hw_ring_grps);
5161 hw_resc->resv_vnics = le16_to_cpu(resp->alloc_vnics);
5162 cp = le16_to_cpu(resp->alloc_cmpl_rings);
5163 stats = le16_to_cpu(resp->alloc_stat_ctx);
5164 cp = min_t(u16, cp, stats);
Michael Chan75720e62018-12-09 07:01:00 -05005165 hw_resc->resv_irqs = cp;
Michael Chan41e8d792018-10-14 07:02:48 -04005166 if (bp->flags & BNXT_FLAG_CHIP_P5) {
5167 int rx = hw_resc->resv_rx_rings;
5168 int tx = hw_resc->resv_tx_rings;
5169
5170 if (bp->flags & BNXT_FLAG_AGG_RINGS)
5171 rx >>= 1;
5172 if (cp < (rx + tx)) {
5173 bnxt_trim_rings(bp, &rx, &tx, cp, false);
5174 if (bp->flags & BNXT_FLAG_AGG_RINGS)
5175 rx <<= 1;
5176 hw_resc->resv_rx_rings = rx;
5177 hw_resc->resv_tx_rings = tx;
5178 }
Michael Chan75720e62018-12-09 07:01:00 -05005179 hw_resc->resv_irqs = le16_to_cpu(resp->alloc_msix);
Michael Chan41e8d792018-10-14 07:02:48 -04005180 hw_resc->resv_hw_ring_grps = rx;
5181 }
Michael Chan674f50a2018-01-17 03:21:09 -05005182 hw_resc->resv_cp_rings = cp;
5183 }
5184 mutex_unlock(&bp->hwrm_cmd_lock);
5185 return 0;
5186}
5187
Michael Chan391be5c2016-12-29 12:13:41 -05005188/* Caller must hold bp->hwrm_cmd_lock */
5189int __bnxt_hwrm_get_tx_rings(struct bnxt *bp, u16 fid, int *tx_rings)
5190{
5191 struct hwrm_func_qcfg_output *resp = bp->hwrm_cmd_resp_addr;
5192 struct hwrm_func_qcfg_input req = {0};
5193 int rc;
5194
5195 if (bp->hwrm_spec_code < 0x10601)
5196 return 0;
5197
5198 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_QCFG, -1, -1);
5199 req.fid = cpu_to_le16(fid);
5200 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
5201 if (!rc)
5202 *tx_rings = le16_to_cpu(resp->alloc_tx_rings);
5203
5204 return rc;
5205}
5206
Michael Chan41e8d792018-10-14 07:02:48 -04005207static bool bnxt_rfs_supported(struct bnxt *bp);
5208
Michael Chan4ed50ef2018-03-09 23:46:03 -05005209static void
5210__bnxt_hwrm_reserve_pf_rings(struct bnxt *bp, struct hwrm_func_cfg_input *req,
5211 int tx_rings, int rx_rings, int ring_grps,
5212 int cp_rings, int vnics)
Michael Chan391be5c2016-12-29 12:13:41 -05005213{
Michael Chan674f50a2018-01-17 03:21:09 -05005214 u32 enables = 0;
Michael Chan391be5c2016-12-29 12:13:41 -05005215
Michael Chan4ed50ef2018-03-09 23:46:03 -05005216 bnxt_hwrm_cmd_hdr_init(bp, req, HWRM_FUNC_CFG, -1, -1);
5217 req->fid = cpu_to_le16(0xffff);
Michael Chan674f50a2018-01-17 03:21:09 -05005218 enables |= tx_rings ? FUNC_CFG_REQ_ENABLES_NUM_TX_RINGS : 0;
Michael Chan4ed50ef2018-03-09 23:46:03 -05005219 req->num_tx_rings = cpu_to_le16(tx_rings);
Michael Chanf1ca94d2018-08-05 16:51:53 -04005220 if (BNXT_NEW_RM(bp)) {
Michael Chan674f50a2018-01-17 03:21:09 -05005221 enables |= rx_rings ? FUNC_CFG_REQ_ENABLES_NUM_RX_RINGS : 0;
Michael Chan41e8d792018-10-14 07:02:48 -04005222 if (bp->flags & BNXT_FLAG_CHIP_P5) {
5223 enables |= cp_rings ? FUNC_CFG_REQ_ENABLES_NUM_MSIX : 0;
5224 enables |= tx_rings + ring_grps ?
5225 FUNC_CFG_REQ_ENABLES_NUM_CMPL_RINGS |
5226 FUNC_CFG_REQ_ENABLES_NUM_STAT_CTXS : 0;
5227 enables |= rx_rings ?
5228 FUNC_CFG_REQ_ENABLES_NUM_RSSCOS_CTXS : 0;
5229 } else {
5230 enables |= cp_rings ?
5231 FUNC_CFG_REQ_ENABLES_NUM_CMPL_RINGS |
5232 FUNC_CFG_REQ_ENABLES_NUM_STAT_CTXS : 0;
5233 enables |= ring_grps ?
5234 FUNC_CFG_REQ_ENABLES_NUM_HW_RING_GRPS |
5235 FUNC_CFG_REQ_ENABLES_NUM_RSSCOS_CTXS : 0;
5236 }
Michael Chandbe80d42018-10-05 00:26:00 -04005237 enables |= vnics ? FUNC_CFG_REQ_ENABLES_NUM_VNICS : 0;
Michael Chan674f50a2018-01-17 03:21:09 -05005238
Michael Chan4ed50ef2018-03-09 23:46:03 -05005239 req->num_rx_rings = cpu_to_le16(rx_rings);
Michael Chan41e8d792018-10-14 07:02:48 -04005240 if (bp->flags & BNXT_FLAG_CHIP_P5) {
5241 req->num_cmpl_rings = cpu_to_le16(tx_rings + ring_grps);
5242 req->num_msix = cpu_to_le16(cp_rings);
5243 req->num_rsscos_ctxs =
5244 cpu_to_le16(DIV_ROUND_UP(ring_grps, 64));
5245 } else {
5246 req->num_cmpl_rings = cpu_to_le16(cp_rings);
5247 req->num_hw_ring_grps = cpu_to_le16(ring_grps);
5248 req->num_rsscos_ctxs = cpu_to_le16(1);
5249 if (!(bp->flags & BNXT_FLAG_NEW_RSS_CAP) &&
5250 bnxt_rfs_supported(bp))
5251 req->num_rsscos_ctxs =
5252 cpu_to_le16(ring_grps + 1);
5253 }
Michael Chan4ed50ef2018-03-09 23:46:03 -05005254 req->num_stat_ctxs = req->num_cmpl_rings;
5255 req->num_vnics = cpu_to_le16(vnics);
Michael Chan674f50a2018-01-17 03:21:09 -05005256 }
Michael Chan4ed50ef2018-03-09 23:46:03 -05005257 req->enables = cpu_to_le32(enables);
5258}
5259
5260static void
5261__bnxt_hwrm_reserve_vf_rings(struct bnxt *bp,
5262 struct hwrm_func_vf_cfg_input *req, int tx_rings,
5263 int rx_rings, int ring_grps, int cp_rings,
5264 int vnics)
5265{
5266 u32 enables = 0;
5267
5268 bnxt_hwrm_cmd_hdr_init(bp, req, HWRM_FUNC_VF_CFG, -1, -1);
5269 enables |= tx_rings ? FUNC_VF_CFG_REQ_ENABLES_NUM_TX_RINGS : 0;
Michael Chan41e8d792018-10-14 07:02:48 -04005270 enables |= rx_rings ? FUNC_VF_CFG_REQ_ENABLES_NUM_RX_RINGS |
5271 FUNC_VF_CFG_REQ_ENABLES_NUM_RSSCOS_CTXS : 0;
5272 if (bp->flags & BNXT_FLAG_CHIP_P5) {
5273 enables |= tx_rings + ring_grps ?
5274 FUNC_VF_CFG_REQ_ENABLES_NUM_CMPL_RINGS |
5275 FUNC_VF_CFG_REQ_ENABLES_NUM_STAT_CTXS : 0;
5276 } else {
5277 enables |= cp_rings ?
5278 FUNC_VF_CFG_REQ_ENABLES_NUM_CMPL_RINGS |
5279 FUNC_VF_CFG_REQ_ENABLES_NUM_STAT_CTXS : 0;
5280 enables |= ring_grps ?
5281 FUNC_VF_CFG_REQ_ENABLES_NUM_HW_RING_GRPS : 0;
5282 }
Michael Chan4ed50ef2018-03-09 23:46:03 -05005283 enables |= vnics ? FUNC_VF_CFG_REQ_ENABLES_NUM_VNICS : 0;
Michael Chan41e8d792018-10-14 07:02:48 -04005284 enables |= FUNC_VF_CFG_REQ_ENABLES_NUM_L2_CTXS;
Michael Chan4ed50ef2018-03-09 23:46:03 -05005285
Michael Chan41e8d792018-10-14 07:02:48 -04005286 req->num_l2_ctxs = cpu_to_le16(BNXT_VF_MAX_L2_CTX);
Michael Chan4ed50ef2018-03-09 23:46:03 -05005287 req->num_tx_rings = cpu_to_le16(tx_rings);
5288 req->num_rx_rings = cpu_to_le16(rx_rings);
Michael Chan41e8d792018-10-14 07:02:48 -04005289 if (bp->flags & BNXT_FLAG_CHIP_P5) {
5290 req->num_cmpl_rings = cpu_to_le16(tx_rings + ring_grps);
5291 req->num_rsscos_ctxs = cpu_to_le16(DIV_ROUND_UP(ring_grps, 64));
5292 } else {
5293 req->num_cmpl_rings = cpu_to_le16(cp_rings);
5294 req->num_hw_ring_grps = cpu_to_le16(ring_grps);
5295 req->num_rsscos_ctxs = cpu_to_le16(BNXT_VF_MAX_RSS_CTX);
5296 }
Michael Chan4ed50ef2018-03-09 23:46:03 -05005297 req->num_stat_ctxs = req->num_cmpl_rings;
5298 req->num_vnics = cpu_to_le16(vnics);
5299
5300 req->enables = cpu_to_le32(enables);
5301}
5302
5303static int
5304bnxt_hwrm_reserve_pf_rings(struct bnxt *bp, int tx_rings, int rx_rings,
5305 int ring_grps, int cp_rings, int vnics)
5306{
5307 struct hwrm_func_cfg_input req = {0};
5308 int rc;
5309
5310 __bnxt_hwrm_reserve_pf_rings(bp, &req, tx_rings, rx_rings, ring_grps,
5311 cp_rings, vnics);
5312 if (!req.enables)
Michael Chan674f50a2018-01-17 03:21:09 -05005313 return 0;
5314
Michael Chan674f50a2018-01-17 03:21:09 -05005315 rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
5316 if (rc)
5317 return -ENOMEM;
5318
5319 if (bp->hwrm_spec_code < 0x10601)
5320 bp->hw_resc.resv_tx_rings = tx_rings;
5321
5322 rc = bnxt_hwrm_get_rings(bp);
5323 return rc;
5324}
5325
5326static int
5327bnxt_hwrm_reserve_vf_rings(struct bnxt *bp, int tx_rings, int rx_rings,
5328 int ring_grps, int cp_rings, int vnics)
5329{
5330 struct hwrm_func_vf_cfg_input req = {0};
Michael Chan674f50a2018-01-17 03:21:09 -05005331 int rc;
5332
Michael Chanf1ca94d2018-08-05 16:51:53 -04005333 if (!BNXT_NEW_RM(bp)) {
Michael Chan674f50a2018-01-17 03:21:09 -05005334 bp->hw_resc.resv_tx_rings = tx_rings;
5335 return 0;
5336 }
5337
Michael Chan4ed50ef2018-03-09 23:46:03 -05005338 __bnxt_hwrm_reserve_vf_rings(bp, &req, tx_rings, rx_rings, ring_grps,
5339 cp_rings, vnics);
Michael Chan674f50a2018-01-17 03:21:09 -05005340 rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
5341 if (rc)
5342 return -ENOMEM;
5343
5344 rc = bnxt_hwrm_get_rings(bp);
5345 return rc;
5346}
5347
5348static int bnxt_hwrm_reserve_rings(struct bnxt *bp, int tx, int rx, int grp,
5349 int cp, int vnic)
5350{
5351 if (BNXT_PF(bp))
5352 return bnxt_hwrm_reserve_pf_rings(bp, tx, rx, grp, cp, vnic);
5353 else
5354 return bnxt_hwrm_reserve_vf_rings(bp, tx, rx, grp, cp, vnic);
5355}
5356
Michael Chanc0b8cda2018-12-09 07:01:01 -05005357static int bnxt_nq_rings_in_use(struct bnxt *bp)
Michael Chan08654eb2018-03-31 13:54:17 -04005358{
5359 int cp = bp->cp_nr_rings;
5360 int ulp_msix, ulp_base;
5361
5362 ulp_msix = bnxt_get_ulp_msix_num(bp);
5363 if (ulp_msix) {
5364 ulp_base = bnxt_get_ulp_msix_base(bp);
5365 cp += ulp_msix;
5366 if ((ulp_base + ulp_msix) > cp)
5367 cp = ulp_base + ulp_msix;
5368 }
5369 return cp;
5370}
5371
Michael Chanc0b8cda2018-12-09 07:01:01 -05005372static int bnxt_cp_rings_in_use(struct bnxt *bp)
5373{
5374 int cp;
5375
5376 if (!(bp->flags & BNXT_FLAG_CHIP_P5))
5377 return bnxt_nq_rings_in_use(bp);
5378
5379 cp = bp->tx_nr_rings + bp->rx_nr_rings;
5380 return cp;
5381}
5382
Michael Chan4e41dc52018-03-31 13:54:19 -04005383static bool bnxt_need_reserve_rings(struct bnxt *bp)
5384{
5385 struct bnxt_hw_resc *hw_resc = &bp->hw_resc;
Michael Chanfbcfc8e2018-03-31 13:54:20 -04005386 int cp = bnxt_cp_rings_in_use(bp);
Michael Chanc0b8cda2018-12-09 07:01:01 -05005387 int nq = bnxt_nq_rings_in_use(bp);
Michael Chan4e41dc52018-03-31 13:54:19 -04005388 int rx = bp->rx_nr_rings;
5389 int vnic = 1, grp = rx;
5390
5391 if (bp->hwrm_spec_code < 0x10601)
5392 return false;
5393
5394 if (hw_resc->resv_tx_rings != bp->tx_nr_rings)
5395 return true;
5396
Michael Chan41e8d792018-10-14 07:02:48 -04005397 if ((bp->flags & BNXT_FLAG_RFS) && !(bp->flags & BNXT_FLAG_CHIP_P5))
Michael Chan4e41dc52018-03-31 13:54:19 -04005398 vnic = rx + 1;
5399 if (bp->flags & BNXT_FLAG_AGG_RINGS)
5400 rx <<= 1;
Michael Chanf1ca94d2018-08-05 16:51:53 -04005401 if (BNXT_NEW_RM(bp) &&
Michael Chan4e41dc52018-03-31 13:54:19 -04005402 (hw_resc->resv_rx_rings != rx || hw_resc->resv_cp_rings != cp ||
Michael Chanc0b8cda2018-12-09 07:01:01 -05005403 hw_resc->resv_irqs < nq || hw_resc->resv_vnics != vnic ||
Michael Chan41e8d792018-10-14 07:02:48 -04005404 (hw_resc->resv_hw_ring_grps != grp &&
5405 !(bp->flags & BNXT_FLAG_CHIP_P5))))
Michael Chan4e41dc52018-03-31 13:54:19 -04005406 return true;
5407 return false;
5408}
5409
Michael Chan674f50a2018-01-17 03:21:09 -05005410static int __bnxt_reserve_rings(struct bnxt *bp)
5411{
5412 struct bnxt_hw_resc *hw_resc = &bp->hw_resc;
Michael Chanc0b8cda2018-12-09 07:01:01 -05005413 int cp = bnxt_nq_rings_in_use(bp);
Michael Chan674f50a2018-01-17 03:21:09 -05005414 int tx = bp->tx_nr_rings;
5415 int rx = bp->rx_nr_rings;
Michael Chan674f50a2018-01-17 03:21:09 -05005416 int grp, rx_rings, rc;
5417 bool sh = false;
5418 int vnic = 1;
5419
Michael Chan4e41dc52018-03-31 13:54:19 -04005420 if (!bnxt_need_reserve_rings(bp))
Michael Chan391be5c2016-12-29 12:13:41 -05005421 return 0;
5422
Michael Chan674f50a2018-01-17 03:21:09 -05005423 if (bp->flags & BNXT_FLAG_SHARED_RINGS)
5424 sh = true;
Michael Chan41e8d792018-10-14 07:02:48 -04005425 if ((bp->flags & BNXT_FLAG_RFS) && !(bp->flags & BNXT_FLAG_CHIP_P5))
Michael Chan674f50a2018-01-17 03:21:09 -05005426 vnic = rx + 1;
5427 if (bp->flags & BNXT_FLAG_AGG_RINGS)
5428 rx <<= 1;
Michael Chan674f50a2018-01-17 03:21:09 -05005429 grp = bp->rx_nr_rings;
Michael Chan391be5c2016-12-29 12:13:41 -05005430
Michael Chan674f50a2018-01-17 03:21:09 -05005431 rc = bnxt_hwrm_reserve_rings(bp, tx, rx, grp, cp, vnic);
Michael Chan391be5c2016-12-29 12:13:41 -05005432 if (rc)
5433 return rc;
5434
Michael Chan674f50a2018-01-17 03:21:09 -05005435 tx = hw_resc->resv_tx_rings;
Michael Chanf1ca94d2018-08-05 16:51:53 -04005436 if (BNXT_NEW_RM(bp)) {
Michael Chan674f50a2018-01-17 03:21:09 -05005437 rx = hw_resc->resv_rx_rings;
Michael Chanc0b8cda2018-12-09 07:01:01 -05005438 cp = hw_resc->resv_irqs;
Michael Chan674f50a2018-01-17 03:21:09 -05005439 grp = hw_resc->resv_hw_ring_grps;
5440 vnic = hw_resc->resv_vnics;
5441 }
5442
5443 rx_rings = rx;
5444 if (bp->flags & BNXT_FLAG_AGG_RINGS) {
5445 if (rx >= 2) {
5446 rx_rings = rx >> 1;
5447 } else {
5448 if (netif_running(bp->dev))
5449 return -ENOMEM;
5450
5451 bp->flags &= ~BNXT_FLAG_AGG_RINGS;
5452 bp->flags |= BNXT_FLAG_NO_AGG_RINGS;
5453 bp->dev->hw_features &= ~NETIF_F_LRO;
5454 bp->dev->features &= ~NETIF_F_LRO;
5455 bnxt_set_ring_params(bp);
5456 }
5457 }
5458 rx_rings = min_t(int, rx_rings, grp);
5459 rc = bnxt_trim_rings(bp, &rx_rings, &tx, cp, sh);
5460 if (bp->flags & BNXT_FLAG_AGG_RINGS)
5461 rx = rx_rings << 1;
5462 cp = sh ? max_t(int, tx, rx_rings) : tx + rx_rings;
5463 bp->tx_nr_rings = tx;
5464 bp->rx_nr_rings = rx_rings;
5465 bp->cp_nr_rings = cp;
5466
5467 if (!tx || !rx || !cp || !grp || !vnic)
5468 return -ENOMEM;
5469
Michael Chan391be5c2016-12-29 12:13:41 -05005470 return rc;
5471}
5472
Michael Chan8f23d632018-01-17 03:21:12 -05005473static int bnxt_hwrm_check_vf_rings(struct bnxt *bp, int tx_rings, int rx_rings,
Eddie Wai6fc2ffd2018-03-09 23:46:04 -05005474 int ring_grps, int cp_rings, int vnics)
Michael Chan98fdbe72017-08-28 13:40:26 -04005475{
Michael Chan8f23d632018-01-17 03:21:12 -05005476 struct hwrm_func_vf_cfg_input req = {0};
Eddie Wai6fc2ffd2018-03-09 23:46:04 -05005477 u32 flags;
Michael Chan98fdbe72017-08-28 13:40:26 -04005478 int rc;
5479
Michael Chanf1ca94d2018-08-05 16:51:53 -04005480 if (!BNXT_NEW_RM(bp))
Michael Chan98fdbe72017-08-28 13:40:26 -04005481 return 0;
5482
Eddie Wai6fc2ffd2018-03-09 23:46:04 -05005483 __bnxt_hwrm_reserve_vf_rings(bp, &req, tx_rings, rx_rings, ring_grps,
5484 cp_rings, vnics);
Michael Chan8f23d632018-01-17 03:21:12 -05005485 flags = FUNC_VF_CFG_REQ_FLAGS_TX_ASSETS_TEST |
5486 FUNC_VF_CFG_REQ_FLAGS_RX_ASSETS_TEST |
5487 FUNC_VF_CFG_REQ_FLAGS_CMPL_ASSETS_TEST |
Michael Chan8f23d632018-01-17 03:21:12 -05005488 FUNC_VF_CFG_REQ_FLAGS_STAT_CTX_ASSETS_TEST |
Michael Chan41e8d792018-10-14 07:02:48 -04005489 FUNC_VF_CFG_REQ_FLAGS_VNIC_ASSETS_TEST |
5490 FUNC_VF_CFG_REQ_FLAGS_RSSCOS_CTX_ASSETS_TEST;
5491 if (!(bp->flags & BNXT_FLAG_CHIP_P5))
5492 flags |= FUNC_VF_CFG_REQ_FLAGS_RING_GRP_ASSETS_TEST;
Michael Chan98fdbe72017-08-28 13:40:26 -04005493
Michael Chan8f23d632018-01-17 03:21:12 -05005494 req.flags = cpu_to_le32(flags);
Michael Chan98fdbe72017-08-28 13:40:26 -04005495 rc = hwrm_send_message_silent(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
5496 if (rc)
5497 return -ENOMEM;
5498 return 0;
5499}
5500
Michael Chan8f23d632018-01-17 03:21:12 -05005501static int bnxt_hwrm_check_pf_rings(struct bnxt *bp, int tx_rings, int rx_rings,
Eddie Wai6fc2ffd2018-03-09 23:46:04 -05005502 int ring_grps, int cp_rings, int vnics)
Michael Chan8f23d632018-01-17 03:21:12 -05005503{
5504 struct hwrm_func_cfg_input req = {0};
Eddie Wai6fc2ffd2018-03-09 23:46:04 -05005505 u32 flags;
Michael Chan8f23d632018-01-17 03:21:12 -05005506 int rc;
5507
Eddie Wai6fc2ffd2018-03-09 23:46:04 -05005508 __bnxt_hwrm_reserve_pf_rings(bp, &req, tx_rings, rx_rings, ring_grps,
5509 cp_rings, vnics);
Michael Chan8f23d632018-01-17 03:21:12 -05005510 flags = FUNC_CFG_REQ_FLAGS_TX_ASSETS_TEST;
Michael Chan41e8d792018-10-14 07:02:48 -04005511 if (BNXT_NEW_RM(bp)) {
Michael Chan8f23d632018-01-17 03:21:12 -05005512 flags |= FUNC_CFG_REQ_FLAGS_RX_ASSETS_TEST |
5513 FUNC_CFG_REQ_FLAGS_CMPL_ASSETS_TEST |
Michael Chan8f23d632018-01-17 03:21:12 -05005514 FUNC_CFG_REQ_FLAGS_STAT_CTX_ASSETS_TEST |
5515 FUNC_CFG_REQ_FLAGS_VNIC_ASSETS_TEST;
Michael Chan41e8d792018-10-14 07:02:48 -04005516 if (bp->flags & BNXT_FLAG_CHIP_P5)
5517 flags |= FUNC_CFG_REQ_FLAGS_RSSCOS_CTX_ASSETS_TEST;
5518 else
5519 flags |= FUNC_CFG_REQ_FLAGS_RING_GRP_ASSETS_TEST;
5520 }
Eddie Wai6fc2ffd2018-03-09 23:46:04 -05005521
Michael Chan8f23d632018-01-17 03:21:12 -05005522 req.flags = cpu_to_le32(flags);
Michael Chan8f23d632018-01-17 03:21:12 -05005523 rc = hwrm_send_message_silent(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
5524 if (rc)
5525 return -ENOMEM;
5526 return 0;
5527}
5528
5529static int bnxt_hwrm_check_rings(struct bnxt *bp, int tx_rings, int rx_rings,
Eddie Wai6fc2ffd2018-03-09 23:46:04 -05005530 int ring_grps, int cp_rings, int vnics)
Michael Chan8f23d632018-01-17 03:21:12 -05005531{
5532 if (bp->hwrm_spec_code < 0x10801)
5533 return 0;
5534
5535 if (BNXT_PF(bp))
5536 return bnxt_hwrm_check_pf_rings(bp, tx_rings, rx_rings,
Eddie Wai6fc2ffd2018-03-09 23:46:04 -05005537 ring_grps, cp_rings, vnics);
Michael Chan8f23d632018-01-17 03:21:12 -05005538
5539 return bnxt_hwrm_check_vf_rings(bp, tx_rings, rx_rings, ring_grps,
Eddie Wai6fc2ffd2018-03-09 23:46:04 -05005540 cp_rings, vnics);
Michael Chan8f23d632018-01-17 03:21:12 -05005541}
5542
Michael Chan74706af2018-10-14 07:02:40 -04005543static void bnxt_hwrm_coal_params_qcaps(struct bnxt *bp)
5544{
5545 struct hwrm_ring_aggint_qcaps_output *resp = bp->hwrm_cmd_resp_addr;
5546 struct bnxt_coal_cap *coal_cap = &bp->coal_cap;
5547 struct hwrm_ring_aggint_qcaps_input req = {0};
5548 int rc;
5549
5550 coal_cap->cmpl_params = BNXT_LEGACY_COAL_CMPL_PARAMS;
5551 coal_cap->num_cmpl_dma_aggr_max = 63;
5552 coal_cap->num_cmpl_dma_aggr_during_int_max = 63;
5553 coal_cap->cmpl_aggr_dma_tmr_max = 65535;
5554 coal_cap->cmpl_aggr_dma_tmr_during_int_max = 65535;
5555 coal_cap->int_lat_tmr_min_max = 65535;
5556 coal_cap->int_lat_tmr_max_max = 65535;
5557 coal_cap->num_cmpl_aggr_int_max = 65535;
5558 coal_cap->timer_units = 80;
5559
5560 if (bp->hwrm_spec_code < 0x10902)
5561 return;
5562
5563 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_RING_AGGINT_QCAPS, -1, -1);
5564 mutex_lock(&bp->hwrm_cmd_lock);
5565 rc = _hwrm_send_message_silent(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
5566 if (!rc) {
5567 coal_cap->cmpl_params = le32_to_cpu(resp->cmpl_params);
Michael Chan58590c82018-10-14 07:02:56 -04005568 coal_cap->nq_params = le32_to_cpu(resp->nq_params);
Michael Chan74706af2018-10-14 07:02:40 -04005569 coal_cap->num_cmpl_dma_aggr_max =
5570 le16_to_cpu(resp->num_cmpl_dma_aggr_max);
5571 coal_cap->num_cmpl_dma_aggr_during_int_max =
5572 le16_to_cpu(resp->num_cmpl_dma_aggr_during_int_max);
5573 coal_cap->cmpl_aggr_dma_tmr_max =
5574 le16_to_cpu(resp->cmpl_aggr_dma_tmr_max);
5575 coal_cap->cmpl_aggr_dma_tmr_during_int_max =
5576 le16_to_cpu(resp->cmpl_aggr_dma_tmr_during_int_max);
5577 coal_cap->int_lat_tmr_min_max =
5578 le16_to_cpu(resp->int_lat_tmr_min_max);
5579 coal_cap->int_lat_tmr_max_max =
5580 le16_to_cpu(resp->int_lat_tmr_max_max);
5581 coal_cap->num_cmpl_aggr_int_max =
5582 le16_to_cpu(resp->num_cmpl_aggr_int_max);
5583 coal_cap->timer_units = le16_to_cpu(resp->timer_units);
5584 }
5585 mutex_unlock(&bp->hwrm_cmd_lock);
5586}
5587
5588static u16 bnxt_usec_to_coal_tmr(struct bnxt *bp, u16 usec)
5589{
5590 struct bnxt_coal_cap *coal_cap = &bp->coal_cap;
5591
5592 return usec * 1000 / coal_cap->timer_units;
5593}
5594
5595static void bnxt_hwrm_set_coal_params(struct bnxt *bp,
5596 struct bnxt_coal *hw_coal,
Michael Chanbb053f52016-02-26 04:00:02 -05005597 struct hwrm_ring_cmpl_ring_cfg_aggint_params_input *req)
5598{
Michael Chan74706af2018-10-14 07:02:40 -04005599 struct bnxt_coal_cap *coal_cap = &bp->coal_cap;
5600 u32 cmpl_params = coal_cap->cmpl_params;
5601 u16 val, tmr, max, flags = 0;
Michael Chanf8503962017-10-26 11:51:28 -04005602
5603 max = hw_coal->bufs_per_record * 128;
5604 if (hw_coal->budget)
5605 max = hw_coal->bufs_per_record * hw_coal->budget;
Michael Chan74706af2018-10-14 07:02:40 -04005606 max = min_t(u16, max, coal_cap->num_cmpl_aggr_int_max);
Michael Chanf8503962017-10-26 11:51:28 -04005607
5608 val = clamp_t(u16, hw_coal->coal_bufs, 1, max);
5609 req->num_cmpl_aggr_int = cpu_to_le16(val);
Michael Chanb153cbc2017-11-03 03:32:39 -04005610
Michael Chan74706af2018-10-14 07:02:40 -04005611 val = min_t(u16, val, coal_cap->num_cmpl_dma_aggr_max);
Michael Chanf8503962017-10-26 11:51:28 -04005612 req->num_cmpl_dma_aggr = cpu_to_le16(val);
5613
Michael Chan74706af2018-10-14 07:02:40 -04005614 val = clamp_t(u16, hw_coal->coal_bufs_irq, 1,
5615 coal_cap->num_cmpl_dma_aggr_during_int_max);
Michael Chanf8503962017-10-26 11:51:28 -04005616 req->num_cmpl_dma_aggr_during_int = cpu_to_le16(val);
5617
Michael Chan74706af2018-10-14 07:02:40 -04005618 tmr = bnxt_usec_to_coal_tmr(bp, hw_coal->coal_ticks);
5619 tmr = clamp_t(u16, tmr, 1, coal_cap->int_lat_tmr_max_max);
Michael Chanf8503962017-10-26 11:51:28 -04005620 req->int_lat_tmr_max = cpu_to_le16(tmr);
5621
5622 /* min timer set to 1/2 of interrupt timer */
Michael Chan74706af2018-10-14 07:02:40 -04005623 if (cmpl_params & RING_AGGINT_QCAPS_RESP_CMPL_PARAMS_INT_LAT_TMR_MIN) {
5624 val = tmr / 2;
5625 val = clamp_t(u16, val, 1, coal_cap->int_lat_tmr_min_max);
5626 req->int_lat_tmr_min = cpu_to_le16(val);
5627 req->enables |= cpu_to_le16(BNXT_COAL_CMPL_MIN_TMR_ENABLE);
5628 }
Michael Chanf8503962017-10-26 11:51:28 -04005629
5630 /* buf timer set to 1/4 of interrupt timer */
Michael Chan74706af2018-10-14 07:02:40 -04005631 val = clamp_t(u16, tmr / 4, 1, coal_cap->cmpl_aggr_dma_tmr_max);
Michael Chanf8503962017-10-26 11:51:28 -04005632 req->cmpl_aggr_dma_tmr = cpu_to_le16(val);
5633
Michael Chan74706af2018-10-14 07:02:40 -04005634 if (cmpl_params &
5635 RING_AGGINT_QCAPS_RESP_CMPL_PARAMS_NUM_CMPL_DMA_AGGR_DURING_INT) {
5636 tmr = bnxt_usec_to_coal_tmr(bp, hw_coal->coal_ticks_irq);
5637 val = clamp_t(u16, tmr, 1,
5638 coal_cap->cmpl_aggr_dma_tmr_during_int_max);
5639 req->cmpl_aggr_dma_tmr_during_int = cpu_to_le16(tmr);
5640 req->enables |=
5641 cpu_to_le16(BNXT_COAL_CMPL_AGGR_TMR_DURING_INT_ENABLE);
5642 }
Michael Chanf8503962017-10-26 11:51:28 -04005643
Michael Chan74706af2018-10-14 07:02:40 -04005644 if (cmpl_params & RING_AGGINT_QCAPS_RESP_CMPL_PARAMS_TIMER_RESET)
5645 flags |= RING_CMPL_RING_CFG_AGGINT_PARAMS_REQ_FLAGS_TIMER_RESET;
5646 if ((cmpl_params & RING_AGGINT_QCAPS_RESP_CMPL_PARAMS_RING_IDLE) &&
5647 hw_coal->idle_thresh && hw_coal->coal_ticks < hw_coal->idle_thresh)
Michael Chanf8503962017-10-26 11:51:28 -04005648 flags |= RING_CMPL_RING_CFG_AGGINT_PARAMS_REQ_FLAGS_RING_IDLE;
Michael Chanbb053f52016-02-26 04:00:02 -05005649 req->flags = cpu_to_le16(flags);
Michael Chan74706af2018-10-14 07:02:40 -04005650 req->enables |= cpu_to_le16(BNXT_COAL_CMPL_ENABLES);
Michael Chanbb053f52016-02-26 04:00:02 -05005651}
5652
Michael Chan58590c82018-10-14 07:02:56 -04005653/* Caller holds bp->hwrm_cmd_lock */
5654static int __bnxt_hwrm_set_coal_nq(struct bnxt *bp, struct bnxt_napi *bnapi,
5655 struct bnxt_coal *hw_coal)
5656{
5657 struct hwrm_ring_cmpl_ring_cfg_aggint_params_input req = {0};
5658 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
5659 struct bnxt_coal_cap *coal_cap = &bp->coal_cap;
5660 u32 nq_params = coal_cap->nq_params;
5661 u16 tmr;
5662
5663 if (!(nq_params & RING_AGGINT_QCAPS_RESP_NQ_PARAMS_INT_LAT_TMR_MIN))
5664 return 0;
5665
5666 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_RING_CMPL_RING_CFG_AGGINT_PARAMS,
5667 -1, -1);
5668 req.ring_id = cpu_to_le16(cpr->cp_ring_struct.fw_ring_id);
5669 req.flags =
5670 cpu_to_le16(RING_CMPL_RING_CFG_AGGINT_PARAMS_REQ_FLAGS_IS_NQ);
5671
5672 tmr = bnxt_usec_to_coal_tmr(bp, hw_coal->coal_ticks) / 2;
5673 tmr = clamp_t(u16, tmr, 1, coal_cap->int_lat_tmr_min_max);
5674 req.int_lat_tmr_min = cpu_to_le16(tmr);
5675 req.enables |= cpu_to_le16(BNXT_COAL_CMPL_MIN_TMR_ENABLE);
5676 return _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
5677}
5678
Andy Gospodarek6a8788f2018-01-09 16:06:20 -05005679int bnxt_hwrm_set_ring_coal(struct bnxt *bp, struct bnxt_napi *bnapi)
5680{
5681 struct hwrm_ring_cmpl_ring_cfg_aggint_params_input req_rx = {0};
5682 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
5683 struct bnxt_coal coal;
Andy Gospodarek6a8788f2018-01-09 16:06:20 -05005684
5685 /* Tick values in micro seconds.
5686 * 1 coal_buf x bufs_per_record = 1 completion record.
5687 */
5688 memcpy(&coal, &bp->rx_coal, sizeof(struct bnxt_coal));
5689
5690 coal.coal_ticks = cpr->rx_ring_coal.coal_ticks;
5691 coal.coal_bufs = cpr->rx_ring_coal.coal_bufs;
5692
5693 if (!bnapi->rx_ring)
5694 return -ENODEV;
5695
5696 bnxt_hwrm_cmd_hdr_init(bp, &req_rx,
5697 HWRM_RING_CMPL_RING_CFG_AGGINT_PARAMS, -1, -1);
5698
Michael Chan74706af2018-10-14 07:02:40 -04005699 bnxt_hwrm_set_coal_params(bp, &coal, &req_rx);
Andy Gospodarek6a8788f2018-01-09 16:06:20 -05005700
Michael Chan2c61d212018-10-14 07:02:50 -04005701 req_rx.ring_id = cpu_to_le16(bnxt_cp_ring_for_rx(bp, bnapi->rx_ring));
Andy Gospodarek6a8788f2018-01-09 16:06:20 -05005702
5703 return hwrm_send_message(bp, &req_rx, sizeof(req_rx),
5704 HWRM_CMD_TIMEOUT);
5705}
5706
Michael Chanc0c050c2015-10-22 16:01:17 -04005707int bnxt_hwrm_set_coal(struct bnxt *bp)
5708{
5709 int i, rc = 0;
Michael Chandfc9c942016-02-26 04:00:03 -05005710 struct hwrm_ring_cmpl_ring_cfg_aggint_params_input req_rx = {0},
5711 req_tx = {0}, *req;
Michael Chanc0c050c2015-10-22 16:01:17 -04005712
Michael Chandfc9c942016-02-26 04:00:03 -05005713 bnxt_hwrm_cmd_hdr_init(bp, &req_rx,
5714 HWRM_RING_CMPL_RING_CFG_AGGINT_PARAMS, -1, -1);
5715 bnxt_hwrm_cmd_hdr_init(bp, &req_tx,
5716 HWRM_RING_CMPL_RING_CFG_AGGINT_PARAMS, -1, -1);
Michael Chanc0c050c2015-10-22 16:01:17 -04005717
Michael Chan74706af2018-10-14 07:02:40 -04005718 bnxt_hwrm_set_coal_params(bp, &bp->rx_coal, &req_rx);
5719 bnxt_hwrm_set_coal_params(bp, &bp->tx_coal, &req_tx);
Michael Chanc0c050c2015-10-22 16:01:17 -04005720
5721 mutex_lock(&bp->hwrm_cmd_lock);
5722 for (i = 0; i < bp->cp_nr_rings; i++) {
Michael Chandfc9c942016-02-26 04:00:03 -05005723 struct bnxt_napi *bnapi = bp->bnapi[i];
Michael Chan58590c82018-10-14 07:02:56 -04005724 struct bnxt_coal *hw_coal;
Michael Chan2c61d212018-10-14 07:02:50 -04005725 u16 ring_id;
Michael Chanc0c050c2015-10-22 16:01:17 -04005726
Michael Chandfc9c942016-02-26 04:00:03 -05005727 req = &req_rx;
Michael Chan2c61d212018-10-14 07:02:50 -04005728 if (!bnapi->rx_ring) {
5729 ring_id = bnxt_cp_ring_for_tx(bp, bnapi->tx_ring);
Michael Chandfc9c942016-02-26 04:00:03 -05005730 req = &req_tx;
Michael Chan2c61d212018-10-14 07:02:50 -04005731 } else {
5732 ring_id = bnxt_cp_ring_for_rx(bp, bnapi->rx_ring);
5733 }
5734 req->ring_id = cpu_to_le16(ring_id);
Michael Chandfc9c942016-02-26 04:00:03 -05005735
5736 rc = _hwrm_send_message(bp, req, sizeof(*req),
Michael Chanc0c050c2015-10-22 16:01:17 -04005737 HWRM_CMD_TIMEOUT);
5738 if (rc)
5739 break;
Michael Chan58590c82018-10-14 07:02:56 -04005740
5741 if (!(bp->flags & BNXT_FLAG_CHIP_P5))
5742 continue;
5743
5744 if (bnapi->rx_ring && bnapi->tx_ring) {
5745 req = &req_tx;
5746 ring_id = bnxt_cp_ring_for_tx(bp, bnapi->tx_ring);
5747 req->ring_id = cpu_to_le16(ring_id);
5748 rc = _hwrm_send_message(bp, req, sizeof(*req),
5749 HWRM_CMD_TIMEOUT);
5750 if (rc)
5751 break;
5752 }
5753 if (bnapi->rx_ring)
5754 hw_coal = &bp->rx_coal;
5755 else
5756 hw_coal = &bp->tx_coal;
5757 __bnxt_hwrm_set_coal_nq(bp, bnapi, hw_coal);
Michael Chanc0c050c2015-10-22 16:01:17 -04005758 }
5759 mutex_unlock(&bp->hwrm_cmd_lock);
5760 return rc;
5761}
5762
5763static int bnxt_hwrm_stat_ctx_free(struct bnxt *bp)
5764{
5765 int rc = 0, i;
5766 struct hwrm_stat_ctx_free_input req = {0};
5767
5768 if (!bp->bnapi)
5769 return 0;
5770
Prashant Sreedharan3e8060f2016-07-18 07:15:20 -04005771 if (BNXT_CHIP_TYPE_NITRO_A0(bp))
5772 return 0;
5773
Michael Chanc0c050c2015-10-22 16:01:17 -04005774 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_STAT_CTX_FREE, -1, -1);
5775
5776 mutex_lock(&bp->hwrm_cmd_lock);
5777 for (i = 0; i < bp->cp_nr_rings; i++) {
5778 struct bnxt_napi *bnapi = bp->bnapi[i];
5779 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
5780
5781 if (cpr->hw_stats_ctx_id != INVALID_STATS_CTX_ID) {
5782 req.stat_ctx_id = cpu_to_le32(cpr->hw_stats_ctx_id);
5783
5784 rc = _hwrm_send_message(bp, &req, sizeof(req),
5785 HWRM_CMD_TIMEOUT);
5786 if (rc)
5787 break;
5788
5789 cpr->hw_stats_ctx_id = INVALID_STATS_CTX_ID;
5790 }
5791 }
5792 mutex_unlock(&bp->hwrm_cmd_lock);
5793 return rc;
5794}
5795
5796static int bnxt_hwrm_stat_ctx_alloc(struct bnxt *bp)
5797{
5798 int rc = 0, i;
5799 struct hwrm_stat_ctx_alloc_input req = {0};
5800 struct hwrm_stat_ctx_alloc_output *resp = bp->hwrm_cmd_resp_addr;
5801
Prashant Sreedharan3e8060f2016-07-18 07:15:20 -04005802 if (BNXT_CHIP_TYPE_NITRO_A0(bp))
5803 return 0;
5804
Michael Chanc0c050c2015-10-22 16:01:17 -04005805 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_STAT_CTX_ALLOC, -1, -1);
5806
Michael Chan51f30782016-07-01 18:46:29 -04005807 req.update_period_ms = cpu_to_le32(bp->stats_coal_ticks / 1000);
Michael Chanc0c050c2015-10-22 16:01:17 -04005808
5809 mutex_lock(&bp->hwrm_cmd_lock);
5810 for (i = 0; i < bp->cp_nr_rings; i++) {
5811 struct bnxt_napi *bnapi = bp->bnapi[i];
5812 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
5813
5814 req.stats_dma_addr = cpu_to_le64(cpr->hw_stats_map);
5815
5816 rc = _hwrm_send_message(bp, &req, sizeof(req),
5817 HWRM_CMD_TIMEOUT);
5818 if (rc)
5819 break;
5820
5821 cpr->hw_stats_ctx_id = le32_to_cpu(resp->stat_ctx_id);
5822
5823 bp->grp_info[i].fw_stats_ctx = cpr->hw_stats_ctx_id;
5824 }
5825 mutex_unlock(&bp->hwrm_cmd_lock);
Pan Bian89aa8442016-12-03 17:56:17 +08005826 return rc;
Michael Chanc0c050c2015-10-22 16:01:17 -04005827}
5828
Michael Chancf6645f2016-06-13 02:25:28 -04005829static int bnxt_hwrm_func_qcfg(struct bnxt *bp)
5830{
5831 struct hwrm_func_qcfg_input req = {0};
Satish Baddipadige567b2ab2016-06-13 02:25:31 -04005832 struct hwrm_func_qcfg_output *resp = bp->hwrm_cmd_resp_addr;
Michael Chan9315edc2017-07-24 12:34:25 -04005833 u16 flags;
Michael Chancf6645f2016-06-13 02:25:28 -04005834 int rc;
5835
5836 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_QCFG, -1, -1);
5837 req.fid = cpu_to_le16(0xffff);
5838 mutex_lock(&bp->hwrm_cmd_lock);
5839 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
5840 if (rc)
5841 goto func_qcfg_exit;
5842
5843#ifdef CONFIG_BNXT_SRIOV
5844 if (BNXT_VF(bp)) {
Michael Chancf6645f2016-06-13 02:25:28 -04005845 struct bnxt_vf_info *vf = &bp->vf;
5846
5847 vf->vlan = le16_to_cpu(resp->vlan) & VLAN_VID_MASK;
5848 }
5849#endif
Michael Chan9315edc2017-07-24 12:34:25 -04005850 flags = le16_to_cpu(resp->flags);
5851 if (flags & (FUNC_QCFG_RESP_FLAGS_FW_DCBX_AGENT_ENABLED |
5852 FUNC_QCFG_RESP_FLAGS_FW_LLDP_AGENT_ENABLED)) {
Michael Chan97381a12018-08-05 16:51:54 -04005853 bp->fw_cap |= BNXT_FW_CAP_LLDP_AGENT;
Michael Chan9315edc2017-07-24 12:34:25 -04005854 if (flags & FUNC_QCFG_RESP_FLAGS_FW_DCBX_AGENT_ENABLED)
Michael Chan97381a12018-08-05 16:51:54 -04005855 bp->fw_cap |= BNXT_FW_CAP_DCBX_AGENT;
Deepak Khungar9e54e322017-04-21 20:11:26 -04005856 }
Michael Chan9315edc2017-07-24 12:34:25 -04005857 if (BNXT_PF(bp) && (flags & FUNC_QCFG_RESP_FLAGS_MULTI_HOST))
5858 bp->flags |= BNXT_FLAG_MULTI_HOST;
Michael Chanbc39f882017-03-08 18:44:34 -05005859
Satish Baddipadige567b2ab2016-06-13 02:25:31 -04005860 switch (resp->port_partition_type) {
5861 case FUNC_QCFG_RESP_PORT_PARTITION_TYPE_NPAR1_0:
5862 case FUNC_QCFG_RESP_PORT_PARTITION_TYPE_NPAR1_5:
5863 case FUNC_QCFG_RESP_PORT_PARTITION_TYPE_NPAR2_0:
5864 bp->port_partition_type = resp->port_partition_type;
5865 break;
5866 }
Michael Chan32e8239c2017-07-24 12:34:21 -04005867 if (bp->hwrm_spec_code < 0x10707 ||
5868 resp->evb_mode == FUNC_QCFG_RESP_EVB_MODE_VEB)
5869 bp->br_mode = BRIDGE_MODE_VEB;
5870 else if (resp->evb_mode == FUNC_QCFG_RESP_EVB_MODE_VEPA)
5871 bp->br_mode = BRIDGE_MODE_VEPA;
5872 else
5873 bp->br_mode = BRIDGE_MODE_UNDEF;
Michael Chancf6645f2016-06-13 02:25:28 -04005874
Michael Chan7eb9bb32017-10-26 11:51:25 -04005875 bp->max_mtu = le16_to_cpu(resp->max_mtu_configured);
5876 if (!bp->max_mtu)
5877 bp->max_mtu = BNXT_MAX_MTU;
5878
Michael Chancf6645f2016-06-13 02:25:28 -04005879func_qcfg_exit:
5880 mutex_unlock(&bp->hwrm_cmd_lock);
5881 return rc;
5882}
5883
Michael Chan98f04cf2018-10-14 07:02:43 -04005884static int bnxt_hwrm_func_backing_store_qcaps(struct bnxt *bp)
5885{
5886 struct hwrm_func_backing_store_qcaps_input req = {0};
5887 struct hwrm_func_backing_store_qcaps_output *resp =
5888 bp->hwrm_cmd_resp_addr;
5889 int rc;
5890
5891 if (bp->hwrm_spec_code < 0x10902 || BNXT_VF(bp) || bp->ctx)
5892 return 0;
5893
5894 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_BACKING_STORE_QCAPS, -1, -1);
5895 mutex_lock(&bp->hwrm_cmd_lock);
5896 rc = _hwrm_send_message_silent(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
5897 if (!rc) {
5898 struct bnxt_ctx_pg_info *ctx_pg;
5899 struct bnxt_ctx_mem_info *ctx;
5900 int i;
5901
5902 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
5903 if (!ctx) {
5904 rc = -ENOMEM;
5905 goto ctx_err;
5906 }
5907 ctx_pg = kzalloc(sizeof(*ctx_pg) * (bp->max_q + 1), GFP_KERNEL);
5908 if (!ctx_pg) {
5909 kfree(ctx);
5910 rc = -ENOMEM;
5911 goto ctx_err;
5912 }
5913 for (i = 0; i < bp->max_q + 1; i++, ctx_pg++)
5914 ctx->tqm_mem[i] = ctx_pg;
5915
5916 bp->ctx = ctx;
5917 ctx->qp_max_entries = le32_to_cpu(resp->qp_max_entries);
5918 ctx->qp_min_qp1_entries = le16_to_cpu(resp->qp_min_qp1_entries);
5919 ctx->qp_max_l2_entries = le16_to_cpu(resp->qp_max_l2_entries);
5920 ctx->qp_entry_size = le16_to_cpu(resp->qp_entry_size);
5921 ctx->srq_max_l2_entries = le16_to_cpu(resp->srq_max_l2_entries);
5922 ctx->srq_max_entries = le32_to_cpu(resp->srq_max_entries);
5923 ctx->srq_entry_size = le16_to_cpu(resp->srq_entry_size);
5924 ctx->cq_max_l2_entries = le16_to_cpu(resp->cq_max_l2_entries);
5925 ctx->cq_max_entries = le32_to_cpu(resp->cq_max_entries);
5926 ctx->cq_entry_size = le16_to_cpu(resp->cq_entry_size);
5927 ctx->vnic_max_vnic_entries =
5928 le16_to_cpu(resp->vnic_max_vnic_entries);
5929 ctx->vnic_max_ring_table_entries =
5930 le16_to_cpu(resp->vnic_max_ring_table_entries);
5931 ctx->vnic_entry_size = le16_to_cpu(resp->vnic_entry_size);
5932 ctx->stat_max_entries = le32_to_cpu(resp->stat_max_entries);
5933 ctx->stat_entry_size = le16_to_cpu(resp->stat_entry_size);
5934 ctx->tqm_entry_size = le16_to_cpu(resp->tqm_entry_size);
5935 ctx->tqm_min_entries_per_ring =
5936 le32_to_cpu(resp->tqm_min_entries_per_ring);
5937 ctx->tqm_max_entries_per_ring =
5938 le32_to_cpu(resp->tqm_max_entries_per_ring);
5939 ctx->tqm_entries_multiple = resp->tqm_entries_multiple;
5940 if (!ctx->tqm_entries_multiple)
5941 ctx->tqm_entries_multiple = 1;
5942 ctx->mrav_max_entries = le32_to_cpu(resp->mrav_max_entries);
5943 ctx->mrav_entry_size = le16_to_cpu(resp->mrav_entry_size);
5944 ctx->tim_entry_size = le16_to_cpu(resp->tim_entry_size);
5945 ctx->tim_max_entries = le32_to_cpu(resp->tim_max_entries);
5946 } else {
5947 rc = 0;
5948 }
5949ctx_err:
5950 mutex_unlock(&bp->hwrm_cmd_lock);
5951 return rc;
5952}
5953
Michael Chan1b9394e2018-10-14 07:02:44 -04005954static void bnxt_hwrm_set_pg_attr(struct bnxt_ring_mem_info *rmem, u8 *pg_attr,
5955 __le64 *pg_dir)
5956{
5957 u8 pg_size = 0;
5958
5959 if (BNXT_PAGE_SHIFT == 13)
5960 pg_size = 1 << 4;
5961 else if (BNXT_PAGE_SIZE == 16)
5962 pg_size = 2 << 4;
5963
5964 *pg_attr = pg_size;
5965 if (rmem->nr_pages > 1) {
5966 *pg_attr |= 1;
5967 *pg_dir = cpu_to_le64(rmem->pg_tbl_map);
5968 } else {
5969 *pg_dir = cpu_to_le64(rmem->dma_arr[0]);
5970 }
5971}
5972
5973#define FUNC_BACKING_STORE_CFG_REQ_DFLT_ENABLES \
5974 (FUNC_BACKING_STORE_CFG_REQ_ENABLES_QP | \
5975 FUNC_BACKING_STORE_CFG_REQ_ENABLES_SRQ | \
5976 FUNC_BACKING_STORE_CFG_REQ_ENABLES_CQ | \
5977 FUNC_BACKING_STORE_CFG_REQ_ENABLES_VNIC | \
5978 FUNC_BACKING_STORE_CFG_REQ_ENABLES_STAT)
5979
5980static int bnxt_hwrm_func_backing_store_cfg(struct bnxt *bp, u32 enables)
5981{
5982 struct hwrm_func_backing_store_cfg_input req = {0};
5983 struct bnxt_ctx_mem_info *ctx = bp->ctx;
5984 struct bnxt_ctx_pg_info *ctx_pg;
5985 __le32 *num_entries;
5986 __le64 *pg_dir;
5987 u8 *pg_attr;
5988 int i, rc;
5989 u32 ena;
5990
5991 if (!ctx)
5992 return 0;
5993
5994 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_BACKING_STORE_CFG, -1, -1);
5995 req.enables = cpu_to_le32(enables);
5996
5997 if (enables & FUNC_BACKING_STORE_CFG_REQ_ENABLES_QP) {
5998 ctx_pg = &ctx->qp_mem;
5999 req.qp_num_entries = cpu_to_le32(ctx_pg->entries);
6000 req.qp_num_qp1_entries = cpu_to_le16(ctx->qp_min_qp1_entries);
6001 req.qp_num_l2_entries = cpu_to_le16(ctx->qp_max_l2_entries);
6002 req.qp_entry_size = cpu_to_le16(ctx->qp_entry_size);
6003 bnxt_hwrm_set_pg_attr(&ctx_pg->ring_mem,
6004 &req.qpc_pg_size_qpc_lvl,
6005 &req.qpc_page_dir);
6006 }
6007 if (enables & FUNC_BACKING_STORE_CFG_REQ_ENABLES_SRQ) {
6008 ctx_pg = &ctx->srq_mem;
6009 req.srq_num_entries = cpu_to_le32(ctx_pg->entries);
6010 req.srq_num_l2_entries = cpu_to_le16(ctx->srq_max_l2_entries);
6011 req.srq_entry_size = cpu_to_le16(ctx->srq_entry_size);
6012 bnxt_hwrm_set_pg_attr(&ctx_pg->ring_mem,
6013 &req.srq_pg_size_srq_lvl,
6014 &req.srq_page_dir);
6015 }
6016 if (enables & FUNC_BACKING_STORE_CFG_REQ_ENABLES_CQ) {
6017 ctx_pg = &ctx->cq_mem;
6018 req.cq_num_entries = cpu_to_le32(ctx_pg->entries);
6019 req.cq_num_l2_entries = cpu_to_le16(ctx->cq_max_l2_entries);
6020 req.cq_entry_size = cpu_to_le16(ctx->cq_entry_size);
6021 bnxt_hwrm_set_pg_attr(&ctx_pg->ring_mem, &req.cq_pg_size_cq_lvl,
6022 &req.cq_page_dir);
6023 }
6024 if (enables & FUNC_BACKING_STORE_CFG_REQ_ENABLES_VNIC) {
6025 ctx_pg = &ctx->vnic_mem;
6026 req.vnic_num_vnic_entries =
6027 cpu_to_le16(ctx->vnic_max_vnic_entries);
6028 req.vnic_num_ring_table_entries =
6029 cpu_to_le16(ctx->vnic_max_ring_table_entries);
6030 req.vnic_entry_size = cpu_to_le16(ctx->vnic_entry_size);
6031 bnxt_hwrm_set_pg_attr(&ctx_pg->ring_mem,
6032 &req.vnic_pg_size_vnic_lvl,
6033 &req.vnic_page_dir);
6034 }
6035 if (enables & FUNC_BACKING_STORE_CFG_REQ_ENABLES_STAT) {
6036 ctx_pg = &ctx->stat_mem;
6037 req.stat_num_entries = cpu_to_le32(ctx->stat_max_entries);
6038 req.stat_entry_size = cpu_to_le16(ctx->stat_entry_size);
6039 bnxt_hwrm_set_pg_attr(&ctx_pg->ring_mem,
6040 &req.stat_pg_size_stat_lvl,
6041 &req.stat_page_dir);
6042 }
6043 for (i = 0, num_entries = &req.tqm_sp_num_entries,
6044 pg_attr = &req.tqm_sp_pg_size_tqm_sp_lvl,
6045 pg_dir = &req.tqm_sp_page_dir,
6046 ena = FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_SP;
6047 i < 9; i++, num_entries++, pg_attr++, pg_dir++, ena <<= 1) {
6048 if (!(enables & ena))
6049 continue;
6050
6051 req.tqm_entry_size = cpu_to_le16(ctx->tqm_entry_size);
6052 ctx_pg = ctx->tqm_mem[i];
6053 *num_entries = cpu_to_le32(ctx_pg->entries);
6054 bnxt_hwrm_set_pg_attr(&ctx_pg->ring_mem, pg_attr, pg_dir);
6055 }
6056 rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
6057 if (rc)
6058 rc = -EIO;
6059 return rc;
6060}
6061
Michael Chan98f04cf2018-10-14 07:02:43 -04006062static int bnxt_alloc_ctx_mem_blk(struct bnxt *bp,
6063 struct bnxt_ctx_pg_info *ctx_pg, u32 mem_size)
6064{
6065 struct bnxt_ring_mem_info *rmem = &ctx_pg->ring_mem;
6066
6067 if (!mem_size)
6068 return 0;
6069
6070 rmem->nr_pages = DIV_ROUND_UP(mem_size, BNXT_PAGE_SIZE);
6071 if (rmem->nr_pages > MAX_CTX_PAGES) {
6072 rmem->nr_pages = 0;
6073 return -EINVAL;
6074 }
6075 rmem->page_size = BNXT_PAGE_SIZE;
6076 rmem->pg_arr = ctx_pg->ctx_pg_arr;
6077 rmem->dma_arr = ctx_pg->ctx_dma_arr;
Michael Chan1b9394e2018-10-14 07:02:44 -04006078 rmem->flags = BNXT_RMEM_VALID_PTE_FLAG;
Michael Chan98f04cf2018-10-14 07:02:43 -04006079 return bnxt_alloc_ring(bp, rmem);
6080}
6081
6082static void bnxt_free_ctx_mem(struct bnxt *bp)
6083{
6084 struct bnxt_ctx_mem_info *ctx = bp->ctx;
6085 int i;
6086
6087 if (!ctx)
6088 return;
6089
6090 if (ctx->tqm_mem[0]) {
6091 for (i = 0; i < bp->max_q + 1; i++)
6092 bnxt_free_ring(bp, &ctx->tqm_mem[i]->ring_mem);
6093 kfree(ctx->tqm_mem[0]);
6094 ctx->tqm_mem[0] = NULL;
6095 }
6096
6097 bnxt_free_ring(bp, &ctx->stat_mem.ring_mem);
6098 bnxt_free_ring(bp, &ctx->vnic_mem.ring_mem);
6099 bnxt_free_ring(bp, &ctx->cq_mem.ring_mem);
6100 bnxt_free_ring(bp, &ctx->srq_mem.ring_mem);
6101 bnxt_free_ring(bp, &ctx->qp_mem.ring_mem);
6102 ctx->flags &= ~BNXT_CTX_FLAG_INITED;
6103}
6104
6105static int bnxt_alloc_ctx_mem(struct bnxt *bp)
6106{
6107 struct bnxt_ctx_pg_info *ctx_pg;
6108 struct bnxt_ctx_mem_info *ctx;
Michael Chan1b9394e2018-10-14 07:02:44 -04006109 u32 mem_size, ena, entries;
Michael Chan98f04cf2018-10-14 07:02:43 -04006110 int i, rc;
6111
6112 rc = bnxt_hwrm_func_backing_store_qcaps(bp);
6113 if (rc) {
6114 netdev_err(bp->dev, "Failed querying context mem capability, rc = %d.\n",
6115 rc);
6116 return rc;
6117 }
6118 ctx = bp->ctx;
6119 if (!ctx || (ctx->flags & BNXT_CTX_FLAG_INITED))
6120 return 0;
6121
6122 ctx_pg = &ctx->qp_mem;
6123 ctx_pg->entries = ctx->qp_min_qp1_entries + ctx->qp_max_l2_entries;
6124 mem_size = ctx->qp_entry_size * ctx_pg->entries;
6125 rc = bnxt_alloc_ctx_mem_blk(bp, ctx_pg, mem_size);
6126 if (rc)
6127 return rc;
6128
6129 ctx_pg = &ctx->srq_mem;
6130 ctx_pg->entries = ctx->srq_max_l2_entries;
6131 mem_size = ctx->srq_entry_size * ctx_pg->entries;
6132 rc = bnxt_alloc_ctx_mem_blk(bp, ctx_pg, mem_size);
6133 if (rc)
6134 return rc;
6135
6136 ctx_pg = &ctx->cq_mem;
6137 ctx_pg->entries = ctx->cq_max_l2_entries;
6138 mem_size = ctx->cq_entry_size * ctx_pg->entries;
6139 rc = bnxt_alloc_ctx_mem_blk(bp, ctx_pg, mem_size);
6140 if (rc)
6141 return rc;
6142
6143 ctx_pg = &ctx->vnic_mem;
6144 ctx_pg->entries = ctx->vnic_max_vnic_entries +
6145 ctx->vnic_max_ring_table_entries;
6146 mem_size = ctx->vnic_entry_size * ctx_pg->entries;
6147 rc = bnxt_alloc_ctx_mem_blk(bp, ctx_pg, mem_size);
6148 if (rc)
6149 return rc;
6150
6151 ctx_pg = &ctx->stat_mem;
6152 ctx_pg->entries = ctx->stat_max_entries;
6153 mem_size = ctx->stat_entry_size * ctx_pg->entries;
6154 rc = bnxt_alloc_ctx_mem_blk(bp, ctx_pg, mem_size);
6155 if (rc)
6156 return rc;
6157
6158 entries = ctx->qp_max_l2_entries;
6159 entries = roundup(entries, ctx->tqm_entries_multiple);
6160 entries = clamp_t(u32, entries, ctx->tqm_min_entries_per_ring,
6161 ctx->tqm_max_entries_per_ring);
Michael Chan1b9394e2018-10-14 07:02:44 -04006162 for (i = 0, ena = 0; i < bp->max_q + 1; i++) {
Michael Chan98f04cf2018-10-14 07:02:43 -04006163 ctx_pg = ctx->tqm_mem[i];
6164 ctx_pg->entries = entries;
6165 mem_size = ctx->tqm_entry_size * entries;
6166 rc = bnxt_alloc_ctx_mem_blk(bp, ctx_pg, mem_size);
6167 if (rc)
6168 return rc;
Michael Chan1b9394e2018-10-14 07:02:44 -04006169 ena |= FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_SP << i;
Michael Chan98f04cf2018-10-14 07:02:43 -04006170 }
Michael Chan1b9394e2018-10-14 07:02:44 -04006171 ena |= FUNC_BACKING_STORE_CFG_REQ_DFLT_ENABLES;
6172 rc = bnxt_hwrm_func_backing_store_cfg(bp, ena);
6173 if (rc)
6174 netdev_err(bp->dev, "Failed configuring context mem, rc = %d.\n",
6175 rc);
6176 else
6177 ctx->flags |= BNXT_CTX_FLAG_INITED;
6178
Michael Chan98f04cf2018-10-14 07:02:43 -04006179 return 0;
6180}
6181
Michael Chandb4723b2018-03-31 13:54:13 -04006182int bnxt_hwrm_func_resc_qcaps(struct bnxt *bp, bool all)
Michael Chanbe0dd9c2018-01-17 03:21:07 -05006183{
6184 struct hwrm_func_resource_qcaps_output *resp = bp->hwrm_cmd_resp_addr;
6185 struct hwrm_func_resource_qcaps_input req = {0};
6186 struct bnxt_hw_resc *hw_resc = &bp->hw_resc;
6187 int rc;
6188
6189 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_RESOURCE_QCAPS, -1, -1);
6190 req.fid = cpu_to_le16(0xffff);
6191
6192 mutex_lock(&bp->hwrm_cmd_lock);
6193 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
6194 if (rc) {
6195 rc = -EIO;
6196 goto hwrm_func_resc_qcaps_exit;
6197 }
6198
Michael Chandb4723b2018-03-31 13:54:13 -04006199 hw_resc->max_tx_sch_inputs = le16_to_cpu(resp->max_tx_scheduler_inputs);
6200 if (!all)
6201 goto hwrm_func_resc_qcaps_exit;
6202
Michael Chanbe0dd9c2018-01-17 03:21:07 -05006203 hw_resc->min_rsscos_ctxs = le16_to_cpu(resp->min_rsscos_ctx);
6204 hw_resc->max_rsscos_ctxs = le16_to_cpu(resp->max_rsscos_ctx);
6205 hw_resc->min_cp_rings = le16_to_cpu(resp->min_cmpl_rings);
6206 hw_resc->max_cp_rings = le16_to_cpu(resp->max_cmpl_rings);
6207 hw_resc->min_tx_rings = le16_to_cpu(resp->min_tx_rings);
6208 hw_resc->max_tx_rings = le16_to_cpu(resp->max_tx_rings);
6209 hw_resc->min_rx_rings = le16_to_cpu(resp->min_rx_rings);
6210 hw_resc->max_rx_rings = le16_to_cpu(resp->max_rx_rings);
6211 hw_resc->min_hw_ring_grps = le16_to_cpu(resp->min_hw_ring_grps);
6212 hw_resc->max_hw_ring_grps = le16_to_cpu(resp->max_hw_ring_grps);
6213 hw_resc->min_l2_ctxs = le16_to_cpu(resp->min_l2_ctxs);
6214 hw_resc->max_l2_ctxs = le16_to_cpu(resp->max_l2_ctxs);
6215 hw_resc->min_vnics = le16_to_cpu(resp->min_vnics);
6216 hw_resc->max_vnics = le16_to_cpu(resp->max_vnics);
6217 hw_resc->min_stat_ctxs = le16_to_cpu(resp->min_stat_ctx);
6218 hw_resc->max_stat_ctxs = le16_to_cpu(resp->max_stat_ctx);
6219
Michael Chan9c1fabd2018-10-14 07:02:47 -04006220 if (bp->flags & BNXT_FLAG_CHIP_P5) {
6221 u16 max_msix = le16_to_cpu(resp->max_msix);
6222
6223 hw_resc->max_irqs = min_t(u16, hw_resc->max_irqs, max_msix);
6224 hw_resc->max_hw_ring_grps = hw_resc->max_rx_rings;
6225 }
6226
Michael Chan4673d662018-01-17 03:21:11 -05006227 if (BNXT_PF(bp)) {
6228 struct bnxt_pf_info *pf = &bp->pf;
6229
6230 pf->vf_resv_strategy =
6231 le16_to_cpu(resp->vf_reservation_strategy);
Michael Chanbf827362018-08-05 16:51:50 -04006232 if (pf->vf_resv_strategy > BNXT_VF_RESV_STRATEGY_MINIMAL_STATIC)
Michael Chan4673d662018-01-17 03:21:11 -05006233 pf->vf_resv_strategy = BNXT_VF_RESV_STRATEGY_MAXIMAL;
6234 }
Michael Chanbe0dd9c2018-01-17 03:21:07 -05006235hwrm_func_resc_qcaps_exit:
6236 mutex_unlock(&bp->hwrm_cmd_lock);
6237 return rc;
6238}
6239
6240static int __bnxt_hwrm_func_qcaps(struct bnxt *bp)
Michael Chanc0c050c2015-10-22 16:01:17 -04006241{
6242 int rc = 0;
6243 struct hwrm_func_qcaps_input req = {0};
6244 struct hwrm_func_qcaps_output *resp = bp->hwrm_cmd_resp_addr;
Michael Chan6a4f2942018-01-17 03:21:06 -05006245 struct bnxt_hw_resc *hw_resc = &bp->hw_resc;
6246 u32 flags;
Michael Chanc0c050c2015-10-22 16:01:17 -04006247
6248 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_QCAPS, -1, -1);
6249 req.fid = cpu_to_le16(0xffff);
6250
6251 mutex_lock(&bp->hwrm_cmd_lock);
6252 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
6253 if (rc)
6254 goto hwrm_func_qcaps_exit;
6255
Michael Chan6a4f2942018-01-17 03:21:06 -05006256 flags = le32_to_cpu(resp->flags);
6257 if (flags & FUNC_QCAPS_RESP_FLAGS_ROCE_V1_SUPPORTED)
Michael Chane4060d32016-12-07 00:26:19 -05006258 bp->flags |= BNXT_FLAG_ROCEV1_CAP;
Michael Chan6a4f2942018-01-17 03:21:06 -05006259 if (flags & FUNC_QCAPS_RESP_FLAGS_ROCE_V2_SUPPORTED)
Michael Chane4060d32016-12-07 00:26:19 -05006260 bp->flags |= BNXT_FLAG_ROCEV2_CAP;
6261
Michael Chan7cc5a202016-09-19 03:58:05 -04006262 bp->tx_push_thresh = 0;
Michael Chan6a4f2942018-01-17 03:21:06 -05006263 if (flags & FUNC_QCAPS_RESP_FLAGS_PUSH_MODE_SUPPORTED)
Michael Chan7cc5a202016-09-19 03:58:05 -04006264 bp->tx_push_thresh = BNXT_TX_PUSH_THRESH;
6265
Michael Chan6a4f2942018-01-17 03:21:06 -05006266 hw_resc->max_rsscos_ctxs = le16_to_cpu(resp->max_rsscos_ctx);
6267 hw_resc->max_cp_rings = le16_to_cpu(resp->max_cmpl_rings);
6268 hw_resc->max_tx_rings = le16_to_cpu(resp->max_tx_rings);
6269 hw_resc->max_rx_rings = le16_to_cpu(resp->max_rx_rings);
6270 hw_resc->max_hw_ring_grps = le32_to_cpu(resp->max_hw_ring_grps);
6271 if (!hw_resc->max_hw_ring_grps)
6272 hw_resc->max_hw_ring_grps = hw_resc->max_tx_rings;
6273 hw_resc->max_l2_ctxs = le16_to_cpu(resp->max_l2_ctxs);
6274 hw_resc->max_vnics = le16_to_cpu(resp->max_vnics);
6275 hw_resc->max_stat_ctxs = le16_to_cpu(resp->max_stat_ctx);
6276
Michael Chanc0c050c2015-10-22 16:01:17 -04006277 if (BNXT_PF(bp)) {
6278 struct bnxt_pf_info *pf = &bp->pf;
6279
6280 pf->fw_fid = le16_to_cpu(resp->fid);
6281 pf->port_id = le16_to_cpu(resp->port_id);
Michael Chan87027db2016-07-01 18:46:28 -04006282 bp->dev->dev_port = pf->port_id;
Michael Chan11f15ed2016-04-05 14:08:55 -04006283 memcpy(pf->mac_addr, resp->mac_address, ETH_ALEN);
Michael Chanc0c050c2015-10-22 16:01:17 -04006284 pf->first_vf_id = le16_to_cpu(resp->first_vf_id);
6285 pf->max_vfs = le16_to_cpu(resp->max_vfs);
6286 pf->max_encap_records = le32_to_cpu(resp->max_encap_records);
6287 pf->max_decap_records = le32_to_cpu(resp->max_decap_records);
6288 pf->max_tx_em_flows = le32_to_cpu(resp->max_tx_em_flows);
6289 pf->max_tx_wm_flows = le32_to_cpu(resp->max_tx_wm_flows);
6290 pf->max_rx_em_flows = le32_to_cpu(resp->max_rx_em_flows);
6291 pf->max_rx_wm_flows = le32_to_cpu(resp->max_rx_wm_flows);
Michael Chan6a4f2942018-01-17 03:21:06 -05006292 if (flags & FUNC_QCAPS_RESP_FLAGS_WOL_MAGICPKT_SUPPORTED)
Michael Chanc1ef1462017-04-04 18:14:07 -04006293 bp->flags |= BNXT_FLAG_WOL_CAP;
Michael Chanc0c050c2015-10-22 16:01:17 -04006294 } else {
Michael Chan379a80a2015-10-23 15:06:19 -04006295#ifdef CONFIG_BNXT_SRIOV
Michael Chanc0c050c2015-10-22 16:01:17 -04006296 struct bnxt_vf_info *vf = &bp->vf;
6297
6298 vf->fw_fid = le16_to_cpu(resp->fid);
Michael Chan7cc5a202016-09-19 03:58:05 -04006299 memcpy(vf->mac_addr, resp->mac_address, ETH_ALEN);
Michael Chan379a80a2015-10-23 15:06:19 -04006300#endif
Michael Chanc0c050c2015-10-22 16:01:17 -04006301 }
6302
Michael Chanc0c050c2015-10-22 16:01:17 -04006303hwrm_func_qcaps_exit:
6304 mutex_unlock(&bp->hwrm_cmd_lock);
6305 return rc;
6306}
6307
Michael Chan804fba42018-12-09 07:00:59 -05006308static int bnxt_hwrm_queue_qportcfg(struct bnxt *bp);
6309
Michael Chanbe0dd9c2018-01-17 03:21:07 -05006310static int bnxt_hwrm_func_qcaps(struct bnxt *bp)
6311{
6312 int rc;
6313
6314 rc = __bnxt_hwrm_func_qcaps(bp);
6315 if (rc)
6316 return rc;
Michael Chan804fba42018-12-09 07:00:59 -05006317 rc = bnxt_hwrm_queue_qportcfg(bp);
6318 if (rc) {
6319 netdev_err(bp->dev, "hwrm query qportcfg failure rc: %d\n", rc);
6320 return rc;
6321 }
Michael Chanbe0dd9c2018-01-17 03:21:07 -05006322 if (bp->hwrm_spec_code >= 0x10803) {
Michael Chan98f04cf2018-10-14 07:02:43 -04006323 rc = bnxt_alloc_ctx_mem(bp);
6324 if (rc)
6325 return rc;
Michael Chandb4723b2018-03-31 13:54:13 -04006326 rc = bnxt_hwrm_func_resc_qcaps(bp, true);
Michael Chanbe0dd9c2018-01-17 03:21:07 -05006327 if (!rc)
Michael Chan97381a12018-08-05 16:51:54 -04006328 bp->fw_cap |= BNXT_FW_CAP_NEW_RM;
Michael Chanbe0dd9c2018-01-17 03:21:07 -05006329 }
6330 return 0;
6331}
6332
Michael Chanc0c050c2015-10-22 16:01:17 -04006333static int bnxt_hwrm_func_reset(struct bnxt *bp)
6334{
6335 struct hwrm_func_reset_input req = {0};
6336
6337 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_RESET, -1, -1);
6338 req.enables = 0;
6339
6340 return hwrm_send_message(bp, &req, sizeof(req), HWRM_RESET_TIMEOUT);
6341}
6342
6343static int bnxt_hwrm_queue_qportcfg(struct bnxt *bp)
6344{
6345 int rc = 0;
6346 struct hwrm_queue_qportcfg_input req = {0};
6347 struct hwrm_queue_qportcfg_output *resp = bp->hwrm_cmd_resp_addr;
Michael Chanaabfc012018-08-05 16:51:58 -04006348 u8 i, j, *qptr;
6349 bool no_rdma;
Michael Chanc0c050c2015-10-22 16:01:17 -04006350
6351 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_QUEUE_QPORTCFG, -1, -1);
6352
6353 mutex_lock(&bp->hwrm_cmd_lock);
6354 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
6355 if (rc)
6356 goto qportcfg_exit;
6357
6358 if (!resp->max_configurable_queues) {
6359 rc = -EINVAL;
6360 goto qportcfg_exit;
6361 }
6362 bp->max_tc = resp->max_configurable_queues;
Michael Chan87c374d2016-12-02 21:17:16 -05006363 bp->max_lltc = resp->max_configurable_lossless_queues;
Michael Chanc0c050c2015-10-22 16:01:17 -04006364 if (bp->max_tc > BNXT_MAX_QUEUE)
6365 bp->max_tc = BNXT_MAX_QUEUE;
6366
Michael Chanaabfc012018-08-05 16:51:58 -04006367 no_rdma = !(bp->flags & BNXT_FLAG_ROCE_CAP);
6368 qptr = &resp->queue_id0;
6369 for (i = 0, j = 0; i < bp->max_tc; i++) {
Michael Chan98f04cf2018-10-14 07:02:43 -04006370 bp->q_info[j].queue_id = *qptr;
6371 bp->q_ids[i] = *qptr++;
Michael Chanaabfc012018-08-05 16:51:58 -04006372 bp->q_info[j].queue_profile = *qptr++;
6373 bp->tc_to_qidx[j] = j;
6374 if (!BNXT_CNPQ(bp->q_info[j].queue_profile) ||
6375 (no_rdma && BNXT_PF(bp)))
6376 j++;
6377 }
Michael Chan98f04cf2018-10-14 07:02:43 -04006378 bp->max_q = bp->max_tc;
Michael Chanaabfc012018-08-05 16:51:58 -04006379 bp->max_tc = max_t(u8, j, 1);
6380
Michael Chan441cabb2016-09-19 03:58:02 -04006381 if (resp->queue_cfg_info & QUEUE_QPORTCFG_RESP_QUEUE_CFG_INFO_ASYM_CFG)
6382 bp->max_tc = 1;
6383
Michael Chan87c374d2016-12-02 21:17:16 -05006384 if (bp->max_lltc > bp->max_tc)
6385 bp->max_lltc = bp->max_tc;
6386
Michael Chanc0c050c2015-10-22 16:01:17 -04006387qportcfg_exit:
6388 mutex_unlock(&bp->hwrm_cmd_lock);
6389 return rc;
6390}
6391
6392static int bnxt_hwrm_ver_get(struct bnxt *bp)
6393{
6394 int rc;
6395 struct hwrm_ver_get_input req = {0};
6396 struct hwrm_ver_get_output *resp = bp->hwrm_cmd_resp_addr;
Deepak Khungare605db82017-05-29 19:06:04 -04006397 u32 dev_caps_cfg;
Michael Chanc0c050c2015-10-22 16:01:17 -04006398
Michael Chane6ef2692016-03-28 19:46:05 -04006399 bp->hwrm_max_req_len = HWRM_MAX_REQ_LEN;
Michael Chanc0c050c2015-10-22 16:01:17 -04006400 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_VER_GET, -1, -1);
6401 req.hwrm_intf_maj = HWRM_VERSION_MAJOR;
6402 req.hwrm_intf_min = HWRM_VERSION_MINOR;
6403 req.hwrm_intf_upd = HWRM_VERSION_UPDATE;
6404 mutex_lock(&bp->hwrm_cmd_lock);
6405 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
6406 if (rc)
6407 goto hwrm_ver_get_exit;
6408
6409 memcpy(&bp->ver_resp, resp, sizeof(struct hwrm_ver_get_output));
6410
Michael Chan894aa692018-01-17 03:21:03 -05006411 bp->hwrm_spec_code = resp->hwrm_intf_maj_8b << 16 |
6412 resp->hwrm_intf_min_8b << 8 |
6413 resp->hwrm_intf_upd_8b;
6414 if (resp->hwrm_intf_maj_8b < 1) {
Michael Chanc1935542015-12-27 18:19:28 -05006415 netdev_warn(bp->dev, "HWRM interface %d.%d.%d is older than 1.0.0.\n",
Michael Chan894aa692018-01-17 03:21:03 -05006416 resp->hwrm_intf_maj_8b, resp->hwrm_intf_min_8b,
6417 resp->hwrm_intf_upd_8b);
Michael Chanc1935542015-12-27 18:19:28 -05006418 netdev_warn(bp->dev, "Please update firmware with HWRM interface 1.0.0 or newer.\n");
Michael Chanc0c050c2015-10-22 16:01:17 -04006419 }
Michael Chan431aa1e2017-10-26 11:51:23 -04006420 snprintf(bp->fw_ver_str, BC_HWRM_STR_LEN, "%d.%d.%d.%d",
Michael Chan894aa692018-01-17 03:21:03 -05006421 resp->hwrm_fw_maj_8b, resp->hwrm_fw_min_8b,
6422 resp->hwrm_fw_bld_8b, resp->hwrm_fw_rsvd_8b);
Michael Chanc0c050c2015-10-22 16:01:17 -04006423
Michael Chanff4fe812016-02-26 04:00:04 -05006424 bp->hwrm_cmd_timeout = le16_to_cpu(resp->def_req_timeout);
6425 if (!bp->hwrm_cmd_timeout)
6426 bp->hwrm_cmd_timeout = DFLT_HWRM_CMD_TIMEOUT;
6427
Michael Chan1dfddc42018-10-14 07:02:39 -04006428 if (resp->hwrm_intf_maj_8b >= 1) {
Michael Chane6ef2692016-03-28 19:46:05 -04006429 bp->hwrm_max_req_len = le16_to_cpu(resp->max_req_win_len);
Michael Chan1dfddc42018-10-14 07:02:39 -04006430 bp->hwrm_max_ext_req_len = le16_to_cpu(resp->max_ext_req_len);
6431 }
6432 if (bp->hwrm_max_ext_req_len < HWRM_MAX_REQ_LEN)
6433 bp->hwrm_max_ext_req_len = HWRM_MAX_REQ_LEN;
Michael Chane6ef2692016-03-28 19:46:05 -04006434
Michael Chan659c8052016-06-13 02:25:33 -04006435 bp->chip_num = le16_to_cpu(resp->chip_num);
Prashant Sreedharan3e8060f2016-07-18 07:15:20 -04006436 if (bp->chip_num == CHIP_NUM_58700 && !resp->chip_rev &&
6437 !resp->chip_metal)
6438 bp->flags |= BNXT_FLAG_CHIP_NITRO_A0;
Michael Chan659c8052016-06-13 02:25:33 -04006439
Deepak Khungare605db82017-05-29 19:06:04 -04006440 dev_caps_cfg = le32_to_cpu(resp->dev_caps_cfg);
6441 if ((dev_caps_cfg & VER_GET_RESP_DEV_CAPS_CFG_SHORT_CMD_SUPPORTED) &&
6442 (dev_caps_cfg & VER_GET_RESP_DEV_CAPS_CFG_SHORT_CMD_REQUIRED))
Michael Chan97381a12018-08-05 16:51:54 -04006443 bp->fw_cap |= BNXT_FW_CAP_SHORT_CMD;
Deepak Khungare605db82017-05-29 19:06:04 -04006444
Michael Chanc0c050c2015-10-22 16:01:17 -04006445hwrm_ver_get_exit:
6446 mutex_unlock(&bp->hwrm_cmd_lock);
6447 return rc;
6448}
6449
Rob Swindell5ac67d82016-09-19 03:58:03 -04006450int bnxt_hwrm_fw_set_time(struct bnxt *bp)
6451{
6452 struct hwrm_fw_set_time_input req = {0};
Arnd Bergmann7dfaa7b2017-11-06 15:04:39 +01006453 struct tm tm;
6454 time64_t now = ktime_get_real_seconds();
Rob Swindell5ac67d82016-09-19 03:58:03 -04006455
Michael Chanca2c39e2018-04-26 17:44:34 -04006456 if ((BNXT_VF(bp) && bp->hwrm_spec_code < 0x10901) ||
6457 bp->hwrm_spec_code < 0x10400)
Rob Swindell5ac67d82016-09-19 03:58:03 -04006458 return -EOPNOTSUPP;
6459
Arnd Bergmann7dfaa7b2017-11-06 15:04:39 +01006460 time64_to_tm(now, 0, &tm);
Rob Swindell5ac67d82016-09-19 03:58:03 -04006461 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FW_SET_TIME, -1, -1);
6462 req.year = cpu_to_le16(1900 + tm.tm_year);
6463 req.month = 1 + tm.tm_mon;
6464 req.day = tm.tm_mday;
6465 req.hour = tm.tm_hour;
6466 req.minute = tm.tm_min;
6467 req.second = tm.tm_sec;
6468 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
6469}
6470
Michael Chan3bdf56c2016-03-07 15:38:45 -05006471static int bnxt_hwrm_port_qstats(struct bnxt *bp)
6472{
6473 int rc;
6474 struct bnxt_pf_info *pf = &bp->pf;
6475 struct hwrm_port_qstats_input req = {0};
6476
6477 if (!(bp->flags & BNXT_FLAG_PORT_STATS))
6478 return 0;
6479
6480 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_QSTATS, -1, -1);
6481 req.port_id = cpu_to_le16(pf->port_id);
6482 req.tx_stat_host_addr = cpu_to_le64(bp->hw_tx_port_stats_map);
6483 req.rx_stat_host_addr = cpu_to_le64(bp->hw_rx_port_stats_map);
6484 rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
6485 return rc;
6486}
6487
Vasundhara Volam00db3cb2018-03-31 13:54:12 -04006488static int bnxt_hwrm_port_qstats_ext(struct bnxt *bp)
6489{
Michael Chan36e53342018-10-14 07:02:38 -04006490 struct hwrm_port_qstats_ext_output *resp = bp->hwrm_cmd_resp_addr;
Vasundhara Volam00db3cb2018-03-31 13:54:12 -04006491 struct hwrm_port_qstats_ext_input req = {0};
6492 struct bnxt_pf_info *pf = &bp->pf;
Michael Chan36e53342018-10-14 07:02:38 -04006493 int rc;
Vasundhara Volam00db3cb2018-03-31 13:54:12 -04006494
6495 if (!(bp->flags & BNXT_FLAG_PORT_STATS_EXT))
6496 return 0;
6497
6498 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_QSTATS_EXT, -1, -1);
6499 req.port_id = cpu_to_le16(pf->port_id);
6500 req.rx_stat_size = cpu_to_le16(sizeof(struct rx_port_stats_ext));
6501 req.rx_stat_host_addr = cpu_to_le64(bp->hw_rx_port_stats_ext_map);
Michael Chan36e53342018-10-14 07:02:38 -04006502 req.tx_stat_size = cpu_to_le16(sizeof(struct tx_port_stats_ext));
6503 req.tx_stat_host_addr = cpu_to_le64(bp->hw_tx_port_stats_ext_map);
6504 mutex_lock(&bp->hwrm_cmd_lock);
6505 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
6506 if (!rc) {
6507 bp->fw_rx_stats_ext_size = le16_to_cpu(resp->rx_stat_size) / 8;
6508 bp->fw_tx_stats_ext_size = le16_to_cpu(resp->tx_stat_size) / 8;
6509 } else {
6510 bp->fw_rx_stats_ext_size = 0;
6511 bp->fw_tx_stats_ext_size = 0;
6512 }
6513 mutex_unlock(&bp->hwrm_cmd_lock);
6514 return rc;
Vasundhara Volam00db3cb2018-03-31 13:54:12 -04006515}
6516
Michael Chanc0c050c2015-10-22 16:01:17 -04006517static void bnxt_hwrm_free_tunnel_ports(struct bnxt *bp)
6518{
6519 if (bp->vxlan_port_cnt) {
6520 bnxt_hwrm_tunnel_dst_port_free(
6521 bp, TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_VXLAN);
6522 }
6523 bp->vxlan_port_cnt = 0;
6524 if (bp->nge_port_cnt) {
6525 bnxt_hwrm_tunnel_dst_port_free(
6526 bp, TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_GENEVE);
6527 }
6528 bp->nge_port_cnt = 0;
6529}
6530
6531static int bnxt_set_tpa(struct bnxt *bp, bool set_tpa)
6532{
6533 int rc, i;
6534 u32 tpa_flags = 0;
6535
6536 if (set_tpa)
6537 tpa_flags = bp->flags & BNXT_FLAG_TPA;
6538 for (i = 0; i < bp->nr_vnics; i++) {
6539 rc = bnxt_hwrm_vnic_set_tpa(bp, i, tpa_flags);
6540 if (rc) {
6541 netdev_err(bp->dev, "hwrm vnic set tpa failure rc for vnic %d: %x\n",
Sankar Patchineelam23e12c82017-03-28 19:47:30 -04006542 i, rc);
Michael Chanc0c050c2015-10-22 16:01:17 -04006543 return rc;
6544 }
6545 }
6546 return 0;
6547}
6548
6549static void bnxt_hwrm_clear_vnic_rss(struct bnxt *bp)
6550{
6551 int i;
6552
6553 for (i = 0; i < bp->nr_vnics; i++)
6554 bnxt_hwrm_vnic_set_rss(bp, i, false);
6555}
6556
6557static void bnxt_hwrm_resource_free(struct bnxt *bp, bool close_path,
6558 bool irq_re_init)
6559{
6560 if (bp->vnic_info) {
6561 bnxt_hwrm_clear_vnic_filter(bp);
6562 /* clear all RSS setting before free vnic ctx */
6563 bnxt_hwrm_clear_vnic_rss(bp);
6564 bnxt_hwrm_vnic_ctx_free(bp);
6565 /* before free the vnic, undo the vnic tpa settings */
6566 if (bp->flags & BNXT_FLAG_TPA)
6567 bnxt_set_tpa(bp, false);
6568 bnxt_hwrm_vnic_free(bp);
6569 }
6570 bnxt_hwrm_ring_free(bp, close_path);
6571 bnxt_hwrm_ring_grp_free(bp);
6572 if (irq_re_init) {
6573 bnxt_hwrm_stat_ctx_free(bp);
6574 bnxt_hwrm_free_tunnel_ports(bp);
6575 }
6576}
6577
Michael Chan39d8ba22017-07-24 12:34:22 -04006578static int bnxt_hwrm_set_br_mode(struct bnxt *bp, u16 br_mode)
6579{
6580 struct hwrm_func_cfg_input req = {0};
6581 int rc;
6582
6583 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_CFG, -1, -1);
6584 req.fid = cpu_to_le16(0xffff);
6585 req.enables = cpu_to_le32(FUNC_CFG_REQ_ENABLES_EVB_MODE);
6586 if (br_mode == BRIDGE_MODE_VEB)
6587 req.evb_mode = FUNC_CFG_REQ_EVB_MODE_VEB;
6588 else if (br_mode == BRIDGE_MODE_VEPA)
6589 req.evb_mode = FUNC_CFG_REQ_EVB_MODE_VEPA;
6590 else
6591 return -EINVAL;
6592 rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
6593 if (rc)
6594 rc = -EIO;
6595 return rc;
6596}
6597
Michael Chanc3480a62018-01-17 03:21:15 -05006598static int bnxt_hwrm_set_cache_line_size(struct bnxt *bp, int size)
6599{
6600 struct hwrm_func_cfg_input req = {0};
6601 int rc;
6602
6603 if (BNXT_VF(bp) || bp->hwrm_spec_code < 0x10803)
6604 return 0;
6605
6606 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_CFG, -1, -1);
6607 req.fid = cpu_to_le16(0xffff);
6608 req.enables = cpu_to_le32(FUNC_CFG_REQ_ENABLES_CACHE_LINESIZE);
Michael Chand4f52de02018-03-31 13:54:06 -04006609 req.options = FUNC_CFG_REQ_OPTIONS_CACHE_LINESIZE_SIZE_64;
Michael Chanc3480a62018-01-17 03:21:15 -05006610 if (size == 128)
Michael Chand4f52de02018-03-31 13:54:06 -04006611 req.options = FUNC_CFG_REQ_OPTIONS_CACHE_LINESIZE_SIZE_128;
Michael Chanc3480a62018-01-17 03:21:15 -05006612
6613 rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
6614 if (rc)
6615 rc = -EIO;
6616 return rc;
6617}
6618
Michael Chan7b3af4f2018-10-14 07:02:54 -04006619static int __bnxt_setup_vnic(struct bnxt *bp, u16 vnic_id)
Michael Chanc0c050c2015-10-22 16:01:17 -04006620{
Michael Chanae10ae72016-12-29 12:13:38 -05006621 struct bnxt_vnic_info *vnic = &bp->vnic_info[vnic_id];
Michael Chanc0c050c2015-10-22 16:01:17 -04006622 int rc;
6623
Michael Chanae10ae72016-12-29 12:13:38 -05006624 if (vnic->flags & BNXT_VNIC_RFS_NEW_RSS_FLAG)
6625 goto skip_rss_ctx;
6626
Michael Chanc0c050c2015-10-22 16:01:17 -04006627 /* allocate context for vnic */
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04006628 rc = bnxt_hwrm_vnic_ctx_alloc(bp, vnic_id, 0);
Michael Chanc0c050c2015-10-22 16:01:17 -04006629 if (rc) {
6630 netdev_err(bp->dev, "hwrm vnic %d alloc failure rc: %x\n",
6631 vnic_id, rc);
6632 goto vnic_setup_err;
6633 }
6634 bp->rsscos_nr_ctxs++;
6635
Prashant Sreedharan94ce9ca2016-07-18 07:15:21 -04006636 if (BNXT_CHIP_TYPE_NITRO_A0(bp)) {
6637 rc = bnxt_hwrm_vnic_ctx_alloc(bp, vnic_id, 1);
6638 if (rc) {
6639 netdev_err(bp->dev, "hwrm vnic %d cos ctx alloc failure rc: %x\n",
6640 vnic_id, rc);
6641 goto vnic_setup_err;
6642 }
6643 bp->rsscos_nr_ctxs++;
6644 }
6645
Michael Chanae10ae72016-12-29 12:13:38 -05006646skip_rss_ctx:
Michael Chanc0c050c2015-10-22 16:01:17 -04006647 /* configure default vnic, ring grp */
6648 rc = bnxt_hwrm_vnic_cfg(bp, vnic_id);
6649 if (rc) {
6650 netdev_err(bp->dev, "hwrm vnic %d cfg failure rc: %x\n",
6651 vnic_id, rc);
6652 goto vnic_setup_err;
6653 }
6654
6655 /* Enable RSS hashing on vnic */
6656 rc = bnxt_hwrm_vnic_set_rss(bp, vnic_id, true);
6657 if (rc) {
6658 netdev_err(bp->dev, "hwrm vnic %d set rss failure rc: %x\n",
6659 vnic_id, rc);
6660 goto vnic_setup_err;
6661 }
6662
6663 if (bp->flags & BNXT_FLAG_AGG_RINGS) {
6664 rc = bnxt_hwrm_vnic_set_hds(bp, vnic_id);
6665 if (rc) {
6666 netdev_err(bp->dev, "hwrm vnic %d set hds failure rc: %x\n",
6667 vnic_id, rc);
6668 }
6669 }
6670
6671vnic_setup_err:
6672 return rc;
6673}
6674
Michael Chan7b3af4f2018-10-14 07:02:54 -04006675static int __bnxt_setup_vnic_p5(struct bnxt *bp, u16 vnic_id)
6676{
6677 int rc, i, nr_ctxs;
6678
6679 nr_ctxs = DIV_ROUND_UP(bp->rx_nr_rings, 64);
6680 for (i = 0; i < nr_ctxs; i++) {
6681 rc = bnxt_hwrm_vnic_ctx_alloc(bp, vnic_id, i);
6682 if (rc) {
6683 netdev_err(bp->dev, "hwrm vnic %d ctx %d alloc failure rc: %x\n",
6684 vnic_id, i, rc);
6685 break;
6686 }
6687 bp->rsscos_nr_ctxs++;
6688 }
6689 if (i < nr_ctxs)
6690 return -ENOMEM;
6691
6692 rc = bnxt_hwrm_vnic_set_rss_p5(bp, vnic_id, true);
6693 if (rc) {
6694 netdev_err(bp->dev, "hwrm vnic %d set rss failure rc: %d\n",
6695 vnic_id, rc);
6696 return rc;
6697 }
6698 rc = bnxt_hwrm_vnic_cfg(bp, vnic_id);
6699 if (rc) {
6700 netdev_err(bp->dev, "hwrm vnic %d cfg failure rc: %x\n",
6701 vnic_id, rc);
6702 return rc;
6703 }
6704 if (bp->flags & BNXT_FLAG_AGG_RINGS) {
6705 rc = bnxt_hwrm_vnic_set_hds(bp, vnic_id);
6706 if (rc) {
6707 netdev_err(bp->dev, "hwrm vnic %d set hds failure rc: %x\n",
6708 vnic_id, rc);
6709 }
6710 }
6711 return rc;
6712}
6713
6714static int bnxt_setup_vnic(struct bnxt *bp, u16 vnic_id)
6715{
6716 if (bp->flags & BNXT_FLAG_CHIP_P5)
6717 return __bnxt_setup_vnic_p5(bp, vnic_id);
6718 else
6719 return __bnxt_setup_vnic(bp, vnic_id);
6720}
6721
Michael Chanc0c050c2015-10-22 16:01:17 -04006722static int bnxt_alloc_rfs_vnics(struct bnxt *bp)
6723{
6724#ifdef CONFIG_RFS_ACCEL
6725 int i, rc = 0;
6726
6727 for (i = 0; i < bp->rx_nr_rings; i++) {
Michael Chanae10ae72016-12-29 12:13:38 -05006728 struct bnxt_vnic_info *vnic;
Michael Chanc0c050c2015-10-22 16:01:17 -04006729 u16 vnic_id = i + 1;
6730 u16 ring_id = i;
6731
6732 if (vnic_id >= bp->nr_vnics)
6733 break;
6734
Michael Chanae10ae72016-12-29 12:13:38 -05006735 vnic = &bp->vnic_info[vnic_id];
6736 vnic->flags |= BNXT_VNIC_RFS_FLAG;
6737 if (bp->flags & BNXT_FLAG_NEW_RSS_CAP)
6738 vnic->flags |= BNXT_VNIC_RFS_NEW_RSS_FLAG;
Michael Chanb81a90d2016-01-02 23:45:01 -05006739 rc = bnxt_hwrm_vnic_alloc(bp, vnic_id, ring_id, 1);
Michael Chanc0c050c2015-10-22 16:01:17 -04006740 if (rc) {
6741 netdev_err(bp->dev, "hwrm vnic %d alloc failure rc: %x\n",
6742 vnic_id, rc);
6743 break;
6744 }
6745 rc = bnxt_setup_vnic(bp, vnic_id);
6746 if (rc)
6747 break;
6748 }
6749 return rc;
6750#else
6751 return 0;
6752#endif
6753}
6754
Michael Chan17c71ac2016-07-01 18:46:27 -04006755/* Allow PF and VF with default VLAN to be in promiscuous mode */
6756static bool bnxt_promisc_ok(struct bnxt *bp)
6757{
6758#ifdef CONFIG_BNXT_SRIOV
6759 if (BNXT_VF(bp) && !bp->vf.vlan)
6760 return false;
6761#endif
6762 return true;
6763}
6764
Prashant Sreedharandc52c6c2016-07-18 07:15:24 -04006765static int bnxt_setup_nitroa0_vnic(struct bnxt *bp)
6766{
6767 unsigned int rc = 0;
6768
6769 rc = bnxt_hwrm_vnic_alloc(bp, 1, bp->rx_nr_rings - 1, 1);
6770 if (rc) {
6771 netdev_err(bp->dev, "Cannot allocate special vnic for NS2 A0: %x\n",
6772 rc);
6773 return rc;
6774 }
6775
6776 rc = bnxt_hwrm_vnic_cfg(bp, 1);
6777 if (rc) {
6778 netdev_err(bp->dev, "Cannot allocate special vnic for NS2 A0: %x\n",
6779 rc);
6780 return rc;
6781 }
6782 return rc;
6783}
6784
Michael Chanb664f002015-12-02 01:54:08 -05006785static int bnxt_cfg_rx_mode(struct bnxt *);
Michael Chan7d2837d2016-05-04 16:56:44 -04006786static bool bnxt_mc_list_updated(struct bnxt *, u32 *);
Michael Chanb664f002015-12-02 01:54:08 -05006787
Michael Chanc0c050c2015-10-22 16:01:17 -04006788static int bnxt_init_chip(struct bnxt *bp, bool irq_re_init)
6789{
Michael Chan7d2837d2016-05-04 16:56:44 -04006790 struct bnxt_vnic_info *vnic = &bp->vnic_info[0];
Michael Chanc0c050c2015-10-22 16:01:17 -04006791 int rc = 0;
Prashant Sreedharan76595192016-07-18 07:15:22 -04006792 unsigned int rx_nr_rings = bp->rx_nr_rings;
Michael Chanc0c050c2015-10-22 16:01:17 -04006793
6794 if (irq_re_init) {
6795 rc = bnxt_hwrm_stat_ctx_alloc(bp);
6796 if (rc) {
6797 netdev_err(bp->dev, "hwrm stat ctx alloc failure rc: %x\n",
6798 rc);
6799 goto err_out;
6800 }
6801 }
6802
6803 rc = bnxt_hwrm_ring_alloc(bp);
6804 if (rc) {
6805 netdev_err(bp->dev, "hwrm ring alloc failure rc: %x\n", rc);
6806 goto err_out;
6807 }
6808
6809 rc = bnxt_hwrm_ring_grp_alloc(bp);
6810 if (rc) {
6811 netdev_err(bp->dev, "hwrm_ring_grp alloc failure: %x\n", rc);
6812 goto err_out;
6813 }
6814
Prashant Sreedharan76595192016-07-18 07:15:22 -04006815 if (BNXT_CHIP_TYPE_NITRO_A0(bp))
6816 rx_nr_rings--;
6817
Michael Chanc0c050c2015-10-22 16:01:17 -04006818 /* default vnic 0 */
Prashant Sreedharan76595192016-07-18 07:15:22 -04006819 rc = bnxt_hwrm_vnic_alloc(bp, 0, 0, rx_nr_rings);
Michael Chanc0c050c2015-10-22 16:01:17 -04006820 if (rc) {
6821 netdev_err(bp->dev, "hwrm vnic alloc failure rc: %x\n", rc);
6822 goto err_out;
6823 }
6824
6825 rc = bnxt_setup_vnic(bp, 0);
6826 if (rc)
6827 goto err_out;
6828
6829 if (bp->flags & BNXT_FLAG_RFS) {
6830 rc = bnxt_alloc_rfs_vnics(bp);
6831 if (rc)
6832 goto err_out;
6833 }
6834
6835 if (bp->flags & BNXT_FLAG_TPA) {
6836 rc = bnxt_set_tpa(bp, true);
6837 if (rc)
6838 goto err_out;
6839 }
6840
6841 if (BNXT_VF(bp))
6842 bnxt_update_vf_mac(bp);
6843
6844 /* Filter for default vnic 0 */
6845 rc = bnxt_hwrm_set_vnic_filter(bp, 0, 0, bp->dev->dev_addr);
6846 if (rc) {
6847 netdev_err(bp->dev, "HWRM vnic filter failure rc: %x\n", rc);
6848 goto err_out;
6849 }
Michael Chan7d2837d2016-05-04 16:56:44 -04006850 vnic->uc_filter_count = 1;
Michael Chanc0c050c2015-10-22 16:01:17 -04006851
Michael Chan30e33842018-07-09 02:24:50 -04006852 vnic->rx_mask = 0;
6853 if (bp->dev->flags & IFF_BROADCAST)
6854 vnic->rx_mask |= CFA_L2_SET_RX_MASK_REQ_MASK_BCAST;
Michael Chanc0c050c2015-10-22 16:01:17 -04006855
Michael Chan17c71ac2016-07-01 18:46:27 -04006856 if ((bp->dev->flags & IFF_PROMISC) && bnxt_promisc_ok(bp))
Michael Chan7d2837d2016-05-04 16:56:44 -04006857 vnic->rx_mask |= CFA_L2_SET_RX_MASK_REQ_MASK_PROMISCUOUS;
6858
6859 if (bp->dev->flags & IFF_ALLMULTI) {
6860 vnic->rx_mask |= CFA_L2_SET_RX_MASK_REQ_MASK_ALL_MCAST;
6861 vnic->mc_list_count = 0;
6862 } else {
6863 u32 mask = 0;
6864
6865 bnxt_mc_list_updated(bp, &mask);
6866 vnic->rx_mask |= mask;
6867 }
Michael Chanc0c050c2015-10-22 16:01:17 -04006868
Michael Chanb664f002015-12-02 01:54:08 -05006869 rc = bnxt_cfg_rx_mode(bp);
6870 if (rc)
Michael Chanc0c050c2015-10-22 16:01:17 -04006871 goto err_out;
Michael Chanc0c050c2015-10-22 16:01:17 -04006872
6873 rc = bnxt_hwrm_set_coal(bp);
6874 if (rc)
6875 netdev_warn(bp->dev, "HWRM set coalescing failure rc: %x\n",
Prashant Sreedharandc52c6c2016-07-18 07:15:24 -04006876 rc);
6877
6878 if (BNXT_CHIP_TYPE_NITRO_A0(bp)) {
6879 rc = bnxt_setup_nitroa0_vnic(bp);
6880 if (rc)
6881 netdev_err(bp->dev, "Special vnic setup failure for NS2 A0 rc: %x\n",
6882 rc);
6883 }
Michael Chanc0c050c2015-10-22 16:01:17 -04006884
Michael Chancf6645f2016-06-13 02:25:28 -04006885 if (BNXT_VF(bp)) {
6886 bnxt_hwrm_func_qcfg(bp);
6887 netdev_update_features(bp->dev);
6888 }
6889
Michael Chanc0c050c2015-10-22 16:01:17 -04006890 return 0;
6891
6892err_out:
6893 bnxt_hwrm_resource_free(bp, 0, true);
6894
6895 return rc;
6896}
6897
6898static int bnxt_shutdown_nic(struct bnxt *bp, bool irq_re_init)
6899{
6900 bnxt_hwrm_resource_free(bp, 1, irq_re_init);
6901 return 0;
6902}
6903
6904static int bnxt_init_nic(struct bnxt *bp, bool irq_re_init)
6905{
Sankar Patchineelam22479252017-03-28 19:47:29 -04006906 bnxt_init_cp_rings(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04006907 bnxt_init_rx_rings(bp);
6908 bnxt_init_tx_rings(bp);
6909 bnxt_init_ring_grps(bp, irq_re_init);
6910 bnxt_init_vnics(bp);
6911
6912 return bnxt_init_chip(bp, irq_re_init);
6913}
6914
Michael Chanc0c050c2015-10-22 16:01:17 -04006915static int bnxt_set_real_num_queues(struct bnxt *bp)
6916{
6917 int rc;
6918 struct net_device *dev = bp->dev;
6919
Michael Chan5f449242017-02-06 16:55:40 -05006920 rc = netif_set_real_num_tx_queues(dev, bp->tx_nr_rings -
6921 bp->tx_nr_rings_xdp);
Michael Chanc0c050c2015-10-22 16:01:17 -04006922 if (rc)
6923 return rc;
6924
6925 rc = netif_set_real_num_rx_queues(dev, bp->rx_nr_rings);
6926 if (rc)
6927 return rc;
6928
6929#ifdef CONFIG_RFS_ACCEL
Michael Chan45019a12015-12-27 18:19:22 -05006930 if (bp->flags & BNXT_FLAG_RFS)
Michael Chanc0c050c2015-10-22 16:01:17 -04006931 dev->rx_cpu_rmap = alloc_irq_cpu_rmap(bp->rx_nr_rings);
Michael Chanc0c050c2015-10-22 16:01:17 -04006932#endif
6933
6934 return rc;
6935}
6936
Michael Chan6e6c5a52016-01-02 23:45:02 -05006937static int bnxt_trim_rings(struct bnxt *bp, int *rx, int *tx, int max,
6938 bool shared)
6939{
6940 int _rx = *rx, _tx = *tx;
6941
6942 if (shared) {
6943 *rx = min_t(int, _rx, max);
6944 *tx = min_t(int, _tx, max);
6945 } else {
6946 if (max < 2)
6947 return -ENOMEM;
6948
6949 while (_rx + _tx > max) {
6950 if (_rx > _tx && _rx > 1)
6951 _rx--;
6952 else if (_tx > 1)
6953 _tx--;
6954 }
6955 *rx = _rx;
6956 *tx = _tx;
6957 }
6958 return 0;
6959}
6960
Michael Chan78095922016-12-07 00:26:16 -05006961static void bnxt_setup_msix(struct bnxt *bp)
6962{
6963 const int len = sizeof(bp->irq_tbl[0].name);
6964 struct net_device *dev = bp->dev;
6965 int tcs, i;
6966
6967 tcs = netdev_get_num_tc(dev);
6968 if (tcs > 1) {
Michael Chand1e79252017-02-06 16:55:38 -05006969 int i, off, count;
Michael Chan78095922016-12-07 00:26:16 -05006970
Michael Chand1e79252017-02-06 16:55:38 -05006971 for (i = 0; i < tcs; i++) {
6972 count = bp->tx_nr_rings_per_tc;
6973 off = i * count;
6974 netdev_set_tc_queue(dev, i, count, off);
Michael Chan78095922016-12-07 00:26:16 -05006975 }
6976 }
6977
6978 for (i = 0; i < bp->cp_nr_rings; i++) {
Michael Chane5811b82018-03-31 13:54:18 -04006979 int map_idx = bnxt_cp_num_to_irq_num(bp, i);
Michael Chan78095922016-12-07 00:26:16 -05006980 char *attr;
6981
6982 if (bp->flags & BNXT_FLAG_SHARED_RINGS)
6983 attr = "TxRx";
6984 else if (i < bp->rx_nr_rings)
6985 attr = "rx";
6986 else
6987 attr = "tx";
6988
Michael Chane5811b82018-03-31 13:54:18 -04006989 snprintf(bp->irq_tbl[map_idx].name, len, "%s-%s-%d", dev->name,
6990 attr, i);
6991 bp->irq_tbl[map_idx].handler = bnxt_msix;
Michael Chan78095922016-12-07 00:26:16 -05006992 }
6993}
6994
6995static void bnxt_setup_inta(struct bnxt *bp)
6996{
6997 const int len = sizeof(bp->irq_tbl[0].name);
6998
6999 if (netdev_get_num_tc(bp->dev))
7000 netdev_reset_tc(bp->dev);
7001
7002 snprintf(bp->irq_tbl[0].name, len, "%s-%s-%d", bp->dev->name, "TxRx",
7003 0);
7004 bp->irq_tbl[0].handler = bnxt_inta;
7005}
7006
7007static int bnxt_setup_int_mode(struct bnxt *bp)
7008{
7009 int rc;
7010
7011 if (bp->flags & BNXT_FLAG_USING_MSIX)
7012 bnxt_setup_msix(bp);
7013 else
7014 bnxt_setup_inta(bp);
7015
7016 rc = bnxt_set_real_num_queues(bp);
7017 return rc;
7018}
7019
Michael Chanb7429952017-01-13 01:32:00 -05007020#ifdef CONFIG_RFS_ACCEL
Michael Chan8079e8f2016-12-29 12:13:37 -05007021static unsigned int bnxt_get_max_func_rss_ctxs(struct bnxt *bp)
7022{
Michael Chan6a4f2942018-01-17 03:21:06 -05007023 return bp->hw_resc.max_rsscos_ctxs;
Michael Chan8079e8f2016-12-29 12:13:37 -05007024}
7025
7026static unsigned int bnxt_get_max_func_vnics(struct bnxt *bp)
7027{
Michael Chan6a4f2942018-01-17 03:21:06 -05007028 return bp->hw_resc.max_vnics;
Michael Chan8079e8f2016-12-29 12:13:37 -05007029}
Michael Chanb7429952017-01-13 01:32:00 -05007030#endif
Michael Chan8079e8f2016-12-29 12:13:37 -05007031
Michael Chane4060d32016-12-07 00:26:19 -05007032unsigned int bnxt_get_max_func_stat_ctxs(struct bnxt *bp)
7033{
Michael Chan6a4f2942018-01-17 03:21:06 -05007034 return bp->hw_resc.max_stat_ctxs;
Michael Chane4060d32016-12-07 00:26:19 -05007035}
7036
Michael Chana588e452016-12-07 00:26:21 -05007037void bnxt_set_max_func_stat_ctxs(struct bnxt *bp, unsigned int max)
7038{
Michael Chan6a4f2942018-01-17 03:21:06 -05007039 bp->hw_resc.max_stat_ctxs = max;
Michael Chana588e452016-12-07 00:26:21 -05007040}
7041
Michael Chane4060d32016-12-07 00:26:19 -05007042unsigned int bnxt_get_max_func_cp_rings(struct bnxt *bp)
7043{
Michael Chan6a4f2942018-01-17 03:21:06 -05007044 return bp->hw_resc.max_cp_rings;
Michael Chane4060d32016-12-07 00:26:19 -05007045}
7046
Michael Chan00fe9c32018-09-03 04:23:19 -04007047unsigned int bnxt_get_max_func_cp_rings_for_en(struct bnxt *bp)
Michael Chana588e452016-12-07 00:26:21 -05007048{
Michael Chanc0b8cda2018-12-09 07:01:01 -05007049 unsigned int cp = bp->hw_resc.max_cp_rings;
7050
7051 if (!(bp->flags & BNXT_FLAG_CHIP_P5))
7052 cp -= bnxt_get_ulp_msix_num(bp);
7053
7054 return cp;
Michael Chana588e452016-12-07 00:26:21 -05007055}
7056
Michael Chanad95c272018-09-03 04:23:18 -04007057static unsigned int bnxt_get_max_func_irqs(struct bnxt *bp)
Michael Chan78095922016-12-07 00:26:16 -05007058{
Michael Chan6a4f2942018-01-17 03:21:06 -05007059 struct bnxt_hw_resc *hw_resc = &bp->hw_resc;
7060
7061 return min_t(unsigned int, hw_resc->max_irqs, hw_resc->max_cp_rings);
Michael Chan78095922016-12-07 00:26:16 -05007062}
7063
Michael Chan30f52942018-07-09 02:24:51 -04007064static void bnxt_set_max_func_irqs(struct bnxt *bp, unsigned int max_irqs)
Michael Chan33c26572016-12-07 00:26:15 -05007065{
Michael Chan6a4f2942018-01-17 03:21:06 -05007066 bp->hw_resc.max_irqs = max_irqs;
Michael Chan33c26572016-12-07 00:26:15 -05007067}
7068
Michael Chanfbcfc8e2018-03-31 13:54:20 -04007069int bnxt_get_avail_msix(struct bnxt *bp, int num)
7070{
7071 int max_cp = bnxt_get_max_func_cp_rings(bp);
7072 int max_irq = bnxt_get_max_func_irqs(bp);
7073 int total_req = bp->cp_nr_rings + num;
7074 int max_idx, avail_msix;
7075
Michael Chan75720e62018-12-09 07:01:00 -05007076 max_idx = bp->total_irqs;
7077 if (!(bp->flags & BNXT_FLAG_CHIP_P5))
7078 max_idx = min_t(int, bp->total_irqs, max_cp);
Michael Chanfbcfc8e2018-03-31 13:54:20 -04007079 avail_msix = max_idx - bp->cp_nr_rings;
Michael Chanf1ca94d2018-08-05 16:51:53 -04007080 if (!BNXT_NEW_RM(bp) || avail_msix >= num)
Michael Chanfbcfc8e2018-03-31 13:54:20 -04007081 return avail_msix;
7082
7083 if (max_irq < total_req) {
7084 num = max_irq - bp->cp_nr_rings;
7085 if (num <= 0)
7086 return 0;
7087 }
7088 return num;
7089}
7090
Michael Chan08654eb2018-03-31 13:54:17 -04007091static int bnxt_get_num_msix(struct bnxt *bp)
7092{
Michael Chanf1ca94d2018-08-05 16:51:53 -04007093 if (!BNXT_NEW_RM(bp))
Michael Chan08654eb2018-03-31 13:54:17 -04007094 return bnxt_get_max_func_irqs(bp);
7095
Michael Chanc0b8cda2018-12-09 07:01:01 -05007096 return bnxt_nq_rings_in_use(bp);
Michael Chan08654eb2018-03-31 13:54:17 -04007097}
7098
Michael Chan78095922016-12-07 00:26:16 -05007099static int bnxt_init_msix(struct bnxt *bp)
Michael Chanc0c050c2015-10-22 16:01:17 -04007100{
Michael Chanfbcfc8e2018-03-31 13:54:20 -04007101 int i, total_vecs, max, rc = 0, min = 1, ulp_msix;
Michael Chan78095922016-12-07 00:26:16 -05007102 struct msix_entry *msix_ent;
Michael Chanc0c050c2015-10-22 16:01:17 -04007103
Michael Chan08654eb2018-03-31 13:54:17 -04007104 total_vecs = bnxt_get_num_msix(bp);
7105 max = bnxt_get_max_func_irqs(bp);
7106 if (total_vecs > max)
7107 total_vecs = max;
7108
Michael Chan2773dfb2018-04-26 17:44:42 -04007109 if (!total_vecs)
7110 return 0;
7111
Michael Chanc0c050c2015-10-22 16:01:17 -04007112 msix_ent = kcalloc(total_vecs, sizeof(struct msix_entry), GFP_KERNEL);
7113 if (!msix_ent)
7114 return -ENOMEM;
7115
7116 for (i = 0; i < total_vecs; i++) {
7117 msix_ent[i].entry = i;
7118 msix_ent[i].vector = 0;
7119 }
7120
Michael Chan01657bc2016-01-02 23:45:03 -05007121 if (!(bp->flags & BNXT_FLAG_SHARED_RINGS))
7122 min = 2;
7123
7124 total_vecs = pci_enable_msix_range(bp->pdev, msix_ent, min, total_vecs);
Michael Chanfbcfc8e2018-03-31 13:54:20 -04007125 ulp_msix = bnxt_get_ulp_msix_num(bp);
7126 if (total_vecs < 0 || total_vecs < ulp_msix) {
Michael Chanc0c050c2015-10-22 16:01:17 -04007127 rc = -ENODEV;
7128 goto msix_setup_exit;
7129 }
7130
7131 bp->irq_tbl = kcalloc(total_vecs, sizeof(struct bnxt_irq), GFP_KERNEL);
7132 if (bp->irq_tbl) {
Michael Chan78095922016-12-07 00:26:16 -05007133 for (i = 0; i < total_vecs; i++)
7134 bp->irq_tbl[i].vector = msix_ent[i].vector;
Michael Chanc0c050c2015-10-22 16:01:17 -04007135
Michael Chan78095922016-12-07 00:26:16 -05007136 bp->total_irqs = total_vecs;
Michael Chanc0c050c2015-10-22 16:01:17 -04007137 /* Trim rings based upon num of vectors allocated */
Michael Chan6e6c5a52016-01-02 23:45:02 -05007138 rc = bnxt_trim_rings(bp, &bp->rx_nr_rings, &bp->tx_nr_rings,
Michael Chanfbcfc8e2018-03-31 13:54:20 -04007139 total_vecs - ulp_msix, min == 1);
Michael Chan6e6c5a52016-01-02 23:45:02 -05007140 if (rc)
7141 goto msix_setup_exit;
7142
Michael Chan78095922016-12-07 00:26:16 -05007143 bp->cp_nr_rings = (min == 1) ?
7144 max_t(int, bp->tx_nr_rings, bp->rx_nr_rings) :
7145 bp->tx_nr_rings + bp->rx_nr_rings;
Michael Chanc0c050c2015-10-22 16:01:17 -04007146
Michael Chanc0c050c2015-10-22 16:01:17 -04007147 } else {
7148 rc = -ENOMEM;
7149 goto msix_setup_exit;
7150 }
7151 bp->flags |= BNXT_FLAG_USING_MSIX;
7152 kfree(msix_ent);
7153 return 0;
7154
7155msix_setup_exit:
Michael Chan78095922016-12-07 00:26:16 -05007156 netdev_err(bp->dev, "bnxt_init_msix err: %x\n", rc);
7157 kfree(bp->irq_tbl);
7158 bp->irq_tbl = NULL;
Michael Chanc0c050c2015-10-22 16:01:17 -04007159 pci_disable_msix(bp->pdev);
7160 kfree(msix_ent);
7161 return rc;
7162}
7163
Michael Chan78095922016-12-07 00:26:16 -05007164static int bnxt_init_inta(struct bnxt *bp)
Michael Chanc0c050c2015-10-22 16:01:17 -04007165{
Michael Chanc0c050c2015-10-22 16:01:17 -04007166 bp->irq_tbl = kcalloc(1, sizeof(struct bnxt_irq), GFP_KERNEL);
Michael Chan78095922016-12-07 00:26:16 -05007167 if (!bp->irq_tbl)
7168 return -ENOMEM;
7169
7170 bp->total_irqs = 1;
Michael Chanc0c050c2015-10-22 16:01:17 -04007171 bp->rx_nr_rings = 1;
7172 bp->tx_nr_rings = 1;
7173 bp->cp_nr_rings = 1;
Michael Chan01657bc2016-01-02 23:45:03 -05007174 bp->flags |= BNXT_FLAG_SHARED_RINGS;
Michael Chanc0c050c2015-10-22 16:01:17 -04007175 bp->irq_tbl[0].vector = bp->pdev->irq;
Michael Chan78095922016-12-07 00:26:16 -05007176 return 0;
Michael Chanc0c050c2015-10-22 16:01:17 -04007177}
7178
Michael Chan78095922016-12-07 00:26:16 -05007179static int bnxt_init_int_mode(struct bnxt *bp)
Michael Chanc0c050c2015-10-22 16:01:17 -04007180{
7181 int rc = 0;
7182
7183 if (bp->flags & BNXT_FLAG_MSIX_CAP)
Michael Chan78095922016-12-07 00:26:16 -05007184 rc = bnxt_init_msix(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04007185
Michael Chan1fa72e22016-04-25 02:30:49 -04007186 if (!(bp->flags & BNXT_FLAG_USING_MSIX) && BNXT_PF(bp)) {
Michael Chanc0c050c2015-10-22 16:01:17 -04007187 /* fallback to INTA */
Michael Chan78095922016-12-07 00:26:16 -05007188 rc = bnxt_init_inta(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04007189 }
7190 return rc;
7191}
7192
Michael Chan78095922016-12-07 00:26:16 -05007193static void bnxt_clear_int_mode(struct bnxt *bp)
7194{
7195 if (bp->flags & BNXT_FLAG_USING_MSIX)
7196 pci_disable_msix(bp->pdev);
7197
7198 kfree(bp->irq_tbl);
7199 bp->irq_tbl = NULL;
7200 bp->flags &= ~BNXT_FLAG_USING_MSIX;
7201}
7202
Michael Chanfbcfc8e2018-03-31 13:54:20 -04007203int bnxt_reserve_rings(struct bnxt *bp)
Michael Chan674f50a2018-01-17 03:21:09 -05007204{
Michael Chan674f50a2018-01-17 03:21:09 -05007205 int tcs = netdev_get_num_tc(bp->dev);
7206 int rc;
7207
7208 if (!bnxt_need_reserve_rings(bp))
7209 return 0;
7210
7211 rc = __bnxt_reserve_rings(bp);
7212 if (rc) {
7213 netdev_err(bp->dev, "ring reservation failure rc: %d\n", rc);
7214 return rc;
7215 }
Michael Chanf1ca94d2018-08-05 16:51:53 -04007216 if (BNXT_NEW_RM(bp) && (bnxt_get_num_msix(bp) != bp->total_irqs)) {
Michael Chanec86f142018-03-31 13:54:21 -04007217 bnxt_ulp_irq_stop(bp);
Michael Chan674f50a2018-01-17 03:21:09 -05007218 bnxt_clear_int_mode(bp);
7219 rc = bnxt_init_int_mode(bp);
Michael Chanec86f142018-03-31 13:54:21 -04007220 bnxt_ulp_irq_restart(bp, rc);
Michael Chan674f50a2018-01-17 03:21:09 -05007221 if (rc)
7222 return rc;
7223 }
7224 if (tcs && (bp->tx_nr_rings_per_tc * tcs != bp->tx_nr_rings)) {
7225 netdev_err(bp->dev, "tx ring reservation failure\n");
7226 netdev_reset_tc(bp->dev);
7227 bp->tx_nr_rings_per_tc = bp->tx_nr_rings;
7228 return -ENOMEM;
7229 }
7230 bp->num_stat_ctxs = bp->cp_nr_rings;
7231 return 0;
7232}
7233
Michael Chanc0c050c2015-10-22 16:01:17 -04007234static void bnxt_free_irq(struct bnxt *bp)
7235{
7236 struct bnxt_irq *irq;
7237 int i;
7238
7239#ifdef CONFIG_RFS_ACCEL
7240 free_irq_cpu_rmap(bp->dev->rx_cpu_rmap);
7241 bp->dev->rx_cpu_rmap = NULL;
7242#endif
Michael Chancb985262018-04-11 11:50:18 -04007243 if (!bp->irq_tbl || !bp->bnapi)
Michael Chanc0c050c2015-10-22 16:01:17 -04007244 return;
7245
7246 for (i = 0; i < bp->cp_nr_rings; i++) {
Michael Chane5811b82018-03-31 13:54:18 -04007247 int map_idx = bnxt_cp_num_to_irq_num(bp, i);
7248
7249 irq = &bp->irq_tbl[map_idx];
Vasundhara Volam56f0fd82017-08-28 13:40:27 -04007250 if (irq->requested) {
7251 if (irq->have_cpumask) {
7252 irq_set_affinity_hint(irq->vector, NULL);
7253 free_cpumask_var(irq->cpu_mask);
7254 irq->have_cpumask = 0;
7255 }
Michael Chanc0c050c2015-10-22 16:01:17 -04007256 free_irq(irq->vector, bp->bnapi[i]);
Vasundhara Volam56f0fd82017-08-28 13:40:27 -04007257 }
7258
Michael Chanc0c050c2015-10-22 16:01:17 -04007259 irq->requested = 0;
7260 }
Michael Chanc0c050c2015-10-22 16:01:17 -04007261}
7262
7263static int bnxt_request_irq(struct bnxt *bp)
7264{
Michael Chanb81a90d2016-01-02 23:45:01 -05007265 int i, j, rc = 0;
Michael Chanc0c050c2015-10-22 16:01:17 -04007266 unsigned long flags = 0;
7267#ifdef CONFIG_RFS_ACCEL
Michael Chane5811b82018-03-31 13:54:18 -04007268 struct cpu_rmap *rmap;
Michael Chanc0c050c2015-10-22 16:01:17 -04007269#endif
7270
Michael Chane5811b82018-03-31 13:54:18 -04007271 rc = bnxt_setup_int_mode(bp);
7272 if (rc) {
7273 netdev_err(bp->dev, "bnxt_setup_int_mode err: %x\n",
7274 rc);
7275 return rc;
7276 }
7277#ifdef CONFIG_RFS_ACCEL
7278 rmap = bp->dev->rx_cpu_rmap;
7279#endif
Michael Chanc0c050c2015-10-22 16:01:17 -04007280 if (!(bp->flags & BNXT_FLAG_USING_MSIX))
7281 flags = IRQF_SHARED;
7282
Michael Chanb81a90d2016-01-02 23:45:01 -05007283 for (i = 0, j = 0; i < bp->cp_nr_rings; i++) {
Michael Chane5811b82018-03-31 13:54:18 -04007284 int map_idx = bnxt_cp_num_to_irq_num(bp, i);
7285 struct bnxt_irq *irq = &bp->irq_tbl[map_idx];
7286
Michael Chanc0c050c2015-10-22 16:01:17 -04007287#ifdef CONFIG_RFS_ACCEL
Michael Chanb81a90d2016-01-02 23:45:01 -05007288 if (rmap && bp->bnapi[i]->rx_ring) {
Michael Chanc0c050c2015-10-22 16:01:17 -04007289 rc = irq_cpu_rmap_add(rmap, irq->vector);
7290 if (rc)
7291 netdev_warn(bp->dev, "failed adding irq rmap for ring %d\n",
Michael Chanb81a90d2016-01-02 23:45:01 -05007292 j);
7293 j++;
Michael Chanc0c050c2015-10-22 16:01:17 -04007294 }
7295#endif
7296 rc = request_irq(irq->vector, irq->handler, flags, irq->name,
7297 bp->bnapi[i]);
7298 if (rc)
7299 break;
7300
7301 irq->requested = 1;
Vasundhara Volam56f0fd82017-08-28 13:40:27 -04007302
7303 if (zalloc_cpumask_var(&irq->cpu_mask, GFP_KERNEL)) {
7304 int numa_node = dev_to_node(&bp->pdev->dev);
7305
7306 irq->have_cpumask = 1;
7307 cpumask_set_cpu(cpumask_local_spread(i, numa_node),
7308 irq->cpu_mask);
7309 rc = irq_set_affinity_hint(irq->vector, irq->cpu_mask);
7310 if (rc) {
7311 netdev_warn(bp->dev,
7312 "Set affinity failed, IRQ = %d\n",
7313 irq->vector);
7314 break;
7315 }
7316 }
Michael Chanc0c050c2015-10-22 16:01:17 -04007317 }
7318 return rc;
7319}
7320
7321static void bnxt_del_napi(struct bnxt *bp)
7322{
7323 int i;
7324
7325 if (!bp->bnapi)
7326 return;
7327
7328 for (i = 0; i < bp->cp_nr_rings; i++) {
7329 struct bnxt_napi *bnapi = bp->bnapi[i];
7330
7331 napi_hash_del(&bnapi->napi);
7332 netif_napi_del(&bnapi->napi);
7333 }
Eric Dumazete5f6f562016-11-16 06:31:52 -08007334 /* We called napi_hash_del() before netif_napi_del(), we need
7335 * to respect an RCU grace period before freeing napi structures.
7336 */
7337 synchronize_net();
Michael Chanc0c050c2015-10-22 16:01:17 -04007338}
7339
7340static void bnxt_init_napi(struct bnxt *bp)
7341{
7342 int i;
Prashant Sreedharan10bbdaf2016-07-18 07:15:23 -04007343 unsigned int cp_nr_rings = bp->cp_nr_rings;
Michael Chanc0c050c2015-10-22 16:01:17 -04007344 struct bnxt_napi *bnapi;
7345
7346 if (bp->flags & BNXT_FLAG_USING_MSIX) {
Michael Chan0fcec982018-10-14 07:02:58 -04007347 int (*poll_fn)(struct napi_struct *, int) = bnxt_poll;
7348
7349 if (bp->flags & BNXT_FLAG_CHIP_P5)
7350 poll_fn = bnxt_poll_p5;
7351 else if (BNXT_CHIP_TYPE_NITRO_A0(bp))
Prashant Sreedharan10bbdaf2016-07-18 07:15:23 -04007352 cp_nr_rings--;
7353 for (i = 0; i < cp_nr_rings; i++) {
Michael Chanc0c050c2015-10-22 16:01:17 -04007354 bnapi = bp->bnapi[i];
Michael Chan0fcec982018-10-14 07:02:58 -04007355 netif_napi_add(bp->dev, &bnapi->napi, poll_fn, 64);
Michael Chanc0c050c2015-10-22 16:01:17 -04007356 }
Prashant Sreedharan10bbdaf2016-07-18 07:15:23 -04007357 if (BNXT_CHIP_TYPE_NITRO_A0(bp)) {
7358 bnapi = bp->bnapi[cp_nr_rings];
7359 netif_napi_add(bp->dev, &bnapi->napi,
7360 bnxt_poll_nitroa0, 64);
Prashant Sreedharan10bbdaf2016-07-18 07:15:23 -04007361 }
Michael Chanc0c050c2015-10-22 16:01:17 -04007362 } else {
7363 bnapi = bp->bnapi[0];
7364 netif_napi_add(bp->dev, &bnapi->napi, bnxt_poll, 64);
Michael Chanc0c050c2015-10-22 16:01:17 -04007365 }
7366}
7367
7368static void bnxt_disable_napi(struct bnxt *bp)
7369{
7370 int i;
7371
7372 if (!bp->bnapi)
7373 return;
7374
Andy Gospodarek0bc0b972018-01-26 10:27:47 -05007375 for (i = 0; i < bp->cp_nr_rings; i++) {
7376 struct bnxt_cp_ring_info *cpr = &bp->bnapi[i]->cp_ring;
7377
7378 if (bp->bnapi[i]->rx_ring)
7379 cancel_work_sync(&cpr->dim.work);
7380
Michael Chanc0c050c2015-10-22 16:01:17 -04007381 napi_disable(&bp->bnapi[i]->napi);
Andy Gospodarek0bc0b972018-01-26 10:27:47 -05007382 }
Michael Chanc0c050c2015-10-22 16:01:17 -04007383}
7384
7385static void bnxt_enable_napi(struct bnxt *bp)
7386{
7387 int i;
7388
7389 for (i = 0; i < bp->cp_nr_rings; i++) {
Andy Gospodarek6a8788f2018-01-09 16:06:20 -05007390 struct bnxt_cp_ring_info *cpr = &bp->bnapi[i]->cp_ring;
Michael Chanfa7e2812016-05-10 19:18:00 -04007391 bp->bnapi[i]->in_reset = false;
Andy Gospodarek6a8788f2018-01-09 16:06:20 -05007392
7393 if (bp->bnapi[i]->rx_ring) {
7394 INIT_WORK(&cpr->dim.work, bnxt_dim_work);
7395 cpr->dim.mode = NET_DIM_CQ_PERIOD_MODE_START_FROM_EQE;
7396 }
Michael Chanc0c050c2015-10-22 16:01:17 -04007397 napi_enable(&bp->bnapi[i]->napi);
7398 }
7399}
7400
Michael Chan7df4ae92016-12-02 21:17:17 -05007401void bnxt_tx_disable(struct bnxt *bp)
Michael Chanc0c050c2015-10-22 16:01:17 -04007402{
7403 int i;
Michael Chanc0c050c2015-10-22 16:01:17 -04007404 struct bnxt_tx_ring_info *txr;
Michael Chanc0c050c2015-10-22 16:01:17 -04007405
Michael Chanb6ab4b02016-01-02 23:44:59 -05007406 if (bp->tx_ring) {
Michael Chanc0c050c2015-10-22 16:01:17 -04007407 for (i = 0; i < bp->tx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05007408 txr = &bp->tx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04007409 txr->dev_state = BNXT_DEV_STATE_CLOSING;
Michael Chanc0c050c2015-10-22 16:01:17 -04007410 }
7411 }
7412 /* Stop all TX queues */
7413 netif_tx_disable(bp->dev);
7414 netif_carrier_off(bp->dev);
7415}
7416
Michael Chan7df4ae92016-12-02 21:17:17 -05007417void bnxt_tx_enable(struct bnxt *bp)
Michael Chanc0c050c2015-10-22 16:01:17 -04007418{
7419 int i;
Michael Chanc0c050c2015-10-22 16:01:17 -04007420 struct bnxt_tx_ring_info *txr;
Michael Chanc0c050c2015-10-22 16:01:17 -04007421
7422 for (i = 0; i < bp->tx_nr_rings; i++) {
Michael Chanb6ab4b02016-01-02 23:44:59 -05007423 txr = &bp->tx_ring[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04007424 txr->dev_state = 0;
7425 }
7426 netif_tx_wake_all_queues(bp->dev);
7427 if (bp->link_info.link_up)
7428 netif_carrier_on(bp->dev);
7429}
7430
7431static void bnxt_report_link(struct bnxt *bp)
7432{
7433 if (bp->link_info.link_up) {
7434 const char *duplex;
7435 const char *flow_ctrl;
Deepak Khungar38a21b32017-04-21 20:11:24 -04007436 u32 speed;
7437 u16 fec;
Michael Chanc0c050c2015-10-22 16:01:17 -04007438
7439 netif_carrier_on(bp->dev);
7440 if (bp->link_info.duplex == BNXT_LINK_DUPLEX_FULL)
7441 duplex = "full";
7442 else
7443 duplex = "half";
7444 if (bp->link_info.pause == BNXT_LINK_PAUSE_BOTH)
7445 flow_ctrl = "ON - receive & transmit";
7446 else if (bp->link_info.pause == BNXT_LINK_PAUSE_TX)
7447 flow_ctrl = "ON - transmit";
7448 else if (bp->link_info.pause == BNXT_LINK_PAUSE_RX)
7449 flow_ctrl = "ON - receive";
7450 else
7451 flow_ctrl = "none";
7452 speed = bnxt_fw_to_ethtool_speed(bp->link_info.link_speed);
Deepak Khungar38a21b32017-04-21 20:11:24 -04007453 netdev_info(bp->dev, "NIC Link is Up, %u Mbps %s duplex, Flow control: %s\n",
Michael Chanc0c050c2015-10-22 16:01:17 -04007454 speed, duplex, flow_ctrl);
Michael Chan170ce012016-04-05 14:08:57 -04007455 if (bp->flags & BNXT_FLAG_EEE_CAP)
7456 netdev_info(bp->dev, "EEE is %s\n",
7457 bp->eee.eee_active ? "active" :
7458 "not active");
Michael Chane70c7522017-02-12 19:18:16 -05007459 fec = bp->link_info.fec_cfg;
7460 if (!(fec & PORT_PHY_QCFG_RESP_FEC_CFG_FEC_NONE_SUPPORTED))
7461 netdev_info(bp->dev, "FEC autoneg %s encodings: %s\n",
7462 (fec & BNXT_FEC_AUTONEG) ? "on" : "off",
7463 (fec & BNXT_FEC_ENC_BASE_R) ? "BaseR" :
7464 (fec & BNXT_FEC_ENC_RS) ? "RS" : "None");
Michael Chanc0c050c2015-10-22 16:01:17 -04007465 } else {
7466 netif_carrier_off(bp->dev);
7467 netdev_err(bp->dev, "NIC Link is Down\n");
7468 }
7469}
7470
Michael Chan170ce012016-04-05 14:08:57 -04007471static int bnxt_hwrm_phy_qcaps(struct bnxt *bp)
7472{
7473 int rc = 0;
7474 struct hwrm_port_phy_qcaps_input req = {0};
7475 struct hwrm_port_phy_qcaps_output *resp = bp->hwrm_cmd_resp_addr;
Michael Chan93ed8112016-06-13 02:25:37 -04007476 struct bnxt_link_info *link_info = &bp->link_info;
Michael Chan170ce012016-04-05 14:08:57 -04007477
7478 if (bp->hwrm_spec_code < 0x10201)
7479 return 0;
7480
7481 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_PHY_QCAPS, -1, -1);
7482
7483 mutex_lock(&bp->hwrm_cmd_lock);
7484 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
7485 if (rc)
7486 goto hwrm_phy_qcaps_exit;
7487
Michael Chanacb20052017-07-24 12:34:20 -04007488 if (resp->flags & PORT_PHY_QCAPS_RESP_FLAGS_EEE_SUPPORTED) {
Michael Chan170ce012016-04-05 14:08:57 -04007489 struct ethtool_eee *eee = &bp->eee;
7490 u16 fw_speeds = le16_to_cpu(resp->supported_speeds_eee_mode);
7491
7492 bp->flags |= BNXT_FLAG_EEE_CAP;
7493 eee->supported = _bnxt_fw_to_ethtool_adv_spds(fw_speeds, 0);
7494 bp->lpi_tmr_lo = le32_to_cpu(resp->tx_lpi_timer_low) &
7495 PORT_PHY_QCAPS_RESP_TX_LPI_TIMER_LOW_MASK;
7496 bp->lpi_tmr_hi = le32_to_cpu(resp->valid_tx_lpi_timer_high) &
7497 PORT_PHY_QCAPS_RESP_TX_LPI_TIMER_HIGH_MASK;
7498 }
Michael Chan55fd0cf2018-08-05 16:51:48 -04007499 if (resp->flags & PORT_PHY_QCAPS_RESP_FLAGS_EXTERNAL_LPBK_SUPPORTED) {
7500 if (bp->test_info)
7501 bp->test_info->flags |= BNXT_TEST_FL_EXT_LPBK;
7502 }
Michael Chan520ad892017-03-08 18:44:35 -05007503 if (resp->supported_speeds_auto_mode)
7504 link_info->support_auto_speeds =
7505 le16_to_cpu(resp->supported_speeds_auto_mode);
Michael Chan170ce012016-04-05 14:08:57 -04007506
Michael Chand5430d32017-08-28 13:40:31 -04007507 bp->port_count = resp->port_cnt;
7508
Michael Chan170ce012016-04-05 14:08:57 -04007509hwrm_phy_qcaps_exit:
7510 mutex_unlock(&bp->hwrm_cmd_lock);
7511 return rc;
7512}
7513
Michael Chanc0c050c2015-10-22 16:01:17 -04007514static int bnxt_update_link(struct bnxt *bp, bool chng_link_state)
7515{
7516 int rc = 0;
7517 struct bnxt_link_info *link_info = &bp->link_info;
7518 struct hwrm_port_phy_qcfg_input req = {0};
7519 struct hwrm_port_phy_qcfg_output *resp = bp->hwrm_cmd_resp_addr;
7520 u8 link_up = link_info->link_up;
Michael Chan286ef9d2016-11-16 21:13:08 -05007521 u16 diff;
Michael Chanc0c050c2015-10-22 16:01:17 -04007522
7523 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_PHY_QCFG, -1, -1);
7524
7525 mutex_lock(&bp->hwrm_cmd_lock);
7526 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
7527 if (rc) {
7528 mutex_unlock(&bp->hwrm_cmd_lock);
7529 return rc;
7530 }
7531
7532 memcpy(&link_info->phy_qcfg_resp, resp, sizeof(*resp));
7533 link_info->phy_link_status = resp->link;
Michael Chanacb20052017-07-24 12:34:20 -04007534 link_info->duplex = resp->duplex_cfg;
7535 if (bp->hwrm_spec_code >= 0x10800)
7536 link_info->duplex = resp->duplex_state;
Michael Chanc0c050c2015-10-22 16:01:17 -04007537 link_info->pause = resp->pause;
7538 link_info->auto_mode = resp->auto_mode;
7539 link_info->auto_pause_setting = resp->auto_pause;
Michael Chan32773602016-03-07 15:38:42 -05007540 link_info->lp_pause = resp->link_partner_adv_pause;
Michael Chanc0c050c2015-10-22 16:01:17 -04007541 link_info->force_pause_setting = resp->force_pause;
Michael Chanacb20052017-07-24 12:34:20 -04007542 link_info->duplex_setting = resp->duplex_cfg;
Michael Chanc0c050c2015-10-22 16:01:17 -04007543 if (link_info->phy_link_status == BNXT_LINK_LINK)
7544 link_info->link_speed = le16_to_cpu(resp->link_speed);
7545 else
7546 link_info->link_speed = 0;
7547 link_info->force_link_speed = le16_to_cpu(resp->force_link_speed);
Michael Chanc0c050c2015-10-22 16:01:17 -04007548 link_info->support_speeds = le16_to_cpu(resp->support_speeds);
7549 link_info->auto_link_speeds = le16_to_cpu(resp->auto_link_speed_mask);
Michael Chan32773602016-03-07 15:38:42 -05007550 link_info->lp_auto_link_speeds =
7551 le16_to_cpu(resp->link_partner_adv_speeds);
Michael Chanc0c050c2015-10-22 16:01:17 -04007552 link_info->preemphasis = le32_to_cpu(resp->preemphasis);
7553 link_info->phy_ver[0] = resp->phy_maj;
7554 link_info->phy_ver[1] = resp->phy_min;
7555 link_info->phy_ver[2] = resp->phy_bld;
7556 link_info->media_type = resp->media_type;
Michael Chan03efbec2016-04-11 04:11:11 -04007557 link_info->phy_type = resp->phy_type;
Michael Chan11f15ed2016-04-05 14:08:55 -04007558 link_info->transceiver = resp->xcvr_pkg_type;
Michael Chan170ce012016-04-05 14:08:57 -04007559 link_info->phy_addr = resp->eee_config_phy_addr &
7560 PORT_PHY_QCFG_RESP_PHY_ADDR_MASK;
Ajit Khaparde42ee18f2016-05-15 03:04:44 -04007561 link_info->module_status = resp->module_status;
Michael Chanc0c050c2015-10-22 16:01:17 -04007562
Michael Chan170ce012016-04-05 14:08:57 -04007563 if (bp->flags & BNXT_FLAG_EEE_CAP) {
7564 struct ethtool_eee *eee = &bp->eee;
7565 u16 fw_speeds;
7566
7567 eee->eee_active = 0;
7568 if (resp->eee_config_phy_addr &
7569 PORT_PHY_QCFG_RESP_EEE_CONFIG_EEE_ACTIVE) {
7570 eee->eee_active = 1;
7571 fw_speeds = le16_to_cpu(
7572 resp->link_partner_adv_eee_link_speed_mask);
7573 eee->lp_advertised =
7574 _bnxt_fw_to_ethtool_adv_spds(fw_speeds, 0);
7575 }
7576
7577 /* Pull initial EEE config */
7578 if (!chng_link_state) {
7579 if (resp->eee_config_phy_addr &
7580 PORT_PHY_QCFG_RESP_EEE_CONFIG_EEE_ENABLED)
7581 eee->eee_enabled = 1;
7582
7583 fw_speeds = le16_to_cpu(resp->adv_eee_link_speed_mask);
7584 eee->advertised =
7585 _bnxt_fw_to_ethtool_adv_spds(fw_speeds, 0);
7586
7587 if (resp->eee_config_phy_addr &
7588 PORT_PHY_QCFG_RESP_EEE_CONFIG_EEE_TX_LPI) {
7589 __le32 tmr;
7590
7591 eee->tx_lpi_enabled = 1;
7592 tmr = resp->xcvr_identifier_type_tx_lpi_timer;
7593 eee->tx_lpi_timer = le32_to_cpu(tmr) &
7594 PORT_PHY_QCFG_RESP_TX_LPI_TIMER_MASK;
7595 }
7596 }
7597 }
Michael Chane70c7522017-02-12 19:18:16 -05007598
7599 link_info->fec_cfg = PORT_PHY_QCFG_RESP_FEC_CFG_FEC_NONE_SUPPORTED;
7600 if (bp->hwrm_spec_code >= 0x10504)
7601 link_info->fec_cfg = le16_to_cpu(resp->fec_cfg);
7602
Michael Chanc0c050c2015-10-22 16:01:17 -04007603 /* TODO: need to add more logic to report VF link */
7604 if (chng_link_state) {
7605 if (link_info->phy_link_status == BNXT_LINK_LINK)
7606 link_info->link_up = 1;
7607 else
7608 link_info->link_up = 0;
7609 if (link_up != link_info->link_up)
7610 bnxt_report_link(bp);
7611 } else {
7612 /* alwasy link down if not require to update link state */
7613 link_info->link_up = 0;
7614 }
7615 mutex_unlock(&bp->hwrm_cmd_lock);
Michael Chan286ef9d2016-11-16 21:13:08 -05007616
Michael Chandac049072018-05-08 03:18:39 -04007617 if (!BNXT_SINGLE_PF(bp))
7618 return 0;
7619
Michael Chan286ef9d2016-11-16 21:13:08 -05007620 diff = link_info->support_auto_speeds ^ link_info->advertising;
7621 if ((link_info->support_auto_speeds | diff) !=
7622 link_info->support_auto_speeds) {
7623 /* An advertised speed is no longer supported, so we need to
Michael Chan0eaa24b2017-01-25 02:55:08 -05007624 * update the advertisement settings. Caller holds RTNL
7625 * so we can modify link settings.
Michael Chan286ef9d2016-11-16 21:13:08 -05007626 */
Michael Chan286ef9d2016-11-16 21:13:08 -05007627 link_info->advertising = link_info->support_auto_speeds;
Michael Chan0eaa24b2017-01-25 02:55:08 -05007628 if (link_info->autoneg & BNXT_AUTONEG_SPEED)
Michael Chan286ef9d2016-11-16 21:13:08 -05007629 bnxt_hwrm_set_link_setting(bp, true, false);
Michael Chan286ef9d2016-11-16 21:13:08 -05007630 }
Michael Chanc0c050c2015-10-22 16:01:17 -04007631 return 0;
7632}
7633
Michael Chan10289be2016-05-15 03:04:49 -04007634static void bnxt_get_port_module_status(struct bnxt *bp)
7635{
7636 struct bnxt_link_info *link_info = &bp->link_info;
7637 struct hwrm_port_phy_qcfg_output *resp = &link_info->phy_qcfg_resp;
7638 u8 module_status;
7639
7640 if (bnxt_update_link(bp, true))
7641 return;
7642
7643 module_status = link_info->module_status;
7644 switch (module_status) {
7645 case PORT_PHY_QCFG_RESP_MODULE_STATUS_DISABLETX:
7646 case PORT_PHY_QCFG_RESP_MODULE_STATUS_PWRDOWN:
7647 case PORT_PHY_QCFG_RESP_MODULE_STATUS_WARNINGMSG:
7648 netdev_warn(bp->dev, "Unqualified SFP+ module detected on port %d\n",
7649 bp->pf.port_id);
7650 if (bp->hwrm_spec_code >= 0x10201) {
7651 netdev_warn(bp->dev, "Module part number %s\n",
7652 resp->phy_vendor_partnumber);
7653 }
7654 if (module_status == PORT_PHY_QCFG_RESP_MODULE_STATUS_DISABLETX)
7655 netdev_warn(bp->dev, "TX is disabled\n");
7656 if (module_status == PORT_PHY_QCFG_RESP_MODULE_STATUS_PWRDOWN)
7657 netdev_warn(bp->dev, "SFP+ module is shutdown\n");
7658 }
7659}
7660
Michael Chanc0c050c2015-10-22 16:01:17 -04007661static void
7662bnxt_hwrm_set_pause_common(struct bnxt *bp, struct hwrm_port_phy_cfg_input *req)
7663{
7664 if (bp->link_info.autoneg & BNXT_AUTONEG_FLOW_CTRL) {
Michael Chanc9ee9512016-04-05 14:08:56 -04007665 if (bp->hwrm_spec_code >= 0x10201)
7666 req->auto_pause =
7667 PORT_PHY_CFG_REQ_AUTO_PAUSE_AUTONEG_PAUSE;
Michael Chanc0c050c2015-10-22 16:01:17 -04007668 if (bp->link_info.req_flow_ctrl & BNXT_LINK_PAUSE_RX)
7669 req->auto_pause |= PORT_PHY_CFG_REQ_AUTO_PAUSE_RX;
7670 if (bp->link_info.req_flow_ctrl & BNXT_LINK_PAUSE_TX)
Michael Chan49b5c7a2016-03-28 19:46:06 -04007671 req->auto_pause |= PORT_PHY_CFG_REQ_AUTO_PAUSE_TX;
Michael Chanc0c050c2015-10-22 16:01:17 -04007672 req->enables |=
7673 cpu_to_le32(PORT_PHY_CFG_REQ_ENABLES_AUTO_PAUSE);
7674 } else {
7675 if (bp->link_info.req_flow_ctrl & BNXT_LINK_PAUSE_RX)
7676 req->force_pause |= PORT_PHY_CFG_REQ_FORCE_PAUSE_RX;
7677 if (bp->link_info.req_flow_ctrl & BNXT_LINK_PAUSE_TX)
7678 req->force_pause |= PORT_PHY_CFG_REQ_FORCE_PAUSE_TX;
7679 req->enables |=
7680 cpu_to_le32(PORT_PHY_CFG_REQ_ENABLES_FORCE_PAUSE);
Michael Chanc9ee9512016-04-05 14:08:56 -04007681 if (bp->hwrm_spec_code >= 0x10201) {
7682 req->auto_pause = req->force_pause;
7683 req->enables |= cpu_to_le32(
7684 PORT_PHY_CFG_REQ_ENABLES_AUTO_PAUSE);
7685 }
Michael Chanc0c050c2015-10-22 16:01:17 -04007686 }
7687}
7688
7689static void bnxt_hwrm_set_link_common(struct bnxt *bp,
7690 struct hwrm_port_phy_cfg_input *req)
7691{
7692 u8 autoneg = bp->link_info.autoneg;
7693 u16 fw_link_speed = bp->link_info.req_link_speed;
Michael Chan68515a12016-12-29 12:13:34 -05007694 u16 advertising = bp->link_info.advertising;
Michael Chanc0c050c2015-10-22 16:01:17 -04007695
7696 if (autoneg & BNXT_AUTONEG_SPEED) {
7697 req->auto_mode |=
Michael Chan11f15ed2016-04-05 14:08:55 -04007698 PORT_PHY_CFG_REQ_AUTO_MODE_SPEED_MASK;
Michael Chanc0c050c2015-10-22 16:01:17 -04007699
7700 req->enables |= cpu_to_le32(
7701 PORT_PHY_CFG_REQ_ENABLES_AUTO_LINK_SPEED_MASK);
7702 req->auto_link_speed_mask = cpu_to_le16(advertising);
7703
7704 req->enables |= cpu_to_le32(PORT_PHY_CFG_REQ_ENABLES_AUTO_MODE);
7705 req->flags |=
7706 cpu_to_le32(PORT_PHY_CFG_REQ_FLAGS_RESTART_AUTONEG);
7707 } else {
7708 req->force_link_speed = cpu_to_le16(fw_link_speed);
7709 req->flags |= cpu_to_le32(PORT_PHY_CFG_REQ_FLAGS_FORCE);
7710 }
7711
Michael Chanc0c050c2015-10-22 16:01:17 -04007712 /* tell chimp that the setting takes effect immediately */
7713 req->flags |= cpu_to_le32(PORT_PHY_CFG_REQ_FLAGS_RESET_PHY);
7714}
7715
7716int bnxt_hwrm_set_pause(struct bnxt *bp)
7717{
7718 struct hwrm_port_phy_cfg_input req = {0};
7719 int rc;
7720
7721 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_PHY_CFG, -1, -1);
7722 bnxt_hwrm_set_pause_common(bp, &req);
7723
7724 if ((bp->link_info.autoneg & BNXT_AUTONEG_FLOW_CTRL) ||
7725 bp->link_info.force_link_chng)
7726 bnxt_hwrm_set_link_common(bp, &req);
7727
7728 mutex_lock(&bp->hwrm_cmd_lock);
7729 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
7730 if (!rc && !(bp->link_info.autoneg & BNXT_AUTONEG_FLOW_CTRL)) {
7731 /* since changing of pause setting doesn't trigger any link
7732 * change event, the driver needs to update the current pause
7733 * result upon successfully return of the phy_cfg command
7734 */
7735 bp->link_info.pause =
7736 bp->link_info.force_pause_setting = bp->link_info.req_flow_ctrl;
7737 bp->link_info.auto_pause_setting = 0;
7738 if (!bp->link_info.force_link_chng)
7739 bnxt_report_link(bp);
7740 }
7741 bp->link_info.force_link_chng = false;
7742 mutex_unlock(&bp->hwrm_cmd_lock);
7743 return rc;
7744}
7745
Michael Chan939f7f02016-04-05 14:08:58 -04007746static void bnxt_hwrm_set_eee(struct bnxt *bp,
7747 struct hwrm_port_phy_cfg_input *req)
7748{
7749 struct ethtool_eee *eee = &bp->eee;
7750
7751 if (eee->eee_enabled) {
7752 u16 eee_speeds;
7753 u32 flags = PORT_PHY_CFG_REQ_FLAGS_EEE_ENABLE;
7754
7755 if (eee->tx_lpi_enabled)
7756 flags |= PORT_PHY_CFG_REQ_FLAGS_EEE_TX_LPI_ENABLE;
7757 else
7758 flags |= PORT_PHY_CFG_REQ_FLAGS_EEE_TX_LPI_DISABLE;
7759
7760 req->flags |= cpu_to_le32(flags);
7761 eee_speeds = bnxt_get_fw_auto_link_speeds(eee->advertised);
7762 req->eee_link_speed_mask = cpu_to_le16(eee_speeds);
7763 req->tx_lpi_timer = cpu_to_le32(eee->tx_lpi_timer);
7764 } else {
7765 req->flags |= cpu_to_le32(PORT_PHY_CFG_REQ_FLAGS_EEE_DISABLE);
7766 }
7767}
7768
7769int bnxt_hwrm_set_link_setting(struct bnxt *bp, bool set_pause, bool set_eee)
Michael Chanc0c050c2015-10-22 16:01:17 -04007770{
7771 struct hwrm_port_phy_cfg_input req = {0};
7772
7773 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_PHY_CFG, -1, -1);
7774 if (set_pause)
7775 bnxt_hwrm_set_pause_common(bp, &req);
7776
7777 bnxt_hwrm_set_link_common(bp, &req);
Michael Chan939f7f02016-04-05 14:08:58 -04007778
7779 if (set_eee)
7780 bnxt_hwrm_set_eee(bp, &req);
Michael Chanc0c050c2015-10-22 16:01:17 -04007781 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
7782}
7783
Michael Chan33f7d552016-04-11 04:11:12 -04007784static int bnxt_hwrm_shutdown_link(struct bnxt *bp)
7785{
7786 struct hwrm_port_phy_cfg_input req = {0};
7787
Satish Baddipadige567b2ab2016-06-13 02:25:31 -04007788 if (!BNXT_SINGLE_PF(bp))
Michael Chan33f7d552016-04-11 04:11:12 -04007789 return 0;
7790
7791 if (pci_num_vf(bp->pdev))
7792 return 0;
7793
7794 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_PHY_CFG, -1, -1);
Michael Chan16d663a2016-11-16 21:13:07 -05007795 req.flags = cpu_to_le32(PORT_PHY_CFG_REQ_FLAGS_FORCE_LINK_DWN);
Michael Chan33f7d552016-04-11 04:11:12 -04007796 return hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
7797}
7798
Michael Chan25e1acd2018-08-05 16:51:55 -04007799static int bnxt_hwrm_if_change(struct bnxt *bp, bool up)
7800{
7801 struct hwrm_func_drv_if_change_output *resp = bp->hwrm_cmd_resp_addr;
7802 struct hwrm_func_drv_if_change_input req = {0};
7803 bool resc_reinit = false;
7804 int rc;
7805
7806 if (!(bp->fw_cap & BNXT_FW_CAP_IF_CHANGE))
7807 return 0;
7808
7809 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_FUNC_DRV_IF_CHANGE, -1, -1);
7810 if (up)
7811 req.flags = cpu_to_le32(FUNC_DRV_IF_CHANGE_REQ_FLAGS_UP);
7812 mutex_lock(&bp->hwrm_cmd_lock);
7813 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
7814 if (!rc && (resp->flags &
7815 cpu_to_le32(FUNC_DRV_IF_CHANGE_RESP_FLAGS_RESC_CHANGE)))
7816 resc_reinit = true;
7817 mutex_unlock(&bp->hwrm_cmd_lock);
7818
7819 if (up && resc_reinit && BNXT_NEW_RM(bp)) {
7820 struct bnxt_hw_resc *hw_resc = &bp->hw_resc;
7821
7822 rc = bnxt_hwrm_func_resc_qcaps(bp, true);
7823 hw_resc->resv_cp_rings = 0;
Michael Chan75720e62018-12-09 07:01:00 -05007824 hw_resc->resv_irqs = 0;
Michael Chan25e1acd2018-08-05 16:51:55 -04007825 hw_resc->resv_tx_rings = 0;
7826 hw_resc->resv_rx_rings = 0;
7827 hw_resc->resv_hw_ring_grps = 0;
7828 hw_resc->resv_vnics = 0;
Michael Chan6b95c3e2018-09-03 04:23:17 -04007829 bp->tx_nr_rings = 0;
7830 bp->rx_nr_rings = 0;
Michael Chan25e1acd2018-08-05 16:51:55 -04007831 }
7832 return rc;
7833}
7834
Michael Chan5ad2cbe2017-01-13 01:32:03 -05007835static int bnxt_hwrm_port_led_qcaps(struct bnxt *bp)
7836{
7837 struct hwrm_port_led_qcaps_output *resp = bp->hwrm_cmd_resp_addr;
7838 struct hwrm_port_led_qcaps_input req = {0};
7839 struct bnxt_pf_info *pf = &bp->pf;
7840 int rc;
7841
7842 if (BNXT_VF(bp) || bp->hwrm_spec_code < 0x10601)
7843 return 0;
7844
7845 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_PORT_LED_QCAPS, -1, -1);
7846 req.port_id = cpu_to_le16(pf->port_id);
7847 mutex_lock(&bp->hwrm_cmd_lock);
7848 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
7849 if (rc) {
7850 mutex_unlock(&bp->hwrm_cmd_lock);
7851 return rc;
7852 }
7853 if (resp->num_leds > 0 && resp->num_leds < BNXT_MAX_LED) {
7854 int i;
7855
7856 bp->num_leds = resp->num_leds;
7857 memcpy(bp->leds, &resp->led0_id, sizeof(bp->leds[0]) *
7858 bp->num_leds);
7859 for (i = 0; i < bp->num_leds; i++) {
7860 struct bnxt_led_info *led = &bp->leds[i];
7861 __le16 caps = led->led_state_caps;
7862
7863 if (!led->led_group_id ||
7864 !BNXT_LED_ALT_BLINK_CAP(caps)) {
7865 bp->num_leds = 0;
7866 break;
7867 }
7868 }
7869 }
7870 mutex_unlock(&bp->hwrm_cmd_lock);
7871 return 0;
7872}
7873
Michael Chan5282db62017-04-04 18:14:10 -04007874int bnxt_hwrm_alloc_wol_fltr(struct bnxt *bp)
7875{
7876 struct hwrm_wol_filter_alloc_input req = {0};
7877 struct hwrm_wol_filter_alloc_output *resp = bp->hwrm_cmd_resp_addr;
7878 int rc;
7879
7880 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_WOL_FILTER_ALLOC, -1, -1);
7881 req.port_id = cpu_to_le16(bp->pf.port_id);
7882 req.wol_type = WOL_FILTER_ALLOC_REQ_WOL_TYPE_MAGICPKT;
7883 req.enables = cpu_to_le32(WOL_FILTER_ALLOC_REQ_ENABLES_MAC_ADDRESS);
7884 memcpy(req.mac_address, bp->dev->dev_addr, ETH_ALEN);
7885 mutex_lock(&bp->hwrm_cmd_lock);
7886 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
7887 if (!rc)
7888 bp->wol_filter_id = resp->wol_filter_id;
7889 mutex_unlock(&bp->hwrm_cmd_lock);
7890 return rc;
7891}
7892
7893int bnxt_hwrm_free_wol_fltr(struct bnxt *bp)
7894{
7895 struct hwrm_wol_filter_free_input req = {0};
7896 int rc;
7897
7898 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_WOL_FILTER_FREE, -1, -1);
7899 req.port_id = cpu_to_le16(bp->pf.port_id);
7900 req.enables = cpu_to_le32(WOL_FILTER_FREE_REQ_ENABLES_WOL_FILTER_ID);
7901 req.wol_filter_id = bp->wol_filter_id;
7902 rc = hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
7903 return rc;
7904}
7905
Michael Chanc1ef1462017-04-04 18:14:07 -04007906static u16 bnxt_hwrm_get_wol_fltrs(struct bnxt *bp, u16 handle)
7907{
7908 struct hwrm_wol_filter_qcfg_input req = {0};
7909 struct hwrm_wol_filter_qcfg_output *resp = bp->hwrm_cmd_resp_addr;
7910 u16 next_handle = 0;
7911 int rc;
7912
7913 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_WOL_FILTER_QCFG, -1, -1);
7914 req.port_id = cpu_to_le16(bp->pf.port_id);
7915 req.handle = cpu_to_le16(handle);
7916 mutex_lock(&bp->hwrm_cmd_lock);
7917 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
7918 if (!rc) {
7919 next_handle = le16_to_cpu(resp->next_handle);
7920 if (next_handle != 0) {
7921 if (resp->wol_type ==
7922 WOL_FILTER_ALLOC_REQ_WOL_TYPE_MAGICPKT) {
7923 bp->wol = 1;
7924 bp->wol_filter_id = resp->wol_filter_id;
7925 }
7926 }
7927 }
7928 mutex_unlock(&bp->hwrm_cmd_lock);
7929 return next_handle;
7930}
7931
7932static void bnxt_get_wol_settings(struct bnxt *bp)
7933{
7934 u16 handle = 0;
7935
7936 if (!BNXT_PF(bp) || !(bp->flags & BNXT_FLAG_WOL_CAP))
7937 return;
7938
7939 do {
7940 handle = bnxt_hwrm_get_wol_fltrs(bp, handle);
7941 } while (handle && handle != 0xffff);
7942}
7943
Vasundhara Volamcde49a42018-08-05 16:51:56 -04007944#ifdef CONFIG_BNXT_HWMON
7945static ssize_t bnxt_show_temp(struct device *dev,
7946 struct device_attribute *devattr, char *buf)
7947{
7948 struct hwrm_temp_monitor_query_input req = {0};
7949 struct hwrm_temp_monitor_query_output *resp;
7950 struct bnxt *bp = dev_get_drvdata(dev);
7951 u32 temp = 0;
7952
7953 resp = bp->hwrm_cmd_resp_addr;
7954 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_TEMP_MONITOR_QUERY, -1, -1);
7955 mutex_lock(&bp->hwrm_cmd_lock);
7956 if (!_hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT))
7957 temp = resp->temp * 1000; /* display millidegree */
7958 mutex_unlock(&bp->hwrm_cmd_lock);
7959
7960 return sprintf(buf, "%u\n", temp);
7961}
7962static SENSOR_DEVICE_ATTR(temp1_input, 0444, bnxt_show_temp, NULL, 0);
7963
7964static struct attribute *bnxt_attrs[] = {
7965 &sensor_dev_attr_temp1_input.dev_attr.attr,
7966 NULL
7967};
7968ATTRIBUTE_GROUPS(bnxt);
7969
7970static void bnxt_hwmon_close(struct bnxt *bp)
7971{
7972 if (bp->hwmon_dev) {
7973 hwmon_device_unregister(bp->hwmon_dev);
7974 bp->hwmon_dev = NULL;
7975 }
7976}
7977
7978static void bnxt_hwmon_open(struct bnxt *bp)
7979{
7980 struct pci_dev *pdev = bp->pdev;
7981
7982 bp->hwmon_dev = hwmon_device_register_with_groups(&pdev->dev,
7983 DRV_MODULE_NAME, bp,
7984 bnxt_groups);
7985 if (IS_ERR(bp->hwmon_dev)) {
7986 bp->hwmon_dev = NULL;
7987 dev_warn(&pdev->dev, "Cannot register hwmon device\n");
7988 }
7989}
7990#else
7991static void bnxt_hwmon_close(struct bnxt *bp)
7992{
7993}
7994
7995static void bnxt_hwmon_open(struct bnxt *bp)
7996{
7997}
7998#endif
7999
Michael Chan939f7f02016-04-05 14:08:58 -04008000static bool bnxt_eee_config_ok(struct bnxt *bp)
8001{
8002 struct ethtool_eee *eee = &bp->eee;
8003 struct bnxt_link_info *link_info = &bp->link_info;
8004
8005 if (!(bp->flags & BNXT_FLAG_EEE_CAP))
8006 return true;
8007
8008 if (eee->eee_enabled) {
8009 u32 advertising =
8010 _bnxt_fw_to_ethtool_adv_spds(link_info->advertising, 0);
8011
8012 if (!(link_info->autoneg & BNXT_AUTONEG_SPEED)) {
8013 eee->eee_enabled = 0;
8014 return false;
8015 }
8016 if (eee->advertised & ~advertising) {
8017 eee->advertised = advertising & eee->supported;
8018 return false;
8019 }
8020 }
8021 return true;
8022}
8023
Michael Chanc0c050c2015-10-22 16:01:17 -04008024static int bnxt_update_phy_setting(struct bnxt *bp)
8025{
8026 int rc;
8027 bool update_link = false;
8028 bool update_pause = false;
Michael Chan939f7f02016-04-05 14:08:58 -04008029 bool update_eee = false;
Michael Chanc0c050c2015-10-22 16:01:17 -04008030 struct bnxt_link_info *link_info = &bp->link_info;
8031
8032 rc = bnxt_update_link(bp, true);
8033 if (rc) {
8034 netdev_err(bp->dev, "failed to update link (rc: %x)\n",
8035 rc);
8036 return rc;
8037 }
Michael Chan33dac242017-02-12 19:18:15 -05008038 if (!BNXT_SINGLE_PF(bp))
8039 return 0;
8040
Michael Chanc0c050c2015-10-22 16:01:17 -04008041 if ((link_info->autoneg & BNXT_AUTONEG_FLOW_CTRL) &&
Michael Chanc9ee9512016-04-05 14:08:56 -04008042 (link_info->auto_pause_setting & BNXT_LINK_PAUSE_BOTH) !=
8043 link_info->req_flow_ctrl)
Michael Chanc0c050c2015-10-22 16:01:17 -04008044 update_pause = true;
8045 if (!(link_info->autoneg & BNXT_AUTONEG_FLOW_CTRL) &&
8046 link_info->force_pause_setting != link_info->req_flow_ctrl)
8047 update_pause = true;
Michael Chanc0c050c2015-10-22 16:01:17 -04008048 if (!(link_info->autoneg & BNXT_AUTONEG_SPEED)) {
8049 if (BNXT_AUTO_MODE(link_info->auto_mode))
8050 update_link = true;
8051 if (link_info->req_link_speed != link_info->force_link_speed)
8052 update_link = true;
Michael Chande730182016-02-19 19:43:20 -05008053 if (link_info->req_duplex != link_info->duplex_setting)
8054 update_link = true;
Michael Chanc0c050c2015-10-22 16:01:17 -04008055 } else {
8056 if (link_info->auto_mode == BNXT_LINK_AUTO_NONE)
8057 update_link = true;
8058 if (link_info->advertising != link_info->auto_link_speeds)
8059 update_link = true;
Michael Chanc0c050c2015-10-22 16:01:17 -04008060 }
8061
Michael Chan16d663a2016-11-16 21:13:07 -05008062 /* The last close may have shutdown the link, so need to call
8063 * PHY_CFG to bring it back up.
8064 */
8065 if (!netif_carrier_ok(bp->dev))
8066 update_link = true;
8067
Michael Chan939f7f02016-04-05 14:08:58 -04008068 if (!bnxt_eee_config_ok(bp))
8069 update_eee = true;
8070
Michael Chanc0c050c2015-10-22 16:01:17 -04008071 if (update_link)
Michael Chan939f7f02016-04-05 14:08:58 -04008072 rc = bnxt_hwrm_set_link_setting(bp, update_pause, update_eee);
Michael Chanc0c050c2015-10-22 16:01:17 -04008073 else if (update_pause)
8074 rc = bnxt_hwrm_set_pause(bp);
8075 if (rc) {
8076 netdev_err(bp->dev, "failed to update phy setting (rc: %x)\n",
8077 rc);
8078 return rc;
8079 }
8080
8081 return rc;
8082}
8083
Jeffrey Huang11809492015-11-05 16:25:49 -05008084/* Common routine to pre-map certain register block to different GRC window.
8085 * A PF has 16 4K windows and a VF has 4 4K windows. However, only 15 windows
8086 * in PF and 3 windows in VF that can be customized to map in different
8087 * register blocks.
8088 */
8089static void bnxt_preset_reg_win(struct bnxt *bp)
8090{
8091 if (BNXT_PF(bp)) {
8092 /* CAG registers map to GRC window #4 */
8093 writel(BNXT_CAG_REG_BASE,
8094 bp->bar0 + BNXT_GRCPF_REG_WINDOW_BASE_OUT + 12);
8095 }
8096}
8097
Michael Chan47558ac2018-04-26 17:44:44 -04008098static int bnxt_init_dflt_ring_mode(struct bnxt *bp);
8099
Michael Chanc0c050c2015-10-22 16:01:17 -04008100static int __bnxt_open_nic(struct bnxt *bp, bool irq_re_init, bool link_re_init)
8101{
8102 int rc = 0;
8103
Jeffrey Huang11809492015-11-05 16:25:49 -05008104 bnxt_preset_reg_win(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04008105 netif_carrier_off(bp->dev);
8106 if (irq_re_init) {
Michael Chan47558ac2018-04-26 17:44:44 -04008107 /* Reserve rings now if none were reserved at driver probe. */
8108 rc = bnxt_init_dflt_ring_mode(bp);
8109 if (rc) {
8110 netdev_err(bp->dev, "Failed to reserve default rings at open\n");
8111 return rc;
8112 }
Michael Chanc0c050c2015-10-22 16:01:17 -04008113 }
Michael Chan41e8d792018-10-14 07:02:48 -04008114 rc = bnxt_reserve_rings(bp);
8115 if (rc)
8116 return rc;
Michael Chanc0c050c2015-10-22 16:01:17 -04008117 if ((bp->flags & BNXT_FLAG_RFS) &&
8118 !(bp->flags & BNXT_FLAG_USING_MSIX)) {
8119 /* disable RFS if falling back to INTA */
8120 bp->dev->hw_features &= ~NETIF_F_NTUPLE;
8121 bp->flags &= ~BNXT_FLAG_RFS;
8122 }
8123
8124 rc = bnxt_alloc_mem(bp, irq_re_init);
8125 if (rc) {
8126 netdev_err(bp->dev, "bnxt_alloc_mem err: %x\n", rc);
8127 goto open_err_free_mem;
8128 }
8129
8130 if (irq_re_init) {
8131 bnxt_init_napi(bp);
8132 rc = bnxt_request_irq(bp);
8133 if (rc) {
8134 netdev_err(bp->dev, "bnxt_request_irq err: %x\n", rc);
Vikas Guptac58387a2018-07-09 02:24:52 -04008135 goto open_err_irq;
Michael Chanc0c050c2015-10-22 16:01:17 -04008136 }
8137 }
8138
8139 bnxt_enable_napi(bp);
Andy Gospodarekcabfb092018-04-26 17:44:40 -04008140 bnxt_debug_dev_init(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04008141
8142 rc = bnxt_init_nic(bp, irq_re_init);
8143 if (rc) {
8144 netdev_err(bp->dev, "bnxt_init_nic err: %x\n", rc);
8145 goto open_err;
8146 }
8147
8148 if (link_re_init) {
Michael Chane2dc9b62017-10-13 21:09:30 -04008149 mutex_lock(&bp->link_lock);
Michael Chanc0c050c2015-10-22 16:01:17 -04008150 rc = bnxt_update_phy_setting(bp);
Michael Chane2dc9b62017-10-13 21:09:30 -04008151 mutex_unlock(&bp->link_lock);
Michael Chana1ef4a72018-08-05 16:51:49 -04008152 if (rc) {
Michael Chanba41d462016-02-19 19:43:21 -05008153 netdev_warn(bp->dev, "failed to update phy settings\n");
Michael Chana1ef4a72018-08-05 16:51:49 -04008154 if (BNXT_SINGLE_PF(bp)) {
8155 bp->link_info.phy_retry = true;
8156 bp->link_info.phy_retry_expires =
8157 jiffies + 5 * HZ;
8158 }
8159 }
Michael Chanc0c050c2015-10-22 16:01:17 -04008160 }
8161
Alexander Duyck7cdd5fc2016-06-16 12:21:36 -07008162 if (irq_re_init)
Alexander Duyckad51b8e2016-06-16 12:21:19 -07008163 udp_tunnel_get_rx_info(bp->dev);
Michael Chanc0c050c2015-10-22 16:01:17 -04008164
Michael Chancaefe522015-12-09 19:35:42 -05008165 set_bit(BNXT_STATE_OPEN, &bp->state);
Michael Chanc0c050c2015-10-22 16:01:17 -04008166 bnxt_enable_int(bp);
8167 /* Enable TX queues */
8168 bnxt_tx_enable(bp);
8169 mod_timer(&bp->timer, jiffies + bp->current_interval);
Michael Chan10289be2016-05-15 03:04:49 -04008170 /* Poll link status and check for SFP+ module status */
8171 bnxt_get_port_module_status(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04008172
Sathya Perlaee5c7fb2017-07-24 12:34:28 -04008173 /* VF-reps may need to be re-opened after the PF is re-opened */
8174 if (BNXT_PF(bp))
8175 bnxt_vf_reps_open(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04008176 return 0;
8177
8178open_err:
Andy Gospodarekcabfb092018-04-26 17:44:40 -04008179 bnxt_debug_dev_exit(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04008180 bnxt_disable_napi(bp);
Vikas Guptac58387a2018-07-09 02:24:52 -04008181
8182open_err_irq:
Michael Chanc0c050c2015-10-22 16:01:17 -04008183 bnxt_del_napi(bp);
8184
8185open_err_free_mem:
8186 bnxt_free_skbs(bp);
8187 bnxt_free_irq(bp);
8188 bnxt_free_mem(bp, true);
8189 return rc;
8190}
8191
8192/* rtnl_lock held */
8193int bnxt_open_nic(struct bnxt *bp, bool irq_re_init, bool link_re_init)
8194{
8195 int rc = 0;
8196
8197 rc = __bnxt_open_nic(bp, irq_re_init, link_re_init);
8198 if (rc) {
8199 netdev_err(bp->dev, "nic open fail (rc: %x)\n", rc);
8200 dev_close(bp->dev);
8201 }
8202 return rc;
8203}
8204
Michael Chanf7dc1ea2017-04-04 18:14:13 -04008205/* rtnl_lock held, open the NIC half way by allocating all resources, but
8206 * NAPI, IRQ, and TX are not enabled. This is mainly used for offline
8207 * self tests.
8208 */
8209int bnxt_half_open_nic(struct bnxt *bp)
8210{
8211 int rc = 0;
8212
8213 rc = bnxt_alloc_mem(bp, false);
8214 if (rc) {
8215 netdev_err(bp->dev, "bnxt_alloc_mem err: %x\n", rc);
8216 goto half_open_err;
8217 }
8218 rc = bnxt_init_nic(bp, false);
8219 if (rc) {
8220 netdev_err(bp->dev, "bnxt_init_nic err: %x\n", rc);
8221 goto half_open_err;
8222 }
8223 return 0;
8224
8225half_open_err:
8226 bnxt_free_skbs(bp);
8227 bnxt_free_mem(bp, false);
8228 dev_close(bp->dev);
8229 return rc;
8230}
8231
8232/* rtnl_lock held, this call can only be made after a previous successful
8233 * call to bnxt_half_open_nic().
8234 */
8235void bnxt_half_close_nic(struct bnxt *bp)
8236{
8237 bnxt_hwrm_resource_free(bp, false, false);
8238 bnxt_free_skbs(bp);
8239 bnxt_free_mem(bp, false);
8240}
8241
Michael Chanc0c050c2015-10-22 16:01:17 -04008242static int bnxt_open(struct net_device *dev)
8243{
8244 struct bnxt *bp = netdev_priv(dev);
Michael Chan25e1acd2018-08-05 16:51:55 -04008245 int rc;
Michael Chanc0c050c2015-10-22 16:01:17 -04008246
Michael Chan25e1acd2018-08-05 16:51:55 -04008247 bnxt_hwrm_if_change(bp, true);
8248 rc = __bnxt_open_nic(bp, true, true);
8249 if (rc)
8250 bnxt_hwrm_if_change(bp, false);
Vasundhara Volamcde49a42018-08-05 16:51:56 -04008251
8252 bnxt_hwmon_open(bp);
8253
Michael Chan25e1acd2018-08-05 16:51:55 -04008254 return rc;
Michael Chanc0c050c2015-10-22 16:01:17 -04008255}
8256
Michael Chanf9b76eb2017-07-11 13:05:34 -04008257static bool bnxt_drv_busy(struct bnxt *bp)
8258{
8259 return (test_bit(BNXT_STATE_IN_SP_TASK, &bp->state) ||
8260 test_bit(BNXT_STATE_READ_STATS, &bp->state));
8261}
8262
Michael Chan86e953d2018-01-17 03:21:04 -05008263static void __bnxt_close_nic(struct bnxt *bp, bool irq_re_init,
8264 bool link_re_init)
Michael Chanc0c050c2015-10-22 16:01:17 -04008265{
Sathya Perlaee5c7fb2017-07-24 12:34:28 -04008266 /* Close the VF-reps before closing PF */
8267 if (BNXT_PF(bp))
8268 bnxt_vf_reps_close(bp);
Michael Chan86e953d2018-01-17 03:21:04 -05008269
Michael Chanc0c050c2015-10-22 16:01:17 -04008270 /* Change device state to avoid TX queue wake up's */
8271 bnxt_tx_disable(bp);
8272
Michael Chancaefe522015-12-09 19:35:42 -05008273 clear_bit(BNXT_STATE_OPEN, &bp->state);
Michael Chan4cebdce2015-12-09 19:35:43 -05008274 smp_mb__after_atomic();
Michael Chanf9b76eb2017-07-11 13:05:34 -04008275 while (bnxt_drv_busy(bp))
Michael Chan4cebdce2015-12-09 19:35:43 -05008276 msleep(20);
Michael Chanc0c050c2015-10-22 16:01:17 -04008277
Michael Chan9d8bc092016-12-29 12:13:33 -05008278 /* Flush rings and and disable interrupts */
Michael Chanc0c050c2015-10-22 16:01:17 -04008279 bnxt_shutdown_nic(bp, irq_re_init);
8280
8281 /* TODO CHIMP_FW: Link/PHY related cleanup if (link_re_init) */
8282
Andy Gospodarekcabfb092018-04-26 17:44:40 -04008283 bnxt_debug_dev_exit(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04008284 bnxt_disable_napi(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04008285 del_timer_sync(&bp->timer);
8286 bnxt_free_skbs(bp);
8287
8288 if (irq_re_init) {
8289 bnxt_free_irq(bp);
8290 bnxt_del_napi(bp);
8291 }
8292 bnxt_free_mem(bp, irq_re_init);
Michael Chan86e953d2018-01-17 03:21:04 -05008293}
8294
8295int bnxt_close_nic(struct bnxt *bp, bool irq_re_init, bool link_re_init)
8296{
8297 int rc = 0;
8298
8299#ifdef CONFIG_BNXT_SRIOV
8300 if (bp->sriov_cfg) {
8301 rc = wait_event_interruptible_timeout(bp->sriov_cfg_wait,
8302 !bp->sriov_cfg,
8303 BNXT_SRIOV_CFG_WAIT_TMO);
8304 if (rc)
8305 netdev_warn(bp->dev, "timeout waiting for SRIOV config operation to complete!\n");
8306 }
8307#endif
8308 __bnxt_close_nic(bp, irq_re_init, link_re_init);
Michael Chanc0c050c2015-10-22 16:01:17 -04008309 return rc;
8310}
8311
8312static int bnxt_close(struct net_device *dev)
8313{
8314 struct bnxt *bp = netdev_priv(dev);
8315
Vasundhara Volamcde49a42018-08-05 16:51:56 -04008316 bnxt_hwmon_close(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04008317 bnxt_close_nic(bp, true, true);
Michael Chan33f7d552016-04-11 04:11:12 -04008318 bnxt_hwrm_shutdown_link(bp);
Michael Chan25e1acd2018-08-05 16:51:55 -04008319 bnxt_hwrm_if_change(bp, false);
Michael Chanc0c050c2015-10-22 16:01:17 -04008320 return 0;
8321}
8322
8323/* rtnl_lock held */
8324static int bnxt_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
8325{
8326 switch (cmd) {
8327 case SIOCGMIIPHY:
8328 /* fallthru */
8329 case SIOCGMIIREG: {
8330 if (!netif_running(dev))
8331 return -EAGAIN;
8332
8333 return 0;
8334 }
8335
8336 case SIOCSMIIREG:
8337 if (!netif_running(dev))
8338 return -EAGAIN;
8339
8340 return 0;
8341
8342 default:
8343 /* do nothing */
8344 break;
8345 }
8346 return -EOPNOTSUPP;
8347}
8348
stephen hemmingerbc1f4472017-01-06 19:12:52 -08008349static void
Michael Chanc0c050c2015-10-22 16:01:17 -04008350bnxt_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
8351{
8352 u32 i;
8353 struct bnxt *bp = netdev_priv(dev);
8354
Michael Chanf9b76eb2017-07-11 13:05:34 -04008355 set_bit(BNXT_STATE_READ_STATS, &bp->state);
8356 /* Make sure bnxt_close_nic() sees that we are reading stats before
8357 * we check the BNXT_STATE_OPEN flag.
8358 */
8359 smp_mb__after_atomic();
8360 if (!test_bit(BNXT_STATE_OPEN, &bp->state)) {
8361 clear_bit(BNXT_STATE_READ_STATS, &bp->state);
stephen hemmingerbc1f4472017-01-06 19:12:52 -08008362 return;
Michael Chanf9b76eb2017-07-11 13:05:34 -04008363 }
Michael Chanc0c050c2015-10-22 16:01:17 -04008364
8365 /* TODO check if we need to synchronize with bnxt_close path */
8366 for (i = 0; i < bp->cp_nr_rings; i++) {
8367 struct bnxt_napi *bnapi = bp->bnapi[i];
8368 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
8369 struct ctx_hw_stats *hw_stats = cpr->hw_stats;
8370
8371 stats->rx_packets += le64_to_cpu(hw_stats->rx_ucast_pkts);
8372 stats->rx_packets += le64_to_cpu(hw_stats->rx_mcast_pkts);
8373 stats->rx_packets += le64_to_cpu(hw_stats->rx_bcast_pkts);
8374
8375 stats->tx_packets += le64_to_cpu(hw_stats->tx_ucast_pkts);
8376 stats->tx_packets += le64_to_cpu(hw_stats->tx_mcast_pkts);
8377 stats->tx_packets += le64_to_cpu(hw_stats->tx_bcast_pkts);
8378
8379 stats->rx_bytes += le64_to_cpu(hw_stats->rx_ucast_bytes);
8380 stats->rx_bytes += le64_to_cpu(hw_stats->rx_mcast_bytes);
8381 stats->rx_bytes += le64_to_cpu(hw_stats->rx_bcast_bytes);
8382
8383 stats->tx_bytes += le64_to_cpu(hw_stats->tx_ucast_bytes);
8384 stats->tx_bytes += le64_to_cpu(hw_stats->tx_mcast_bytes);
8385 stats->tx_bytes += le64_to_cpu(hw_stats->tx_bcast_bytes);
8386
8387 stats->rx_missed_errors +=
8388 le64_to_cpu(hw_stats->rx_discard_pkts);
8389
8390 stats->multicast += le64_to_cpu(hw_stats->rx_mcast_pkts);
8391
Michael Chanc0c050c2015-10-22 16:01:17 -04008392 stats->tx_dropped += le64_to_cpu(hw_stats->tx_drop_pkts);
8393 }
8394
Michael Chan9947f832016-03-07 15:38:46 -05008395 if (bp->flags & BNXT_FLAG_PORT_STATS) {
8396 struct rx_port_stats *rx = bp->hw_rx_port_stats;
8397 struct tx_port_stats *tx = bp->hw_tx_port_stats;
8398
8399 stats->rx_crc_errors = le64_to_cpu(rx->rx_fcs_err_frames);
8400 stats->rx_frame_errors = le64_to_cpu(rx->rx_align_err_frames);
8401 stats->rx_length_errors = le64_to_cpu(rx->rx_undrsz_frames) +
8402 le64_to_cpu(rx->rx_ovrsz_frames) +
8403 le64_to_cpu(rx->rx_runt_frames);
8404 stats->rx_errors = le64_to_cpu(rx->rx_false_carrier_frames) +
8405 le64_to_cpu(rx->rx_jbr_frames);
8406 stats->collisions = le64_to_cpu(tx->tx_total_collisions);
8407 stats->tx_fifo_errors = le64_to_cpu(tx->tx_fifo_underruns);
8408 stats->tx_errors = le64_to_cpu(tx->tx_err);
8409 }
Michael Chanf9b76eb2017-07-11 13:05:34 -04008410 clear_bit(BNXT_STATE_READ_STATS, &bp->state);
Michael Chanc0c050c2015-10-22 16:01:17 -04008411}
8412
8413static bool bnxt_mc_list_updated(struct bnxt *bp, u32 *rx_mask)
8414{
8415 struct net_device *dev = bp->dev;
8416 struct bnxt_vnic_info *vnic = &bp->vnic_info[0];
8417 struct netdev_hw_addr *ha;
8418 u8 *haddr;
8419 int mc_count = 0;
8420 bool update = false;
8421 int off = 0;
8422
8423 netdev_for_each_mc_addr(ha, dev) {
8424 if (mc_count >= BNXT_MAX_MC_ADDRS) {
8425 *rx_mask |= CFA_L2_SET_RX_MASK_REQ_MASK_ALL_MCAST;
8426 vnic->mc_list_count = 0;
8427 return false;
8428 }
8429 haddr = ha->addr;
8430 if (!ether_addr_equal(haddr, vnic->mc_list + off)) {
8431 memcpy(vnic->mc_list + off, haddr, ETH_ALEN);
8432 update = true;
8433 }
8434 off += ETH_ALEN;
8435 mc_count++;
8436 }
8437 if (mc_count)
8438 *rx_mask |= CFA_L2_SET_RX_MASK_REQ_MASK_MCAST;
8439
8440 if (mc_count != vnic->mc_list_count) {
8441 vnic->mc_list_count = mc_count;
8442 update = true;
8443 }
8444 return update;
8445}
8446
8447static bool bnxt_uc_list_updated(struct bnxt *bp)
8448{
8449 struct net_device *dev = bp->dev;
8450 struct bnxt_vnic_info *vnic = &bp->vnic_info[0];
8451 struct netdev_hw_addr *ha;
8452 int off = 0;
8453
8454 if (netdev_uc_count(dev) != (vnic->uc_filter_count - 1))
8455 return true;
8456
8457 netdev_for_each_uc_addr(ha, dev) {
8458 if (!ether_addr_equal(ha->addr, vnic->uc_list + off))
8459 return true;
8460
8461 off += ETH_ALEN;
8462 }
8463 return false;
8464}
8465
8466static void bnxt_set_rx_mode(struct net_device *dev)
8467{
8468 struct bnxt *bp = netdev_priv(dev);
8469 struct bnxt_vnic_info *vnic = &bp->vnic_info[0];
8470 u32 mask = vnic->rx_mask;
8471 bool mc_update = false;
8472 bool uc_update;
8473
8474 if (!netif_running(dev))
8475 return;
8476
8477 mask &= ~(CFA_L2_SET_RX_MASK_REQ_MASK_PROMISCUOUS |
8478 CFA_L2_SET_RX_MASK_REQ_MASK_MCAST |
Michael Chan30e33842018-07-09 02:24:50 -04008479 CFA_L2_SET_RX_MASK_REQ_MASK_ALL_MCAST |
8480 CFA_L2_SET_RX_MASK_REQ_MASK_BCAST);
Michael Chanc0c050c2015-10-22 16:01:17 -04008481
Michael Chan17c71ac2016-07-01 18:46:27 -04008482 if ((dev->flags & IFF_PROMISC) && bnxt_promisc_ok(bp))
Michael Chanc0c050c2015-10-22 16:01:17 -04008483 mask |= CFA_L2_SET_RX_MASK_REQ_MASK_PROMISCUOUS;
8484
8485 uc_update = bnxt_uc_list_updated(bp);
8486
Michael Chan30e33842018-07-09 02:24:50 -04008487 if (dev->flags & IFF_BROADCAST)
8488 mask |= CFA_L2_SET_RX_MASK_REQ_MASK_BCAST;
Michael Chanc0c050c2015-10-22 16:01:17 -04008489 if (dev->flags & IFF_ALLMULTI) {
8490 mask |= CFA_L2_SET_RX_MASK_REQ_MASK_ALL_MCAST;
8491 vnic->mc_list_count = 0;
8492 } else {
8493 mc_update = bnxt_mc_list_updated(bp, &mask);
8494 }
8495
8496 if (mask != vnic->rx_mask || uc_update || mc_update) {
8497 vnic->rx_mask = mask;
8498
8499 set_bit(BNXT_RX_MASK_SP_EVENT, &bp->sp_event);
Michael Chanc213eae2017-10-13 21:09:29 -04008500 bnxt_queue_sp_work(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04008501 }
8502}
8503
Michael Chanb664f002015-12-02 01:54:08 -05008504static int bnxt_cfg_rx_mode(struct bnxt *bp)
Michael Chanc0c050c2015-10-22 16:01:17 -04008505{
8506 struct net_device *dev = bp->dev;
8507 struct bnxt_vnic_info *vnic = &bp->vnic_info[0];
8508 struct netdev_hw_addr *ha;
8509 int i, off = 0, rc;
8510 bool uc_update;
8511
8512 netif_addr_lock_bh(dev);
8513 uc_update = bnxt_uc_list_updated(bp);
8514 netif_addr_unlock_bh(dev);
8515
8516 if (!uc_update)
8517 goto skip_uc;
8518
8519 mutex_lock(&bp->hwrm_cmd_lock);
8520 for (i = 1; i < vnic->uc_filter_count; i++) {
8521 struct hwrm_cfa_l2_filter_free_input req = {0};
8522
8523 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_CFA_L2_FILTER_FREE, -1,
8524 -1);
8525
8526 req.l2_filter_id = vnic->fw_l2_filter_id[i];
8527
8528 rc = _hwrm_send_message(bp, &req, sizeof(req),
8529 HWRM_CMD_TIMEOUT);
8530 }
8531 mutex_unlock(&bp->hwrm_cmd_lock);
8532
8533 vnic->uc_filter_count = 1;
8534
8535 netif_addr_lock_bh(dev);
8536 if (netdev_uc_count(dev) > (BNXT_MAX_UC_ADDRS - 1)) {
8537 vnic->rx_mask |= CFA_L2_SET_RX_MASK_REQ_MASK_PROMISCUOUS;
8538 } else {
8539 netdev_for_each_uc_addr(ha, dev) {
8540 memcpy(vnic->uc_list + off, ha->addr, ETH_ALEN);
8541 off += ETH_ALEN;
8542 vnic->uc_filter_count++;
8543 }
8544 }
8545 netif_addr_unlock_bh(dev);
8546
8547 for (i = 1, off = 0; i < vnic->uc_filter_count; i++, off += ETH_ALEN) {
8548 rc = bnxt_hwrm_set_vnic_filter(bp, 0, i, vnic->uc_list + off);
8549 if (rc) {
8550 netdev_err(bp->dev, "HWRM vnic filter failure rc: %x\n",
8551 rc);
8552 vnic->uc_filter_count = i;
Michael Chanb664f002015-12-02 01:54:08 -05008553 return rc;
Michael Chanc0c050c2015-10-22 16:01:17 -04008554 }
8555 }
8556
8557skip_uc:
8558 rc = bnxt_hwrm_cfa_l2_set_rx_mask(bp, 0);
8559 if (rc)
8560 netdev_err(bp->dev, "HWRM cfa l2 rx mask failure rc: %x\n",
8561 rc);
Michael Chanb664f002015-12-02 01:54:08 -05008562
8563 return rc;
Michael Chanc0c050c2015-10-22 16:01:17 -04008564}
8565
Michael Chan2773dfb2018-04-26 17:44:42 -04008566static bool bnxt_can_reserve_rings(struct bnxt *bp)
8567{
8568#ifdef CONFIG_BNXT_SRIOV
Michael Chanf1ca94d2018-08-05 16:51:53 -04008569 if (BNXT_NEW_RM(bp) && BNXT_VF(bp)) {
Michael Chan2773dfb2018-04-26 17:44:42 -04008570 struct bnxt_hw_resc *hw_resc = &bp->hw_resc;
8571
8572 /* No minimum rings were provisioned by the PF. Don't
8573 * reserve rings by default when device is down.
8574 */
8575 if (hw_resc->min_tx_rings || hw_resc->resv_tx_rings)
8576 return true;
8577
8578 if (!netif_running(bp->dev))
8579 return false;
8580 }
8581#endif
8582 return true;
8583}
8584
Michael Chan8079e8f2016-12-29 12:13:37 -05008585/* If the chip and firmware supports RFS */
8586static bool bnxt_rfs_supported(struct bnxt *bp)
8587{
Michael Chan41e8d792018-10-14 07:02:48 -04008588 if (bp->flags & BNXT_FLAG_CHIP_P5)
8589 return false;
Michael Chan8079e8f2016-12-29 12:13:37 -05008590 if (BNXT_PF(bp) && !BNXT_CHIP_TYPE_NITRO_A0(bp))
8591 return true;
Michael Chanae10ae72016-12-29 12:13:38 -05008592 if (bp->flags & BNXT_FLAG_NEW_RSS_CAP)
8593 return true;
Michael Chan8079e8f2016-12-29 12:13:37 -05008594 return false;
8595}
8596
8597/* If runtime conditions support RFS */
Michael Chan2bcfa6f2015-12-27 18:19:24 -05008598static bool bnxt_rfs_capable(struct bnxt *bp)
8599{
8600#ifdef CONFIG_RFS_ACCEL
Michael Chan8079e8f2016-12-29 12:13:37 -05008601 int vnics, max_vnics, max_rss_ctxs;
Michael Chan2bcfa6f2015-12-27 18:19:24 -05008602
Michael Chan41e8d792018-10-14 07:02:48 -04008603 if (bp->flags & BNXT_FLAG_CHIP_P5)
8604 return false;
Michael Chan2773dfb2018-04-26 17:44:42 -04008605 if (!(bp->flags & BNXT_FLAG_MSIX_CAP) || !bnxt_can_reserve_rings(bp))
Michael Chan2bcfa6f2015-12-27 18:19:24 -05008606 return false;
8607
8608 vnics = 1 + bp->rx_nr_rings;
Michael Chan8079e8f2016-12-29 12:13:37 -05008609 max_vnics = bnxt_get_max_func_vnics(bp);
8610 max_rss_ctxs = bnxt_get_max_func_rss_ctxs(bp);
Michael Chanae10ae72016-12-29 12:13:38 -05008611
8612 /* RSS contexts not a limiting factor */
8613 if (bp->flags & BNXT_FLAG_NEW_RSS_CAP)
8614 max_rss_ctxs = max_vnics;
Michael Chan8079e8f2016-12-29 12:13:37 -05008615 if (vnics > max_vnics || vnics > max_rss_ctxs) {
Michael Chan6a1eef52018-01-17 03:21:10 -05008616 if (bp->rx_nr_rings > 1)
8617 netdev_warn(bp->dev,
8618 "Not enough resources to support NTUPLE filters, enough resources for up to %d rx rings\n",
8619 min(max_rss_ctxs - 1, max_vnics - 1));
Michael Chan2bcfa6f2015-12-27 18:19:24 -05008620 return false;
Vasundhara Volama2304902016-07-25 12:33:36 -04008621 }
Michael Chan2bcfa6f2015-12-27 18:19:24 -05008622
Michael Chanf1ca94d2018-08-05 16:51:53 -04008623 if (!BNXT_NEW_RM(bp))
Michael Chan6a1eef52018-01-17 03:21:10 -05008624 return true;
8625
8626 if (vnics == bp->hw_resc.resv_vnics)
8627 return true;
8628
8629 bnxt_hwrm_reserve_rings(bp, 0, 0, 0, 0, vnics);
8630 if (vnics <= bp->hw_resc.resv_vnics)
8631 return true;
8632
8633 netdev_warn(bp->dev, "Unable to reserve resources to support NTUPLE filters.\n");
8634 bnxt_hwrm_reserve_rings(bp, 0, 0, 0, 0, 1);
8635 return false;
Michael Chan2bcfa6f2015-12-27 18:19:24 -05008636#else
8637 return false;
8638#endif
8639}
8640
Michael Chanc0c050c2015-10-22 16:01:17 -04008641static netdev_features_t bnxt_fix_features(struct net_device *dev,
8642 netdev_features_t features)
8643{
Michael Chan2bcfa6f2015-12-27 18:19:24 -05008644 struct bnxt *bp = netdev_priv(dev);
8645
Vasundhara Volama2304902016-07-25 12:33:36 -04008646 if ((features & NETIF_F_NTUPLE) && !bnxt_rfs_capable(bp))
Michael Chan2bcfa6f2015-12-27 18:19:24 -05008647 features &= ~NETIF_F_NTUPLE;
Michael Chan5a9f6b22016-06-06 02:37:15 -04008648
Michael Chan1054aee2017-12-16 03:09:42 -05008649 if (bp->flags & BNXT_FLAG_NO_AGG_RINGS)
8650 features &= ~(NETIF_F_LRO | NETIF_F_GRO_HW);
8651
8652 if (!(features & NETIF_F_GRO))
8653 features &= ~NETIF_F_GRO_HW;
8654
8655 if (features & NETIF_F_GRO_HW)
8656 features &= ~NETIF_F_LRO;
8657
Michael Chan5a9f6b22016-06-06 02:37:15 -04008658 /* Both CTAG and STAG VLAN accelaration on the RX side have to be
8659 * turned on or off together.
8660 */
8661 if ((features & (NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_STAG_RX)) !=
8662 (NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_STAG_RX)) {
8663 if (dev->features & NETIF_F_HW_VLAN_CTAG_RX)
8664 features &= ~(NETIF_F_HW_VLAN_CTAG_RX |
8665 NETIF_F_HW_VLAN_STAG_RX);
8666 else
8667 features |= NETIF_F_HW_VLAN_CTAG_RX |
8668 NETIF_F_HW_VLAN_STAG_RX;
8669 }
Michael Chancf6645f2016-06-13 02:25:28 -04008670#ifdef CONFIG_BNXT_SRIOV
8671 if (BNXT_VF(bp)) {
8672 if (bp->vf.vlan) {
8673 features &= ~(NETIF_F_HW_VLAN_CTAG_RX |
8674 NETIF_F_HW_VLAN_STAG_RX);
8675 }
8676 }
8677#endif
Michael Chanc0c050c2015-10-22 16:01:17 -04008678 return features;
8679}
8680
8681static int bnxt_set_features(struct net_device *dev, netdev_features_t features)
8682{
8683 struct bnxt *bp = netdev_priv(dev);
8684 u32 flags = bp->flags;
8685 u32 changes;
8686 int rc = 0;
8687 bool re_init = false;
8688 bool update_tpa = false;
8689
8690 flags &= ~BNXT_FLAG_ALL_CONFIG_FEATS;
Michael Chan1054aee2017-12-16 03:09:42 -05008691 if (features & NETIF_F_GRO_HW)
Michael Chanc0c050c2015-10-22 16:01:17 -04008692 flags |= BNXT_FLAG_GRO;
Michael Chan1054aee2017-12-16 03:09:42 -05008693 else if (features & NETIF_F_LRO)
Michael Chanc0c050c2015-10-22 16:01:17 -04008694 flags |= BNXT_FLAG_LRO;
8695
Michael Chanbdbd1eb2016-12-29 12:13:43 -05008696 if (bp->flags & BNXT_FLAG_NO_AGG_RINGS)
8697 flags &= ~BNXT_FLAG_TPA;
8698
Michael Chanc0c050c2015-10-22 16:01:17 -04008699 if (features & NETIF_F_HW_VLAN_CTAG_RX)
8700 flags |= BNXT_FLAG_STRIP_VLAN;
8701
8702 if (features & NETIF_F_NTUPLE)
8703 flags |= BNXT_FLAG_RFS;
8704
8705 changes = flags ^ bp->flags;
8706 if (changes & BNXT_FLAG_TPA) {
8707 update_tpa = true;
8708 if ((bp->flags & BNXT_FLAG_TPA) == 0 ||
8709 (flags & BNXT_FLAG_TPA) == 0)
8710 re_init = true;
8711 }
8712
8713 if (changes & ~BNXT_FLAG_TPA)
8714 re_init = true;
8715
8716 if (flags != bp->flags) {
8717 u32 old_flags = bp->flags;
8718
8719 bp->flags = flags;
8720
Michael Chan2bcfa6f2015-12-27 18:19:24 -05008721 if (!test_bit(BNXT_STATE_OPEN, &bp->state)) {
Michael Chanc0c050c2015-10-22 16:01:17 -04008722 if (update_tpa)
8723 bnxt_set_ring_params(bp);
8724 return rc;
8725 }
8726
8727 if (re_init) {
8728 bnxt_close_nic(bp, false, false);
8729 if (update_tpa)
8730 bnxt_set_ring_params(bp);
8731
8732 return bnxt_open_nic(bp, false, false);
8733 }
8734 if (update_tpa) {
8735 rc = bnxt_set_tpa(bp,
8736 (flags & BNXT_FLAG_TPA) ?
8737 true : false);
8738 if (rc)
8739 bp->flags = old_flags;
8740 }
8741 }
8742 return rc;
8743}
8744
Michael Chanffd77622018-11-15 03:25:40 -05008745static int bnxt_dbg_hwrm_ring_info_get(struct bnxt *bp, u8 ring_type,
8746 u32 ring_id, u32 *prod, u32 *cons)
8747{
8748 struct hwrm_dbg_ring_info_get_output *resp = bp->hwrm_cmd_resp_addr;
8749 struct hwrm_dbg_ring_info_get_input req = {0};
8750 int rc;
8751
8752 bnxt_hwrm_cmd_hdr_init(bp, &req, HWRM_DBG_RING_INFO_GET, -1, -1);
8753 req.ring_type = ring_type;
8754 req.fw_ring_id = cpu_to_le32(ring_id);
8755 mutex_lock(&bp->hwrm_cmd_lock);
8756 rc = _hwrm_send_message(bp, &req, sizeof(req), HWRM_CMD_TIMEOUT);
8757 if (!rc) {
8758 *prod = le32_to_cpu(resp->producer_index);
8759 *cons = le32_to_cpu(resp->consumer_index);
8760 }
8761 mutex_unlock(&bp->hwrm_cmd_lock);
8762 return rc;
8763}
8764
Michael Chan9f554592016-01-02 23:44:58 -05008765static void bnxt_dump_tx_sw_state(struct bnxt_napi *bnapi)
8766{
Michael Chanb6ab4b02016-01-02 23:44:59 -05008767 struct bnxt_tx_ring_info *txr = bnapi->tx_ring;
Michael Chan9f554592016-01-02 23:44:58 -05008768 int i = bnapi->index;
8769
Michael Chan3b2b7d92016-01-02 23:45:00 -05008770 if (!txr)
8771 return;
8772
Michael Chan9f554592016-01-02 23:44:58 -05008773 netdev_info(bnapi->bp->dev, "[%d]: tx{fw_ring: %d prod: %x cons: %x}\n",
8774 i, txr->tx_ring_struct.fw_ring_id, txr->tx_prod,
8775 txr->tx_cons);
8776}
8777
8778static void bnxt_dump_rx_sw_state(struct bnxt_napi *bnapi)
8779{
Michael Chanb6ab4b02016-01-02 23:44:59 -05008780 struct bnxt_rx_ring_info *rxr = bnapi->rx_ring;
Michael Chan9f554592016-01-02 23:44:58 -05008781 int i = bnapi->index;
8782
Michael Chan3b2b7d92016-01-02 23:45:00 -05008783 if (!rxr)
8784 return;
8785
Michael Chan9f554592016-01-02 23:44:58 -05008786 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",
8787 i, rxr->rx_ring_struct.fw_ring_id, rxr->rx_prod,
8788 rxr->rx_agg_ring_struct.fw_ring_id, rxr->rx_agg_prod,
8789 rxr->rx_sw_agg_prod);
8790}
8791
8792static void bnxt_dump_cp_sw_state(struct bnxt_napi *bnapi)
8793{
8794 struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring;
8795 int i = bnapi->index;
8796
8797 netdev_info(bnapi->bp->dev, "[%d]: cp{fw_ring: %d raw_cons: %x}\n",
8798 i, cpr->cp_ring_struct.fw_ring_id, cpr->cp_raw_cons);
8799}
8800
Michael Chanc0c050c2015-10-22 16:01:17 -04008801static void bnxt_dbg_dump_states(struct bnxt *bp)
8802{
8803 int i;
8804 struct bnxt_napi *bnapi;
Michael Chanc0c050c2015-10-22 16:01:17 -04008805
8806 for (i = 0; i < bp->cp_nr_rings; i++) {
8807 bnapi = bp->bnapi[i];
Michael Chanc0c050c2015-10-22 16:01:17 -04008808 if (netif_msg_drv(bp)) {
Michael Chan9f554592016-01-02 23:44:58 -05008809 bnxt_dump_tx_sw_state(bnapi);
8810 bnxt_dump_rx_sw_state(bnapi);
8811 bnxt_dump_cp_sw_state(bnapi);
Michael Chanc0c050c2015-10-22 16:01:17 -04008812 }
8813 }
8814}
8815
Michael Chan6988bd92016-06-13 02:25:29 -04008816static void bnxt_reset_task(struct bnxt *bp, bool silent)
Michael Chanc0c050c2015-10-22 16:01:17 -04008817{
Michael Chan6988bd92016-06-13 02:25:29 -04008818 if (!silent)
8819 bnxt_dbg_dump_states(bp);
Michael Chan028de142015-12-09 19:35:44 -05008820 if (netif_running(bp->dev)) {
Michael Chanb386cd32017-03-08 18:44:33 -05008821 int rc;
8822
8823 if (!silent)
8824 bnxt_ulp_stop(bp);
Michael Chan028de142015-12-09 19:35:44 -05008825 bnxt_close_nic(bp, false, false);
Michael Chanb386cd32017-03-08 18:44:33 -05008826 rc = bnxt_open_nic(bp, false, false);
8827 if (!silent && !rc)
8828 bnxt_ulp_start(bp);
Michael Chan028de142015-12-09 19:35:44 -05008829 }
Michael Chanc0c050c2015-10-22 16:01:17 -04008830}
8831
8832static void bnxt_tx_timeout(struct net_device *dev)
8833{
8834 struct bnxt *bp = netdev_priv(dev);
8835
8836 netdev_err(bp->dev, "TX timeout detected, starting reset task!\n");
8837 set_bit(BNXT_RESET_TASK_SP_EVENT, &bp->sp_event);
Michael Chanc213eae2017-10-13 21:09:29 -04008838 bnxt_queue_sp_work(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04008839}
8840
Kees Cooke99e88a2017-10-16 14:43:17 -07008841static void bnxt_timer(struct timer_list *t)
Michael Chanc0c050c2015-10-22 16:01:17 -04008842{
Kees Cooke99e88a2017-10-16 14:43:17 -07008843 struct bnxt *bp = from_timer(bp, t, timer);
Michael Chanc0c050c2015-10-22 16:01:17 -04008844 struct net_device *dev = bp->dev;
8845
8846 if (!netif_running(dev))
8847 return;
8848
8849 if (atomic_read(&bp->intr_sem) != 0)
8850 goto bnxt_restart_timer;
8851
Michael Chanadcc3312017-07-24 12:34:24 -04008852 if (bp->link_info.link_up && (bp->flags & BNXT_FLAG_PORT_STATS) &&
8853 bp->stats_coal_ticks) {
Michael Chan3bdf56c2016-03-07 15:38:45 -05008854 set_bit(BNXT_PERIODIC_STATS_SP_EVENT, &bp->sp_event);
Michael Chanc213eae2017-10-13 21:09:29 -04008855 bnxt_queue_sp_work(bp);
Michael Chan3bdf56c2016-03-07 15:38:45 -05008856 }
Sathya Perla5a84acb2017-10-26 11:51:31 -04008857
8858 if (bnxt_tc_flower_enabled(bp)) {
8859 set_bit(BNXT_FLOW_STATS_SP_EVENT, &bp->sp_event);
8860 bnxt_queue_sp_work(bp);
8861 }
Michael Chana1ef4a72018-08-05 16:51:49 -04008862
8863 if (bp->link_info.phy_retry) {
8864 if (time_after(jiffies, bp->link_info.phy_retry_expires)) {
8865 bp->link_info.phy_retry = 0;
8866 netdev_warn(bp->dev, "failed to update phy settings after maximum retries.\n");
8867 } else {
8868 set_bit(BNXT_UPDATE_PHY_SP_EVENT, &bp->sp_event);
8869 bnxt_queue_sp_work(bp);
8870 }
8871 }
Michael Chanffd77622018-11-15 03:25:40 -05008872
8873 if ((bp->flags & BNXT_FLAG_CHIP_P5) && netif_carrier_ok(dev)) {
8874 set_bit(BNXT_RING_COAL_NOW_SP_EVENT, &bp->sp_event);
8875 bnxt_queue_sp_work(bp);
8876 }
Michael Chanc0c050c2015-10-22 16:01:17 -04008877bnxt_restart_timer:
8878 mod_timer(&bp->timer, jiffies + bp->current_interval);
8879}
8880
Michael Chana551ee92017-01-25 02:55:07 -05008881static void bnxt_rtnl_lock_sp(struct bnxt *bp)
Michael Chan6988bd92016-06-13 02:25:29 -04008882{
Michael Chana551ee92017-01-25 02:55:07 -05008883 /* We are called from bnxt_sp_task which has BNXT_STATE_IN_SP_TASK
8884 * set. If the device is being closed, bnxt_close() may be holding
Michael Chan6988bd92016-06-13 02:25:29 -04008885 * rtnl() and waiting for BNXT_STATE_IN_SP_TASK to clear. So we
8886 * must clear BNXT_STATE_IN_SP_TASK before holding rtnl().
8887 */
8888 clear_bit(BNXT_STATE_IN_SP_TASK, &bp->state);
8889 rtnl_lock();
Michael Chana551ee92017-01-25 02:55:07 -05008890}
8891
8892static void bnxt_rtnl_unlock_sp(struct bnxt *bp)
8893{
Michael Chan6988bd92016-06-13 02:25:29 -04008894 set_bit(BNXT_STATE_IN_SP_TASK, &bp->state);
8895 rtnl_unlock();
8896}
8897
Michael Chana551ee92017-01-25 02:55:07 -05008898/* Only called from bnxt_sp_task() */
8899static void bnxt_reset(struct bnxt *bp, bool silent)
8900{
8901 bnxt_rtnl_lock_sp(bp);
8902 if (test_bit(BNXT_STATE_OPEN, &bp->state))
8903 bnxt_reset_task(bp, silent);
8904 bnxt_rtnl_unlock_sp(bp);
8905}
8906
Michael Chanffd77622018-11-15 03:25:40 -05008907static void bnxt_chk_missed_irq(struct bnxt *bp)
8908{
8909 int i;
8910
8911 if (!(bp->flags & BNXT_FLAG_CHIP_P5))
8912 return;
8913
8914 for (i = 0; i < bp->cp_nr_rings; i++) {
8915 struct bnxt_napi *bnapi = bp->bnapi[i];
8916 struct bnxt_cp_ring_info *cpr;
8917 u32 fw_ring_id;
8918 int j;
8919
8920 if (!bnapi)
8921 continue;
8922
8923 cpr = &bnapi->cp_ring;
8924 for (j = 0; j < 2; j++) {
8925 struct bnxt_cp_ring_info *cpr2 = cpr->cp_ring_arr[j];
8926 u32 val[2];
8927
8928 if (!cpr2 || cpr2->has_more_work ||
8929 !bnxt_has_work(bp, cpr2))
8930 continue;
8931
8932 if (cpr2->cp_raw_cons != cpr2->last_cp_raw_cons) {
8933 cpr2->last_cp_raw_cons = cpr2->cp_raw_cons;
8934 continue;
8935 }
8936 fw_ring_id = cpr2->cp_ring_struct.fw_ring_id;
8937 bnxt_dbg_hwrm_ring_info_get(bp,
8938 DBG_RING_INFO_GET_REQ_RING_TYPE_L2_CMPL,
8939 fw_ring_id, &val[0], &val[1]);
Michael Chan83eb5c52018-11-15 03:25:41 -05008940 cpr->missed_irqs++;
Michael Chanffd77622018-11-15 03:25:40 -05008941 }
8942 }
8943}
8944
Michael Chanc0c050c2015-10-22 16:01:17 -04008945static void bnxt_cfg_ntp_filters(struct bnxt *);
8946
8947static void bnxt_sp_task(struct work_struct *work)
8948{
8949 struct bnxt *bp = container_of(work, struct bnxt, sp_task);
Michael Chanc0c050c2015-10-22 16:01:17 -04008950
Michael Chan4cebdce2015-12-09 19:35:43 -05008951 set_bit(BNXT_STATE_IN_SP_TASK, &bp->state);
8952 smp_mb__after_atomic();
8953 if (!test_bit(BNXT_STATE_OPEN, &bp->state)) {
8954 clear_bit(BNXT_STATE_IN_SP_TASK, &bp->state);
Michael Chanc0c050c2015-10-22 16:01:17 -04008955 return;
Michael Chan4cebdce2015-12-09 19:35:43 -05008956 }
Michael Chanc0c050c2015-10-22 16:01:17 -04008957
8958 if (test_and_clear_bit(BNXT_RX_MASK_SP_EVENT, &bp->sp_event))
8959 bnxt_cfg_rx_mode(bp);
8960
8961 if (test_and_clear_bit(BNXT_RX_NTP_FLTR_SP_EVENT, &bp->sp_event))
8962 bnxt_cfg_ntp_filters(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04008963 if (test_and_clear_bit(BNXT_HWRM_EXEC_FWD_REQ_SP_EVENT, &bp->sp_event))
8964 bnxt_hwrm_exec_fwd_req(bp);
8965 if (test_and_clear_bit(BNXT_VXLAN_ADD_PORT_SP_EVENT, &bp->sp_event)) {
8966 bnxt_hwrm_tunnel_dst_port_alloc(
8967 bp, bp->vxlan_port,
8968 TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_VXLAN);
8969 }
8970 if (test_and_clear_bit(BNXT_VXLAN_DEL_PORT_SP_EVENT, &bp->sp_event)) {
8971 bnxt_hwrm_tunnel_dst_port_free(
8972 bp, TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_VXLAN);
8973 }
Alexander Duyck7cdd5fc2016-06-16 12:21:36 -07008974 if (test_and_clear_bit(BNXT_GENEVE_ADD_PORT_SP_EVENT, &bp->sp_event)) {
8975 bnxt_hwrm_tunnel_dst_port_alloc(
8976 bp, bp->nge_port,
8977 TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_GENEVE);
8978 }
8979 if (test_and_clear_bit(BNXT_GENEVE_DEL_PORT_SP_EVENT, &bp->sp_event)) {
8980 bnxt_hwrm_tunnel_dst_port_free(
8981 bp, TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_GENEVE);
8982 }
Vasundhara Volam00db3cb2018-03-31 13:54:12 -04008983 if (test_and_clear_bit(BNXT_PERIODIC_STATS_SP_EVENT, &bp->sp_event)) {
Michael Chan3bdf56c2016-03-07 15:38:45 -05008984 bnxt_hwrm_port_qstats(bp);
Vasundhara Volam00db3cb2018-03-31 13:54:12 -04008985 bnxt_hwrm_port_qstats_ext(bp);
8986 }
Michael Chan3bdf56c2016-03-07 15:38:45 -05008987
Michael Chan0eaa24b2017-01-25 02:55:08 -05008988 if (test_and_clear_bit(BNXT_LINK_CHNG_SP_EVENT, &bp->sp_event)) {
Michael Chane2dc9b62017-10-13 21:09:30 -04008989 int rc;
Michael Chan0eaa24b2017-01-25 02:55:08 -05008990
Michael Chane2dc9b62017-10-13 21:09:30 -04008991 mutex_lock(&bp->link_lock);
Michael Chan0eaa24b2017-01-25 02:55:08 -05008992 if (test_and_clear_bit(BNXT_LINK_SPEED_CHNG_SP_EVENT,
8993 &bp->sp_event))
8994 bnxt_hwrm_phy_qcaps(bp);
8995
Michael Chane2dc9b62017-10-13 21:09:30 -04008996 rc = bnxt_update_link(bp, true);
8997 mutex_unlock(&bp->link_lock);
Michael Chan0eaa24b2017-01-25 02:55:08 -05008998 if (rc)
8999 netdev_err(bp->dev, "SP task can't update link (rc: %x)\n",
9000 rc);
9001 }
Michael Chana1ef4a72018-08-05 16:51:49 -04009002 if (test_and_clear_bit(BNXT_UPDATE_PHY_SP_EVENT, &bp->sp_event)) {
9003 int rc;
9004
9005 mutex_lock(&bp->link_lock);
9006 rc = bnxt_update_phy_setting(bp);
9007 mutex_unlock(&bp->link_lock);
9008 if (rc) {
9009 netdev_warn(bp->dev, "update phy settings retry failed\n");
9010 } else {
9011 bp->link_info.phy_retry = false;
9012 netdev_info(bp->dev, "update phy settings retry succeeded\n");
9013 }
9014 }
Michael Chan90c694b2017-01-25 02:55:09 -05009015 if (test_and_clear_bit(BNXT_HWRM_PORT_MODULE_SP_EVENT, &bp->sp_event)) {
Michael Chane2dc9b62017-10-13 21:09:30 -04009016 mutex_lock(&bp->link_lock);
9017 bnxt_get_port_module_status(bp);
9018 mutex_unlock(&bp->link_lock);
Michael Chan90c694b2017-01-25 02:55:09 -05009019 }
Sathya Perla5a84acb2017-10-26 11:51:31 -04009020
9021 if (test_and_clear_bit(BNXT_FLOW_STATS_SP_EVENT, &bp->sp_event))
9022 bnxt_tc_flow_stats_work(bp);
9023
Michael Chanffd77622018-11-15 03:25:40 -05009024 if (test_and_clear_bit(BNXT_RING_COAL_NOW_SP_EVENT, &bp->sp_event))
9025 bnxt_chk_missed_irq(bp);
9026
Michael Chane2dc9b62017-10-13 21:09:30 -04009027 /* These functions below will clear BNXT_STATE_IN_SP_TASK. They
9028 * must be the last functions to be called before exiting.
9029 */
Michael Chanc0c050c2015-10-22 16:01:17 -04009030 if (test_and_clear_bit(BNXT_RESET_TASK_SP_EVENT, &bp->sp_event))
9031 bnxt_reset(bp, false);
9032
9033 if (test_and_clear_bit(BNXT_RESET_TASK_SILENT_SP_EVENT, &bp->sp_event))
9034 bnxt_reset(bp, true);
9035
Michael Chanc0c050c2015-10-22 16:01:17 -04009036 smp_mb__before_atomic();
9037 clear_bit(BNXT_STATE_IN_SP_TASK, &bp->state);
9038}
9039
Michael Chand1e79252017-02-06 16:55:38 -05009040/* Under rtnl_lock */
Michael Chan98fdbe72017-08-28 13:40:26 -04009041int bnxt_check_rings(struct bnxt *bp, int tx, int rx, bool sh, int tcs,
9042 int tx_xdp)
Michael Chand1e79252017-02-06 16:55:38 -05009043{
9044 int max_rx, max_tx, tx_sets = 1;
9045 int tx_rings_needed;
Michael Chan8f23d632018-01-17 03:21:12 -05009046 int rx_rings = rx;
Eddie Wai6fc2ffd2018-03-09 23:46:04 -05009047 int cp, vnics, rc;
Michael Chand1e79252017-02-06 16:55:38 -05009048
Michael Chand1e79252017-02-06 16:55:38 -05009049 if (tcs)
9050 tx_sets = tcs;
9051
9052 rc = bnxt_get_max_rings(bp, &max_rx, &max_tx, sh);
9053 if (rc)
9054 return rc;
9055
9056 if (max_rx < rx)
9057 return -ENOMEM;
9058
Michael Chan5f449242017-02-06 16:55:40 -05009059 tx_rings_needed = tx * tx_sets + tx_xdp;
Michael Chand1e79252017-02-06 16:55:38 -05009060 if (max_tx < tx_rings_needed)
9061 return -ENOMEM;
9062
Eddie Wai6fc2ffd2018-03-09 23:46:04 -05009063 vnics = 1;
9064 if (bp->flags & BNXT_FLAG_RFS)
9065 vnics += rx_rings;
9066
Michael Chan8f23d632018-01-17 03:21:12 -05009067 if (bp->flags & BNXT_FLAG_AGG_RINGS)
9068 rx_rings <<= 1;
9069 cp = sh ? max_t(int, tx_rings_needed, rx) : tx_rings_needed + rx;
Michael Chanf1ca94d2018-08-05 16:51:53 -04009070 if (BNXT_NEW_RM(bp))
Michael Chan11c3ec72018-04-11 11:50:17 -04009071 cp += bnxt_get_ulp_msix_num(bp);
Eddie Wai6fc2ffd2018-03-09 23:46:04 -05009072 return bnxt_hwrm_check_rings(bp, tx_rings_needed, rx_rings, rx, cp,
9073 vnics);
Michael Chand1e79252017-02-06 16:55:38 -05009074}
9075
Sathya Perla17086392017-02-20 19:25:18 -05009076static void bnxt_unmap_bars(struct bnxt *bp, struct pci_dev *pdev)
9077{
9078 if (bp->bar2) {
9079 pci_iounmap(pdev, bp->bar2);
9080 bp->bar2 = NULL;
9081 }
9082
9083 if (bp->bar1) {
9084 pci_iounmap(pdev, bp->bar1);
9085 bp->bar1 = NULL;
9086 }
9087
9088 if (bp->bar0) {
9089 pci_iounmap(pdev, bp->bar0);
9090 bp->bar0 = NULL;
9091 }
9092}
9093
9094static void bnxt_cleanup_pci(struct bnxt *bp)
9095{
9096 bnxt_unmap_bars(bp, bp->pdev);
9097 pci_release_regions(bp->pdev);
9098 pci_disable_device(bp->pdev);
9099}
9100
Michael Chan18775aa2017-10-26 11:51:27 -04009101static void bnxt_init_dflt_coal(struct bnxt *bp)
9102{
9103 struct bnxt_coal *coal;
9104
9105 /* Tick values in micro seconds.
9106 * 1 coal_buf x bufs_per_record = 1 completion record.
9107 */
9108 coal = &bp->rx_coal;
9109 coal->coal_ticks = 14;
9110 coal->coal_bufs = 30;
9111 coal->coal_ticks_irq = 1;
9112 coal->coal_bufs_irq = 2;
Andy Gospodarek05abe4dd2018-04-26 17:44:38 -04009113 coal->idle_thresh = 50;
Michael Chan18775aa2017-10-26 11:51:27 -04009114 coal->bufs_per_record = 2;
9115 coal->budget = 64; /* NAPI budget */
9116
9117 coal = &bp->tx_coal;
9118 coal->coal_ticks = 28;
9119 coal->coal_bufs = 30;
9120 coal->coal_ticks_irq = 2;
9121 coal->coal_bufs_irq = 2;
9122 coal->bufs_per_record = 1;
9123
9124 bp->stats_coal_ticks = BNXT_DEF_STATS_COAL_TICKS;
9125}
9126
Michael Chanc0c050c2015-10-22 16:01:17 -04009127static int bnxt_init_board(struct pci_dev *pdev, struct net_device *dev)
9128{
9129 int rc;
9130 struct bnxt *bp = netdev_priv(dev);
9131
9132 SET_NETDEV_DEV(dev, &pdev->dev);
9133
9134 /* enable device (incl. PCI PM wakeup), and bus-mastering */
9135 rc = pci_enable_device(pdev);
9136 if (rc) {
9137 dev_err(&pdev->dev, "Cannot enable PCI device, aborting\n");
9138 goto init_err;
9139 }
9140
9141 if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
9142 dev_err(&pdev->dev,
9143 "Cannot find PCI device base address, aborting\n");
9144 rc = -ENODEV;
9145 goto init_err_disable;
9146 }
9147
9148 rc = pci_request_regions(pdev, DRV_MODULE_NAME);
9149 if (rc) {
9150 dev_err(&pdev->dev, "Cannot obtain PCI resources, aborting\n");
9151 goto init_err_disable;
9152 }
9153
9154 if (dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64)) != 0 &&
9155 dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32)) != 0) {
9156 dev_err(&pdev->dev, "System does not support DMA, aborting\n");
9157 goto init_err_disable;
9158 }
9159
9160 pci_set_master(pdev);
9161
9162 bp->dev = dev;
9163 bp->pdev = pdev;
9164
9165 bp->bar0 = pci_ioremap_bar(pdev, 0);
9166 if (!bp->bar0) {
9167 dev_err(&pdev->dev, "Cannot map device registers, aborting\n");
9168 rc = -ENOMEM;
9169 goto init_err_release;
9170 }
9171
9172 bp->bar1 = pci_ioremap_bar(pdev, 2);
9173 if (!bp->bar1) {
9174 dev_err(&pdev->dev, "Cannot map doorbell registers, aborting\n");
9175 rc = -ENOMEM;
9176 goto init_err_release;
9177 }
9178
9179 bp->bar2 = pci_ioremap_bar(pdev, 4);
9180 if (!bp->bar2) {
9181 dev_err(&pdev->dev, "Cannot map bar4 registers, aborting\n");
9182 rc = -ENOMEM;
9183 goto init_err_release;
9184 }
9185
Satish Baddipadige6316ea62016-03-07 15:38:48 -05009186 pci_enable_pcie_error_reporting(pdev);
9187
Michael Chanc0c050c2015-10-22 16:01:17 -04009188 INIT_WORK(&bp->sp_task, bnxt_sp_task);
9189
9190 spin_lock_init(&bp->ntp_fltr_lock);
Michael Chan697197e2018-10-14 07:02:46 -04009191#if BITS_PER_LONG == 32
9192 spin_lock_init(&bp->db_lock);
9193#endif
Michael Chanc0c050c2015-10-22 16:01:17 -04009194
9195 bp->rx_ring_size = BNXT_DEFAULT_RX_RING_SIZE;
9196 bp->tx_ring_size = BNXT_DEFAULT_TX_RING_SIZE;
9197
Michael Chan18775aa2017-10-26 11:51:27 -04009198 bnxt_init_dflt_coal(bp);
Michael Chan51f30782016-07-01 18:46:29 -04009199
Kees Cooke99e88a2017-10-16 14:43:17 -07009200 timer_setup(&bp->timer, bnxt_timer, 0);
Michael Chanc0c050c2015-10-22 16:01:17 -04009201 bp->current_interval = BNXT_TIMER_INTERVAL;
9202
Michael Chancaefe522015-12-09 19:35:42 -05009203 clear_bit(BNXT_STATE_OPEN, &bp->state);
Michael Chanc0c050c2015-10-22 16:01:17 -04009204 return 0;
9205
9206init_err_release:
Sathya Perla17086392017-02-20 19:25:18 -05009207 bnxt_unmap_bars(bp, pdev);
Michael Chanc0c050c2015-10-22 16:01:17 -04009208 pci_release_regions(pdev);
9209
9210init_err_disable:
9211 pci_disable_device(pdev);
9212
9213init_err:
9214 return rc;
9215}
9216
9217/* rtnl_lock held */
9218static int bnxt_change_mac_addr(struct net_device *dev, void *p)
9219{
9220 struct sockaddr *addr = p;
Jeffrey Huang1fc2cfd2015-12-02 01:54:06 -05009221 struct bnxt *bp = netdev_priv(dev);
9222 int rc = 0;
Michael Chanc0c050c2015-10-22 16:01:17 -04009223
9224 if (!is_valid_ether_addr(addr->sa_data))
9225 return -EADDRNOTAVAIL;
9226
Michael Chanc1a7bdf2017-10-26 11:51:24 -04009227 if (ether_addr_equal(addr->sa_data, dev->dev_addr))
9228 return 0;
9229
Michael Chan28ea3342018-09-14 15:41:29 -04009230 rc = bnxt_approve_mac(bp, addr->sa_data, true);
Michael Chan84c33dd2016-04-11 04:11:13 -04009231 if (rc)
9232 return rc;
Michael Chanc0c050c2015-10-22 16:01:17 -04009233
Jeffrey Huang1fc2cfd2015-12-02 01:54:06 -05009234 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
9235 if (netif_running(dev)) {
9236 bnxt_close_nic(bp, false, false);
9237 rc = bnxt_open_nic(bp, false, false);
9238 }
9239
9240 return rc;
Michael Chanc0c050c2015-10-22 16:01:17 -04009241}
9242
9243/* rtnl_lock held */
9244static int bnxt_change_mtu(struct net_device *dev, int new_mtu)
9245{
9246 struct bnxt *bp = netdev_priv(dev);
9247
Michael Chanc0c050c2015-10-22 16:01:17 -04009248 if (netif_running(dev))
9249 bnxt_close_nic(bp, false, false);
9250
9251 dev->mtu = new_mtu;
9252 bnxt_set_ring_params(bp);
9253
9254 if (netif_running(dev))
9255 return bnxt_open_nic(bp, false, false);
9256
9257 return 0;
9258}
9259
Michael Chanc5e3deb2016-12-02 21:17:15 -05009260int bnxt_setup_mq_tc(struct net_device *dev, u8 tc)
Michael Chanc0c050c2015-10-22 16:01:17 -04009261{
9262 struct bnxt *bp = netdev_priv(dev);
Michael Chan3ffb6a32016-11-11 00:11:42 -05009263 bool sh = false;
Michael Chand1e79252017-02-06 16:55:38 -05009264 int rc;
John Fastabend16e5cc62016-02-16 21:16:43 -08009265
Michael Chanc0c050c2015-10-22 16:01:17 -04009266 if (tc > bp->max_tc) {
Michael Chanb451c8b2017-02-12 19:18:17 -05009267 netdev_err(dev, "Too many traffic classes requested: %d. Max supported is %d.\n",
Michael Chanc0c050c2015-10-22 16:01:17 -04009268 tc, bp->max_tc);
9269 return -EINVAL;
9270 }
9271
9272 if (netdev_get_num_tc(dev) == tc)
9273 return 0;
9274
Michael Chan3ffb6a32016-11-11 00:11:42 -05009275 if (bp->flags & BNXT_FLAG_SHARED_RINGS)
9276 sh = true;
9277
Michael Chan98fdbe72017-08-28 13:40:26 -04009278 rc = bnxt_check_rings(bp, bp->tx_nr_rings_per_tc, bp->rx_nr_rings,
9279 sh, tc, bp->tx_nr_rings_xdp);
Michael Chand1e79252017-02-06 16:55:38 -05009280 if (rc)
9281 return rc;
Michael Chanc0c050c2015-10-22 16:01:17 -04009282
9283 /* Needs to close the device and do hw resource re-allocations */
9284 if (netif_running(bp->dev))
9285 bnxt_close_nic(bp, true, false);
9286
9287 if (tc) {
9288 bp->tx_nr_rings = bp->tx_nr_rings_per_tc * tc;
9289 netdev_set_num_tc(dev, tc);
9290 } else {
9291 bp->tx_nr_rings = bp->tx_nr_rings_per_tc;
9292 netdev_reset_tc(dev);
9293 }
Michael Chan87e9b372017-08-23 19:34:03 -04009294 bp->tx_nr_rings += bp->tx_nr_rings_xdp;
Michael Chan3ffb6a32016-11-11 00:11:42 -05009295 bp->cp_nr_rings = sh ? max_t(int, bp->tx_nr_rings, bp->rx_nr_rings) :
9296 bp->tx_nr_rings + bp->rx_nr_rings;
Michael Chanc0c050c2015-10-22 16:01:17 -04009297 bp->num_stat_ctxs = bp->cp_nr_rings;
9298
9299 if (netif_running(bp->dev))
9300 return bnxt_open_nic(bp, true, false);
9301
9302 return 0;
9303}
9304
Jiri Pirko9e0fd152017-10-19 15:50:39 +02009305static int bnxt_setup_tc_block_cb(enum tc_setup_type type, void *type_data,
9306 void *cb_priv)
Sathya Perla2ae74082017-08-28 13:40:33 -04009307{
Jiri Pirko9e0fd152017-10-19 15:50:39 +02009308 struct bnxt *bp = cb_priv;
Sathya Perla2ae74082017-08-28 13:40:33 -04009309
Jakub Kicinski312324f2018-01-25 14:00:48 -08009310 if (!bnxt_tc_flower_enabled(bp) ||
9311 !tc_cls_can_offload_and_chain0(bp->dev, type_data))
Sathya Perla2ae74082017-08-28 13:40:33 -04009312 return -EOPNOTSUPP;
9313
Jiri Pirko9e0fd152017-10-19 15:50:39 +02009314 switch (type) {
9315 case TC_SETUP_CLSFLOWER:
9316 return bnxt_tc_setup_flower(bp, bp->pf.fw_fid, type_data);
9317 default:
9318 return -EOPNOTSUPP;
9319 }
9320}
9321
9322static int bnxt_setup_tc_block(struct net_device *dev,
9323 struct tc_block_offload *f)
9324{
9325 struct bnxt *bp = netdev_priv(dev);
9326
9327 if (f->binder_type != TCF_BLOCK_BINDER_TYPE_CLSACT_INGRESS)
9328 return -EOPNOTSUPP;
9329
9330 switch (f->command) {
9331 case TC_BLOCK_BIND:
9332 return tcf_block_cb_register(f->block, bnxt_setup_tc_block_cb,
John Hurley60513bd2018-06-25 14:30:04 -07009333 bp, bp, f->extack);
Jiri Pirko9e0fd152017-10-19 15:50:39 +02009334 case TC_BLOCK_UNBIND:
9335 tcf_block_cb_unregister(f->block, bnxt_setup_tc_block_cb, bp);
9336 return 0;
9337 default:
9338 return -EOPNOTSUPP;
9339 }
Sathya Perla2ae74082017-08-28 13:40:33 -04009340}
9341
Jiri Pirko2572ac52017-08-07 10:15:17 +02009342static int bnxt_setup_tc(struct net_device *dev, enum tc_setup_type type,
Jiri Pirkode4784c2017-08-07 10:15:32 +02009343 void *type_data)
Michael Chanc5e3deb2016-12-02 21:17:15 -05009344{
Sathya Perla2ae74082017-08-28 13:40:33 -04009345 switch (type) {
Jiri Pirko9e0fd152017-10-19 15:50:39 +02009346 case TC_SETUP_BLOCK:
9347 return bnxt_setup_tc_block(dev, type_data);
Nogah Frankel575ed7d2017-11-06 07:23:42 +01009348 case TC_SETUP_QDISC_MQPRIO: {
Sathya Perla2ae74082017-08-28 13:40:33 -04009349 struct tc_mqprio_qopt *mqprio = type_data;
Jiri Pirkode4784c2017-08-07 10:15:32 +02009350
Sathya Perla2ae74082017-08-28 13:40:33 -04009351 mqprio->hw = TC_MQPRIO_HW_OFFLOAD_TCS;
9352
9353 return bnxt_setup_mq_tc(dev, mqprio->num_tc);
9354 }
9355 default:
Jiri Pirko38cf0422017-08-07 10:15:31 +02009356 return -EOPNOTSUPP;
Sathya Perla2ae74082017-08-28 13:40:33 -04009357 }
Michael Chanc5e3deb2016-12-02 21:17:15 -05009358}
9359
Michael Chanc0c050c2015-10-22 16:01:17 -04009360#ifdef CONFIG_RFS_ACCEL
9361static bool bnxt_fltr_match(struct bnxt_ntuple_filter *f1,
9362 struct bnxt_ntuple_filter *f2)
9363{
9364 struct flow_keys *keys1 = &f1->fkeys;
9365 struct flow_keys *keys2 = &f2->fkeys;
9366
9367 if (keys1->addrs.v4addrs.src == keys2->addrs.v4addrs.src &&
9368 keys1->addrs.v4addrs.dst == keys2->addrs.v4addrs.dst &&
9369 keys1->ports.ports == keys2->ports.ports &&
9370 keys1->basic.ip_proto == keys2->basic.ip_proto &&
9371 keys1->basic.n_proto == keys2->basic.n_proto &&
Michael Chan61aad722017-02-12 19:18:14 -05009372 keys1->control.flags == keys2->control.flags &&
Michael Chana54c4d72016-07-25 12:33:35 -04009373 ether_addr_equal(f1->src_mac_addr, f2->src_mac_addr) &&
9374 ether_addr_equal(f1->dst_mac_addr, f2->dst_mac_addr))
Michael Chanc0c050c2015-10-22 16:01:17 -04009375 return true;
9376
9377 return false;
9378}
9379
9380static int bnxt_rx_flow_steer(struct net_device *dev, const struct sk_buff *skb,
9381 u16 rxq_index, u32 flow_id)
9382{
9383 struct bnxt *bp = netdev_priv(dev);
9384 struct bnxt_ntuple_filter *fltr, *new_fltr;
9385 struct flow_keys *fkeys;
9386 struct ethhdr *eth = (struct ethhdr *)skb_mac_header(skb);
Michael Chana54c4d72016-07-25 12:33:35 -04009387 int rc = 0, idx, bit_id, l2_idx = 0;
Michael Chanc0c050c2015-10-22 16:01:17 -04009388 struct hlist_head *head;
9389
Michael Chana54c4d72016-07-25 12:33:35 -04009390 if (!ether_addr_equal(dev->dev_addr, eth->h_dest)) {
9391 struct bnxt_vnic_info *vnic = &bp->vnic_info[0];
9392 int off = 0, j;
9393
9394 netif_addr_lock_bh(dev);
9395 for (j = 0; j < vnic->uc_filter_count; j++, off += ETH_ALEN) {
9396 if (ether_addr_equal(eth->h_dest,
9397 vnic->uc_list + off)) {
9398 l2_idx = j + 1;
9399 break;
9400 }
9401 }
9402 netif_addr_unlock_bh(dev);
9403 if (!l2_idx)
9404 return -EINVAL;
9405 }
Michael Chanc0c050c2015-10-22 16:01:17 -04009406 new_fltr = kzalloc(sizeof(*new_fltr), GFP_ATOMIC);
9407 if (!new_fltr)
9408 return -ENOMEM;
9409
9410 fkeys = &new_fltr->fkeys;
9411 if (!skb_flow_dissect_flow_keys(skb, fkeys, 0)) {
9412 rc = -EPROTONOSUPPORT;
9413 goto err_free;
9414 }
9415
Michael Chandda0e742016-12-29 12:13:40 -05009416 if ((fkeys->basic.n_proto != htons(ETH_P_IP) &&
9417 fkeys->basic.n_proto != htons(ETH_P_IPV6)) ||
Michael Chanc0c050c2015-10-22 16:01:17 -04009418 ((fkeys->basic.ip_proto != IPPROTO_TCP) &&
9419 (fkeys->basic.ip_proto != IPPROTO_UDP))) {
9420 rc = -EPROTONOSUPPORT;
9421 goto err_free;
9422 }
Michael Chandda0e742016-12-29 12:13:40 -05009423 if (fkeys->basic.n_proto == htons(ETH_P_IPV6) &&
9424 bp->hwrm_spec_code < 0x10601) {
9425 rc = -EPROTONOSUPPORT;
9426 goto err_free;
9427 }
Michael Chan61aad722017-02-12 19:18:14 -05009428 if ((fkeys->control.flags & FLOW_DIS_ENCAPSULATION) &&
9429 bp->hwrm_spec_code < 0x10601) {
9430 rc = -EPROTONOSUPPORT;
9431 goto err_free;
9432 }
Michael Chanc0c050c2015-10-22 16:01:17 -04009433
Michael Chana54c4d72016-07-25 12:33:35 -04009434 memcpy(new_fltr->dst_mac_addr, eth->h_dest, ETH_ALEN);
Michael Chanc0c050c2015-10-22 16:01:17 -04009435 memcpy(new_fltr->src_mac_addr, eth->h_source, ETH_ALEN);
9436
9437 idx = skb_get_hash_raw(skb) & BNXT_NTP_FLTR_HASH_MASK;
9438 head = &bp->ntp_fltr_hash_tbl[idx];
9439 rcu_read_lock();
9440 hlist_for_each_entry_rcu(fltr, head, hash) {
9441 if (bnxt_fltr_match(fltr, new_fltr)) {
9442 rcu_read_unlock();
9443 rc = 0;
9444 goto err_free;
9445 }
9446 }
9447 rcu_read_unlock();
9448
9449 spin_lock_bh(&bp->ntp_fltr_lock);
Michael Chan84e86b92015-11-05 16:25:50 -05009450 bit_id = bitmap_find_free_region(bp->ntp_fltr_bmap,
9451 BNXT_NTP_FLTR_MAX_FLTR, 0);
9452 if (bit_id < 0) {
Michael Chanc0c050c2015-10-22 16:01:17 -04009453 spin_unlock_bh(&bp->ntp_fltr_lock);
9454 rc = -ENOMEM;
9455 goto err_free;
9456 }
9457
Michael Chan84e86b92015-11-05 16:25:50 -05009458 new_fltr->sw_id = (u16)bit_id;
Michael Chanc0c050c2015-10-22 16:01:17 -04009459 new_fltr->flow_id = flow_id;
Michael Chana54c4d72016-07-25 12:33:35 -04009460 new_fltr->l2_fltr_idx = l2_idx;
Michael Chanc0c050c2015-10-22 16:01:17 -04009461 new_fltr->rxq = rxq_index;
9462 hlist_add_head_rcu(&new_fltr->hash, head);
9463 bp->ntp_fltr_count++;
9464 spin_unlock_bh(&bp->ntp_fltr_lock);
9465
9466 set_bit(BNXT_RX_NTP_FLTR_SP_EVENT, &bp->sp_event);
Michael Chanc213eae2017-10-13 21:09:29 -04009467 bnxt_queue_sp_work(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04009468
9469 return new_fltr->sw_id;
9470
9471err_free:
9472 kfree(new_fltr);
9473 return rc;
9474}
9475
9476static void bnxt_cfg_ntp_filters(struct bnxt *bp)
9477{
9478 int i;
9479
9480 for (i = 0; i < BNXT_NTP_FLTR_HASH_SIZE; i++) {
9481 struct hlist_head *head;
9482 struct hlist_node *tmp;
9483 struct bnxt_ntuple_filter *fltr;
9484 int rc;
9485
9486 head = &bp->ntp_fltr_hash_tbl[i];
9487 hlist_for_each_entry_safe(fltr, tmp, head, hash) {
9488 bool del = false;
9489
9490 if (test_bit(BNXT_FLTR_VALID, &fltr->state)) {
9491 if (rps_may_expire_flow(bp->dev, fltr->rxq,
9492 fltr->flow_id,
9493 fltr->sw_id)) {
9494 bnxt_hwrm_cfa_ntuple_filter_free(bp,
9495 fltr);
9496 del = true;
9497 }
9498 } else {
9499 rc = bnxt_hwrm_cfa_ntuple_filter_alloc(bp,
9500 fltr);
9501 if (rc)
9502 del = true;
9503 else
9504 set_bit(BNXT_FLTR_VALID, &fltr->state);
9505 }
9506
9507 if (del) {
9508 spin_lock_bh(&bp->ntp_fltr_lock);
9509 hlist_del_rcu(&fltr->hash);
9510 bp->ntp_fltr_count--;
9511 spin_unlock_bh(&bp->ntp_fltr_lock);
9512 synchronize_rcu();
9513 clear_bit(fltr->sw_id, bp->ntp_fltr_bmap);
9514 kfree(fltr);
9515 }
9516 }
9517 }
Jeffrey Huang19241362016-02-26 04:00:00 -05009518 if (test_and_clear_bit(BNXT_HWRM_PF_UNLOAD_SP_EVENT, &bp->sp_event))
9519 netdev_info(bp->dev, "Receive PF driver unload event!");
Michael Chanc0c050c2015-10-22 16:01:17 -04009520}
9521
9522#else
9523
9524static void bnxt_cfg_ntp_filters(struct bnxt *bp)
9525{
9526}
9527
9528#endif /* CONFIG_RFS_ACCEL */
9529
Alexander Duyckad51b8e2016-06-16 12:21:19 -07009530static void bnxt_udp_tunnel_add(struct net_device *dev,
9531 struct udp_tunnel_info *ti)
Michael Chanc0c050c2015-10-22 16:01:17 -04009532{
9533 struct bnxt *bp = netdev_priv(dev);
9534
Alexander Duyckad51b8e2016-06-16 12:21:19 -07009535 if (ti->sa_family != AF_INET6 && ti->sa_family != AF_INET)
9536 return;
9537
Michael Chanc0c050c2015-10-22 16:01:17 -04009538 if (!netif_running(dev))
9539 return;
9540
Alexander Duyckad51b8e2016-06-16 12:21:19 -07009541 switch (ti->type) {
9542 case UDP_TUNNEL_TYPE_VXLAN:
9543 if (bp->vxlan_port_cnt && bp->vxlan_port != ti->port)
9544 return;
Michael Chanc0c050c2015-10-22 16:01:17 -04009545
Alexander Duyckad51b8e2016-06-16 12:21:19 -07009546 bp->vxlan_port_cnt++;
9547 if (bp->vxlan_port_cnt == 1) {
9548 bp->vxlan_port = ti->port;
9549 set_bit(BNXT_VXLAN_ADD_PORT_SP_EVENT, &bp->sp_event);
Michael Chanc213eae2017-10-13 21:09:29 -04009550 bnxt_queue_sp_work(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04009551 }
Alexander Duyckad51b8e2016-06-16 12:21:19 -07009552 break;
Alexander Duyck7cdd5fc2016-06-16 12:21:36 -07009553 case UDP_TUNNEL_TYPE_GENEVE:
9554 if (bp->nge_port_cnt && bp->nge_port != ti->port)
9555 return;
9556
9557 bp->nge_port_cnt++;
9558 if (bp->nge_port_cnt == 1) {
9559 bp->nge_port = ti->port;
9560 set_bit(BNXT_GENEVE_ADD_PORT_SP_EVENT, &bp->sp_event);
9561 }
9562 break;
Alexander Duyckad51b8e2016-06-16 12:21:19 -07009563 default:
9564 return;
Michael Chanc0c050c2015-10-22 16:01:17 -04009565 }
Alexander Duyckad51b8e2016-06-16 12:21:19 -07009566
Michael Chanc213eae2017-10-13 21:09:29 -04009567 bnxt_queue_sp_work(bp);
Alexander Duyckad51b8e2016-06-16 12:21:19 -07009568}
9569
9570static void bnxt_udp_tunnel_del(struct net_device *dev,
9571 struct udp_tunnel_info *ti)
9572{
9573 struct bnxt *bp = netdev_priv(dev);
9574
9575 if (ti->sa_family != AF_INET6 && ti->sa_family != AF_INET)
9576 return;
9577
9578 if (!netif_running(dev))
9579 return;
9580
9581 switch (ti->type) {
9582 case UDP_TUNNEL_TYPE_VXLAN:
9583 if (!bp->vxlan_port_cnt || bp->vxlan_port != ti->port)
9584 return;
9585 bp->vxlan_port_cnt--;
9586
9587 if (bp->vxlan_port_cnt != 0)
9588 return;
9589
9590 set_bit(BNXT_VXLAN_DEL_PORT_SP_EVENT, &bp->sp_event);
9591 break;
Alexander Duyck7cdd5fc2016-06-16 12:21:36 -07009592 case UDP_TUNNEL_TYPE_GENEVE:
9593 if (!bp->nge_port_cnt || bp->nge_port != ti->port)
9594 return;
9595 bp->nge_port_cnt--;
9596
9597 if (bp->nge_port_cnt != 0)
9598 return;
9599
9600 set_bit(BNXT_GENEVE_DEL_PORT_SP_EVENT, &bp->sp_event);
9601 break;
Alexander Duyckad51b8e2016-06-16 12:21:19 -07009602 default:
9603 return;
9604 }
9605
Michael Chanc213eae2017-10-13 21:09:29 -04009606 bnxt_queue_sp_work(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04009607}
9608
Michael Chan39d8ba22017-07-24 12:34:22 -04009609static int bnxt_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
9610 struct net_device *dev, u32 filter_mask,
9611 int nlflags)
9612{
9613 struct bnxt *bp = netdev_priv(dev);
9614
9615 return ndo_dflt_bridge_getlink(skb, pid, seq, dev, bp->br_mode, 0, 0,
9616 nlflags, filter_mask, NULL);
9617}
9618
9619static int bnxt_bridge_setlink(struct net_device *dev, struct nlmsghdr *nlh,
9620 u16 flags)
9621{
9622 struct bnxt *bp = netdev_priv(dev);
9623 struct nlattr *attr, *br_spec;
9624 int rem, rc = 0;
9625
9626 if (bp->hwrm_spec_code < 0x10708 || !BNXT_SINGLE_PF(bp))
9627 return -EOPNOTSUPP;
9628
9629 br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
9630 if (!br_spec)
9631 return -EINVAL;
9632
9633 nla_for_each_nested(attr, br_spec, rem) {
9634 u16 mode;
9635
9636 if (nla_type(attr) != IFLA_BRIDGE_MODE)
9637 continue;
9638
9639 if (nla_len(attr) < sizeof(mode))
9640 return -EINVAL;
9641
9642 mode = nla_get_u16(attr);
9643 if (mode == bp->br_mode)
9644 break;
9645
9646 rc = bnxt_hwrm_set_br_mode(bp, mode);
9647 if (!rc)
9648 bp->br_mode = mode;
9649 break;
9650 }
9651 return rc;
9652}
9653
Sathya Perlac124a622017-07-24 12:34:29 -04009654static int bnxt_get_phys_port_name(struct net_device *dev, char *buf,
9655 size_t len)
9656{
9657 struct bnxt *bp = netdev_priv(dev);
9658 int rc;
9659
9660 /* The PF and it's VF-reps only support the switchdev framework */
9661 if (!BNXT_PF(bp))
9662 return -EOPNOTSUPP;
9663
Sathya Perla53f70b82017-07-25 13:28:41 -04009664 rc = snprintf(buf, len, "p%d", bp->pf.port_id);
Sathya Perlac124a622017-07-24 12:34:29 -04009665
9666 if (rc >= len)
9667 return -EOPNOTSUPP;
9668 return 0;
9669}
9670
9671int bnxt_port_attr_get(struct bnxt *bp, struct switchdev_attr *attr)
9672{
9673 if (bp->eswitch_mode != DEVLINK_ESWITCH_MODE_SWITCHDEV)
9674 return -EOPNOTSUPP;
9675
9676 /* The PF and it's VF-reps only support the switchdev framework */
9677 if (!BNXT_PF(bp))
9678 return -EOPNOTSUPP;
9679
9680 switch (attr->id) {
9681 case SWITCHDEV_ATTR_ID_PORT_PARENT_ID:
Sathya Perladd4ea1d2018-01-17 03:21:16 -05009682 attr->u.ppid.id_len = sizeof(bp->switch_id);
9683 memcpy(attr->u.ppid.id, bp->switch_id, attr->u.ppid.id_len);
Sathya Perlac124a622017-07-24 12:34:29 -04009684 break;
9685 default:
9686 return -EOPNOTSUPP;
9687 }
9688 return 0;
9689}
9690
9691static int bnxt_swdev_port_attr_get(struct net_device *dev,
9692 struct switchdev_attr *attr)
9693{
9694 return bnxt_port_attr_get(netdev_priv(dev), attr);
9695}
9696
9697static const struct switchdev_ops bnxt_switchdev_ops = {
9698 .switchdev_port_attr_get = bnxt_swdev_port_attr_get
9699};
9700
Michael Chanc0c050c2015-10-22 16:01:17 -04009701static const struct net_device_ops bnxt_netdev_ops = {
9702 .ndo_open = bnxt_open,
9703 .ndo_start_xmit = bnxt_start_xmit,
9704 .ndo_stop = bnxt_close,
9705 .ndo_get_stats64 = bnxt_get_stats64,
9706 .ndo_set_rx_mode = bnxt_set_rx_mode,
9707 .ndo_do_ioctl = bnxt_ioctl,
9708 .ndo_validate_addr = eth_validate_addr,
9709 .ndo_set_mac_address = bnxt_change_mac_addr,
9710 .ndo_change_mtu = bnxt_change_mtu,
9711 .ndo_fix_features = bnxt_fix_features,
9712 .ndo_set_features = bnxt_set_features,
9713 .ndo_tx_timeout = bnxt_tx_timeout,
9714#ifdef CONFIG_BNXT_SRIOV
9715 .ndo_get_vf_config = bnxt_get_vf_config,
9716 .ndo_set_vf_mac = bnxt_set_vf_mac,
9717 .ndo_set_vf_vlan = bnxt_set_vf_vlan,
9718 .ndo_set_vf_rate = bnxt_set_vf_bw,
9719 .ndo_set_vf_link_state = bnxt_set_vf_link_state,
9720 .ndo_set_vf_spoofchk = bnxt_set_vf_spoofchk,
Vasundhara Volam746df132018-03-31 13:54:10 -04009721 .ndo_set_vf_trust = bnxt_set_vf_trust,
Michael Chanc0c050c2015-10-22 16:01:17 -04009722#endif
Michael Chanc0c050c2015-10-22 16:01:17 -04009723 .ndo_setup_tc = bnxt_setup_tc,
9724#ifdef CONFIG_RFS_ACCEL
9725 .ndo_rx_flow_steer = bnxt_rx_flow_steer,
9726#endif
Alexander Duyckad51b8e2016-06-16 12:21:19 -07009727 .ndo_udp_tunnel_add = bnxt_udp_tunnel_add,
9728 .ndo_udp_tunnel_del = bnxt_udp_tunnel_del,
Jakub Kicinskif4e63522017-11-03 13:56:16 -07009729 .ndo_bpf = bnxt_xdp,
Michael Chan39d8ba22017-07-24 12:34:22 -04009730 .ndo_bridge_getlink = bnxt_bridge_getlink,
9731 .ndo_bridge_setlink = bnxt_bridge_setlink,
Sathya Perlac124a622017-07-24 12:34:29 -04009732 .ndo_get_phys_port_name = bnxt_get_phys_port_name
Michael Chanc0c050c2015-10-22 16:01:17 -04009733};
9734
9735static void bnxt_remove_one(struct pci_dev *pdev)
9736{
9737 struct net_device *dev = pci_get_drvdata(pdev);
9738 struct bnxt *bp = netdev_priv(dev);
9739
Sathya Perla4ab0c6a2017-07-24 12:34:27 -04009740 if (BNXT_PF(bp)) {
Michael Chanc0c050c2015-10-22 16:01:17 -04009741 bnxt_sriov_disable(bp);
Sathya Perla4ab0c6a2017-07-24 12:34:27 -04009742 bnxt_dl_unregister(bp);
9743 }
Michael Chanc0c050c2015-10-22 16:01:17 -04009744
Satish Baddipadige6316ea62016-03-07 15:38:48 -05009745 pci_disable_pcie_error_reporting(pdev);
Michael Chanc0c050c2015-10-22 16:01:17 -04009746 unregister_netdev(dev);
Sathya Perla2ae74082017-08-28 13:40:33 -04009747 bnxt_shutdown_tc(bp);
Michael Chanc213eae2017-10-13 21:09:29 -04009748 bnxt_cancel_sp_work(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04009749 bp->sp_event = 0;
9750
Michael Chan78095922016-12-07 00:26:16 -05009751 bnxt_clear_int_mode(bp);
Jeffrey Huangbe58a0d2015-12-27 18:19:18 -05009752 bnxt_hwrm_func_drv_unrgtr(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04009753 bnxt_free_hwrm_resources(bp);
Deepak Khungare605db82017-05-29 19:06:04 -04009754 bnxt_free_hwrm_short_cmd_req(bp);
Michael Chaneb513652017-04-04 18:14:12 -04009755 bnxt_ethtool_free(bp);
Michael Chan7df4ae92016-12-02 21:17:17 -05009756 bnxt_dcb_free(bp);
Michael Chana588e452016-12-07 00:26:21 -05009757 kfree(bp->edev);
9758 bp->edev = NULL;
Michael Chan98f04cf2018-10-14 07:02:43 -04009759 bnxt_free_ctx_mem(bp);
9760 kfree(bp->ctx);
9761 bp->ctx = NULL;
Sathya Perla17086392017-02-20 19:25:18 -05009762 bnxt_cleanup_pci(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -04009763 free_netdev(dev);
Michael Chanc0c050c2015-10-22 16:01:17 -04009764}
9765
9766static int bnxt_probe_phy(struct bnxt *bp)
9767{
9768 int rc = 0;
9769 struct bnxt_link_info *link_info = &bp->link_info;
Michael Chanc0c050c2015-10-22 16:01:17 -04009770
Michael Chan170ce012016-04-05 14:08:57 -04009771 rc = bnxt_hwrm_phy_qcaps(bp);
9772 if (rc) {
9773 netdev_err(bp->dev, "Probe phy can't get phy capabilities (rc: %x)\n",
9774 rc);
9775 return rc;
9776 }
Michael Chane2dc9b62017-10-13 21:09:30 -04009777 mutex_init(&bp->link_lock);
Michael Chan170ce012016-04-05 14:08:57 -04009778
Michael Chanc0c050c2015-10-22 16:01:17 -04009779 rc = bnxt_update_link(bp, false);
9780 if (rc) {
9781 netdev_err(bp->dev, "Probe phy can't update link (rc: %x)\n",
9782 rc);
9783 return rc;
9784 }
9785
Michael Chan93ed8112016-06-13 02:25:37 -04009786 /* Older firmware does not have supported_auto_speeds, so assume
9787 * that all supported speeds can be autonegotiated.
9788 */
9789 if (link_info->auto_link_speeds && !link_info->support_auto_speeds)
9790 link_info->support_auto_speeds = link_info->support_speeds;
9791
Michael Chanc0c050c2015-10-22 16:01:17 -04009792 /*initialize the ethool setting copy with NVM settings */
Michael Chan0d8abf02016-02-10 17:33:47 -05009793 if (BNXT_AUTO_MODE(link_info->auto_mode)) {
Michael Chanc9ee9512016-04-05 14:08:56 -04009794 link_info->autoneg = BNXT_AUTONEG_SPEED;
9795 if (bp->hwrm_spec_code >= 0x10201) {
9796 if (link_info->auto_pause_setting &
9797 PORT_PHY_CFG_REQ_AUTO_PAUSE_AUTONEG_PAUSE)
9798 link_info->autoneg |= BNXT_AUTONEG_FLOW_CTRL;
9799 } else {
9800 link_info->autoneg |= BNXT_AUTONEG_FLOW_CTRL;
9801 }
Michael Chan0d8abf02016-02-10 17:33:47 -05009802 link_info->advertising = link_info->auto_link_speeds;
Michael Chan0d8abf02016-02-10 17:33:47 -05009803 } else {
9804 link_info->req_link_speed = link_info->force_link_speed;
9805 link_info->req_duplex = link_info->duplex_setting;
Michael Chanc0c050c2015-10-22 16:01:17 -04009806 }
Michael Chanc9ee9512016-04-05 14:08:56 -04009807 if (link_info->autoneg & BNXT_AUTONEG_FLOW_CTRL)
9808 link_info->req_flow_ctrl =
9809 link_info->auto_pause_setting & BNXT_LINK_PAUSE_BOTH;
9810 else
9811 link_info->req_flow_ctrl = link_info->force_pause_setting;
Michael Chanc0c050c2015-10-22 16:01:17 -04009812 return rc;
9813}
9814
9815static int bnxt_get_max_irq(struct pci_dev *pdev)
9816{
9817 u16 ctrl;
9818
9819 if (!pdev->msix_cap)
9820 return 1;
9821
9822 pci_read_config_word(pdev, pdev->msix_cap + PCI_MSIX_FLAGS, &ctrl);
9823 return (ctrl & PCI_MSIX_FLAGS_QSIZE) + 1;
9824}
9825
Michael Chan6e6c5a52016-01-02 23:45:02 -05009826static void _bnxt_get_max_rings(struct bnxt *bp, int *max_rx, int *max_tx,
9827 int *max_cp)
Michael Chanc0c050c2015-10-22 16:01:17 -04009828{
Michael Chan6a4f2942018-01-17 03:21:06 -05009829 struct bnxt_hw_resc *hw_resc = &bp->hw_resc;
Michael Chane30fbc32018-12-09 07:01:02 -05009830 int max_ring_grps = 0, max_irq;
Michael Chanc0c050c2015-10-22 16:01:17 -04009831
Michael Chan6a4f2942018-01-17 03:21:06 -05009832 *max_tx = hw_resc->max_tx_rings;
9833 *max_rx = hw_resc->max_rx_rings;
Michael Chane30fbc32018-12-09 07:01:02 -05009834 *max_cp = bnxt_get_max_func_cp_rings_for_en(bp);
9835 max_irq = min_t(int, bnxt_get_max_func_irqs(bp) -
9836 bnxt_get_ulp_msix_num(bp),
9837 bnxt_get_max_func_stat_ctxs(bp));
9838 if (!(bp->flags & BNXT_FLAG_CHIP_P5))
9839 *max_cp = min_t(int, *max_cp, max_irq);
Michael Chan6a4f2942018-01-17 03:21:06 -05009840 max_ring_grps = hw_resc->max_hw_ring_grps;
Prashant Sreedharan76595192016-07-18 07:15:22 -04009841 if (BNXT_CHIP_TYPE_NITRO_A0(bp) && BNXT_PF(bp)) {
9842 *max_cp -= 1;
9843 *max_rx -= 2;
9844 }
Michael Chanc0c050c2015-10-22 16:01:17 -04009845 if (bp->flags & BNXT_FLAG_AGG_RINGS)
9846 *max_rx >>= 1;
Michael Chane30fbc32018-12-09 07:01:02 -05009847 if (bp->flags & BNXT_FLAG_CHIP_P5) {
9848 bnxt_trim_rings(bp, max_rx, max_tx, *max_cp, false);
9849 /* On P5 chips, max_cp output param should be available NQs */
9850 *max_cp = max_irq;
9851 }
Michael Chanb72d4a62015-12-27 18:19:27 -05009852 *max_rx = min_t(int, *max_rx, max_ring_grps);
Michael Chan6e6c5a52016-01-02 23:45:02 -05009853}
9854
9855int bnxt_get_max_rings(struct bnxt *bp, int *max_rx, int *max_tx, bool shared)
9856{
9857 int rx, tx, cp;
9858
9859 _bnxt_get_max_rings(bp, &rx, &tx, &cp);
Michael Chan78f058a2018-07-09 02:24:49 -04009860 *max_rx = rx;
9861 *max_tx = tx;
Michael Chan6e6c5a52016-01-02 23:45:02 -05009862 if (!rx || !tx || !cp)
9863 return -ENOMEM;
9864
Michael Chan6e6c5a52016-01-02 23:45:02 -05009865 return bnxt_trim_rings(bp, max_rx, max_tx, cp, shared);
9866}
9867
Michael Chane4060d32016-12-07 00:26:19 -05009868static int bnxt_get_dflt_rings(struct bnxt *bp, int *max_rx, int *max_tx,
9869 bool shared)
9870{
9871 int rc;
9872
9873 rc = bnxt_get_max_rings(bp, max_rx, max_tx, shared);
Michael Chanbdbd1eb2016-12-29 12:13:43 -05009874 if (rc && (bp->flags & BNXT_FLAG_AGG_RINGS)) {
9875 /* Not enough rings, try disabling agg rings. */
9876 bp->flags &= ~BNXT_FLAG_AGG_RINGS;
9877 rc = bnxt_get_max_rings(bp, max_rx, max_tx, shared);
Michael Chan07f4fde2018-07-09 02:24:48 -04009878 if (rc) {
9879 /* set BNXT_FLAG_AGG_RINGS back for consistency */
9880 bp->flags |= BNXT_FLAG_AGG_RINGS;
Michael Chanbdbd1eb2016-12-29 12:13:43 -05009881 return rc;
Michael Chan07f4fde2018-07-09 02:24:48 -04009882 }
Michael Chanbdbd1eb2016-12-29 12:13:43 -05009883 bp->flags |= BNXT_FLAG_NO_AGG_RINGS;
Michael Chan1054aee2017-12-16 03:09:42 -05009884 bp->dev->hw_features &= ~(NETIF_F_LRO | NETIF_F_GRO_HW);
9885 bp->dev->features &= ~(NETIF_F_LRO | NETIF_F_GRO_HW);
Michael Chanbdbd1eb2016-12-29 12:13:43 -05009886 bnxt_set_ring_params(bp);
9887 }
Michael Chane4060d32016-12-07 00:26:19 -05009888
9889 if (bp->flags & BNXT_FLAG_ROCE_CAP) {
9890 int max_cp, max_stat, max_irq;
9891
9892 /* Reserve minimum resources for RoCE */
9893 max_cp = bnxt_get_max_func_cp_rings(bp);
9894 max_stat = bnxt_get_max_func_stat_ctxs(bp);
9895 max_irq = bnxt_get_max_func_irqs(bp);
9896 if (max_cp <= BNXT_MIN_ROCE_CP_RINGS ||
9897 max_irq <= BNXT_MIN_ROCE_CP_RINGS ||
9898 max_stat <= BNXT_MIN_ROCE_STAT_CTXS)
9899 return 0;
9900
9901 max_cp -= BNXT_MIN_ROCE_CP_RINGS;
9902 max_irq -= BNXT_MIN_ROCE_CP_RINGS;
9903 max_stat -= BNXT_MIN_ROCE_STAT_CTXS;
9904 max_cp = min_t(int, max_cp, max_irq);
9905 max_cp = min_t(int, max_cp, max_stat);
9906 rc = bnxt_trim_rings(bp, max_rx, max_tx, max_cp, shared);
9907 if (rc)
9908 rc = 0;
9909 }
9910 return rc;
9911}
9912
Michael Chan58ea8012018-01-17 03:21:08 -05009913/* In initial default shared ring setting, each shared ring must have a
9914 * RX/TX ring pair.
9915 */
9916static void bnxt_trim_dflt_sh_rings(struct bnxt *bp)
9917{
9918 bp->cp_nr_rings = min_t(int, bp->tx_nr_rings_per_tc, bp->rx_nr_rings);
9919 bp->rx_nr_rings = bp->cp_nr_rings;
9920 bp->tx_nr_rings_per_tc = bp->cp_nr_rings;
9921 bp->tx_nr_rings = bp->tx_nr_rings_per_tc;
9922}
9923
Michael Chan702c2212017-05-29 19:06:10 -04009924static int bnxt_set_dflt_rings(struct bnxt *bp, bool sh)
Michael Chan6e6c5a52016-01-02 23:45:02 -05009925{
9926 int dflt_rings, max_rx_rings, max_tx_rings, rc;
Michael Chan6e6c5a52016-01-02 23:45:02 -05009927
Michael Chan2773dfb2018-04-26 17:44:42 -04009928 if (!bnxt_can_reserve_rings(bp))
9929 return 0;
9930
Michael Chan6e6c5a52016-01-02 23:45:02 -05009931 if (sh)
9932 bp->flags |= BNXT_FLAG_SHARED_RINGS;
9933 dflt_rings = netif_get_num_default_rss_queues();
Michael Chan1d3ef132018-03-31 13:54:07 -04009934 /* Reduce default rings on multi-port cards so that total default
9935 * rings do not exceed CPU count.
9936 */
9937 if (bp->port_count > 1) {
9938 int max_rings =
9939 max_t(int, num_online_cpus() / bp->port_count, 1);
9940
9941 dflt_rings = min_t(int, dflt_rings, max_rings);
9942 }
Michael Chane4060d32016-12-07 00:26:19 -05009943 rc = bnxt_get_dflt_rings(bp, &max_rx_rings, &max_tx_rings, sh);
Michael Chan6e6c5a52016-01-02 23:45:02 -05009944 if (rc)
9945 return rc;
9946 bp->rx_nr_rings = min_t(int, dflt_rings, max_rx_rings);
9947 bp->tx_nr_rings_per_tc = min_t(int, dflt_rings, max_tx_rings);
Michael Chan58ea8012018-01-17 03:21:08 -05009948 if (sh)
9949 bnxt_trim_dflt_sh_rings(bp);
9950 else
9951 bp->cp_nr_rings = bp->tx_nr_rings_per_tc + bp->rx_nr_rings;
9952 bp->tx_nr_rings = bp->tx_nr_rings_per_tc;
Michael Chan391be5c2016-12-29 12:13:41 -05009953
Michael Chan674f50a2018-01-17 03:21:09 -05009954 rc = __bnxt_reserve_rings(bp);
Michael Chan391be5c2016-12-29 12:13:41 -05009955 if (rc)
9956 netdev_warn(bp->dev, "Unable to reserve tx rings\n");
Michael Chan58ea8012018-01-17 03:21:08 -05009957 bp->tx_nr_rings_per_tc = bp->tx_nr_rings;
9958 if (sh)
9959 bnxt_trim_dflt_sh_rings(bp);
Michael Chan391be5c2016-12-29 12:13:41 -05009960
Michael Chan674f50a2018-01-17 03:21:09 -05009961 /* Rings may have been trimmed, re-reserve the trimmed rings. */
9962 if (bnxt_need_reserve_rings(bp)) {
9963 rc = __bnxt_reserve_rings(bp);
9964 if (rc)
9965 netdev_warn(bp->dev, "2nd rings reservation failed.\n");
9966 bp->tx_nr_rings_per_tc = bp->tx_nr_rings;
9967 }
Michael Chan6e6c5a52016-01-02 23:45:02 -05009968 bp->num_stat_ctxs = bp->cp_nr_rings;
Prashant Sreedharan76595192016-07-18 07:15:22 -04009969 if (BNXT_CHIP_TYPE_NITRO_A0(bp)) {
9970 bp->rx_nr_rings++;
9971 bp->cp_nr_rings++;
9972 }
Michael Chan6e6c5a52016-01-02 23:45:02 -05009973 return rc;
Michael Chanc0c050c2015-10-22 16:01:17 -04009974}
9975
Michael Chan47558ac2018-04-26 17:44:44 -04009976static int bnxt_init_dflt_ring_mode(struct bnxt *bp)
9977{
9978 int rc;
9979
9980 if (bp->tx_nr_rings)
9981 return 0;
9982
Michael Chan6b95c3e2018-09-03 04:23:17 -04009983 bnxt_ulp_irq_stop(bp);
9984 bnxt_clear_int_mode(bp);
Michael Chan47558ac2018-04-26 17:44:44 -04009985 rc = bnxt_set_dflt_rings(bp, true);
9986 if (rc) {
9987 netdev_err(bp->dev, "Not enough rings available.\n");
Michael Chan6b95c3e2018-09-03 04:23:17 -04009988 goto init_dflt_ring_err;
Michael Chan47558ac2018-04-26 17:44:44 -04009989 }
9990 rc = bnxt_init_int_mode(bp);
9991 if (rc)
Michael Chan6b95c3e2018-09-03 04:23:17 -04009992 goto init_dflt_ring_err;
9993
Michael Chan47558ac2018-04-26 17:44:44 -04009994 bp->tx_nr_rings_per_tc = bp->tx_nr_rings;
9995 if (bnxt_rfs_supported(bp) && bnxt_rfs_capable(bp)) {
9996 bp->flags |= BNXT_FLAG_RFS;
9997 bp->dev->features |= NETIF_F_NTUPLE;
9998 }
Michael Chan6b95c3e2018-09-03 04:23:17 -04009999init_dflt_ring_err:
10000 bnxt_ulp_irq_restart(bp, rc);
10001 return rc;
Michael Chan47558ac2018-04-26 17:44:44 -040010002}
10003
Michael Chan80fcaf42018-01-17 03:21:05 -050010004int bnxt_restore_pf_fw_resources(struct bnxt *bp)
Michael Chan7b08f662016-12-07 00:26:18 -050010005{
Michael Chan80fcaf42018-01-17 03:21:05 -050010006 int rc;
10007
Michael Chan7b08f662016-12-07 00:26:18 -050010008 ASSERT_RTNL();
10009 bnxt_hwrm_func_qcaps(bp);
Venkat Duvvuru1a037782018-03-09 23:46:09 -050010010
10011 if (netif_running(bp->dev))
10012 __bnxt_close_nic(bp, true, false);
10013
Michael Chanec86f142018-03-31 13:54:21 -040010014 bnxt_ulp_irq_stop(bp);
Michael Chan80fcaf42018-01-17 03:21:05 -050010015 bnxt_clear_int_mode(bp);
10016 rc = bnxt_init_int_mode(bp);
Michael Chanec86f142018-03-31 13:54:21 -040010017 bnxt_ulp_irq_restart(bp, rc);
Venkat Duvvuru1a037782018-03-09 23:46:09 -050010018
10019 if (netif_running(bp->dev)) {
10020 if (rc)
10021 dev_close(bp->dev);
10022 else
10023 rc = bnxt_open_nic(bp, true, false);
10024 }
10025
Michael Chan80fcaf42018-01-17 03:21:05 -050010026 return rc;
Michael Chan7b08f662016-12-07 00:26:18 -050010027}
10028
Michael Chana22a6ac2017-08-23 19:34:05 -040010029static int bnxt_init_mac_addr(struct bnxt *bp)
10030{
10031 int rc = 0;
10032
10033 if (BNXT_PF(bp)) {
10034 memcpy(bp->dev->dev_addr, bp->pf.mac_addr, ETH_ALEN);
10035 } else {
10036#ifdef CONFIG_BNXT_SRIOV
10037 struct bnxt_vf_info *vf = &bp->vf;
Michael Chan28ea3342018-09-14 15:41:29 -040010038 bool strict_approval = true;
Michael Chana22a6ac2017-08-23 19:34:05 -040010039
10040 if (is_valid_ether_addr(vf->mac_addr)) {
Vasundhara Volam91cdda42018-01-17 03:21:14 -050010041 /* overwrite netdev dev_addr with admin VF MAC */
Michael Chana22a6ac2017-08-23 19:34:05 -040010042 memcpy(bp->dev->dev_addr, vf->mac_addr, ETH_ALEN);
Michael Chan28ea3342018-09-14 15:41:29 -040010043 /* Older PF driver or firmware may not approve this
10044 * correctly.
10045 */
10046 strict_approval = false;
Michael Chana22a6ac2017-08-23 19:34:05 -040010047 } else {
10048 eth_hw_addr_random(bp->dev);
Michael Chana22a6ac2017-08-23 19:34:05 -040010049 }
Michael Chan28ea3342018-09-14 15:41:29 -040010050 rc = bnxt_approve_mac(bp, bp->dev->dev_addr, strict_approval);
Michael Chana22a6ac2017-08-23 19:34:05 -040010051#endif
10052 }
10053 return rc;
10054}
10055
Michael Chanc0c050c2015-10-22 16:01:17 -040010056static int bnxt_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
10057{
10058 static int version_printed;
10059 struct net_device *dev;
10060 struct bnxt *bp;
Michael Chan6e6c5a52016-01-02 23:45:02 -050010061 int rc, max_irqs;
Michael Chanc0c050c2015-10-22 16:01:17 -040010062
Ray Jui4e003382017-02-20 19:25:16 -050010063 if (pci_is_bridge(pdev))
Prashant Sreedharanfa853dd2016-07-18 07:15:25 -040010064 return -ENODEV;
10065
Michael Chanc0c050c2015-10-22 16:01:17 -040010066 if (version_printed++ == 0)
10067 pr_info("%s", version);
10068
10069 max_irqs = bnxt_get_max_irq(pdev);
10070 dev = alloc_etherdev_mq(sizeof(*bp), max_irqs);
10071 if (!dev)
10072 return -ENOMEM;
10073
10074 bp = netdev_priv(dev);
Michael Chan9c1fabd2018-10-14 07:02:47 -040010075 bnxt_set_max_func_irqs(bp, max_irqs);
Michael Chanc0c050c2015-10-22 16:01:17 -040010076
10077 if (bnxt_vf_pciid(ent->driver_data))
10078 bp->flags |= BNXT_FLAG_VF;
10079
Michael Chan2bcfa6f2015-12-27 18:19:24 -050010080 if (pdev->msix_cap)
Michael Chanc0c050c2015-10-22 16:01:17 -040010081 bp->flags |= BNXT_FLAG_MSIX_CAP;
Michael Chanc0c050c2015-10-22 16:01:17 -040010082
10083 rc = bnxt_init_board(pdev, dev);
10084 if (rc < 0)
10085 goto init_err_free;
10086
10087 dev->netdev_ops = &bnxt_netdev_ops;
10088 dev->watchdog_timeo = BNXT_TX_TIMEOUT;
10089 dev->ethtool_ops = &bnxt_ethtool_ops;
David S. Millerbc880552017-07-24 21:20:16 -070010090 SWITCHDEV_SET_OPS(dev, &bnxt_switchdev_ops);
Michael Chanc0c050c2015-10-22 16:01:17 -040010091 pci_set_drvdata(pdev, dev);
10092
Prashant Sreedharan3e8060f2016-07-18 07:15:20 -040010093 rc = bnxt_alloc_hwrm_resources(bp);
10094 if (rc)
Sathya Perla17086392017-02-20 19:25:18 -050010095 goto init_err_pci_clean;
Prashant Sreedharan3e8060f2016-07-18 07:15:20 -040010096
10097 mutex_init(&bp->hwrm_cmd_lock);
10098 rc = bnxt_hwrm_ver_get(bp);
10099 if (rc)
Sathya Perla17086392017-02-20 19:25:18 -050010100 goto init_err_pci_clean;
Prashant Sreedharan3e8060f2016-07-18 07:15:20 -040010101
Michael Chan1dfddc42018-10-14 07:02:39 -040010102 if ((bp->fw_cap & BNXT_FW_CAP_SHORT_CMD) ||
10103 bp->hwrm_max_ext_req_len > BNXT_HWRM_MAX_REQ_LEN) {
Deepak Khungare605db82017-05-29 19:06:04 -040010104 rc = bnxt_alloc_hwrm_short_cmd_req(bp);
10105 if (rc)
10106 goto init_err_pci_clean;
10107 }
10108
Michael Chane38287b2018-10-14 07:02:45 -040010109 if (BNXT_CHIP_P5(bp))
10110 bp->flags |= BNXT_FLAG_CHIP_P5;
10111
Michael Chan3c2217a2017-03-08 18:44:32 -050010112 rc = bnxt_hwrm_func_reset(bp);
10113 if (rc)
10114 goto init_err_pci_clean;
10115
Rob Swindell5ac67d82016-09-19 03:58:03 -040010116 bnxt_hwrm_fw_set_time(bp);
10117
Michael Chanc0c050c2015-10-22 16:01:17 -040010118 dev->hw_features = NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM | NETIF_F_SG |
10119 NETIF_F_TSO | NETIF_F_TSO6 |
10120 NETIF_F_GSO_UDP_TUNNEL | NETIF_F_GSO_GRE |
Tom Herbert7e133182016-05-18 09:06:10 -070010121 NETIF_F_GSO_IPXIP4 |
Alexander Duyck152971e2016-05-02 09:38:55 -070010122 NETIF_F_GSO_UDP_TUNNEL_CSUM | NETIF_F_GSO_GRE_CSUM |
10123 NETIF_F_GSO_PARTIAL | NETIF_F_RXHASH |
Prashant Sreedharan3e8060f2016-07-18 07:15:20 -040010124 NETIF_F_RXCSUM | NETIF_F_GRO;
10125
Michael Chane38287b2018-10-14 07:02:45 -040010126 if (BNXT_SUPPORTS_TPA(bp))
Prashant Sreedharan3e8060f2016-07-18 07:15:20 -040010127 dev->hw_features |= NETIF_F_LRO;
Michael Chanc0c050c2015-10-22 16:01:17 -040010128
Michael Chanc0c050c2015-10-22 16:01:17 -040010129 dev->hw_enc_features =
10130 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM | NETIF_F_SG |
10131 NETIF_F_TSO | NETIF_F_TSO6 |
10132 NETIF_F_GSO_UDP_TUNNEL | NETIF_F_GSO_GRE |
Alexander Duyck152971e2016-05-02 09:38:55 -070010133 NETIF_F_GSO_UDP_TUNNEL_CSUM | NETIF_F_GSO_GRE_CSUM |
Tom Herbert7e133182016-05-18 09:06:10 -070010134 NETIF_F_GSO_IPXIP4 | NETIF_F_GSO_PARTIAL;
Alexander Duyck152971e2016-05-02 09:38:55 -070010135 dev->gso_partial_features = NETIF_F_GSO_UDP_TUNNEL_CSUM |
10136 NETIF_F_GSO_GRE_CSUM;
Michael Chanc0c050c2015-10-22 16:01:17 -040010137 dev->vlan_features = dev->hw_features | NETIF_F_HIGHDMA;
10138 dev->hw_features |= NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_CTAG_TX |
10139 NETIF_F_HW_VLAN_STAG_RX | NETIF_F_HW_VLAN_STAG_TX;
Michael Chane38287b2018-10-14 07:02:45 -040010140 if (BNXT_SUPPORTS_TPA(bp))
Michael Chan1054aee2017-12-16 03:09:42 -050010141 dev->hw_features |= NETIF_F_GRO_HW;
Michael Chanc0c050c2015-10-22 16:01:17 -040010142 dev->features |= dev->hw_features | NETIF_F_HIGHDMA;
Michael Chan1054aee2017-12-16 03:09:42 -050010143 if (dev->features & NETIF_F_GRO_HW)
10144 dev->features &= ~NETIF_F_LRO;
Michael Chanc0c050c2015-10-22 16:01:17 -040010145 dev->priv_flags |= IFF_UNICAST_FLT;
10146
10147#ifdef CONFIG_BNXT_SRIOV
10148 init_waitqueue_head(&bp->sriov_cfg_wait);
Sathya Perla4ab0c6a2017-07-24 12:34:27 -040010149 mutex_init(&bp->sriov_lock);
Michael Chanc0c050c2015-10-22 16:01:17 -040010150#endif
Michael Chane38287b2018-10-14 07:02:45 -040010151 if (BNXT_SUPPORTS_TPA(bp)) {
10152 bp->gro_func = bnxt_gro_func_5730x;
10153 if (BNXT_CHIP_P4(bp))
10154 bp->gro_func = bnxt_gro_func_5731x;
10155 }
10156 if (!BNXT_CHIP_P4_PLUS(bp))
Michael Chan434c9752017-05-29 19:06:08 -040010157 bp->flags |= BNXT_FLAG_DOUBLE_DB;
Michael Chan309369c2016-06-13 02:25:34 -040010158
Michael Chanc0c050c2015-10-22 16:01:17 -040010159 rc = bnxt_hwrm_func_drv_rgtr(bp);
10160 if (rc)
Sathya Perla17086392017-02-20 19:25:18 -050010161 goto init_err_pci_clean;
Michael Chanc0c050c2015-10-22 16:01:17 -040010162
Michael Chana1653b12016-12-07 00:26:20 -050010163 rc = bnxt_hwrm_func_rgtr_async_events(bp, NULL, 0);
10164 if (rc)
Sathya Perla17086392017-02-20 19:25:18 -050010165 goto init_err_pci_clean;
Michael Chana1653b12016-12-07 00:26:20 -050010166
Michael Chana588e452016-12-07 00:26:21 -050010167 bp->ulp_probe = bnxt_ulp_probe;
10168
Michael Chan98f04cf2018-10-14 07:02:43 -040010169 rc = bnxt_hwrm_queue_qportcfg(bp);
10170 if (rc) {
10171 netdev_err(bp->dev, "hwrm query qportcfg failure rc: %x\n",
10172 rc);
10173 rc = -1;
10174 goto init_err_pci_clean;
10175 }
Michael Chanc0c050c2015-10-22 16:01:17 -040010176 /* Get the MAX capabilities for this function */
10177 rc = bnxt_hwrm_func_qcaps(bp);
10178 if (rc) {
10179 netdev_err(bp->dev, "hwrm query capability failure rc: %x\n",
10180 rc);
10181 rc = -1;
Sathya Perla17086392017-02-20 19:25:18 -050010182 goto init_err_pci_clean;
Michael Chanc0c050c2015-10-22 16:01:17 -040010183 }
Michael Chana22a6ac2017-08-23 19:34:05 -040010184 rc = bnxt_init_mac_addr(bp);
10185 if (rc) {
10186 dev_err(&pdev->dev, "Unable to initialize mac address.\n");
10187 rc = -EADDRNOTAVAIL;
10188 goto init_err_pci_clean;
10189 }
Michael Chanc0c050c2015-10-22 16:01:17 -040010190
Satish Baddipadige567b2ab2016-06-13 02:25:31 -040010191 bnxt_hwrm_func_qcfg(bp);
Michael Chan6ba99032018-11-15 03:25:37 -050010192 bnxt_hwrm_vnic_qcaps(bp);
Michael Chan5ad2cbe2017-01-13 01:32:03 -050010193 bnxt_hwrm_port_led_qcaps(bp);
Michael Chaneb513652017-04-04 18:14:12 -040010194 bnxt_ethtool_init(bp);
Michael Chan87fe6032017-05-16 16:39:43 -040010195 bnxt_dcb_init(bp);
Satish Baddipadige567b2ab2016-06-13 02:25:31 -040010196
Michael Chan7eb9bb32017-10-26 11:51:25 -040010197 /* MTU range: 60 - FW defined max */
10198 dev->min_mtu = ETH_ZLEN;
10199 dev->max_mtu = bp->max_mtu;
10200
Michael Chand5430d32017-08-28 13:40:31 -040010201 rc = bnxt_probe_phy(bp);
10202 if (rc)
10203 goto init_err_pci_clean;
10204
Michael Chanc61fb992017-02-06 16:55:36 -050010205 bnxt_set_rx_skb_mode(bp, false);
Michael Chanc0c050c2015-10-22 16:01:17 -040010206 bnxt_set_tpa_flags(bp);
10207 bnxt_set_ring_params(bp);
Michael Chan702c2212017-05-29 19:06:10 -040010208 rc = bnxt_set_dflt_rings(bp, true);
Michael Chanbdbd1eb2016-12-29 12:13:43 -050010209 if (rc) {
10210 netdev_err(bp->dev, "Not enough rings available.\n");
10211 rc = -ENOMEM;
Sathya Perla17086392017-02-20 19:25:18 -050010212 goto init_err_pci_clean;
Michael Chanbdbd1eb2016-12-29 12:13:43 -050010213 }
Michael Chanc0c050c2015-10-22 16:01:17 -040010214
Michael Chan87da7f72016-11-16 21:13:09 -050010215 /* Default RSS hash cfg. */
10216 bp->rss_hash_cfg = VNIC_RSS_CFG_REQ_HASH_TYPE_IPV4 |
10217 VNIC_RSS_CFG_REQ_HASH_TYPE_TCP_IPV4 |
10218 VNIC_RSS_CFG_REQ_HASH_TYPE_IPV6 |
10219 VNIC_RSS_CFG_REQ_HASH_TYPE_TCP_IPV6;
Michael Chane38287b2018-10-14 07:02:45 -040010220 if (BNXT_CHIP_P4(bp) && bp->hwrm_spec_code >= 0x10501) {
Michael Chan87da7f72016-11-16 21:13:09 -050010221 bp->flags |= BNXT_FLAG_UDP_RSS_CAP;
10222 bp->rss_hash_cfg |= VNIC_RSS_CFG_REQ_HASH_TYPE_UDP_IPV4 |
10223 VNIC_RSS_CFG_REQ_HASH_TYPE_UDP_IPV6;
10224 }
10225
Michael Chan8079e8f2016-12-29 12:13:37 -050010226 if (bnxt_rfs_supported(bp)) {
Michael Chan2bcfa6f2015-12-27 18:19:24 -050010227 dev->hw_features |= NETIF_F_NTUPLE;
10228 if (bnxt_rfs_capable(bp)) {
10229 bp->flags |= BNXT_FLAG_RFS;
10230 dev->features |= NETIF_F_NTUPLE;
10231 }
10232 }
10233
Michael Chanc0c050c2015-10-22 16:01:17 -040010234 if (dev->hw_features & NETIF_F_HW_VLAN_CTAG_RX)
10235 bp->flags |= BNXT_FLAG_STRIP_VLAN;
10236
Michael Chan78095922016-12-07 00:26:16 -050010237 rc = bnxt_init_int_mode(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -040010238 if (rc)
Sathya Perla17086392017-02-20 19:25:18 -050010239 goto init_err_pci_clean;
Michael Chanc0c050c2015-10-22 16:01:17 -040010240
Michael Chan832aed12018-03-09 23:46:07 -050010241 /* No TC has been set yet and rings may have been trimmed due to
10242 * limited MSIX, so we re-initialize the TX rings per TC.
10243 */
10244 bp->tx_nr_rings_per_tc = bp->tx_nr_rings;
10245
Michael Chanc1ef1462017-04-04 18:14:07 -040010246 bnxt_get_wol_settings(bp);
Michael Chand196ece2017-04-04 18:14:08 -040010247 if (bp->flags & BNXT_FLAG_WOL_CAP)
10248 device_set_wakeup_enable(&pdev->dev, bp->wol);
10249 else
10250 device_set_wakeup_capable(&pdev->dev, false);
Michael Chanc1ef1462017-04-04 18:14:07 -040010251
Michael Chanc3480a62018-01-17 03:21:15 -050010252 bnxt_hwrm_set_cache_line_size(bp, cache_line_size());
10253
Michael Chan74706af2018-10-14 07:02:40 -040010254 bnxt_hwrm_coal_params_qcaps(bp);
10255
Michael Chanc213eae2017-10-13 21:09:29 -040010256 if (BNXT_PF(bp)) {
10257 if (!bnxt_pf_wq) {
10258 bnxt_pf_wq =
10259 create_singlethread_workqueue("bnxt_pf_wq");
10260 if (!bnxt_pf_wq) {
10261 dev_err(&pdev->dev, "Unable to create workqueue.\n");
10262 goto init_err_pci_clean;
10263 }
10264 }
Sathya Perla2ae74082017-08-28 13:40:33 -040010265 bnxt_init_tc(bp);
Michael Chanc213eae2017-10-13 21:09:29 -040010266 }
Sathya Perla2ae74082017-08-28 13:40:33 -040010267
Michael Chan78095922016-12-07 00:26:16 -050010268 rc = register_netdev(dev);
10269 if (rc)
Sathya Perla2ae74082017-08-28 13:40:33 -040010270 goto init_err_cleanup_tc;
Michael Chan78095922016-12-07 00:26:16 -050010271
Sathya Perla4ab0c6a2017-07-24 12:34:27 -040010272 if (BNXT_PF(bp))
10273 bnxt_dl_register(bp);
10274
Michael Chanc0c050c2015-10-22 16:01:17 -040010275 netdev_info(dev, "%s found at mem %lx, node addr %pM\n",
10276 board_info[ent->driver_data].name,
10277 (long)pci_resource_start(pdev, 0), dev->dev_addr);
Bjorn Helgaasaf125b72018-03-30 14:09:54 -050010278 pcie_print_link_status(pdev);
Ajit Khaparde90c4f782016-05-15 03:04:45 -040010279
Michael Chanc0c050c2015-10-22 16:01:17 -040010280 return 0;
10281
Sathya Perla2ae74082017-08-28 13:40:33 -040010282init_err_cleanup_tc:
10283 bnxt_shutdown_tc(bp);
Michael Chan78095922016-12-07 00:26:16 -050010284 bnxt_clear_int_mode(bp);
10285
Sathya Perla17086392017-02-20 19:25:18 -050010286init_err_pci_clean:
Venkat Duvvurua2bf74f2018-10-05 00:26:02 -040010287 bnxt_free_hwrm_resources(bp);
Michael Chan98f04cf2018-10-14 07:02:43 -040010288 bnxt_free_ctx_mem(bp);
10289 kfree(bp->ctx);
10290 bp->ctx = NULL;
Sathya Perla17086392017-02-20 19:25:18 -050010291 bnxt_cleanup_pci(bp);
Michael Chanc0c050c2015-10-22 16:01:17 -040010292
10293init_err_free:
10294 free_netdev(dev);
10295 return rc;
10296}
10297
Michael Chand196ece2017-04-04 18:14:08 -040010298static void bnxt_shutdown(struct pci_dev *pdev)
10299{
10300 struct net_device *dev = pci_get_drvdata(pdev);
10301 struct bnxt *bp;
10302
10303 if (!dev)
10304 return;
10305
10306 rtnl_lock();
10307 bp = netdev_priv(dev);
10308 if (!bp)
10309 goto shutdown_exit;
10310
10311 if (netif_running(dev))
10312 dev_close(dev);
10313
Ray Juia7f3f932017-12-01 03:13:02 -050010314 bnxt_ulp_shutdown(bp);
10315
Michael Chand196ece2017-04-04 18:14:08 -040010316 if (system_state == SYSTEM_POWER_OFF) {
10317 bnxt_clear_int_mode(bp);
10318 pci_wake_from_d3(pdev, bp->wol);
10319 pci_set_power_state(pdev, PCI_D3hot);
10320 }
10321
10322shutdown_exit:
10323 rtnl_unlock();
10324}
10325
Michael Chanf65a2042017-04-04 18:14:11 -040010326#ifdef CONFIG_PM_SLEEP
10327static int bnxt_suspend(struct device *device)
10328{
10329 struct pci_dev *pdev = to_pci_dev(device);
10330 struct net_device *dev = pci_get_drvdata(pdev);
10331 struct bnxt *bp = netdev_priv(dev);
10332 int rc = 0;
10333
10334 rtnl_lock();
10335 if (netif_running(dev)) {
10336 netif_device_detach(dev);
10337 rc = bnxt_close(dev);
10338 }
10339 bnxt_hwrm_func_drv_unrgtr(bp);
10340 rtnl_unlock();
10341 return rc;
10342}
10343
10344static int bnxt_resume(struct device *device)
10345{
10346 struct pci_dev *pdev = to_pci_dev(device);
10347 struct net_device *dev = pci_get_drvdata(pdev);
10348 struct bnxt *bp = netdev_priv(dev);
10349 int rc = 0;
10350
10351 rtnl_lock();
10352 if (bnxt_hwrm_ver_get(bp) || bnxt_hwrm_func_drv_rgtr(bp)) {
10353 rc = -ENODEV;
10354 goto resume_exit;
10355 }
10356 rc = bnxt_hwrm_func_reset(bp);
10357 if (rc) {
10358 rc = -EBUSY;
10359 goto resume_exit;
10360 }
10361 bnxt_get_wol_settings(bp);
10362 if (netif_running(dev)) {
10363 rc = bnxt_open(dev);
10364 if (!rc)
10365 netif_device_attach(dev);
10366 }
10367
10368resume_exit:
10369 rtnl_unlock();
10370 return rc;
10371}
10372
10373static SIMPLE_DEV_PM_OPS(bnxt_pm_ops, bnxt_suspend, bnxt_resume);
10374#define BNXT_PM_OPS (&bnxt_pm_ops)
10375
10376#else
10377
10378#define BNXT_PM_OPS NULL
10379
10380#endif /* CONFIG_PM_SLEEP */
10381
Satish Baddipadige6316ea62016-03-07 15:38:48 -050010382/**
10383 * bnxt_io_error_detected - called when PCI error is detected
10384 * @pdev: Pointer to PCI device
10385 * @state: The current pci connection state
10386 *
10387 * This function is called after a PCI bus error affecting
10388 * this device has been detected.
10389 */
10390static pci_ers_result_t bnxt_io_error_detected(struct pci_dev *pdev,
10391 pci_channel_state_t state)
10392{
10393 struct net_device *netdev = pci_get_drvdata(pdev);
Michael Chana588e452016-12-07 00:26:21 -050010394 struct bnxt *bp = netdev_priv(netdev);
Satish Baddipadige6316ea62016-03-07 15:38:48 -050010395
10396 netdev_info(netdev, "PCI I/O error detected\n");
10397
10398 rtnl_lock();
10399 netif_device_detach(netdev);
10400
Michael Chana588e452016-12-07 00:26:21 -050010401 bnxt_ulp_stop(bp);
10402
Satish Baddipadige6316ea62016-03-07 15:38:48 -050010403 if (state == pci_channel_io_perm_failure) {
10404 rtnl_unlock();
10405 return PCI_ERS_RESULT_DISCONNECT;
10406 }
10407
10408 if (netif_running(netdev))
10409 bnxt_close(netdev);
10410
10411 pci_disable_device(pdev);
10412 rtnl_unlock();
10413
10414 /* Request a slot slot reset. */
10415 return PCI_ERS_RESULT_NEED_RESET;
10416}
10417
10418/**
10419 * bnxt_io_slot_reset - called after the pci bus has been reset.
10420 * @pdev: Pointer to PCI device
10421 *
10422 * Restart the card from scratch, as if from a cold-boot.
10423 * At this point, the card has exprienced a hard reset,
10424 * followed by fixups by BIOS, and has its config space
10425 * set up identically to what it was at cold boot.
10426 */
10427static pci_ers_result_t bnxt_io_slot_reset(struct pci_dev *pdev)
10428{
10429 struct net_device *netdev = pci_get_drvdata(pdev);
10430 struct bnxt *bp = netdev_priv(netdev);
10431 int err = 0;
10432 pci_ers_result_t result = PCI_ERS_RESULT_DISCONNECT;
10433
10434 netdev_info(bp->dev, "PCI Slot Reset\n");
10435
10436 rtnl_lock();
10437
10438 if (pci_enable_device(pdev)) {
10439 dev_err(&pdev->dev,
10440 "Cannot re-enable PCI device after reset.\n");
10441 } else {
10442 pci_set_master(pdev);
10443
Michael Chanaa8ed022016-12-07 00:26:17 -050010444 err = bnxt_hwrm_func_reset(bp);
10445 if (!err && netif_running(netdev))
Satish Baddipadige6316ea62016-03-07 15:38:48 -050010446 err = bnxt_open(netdev);
10447
Michael Chana588e452016-12-07 00:26:21 -050010448 if (!err) {
Satish Baddipadige6316ea62016-03-07 15:38:48 -050010449 result = PCI_ERS_RESULT_RECOVERED;
Michael Chana588e452016-12-07 00:26:21 -050010450 bnxt_ulp_start(bp);
10451 }
Satish Baddipadige6316ea62016-03-07 15:38:48 -050010452 }
10453
10454 if (result != PCI_ERS_RESULT_RECOVERED && netif_running(netdev))
10455 dev_close(netdev);
10456
10457 rtnl_unlock();
10458
Satish Baddipadige6316ea62016-03-07 15:38:48 -050010459 return PCI_ERS_RESULT_RECOVERED;
10460}
10461
10462/**
10463 * bnxt_io_resume - called when traffic can start flowing again.
10464 * @pdev: Pointer to PCI device
10465 *
10466 * This callback is called when the error recovery driver tells
10467 * us that its OK to resume normal operation.
10468 */
10469static void bnxt_io_resume(struct pci_dev *pdev)
10470{
10471 struct net_device *netdev = pci_get_drvdata(pdev);
10472
10473 rtnl_lock();
10474
10475 netif_device_attach(netdev);
10476
10477 rtnl_unlock();
10478}
10479
10480static const struct pci_error_handlers bnxt_err_handler = {
10481 .error_detected = bnxt_io_error_detected,
10482 .slot_reset = bnxt_io_slot_reset,
10483 .resume = bnxt_io_resume
10484};
10485
Michael Chanc0c050c2015-10-22 16:01:17 -040010486static struct pci_driver bnxt_pci_driver = {
10487 .name = DRV_MODULE_NAME,
10488 .id_table = bnxt_pci_tbl,
10489 .probe = bnxt_init_one,
10490 .remove = bnxt_remove_one,
Michael Chand196ece2017-04-04 18:14:08 -040010491 .shutdown = bnxt_shutdown,
Michael Chanf65a2042017-04-04 18:14:11 -040010492 .driver.pm = BNXT_PM_OPS,
Satish Baddipadige6316ea62016-03-07 15:38:48 -050010493 .err_handler = &bnxt_err_handler,
Michael Chanc0c050c2015-10-22 16:01:17 -040010494#if defined(CONFIG_BNXT_SRIOV)
10495 .sriov_configure = bnxt_sriov_configure,
10496#endif
10497};
10498
Michael Chanc213eae2017-10-13 21:09:29 -040010499static int __init bnxt_init(void)
10500{
Andy Gospodarekcabfb092018-04-26 17:44:40 -040010501 bnxt_debug_init();
Michael Chanc213eae2017-10-13 21:09:29 -040010502 return pci_register_driver(&bnxt_pci_driver);
10503}
10504
10505static void __exit bnxt_exit(void)
10506{
10507 pci_unregister_driver(&bnxt_pci_driver);
10508 if (bnxt_pf_wq)
10509 destroy_workqueue(bnxt_pf_wq);
Andy Gospodarekcabfb092018-04-26 17:44:40 -040010510 bnxt_debug_exit();
Michael Chanc213eae2017-10-13 21:09:29 -040010511}
10512
10513module_init(bnxt_init);
10514module_exit(bnxt_exit);