blob: 24017588f5317107142897ca77aa0668046532d5 [file] [log] [blame]
Sunil Goutham4863dea2015-05-26 19:20:15 -07001/*
2 * Copyright (C) 2015 Cavium, Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of version 2 of the GNU General Public License
6 * as published by the Free Software Foundation.
7 */
8
9#include <linux/module.h>
10#include <linux/interrupt.h>
11#include <linux/pci.h>
12#include <linux/netdevice.h>
Sunil Gouthamaa2e2592015-08-30 12:29:13 +030013#include <linux/if_vlan.h>
Sunil Goutham4863dea2015-05-26 19:20:15 -070014#include <linux/etherdevice.h>
15#include <linux/ethtool.h>
16#include <linux/log2.h>
17#include <linux/prefetch.h>
18#include <linux/irq.h>
Sunil Goutham83abb7d2017-03-07 18:09:08 +053019#include <linux/iommu.h>
Sunil Goutham4863dea2015-05-26 19:20:15 -070020
21#include "nic_reg.h"
22#include "nic.h"
23#include "nicvf_queues.h"
24#include "thunder_bgx.h"
25
26#define DRV_NAME "thunder-nicvf"
27#define DRV_VERSION "1.0"
28
29/* Supported devices */
30static const struct pci_device_id nicvf_id_table[] = {
31 { PCI_DEVICE_SUB(PCI_VENDOR_ID_CAVIUM,
32 PCI_DEVICE_ID_THUNDER_NIC_VF,
Sunil Gouthamf7ff0ae2016-08-12 16:51:25 +053033 PCI_VENDOR_ID_CAVIUM,
34 PCI_SUBSYS_DEVID_88XX_NIC_VF) },
Sunil Goutham4863dea2015-05-26 19:20:15 -070035 { PCI_DEVICE_SUB(PCI_VENDOR_ID_CAVIUM,
36 PCI_DEVICE_ID_THUNDER_PASS1_NIC_VF,
Sunil Gouthamf7ff0ae2016-08-12 16:51:25 +053037 PCI_VENDOR_ID_CAVIUM,
38 PCI_SUBSYS_DEVID_88XX_PASS1_NIC_VF) },
39 { PCI_DEVICE_SUB(PCI_VENDOR_ID_CAVIUM,
40 PCI_DEVICE_ID_THUNDER_NIC_VF,
41 PCI_VENDOR_ID_CAVIUM,
42 PCI_SUBSYS_DEVID_81XX_NIC_VF) },
43 { PCI_DEVICE_SUB(PCI_VENDOR_ID_CAVIUM,
44 PCI_DEVICE_ID_THUNDER_NIC_VF,
45 PCI_VENDOR_ID_CAVIUM,
46 PCI_SUBSYS_DEVID_83XX_NIC_VF) },
Sunil Goutham4863dea2015-05-26 19:20:15 -070047 { 0, } /* end of table */
48};
49
50MODULE_AUTHOR("Sunil Goutham");
51MODULE_DESCRIPTION("Cavium Thunder NIC Virtual Function Driver");
52MODULE_LICENSE("GPL v2");
53MODULE_VERSION(DRV_VERSION);
54MODULE_DEVICE_TABLE(pci, nicvf_id_table);
55
56static int debug = 0x00;
57module_param(debug, int, 0644);
58MODULE_PARM_DESC(debug, "Debug message level bitmap");
59
60static int cpi_alg = CPI_ALG_NONE;
61module_param(cpi_alg, int, S_IRUGO);
62MODULE_PARM_DESC(cpi_alg,
63 "PFC algorithm (0=none, 1=VLAN, 2=VLAN16, 3=IP Diffserv)");
64
Sunil Goutham92dc8762015-08-30 12:29:15 +030065static inline u8 nicvf_netdev_qidx(struct nicvf *nic, u8 qidx)
66{
67 if (nic->sqs_mode)
68 return qidx + ((nic->sqs_id + 1) * MAX_CMP_QUEUES_PER_QS);
69 else
70 return qidx;
71}
72
Sunil Goutham4863dea2015-05-26 19:20:15 -070073/* The Cavium ThunderX network controller can *only* be found in SoCs
74 * containing the ThunderX ARM64 CPU implementation. All accesses to the device
75 * registers on this platform are implicitly strongly ordered with respect
76 * to memory accesses. So writeq_relaxed() and readq_relaxed() are safe to use
77 * with no memory barriers in this driver. The readq()/writeq() functions add
78 * explicit ordering operation which in this case are redundant, and only
79 * add overhead.
80 */
81
82/* Register read/write APIs */
83void nicvf_reg_write(struct nicvf *nic, u64 offset, u64 val)
84{
85 writeq_relaxed(val, nic->reg_base + offset);
86}
87
88u64 nicvf_reg_read(struct nicvf *nic, u64 offset)
89{
90 return readq_relaxed(nic->reg_base + offset);
91}
92
93void nicvf_queue_reg_write(struct nicvf *nic, u64 offset,
94 u64 qidx, u64 val)
95{
96 void __iomem *addr = nic->reg_base + offset;
97
98 writeq_relaxed(val, addr + (qidx << NIC_Q_NUM_SHIFT));
99}
100
101u64 nicvf_queue_reg_read(struct nicvf *nic, u64 offset, u64 qidx)
102{
103 void __iomem *addr = nic->reg_base + offset;
104
105 return readq_relaxed(addr + (qidx << NIC_Q_NUM_SHIFT));
106}
107
108/* VF -> PF mailbox communication */
Aleksey Makarov2cd2a192015-06-02 11:00:20 -0700109static void nicvf_write_to_mbx(struct nicvf *nic, union nic_mbx *mbx)
110{
111 u64 *msg = (u64 *)mbx;
112
113 nicvf_reg_write(nic, NIC_VF_PF_MAILBOX_0_1 + 0, msg[0]);
114 nicvf_reg_write(nic, NIC_VF_PF_MAILBOX_0_1 + 8, msg[1]);
115}
116
Sunil Goutham4863dea2015-05-26 19:20:15 -0700117int nicvf_send_msg_to_pf(struct nicvf *nic, union nic_mbx *mbx)
118{
119 int timeout = NIC_MBOX_MSG_TIMEOUT;
120 int sleep = 10;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700121
122 nic->pf_acked = false;
123 nic->pf_nacked = false;
124
Aleksey Makarov2cd2a192015-06-02 11:00:20 -0700125 nicvf_write_to_mbx(nic, mbx);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700126
127 /* Wait for previous message to be acked, timeout 2sec */
128 while (!nic->pf_acked) {
Radoslaw Biernackiecae29c2016-08-12 16:51:38 +0530129 if (nic->pf_nacked) {
130 netdev_err(nic->netdev,
131 "PF NACK to mbox msg 0x%02x from VF%d\n",
132 (mbx->msg.msg & 0xFF), nic->vf_id);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700133 return -EINVAL;
Radoslaw Biernackiecae29c2016-08-12 16:51:38 +0530134 }
Sunil Goutham4863dea2015-05-26 19:20:15 -0700135 msleep(sleep);
136 if (nic->pf_acked)
137 break;
138 timeout -= sleep;
139 if (!timeout) {
140 netdev_err(nic->netdev,
Radoslaw Biernackiecae29c2016-08-12 16:51:38 +0530141 "PF didn't ACK to mbox msg 0x%02x from VF%d\n",
Sunil Goutham4863dea2015-05-26 19:20:15 -0700142 (mbx->msg.msg & 0xFF), nic->vf_id);
143 return -EBUSY;
144 }
145 }
146 return 0;
147}
148
149/* Checks if VF is able to comminicate with PF
150* and also gets the VNIC number this VF is associated to.
151*/
152static int nicvf_check_pf_ready(struct nicvf *nic)
153{
Aleksey Makarov2cd2a192015-06-02 11:00:20 -0700154 union nic_mbx mbx = {};
155
156 mbx.msg.msg = NIC_MBOX_MSG_READY;
Sunil Goutham6051cba2015-08-30 12:29:11 +0300157 if (nicvf_send_msg_to_pf(nic, &mbx)) {
158 netdev_err(nic->netdev,
159 "PF didn't respond to READY msg\n");
160 return 0;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700161 }
Sunil Goutham6051cba2015-08-30 12:29:11 +0300162
Sunil Goutham4863dea2015-05-26 19:20:15 -0700163 return 1;
164}
165
Aleksey Makarovfd7ec062015-06-02 11:00:23 -0700166static void nicvf_read_bgx_stats(struct nicvf *nic, struct bgx_stats_msg *bgx)
167{
168 if (bgx->rx)
169 nic->bgx_stats.rx_stats[bgx->idx] = bgx->stats;
170 else
171 nic->bgx_stats.tx_stats[bgx->idx] = bgx->stats;
172}
173
Sunil Goutham4863dea2015-05-26 19:20:15 -0700174static void nicvf_handle_mbx_intr(struct nicvf *nic)
175{
176 union nic_mbx mbx = {};
177 u64 *mbx_data;
178 u64 mbx_addr;
179 int i;
180
181 mbx_addr = NIC_VF_PF_MAILBOX_0_1;
182 mbx_data = (u64 *)&mbx;
183
184 for (i = 0; i < NIC_PF_VF_MAILBOX_SIZE; i++) {
185 *mbx_data = nicvf_reg_read(nic, mbx_addr);
186 mbx_data++;
187 mbx_addr += sizeof(u64);
188 }
189
190 netdev_dbg(nic->netdev, "Mbox message: msg: 0x%x\n", mbx.msg.msg);
191 switch (mbx.msg.msg) {
192 case NIC_MBOX_MSG_READY:
Sunil Goutham6051cba2015-08-30 12:29:11 +0300193 nic->pf_acked = true;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700194 nic->vf_id = mbx.nic_cfg.vf_id & 0x7F;
195 nic->tns_mode = mbx.nic_cfg.tns_mode & 0x7F;
196 nic->node = mbx.nic_cfg.node_id;
Pavel Fedinbd049a92015-06-23 17:51:06 +0300197 if (!nic->set_mac_pending)
198 ether_addr_copy(nic->netdev->dev_addr,
199 mbx.nic_cfg.mac_addr);
Sunil Goutham92dc8762015-08-30 12:29:15 +0300200 nic->sqs_mode = mbx.nic_cfg.sqs_mode;
Sunil Gouthamd77a2382015-08-30 12:29:16 +0300201 nic->loopback_supported = mbx.nic_cfg.loopback_supported;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700202 nic->link_up = false;
203 nic->duplex = 0;
204 nic->speed = 0;
205 break;
206 case NIC_MBOX_MSG_ACK:
207 nic->pf_acked = true;
208 break;
209 case NIC_MBOX_MSG_NACK:
210 nic->pf_nacked = true;
211 break;
212 case NIC_MBOX_MSG_RSS_SIZE:
213 nic->rss_info.rss_size = mbx.rss_size.ind_tbl_size;
214 nic->pf_acked = true;
215 break;
216 case NIC_MBOX_MSG_BGX_STATS:
217 nicvf_read_bgx_stats(nic, &mbx.bgx_stats);
218 nic->pf_acked = true;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700219 break;
220 case NIC_MBOX_MSG_BGX_LINK_CHANGE:
221 nic->pf_acked = true;
222 nic->link_up = mbx.link_status.link_up;
223 nic->duplex = mbx.link_status.duplex;
224 nic->speed = mbx.link_status.speed;
Thanneeru Srinivasulu1cc70252016-11-24 14:48:01 +0530225 nic->mac_type = mbx.link_status.mac_type;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700226 if (nic->link_up) {
227 netdev_info(nic->netdev, "%s: Link is Up %d Mbps %s\n",
228 nic->netdev->name, nic->speed,
229 nic->duplex == DUPLEX_FULL ?
230 "Full duplex" : "Half duplex");
231 netif_carrier_on(nic->netdev);
Sunil Gouthamb49087d2015-07-29 16:49:44 +0300232 netif_tx_start_all_queues(nic->netdev);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700233 } else {
234 netdev_info(nic->netdev, "%s: Link is Down\n",
235 nic->netdev->name);
236 netif_carrier_off(nic->netdev);
237 netif_tx_stop_all_queues(nic->netdev);
238 }
239 break;
Sunil Goutham92dc8762015-08-30 12:29:15 +0300240 case NIC_MBOX_MSG_ALLOC_SQS:
241 nic->sqs_count = mbx.sqs_alloc.qs_count;
242 nic->pf_acked = true;
243 break;
244 case NIC_MBOX_MSG_SNICVF_PTR:
245 /* Primary VF: make note of secondary VF's pointer
246 * to be used while packet transmission.
247 */
248 nic->snicvf[mbx.nicvf.sqs_id] =
249 (struct nicvf *)mbx.nicvf.nicvf;
250 nic->pf_acked = true;
251 break;
252 case NIC_MBOX_MSG_PNICVF_PTR:
253 /* Secondary VF/Qset: make note of primary VF's pointer
254 * to be used while packet reception, to handover packet
255 * to primary VF's netdev.
256 */
257 nic->pnicvf = (struct nicvf *)mbx.nicvf.nicvf;
258 nic->pf_acked = true;
259 break;
Sunil Goutham430da202016-11-24 14:48:03 +0530260 case NIC_MBOX_MSG_PFC:
261 nic->pfc.autoneg = mbx.pfc.autoneg;
262 nic->pfc.fc_rx = mbx.pfc.fc_rx;
263 nic->pfc.fc_tx = mbx.pfc.fc_tx;
264 nic->pf_acked = true;
265 break;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700266 default:
267 netdev_err(nic->netdev,
268 "Invalid message from PF, msg 0x%x\n", mbx.msg.msg);
269 break;
270 }
271 nicvf_clear_intr(nic, NICVF_INTR_MBOX, 0);
272}
273
274static int nicvf_hw_set_mac_addr(struct nicvf *nic, struct net_device *netdev)
275{
276 union nic_mbx mbx = {};
Sunil Goutham4863dea2015-05-26 19:20:15 -0700277
278 mbx.mac.msg = NIC_MBOX_MSG_SET_MAC;
279 mbx.mac.vf_id = nic->vf_id;
Aleksey Makarove610cb32015-06-02 11:00:21 -0700280 ether_addr_copy(mbx.mac.mac_addr, netdev->dev_addr);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700281
282 return nicvf_send_msg_to_pf(nic, &mbx);
283}
284
Aleksey Makarovfd7ec062015-06-02 11:00:23 -0700285static void nicvf_config_cpi(struct nicvf *nic)
Sunil Goutham4863dea2015-05-26 19:20:15 -0700286{
287 union nic_mbx mbx = {};
288
289 mbx.cpi_cfg.msg = NIC_MBOX_MSG_CPI_CFG;
290 mbx.cpi_cfg.vf_id = nic->vf_id;
291 mbx.cpi_cfg.cpi_alg = nic->cpi_alg;
292 mbx.cpi_cfg.rq_cnt = nic->qs->rq_cnt;
293
294 nicvf_send_msg_to_pf(nic, &mbx);
295}
296
Aleksey Makarovfd7ec062015-06-02 11:00:23 -0700297static void nicvf_get_rss_size(struct nicvf *nic)
Sunil Goutham4863dea2015-05-26 19:20:15 -0700298{
299 union nic_mbx mbx = {};
300
301 mbx.rss_size.msg = NIC_MBOX_MSG_RSS_SIZE;
302 mbx.rss_size.vf_id = nic->vf_id;
303 nicvf_send_msg_to_pf(nic, &mbx);
304}
305
306void nicvf_config_rss(struct nicvf *nic)
307{
308 union nic_mbx mbx = {};
309 struct nicvf_rss_info *rss = &nic->rss_info;
310 int ind_tbl_len = rss->rss_size;
311 int i, nextq = 0;
312
313 mbx.rss_cfg.vf_id = nic->vf_id;
314 mbx.rss_cfg.hash_bits = rss->hash_bits;
315 while (ind_tbl_len) {
316 mbx.rss_cfg.tbl_offset = nextq;
317 mbx.rss_cfg.tbl_len = min(ind_tbl_len,
318 RSS_IND_TBL_LEN_PER_MBX_MSG);
319 mbx.rss_cfg.msg = mbx.rss_cfg.tbl_offset ?
320 NIC_MBOX_MSG_RSS_CFG_CONT : NIC_MBOX_MSG_RSS_CFG;
321
322 for (i = 0; i < mbx.rss_cfg.tbl_len; i++)
323 mbx.rss_cfg.ind_tbl[i] = rss->ind_tbl[nextq++];
324
325 nicvf_send_msg_to_pf(nic, &mbx);
326
327 ind_tbl_len -= mbx.rss_cfg.tbl_len;
328 }
329}
330
331void nicvf_set_rss_key(struct nicvf *nic)
332{
333 struct nicvf_rss_info *rss = &nic->rss_info;
334 u64 key_addr = NIC_VNIC_RSS_KEY_0_4;
335 int idx;
336
337 for (idx = 0; idx < RSS_HASH_KEY_SIZE; idx++) {
338 nicvf_reg_write(nic, key_addr, rss->key[idx]);
339 key_addr += sizeof(u64);
340 }
341}
342
343static int nicvf_rss_init(struct nicvf *nic)
344{
345 struct nicvf_rss_info *rss = &nic->rss_info;
346 int idx;
347
348 nicvf_get_rss_size(nic);
349
Sunil Goutham38bb5d42015-08-30 12:29:12 +0300350 if (cpi_alg != CPI_ALG_NONE) {
Sunil Goutham4863dea2015-05-26 19:20:15 -0700351 rss->enable = false;
352 rss->hash_bits = 0;
353 return 0;
354 }
355
356 rss->enable = true;
357
Sunil Goutham0052c922016-08-12 16:51:43 +0530358 netdev_rss_key_fill(rss->key, RSS_HASH_KEY_SIZE * sizeof(u64));
Sunil Goutham4863dea2015-05-26 19:20:15 -0700359 nicvf_set_rss_key(nic);
360
361 rss->cfg = RSS_IP_HASH_ENA | RSS_TCP_HASH_ENA | RSS_UDP_HASH_ENA;
362 nicvf_reg_write(nic, NIC_VNIC_RSS_CFG, rss->cfg);
363
364 rss->hash_bits = ilog2(rounddown_pow_of_two(rss->rss_size));
365
366 for (idx = 0; idx < rss->rss_size; idx++)
367 rss->ind_tbl[idx] = ethtool_rxfh_indir_default(idx,
Sunil Goutham92dc8762015-08-30 12:29:15 +0300368 nic->rx_queues);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700369 nicvf_config_rss(nic);
370 return 1;
371}
372
Sunil Goutham92dc8762015-08-30 12:29:15 +0300373/* Request PF to allocate additional Qsets */
374static void nicvf_request_sqs(struct nicvf *nic)
375{
376 union nic_mbx mbx = {};
377 int sqs;
378 int sqs_count = nic->sqs_count;
379 int rx_queues = 0, tx_queues = 0;
380
381 /* Only primary VF should request */
382 if (nic->sqs_mode || !nic->sqs_count)
383 return;
384
385 mbx.sqs_alloc.msg = NIC_MBOX_MSG_ALLOC_SQS;
386 mbx.sqs_alloc.vf_id = nic->vf_id;
387 mbx.sqs_alloc.qs_count = nic->sqs_count;
388 if (nicvf_send_msg_to_pf(nic, &mbx)) {
389 /* No response from PF */
390 nic->sqs_count = 0;
391 return;
392 }
393
394 /* Return if no Secondary Qsets available */
395 if (!nic->sqs_count)
396 return;
397
398 if (nic->rx_queues > MAX_RCV_QUEUES_PER_QS)
399 rx_queues = nic->rx_queues - MAX_RCV_QUEUES_PER_QS;
400 if (nic->tx_queues > MAX_SND_QUEUES_PER_QS)
401 tx_queues = nic->tx_queues - MAX_SND_QUEUES_PER_QS;
402
403 /* Set no of Rx/Tx queues in each of the SQsets */
404 for (sqs = 0; sqs < nic->sqs_count; sqs++) {
405 mbx.nicvf.msg = NIC_MBOX_MSG_SNICVF_PTR;
406 mbx.nicvf.vf_id = nic->vf_id;
407 mbx.nicvf.sqs_id = sqs;
408 nicvf_send_msg_to_pf(nic, &mbx);
409
410 nic->snicvf[sqs]->sqs_id = sqs;
411 if (rx_queues > MAX_RCV_QUEUES_PER_QS) {
412 nic->snicvf[sqs]->qs->rq_cnt = MAX_RCV_QUEUES_PER_QS;
413 rx_queues -= MAX_RCV_QUEUES_PER_QS;
414 } else {
415 nic->snicvf[sqs]->qs->rq_cnt = rx_queues;
416 rx_queues = 0;
417 }
418
419 if (tx_queues > MAX_SND_QUEUES_PER_QS) {
420 nic->snicvf[sqs]->qs->sq_cnt = MAX_SND_QUEUES_PER_QS;
421 tx_queues -= MAX_SND_QUEUES_PER_QS;
422 } else {
423 nic->snicvf[sqs]->qs->sq_cnt = tx_queues;
424 tx_queues = 0;
425 }
426
427 nic->snicvf[sqs]->qs->cq_cnt =
428 max(nic->snicvf[sqs]->qs->rq_cnt, nic->snicvf[sqs]->qs->sq_cnt);
429
430 /* Initialize secondary Qset's queues and its interrupts */
431 nicvf_open(nic->snicvf[sqs]->netdev);
432 }
433
434 /* Update stack with actual Rx/Tx queue count allocated */
435 if (sqs_count != nic->sqs_count)
436 nicvf_set_real_num_queues(nic->netdev,
437 nic->tx_queues, nic->rx_queues);
438}
439
440/* Send this Qset's nicvf pointer to PF.
441 * PF inturn sends primary VF's nicvf struct to secondary Qsets/VFs
442 * so that packets received by these Qsets can use primary VF's netdev
443 */
444static void nicvf_send_vf_struct(struct nicvf *nic)
445{
446 union nic_mbx mbx = {};
447
448 mbx.nicvf.msg = NIC_MBOX_MSG_NICVF_PTR;
449 mbx.nicvf.sqs_mode = nic->sqs_mode;
450 mbx.nicvf.nicvf = (u64)nic;
451 nicvf_send_msg_to_pf(nic, &mbx);
452}
453
454static void nicvf_get_primary_vf_struct(struct nicvf *nic)
455{
456 union nic_mbx mbx = {};
457
458 mbx.nicvf.msg = NIC_MBOX_MSG_PNICVF_PTR;
459 nicvf_send_msg_to_pf(nic, &mbx);
460}
461
Sunil Goutham4863dea2015-05-26 19:20:15 -0700462int nicvf_set_real_num_queues(struct net_device *netdev,
463 int tx_queues, int rx_queues)
464{
465 int err = 0;
466
467 err = netif_set_real_num_tx_queues(netdev, tx_queues);
468 if (err) {
469 netdev_err(netdev,
470 "Failed to set no of Tx queues: %d\n", tx_queues);
471 return err;
472 }
473
474 err = netif_set_real_num_rx_queues(netdev, rx_queues);
475 if (err)
476 netdev_err(netdev,
477 "Failed to set no of Rx queues: %d\n", rx_queues);
478 return err;
479}
480
481static int nicvf_init_resources(struct nicvf *nic)
482{
483 int err;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700484
485 /* Enable Qset */
486 nicvf_qset_config(nic, true);
487
488 /* Initialize queues and HW for data transfer */
489 err = nicvf_config_data_transfer(nic, true);
490 if (err) {
491 netdev_err(nic->netdev,
492 "Failed to alloc/config VF's QSet resources\n");
493 return err;
494 }
495
Sunil Goutham4863dea2015-05-26 19:20:15 -0700496 return 0;
497}
498
499static void nicvf_snd_pkt_handler(struct net_device *netdev,
Sunil Gouthamc43548d2016-08-12 16:51:41 +0530500 struct cqe_send_t *cqe_tx,
Sunil Goutham2c204c22016-09-23 14:42:28 +0530501 int cqe_type, int budget,
502 unsigned int *tx_pkts, unsigned int *tx_bytes)
Sunil Goutham4863dea2015-05-26 19:20:15 -0700503{
504 struct sk_buff *skb = NULL;
505 struct nicvf *nic = netdev_priv(netdev);
506 struct snd_queue *sq;
507 struct sq_hdr_subdesc *hdr;
Sunil Goutham7ceb8a12016-08-30 11:36:27 +0530508 struct sq_hdr_subdesc *tso_sqe;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700509
510 sq = &nic->qs->sq[cqe_tx->sq_idx];
511
512 hdr = (struct sq_hdr_subdesc *)GET_SQ_DESC(sq, cqe_tx->sqe_ptr);
513 if (hdr->subdesc_type != SQ_DESC_TYPE_HEADER)
514 return;
515
516 netdev_dbg(nic->netdev,
517 "%s Qset #%d SQ #%d SQ ptr #%d subdesc count %d\n",
518 __func__, cqe_tx->sq_qs, cqe_tx->sq_idx,
519 cqe_tx->sqe_ptr, hdr->subdesc_cnt);
520
Sunil Goutham964cb692016-11-15 17:38:16 +0530521 nicvf_check_cqe_tx_errs(nic, cqe_tx);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700522 skb = (struct sk_buff *)sq->skbuff[cqe_tx->sqe_ptr];
Sunil Goutham4863dea2015-05-26 19:20:15 -0700523 if (skb) {
Sunil Goutham7ceb8a12016-08-30 11:36:27 +0530524 /* Check for dummy descriptor used for HW TSO offload on 88xx */
525 if (hdr->dont_send) {
526 /* Get actual TSO descriptors and free them */
527 tso_sqe =
528 (struct sq_hdr_subdesc *)GET_SQ_DESC(sq, hdr->rsvd2);
Sunil Goutham83abb7d2017-03-07 18:09:08 +0530529 nicvf_unmap_sndq_buffers(nic, sq, hdr->rsvd2,
530 tso_sqe->subdesc_cnt);
Sunil Goutham7ceb8a12016-08-30 11:36:27 +0530531 nicvf_put_sq_desc(sq, tso_sqe->subdesc_cnt + 1);
Sunil Goutham83abb7d2017-03-07 18:09:08 +0530532 } else {
533 nicvf_unmap_sndq_buffers(nic, sq, cqe_tx->sqe_ptr,
534 hdr->subdesc_cnt);
Sunil Goutham7ceb8a12016-08-30 11:36:27 +0530535 }
Sunil Goutham40fb5f82015-12-10 13:25:19 +0530536 nicvf_put_sq_desc(sq, hdr->subdesc_cnt + 1);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700537 prefetch(skb);
Sunil Goutham2c204c22016-09-23 14:42:28 +0530538 (*tx_pkts)++;
539 *tx_bytes += skb->len;
Sunil Gouthamc43548d2016-08-12 16:51:41 +0530540 napi_consume_skb(skb, budget);
Sunil Goutham143ceb02015-07-29 16:49:37 +0300541 sq->skbuff[cqe_tx->sqe_ptr] = (u64)NULL;
Sunil Goutham40fb5f82015-12-10 13:25:19 +0530542 } else {
Sunil Goutham7ceb8a12016-08-30 11:36:27 +0530543 /* In case of SW TSO on 88xx, only last segment will have
544 * a SKB attached, so just free SQEs here.
Sunil Goutham40fb5f82015-12-10 13:25:19 +0530545 */
546 if (!nic->hw_tso)
547 nicvf_put_sq_desc(sq, hdr->subdesc_cnt + 1);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700548 }
549}
550
Sunil Goutham38bb5d42015-08-30 12:29:12 +0300551static inline void nicvf_set_rxhash(struct net_device *netdev,
552 struct cqe_rx_t *cqe_rx,
553 struct sk_buff *skb)
554{
555 u8 hash_type;
556 u32 hash;
557
558 if (!(netdev->features & NETIF_F_RXHASH))
559 return;
560
561 switch (cqe_rx->rss_alg) {
562 case RSS_ALG_TCP_IP:
563 case RSS_ALG_UDP_IP:
564 hash_type = PKT_HASH_TYPE_L4;
565 hash = cqe_rx->rss_tag;
566 break;
567 case RSS_ALG_IP:
568 hash_type = PKT_HASH_TYPE_L3;
569 hash = cqe_rx->rss_tag;
570 break;
571 default:
572 hash_type = PKT_HASH_TYPE_NONE;
573 hash = 0;
574 }
575
576 skb_set_hash(skb, hash, hash_type);
577}
578
Sunil Goutham4863dea2015-05-26 19:20:15 -0700579static void nicvf_rcv_pkt_handler(struct net_device *netdev,
580 struct napi_struct *napi,
Sunil Gouthamad2eceb2016-02-16 16:29:51 +0530581 struct cqe_rx_t *cqe_rx)
Sunil Goutham4863dea2015-05-26 19:20:15 -0700582{
583 struct sk_buff *skb;
584 struct nicvf *nic = netdev_priv(netdev);
Sunil Goutham83abb7d2017-03-07 18:09:08 +0530585 struct nicvf *snic = nic;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700586 int err = 0;
Sunil Goutham92dc8762015-08-30 12:29:15 +0300587 int rq_idx;
588
589 rq_idx = nicvf_netdev_qidx(nic, cqe_rx->rq_idx);
590
591 if (nic->sqs_mode) {
592 /* Use primary VF's 'nicvf' struct */
593 nic = nic->pnicvf;
594 netdev = nic->netdev;
595 }
Sunil Goutham4863dea2015-05-26 19:20:15 -0700596
597 /* Check for errors */
Sunil Gouthamad2eceb2016-02-16 16:29:51 +0530598 err = nicvf_check_cqe_rx_errs(nic, cqe_rx);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700599 if (err && !cqe_rx->rb_cnt)
600 return;
601
Sunil Goutham83abb7d2017-03-07 18:09:08 +0530602 skb = nicvf_get_rcv_skb(snic, cqe_rx);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700603 if (!skb) {
604 netdev_dbg(nic->netdev, "Packet not received\n");
605 return;
606 }
607
608 if (netif_msg_pktdata(nic)) {
609 netdev_info(nic->netdev, "%s: skb 0x%p, len=%d\n", netdev->name,
610 skb, skb->len);
611 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_OFFSET, 16, 1,
612 skb->data, skb->len, true);
613 }
614
Sunil Gouthama2dc5de2015-08-30 12:29:10 +0300615 /* If error packet, drop it here */
616 if (err) {
617 dev_kfree_skb_any(skb);
618 return;
619 }
620
Sunil Goutham38bb5d42015-08-30 12:29:12 +0300621 nicvf_set_rxhash(netdev, cqe_rx, skb);
622
Sunil Goutham92dc8762015-08-30 12:29:15 +0300623 skb_record_rx_queue(skb, rq_idx);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700624 if (netdev->hw_features & NETIF_F_RXCSUM) {
625 /* HW by default verifies TCP/UDP/SCTP checksums */
626 skb->ip_summed = CHECKSUM_UNNECESSARY;
627 } else {
628 skb_checksum_none_assert(skb);
629 }
630
631 skb->protocol = eth_type_trans(skb, netdev);
632
Sunil Gouthamaa2e2592015-08-30 12:29:13 +0300633 /* Check for stripped VLAN */
634 if (cqe_rx->vlan_found && cqe_rx->vlan_stripped)
635 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
636 ntohs((__force __be16)cqe_rx->vlan_tci));
637
Sunil Goutham4863dea2015-05-26 19:20:15 -0700638 if (napi && (netdev->features & NETIF_F_GRO))
639 napi_gro_receive(napi, skb);
640 else
641 netif_receive_skb(skb);
642}
643
644static int nicvf_cq_intr_handler(struct net_device *netdev, u8 cq_idx,
645 struct napi_struct *napi, int budget)
646{
Sunil Goutham74840b82015-07-29 16:49:42 +0300647 int processed_cqe, work_done = 0, tx_done = 0;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700648 int cqe_count, cqe_head;
649 struct nicvf *nic = netdev_priv(netdev);
650 struct queue_set *qs = nic->qs;
651 struct cmp_queue *cq = &qs->cq[cq_idx];
652 struct cqe_rx_t *cq_desc;
Sunil Goutham74840b82015-07-29 16:49:42 +0300653 struct netdev_queue *txq;
Sunil Gouthambd3ad7d2016-12-01 18:24:28 +0530654 struct snd_queue *sq;
Sunil Goutham2c204c22016-09-23 14:42:28 +0530655 unsigned int tx_pkts = 0, tx_bytes = 0;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700656
657 spin_lock_bh(&cq->lock);
658loop:
659 processed_cqe = 0;
660 /* Get no of valid CQ entries to process */
661 cqe_count = nicvf_queue_reg_read(nic, NIC_QSET_CQ_0_7_STATUS, cq_idx);
662 cqe_count &= CQ_CQE_COUNT;
663 if (!cqe_count)
664 goto done;
665
666 /* Get head of the valid CQ entries */
667 cqe_head = nicvf_queue_reg_read(nic, NIC_QSET_CQ_0_7_HEAD, cq_idx) >> 9;
668 cqe_head &= 0xFFFF;
669
Sunil Goutham74840b82015-07-29 16:49:42 +0300670 netdev_dbg(nic->netdev, "%s CQ%d cqe_count %d cqe_head %d\n",
671 __func__, cq_idx, cqe_count, cqe_head);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700672 while (processed_cqe < cqe_count) {
673 /* Get the CQ descriptor */
674 cq_desc = (struct cqe_rx_t *)GET_CQ_DESC(cq, cqe_head);
675 cqe_head++;
676 cqe_head &= (cq->dmem.q_len - 1);
677 /* Initiate prefetch for next descriptor */
678 prefetch((struct cqe_rx_t *)GET_CQ_DESC(cq, cqe_head));
679
680 if ((work_done >= budget) && napi &&
681 (cq_desc->cqe_type != CQE_TYPE_SEND)) {
682 break;
683 }
684
Sunil Goutham74840b82015-07-29 16:49:42 +0300685 netdev_dbg(nic->netdev, "CQ%d cq_desc->cqe_type %d\n",
686 cq_idx, cq_desc->cqe_type);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700687 switch (cq_desc->cqe_type) {
688 case CQE_TYPE_RX:
Sunil Gouthamad2eceb2016-02-16 16:29:51 +0530689 nicvf_rcv_pkt_handler(netdev, napi, cq_desc);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700690 work_done++;
691 break;
692 case CQE_TYPE_SEND:
Sunil Goutham964cb692016-11-15 17:38:16 +0530693 nicvf_snd_pkt_handler(netdev,
Sunil Gouthamc43548d2016-08-12 16:51:41 +0530694 (void *)cq_desc, CQE_TYPE_SEND,
Sunil Goutham2c204c22016-09-23 14:42:28 +0530695 budget, &tx_pkts, &tx_bytes);
Sunil Goutham74840b82015-07-29 16:49:42 +0300696 tx_done++;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700697 break;
698 case CQE_TYPE_INVALID:
699 case CQE_TYPE_RX_SPLIT:
700 case CQE_TYPE_RX_TCP:
701 case CQE_TYPE_SEND_PTP:
702 /* Ignore for now */
703 break;
704 }
705 processed_cqe++;
706 }
Sunil Goutham74840b82015-07-29 16:49:42 +0300707 netdev_dbg(nic->netdev,
708 "%s CQ%d processed_cqe %d work_done %d budget %d\n",
709 __func__, cq_idx, processed_cqe, work_done, budget);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700710
711 /* Ring doorbell to inform H/W to reuse processed CQEs */
712 nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_DOOR,
713 cq_idx, processed_cqe);
714
715 if ((work_done < budget) && napi)
716 goto loop;
717
718done:
Sunil Goutham74840b82015-07-29 16:49:42 +0300719 /* Wakeup TXQ if its stopped earlier due to SQ full */
Sunil Gouthambd3ad7d2016-12-01 18:24:28 +0530720 sq = &nic->qs->sq[cq_idx];
721 if (tx_done ||
722 (atomic_read(&sq->free_cnt) >= MIN_SQ_DESC_PER_PKT_XMIT)) {
Sunil Goutham92dc8762015-08-30 12:29:15 +0300723 netdev = nic->pnicvf->netdev;
724 txq = netdev_get_tx_queue(netdev,
725 nicvf_netdev_qidx(nic, cq_idx));
Sunil Goutham2c204c22016-09-23 14:42:28 +0530726 if (tx_pkts)
727 netdev_tx_completed_queue(txq, tx_pkts, tx_bytes);
728
Sunil Gouthambd3ad7d2016-12-01 18:24:28 +0530729 /* To read updated queue and carrier status */
730 smp_mb();
Sunil Goutham92dc8762015-08-30 12:29:15 +0300731 if (netif_tx_queue_stopped(txq) && netif_carrier_ok(netdev)) {
Sunil Gouthambd3ad7d2016-12-01 18:24:28 +0530732 netif_tx_wake_queue(txq);
733 nic = nic->pnicvf;
Sunil Goutham964cb692016-11-15 17:38:16 +0530734 this_cpu_inc(nic->drv_stats->txq_wake);
Sunil Goutham74840b82015-07-29 16:49:42 +0300735 if (netif_msg_tx_err(nic))
736 netdev_warn(netdev,
737 "%s: Transmit queue wakeup SQ%d\n",
738 netdev->name, cq_idx);
739 }
740 }
741
Sunil Goutham4863dea2015-05-26 19:20:15 -0700742 spin_unlock_bh(&cq->lock);
743 return work_done;
744}
745
746static int nicvf_poll(struct napi_struct *napi, int budget)
747{
748 u64 cq_head;
749 int work_done = 0;
750 struct net_device *netdev = napi->dev;
751 struct nicvf *nic = netdev_priv(netdev);
752 struct nicvf_cq_poll *cq;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700753
754 cq = container_of(napi, struct nicvf_cq_poll, napi);
755 work_done = nicvf_cq_intr_handler(netdev, cq->cq_idx, napi, budget);
756
Sunil Goutham4863dea2015-05-26 19:20:15 -0700757 if (work_done < budget) {
758 /* Slow packet rate, exit polling */
Eric Dumazet6ad20162017-01-30 08:22:01 -0800759 napi_complete_done(napi, work_done);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700760 /* Re-enable interrupts */
761 cq_head = nicvf_queue_reg_read(nic, NIC_QSET_CQ_0_7_HEAD,
762 cq->cq_idx);
763 nicvf_clear_intr(nic, NICVF_INTR_CQ, cq->cq_idx);
764 nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_HEAD,
765 cq->cq_idx, cq_head);
766 nicvf_enable_intr(nic, NICVF_INTR_CQ, cq->cq_idx);
767 }
768 return work_done;
769}
770
771/* Qset error interrupt handler
772 *
773 * As of now only CQ errors are handled
774 */
Aleksey Makarovfd7ec062015-06-02 11:00:23 -0700775static void nicvf_handle_qs_err(unsigned long data)
Sunil Goutham4863dea2015-05-26 19:20:15 -0700776{
777 struct nicvf *nic = (struct nicvf *)data;
778 struct queue_set *qs = nic->qs;
779 int qidx;
780 u64 status;
781
782 netif_tx_disable(nic->netdev);
783
784 /* Check if it is CQ err */
785 for (qidx = 0; qidx < qs->cq_cnt; qidx++) {
786 status = nicvf_queue_reg_read(nic, NIC_QSET_CQ_0_7_STATUS,
787 qidx);
788 if (!(status & CQ_ERR_MASK))
789 continue;
790 /* Process already queued CQEs and reconfig CQ */
791 nicvf_disable_intr(nic, NICVF_INTR_CQ, qidx);
792 nicvf_sq_disable(nic, qidx);
793 nicvf_cq_intr_handler(nic->netdev, qidx, NULL, 0);
794 nicvf_cmp_queue_config(nic, qs, qidx, true);
795 nicvf_sq_free_used_descs(nic->netdev, &qs->sq[qidx], qidx);
796 nicvf_sq_enable(nic, &qs->sq[qidx], qidx);
797
798 nicvf_enable_intr(nic, NICVF_INTR_CQ, qidx);
799 }
800
801 netif_tx_start_all_queues(nic->netdev);
802 /* Re-enable Qset error interrupt */
803 nicvf_enable_intr(nic, NICVF_INTR_QS_ERR, 0);
804}
805
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300806static void nicvf_dump_intr_status(struct nicvf *nic)
807{
808 if (netif_msg_intr(nic))
809 netdev_info(nic->netdev, "%s: interrupt status 0x%llx\n",
810 nic->netdev->name, nicvf_reg_read(nic, NIC_VF_INT));
811}
812
Sunil Goutham4863dea2015-05-26 19:20:15 -0700813static irqreturn_t nicvf_misc_intr_handler(int irq, void *nicvf_irq)
814{
815 struct nicvf *nic = (struct nicvf *)nicvf_irq;
816 u64 intr;
817
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300818 nicvf_dump_intr_status(nic);
819
Sunil Goutham4863dea2015-05-26 19:20:15 -0700820 intr = nicvf_reg_read(nic, NIC_VF_INT);
821 /* Check for spurious interrupt */
822 if (!(intr & NICVF_INTR_MBOX_MASK))
823 return IRQ_HANDLED;
824
825 nicvf_handle_mbx_intr(nic);
826
827 return IRQ_HANDLED;
828}
829
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300830static irqreturn_t nicvf_intr_handler(int irq, void *cq_irq)
Sunil Goutham4863dea2015-05-26 19:20:15 -0700831{
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300832 struct nicvf_cq_poll *cq_poll = (struct nicvf_cq_poll *)cq_irq;
833 struct nicvf *nic = cq_poll->nicvf;
834 int qidx = cq_poll->cq_idx;
835
836 nicvf_dump_intr_status(nic);
837
838 /* Disable interrupts */
839 nicvf_disable_intr(nic, NICVF_INTR_CQ, qidx);
840
841 /* Schedule NAPI */
Sunil Gouthamef0a4d82016-02-11 21:50:22 +0530842 napi_schedule_irqoff(&cq_poll->napi);
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300843
844 /* Clear interrupt */
845 nicvf_clear_intr(nic, NICVF_INTR_CQ, qidx);
846
847 return IRQ_HANDLED;
848}
849
850static irqreturn_t nicvf_rbdr_intr_handler(int irq, void *nicvf_irq)
851{
Sunil Goutham4863dea2015-05-26 19:20:15 -0700852 struct nicvf *nic = (struct nicvf *)nicvf_irq;
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300853 u8 qidx;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700854
Sunil Goutham4863dea2015-05-26 19:20:15 -0700855
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300856 nicvf_dump_intr_status(nic);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700857
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300858 /* Disable RBDR interrupt and schedule softirq */
859 for (qidx = 0; qidx < nic->qs->rbdr_cnt; qidx++) {
860 if (!nicvf_is_intr_enabled(nic, NICVF_INTR_RBDR, qidx))
Sunil Goutham4863dea2015-05-26 19:20:15 -0700861 continue;
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300862 nicvf_disable_intr(nic, NICVF_INTR_RBDR, qidx);
863 tasklet_hi_schedule(&nic->rbdr_task);
864 /* Clear interrupt */
865 nicvf_clear_intr(nic, NICVF_INTR_RBDR, qidx);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700866 }
867
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300868 return IRQ_HANDLED;
869}
Sunil Goutham4863dea2015-05-26 19:20:15 -0700870
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300871static irqreturn_t nicvf_qs_err_intr_handler(int irq, void *nicvf_irq)
872{
873 struct nicvf *nic = (struct nicvf *)nicvf_irq;
874
875 nicvf_dump_intr_status(nic);
876
877 /* Disable Qset err interrupt and schedule softirq */
878 nicvf_disable_intr(nic, NICVF_INTR_QS_ERR, 0);
879 tasklet_hi_schedule(&nic->qs_err_task);
880 nicvf_clear_intr(nic, NICVF_INTR_QS_ERR, 0);
881
Sunil Goutham4863dea2015-05-26 19:20:15 -0700882 return IRQ_HANDLED;
883}
884
885static int nicvf_enable_msix(struct nicvf *nic)
886{
887 int ret, vec;
888
889 nic->num_vec = NIC_VF_MSIX_VECTORS;
890
891 for (vec = 0; vec < nic->num_vec; vec++)
892 nic->msix_entries[vec].entry = vec;
893
894 ret = pci_enable_msix(nic->pdev, nic->msix_entries, nic->num_vec);
895 if (ret) {
896 netdev_err(nic->netdev,
897 "Req for #%d msix vectors failed\n", nic->num_vec);
898 return 0;
899 }
900 nic->msix_enabled = 1;
901 return 1;
902}
903
904static void nicvf_disable_msix(struct nicvf *nic)
905{
906 if (nic->msix_enabled) {
907 pci_disable_msix(nic->pdev);
908 nic->msix_enabled = 0;
909 nic->num_vec = 0;
910 }
911}
912
Sunil Gouthamfb4b7d92016-02-11 21:50:23 +0530913static void nicvf_set_irq_affinity(struct nicvf *nic)
914{
915 int vec, cpu;
916 int irqnum;
917
918 for (vec = 0; vec < nic->num_vec; vec++) {
919 if (!nic->irq_allocated[vec])
920 continue;
921
922 if (!zalloc_cpumask_var(&nic->affinity_mask[vec], GFP_KERNEL))
923 return;
924 /* CQ interrupts */
925 if (vec < NICVF_INTR_ID_SQ)
926 /* Leave CPU0 for RBDR and other interrupts */
927 cpu = nicvf_netdev_qidx(nic, vec) + 1;
928 else
929 cpu = 0;
930
931 cpumask_set_cpu(cpumask_local_spread(cpu, nic->node),
932 nic->affinity_mask[vec]);
933 irqnum = nic->msix_entries[vec].vector;
934 irq_set_affinity_hint(irqnum, nic->affinity_mask[vec]);
935 }
936}
937
Sunil Goutham4863dea2015-05-26 19:20:15 -0700938static int nicvf_register_interrupts(struct nicvf *nic)
939{
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300940 int irq, ret = 0;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700941 int vector;
942
943 for_each_cq_irq(irq)
Sunil Gouthame4126212016-08-12 16:51:36 +0530944 sprintf(nic->irq_name[irq], "%s-rxtx-%d",
945 nic->pnicvf->netdev->name,
946 nicvf_netdev_qidx(nic, irq));
Sunil Goutham4863dea2015-05-26 19:20:15 -0700947
948 for_each_sq_irq(irq)
Sunil Gouthame4126212016-08-12 16:51:36 +0530949 sprintf(nic->irq_name[irq], "%s-sq-%d",
950 nic->pnicvf->netdev->name,
951 nicvf_netdev_qidx(nic, irq - NICVF_INTR_ID_SQ));
Sunil Goutham4863dea2015-05-26 19:20:15 -0700952
953 for_each_rbdr_irq(irq)
Sunil Gouthame4126212016-08-12 16:51:36 +0530954 sprintf(nic->irq_name[irq], "%s-rbdr-%d",
955 nic->pnicvf->netdev->name,
956 nic->sqs_mode ? (nic->sqs_id + 1) : 0);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700957
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300958 /* Register CQ interrupts */
959 for (irq = 0; irq < nic->qs->cq_cnt; irq++) {
Sunil Goutham4863dea2015-05-26 19:20:15 -0700960 vector = nic->msix_entries[irq].vector;
961 ret = request_irq(vector, nicvf_intr_handler,
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300962 0, nic->irq_name[irq], nic->napi[irq]);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700963 if (ret)
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300964 goto err;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700965 nic->irq_allocated[irq] = true;
966 }
967
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300968 /* Register RBDR interrupt */
969 for (irq = NICVF_INTR_ID_RBDR;
970 irq < (NICVF_INTR_ID_RBDR + nic->qs->rbdr_cnt); irq++) {
Sunil Goutham4863dea2015-05-26 19:20:15 -0700971 vector = nic->msix_entries[irq].vector;
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300972 ret = request_irq(vector, nicvf_rbdr_intr_handler,
Sunil Goutham4863dea2015-05-26 19:20:15 -0700973 0, nic->irq_name[irq], nic);
974 if (ret)
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300975 goto err;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700976 nic->irq_allocated[irq] = true;
977 }
978
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300979 /* Register QS error interrupt */
Sunil Gouthame4126212016-08-12 16:51:36 +0530980 sprintf(nic->irq_name[NICVF_INTR_ID_QS_ERR], "%s-qset-err-%d",
981 nic->pnicvf->netdev->name,
982 nic->sqs_mode ? (nic->sqs_id + 1) : 0);
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300983 irq = NICVF_INTR_ID_QS_ERR;
984 ret = request_irq(nic->msix_entries[irq].vector,
985 nicvf_qs_err_intr_handler,
986 0, nic->irq_name[irq], nic);
Sunil Gouthamfb4b7d92016-02-11 21:50:23 +0530987 if (ret)
988 goto err;
989
990 nic->irq_allocated[irq] = true;
991
992 /* Set IRQ affinities */
993 nicvf_set_irq_affinity(nic);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700994
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300995err:
996 if (ret)
997 netdev_err(nic->netdev, "request_irq failed, vector %d\n", irq);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700998
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300999 return ret;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001000}
1001
1002static void nicvf_unregister_interrupts(struct nicvf *nic)
1003{
1004 int irq;
1005
1006 /* Free registered interrupts */
1007 for (irq = 0; irq < nic->num_vec; irq++) {
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001008 if (!nic->irq_allocated[irq])
1009 continue;
1010
Sunil Gouthamfb4b7d92016-02-11 21:50:23 +05301011 irq_set_affinity_hint(nic->msix_entries[irq].vector, NULL);
1012 free_cpumask_var(nic->affinity_mask[irq]);
1013
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001014 if (irq < NICVF_INTR_ID_SQ)
1015 free_irq(nic->msix_entries[irq].vector, nic->napi[irq]);
1016 else
Sunil Goutham4863dea2015-05-26 19:20:15 -07001017 free_irq(nic->msix_entries[irq].vector, nic);
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001018
Sunil Goutham4863dea2015-05-26 19:20:15 -07001019 nic->irq_allocated[irq] = false;
1020 }
1021
1022 /* Disable MSI-X */
1023 nicvf_disable_msix(nic);
1024}
1025
1026/* Initialize MSIX vectors and register MISC interrupt.
1027 * Send READY message to PF to check if its alive
1028 */
1029static int nicvf_register_misc_interrupt(struct nicvf *nic)
1030{
1031 int ret = 0;
1032 int irq = NICVF_INTR_ID_MISC;
1033
1034 /* Return if mailbox interrupt is already registered */
1035 if (nic->msix_enabled)
1036 return 0;
1037
1038 /* Enable MSI-X */
1039 if (!nicvf_enable_msix(nic))
1040 return 1;
1041
1042 sprintf(nic->irq_name[irq], "%s Mbox", "NICVF");
1043 /* Register Misc interrupt */
1044 ret = request_irq(nic->msix_entries[irq].vector,
1045 nicvf_misc_intr_handler, 0, nic->irq_name[irq], nic);
1046
1047 if (ret)
1048 return ret;
1049 nic->irq_allocated[irq] = true;
1050
1051 /* Enable mailbox interrupt */
1052 nicvf_enable_intr(nic, NICVF_INTR_MBOX, 0);
1053
1054 /* Check if VF is able to communicate with PF */
1055 if (!nicvf_check_pf_ready(nic)) {
1056 nicvf_disable_intr(nic, NICVF_INTR_MBOX, 0);
1057 nicvf_unregister_interrupts(nic);
1058 return 1;
1059 }
1060
1061 return 0;
1062}
1063
1064static netdev_tx_t nicvf_xmit(struct sk_buff *skb, struct net_device *netdev)
1065{
1066 struct nicvf *nic = netdev_priv(netdev);
1067 int qid = skb_get_queue_mapping(skb);
1068 struct netdev_queue *txq = netdev_get_tx_queue(netdev, qid);
Sunil Gouthambd3ad7d2016-12-01 18:24:28 +05301069 struct nicvf *snic;
1070 struct snd_queue *sq;
1071 int tmp;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001072
1073 /* Check for minimum packet length */
1074 if (skb->len <= ETH_HLEN) {
1075 dev_kfree_skb(skb);
1076 return NETDEV_TX_OK;
1077 }
1078
Sunil Gouthambd3ad7d2016-12-01 18:24:28 +05301079 snic = nic;
1080 /* Get secondary Qset's SQ structure */
1081 if (qid >= MAX_SND_QUEUES_PER_QS) {
1082 tmp = qid / MAX_SND_QUEUES_PER_QS;
1083 snic = (struct nicvf *)nic->snicvf[tmp - 1];
1084 if (!snic) {
1085 netdev_warn(nic->netdev,
1086 "Secondary Qset#%d's ptr not initialized\n",
1087 tmp - 1);
1088 dev_kfree_skb(skb);
1089 return NETDEV_TX_OK;
1090 }
1091 qid = qid % MAX_SND_QUEUES_PER_QS;
1092 }
1093
1094 sq = &snic->qs->sq[qid];
1095 if (!netif_tx_queue_stopped(txq) &&
1096 !nicvf_sq_append_skb(snic, sq, skb, qid)) {
Sunil Goutham4863dea2015-05-26 19:20:15 -07001097 netif_tx_stop_queue(txq);
Sunil Gouthambd3ad7d2016-12-01 18:24:28 +05301098
1099 /* Barrier, so that stop_queue visible to other cpus */
1100 smp_mb();
1101
1102 /* Check again, incase another cpu freed descriptors */
1103 if (atomic_read(&sq->free_cnt) > MIN_SQ_DESC_PER_PKT_XMIT) {
1104 netif_tx_wake_queue(txq);
1105 } else {
1106 this_cpu_inc(nic->drv_stats->txq_stop);
1107 if (netif_msg_tx_err(nic))
1108 netdev_warn(netdev,
1109 "%s: Transmit ring full, stopping SQ%d\n",
1110 netdev->name, qid);
1111 }
Sunil Goutham4863dea2015-05-26 19:20:15 -07001112 return NETDEV_TX_BUSY;
1113 }
1114
1115 return NETDEV_TX_OK;
1116}
1117
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001118static inline void nicvf_free_cq_poll(struct nicvf *nic)
1119{
1120 struct nicvf_cq_poll *cq_poll;
1121 int qidx;
1122
1123 for (qidx = 0; qidx < nic->qs->cq_cnt; qidx++) {
1124 cq_poll = nic->napi[qidx];
1125 if (!cq_poll)
1126 continue;
1127 nic->napi[qidx] = NULL;
1128 kfree(cq_poll);
1129 }
1130}
1131
Sunil Goutham4863dea2015-05-26 19:20:15 -07001132int nicvf_stop(struct net_device *netdev)
1133{
1134 int irq, qidx;
1135 struct nicvf *nic = netdev_priv(netdev);
1136 struct queue_set *qs = nic->qs;
1137 struct nicvf_cq_poll *cq_poll = NULL;
1138 union nic_mbx mbx = {};
1139
1140 mbx.msg.msg = NIC_MBOX_MSG_SHUTDOWN;
1141 nicvf_send_msg_to_pf(nic, &mbx);
1142
1143 netif_carrier_off(netdev);
Sunil Goutham92dc8762015-08-30 12:29:15 +03001144 netif_tx_stop_all_queues(nic->netdev);
Sunil Goutham0b72a9a2015-12-02 15:36:16 +05301145 nic->link_up = false;
Sunil Goutham92dc8762015-08-30 12:29:15 +03001146
1147 /* Teardown secondary qsets first */
1148 if (!nic->sqs_mode) {
1149 for (qidx = 0; qidx < nic->sqs_count; qidx++) {
1150 if (!nic->snicvf[qidx])
1151 continue;
1152 nicvf_stop(nic->snicvf[qidx]->netdev);
1153 nic->snicvf[qidx] = NULL;
1154 }
1155 }
Sunil Goutham4863dea2015-05-26 19:20:15 -07001156
1157 /* Disable RBDR & QS error interrupts */
1158 for (qidx = 0; qidx < qs->rbdr_cnt; qidx++) {
1159 nicvf_disable_intr(nic, NICVF_INTR_RBDR, qidx);
1160 nicvf_clear_intr(nic, NICVF_INTR_RBDR, qidx);
1161 }
1162 nicvf_disable_intr(nic, NICVF_INTR_QS_ERR, 0);
1163 nicvf_clear_intr(nic, NICVF_INTR_QS_ERR, 0);
1164
1165 /* Wait for pending IRQ handlers to finish */
1166 for (irq = 0; irq < nic->num_vec; irq++)
1167 synchronize_irq(nic->msix_entries[irq].vector);
1168
1169 tasklet_kill(&nic->rbdr_task);
1170 tasklet_kill(&nic->qs_err_task);
1171 if (nic->rb_work_scheduled)
1172 cancel_delayed_work_sync(&nic->rbdr_work);
1173
1174 for (qidx = 0; qidx < nic->qs->cq_cnt; qidx++) {
1175 cq_poll = nic->napi[qidx];
1176 if (!cq_poll)
1177 continue;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001178 napi_synchronize(&cq_poll->napi);
1179 /* CQ intr is enabled while napi_complete,
1180 * so disable it now
1181 */
1182 nicvf_disable_intr(nic, NICVF_INTR_CQ, qidx);
1183 nicvf_clear_intr(nic, NICVF_INTR_CQ, qidx);
1184 napi_disable(&cq_poll->napi);
1185 netif_napi_del(&cq_poll->napi);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001186 }
1187
Sunil Gouthamb49087d2015-07-29 16:49:44 +03001188 netif_tx_disable(netdev);
1189
Sunil Goutham2c204c22016-09-23 14:42:28 +05301190 for (qidx = 0; qidx < netdev->num_tx_queues; qidx++)
1191 netdev_tx_reset_queue(netdev_get_tx_queue(netdev, qidx));
1192
Sunil Goutham4863dea2015-05-26 19:20:15 -07001193 /* Free resources */
1194 nicvf_config_data_transfer(nic, false);
1195
1196 /* Disable HW Qset */
1197 nicvf_qset_config(nic, false);
1198
1199 /* disable mailbox interrupt */
1200 nicvf_disable_intr(nic, NICVF_INTR_MBOX, 0);
1201
1202 nicvf_unregister_interrupts(nic);
1203
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001204 nicvf_free_cq_poll(nic);
1205
Sunil Goutham92dc8762015-08-30 12:29:15 +03001206 /* Clear multiqset info */
1207 nic->pnicvf = nic;
Sunil Goutham92dc8762015-08-30 12:29:15 +03001208
Sunil Goutham4863dea2015-05-26 19:20:15 -07001209 return 0;
1210}
1211
Sunil Goutham712c3182016-11-15 17:37:36 +05301212static int nicvf_update_hw_max_frs(struct nicvf *nic, int mtu)
1213{
1214 union nic_mbx mbx = {};
1215
1216 mbx.frs.msg = NIC_MBOX_MSG_SET_MAX_FRS;
1217 mbx.frs.max_frs = mtu;
1218 mbx.frs.vf_id = nic->vf_id;
1219
1220 return nicvf_send_msg_to_pf(nic, &mbx);
1221}
1222
Sunil Goutham4863dea2015-05-26 19:20:15 -07001223int nicvf_open(struct net_device *netdev)
1224{
Sunil Goutham964cb692016-11-15 17:38:16 +05301225 int cpu, err, qidx;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001226 struct nicvf *nic = netdev_priv(netdev);
1227 struct queue_set *qs = nic->qs;
1228 struct nicvf_cq_poll *cq_poll = NULL;
Sunil Gouthamc94acf82016-11-15 17:38:29 +05301229 union nic_mbx mbx = {};
Sunil Goutham4863dea2015-05-26 19:20:15 -07001230
1231 netif_carrier_off(netdev);
1232
1233 err = nicvf_register_misc_interrupt(nic);
1234 if (err)
1235 return err;
1236
1237 /* Register NAPI handler for processing CQEs */
1238 for (qidx = 0; qidx < qs->cq_cnt; qidx++) {
1239 cq_poll = kzalloc(sizeof(*cq_poll), GFP_KERNEL);
1240 if (!cq_poll) {
1241 err = -ENOMEM;
1242 goto napi_del;
1243 }
1244 cq_poll->cq_idx = qidx;
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001245 cq_poll->nicvf = nic;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001246 netif_napi_add(netdev, &cq_poll->napi, nicvf_poll,
1247 NAPI_POLL_WEIGHT);
1248 napi_enable(&cq_poll->napi);
1249 nic->napi[qidx] = cq_poll;
1250 }
1251
1252 /* Check if we got MAC address from PF or else generate a radom MAC */
Sunil Gouthama3a8ce42016-08-12 16:51:40 +05301253 if (!nic->sqs_mode && is_zero_ether_addr(netdev->dev_addr)) {
Sunil Goutham4863dea2015-05-26 19:20:15 -07001254 eth_hw_addr_random(netdev);
1255 nicvf_hw_set_mac_addr(nic, netdev);
1256 }
1257
Pavel Fedinbd049a92015-06-23 17:51:06 +03001258 if (nic->set_mac_pending) {
1259 nic->set_mac_pending = false;
1260 nicvf_hw_set_mac_addr(nic, netdev);
1261 }
1262
Sunil Goutham4863dea2015-05-26 19:20:15 -07001263 /* Init tasklet for handling Qset err interrupt */
1264 tasklet_init(&nic->qs_err_task, nicvf_handle_qs_err,
1265 (unsigned long)nic);
1266
1267 /* Init RBDR tasklet which will refill RBDR */
1268 tasklet_init(&nic->rbdr_task, nicvf_rbdr_task,
1269 (unsigned long)nic);
1270 INIT_DELAYED_WORK(&nic->rbdr_work, nicvf_rbdr_work);
1271
1272 /* Configure CPI alorithm */
1273 nic->cpi_alg = cpi_alg;
Sunil Goutham92dc8762015-08-30 12:29:15 +03001274 if (!nic->sqs_mode)
1275 nicvf_config_cpi(nic);
1276
1277 nicvf_request_sqs(nic);
1278 if (nic->sqs_mode)
1279 nicvf_get_primary_vf_struct(nic);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001280
Sunil Goutham712c3182016-11-15 17:37:36 +05301281 /* Configure receive side scaling and MTU */
1282 if (!nic->sqs_mode) {
Sunil Goutham92dc8762015-08-30 12:29:15 +03001283 nicvf_rss_init(nic);
Wei Yongjun60dce042017-01-11 16:32:51 +00001284 err = nicvf_update_hw_max_frs(nic, netdev->mtu);
1285 if (err)
Sunil Goutham712c3182016-11-15 17:37:36 +05301286 goto cleanup;
Sunil Goutham964cb692016-11-15 17:38:16 +05301287
1288 /* Clear percpu stats */
1289 for_each_possible_cpu(cpu)
1290 memset(per_cpu_ptr(nic->drv_stats, cpu), 0,
1291 sizeof(struct nicvf_drv_stats));
Sunil Goutham712c3182016-11-15 17:37:36 +05301292 }
Sunil Goutham4863dea2015-05-26 19:20:15 -07001293
1294 err = nicvf_register_interrupts(nic);
1295 if (err)
1296 goto cleanup;
1297
1298 /* Initialize the queues */
1299 err = nicvf_init_resources(nic);
1300 if (err)
1301 goto cleanup;
1302
1303 /* Make sure queue initialization is written */
1304 wmb();
1305
1306 nicvf_reg_write(nic, NIC_VF_INT, -1);
1307 /* Enable Qset err interrupt */
1308 nicvf_enable_intr(nic, NICVF_INTR_QS_ERR, 0);
1309
1310 /* Enable completion queue interrupt */
1311 for (qidx = 0; qidx < qs->cq_cnt; qidx++)
1312 nicvf_enable_intr(nic, NICVF_INTR_CQ, qidx);
1313
1314 /* Enable RBDR threshold interrupt */
1315 for (qidx = 0; qidx < qs->rbdr_cnt; qidx++)
1316 nicvf_enable_intr(nic, NICVF_INTR_RBDR, qidx);
1317
Sunil Gouthamc94acf82016-11-15 17:38:29 +05301318 /* Send VF config done msg to PF */
1319 mbx.msg.msg = NIC_MBOX_MSG_CFG_DONE;
1320 nicvf_write_to_mbx(nic, &mbx);
Sunil Goutham74840b82015-07-29 16:49:42 +03001321
Sunil Goutham4863dea2015-05-26 19:20:15 -07001322 return 0;
1323cleanup:
1324 nicvf_disable_intr(nic, NICVF_INTR_MBOX, 0);
1325 nicvf_unregister_interrupts(nic);
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001326 tasklet_kill(&nic->qs_err_task);
1327 tasklet_kill(&nic->rbdr_task);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001328napi_del:
1329 for (qidx = 0; qidx < qs->cq_cnt; qidx++) {
1330 cq_poll = nic->napi[qidx];
1331 if (!cq_poll)
1332 continue;
1333 napi_disable(&cq_poll->napi);
1334 netif_napi_del(&cq_poll->napi);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001335 }
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001336 nicvf_free_cq_poll(nic);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001337 return err;
1338}
1339
Sunil Goutham4863dea2015-05-26 19:20:15 -07001340static int nicvf_change_mtu(struct net_device *netdev, int new_mtu)
1341{
1342 struct nicvf *nic = netdev_priv(netdev);
David S. Millerf9aa9dc2016-11-22 11:29:28 -05001343 int orig_mtu = netdev->mtu;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001344
Sunil Goutham4863dea2015-05-26 19:20:15 -07001345 netdev->mtu = new_mtu;
Sunil Goutham712c3182016-11-15 17:37:36 +05301346
1347 if (!netif_running(netdev))
1348 return 0;
1349
David S. Millerf9aa9dc2016-11-22 11:29:28 -05001350 if (nicvf_update_hw_max_frs(nic, new_mtu)) {
1351 netdev->mtu = orig_mtu;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001352 return -EINVAL;
David S. Millerf9aa9dc2016-11-22 11:29:28 -05001353 }
Sunil Goutham4863dea2015-05-26 19:20:15 -07001354
1355 return 0;
1356}
1357
1358static int nicvf_set_mac_address(struct net_device *netdev, void *p)
1359{
1360 struct sockaddr *addr = p;
1361 struct nicvf *nic = netdev_priv(netdev);
1362
1363 if (!is_valid_ether_addr(addr->sa_data))
1364 return -EADDRNOTAVAIL;
1365
1366 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
1367
Pavel Fedinbd049a92015-06-23 17:51:06 +03001368 if (nic->msix_enabled) {
Sunil Goutham4863dea2015-05-26 19:20:15 -07001369 if (nicvf_hw_set_mac_addr(nic, netdev))
1370 return -EBUSY;
Pavel Fedinbd049a92015-06-23 17:51:06 +03001371 } else {
1372 nic->set_mac_pending = true;
1373 }
Sunil Goutham4863dea2015-05-26 19:20:15 -07001374
1375 return 0;
1376}
1377
Sunil Goutham4863dea2015-05-26 19:20:15 -07001378void nicvf_update_lmac_stats(struct nicvf *nic)
1379{
1380 int stat = 0;
1381 union nic_mbx mbx = {};
Sunil Goutham4863dea2015-05-26 19:20:15 -07001382
1383 if (!netif_running(nic->netdev))
1384 return;
1385
1386 mbx.bgx_stats.msg = NIC_MBOX_MSG_BGX_STATS;
1387 mbx.bgx_stats.vf_id = nic->vf_id;
1388 /* Rx stats */
1389 mbx.bgx_stats.rx = 1;
1390 while (stat < BGX_RX_STATS_COUNT) {
Sunil Goutham4863dea2015-05-26 19:20:15 -07001391 mbx.bgx_stats.idx = stat;
Sunil Goutham6051cba2015-08-30 12:29:11 +03001392 if (nicvf_send_msg_to_pf(nic, &mbx))
1393 return;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001394 stat++;
1395 }
1396
1397 stat = 0;
1398
1399 /* Tx stats */
1400 mbx.bgx_stats.rx = 0;
1401 while (stat < BGX_TX_STATS_COUNT) {
Sunil Goutham4863dea2015-05-26 19:20:15 -07001402 mbx.bgx_stats.idx = stat;
Sunil Goutham6051cba2015-08-30 12:29:11 +03001403 if (nicvf_send_msg_to_pf(nic, &mbx))
1404 return;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001405 stat++;
1406 }
1407}
1408
1409void nicvf_update_stats(struct nicvf *nic)
1410{
Sunil Goutham964cb692016-11-15 17:38:16 +05301411 int qidx, cpu;
1412 u64 tmp_stats = 0;
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001413 struct nicvf_hw_stats *stats = &nic->hw_stats;
Sunil Goutham964cb692016-11-15 17:38:16 +05301414 struct nicvf_drv_stats *drv_stats;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001415 struct queue_set *qs = nic->qs;
1416
1417#define GET_RX_STATS(reg) \
1418 nicvf_reg_read(nic, NIC_VNIC_RX_STAT_0_13 | (reg << 3))
1419#define GET_TX_STATS(reg) \
1420 nicvf_reg_read(nic, NIC_VNIC_TX_STAT_0_4 | (reg << 3))
1421
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001422 stats->rx_bytes = GET_RX_STATS(RX_OCTS);
1423 stats->rx_ucast_frames = GET_RX_STATS(RX_UCAST);
1424 stats->rx_bcast_frames = GET_RX_STATS(RX_BCAST);
1425 stats->rx_mcast_frames = GET_RX_STATS(RX_MCAST);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001426 stats->rx_fcs_errors = GET_RX_STATS(RX_FCS);
1427 stats->rx_l2_errors = GET_RX_STATS(RX_L2ERR);
1428 stats->rx_drop_red = GET_RX_STATS(RX_RED);
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001429 stats->rx_drop_red_bytes = GET_RX_STATS(RX_RED_OCTS);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001430 stats->rx_drop_overrun = GET_RX_STATS(RX_ORUN);
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001431 stats->rx_drop_overrun_bytes = GET_RX_STATS(RX_ORUN_OCTS);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001432 stats->rx_drop_bcast = GET_RX_STATS(RX_DRP_BCAST);
1433 stats->rx_drop_mcast = GET_RX_STATS(RX_DRP_MCAST);
1434 stats->rx_drop_l3_bcast = GET_RX_STATS(RX_DRP_L3BCAST);
1435 stats->rx_drop_l3_mcast = GET_RX_STATS(RX_DRP_L3MCAST);
1436
Sunil Goutham964cb692016-11-15 17:38:16 +05301437 stats->tx_bytes = GET_TX_STATS(TX_OCTS);
1438 stats->tx_ucast_frames = GET_TX_STATS(TX_UCAST);
1439 stats->tx_bcast_frames = GET_TX_STATS(TX_BCAST);
1440 stats->tx_mcast_frames = GET_TX_STATS(TX_MCAST);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001441 stats->tx_drops = GET_TX_STATS(TX_DROP);
1442
Sunil Goutham964cb692016-11-15 17:38:16 +05301443 /* On T88 pass 2.0, the dummy SQE added for TSO notification
1444 * via CQE has 'dont_send' set. Hence HW drops the pkt pointed
1445 * pointed by dummy SQE and results in tx_drops counter being
1446 * incremented. Subtracting it from tx_tso counter will give
1447 * exact tx_drops counter.
1448 */
1449 if (nic->t88 && nic->hw_tso) {
1450 for_each_possible_cpu(cpu) {
1451 drv_stats = per_cpu_ptr(nic->drv_stats, cpu);
1452 tmp_stats += drv_stats->tx_tso;
1453 }
1454 stats->tx_drops = tmp_stats - stats->tx_drops;
1455 }
1456 stats->tx_frames = stats->tx_ucast_frames +
1457 stats->tx_bcast_frames +
1458 stats->tx_mcast_frames;
1459 stats->rx_frames = stats->rx_ucast_frames +
1460 stats->rx_bcast_frames +
1461 stats->rx_mcast_frames;
1462 stats->rx_drops = stats->rx_drop_red +
1463 stats->rx_drop_overrun;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001464
1465 /* Update RQ and SQ stats */
1466 for (qidx = 0; qidx < qs->rq_cnt; qidx++)
1467 nicvf_update_rq_stats(nic, qidx);
1468 for (qidx = 0; qidx < qs->sq_cnt; qidx++)
1469 nicvf_update_sq_stats(nic, qidx);
1470}
1471
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001472static void nicvf_get_stats64(struct net_device *netdev,
1473 struct rtnl_link_stats64 *stats)
Sunil Goutham4863dea2015-05-26 19:20:15 -07001474{
1475 struct nicvf *nic = netdev_priv(netdev);
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001476 struct nicvf_hw_stats *hw_stats = &nic->hw_stats;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001477
1478 nicvf_update_stats(nic);
1479
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001480 stats->rx_bytes = hw_stats->rx_bytes;
Sunil Goutham964cb692016-11-15 17:38:16 +05301481 stats->rx_packets = hw_stats->rx_frames;
1482 stats->rx_dropped = hw_stats->rx_drops;
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001483 stats->multicast = hw_stats->rx_mcast_frames;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001484
Sunil Goutham964cb692016-11-15 17:38:16 +05301485 stats->tx_bytes = hw_stats->tx_bytes;
1486 stats->tx_packets = hw_stats->tx_frames;
1487 stats->tx_dropped = hw_stats->tx_drops;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001488
Sunil Goutham4863dea2015-05-26 19:20:15 -07001489}
1490
1491static void nicvf_tx_timeout(struct net_device *dev)
1492{
1493 struct nicvf *nic = netdev_priv(dev);
1494
1495 if (netif_msg_tx_err(nic))
1496 netdev_warn(dev, "%s: Transmit timed out, resetting\n",
1497 dev->name);
1498
Sunil Goutham964cb692016-11-15 17:38:16 +05301499 this_cpu_inc(nic->drv_stats->tx_timeout);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001500 schedule_work(&nic->reset_task);
1501}
1502
1503static void nicvf_reset_task(struct work_struct *work)
1504{
1505 struct nicvf *nic;
1506
1507 nic = container_of(work, struct nicvf, reset_task);
1508
1509 if (!netif_running(nic->netdev))
1510 return;
1511
1512 nicvf_stop(nic->netdev);
1513 nicvf_open(nic->netdev);
Florian Westphal860e9532016-05-03 16:33:13 +02001514 netif_trans_update(nic->netdev);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001515}
1516
Sunil Gouthamd77a2382015-08-30 12:29:16 +03001517static int nicvf_config_loopback(struct nicvf *nic,
1518 netdev_features_t features)
1519{
1520 union nic_mbx mbx = {};
1521
1522 mbx.lbk.msg = NIC_MBOX_MSG_LOOPBACK;
1523 mbx.lbk.vf_id = nic->vf_id;
1524 mbx.lbk.enable = (features & NETIF_F_LOOPBACK) != 0;
1525
1526 return nicvf_send_msg_to_pf(nic, &mbx);
1527}
1528
1529static netdev_features_t nicvf_fix_features(struct net_device *netdev,
1530 netdev_features_t features)
1531{
1532 struct nicvf *nic = netdev_priv(netdev);
1533
1534 if ((features & NETIF_F_LOOPBACK) &&
1535 netif_running(netdev) && !nic->loopback_supported)
1536 features &= ~NETIF_F_LOOPBACK;
1537
1538 return features;
1539}
1540
Sunil Gouthamaa2e2592015-08-30 12:29:13 +03001541static int nicvf_set_features(struct net_device *netdev,
1542 netdev_features_t features)
1543{
1544 struct nicvf *nic = netdev_priv(netdev);
1545 netdev_features_t changed = features ^ netdev->features;
1546
1547 if (changed & NETIF_F_HW_VLAN_CTAG_RX)
1548 nicvf_config_vlan_stripping(nic, features);
1549
Sunil Gouthamd77a2382015-08-30 12:29:16 +03001550 if ((changed & NETIF_F_LOOPBACK) && netif_running(netdev))
1551 return nicvf_config_loopback(nic, features);
1552
Sunil Gouthamaa2e2592015-08-30 12:29:13 +03001553 return 0;
1554}
1555
Sunil Goutham4863dea2015-05-26 19:20:15 -07001556static const struct net_device_ops nicvf_netdev_ops = {
1557 .ndo_open = nicvf_open,
1558 .ndo_stop = nicvf_stop,
1559 .ndo_start_xmit = nicvf_xmit,
1560 .ndo_change_mtu = nicvf_change_mtu,
1561 .ndo_set_mac_address = nicvf_set_mac_address,
1562 .ndo_get_stats64 = nicvf_get_stats64,
1563 .ndo_tx_timeout = nicvf_tx_timeout,
Sunil Gouthamd77a2382015-08-30 12:29:16 +03001564 .ndo_fix_features = nicvf_fix_features,
Sunil Gouthamaa2e2592015-08-30 12:29:13 +03001565 .ndo_set_features = nicvf_set_features,
Sunil Goutham4863dea2015-05-26 19:20:15 -07001566};
1567
1568static int nicvf_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
1569{
1570 struct device *dev = &pdev->dev;
1571 struct net_device *netdev;
1572 struct nicvf *nic;
Sunil Goutham92dc8762015-08-30 12:29:15 +03001573 int err, qcount;
Sunil Goutham7ceb8a12016-08-30 11:36:27 +05301574 u16 sdevid;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001575
1576 err = pci_enable_device(pdev);
1577 if (err) {
1578 dev_err(dev, "Failed to enable PCI device\n");
1579 return err;
1580 }
1581
1582 err = pci_request_regions(pdev, DRV_NAME);
1583 if (err) {
1584 dev_err(dev, "PCI request regions failed 0x%x\n", err);
1585 goto err_disable_device;
1586 }
1587
1588 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(48));
1589 if (err) {
1590 dev_err(dev, "Unable to get usable DMA configuration\n");
1591 goto err_release_regions;
1592 }
1593
1594 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(48));
1595 if (err) {
1596 dev_err(dev, "unable to get 48-bit DMA for consistent allocations\n");
1597 goto err_release_regions;
1598 }
1599
Sunil Goutham3a397eb2016-08-12 16:51:27 +05301600 qcount = netif_get_num_default_rss_queues();
Sunil Goutham92dc8762015-08-30 12:29:15 +03001601
1602 /* Restrict multiqset support only for host bound VFs */
1603 if (pdev->is_virtfn) {
1604 /* Set max number of queues per VF */
Sunil Goutham3a397eb2016-08-12 16:51:27 +05301605 qcount = min_t(int, num_online_cpus(),
1606 (MAX_SQS_PER_VF + 1) * MAX_CMP_QUEUES_PER_QS);
Sunil Goutham92dc8762015-08-30 12:29:15 +03001607 }
1608
1609 netdev = alloc_etherdev_mqs(sizeof(struct nicvf), qcount, qcount);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001610 if (!netdev) {
1611 err = -ENOMEM;
1612 goto err_release_regions;
1613 }
1614
1615 pci_set_drvdata(pdev, netdev);
1616
1617 SET_NETDEV_DEV(netdev, &pdev->dev);
1618
1619 nic = netdev_priv(netdev);
1620 nic->netdev = netdev;
1621 nic->pdev = pdev;
Sunil Goutham92dc8762015-08-30 12:29:15 +03001622 nic->pnicvf = nic;
1623 nic->max_queues = qcount;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001624
1625 /* MAP VF's configuration registers */
1626 nic->reg_base = pcim_iomap(pdev, PCI_CFG_REG_BAR_NUM, 0);
1627 if (!nic->reg_base) {
1628 dev_err(dev, "Cannot map config register space, aborting\n");
1629 err = -ENOMEM;
1630 goto err_free_netdev;
1631 }
1632
Sunil Goutham964cb692016-11-15 17:38:16 +05301633 nic->drv_stats = netdev_alloc_pcpu_stats(struct nicvf_drv_stats);
1634 if (!nic->drv_stats) {
1635 err = -ENOMEM;
1636 goto err_free_netdev;
1637 }
1638
Sunil Goutham4863dea2015-05-26 19:20:15 -07001639 err = nicvf_set_qset_resources(nic);
1640 if (err)
1641 goto err_free_netdev;
1642
Sunil Goutham4863dea2015-05-26 19:20:15 -07001643 /* Check if PF is alive and get MAC address for this VF */
1644 err = nicvf_register_misc_interrupt(nic);
1645 if (err)
1646 goto err_free_netdev;
1647
Sunil Goutham92dc8762015-08-30 12:29:15 +03001648 nicvf_send_vf_struct(nic);
1649
Sunil Goutham8d210d52016-02-16 16:29:50 +05301650 if (!pass1_silicon(nic->pdev))
1651 nic->hw_tso = true;
1652
Sunil Goutham83abb7d2017-03-07 18:09:08 +05301653 /* Get iommu domain for iova to physical addr conversion */
1654 nic->iommu_domain = iommu_get_domain_for_dev(dev);
1655
Sunil Goutham7ceb8a12016-08-30 11:36:27 +05301656 pci_read_config_word(nic->pdev, PCI_SUBSYSTEM_ID, &sdevid);
1657 if (sdevid == 0xA134)
1658 nic->t88 = true;
1659
Sunil Goutham92dc8762015-08-30 12:29:15 +03001660 /* Check if this VF is in QS only mode */
1661 if (nic->sqs_mode)
1662 return 0;
1663
1664 err = nicvf_set_real_num_queues(netdev, nic->tx_queues, nic->rx_queues);
1665 if (err)
1666 goto err_unregister_interrupts;
1667
Sunil Gouthamaa2e2592015-08-30 12:29:13 +03001668 netdev->hw_features = (NETIF_F_RXCSUM | NETIF_F_IP_CSUM | NETIF_F_SG |
1669 NETIF_F_TSO | NETIF_F_GRO |
Sunil Goutham92dc8762015-08-30 12:29:15 +03001670 NETIF_F_HW_VLAN_CTAG_RX);
1671
1672 netdev->hw_features |= NETIF_F_RXHASH;
Sunil Goutham38bb5d42015-08-30 12:29:12 +03001673
Sunil Gouthamaa2e2592015-08-30 12:29:13 +03001674 netdev->features |= netdev->hw_features;
Sunil Gouthamd77a2382015-08-30 12:29:16 +03001675 netdev->hw_features |= NETIF_F_LOOPBACK;
Sunil Gouthamaa2e2592015-08-30 12:29:13 +03001676
1677 netdev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001678
1679 netdev->netdev_ops = &nicvf_netdev_ops;
Sunil Goutham3d7a8aa2015-07-29 16:49:43 +03001680 netdev->watchdog_timeo = NICVF_TX_TIMEOUT;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001681
Jarod Wilson109cc162016-10-17 15:54:13 -04001682 /* MTU range: 64 - 9200 */
1683 netdev->min_mtu = NIC_HW_MIN_FRS;
1684 netdev->max_mtu = NIC_HW_MAX_FRS;
1685
Sunil Goutham4863dea2015-05-26 19:20:15 -07001686 INIT_WORK(&nic->reset_task, nicvf_reset_task);
1687
1688 err = register_netdev(netdev);
1689 if (err) {
1690 dev_err(dev, "Failed to register netdevice\n");
1691 goto err_unregister_interrupts;
1692 }
1693
1694 nic->msg_enable = debug;
1695
1696 nicvf_set_ethtool_ops(netdev);
1697
1698 return 0;
1699
1700err_unregister_interrupts:
1701 nicvf_unregister_interrupts(nic);
1702err_free_netdev:
1703 pci_set_drvdata(pdev, NULL);
Sunil Goutham964cb692016-11-15 17:38:16 +05301704 if (nic->drv_stats)
1705 free_percpu(nic->drv_stats);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001706 free_netdev(netdev);
1707err_release_regions:
1708 pci_release_regions(pdev);
1709err_disable_device:
1710 pci_disable_device(pdev);
1711 return err;
1712}
1713
1714static void nicvf_remove(struct pci_dev *pdev)
1715{
1716 struct net_device *netdev = pci_get_drvdata(pdev);
Pavel Fedin77501302015-11-16 17:51:34 +03001717 struct nicvf *nic;
1718 struct net_device *pnetdev;
1719
1720 if (!netdev)
1721 return;
1722
1723 nic = netdev_priv(netdev);
1724 pnetdev = nic->pnicvf->netdev;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001725
Sunil Goutham92dc8762015-08-30 12:29:15 +03001726 /* Check if this Qset is assigned to different VF.
1727 * If yes, clean primary and all secondary Qsets.
1728 */
1729 if (pnetdev && (pnetdev->reg_state == NETREG_REGISTERED))
1730 unregister_netdev(pnetdev);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001731 nicvf_unregister_interrupts(nic);
1732 pci_set_drvdata(pdev, NULL);
Sunil Goutham964cb692016-11-15 17:38:16 +05301733 if (nic->drv_stats)
1734 free_percpu(nic->drv_stats);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001735 free_netdev(netdev);
1736 pci_release_regions(pdev);
1737 pci_disable_device(pdev);
1738}
1739
Sunil Goutham4adf4352015-07-29 16:49:45 +03001740static void nicvf_shutdown(struct pci_dev *pdev)
1741{
1742 nicvf_remove(pdev);
1743}
1744
Sunil Goutham4863dea2015-05-26 19:20:15 -07001745static struct pci_driver nicvf_driver = {
1746 .name = DRV_NAME,
1747 .id_table = nicvf_id_table,
1748 .probe = nicvf_probe,
1749 .remove = nicvf_remove,
Sunil Goutham4adf4352015-07-29 16:49:45 +03001750 .shutdown = nicvf_shutdown,
Sunil Goutham4863dea2015-05-26 19:20:15 -07001751};
1752
1753static int __init nicvf_init_module(void)
1754{
1755 pr_info("%s, ver %s\n", DRV_NAME, DRV_VERSION);
1756
1757 return pci_register_driver(&nicvf_driver);
1758}
1759
1760static void __exit nicvf_cleanup_module(void)
1761{
1762 pci_unregister_driver(&nicvf_driver);
1763}
1764
1765module_init(nicvf_init_module);
1766module_exit(nicvf_cleanup_module);