blob: 9dc79c0578d8a614046b019f9aafea47dad015a3 [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>
19
20#include "nic_reg.h"
21#include "nic.h"
22#include "nicvf_queues.h"
23#include "thunder_bgx.h"
24
25#define DRV_NAME "thunder-nicvf"
26#define DRV_VERSION "1.0"
27
28/* Supported devices */
29static const struct pci_device_id nicvf_id_table[] = {
30 { PCI_DEVICE_SUB(PCI_VENDOR_ID_CAVIUM,
31 PCI_DEVICE_ID_THUNDER_NIC_VF,
Sunil Gouthamf7ff0ae2016-08-12 16:51:25 +053032 PCI_VENDOR_ID_CAVIUM,
33 PCI_SUBSYS_DEVID_88XX_NIC_VF) },
Sunil Goutham4863dea2015-05-26 19:20:15 -070034 { PCI_DEVICE_SUB(PCI_VENDOR_ID_CAVIUM,
35 PCI_DEVICE_ID_THUNDER_PASS1_NIC_VF,
Sunil Gouthamf7ff0ae2016-08-12 16:51:25 +053036 PCI_VENDOR_ID_CAVIUM,
37 PCI_SUBSYS_DEVID_88XX_PASS1_NIC_VF) },
38 { PCI_DEVICE_SUB(PCI_VENDOR_ID_CAVIUM,
39 PCI_DEVICE_ID_THUNDER_NIC_VF,
40 PCI_VENDOR_ID_CAVIUM,
41 PCI_SUBSYS_DEVID_81XX_NIC_VF) },
42 { PCI_DEVICE_SUB(PCI_VENDOR_ID_CAVIUM,
43 PCI_DEVICE_ID_THUNDER_NIC_VF,
44 PCI_VENDOR_ID_CAVIUM,
45 PCI_SUBSYS_DEVID_83XX_NIC_VF) },
Sunil Goutham4863dea2015-05-26 19:20:15 -070046 { 0, } /* end of table */
47};
48
49MODULE_AUTHOR("Sunil Goutham");
50MODULE_DESCRIPTION("Cavium Thunder NIC Virtual Function Driver");
51MODULE_LICENSE("GPL v2");
52MODULE_VERSION(DRV_VERSION);
53MODULE_DEVICE_TABLE(pci, nicvf_id_table);
54
55static int debug = 0x00;
56module_param(debug, int, 0644);
57MODULE_PARM_DESC(debug, "Debug message level bitmap");
58
59static int cpi_alg = CPI_ALG_NONE;
60module_param(cpi_alg, int, S_IRUGO);
61MODULE_PARM_DESC(cpi_alg,
62 "PFC algorithm (0=none, 1=VLAN, 2=VLAN16, 3=IP Diffserv)");
63
Sunil Goutham92dc8762015-08-30 12:29:15 +030064static inline u8 nicvf_netdev_qidx(struct nicvf *nic, u8 qidx)
65{
66 if (nic->sqs_mode)
67 return qidx + ((nic->sqs_id + 1) * MAX_CMP_QUEUES_PER_QS);
68 else
69 return qidx;
70}
71
Sunil Goutham4863dea2015-05-26 19:20:15 -070072/* The Cavium ThunderX network controller can *only* be found in SoCs
73 * containing the ThunderX ARM64 CPU implementation. All accesses to the device
74 * registers on this platform are implicitly strongly ordered with respect
75 * to memory accesses. So writeq_relaxed() and readq_relaxed() are safe to use
76 * with no memory barriers in this driver. The readq()/writeq() functions add
77 * explicit ordering operation which in this case are redundant, and only
78 * add overhead.
79 */
80
81/* Register read/write APIs */
82void nicvf_reg_write(struct nicvf *nic, u64 offset, u64 val)
83{
84 writeq_relaxed(val, nic->reg_base + offset);
85}
86
87u64 nicvf_reg_read(struct nicvf *nic, u64 offset)
88{
89 return readq_relaxed(nic->reg_base + offset);
90}
91
92void nicvf_queue_reg_write(struct nicvf *nic, u64 offset,
93 u64 qidx, u64 val)
94{
95 void __iomem *addr = nic->reg_base + offset;
96
97 writeq_relaxed(val, addr + (qidx << NIC_Q_NUM_SHIFT));
98}
99
100u64 nicvf_queue_reg_read(struct nicvf *nic, u64 offset, u64 qidx)
101{
102 void __iomem *addr = nic->reg_base + offset;
103
104 return readq_relaxed(addr + (qidx << NIC_Q_NUM_SHIFT));
105}
106
107/* VF -> PF mailbox communication */
Aleksey Makarov2cd2a192015-06-02 11:00:20 -0700108static void nicvf_write_to_mbx(struct nicvf *nic, union nic_mbx *mbx)
109{
110 u64 *msg = (u64 *)mbx;
111
112 nicvf_reg_write(nic, NIC_VF_PF_MAILBOX_0_1 + 0, msg[0]);
113 nicvf_reg_write(nic, NIC_VF_PF_MAILBOX_0_1 + 8, msg[1]);
114}
115
Sunil Goutham4863dea2015-05-26 19:20:15 -0700116int nicvf_send_msg_to_pf(struct nicvf *nic, union nic_mbx *mbx)
117{
118 int timeout = NIC_MBOX_MSG_TIMEOUT;
119 int sleep = 10;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700120
121 nic->pf_acked = false;
122 nic->pf_nacked = false;
123
Aleksey Makarov2cd2a192015-06-02 11:00:20 -0700124 nicvf_write_to_mbx(nic, mbx);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700125
126 /* Wait for previous message to be acked, timeout 2sec */
127 while (!nic->pf_acked) {
Radoslaw Biernackiecae29c2016-08-12 16:51:38 +0530128 if (nic->pf_nacked) {
129 netdev_err(nic->netdev,
130 "PF NACK to mbox msg 0x%02x from VF%d\n",
131 (mbx->msg.msg & 0xFF), nic->vf_id);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700132 return -EINVAL;
Radoslaw Biernackiecae29c2016-08-12 16:51:38 +0530133 }
Sunil Goutham4863dea2015-05-26 19:20:15 -0700134 msleep(sleep);
135 if (nic->pf_acked)
136 break;
137 timeout -= sleep;
138 if (!timeout) {
139 netdev_err(nic->netdev,
Radoslaw Biernackiecae29c2016-08-12 16:51:38 +0530140 "PF didn't ACK to mbox msg 0x%02x from VF%d\n",
Sunil Goutham4863dea2015-05-26 19:20:15 -0700141 (mbx->msg.msg & 0xFF), nic->vf_id);
142 return -EBUSY;
143 }
144 }
145 return 0;
146}
147
148/* Checks if VF is able to comminicate with PF
149* and also gets the VNIC number this VF is associated to.
150*/
151static int nicvf_check_pf_ready(struct nicvf *nic)
152{
Aleksey Makarov2cd2a192015-06-02 11:00:20 -0700153 union nic_mbx mbx = {};
154
155 mbx.msg.msg = NIC_MBOX_MSG_READY;
Sunil Goutham6051cba2015-08-30 12:29:11 +0300156 if (nicvf_send_msg_to_pf(nic, &mbx)) {
157 netdev_err(nic->netdev,
158 "PF didn't respond to READY msg\n");
159 return 0;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700160 }
Sunil Goutham6051cba2015-08-30 12:29:11 +0300161
Sunil Goutham4863dea2015-05-26 19:20:15 -0700162 return 1;
163}
164
Aleksey Makarovfd7ec062015-06-02 11:00:23 -0700165static void nicvf_read_bgx_stats(struct nicvf *nic, struct bgx_stats_msg *bgx)
166{
167 if (bgx->rx)
168 nic->bgx_stats.rx_stats[bgx->idx] = bgx->stats;
169 else
170 nic->bgx_stats.tx_stats[bgx->idx] = bgx->stats;
171}
172
Sunil Goutham4863dea2015-05-26 19:20:15 -0700173static void nicvf_handle_mbx_intr(struct nicvf *nic)
174{
175 union nic_mbx mbx = {};
176 u64 *mbx_data;
177 u64 mbx_addr;
178 int i;
179
180 mbx_addr = NIC_VF_PF_MAILBOX_0_1;
181 mbx_data = (u64 *)&mbx;
182
183 for (i = 0; i < NIC_PF_VF_MAILBOX_SIZE; i++) {
184 *mbx_data = nicvf_reg_read(nic, mbx_addr);
185 mbx_data++;
186 mbx_addr += sizeof(u64);
187 }
188
189 netdev_dbg(nic->netdev, "Mbox message: msg: 0x%x\n", mbx.msg.msg);
190 switch (mbx.msg.msg) {
191 case NIC_MBOX_MSG_READY:
Sunil Goutham6051cba2015-08-30 12:29:11 +0300192 nic->pf_acked = true;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700193 nic->vf_id = mbx.nic_cfg.vf_id & 0x7F;
194 nic->tns_mode = mbx.nic_cfg.tns_mode & 0x7F;
195 nic->node = mbx.nic_cfg.node_id;
Pavel Fedinbd049a92015-06-23 17:51:06 +0300196 if (!nic->set_mac_pending)
197 ether_addr_copy(nic->netdev->dev_addr,
198 mbx.nic_cfg.mac_addr);
Sunil Goutham92dc8762015-08-30 12:29:15 +0300199 nic->sqs_mode = mbx.nic_cfg.sqs_mode;
Sunil Gouthamd77a2382015-08-30 12:29:16 +0300200 nic->loopback_supported = mbx.nic_cfg.loopback_supported;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700201 nic->link_up = false;
202 nic->duplex = 0;
203 nic->speed = 0;
204 break;
205 case NIC_MBOX_MSG_ACK:
206 nic->pf_acked = true;
207 break;
208 case NIC_MBOX_MSG_NACK:
209 nic->pf_nacked = true;
210 break;
211 case NIC_MBOX_MSG_RSS_SIZE:
212 nic->rss_info.rss_size = mbx.rss_size.ind_tbl_size;
213 nic->pf_acked = true;
214 break;
215 case NIC_MBOX_MSG_BGX_STATS:
216 nicvf_read_bgx_stats(nic, &mbx.bgx_stats);
217 nic->pf_acked = true;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700218 break;
219 case NIC_MBOX_MSG_BGX_LINK_CHANGE:
220 nic->pf_acked = true;
221 nic->link_up = mbx.link_status.link_up;
222 nic->duplex = mbx.link_status.duplex;
223 nic->speed = mbx.link_status.speed;
224 if (nic->link_up) {
225 netdev_info(nic->netdev, "%s: Link is Up %d Mbps %s\n",
226 nic->netdev->name, nic->speed,
227 nic->duplex == DUPLEX_FULL ?
228 "Full duplex" : "Half duplex");
229 netif_carrier_on(nic->netdev);
Sunil Gouthamb49087d2015-07-29 16:49:44 +0300230 netif_tx_start_all_queues(nic->netdev);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700231 } else {
232 netdev_info(nic->netdev, "%s: Link is Down\n",
233 nic->netdev->name);
234 netif_carrier_off(nic->netdev);
235 netif_tx_stop_all_queues(nic->netdev);
236 }
237 break;
Sunil Goutham92dc8762015-08-30 12:29:15 +0300238 case NIC_MBOX_MSG_ALLOC_SQS:
239 nic->sqs_count = mbx.sqs_alloc.qs_count;
240 nic->pf_acked = true;
241 break;
242 case NIC_MBOX_MSG_SNICVF_PTR:
243 /* Primary VF: make note of secondary VF's pointer
244 * to be used while packet transmission.
245 */
246 nic->snicvf[mbx.nicvf.sqs_id] =
247 (struct nicvf *)mbx.nicvf.nicvf;
248 nic->pf_acked = true;
249 break;
250 case NIC_MBOX_MSG_PNICVF_PTR:
251 /* Secondary VF/Qset: make note of primary VF's pointer
252 * to be used while packet reception, to handover packet
253 * to primary VF's netdev.
254 */
255 nic->pnicvf = (struct nicvf *)mbx.nicvf.nicvf;
256 nic->pf_acked = true;
257 break;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700258 default:
259 netdev_err(nic->netdev,
260 "Invalid message from PF, msg 0x%x\n", mbx.msg.msg);
261 break;
262 }
263 nicvf_clear_intr(nic, NICVF_INTR_MBOX, 0);
264}
265
266static int nicvf_hw_set_mac_addr(struct nicvf *nic, struct net_device *netdev)
267{
268 union nic_mbx mbx = {};
Sunil Goutham4863dea2015-05-26 19:20:15 -0700269
270 mbx.mac.msg = NIC_MBOX_MSG_SET_MAC;
271 mbx.mac.vf_id = nic->vf_id;
Aleksey Makarove610cb32015-06-02 11:00:21 -0700272 ether_addr_copy(mbx.mac.mac_addr, netdev->dev_addr);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700273
274 return nicvf_send_msg_to_pf(nic, &mbx);
275}
276
Aleksey Makarovfd7ec062015-06-02 11:00:23 -0700277static void nicvf_config_cpi(struct nicvf *nic)
Sunil Goutham4863dea2015-05-26 19:20:15 -0700278{
279 union nic_mbx mbx = {};
280
281 mbx.cpi_cfg.msg = NIC_MBOX_MSG_CPI_CFG;
282 mbx.cpi_cfg.vf_id = nic->vf_id;
283 mbx.cpi_cfg.cpi_alg = nic->cpi_alg;
284 mbx.cpi_cfg.rq_cnt = nic->qs->rq_cnt;
285
286 nicvf_send_msg_to_pf(nic, &mbx);
287}
288
Aleksey Makarovfd7ec062015-06-02 11:00:23 -0700289static void nicvf_get_rss_size(struct nicvf *nic)
Sunil Goutham4863dea2015-05-26 19:20:15 -0700290{
291 union nic_mbx mbx = {};
292
293 mbx.rss_size.msg = NIC_MBOX_MSG_RSS_SIZE;
294 mbx.rss_size.vf_id = nic->vf_id;
295 nicvf_send_msg_to_pf(nic, &mbx);
296}
297
298void nicvf_config_rss(struct nicvf *nic)
299{
300 union nic_mbx mbx = {};
301 struct nicvf_rss_info *rss = &nic->rss_info;
302 int ind_tbl_len = rss->rss_size;
303 int i, nextq = 0;
304
305 mbx.rss_cfg.vf_id = nic->vf_id;
306 mbx.rss_cfg.hash_bits = rss->hash_bits;
307 while (ind_tbl_len) {
308 mbx.rss_cfg.tbl_offset = nextq;
309 mbx.rss_cfg.tbl_len = min(ind_tbl_len,
310 RSS_IND_TBL_LEN_PER_MBX_MSG);
311 mbx.rss_cfg.msg = mbx.rss_cfg.tbl_offset ?
312 NIC_MBOX_MSG_RSS_CFG_CONT : NIC_MBOX_MSG_RSS_CFG;
313
314 for (i = 0; i < mbx.rss_cfg.tbl_len; i++)
315 mbx.rss_cfg.ind_tbl[i] = rss->ind_tbl[nextq++];
316
317 nicvf_send_msg_to_pf(nic, &mbx);
318
319 ind_tbl_len -= mbx.rss_cfg.tbl_len;
320 }
321}
322
323void nicvf_set_rss_key(struct nicvf *nic)
324{
325 struct nicvf_rss_info *rss = &nic->rss_info;
326 u64 key_addr = NIC_VNIC_RSS_KEY_0_4;
327 int idx;
328
329 for (idx = 0; idx < RSS_HASH_KEY_SIZE; idx++) {
330 nicvf_reg_write(nic, key_addr, rss->key[idx]);
331 key_addr += sizeof(u64);
332 }
333}
334
335static int nicvf_rss_init(struct nicvf *nic)
336{
337 struct nicvf_rss_info *rss = &nic->rss_info;
338 int idx;
339
340 nicvf_get_rss_size(nic);
341
Sunil Goutham38bb5d42015-08-30 12:29:12 +0300342 if (cpi_alg != CPI_ALG_NONE) {
Sunil Goutham4863dea2015-05-26 19:20:15 -0700343 rss->enable = false;
344 rss->hash_bits = 0;
345 return 0;
346 }
347
348 rss->enable = true;
349
Sunil Goutham0052c922016-08-12 16:51:43 +0530350 netdev_rss_key_fill(rss->key, RSS_HASH_KEY_SIZE * sizeof(u64));
Sunil Goutham4863dea2015-05-26 19:20:15 -0700351 nicvf_set_rss_key(nic);
352
353 rss->cfg = RSS_IP_HASH_ENA | RSS_TCP_HASH_ENA | RSS_UDP_HASH_ENA;
354 nicvf_reg_write(nic, NIC_VNIC_RSS_CFG, rss->cfg);
355
356 rss->hash_bits = ilog2(rounddown_pow_of_two(rss->rss_size));
357
358 for (idx = 0; idx < rss->rss_size; idx++)
359 rss->ind_tbl[idx] = ethtool_rxfh_indir_default(idx,
Sunil Goutham92dc8762015-08-30 12:29:15 +0300360 nic->rx_queues);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700361 nicvf_config_rss(nic);
362 return 1;
363}
364
Sunil Goutham92dc8762015-08-30 12:29:15 +0300365/* Request PF to allocate additional Qsets */
366static void nicvf_request_sqs(struct nicvf *nic)
367{
368 union nic_mbx mbx = {};
369 int sqs;
370 int sqs_count = nic->sqs_count;
371 int rx_queues = 0, tx_queues = 0;
372
373 /* Only primary VF should request */
374 if (nic->sqs_mode || !nic->sqs_count)
375 return;
376
377 mbx.sqs_alloc.msg = NIC_MBOX_MSG_ALLOC_SQS;
378 mbx.sqs_alloc.vf_id = nic->vf_id;
379 mbx.sqs_alloc.qs_count = nic->sqs_count;
380 if (nicvf_send_msg_to_pf(nic, &mbx)) {
381 /* No response from PF */
382 nic->sqs_count = 0;
383 return;
384 }
385
386 /* Return if no Secondary Qsets available */
387 if (!nic->sqs_count)
388 return;
389
390 if (nic->rx_queues > MAX_RCV_QUEUES_PER_QS)
391 rx_queues = nic->rx_queues - MAX_RCV_QUEUES_PER_QS;
392 if (nic->tx_queues > MAX_SND_QUEUES_PER_QS)
393 tx_queues = nic->tx_queues - MAX_SND_QUEUES_PER_QS;
394
395 /* Set no of Rx/Tx queues in each of the SQsets */
396 for (sqs = 0; sqs < nic->sqs_count; sqs++) {
397 mbx.nicvf.msg = NIC_MBOX_MSG_SNICVF_PTR;
398 mbx.nicvf.vf_id = nic->vf_id;
399 mbx.nicvf.sqs_id = sqs;
400 nicvf_send_msg_to_pf(nic, &mbx);
401
402 nic->snicvf[sqs]->sqs_id = sqs;
403 if (rx_queues > MAX_RCV_QUEUES_PER_QS) {
404 nic->snicvf[sqs]->qs->rq_cnt = MAX_RCV_QUEUES_PER_QS;
405 rx_queues -= MAX_RCV_QUEUES_PER_QS;
406 } else {
407 nic->snicvf[sqs]->qs->rq_cnt = rx_queues;
408 rx_queues = 0;
409 }
410
411 if (tx_queues > MAX_SND_QUEUES_PER_QS) {
412 nic->snicvf[sqs]->qs->sq_cnt = MAX_SND_QUEUES_PER_QS;
413 tx_queues -= MAX_SND_QUEUES_PER_QS;
414 } else {
415 nic->snicvf[sqs]->qs->sq_cnt = tx_queues;
416 tx_queues = 0;
417 }
418
419 nic->snicvf[sqs]->qs->cq_cnt =
420 max(nic->snicvf[sqs]->qs->rq_cnt, nic->snicvf[sqs]->qs->sq_cnt);
421
422 /* Initialize secondary Qset's queues and its interrupts */
423 nicvf_open(nic->snicvf[sqs]->netdev);
424 }
425
426 /* Update stack with actual Rx/Tx queue count allocated */
427 if (sqs_count != nic->sqs_count)
428 nicvf_set_real_num_queues(nic->netdev,
429 nic->tx_queues, nic->rx_queues);
430}
431
432/* Send this Qset's nicvf pointer to PF.
433 * PF inturn sends primary VF's nicvf struct to secondary Qsets/VFs
434 * so that packets received by these Qsets can use primary VF's netdev
435 */
436static void nicvf_send_vf_struct(struct nicvf *nic)
437{
438 union nic_mbx mbx = {};
439
440 mbx.nicvf.msg = NIC_MBOX_MSG_NICVF_PTR;
441 mbx.nicvf.sqs_mode = nic->sqs_mode;
442 mbx.nicvf.nicvf = (u64)nic;
443 nicvf_send_msg_to_pf(nic, &mbx);
444}
445
446static void nicvf_get_primary_vf_struct(struct nicvf *nic)
447{
448 union nic_mbx mbx = {};
449
450 mbx.nicvf.msg = NIC_MBOX_MSG_PNICVF_PTR;
451 nicvf_send_msg_to_pf(nic, &mbx);
452}
453
Sunil Goutham4863dea2015-05-26 19:20:15 -0700454int nicvf_set_real_num_queues(struct net_device *netdev,
455 int tx_queues, int rx_queues)
456{
457 int err = 0;
458
459 err = netif_set_real_num_tx_queues(netdev, tx_queues);
460 if (err) {
461 netdev_err(netdev,
462 "Failed to set no of Tx queues: %d\n", tx_queues);
463 return err;
464 }
465
466 err = netif_set_real_num_rx_queues(netdev, rx_queues);
467 if (err)
468 netdev_err(netdev,
469 "Failed to set no of Rx queues: %d\n", rx_queues);
470 return err;
471}
472
473static int nicvf_init_resources(struct nicvf *nic)
474{
475 int err;
Aleksey Makarov2cd2a192015-06-02 11:00:20 -0700476 union nic_mbx mbx = {};
477
478 mbx.msg.msg = NIC_MBOX_MSG_CFG_DONE;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700479
480 /* Enable Qset */
481 nicvf_qset_config(nic, true);
482
483 /* Initialize queues and HW for data transfer */
484 err = nicvf_config_data_transfer(nic, true);
485 if (err) {
486 netdev_err(nic->netdev,
487 "Failed to alloc/config VF's QSet resources\n");
488 return err;
489 }
490
491 /* Send VF config done msg to PF */
Aleksey Makarov2cd2a192015-06-02 11:00:20 -0700492 nicvf_write_to_mbx(nic, &mbx);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700493
494 return 0;
495}
496
497static void nicvf_snd_pkt_handler(struct net_device *netdev,
Sunil Gouthamc43548d2016-08-12 16:51:41 +0530498 struct cqe_send_t *cqe_tx,
Sunil Goutham2c204c22016-09-23 14:42:28 +0530499 int cqe_type, int budget,
500 unsigned int *tx_pkts, unsigned int *tx_bytes)
Sunil Goutham4863dea2015-05-26 19:20:15 -0700501{
502 struct sk_buff *skb = NULL;
503 struct nicvf *nic = netdev_priv(netdev);
504 struct snd_queue *sq;
505 struct sq_hdr_subdesc *hdr;
Sunil Goutham7ceb8a12016-08-30 11:36:27 +0530506 struct sq_hdr_subdesc *tso_sqe;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700507
508 sq = &nic->qs->sq[cqe_tx->sq_idx];
509
510 hdr = (struct sq_hdr_subdesc *)GET_SQ_DESC(sq, cqe_tx->sqe_ptr);
511 if (hdr->subdesc_type != SQ_DESC_TYPE_HEADER)
512 return;
513
514 netdev_dbg(nic->netdev,
515 "%s Qset #%d SQ #%d SQ ptr #%d subdesc count %d\n",
516 __func__, cqe_tx->sq_qs, cqe_tx->sq_idx,
517 cqe_tx->sqe_ptr, hdr->subdesc_cnt);
518
Sunil Goutham964cb692016-11-15 17:38:16 +0530519 nicvf_check_cqe_tx_errs(nic, cqe_tx);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700520 skb = (struct sk_buff *)sq->skbuff[cqe_tx->sqe_ptr];
Sunil Goutham4863dea2015-05-26 19:20:15 -0700521 if (skb) {
Sunil Goutham7ceb8a12016-08-30 11:36:27 +0530522 /* Check for dummy descriptor used for HW TSO offload on 88xx */
523 if (hdr->dont_send) {
524 /* Get actual TSO descriptors and free them */
525 tso_sqe =
526 (struct sq_hdr_subdesc *)GET_SQ_DESC(sq, hdr->rsvd2);
527 nicvf_put_sq_desc(sq, tso_sqe->subdesc_cnt + 1);
528 }
Sunil Goutham40fb5f82015-12-10 13:25:19 +0530529 nicvf_put_sq_desc(sq, hdr->subdesc_cnt + 1);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700530 prefetch(skb);
Sunil Goutham2c204c22016-09-23 14:42:28 +0530531 (*tx_pkts)++;
532 *tx_bytes += skb->len;
Sunil Gouthamc43548d2016-08-12 16:51:41 +0530533 napi_consume_skb(skb, budget);
Sunil Goutham143ceb02015-07-29 16:49:37 +0300534 sq->skbuff[cqe_tx->sqe_ptr] = (u64)NULL;
Sunil Goutham40fb5f82015-12-10 13:25:19 +0530535 } else {
Sunil Goutham7ceb8a12016-08-30 11:36:27 +0530536 /* In case of SW TSO on 88xx, only last segment will have
537 * a SKB attached, so just free SQEs here.
Sunil Goutham40fb5f82015-12-10 13:25:19 +0530538 */
539 if (!nic->hw_tso)
540 nicvf_put_sq_desc(sq, hdr->subdesc_cnt + 1);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700541 }
542}
543
Sunil Goutham38bb5d42015-08-30 12:29:12 +0300544static inline void nicvf_set_rxhash(struct net_device *netdev,
545 struct cqe_rx_t *cqe_rx,
546 struct sk_buff *skb)
547{
548 u8 hash_type;
549 u32 hash;
550
551 if (!(netdev->features & NETIF_F_RXHASH))
552 return;
553
554 switch (cqe_rx->rss_alg) {
555 case RSS_ALG_TCP_IP:
556 case RSS_ALG_UDP_IP:
557 hash_type = PKT_HASH_TYPE_L4;
558 hash = cqe_rx->rss_tag;
559 break;
560 case RSS_ALG_IP:
561 hash_type = PKT_HASH_TYPE_L3;
562 hash = cqe_rx->rss_tag;
563 break;
564 default:
565 hash_type = PKT_HASH_TYPE_NONE;
566 hash = 0;
567 }
568
569 skb_set_hash(skb, hash, hash_type);
570}
571
Sunil Goutham4863dea2015-05-26 19:20:15 -0700572static void nicvf_rcv_pkt_handler(struct net_device *netdev,
573 struct napi_struct *napi,
Sunil Gouthamad2eceb2016-02-16 16:29:51 +0530574 struct cqe_rx_t *cqe_rx)
Sunil Goutham4863dea2015-05-26 19:20:15 -0700575{
576 struct sk_buff *skb;
577 struct nicvf *nic = netdev_priv(netdev);
578 int err = 0;
Sunil Goutham92dc8762015-08-30 12:29:15 +0300579 int rq_idx;
580
581 rq_idx = nicvf_netdev_qidx(nic, cqe_rx->rq_idx);
582
583 if (nic->sqs_mode) {
584 /* Use primary VF's 'nicvf' struct */
585 nic = nic->pnicvf;
586 netdev = nic->netdev;
587 }
Sunil Goutham4863dea2015-05-26 19:20:15 -0700588
589 /* Check for errors */
Sunil Gouthamad2eceb2016-02-16 16:29:51 +0530590 err = nicvf_check_cqe_rx_errs(nic, cqe_rx);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700591 if (err && !cqe_rx->rb_cnt)
592 return;
593
594 skb = nicvf_get_rcv_skb(nic, cqe_rx);
595 if (!skb) {
596 netdev_dbg(nic->netdev, "Packet not received\n");
597 return;
598 }
599
600 if (netif_msg_pktdata(nic)) {
601 netdev_info(nic->netdev, "%s: skb 0x%p, len=%d\n", netdev->name,
602 skb, skb->len);
603 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_OFFSET, 16, 1,
604 skb->data, skb->len, true);
605 }
606
Sunil Gouthama2dc5de2015-08-30 12:29:10 +0300607 /* If error packet, drop it here */
608 if (err) {
609 dev_kfree_skb_any(skb);
610 return;
611 }
612
Sunil Goutham38bb5d42015-08-30 12:29:12 +0300613 nicvf_set_rxhash(netdev, cqe_rx, skb);
614
Sunil Goutham92dc8762015-08-30 12:29:15 +0300615 skb_record_rx_queue(skb, rq_idx);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700616 if (netdev->hw_features & NETIF_F_RXCSUM) {
617 /* HW by default verifies TCP/UDP/SCTP checksums */
618 skb->ip_summed = CHECKSUM_UNNECESSARY;
619 } else {
620 skb_checksum_none_assert(skb);
621 }
622
623 skb->protocol = eth_type_trans(skb, netdev);
624
Sunil Gouthamaa2e2592015-08-30 12:29:13 +0300625 /* Check for stripped VLAN */
626 if (cqe_rx->vlan_found && cqe_rx->vlan_stripped)
627 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
628 ntohs((__force __be16)cqe_rx->vlan_tci));
629
Sunil Goutham4863dea2015-05-26 19:20:15 -0700630 if (napi && (netdev->features & NETIF_F_GRO))
631 napi_gro_receive(napi, skb);
632 else
633 netif_receive_skb(skb);
634}
635
636static int nicvf_cq_intr_handler(struct net_device *netdev, u8 cq_idx,
637 struct napi_struct *napi, int budget)
638{
Sunil Goutham74840b82015-07-29 16:49:42 +0300639 int processed_cqe, work_done = 0, tx_done = 0;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700640 int cqe_count, cqe_head;
641 struct nicvf *nic = netdev_priv(netdev);
642 struct queue_set *qs = nic->qs;
643 struct cmp_queue *cq = &qs->cq[cq_idx];
644 struct cqe_rx_t *cq_desc;
Sunil Goutham74840b82015-07-29 16:49:42 +0300645 struct netdev_queue *txq;
Sunil Goutham2c204c22016-09-23 14:42:28 +0530646 unsigned int tx_pkts = 0, tx_bytes = 0;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700647
648 spin_lock_bh(&cq->lock);
649loop:
650 processed_cqe = 0;
651 /* Get no of valid CQ entries to process */
652 cqe_count = nicvf_queue_reg_read(nic, NIC_QSET_CQ_0_7_STATUS, cq_idx);
653 cqe_count &= CQ_CQE_COUNT;
654 if (!cqe_count)
655 goto done;
656
657 /* Get head of the valid CQ entries */
658 cqe_head = nicvf_queue_reg_read(nic, NIC_QSET_CQ_0_7_HEAD, cq_idx) >> 9;
659 cqe_head &= 0xFFFF;
660
Sunil Goutham74840b82015-07-29 16:49:42 +0300661 netdev_dbg(nic->netdev, "%s CQ%d cqe_count %d cqe_head %d\n",
662 __func__, cq_idx, cqe_count, cqe_head);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700663 while (processed_cqe < cqe_count) {
664 /* Get the CQ descriptor */
665 cq_desc = (struct cqe_rx_t *)GET_CQ_DESC(cq, cqe_head);
666 cqe_head++;
667 cqe_head &= (cq->dmem.q_len - 1);
668 /* Initiate prefetch for next descriptor */
669 prefetch((struct cqe_rx_t *)GET_CQ_DESC(cq, cqe_head));
670
671 if ((work_done >= budget) && napi &&
672 (cq_desc->cqe_type != CQE_TYPE_SEND)) {
673 break;
674 }
675
Sunil Goutham74840b82015-07-29 16:49:42 +0300676 netdev_dbg(nic->netdev, "CQ%d cq_desc->cqe_type %d\n",
677 cq_idx, cq_desc->cqe_type);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700678 switch (cq_desc->cqe_type) {
679 case CQE_TYPE_RX:
Sunil Gouthamad2eceb2016-02-16 16:29:51 +0530680 nicvf_rcv_pkt_handler(netdev, napi, cq_desc);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700681 work_done++;
682 break;
683 case CQE_TYPE_SEND:
Sunil Goutham964cb692016-11-15 17:38:16 +0530684 nicvf_snd_pkt_handler(netdev,
Sunil Gouthamc43548d2016-08-12 16:51:41 +0530685 (void *)cq_desc, CQE_TYPE_SEND,
Sunil Goutham2c204c22016-09-23 14:42:28 +0530686 budget, &tx_pkts, &tx_bytes);
Sunil Goutham74840b82015-07-29 16:49:42 +0300687 tx_done++;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700688 break;
689 case CQE_TYPE_INVALID:
690 case CQE_TYPE_RX_SPLIT:
691 case CQE_TYPE_RX_TCP:
692 case CQE_TYPE_SEND_PTP:
693 /* Ignore for now */
694 break;
695 }
696 processed_cqe++;
697 }
Sunil Goutham74840b82015-07-29 16:49:42 +0300698 netdev_dbg(nic->netdev,
699 "%s CQ%d processed_cqe %d work_done %d budget %d\n",
700 __func__, cq_idx, processed_cqe, work_done, budget);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700701
702 /* Ring doorbell to inform H/W to reuse processed CQEs */
703 nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_DOOR,
704 cq_idx, processed_cqe);
705
706 if ((work_done < budget) && napi)
707 goto loop;
708
709done:
Sunil Goutham74840b82015-07-29 16:49:42 +0300710 /* Wakeup TXQ if its stopped earlier due to SQ full */
711 if (tx_done) {
Sunil Goutham92dc8762015-08-30 12:29:15 +0300712 netdev = nic->pnicvf->netdev;
713 txq = netdev_get_tx_queue(netdev,
714 nicvf_netdev_qidx(nic, cq_idx));
Sunil Goutham2c204c22016-09-23 14:42:28 +0530715 if (tx_pkts)
716 netdev_tx_completed_queue(txq, tx_pkts, tx_bytes);
717
Sunil Goutham92dc8762015-08-30 12:29:15 +0300718 nic = nic->pnicvf;
719 if (netif_tx_queue_stopped(txq) && netif_carrier_ok(netdev)) {
Sunil Gouthamb49087d2015-07-29 16:49:44 +0300720 netif_tx_start_queue(txq);
Sunil Goutham964cb692016-11-15 17:38:16 +0530721 this_cpu_inc(nic->drv_stats->txq_wake);
Sunil Goutham74840b82015-07-29 16:49:42 +0300722 if (netif_msg_tx_err(nic))
723 netdev_warn(netdev,
724 "%s: Transmit queue wakeup SQ%d\n",
725 netdev->name, cq_idx);
726 }
727 }
728
Sunil Goutham4863dea2015-05-26 19:20:15 -0700729 spin_unlock_bh(&cq->lock);
730 return work_done;
731}
732
733static int nicvf_poll(struct napi_struct *napi, int budget)
734{
735 u64 cq_head;
736 int work_done = 0;
737 struct net_device *netdev = napi->dev;
738 struct nicvf *nic = netdev_priv(netdev);
739 struct nicvf_cq_poll *cq;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700740
741 cq = container_of(napi, struct nicvf_cq_poll, napi);
742 work_done = nicvf_cq_intr_handler(netdev, cq->cq_idx, napi, budget);
743
Sunil Goutham4863dea2015-05-26 19:20:15 -0700744 if (work_done < budget) {
745 /* Slow packet rate, exit polling */
746 napi_complete(napi);
747 /* Re-enable interrupts */
748 cq_head = nicvf_queue_reg_read(nic, NIC_QSET_CQ_0_7_HEAD,
749 cq->cq_idx);
750 nicvf_clear_intr(nic, NICVF_INTR_CQ, cq->cq_idx);
751 nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_HEAD,
752 cq->cq_idx, cq_head);
753 nicvf_enable_intr(nic, NICVF_INTR_CQ, cq->cq_idx);
754 }
755 return work_done;
756}
757
758/* Qset error interrupt handler
759 *
760 * As of now only CQ errors are handled
761 */
Aleksey Makarovfd7ec062015-06-02 11:00:23 -0700762static void nicvf_handle_qs_err(unsigned long data)
Sunil Goutham4863dea2015-05-26 19:20:15 -0700763{
764 struct nicvf *nic = (struct nicvf *)data;
765 struct queue_set *qs = nic->qs;
766 int qidx;
767 u64 status;
768
769 netif_tx_disable(nic->netdev);
770
771 /* Check if it is CQ err */
772 for (qidx = 0; qidx < qs->cq_cnt; qidx++) {
773 status = nicvf_queue_reg_read(nic, NIC_QSET_CQ_0_7_STATUS,
774 qidx);
775 if (!(status & CQ_ERR_MASK))
776 continue;
777 /* Process already queued CQEs and reconfig CQ */
778 nicvf_disable_intr(nic, NICVF_INTR_CQ, qidx);
779 nicvf_sq_disable(nic, qidx);
780 nicvf_cq_intr_handler(nic->netdev, qidx, NULL, 0);
781 nicvf_cmp_queue_config(nic, qs, qidx, true);
782 nicvf_sq_free_used_descs(nic->netdev, &qs->sq[qidx], qidx);
783 nicvf_sq_enable(nic, &qs->sq[qidx], qidx);
784
785 nicvf_enable_intr(nic, NICVF_INTR_CQ, qidx);
786 }
787
788 netif_tx_start_all_queues(nic->netdev);
789 /* Re-enable Qset error interrupt */
790 nicvf_enable_intr(nic, NICVF_INTR_QS_ERR, 0);
791}
792
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300793static void nicvf_dump_intr_status(struct nicvf *nic)
794{
795 if (netif_msg_intr(nic))
796 netdev_info(nic->netdev, "%s: interrupt status 0x%llx\n",
797 nic->netdev->name, nicvf_reg_read(nic, NIC_VF_INT));
798}
799
Sunil Goutham4863dea2015-05-26 19:20:15 -0700800static irqreturn_t nicvf_misc_intr_handler(int irq, void *nicvf_irq)
801{
802 struct nicvf *nic = (struct nicvf *)nicvf_irq;
803 u64 intr;
804
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300805 nicvf_dump_intr_status(nic);
806
Sunil Goutham4863dea2015-05-26 19:20:15 -0700807 intr = nicvf_reg_read(nic, NIC_VF_INT);
808 /* Check for spurious interrupt */
809 if (!(intr & NICVF_INTR_MBOX_MASK))
810 return IRQ_HANDLED;
811
812 nicvf_handle_mbx_intr(nic);
813
814 return IRQ_HANDLED;
815}
816
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300817static irqreturn_t nicvf_intr_handler(int irq, void *cq_irq)
Sunil Goutham4863dea2015-05-26 19:20:15 -0700818{
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300819 struct nicvf_cq_poll *cq_poll = (struct nicvf_cq_poll *)cq_irq;
820 struct nicvf *nic = cq_poll->nicvf;
821 int qidx = cq_poll->cq_idx;
822
823 nicvf_dump_intr_status(nic);
824
825 /* Disable interrupts */
826 nicvf_disable_intr(nic, NICVF_INTR_CQ, qidx);
827
828 /* Schedule NAPI */
Sunil Gouthamef0a4d82016-02-11 21:50:22 +0530829 napi_schedule_irqoff(&cq_poll->napi);
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300830
831 /* Clear interrupt */
832 nicvf_clear_intr(nic, NICVF_INTR_CQ, qidx);
833
834 return IRQ_HANDLED;
835}
836
837static irqreturn_t nicvf_rbdr_intr_handler(int irq, void *nicvf_irq)
838{
Sunil Goutham4863dea2015-05-26 19:20:15 -0700839 struct nicvf *nic = (struct nicvf *)nicvf_irq;
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300840 u8 qidx;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700841
Sunil Goutham4863dea2015-05-26 19:20:15 -0700842
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300843 nicvf_dump_intr_status(nic);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700844
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300845 /* Disable RBDR interrupt and schedule softirq */
846 for (qidx = 0; qidx < nic->qs->rbdr_cnt; qidx++) {
847 if (!nicvf_is_intr_enabled(nic, NICVF_INTR_RBDR, qidx))
Sunil Goutham4863dea2015-05-26 19:20:15 -0700848 continue;
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300849 nicvf_disable_intr(nic, NICVF_INTR_RBDR, qidx);
850 tasklet_hi_schedule(&nic->rbdr_task);
851 /* Clear interrupt */
852 nicvf_clear_intr(nic, NICVF_INTR_RBDR, qidx);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700853 }
854
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300855 return IRQ_HANDLED;
856}
Sunil Goutham4863dea2015-05-26 19:20:15 -0700857
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300858static irqreturn_t nicvf_qs_err_intr_handler(int irq, void *nicvf_irq)
859{
860 struct nicvf *nic = (struct nicvf *)nicvf_irq;
861
862 nicvf_dump_intr_status(nic);
863
864 /* Disable Qset err interrupt and schedule softirq */
865 nicvf_disable_intr(nic, NICVF_INTR_QS_ERR, 0);
866 tasklet_hi_schedule(&nic->qs_err_task);
867 nicvf_clear_intr(nic, NICVF_INTR_QS_ERR, 0);
868
Sunil Goutham4863dea2015-05-26 19:20:15 -0700869 return IRQ_HANDLED;
870}
871
872static int nicvf_enable_msix(struct nicvf *nic)
873{
874 int ret, vec;
875
876 nic->num_vec = NIC_VF_MSIX_VECTORS;
877
878 for (vec = 0; vec < nic->num_vec; vec++)
879 nic->msix_entries[vec].entry = vec;
880
881 ret = pci_enable_msix(nic->pdev, nic->msix_entries, nic->num_vec);
882 if (ret) {
883 netdev_err(nic->netdev,
884 "Req for #%d msix vectors failed\n", nic->num_vec);
885 return 0;
886 }
887 nic->msix_enabled = 1;
888 return 1;
889}
890
891static void nicvf_disable_msix(struct nicvf *nic)
892{
893 if (nic->msix_enabled) {
894 pci_disable_msix(nic->pdev);
895 nic->msix_enabled = 0;
896 nic->num_vec = 0;
897 }
898}
899
Sunil Gouthamfb4b7d92016-02-11 21:50:23 +0530900static void nicvf_set_irq_affinity(struct nicvf *nic)
901{
902 int vec, cpu;
903 int irqnum;
904
905 for (vec = 0; vec < nic->num_vec; vec++) {
906 if (!nic->irq_allocated[vec])
907 continue;
908
909 if (!zalloc_cpumask_var(&nic->affinity_mask[vec], GFP_KERNEL))
910 return;
911 /* CQ interrupts */
912 if (vec < NICVF_INTR_ID_SQ)
913 /* Leave CPU0 for RBDR and other interrupts */
914 cpu = nicvf_netdev_qidx(nic, vec) + 1;
915 else
916 cpu = 0;
917
918 cpumask_set_cpu(cpumask_local_spread(cpu, nic->node),
919 nic->affinity_mask[vec]);
920 irqnum = nic->msix_entries[vec].vector;
921 irq_set_affinity_hint(irqnum, nic->affinity_mask[vec]);
922 }
923}
924
Sunil Goutham4863dea2015-05-26 19:20:15 -0700925static int nicvf_register_interrupts(struct nicvf *nic)
926{
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300927 int irq, ret = 0;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700928 int vector;
929
930 for_each_cq_irq(irq)
Sunil Gouthame4126212016-08-12 16:51:36 +0530931 sprintf(nic->irq_name[irq], "%s-rxtx-%d",
932 nic->pnicvf->netdev->name,
933 nicvf_netdev_qidx(nic, irq));
Sunil Goutham4863dea2015-05-26 19:20:15 -0700934
935 for_each_sq_irq(irq)
Sunil Gouthame4126212016-08-12 16:51:36 +0530936 sprintf(nic->irq_name[irq], "%s-sq-%d",
937 nic->pnicvf->netdev->name,
938 nicvf_netdev_qidx(nic, irq - NICVF_INTR_ID_SQ));
Sunil Goutham4863dea2015-05-26 19:20:15 -0700939
940 for_each_rbdr_irq(irq)
Sunil Gouthame4126212016-08-12 16:51:36 +0530941 sprintf(nic->irq_name[irq], "%s-rbdr-%d",
942 nic->pnicvf->netdev->name,
943 nic->sqs_mode ? (nic->sqs_id + 1) : 0);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700944
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300945 /* Register CQ interrupts */
946 for (irq = 0; irq < nic->qs->cq_cnt; irq++) {
Sunil Goutham4863dea2015-05-26 19:20:15 -0700947 vector = nic->msix_entries[irq].vector;
948 ret = request_irq(vector, nicvf_intr_handler,
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300949 0, nic->irq_name[irq], nic->napi[irq]);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700950 if (ret)
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300951 goto err;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700952 nic->irq_allocated[irq] = true;
953 }
954
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300955 /* Register RBDR interrupt */
956 for (irq = NICVF_INTR_ID_RBDR;
957 irq < (NICVF_INTR_ID_RBDR + nic->qs->rbdr_cnt); irq++) {
Sunil Goutham4863dea2015-05-26 19:20:15 -0700958 vector = nic->msix_entries[irq].vector;
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300959 ret = request_irq(vector, nicvf_rbdr_intr_handler,
Sunil Goutham4863dea2015-05-26 19:20:15 -0700960 0, nic->irq_name[irq], nic);
961 if (ret)
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300962 goto err;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700963 nic->irq_allocated[irq] = true;
964 }
965
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300966 /* Register QS error interrupt */
Sunil Gouthame4126212016-08-12 16:51:36 +0530967 sprintf(nic->irq_name[NICVF_INTR_ID_QS_ERR], "%s-qset-err-%d",
968 nic->pnicvf->netdev->name,
969 nic->sqs_mode ? (nic->sqs_id + 1) : 0);
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300970 irq = NICVF_INTR_ID_QS_ERR;
971 ret = request_irq(nic->msix_entries[irq].vector,
972 nicvf_qs_err_intr_handler,
973 0, nic->irq_name[irq], nic);
Sunil Gouthamfb4b7d92016-02-11 21:50:23 +0530974 if (ret)
975 goto err;
976
977 nic->irq_allocated[irq] = true;
978
979 /* Set IRQ affinities */
980 nicvf_set_irq_affinity(nic);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700981
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300982err:
983 if (ret)
984 netdev_err(nic->netdev, "request_irq failed, vector %d\n", irq);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700985
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300986 return ret;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700987}
988
989static void nicvf_unregister_interrupts(struct nicvf *nic)
990{
991 int irq;
992
993 /* Free registered interrupts */
994 for (irq = 0; irq < nic->num_vec; irq++) {
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300995 if (!nic->irq_allocated[irq])
996 continue;
997
Sunil Gouthamfb4b7d92016-02-11 21:50:23 +0530998 irq_set_affinity_hint(nic->msix_entries[irq].vector, NULL);
999 free_cpumask_var(nic->affinity_mask[irq]);
1000
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001001 if (irq < NICVF_INTR_ID_SQ)
1002 free_irq(nic->msix_entries[irq].vector, nic->napi[irq]);
1003 else
Sunil Goutham4863dea2015-05-26 19:20:15 -07001004 free_irq(nic->msix_entries[irq].vector, nic);
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001005
Sunil Goutham4863dea2015-05-26 19:20:15 -07001006 nic->irq_allocated[irq] = false;
1007 }
1008
1009 /* Disable MSI-X */
1010 nicvf_disable_msix(nic);
1011}
1012
1013/* Initialize MSIX vectors and register MISC interrupt.
1014 * Send READY message to PF to check if its alive
1015 */
1016static int nicvf_register_misc_interrupt(struct nicvf *nic)
1017{
1018 int ret = 0;
1019 int irq = NICVF_INTR_ID_MISC;
1020
1021 /* Return if mailbox interrupt is already registered */
1022 if (nic->msix_enabled)
1023 return 0;
1024
1025 /* Enable MSI-X */
1026 if (!nicvf_enable_msix(nic))
1027 return 1;
1028
1029 sprintf(nic->irq_name[irq], "%s Mbox", "NICVF");
1030 /* Register Misc interrupt */
1031 ret = request_irq(nic->msix_entries[irq].vector,
1032 nicvf_misc_intr_handler, 0, nic->irq_name[irq], nic);
1033
1034 if (ret)
1035 return ret;
1036 nic->irq_allocated[irq] = true;
1037
1038 /* Enable mailbox interrupt */
1039 nicvf_enable_intr(nic, NICVF_INTR_MBOX, 0);
1040
1041 /* Check if VF is able to communicate with PF */
1042 if (!nicvf_check_pf_ready(nic)) {
1043 nicvf_disable_intr(nic, NICVF_INTR_MBOX, 0);
1044 nicvf_unregister_interrupts(nic);
1045 return 1;
1046 }
1047
1048 return 0;
1049}
1050
1051static netdev_tx_t nicvf_xmit(struct sk_buff *skb, struct net_device *netdev)
1052{
1053 struct nicvf *nic = netdev_priv(netdev);
1054 int qid = skb_get_queue_mapping(skb);
1055 struct netdev_queue *txq = netdev_get_tx_queue(netdev, qid);
1056
1057 /* Check for minimum packet length */
1058 if (skb->len <= ETH_HLEN) {
1059 dev_kfree_skb(skb);
1060 return NETDEV_TX_OK;
1061 }
1062
Sunil Gouthamb49087d2015-07-29 16:49:44 +03001063 if (!netif_tx_queue_stopped(txq) && !nicvf_sq_append_skb(nic, skb)) {
Sunil Goutham4863dea2015-05-26 19:20:15 -07001064 netif_tx_stop_queue(txq);
Sunil Goutham964cb692016-11-15 17:38:16 +05301065 this_cpu_inc(nic->drv_stats->txq_stop);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001066 if (netif_msg_tx_err(nic))
1067 netdev_warn(netdev,
1068 "%s: Transmit ring full, stopping SQ%d\n",
1069 netdev->name, qid);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001070 return NETDEV_TX_BUSY;
1071 }
1072
1073 return NETDEV_TX_OK;
1074}
1075
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001076static inline void nicvf_free_cq_poll(struct nicvf *nic)
1077{
1078 struct nicvf_cq_poll *cq_poll;
1079 int qidx;
1080
1081 for (qidx = 0; qidx < nic->qs->cq_cnt; qidx++) {
1082 cq_poll = nic->napi[qidx];
1083 if (!cq_poll)
1084 continue;
1085 nic->napi[qidx] = NULL;
1086 kfree(cq_poll);
1087 }
1088}
1089
Sunil Goutham4863dea2015-05-26 19:20:15 -07001090int nicvf_stop(struct net_device *netdev)
1091{
1092 int irq, qidx;
1093 struct nicvf *nic = netdev_priv(netdev);
1094 struct queue_set *qs = nic->qs;
1095 struct nicvf_cq_poll *cq_poll = NULL;
1096 union nic_mbx mbx = {};
1097
1098 mbx.msg.msg = NIC_MBOX_MSG_SHUTDOWN;
1099 nicvf_send_msg_to_pf(nic, &mbx);
1100
1101 netif_carrier_off(netdev);
Sunil Goutham92dc8762015-08-30 12:29:15 +03001102 netif_tx_stop_all_queues(nic->netdev);
Sunil Goutham0b72a9a2015-12-02 15:36:16 +05301103 nic->link_up = false;
Sunil Goutham92dc8762015-08-30 12:29:15 +03001104
1105 /* Teardown secondary qsets first */
1106 if (!nic->sqs_mode) {
1107 for (qidx = 0; qidx < nic->sqs_count; qidx++) {
1108 if (!nic->snicvf[qidx])
1109 continue;
1110 nicvf_stop(nic->snicvf[qidx]->netdev);
1111 nic->snicvf[qidx] = NULL;
1112 }
1113 }
Sunil Goutham4863dea2015-05-26 19:20:15 -07001114
1115 /* Disable RBDR & QS error interrupts */
1116 for (qidx = 0; qidx < qs->rbdr_cnt; qidx++) {
1117 nicvf_disable_intr(nic, NICVF_INTR_RBDR, qidx);
1118 nicvf_clear_intr(nic, NICVF_INTR_RBDR, qidx);
1119 }
1120 nicvf_disable_intr(nic, NICVF_INTR_QS_ERR, 0);
1121 nicvf_clear_intr(nic, NICVF_INTR_QS_ERR, 0);
1122
1123 /* Wait for pending IRQ handlers to finish */
1124 for (irq = 0; irq < nic->num_vec; irq++)
1125 synchronize_irq(nic->msix_entries[irq].vector);
1126
1127 tasklet_kill(&nic->rbdr_task);
1128 tasklet_kill(&nic->qs_err_task);
1129 if (nic->rb_work_scheduled)
1130 cancel_delayed_work_sync(&nic->rbdr_work);
1131
1132 for (qidx = 0; qidx < nic->qs->cq_cnt; qidx++) {
1133 cq_poll = nic->napi[qidx];
1134 if (!cq_poll)
1135 continue;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001136 napi_synchronize(&cq_poll->napi);
1137 /* CQ intr is enabled while napi_complete,
1138 * so disable it now
1139 */
1140 nicvf_disable_intr(nic, NICVF_INTR_CQ, qidx);
1141 nicvf_clear_intr(nic, NICVF_INTR_CQ, qidx);
1142 napi_disable(&cq_poll->napi);
1143 netif_napi_del(&cq_poll->napi);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001144 }
1145
Sunil Gouthamb49087d2015-07-29 16:49:44 +03001146 netif_tx_disable(netdev);
1147
Sunil Goutham2c204c22016-09-23 14:42:28 +05301148 for (qidx = 0; qidx < netdev->num_tx_queues; qidx++)
1149 netdev_tx_reset_queue(netdev_get_tx_queue(netdev, qidx));
1150
Sunil Goutham4863dea2015-05-26 19:20:15 -07001151 /* Free resources */
1152 nicvf_config_data_transfer(nic, false);
1153
1154 /* Disable HW Qset */
1155 nicvf_qset_config(nic, false);
1156
1157 /* disable mailbox interrupt */
1158 nicvf_disable_intr(nic, NICVF_INTR_MBOX, 0);
1159
1160 nicvf_unregister_interrupts(nic);
1161
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001162 nicvf_free_cq_poll(nic);
1163
Sunil Goutham92dc8762015-08-30 12:29:15 +03001164 /* Clear multiqset info */
1165 nic->pnicvf = nic;
Sunil Goutham92dc8762015-08-30 12:29:15 +03001166
Sunil Goutham4863dea2015-05-26 19:20:15 -07001167 return 0;
1168}
1169
Sunil Goutham712c3182016-11-15 17:37:36 +05301170static int nicvf_update_hw_max_frs(struct nicvf *nic, int mtu)
1171{
1172 union nic_mbx mbx = {};
1173
1174 mbx.frs.msg = NIC_MBOX_MSG_SET_MAX_FRS;
1175 mbx.frs.max_frs = mtu;
1176 mbx.frs.vf_id = nic->vf_id;
1177
1178 return nicvf_send_msg_to_pf(nic, &mbx);
1179}
1180
Sunil Goutham4863dea2015-05-26 19:20:15 -07001181int nicvf_open(struct net_device *netdev)
1182{
Sunil Goutham964cb692016-11-15 17:38:16 +05301183 int cpu, err, qidx;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001184 struct nicvf *nic = netdev_priv(netdev);
1185 struct queue_set *qs = nic->qs;
1186 struct nicvf_cq_poll *cq_poll = NULL;
1187
Sunil Goutham4863dea2015-05-26 19:20:15 -07001188 netif_carrier_off(netdev);
1189
1190 err = nicvf_register_misc_interrupt(nic);
1191 if (err)
1192 return err;
1193
1194 /* Register NAPI handler for processing CQEs */
1195 for (qidx = 0; qidx < qs->cq_cnt; qidx++) {
1196 cq_poll = kzalloc(sizeof(*cq_poll), GFP_KERNEL);
1197 if (!cq_poll) {
1198 err = -ENOMEM;
1199 goto napi_del;
1200 }
1201 cq_poll->cq_idx = qidx;
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001202 cq_poll->nicvf = nic;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001203 netif_napi_add(netdev, &cq_poll->napi, nicvf_poll,
1204 NAPI_POLL_WEIGHT);
1205 napi_enable(&cq_poll->napi);
1206 nic->napi[qidx] = cq_poll;
1207 }
1208
1209 /* Check if we got MAC address from PF or else generate a radom MAC */
Sunil Gouthama3a8ce42016-08-12 16:51:40 +05301210 if (!nic->sqs_mode && is_zero_ether_addr(netdev->dev_addr)) {
Sunil Goutham4863dea2015-05-26 19:20:15 -07001211 eth_hw_addr_random(netdev);
1212 nicvf_hw_set_mac_addr(nic, netdev);
1213 }
1214
Pavel Fedinbd049a92015-06-23 17:51:06 +03001215 if (nic->set_mac_pending) {
1216 nic->set_mac_pending = false;
1217 nicvf_hw_set_mac_addr(nic, netdev);
1218 }
1219
Sunil Goutham4863dea2015-05-26 19:20:15 -07001220 /* Init tasklet for handling Qset err interrupt */
1221 tasklet_init(&nic->qs_err_task, nicvf_handle_qs_err,
1222 (unsigned long)nic);
1223
1224 /* Init RBDR tasklet which will refill RBDR */
1225 tasklet_init(&nic->rbdr_task, nicvf_rbdr_task,
1226 (unsigned long)nic);
1227 INIT_DELAYED_WORK(&nic->rbdr_work, nicvf_rbdr_work);
1228
1229 /* Configure CPI alorithm */
1230 nic->cpi_alg = cpi_alg;
Sunil Goutham92dc8762015-08-30 12:29:15 +03001231 if (!nic->sqs_mode)
1232 nicvf_config_cpi(nic);
1233
1234 nicvf_request_sqs(nic);
1235 if (nic->sqs_mode)
1236 nicvf_get_primary_vf_struct(nic);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001237
Sunil Goutham712c3182016-11-15 17:37:36 +05301238 /* Configure receive side scaling and MTU */
1239 if (!nic->sqs_mode) {
Sunil Goutham92dc8762015-08-30 12:29:15 +03001240 nicvf_rss_init(nic);
Sunil Goutham712c3182016-11-15 17:37:36 +05301241 if (nicvf_update_hw_max_frs(nic, netdev->mtu))
1242 goto cleanup;
Sunil Goutham964cb692016-11-15 17:38:16 +05301243
1244 /* Clear percpu stats */
1245 for_each_possible_cpu(cpu)
1246 memset(per_cpu_ptr(nic->drv_stats, cpu), 0,
1247 sizeof(struct nicvf_drv_stats));
Sunil Goutham712c3182016-11-15 17:37:36 +05301248 }
Sunil Goutham4863dea2015-05-26 19:20:15 -07001249
1250 err = nicvf_register_interrupts(nic);
1251 if (err)
1252 goto cleanup;
1253
1254 /* Initialize the queues */
1255 err = nicvf_init_resources(nic);
1256 if (err)
1257 goto cleanup;
1258
1259 /* Make sure queue initialization is written */
1260 wmb();
1261
1262 nicvf_reg_write(nic, NIC_VF_INT, -1);
1263 /* Enable Qset err interrupt */
1264 nicvf_enable_intr(nic, NICVF_INTR_QS_ERR, 0);
1265
1266 /* Enable completion queue interrupt */
1267 for (qidx = 0; qidx < qs->cq_cnt; qidx++)
1268 nicvf_enable_intr(nic, NICVF_INTR_CQ, qidx);
1269
1270 /* Enable RBDR threshold interrupt */
1271 for (qidx = 0; qidx < qs->rbdr_cnt; qidx++)
1272 nicvf_enable_intr(nic, NICVF_INTR_RBDR, qidx);
1273
Sunil Goutham4863dea2015-05-26 19:20:15 -07001274 return 0;
1275cleanup:
1276 nicvf_disable_intr(nic, NICVF_INTR_MBOX, 0);
1277 nicvf_unregister_interrupts(nic);
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001278 tasklet_kill(&nic->qs_err_task);
1279 tasklet_kill(&nic->rbdr_task);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001280napi_del:
1281 for (qidx = 0; qidx < qs->cq_cnt; qidx++) {
1282 cq_poll = nic->napi[qidx];
1283 if (!cq_poll)
1284 continue;
1285 napi_disable(&cq_poll->napi);
1286 netif_napi_del(&cq_poll->napi);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001287 }
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001288 nicvf_free_cq_poll(nic);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001289 return err;
1290}
1291
Sunil Goutham4863dea2015-05-26 19:20:15 -07001292static int nicvf_change_mtu(struct net_device *netdev, int new_mtu)
1293{
1294 struct nicvf *nic = netdev_priv(netdev);
1295
1296 if (new_mtu > NIC_HW_MAX_FRS)
1297 return -EINVAL;
1298
1299 if (new_mtu < NIC_HW_MIN_FRS)
1300 return -EINVAL;
1301
Sunil Goutham712c3182016-11-15 17:37:36 +05301302 netdev->mtu = new_mtu;
1303
1304 if (!netif_running(netdev))
1305 return 0;
1306
Sunil Goutham4863dea2015-05-26 19:20:15 -07001307 if (nicvf_update_hw_max_frs(nic, new_mtu))
1308 return -EINVAL;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001309
1310 return 0;
1311}
1312
1313static int nicvf_set_mac_address(struct net_device *netdev, void *p)
1314{
1315 struct sockaddr *addr = p;
1316 struct nicvf *nic = netdev_priv(netdev);
1317
1318 if (!is_valid_ether_addr(addr->sa_data))
1319 return -EADDRNOTAVAIL;
1320
1321 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
1322
Pavel Fedinbd049a92015-06-23 17:51:06 +03001323 if (nic->msix_enabled) {
Sunil Goutham4863dea2015-05-26 19:20:15 -07001324 if (nicvf_hw_set_mac_addr(nic, netdev))
1325 return -EBUSY;
Pavel Fedinbd049a92015-06-23 17:51:06 +03001326 } else {
1327 nic->set_mac_pending = true;
1328 }
Sunil Goutham4863dea2015-05-26 19:20:15 -07001329
1330 return 0;
1331}
1332
Sunil Goutham4863dea2015-05-26 19:20:15 -07001333void nicvf_update_lmac_stats(struct nicvf *nic)
1334{
1335 int stat = 0;
1336 union nic_mbx mbx = {};
Sunil Goutham4863dea2015-05-26 19:20:15 -07001337
1338 if (!netif_running(nic->netdev))
1339 return;
1340
1341 mbx.bgx_stats.msg = NIC_MBOX_MSG_BGX_STATS;
1342 mbx.bgx_stats.vf_id = nic->vf_id;
1343 /* Rx stats */
1344 mbx.bgx_stats.rx = 1;
1345 while (stat < BGX_RX_STATS_COUNT) {
Sunil Goutham4863dea2015-05-26 19:20:15 -07001346 mbx.bgx_stats.idx = stat;
Sunil Goutham6051cba2015-08-30 12:29:11 +03001347 if (nicvf_send_msg_to_pf(nic, &mbx))
1348 return;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001349 stat++;
1350 }
1351
1352 stat = 0;
1353
1354 /* Tx stats */
1355 mbx.bgx_stats.rx = 0;
1356 while (stat < BGX_TX_STATS_COUNT) {
Sunil Goutham4863dea2015-05-26 19:20:15 -07001357 mbx.bgx_stats.idx = stat;
Sunil Goutham6051cba2015-08-30 12:29:11 +03001358 if (nicvf_send_msg_to_pf(nic, &mbx))
1359 return;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001360 stat++;
1361 }
1362}
1363
1364void nicvf_update_stats(struct nicvf *nic)
1365{
Sunil Goutham964cb692016-11-15 17:38:16 +05301366 int qidx, cpu;
1367 u64 tmp_stats = 0;
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001368 struct nicvf_hw_stats *stats = &nic->hw_stats;
Sunil Goutham964cb692016-11-15 17:38:16 +05301369 struct nicvf_drv_stats *drv_stats;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001370 struct queue_set *qs = nic->qs;
1371
1372#define GET_RX_STATS(reg) \
1373 nicvf_reg_read(nic, NIC_VNIC_RX_STAT_0_13 | (reg << 3))
1374#define GET_TX_STATS(reg) \
1375 nicvf_reg_read(nic, NIC_VNIC_TX_STAT_0_4 | (reg << 3))
1376
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001377 stats->rx_bytes = GET_RX_STATS(RX_OCTS);
1378 stats->rx_ucast_frames = GET_RX_STATS(RX_UCAST);
1379 stats->rx_bcast_frames = GET_RX_STATS(RX_BCAST);
1380 stats->rx_mcast_frames = GET_RX_STATS(RX_MCAST);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001381 stats->rx_fcs_errors = GET_RX_STATS(RX_FCS);
1382 stats->rx_l2_errors = GET_RX_STATS(RX_L2ERR);
1383 stats->rx_drop_red = GET_RX_STATS(RX_RED);
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001384 stats->rx_drop_red_bytes = GET_RX_STATS(RX_RED_OCTS);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001385 stats->rx_drop_overrun = GET_RX_STATS(RX_ORUN);
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001386 stats->rx_drop_overrun_bytes = GET_RX_STATS(RX_ORUN_OCTS);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001387 stats->rx_drop_bcast = GET_RX_STATS(RX_DRP_BCAST);
1388 stats->rx_drop_mcast = GET_RX_STATS(RX_DRP_MCAST);
1389 stats->rx_drop_l3_bcast = GET_RX_STATS(RX_DRP_L3BCAST);
1390 stats->rx_drop_l3_mcast = GET_RX_STATS(RX_DRP_L3MCAST);
1391
Sunil Goutham964cb692016-11-15 17:38:16 +05301392 stats->tx_bytes = GET_TX_STATS(TX_OCTS);
1393 stats->tx_ucast_frames = GET_TX_STATS(TX_UCAST);
1394 stats->tx_bcast_frames = GET_TX_STATS(TX_BCAST);
1395 stats->tx_mcast_frames = GET_TX_STATS(TX_MCAST);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001396 stats->tx_drops = GET_TX_STATS(TX_DROP);
1397
Sunil Goutham964cb692016-11-15 17:38:16 +05301398 /* On T88 pass 2.0, the dummy SQE added for TSO notification
1399 * via CQE has 'dont_send' set. Hence HW drops the pkt pointed
1400 * pointed by dummy SQE and results in tx_drops counter being
1401 * incremented. Subtracting it from tx_tso counter will give
1402 * exact tx_drops counter.
1403 */
1404 if (nic->t88 && nic->hw_tso) {
1405 for_each_possible_cpu(cpu) {
1406 drv_stats = per_cpu_ptr(nic->drv_stats, cpu);
1407 tmp_stats += drv_stats->tx_tso;
1408 }
1409 stats->tx_drops = tmp_stats - stats->tx_drops;
1410 }
1411 stats->tx_frames = stats->tx_ucast_frames +
1412 stats->tx_bcast_frames +
1413 stats->tx_mcast_frames;
1414 stats->rx_frames = stats->rx_ucast_frames +
1415 stats->rx_bcast_frames +
1416 stats->rx_mcast_frames;
1417 stats->rx_drops = stats->rx_drop_red +
1418 stats->rx_drop_overrun;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001419
1420 /* Update RQ and SQ stats */
1421 for (qidx = 0; qidx < qs->rq_cnt; qidx++)
1422 nicvf_update_rq_stats(nic, qidx);
1423 for (qidx = 0; qidx < qs->sq_cnt; qidx++)
1424 nicvf_update_sq_stats(nic, qidx);
1425}
1426
Aleksey Makarovfd7ec062015-06-02 11:00:23 -07001427static struct rtnl_link_stats64 *nicvf_get_stats64(struct net_device *netdev,
Sunil Goutham4863dea2015-05-26 19:20:15 -07001428 struct rtnl_link_stats64 *stats)
1429{
1430 struct nicvf *nic = netdev_priv(netdev);
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001431 struct nicvf_hw_stats *hw_stats = &nic->hw_stats;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001432
1433 nicvf_update_stats(nic);
1434
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001435 stats->rx_bytes = hw_stats->rx_bytes;
Sunil Goutham964cb692016-11-15 17:38:16 +05301436 stats->rx_packets = hw_stats->rx_frames;
1437 stats->rx_dropped = hw_stats->rx_drops;
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001438 stats->multicast = hw_stats->rx_mcast_frames;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001439
Sunil Goutham964cb692016-11-15 17:38:16 +05301440 stats->tx_bytes = hw_stats->tx_bytes;
1441 stats->tx_packets = hw_stats->tx_frames;
1442 stats->tx_dropped = hw_stats->tx_drops;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001443
1444 return stats;
1445}
1446
1447static void nicvf_tx_timeout(struct net_device *dev)
1448{
1449 struct nicvf *nic = netdev_priv(dev);
1450
1451 if (netif_msg_tx_err(nic))
1452 netdev_warn(dev, "%s: Transmit timed out, resetting\n",
1453 dev->name);
1454
Sunil Goutham964cb692016-11-15 17:38:16 +05301455 this_cpu_inc(nic->drv_stats->tx_timeout);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001456 schedule_work(&nic->reset_task);
1457}
1458
1459static void nicvf_reset_task(struct work_struct *work)
1460{
1461 struct nicvf *nic;
1462
1463 nic = container_of(work, struct nicvf, reset_task);
1464
1465 if (!netif_running(nic->netdev))
1466 return;
1467
1468 nicvf_stop(nic->netdev);
1469 nicvf_open(nic->netdev);
Florian Westphal860e9532016-05-03 16:33:13 +02001470 netif_trans_update(nic->netdev);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001471}
1472
Sunil Gouthamd77a2382015-08-30 12:29:16 +03001473static int nicvf_config_loopback(struct nicvf *nic,
1474 netdev_features_t features)
1475{
1476 union nic_mbx mbx = {};
1477
1478 mbx.lbk.msg = NIC_MBOX_MSG_LOOPBACK;
1479 mbx.lbk.vf_id = nic->vf_id;
1480 mbx.lbk.enable = (features & NETIF_F_LOOPBACK) != 0;
1481
1482 return nicvf_send_msg_to_pf(nic, &mbx);
1483}
1484
1485static netdev_features_t nicvf_fix_features(struct net_device *netdev,
1486 netdev_features_t features)
1487{
1488 struct nicvf *nic = netdev_priv(netdev);
1489
1490 if ((features & NETIF_F_LOOPBACK) &&
1491 netif_running(netdev) && !nic->loopback_supported)
1492 features &= ~NETIF_F_LOOPBACK;
1493
1494 return features;
1495}
1496
Sunil Gouthamaa2e2592015-08-30 12:29:13 +03001497static int nicvf_set_features(struct net_device *netdev,
1498 netdev_features_t features)
1499{
1500 struct nicvf *nic = netdev_priv(netdev);
1501 netdev_features_t changed = features ^ netdev->features;
1502
1503 if (changed & NETIF_F_HW_VLAN_CTAG_RX)
1504 nicvf_config_vlan_stripping(nic, features);
1505
Sunil Gouthamd77a2382015-08-30 12:29:16 +03001506 if ((changed & NETIF_F_LOOPBACK) && netif_running(netdev))
1507 return nicvf_config_loopback(nic, features);
1508
Sunil Gouthamaa2e2592015-08-30 12:29:13 +03001509 return 0;
1510}
1511
Sunil Goutham4863dea2015-05-26 19:20:15 -07001512static const struct net_device_ops nicvf_netdev_ops = {
1513 .ndo_open = nicvf_open,
1514 .ndo_stop = nicvf_stop,
1515 .ndo_start_xmit = nicvf_xmit,
1516 .ndo_change_mtu = nicvf_change_mtu,
1517 .ndo_set_mac_address = nicvf_set_mac_address,
1518 .ndo_get_stats64 = nicvf_get_stats64,
1519 .ndo_tx_timeout = nicvf_tx_timeout,
Sunil Gouthamd77a2382015-08-30 12:29:16 +03001520 .ndo_fix_features = nicvf_fix_features,
Sunil Gouthamaa2e2592015-08-30 12:29:13 +03001521 .ndo_set_features = nicvf_set_features,
Sunil Goutham4863dea2015-05-26 19:20:15 -07001522};
1523
1524static int nicvf_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
1525{
1526 struct device *dev = &pdev->dev;
1527 struct net_device *netdev;
1528 struct nicvf *nic;
Sunil Goutham92dc8762015-08-30 12:29:15 +03001529 int err, qcount;
Sunil Goutham7ceb8a12016-08-30 11:36:27 +05301530 u16 sdevid;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001531
1532 err = pci_enable_device(pdev);
1533 if (err) {
1534 dev_err(dev, "Failed to enable PCI device\n");
1535 return err;
1536 }
1537
1538 err = pci_request_regions(pdev, DRV_NAME);
1539 if (err) {
1540 dev_err(dev, "PCI request regions failed 0x%x\n", err);
1541 goto err_disable_device;
1542 }
1543
1544 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(48));
1545 if (err) {
1546 dev_err(dev, "Unable to get usable DMA configuration\n");
1547 goto err_release_regions;
1548 }
1549
1550 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(48));
1551 if (err) {
1552 dev_err(dev, "unable to get 48-bit DMA for consistent allocations\n");
1553 goto err_release_regions;
1554 }
1555
Sunil Goutham3a397eb2016-08-12 16:51:27 +05301556 qcount = netif_get_num_default_rss_queues();
Sunil Goutham92dc8762015-08-30 12:29:15 +03001557
1558 /* Restrict multiqset support only for host bound VFs */
1559 if (pdev->is_virtfn) {
1560 /* Set max number of queues per VF */
Sunil Goutham3a397eb2016-08-12 16:51:27 +05301561 qcount = min_t(int, num_online_cpus(),
1562 (MAX_SQS_PER_VF + 1) * MAX_CMP_QUEUES_PER_QS);
Sunil Goutham92dc8762015-08-30 12:29:15 +03001563 }
1564
1565 netdev = alloc_etherdev_mqs(sizeof(struct nicvf), qcount, qcount);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001566 if (!netdev) {
1567 err = -ENOMEM;
1568 goto err_release_regions;
1569 }
1570
1571 pci_set_drvdata(pdev, netdev);
1572
1573 SET_NETDEV_DEV(netdev, &pdev->dev);
1574
1575 nic = netdev_priv(netdev);
1576 nic->netdev = netdev;
1577 nic->pdev = pdev;
Sunil Goutham92dc8762015-08-30 12:29:15 +03001578 nic->pnicvf = nic;
1579 nic->max_queues = qcount;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001580
1581 /* MAP VF's configuration registers */
1582 nic->reg_base = pcim_iomap(pdev, PCI_CFG_REG_BAR_NUM, 0);
1583 if (!nic->reg_base) {
1584 dev_err(dev, "Cannot map config register space, aborting\n");
1585 err = -ENOMEM;
1586 goto err_free_netdev;
1587 }
1588
Sunil Goutham964cb692016-11-15 17:38:16 +05301589 nic->drv_stats = netdev_alloc_pcpu_stats(struct nicvf_drv_stats);
1590 if (!nic->drv_stats) {
1591 err = -ENOMEM;
1592 goto err_free_netdev;
1593 }
1594
Sunil Goutham4863dea2015-05-26 19:20:15 -07001595 err = nicvf_set_qset_resources(nic);
1596 if (err)
1597 goto err_free_netdev;
1598
Sunil Goutham4863dea2015-05-26 19:20:15 -07001599 /* Check if PF is alive and get MAC address for this VF */
1600 err = nicvf_register_misc_interrupt(nic);
1601 if (err)
1602 goto err_free_netdev;
1603
Sunil Goutham92dc8762015-08-30 12:29:15 +03001604 nicvf_send_vf_struct(nic);
1605
Sunil Goutham8d210d52016-02-16 16:29:50 +05301606 if (!pass1_silicon(nic->pdev))
1607 nic->hw_tso = true;
1608
Sunil Goutham7ceb8a12016-08-30 11:36:27 +05301609 pci_read_config_word(nic->pdev, PCI_SUBSYSTEM_ID, &sdevid);
1610 if (sdevid == 0xA134)
1611 nic->t88 = true;
1612
Sunil Goutham92dc8762015-08-30 12:29:15 +03001613 /* Check if this VF is in QS only mode */
1614 if (nic->sqs_mode)
1615 return 0;
1616
1617 err = nicvf_set_real_num_queues(netdev, nic->tx_queues, nic->rx_queues);
1618 if (err)
1619 goto err_unregister_interrupts;
1620
Sunil Gouthamaa2e2592015-08-30 12:29:13 +03001621 netdev->hw_features = (NETIF_F_RXCSUM | NETIF_F_IP_CSUM | NETIF_F_SG |
1622 NETIF_F_TSO | NETIF_F_GRO |
Sunil Goutham92dc8762015-08-30 12:29:15 +03001623 NETIF_F_HW_VLAN_CTAG_RX);
1624
1625 netdev->hw_features |= NETIF_F_RXHASH;
Sunil Goutham38bb5d42015-08-30 12:29:12 +03001626
Sunil Gouthamaa2e2592015-08-30 12:29:13 +03001627 netdev->features |= netdev->hw_features;
Sunil Gouthamd77a2382015-08-30 12:29:16 +03001628 netdev->hw_features |= NETIF_F_LOOPBACK;
Sunil Gouthamaa2e2592015-08-30 12:29:13 +03001629
1630 netdev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001631
1632 netdev->netdev_ops = &nicvf_netdev_ops;
Sunil Goutham3d7a8aa2015-07-29 16:49:43 +03001633 netdev->watchdog_timeo = NICVF_TX_TIMEOUT;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001634
1635 INIT_WORK(&nic->reset_task, nicvf_reset_task);
1636
1637 err = register_netdev(netdev);
1638 if (err) {
1639 dev_err(dev, "Failed to register netdevice\n");
1640 goto err_unregister_interrupts;
1641 }
1642
1643 nic->msg_enable = debug;
1644
1645 nicvf_set_ethtool_ops(netdev);
1646
1647 return 0;
1648
1649err_unregister_interrupts:
1650 nicvf_unregister_interrupts(nic);
1651err_free_netdev:
1652 pci_set_drvdata(pdev, NULL);
Sunil Goutham964cb692016-11-15 17:38:16 +05301653 if (nic->drv_stats)
1654 free_percpu(nic->drv_stats);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001655 free_netdev(netdev);
1656err_release_regions:
1657 pci_release_regions(pdev);
1658err_disable_device:
1659 pci_disable_device(pdev);
1660 return err;
1661}
1662
1663static void nicvf_remove(struct pci_dev *pdev)
1664{
1665 struct net_device *netdev = pci_get_drvdata(pdev);
Pavel Fedin77501302015-11-16 17:51:34 +03001666 struct nicvf *nic;
1667 struct net_device *pnetdev;
1668
1669 if (!netdev)
1670 return;
1671
1672 nic = netdev_priv(netdev);
1673 pnetdev = nic->pnicvf->netdev;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001674
Sunil Goutham92dc8762015-08-30 12:29:15 +03001675 /* Check if this Qset is assigned to different VF.
1676 * If yes, clean primary and all secondary Qsets.
1677 */
1678 if (pnetdev && (pnetdev->reg_state == NETREG_REGISTERED))
1679 unregister_netdev(pnetdev);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001680 nicvf_unregister_interrupts(nic);
1681 pci_set_drvdata(pdev, NULL);
Sunil Goutham964cb692016-11-15 17:38:16 +05301682 if (nic->drv_stats)
1683 free_percpu(nic->drv_stats);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001684 free_netdev(netdev);
1685 pci_release_regions(pdev);
1686 pci_disable_device(pdev);
1687}
1688
Sunil Goutham4adf4352015-07-29 16:49:45 +03001689static void nicvf_shutdown(struct pci_dev *pdev)
1690{
1691 nicvf_remove(pdev);
1692}
1693
Sunil Goutham4863dea2015-05-26 19:20:15 -07001694static struct pci_driver nicvf_driver = {
1695 .name = DRV_NAME,
1696 .id_table = nicvf_id_table,
1697 .probe = nicvf_probe,
1698 .remove = nicvf_remove,
Sunil Goutham4adf4352015-07-29 16:49:45 +03001699 .shutdown = nicvf_shutdown,
Sunil Goutham4863dea2015-05-26 19:20:15 -07001700};
1701
1702static int __init nicvf_init_module(void)
1703{
1704 pr_info("%s, ver %s\n", DRV_NAME, DRV_VERSION);
1705
1706 return pci_register_driver(&nicvf_driver);
1707}
1708
1709static void __exit nicvf_cleanup_module(void)
1710{
1711 pci_unregister_driver(&nicvf_driver);
1712}
1713
1714module_init(nicvf_init_module);
1715module_exit(nicvf_cleanup_module);