blob: eb48d33ec67b6262d67817d148da49aee2c955d8 [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 -070072static inline void nicvf_set_rx_frame_cnt(struct nicvf *nic,
73 struct sk_buff *skb)
74{
75 if (skb->len <= 64)
76 nic->drv_stats.rx_frames_64++;
77 else if (skb->len <= 127)
78 nic->drv_stats.rx_frames_127++;
79 else if (skb->len <= 255)
80 nic->drv_stats.rx_frames_255++;
81 else if (skb->len <= 511)
82 nic->drv_stats.rx_frames_511++;
83 else if (skb->len <= 1023)
84 nic->drv_stats.rx_frames_1023++;
85 else if (skb->len <= 1518)
86 nic->drv_stats.rx_frames_1518++;
87 else
88 nic->drv_stats.rx_frames_jumbo++;
89}
90
91/* The Cavium ThunderX network controller can *only* be found in SoCs
92 * containing the ThunderX ARM64 CPU implementation. All accesses to the device
93 * registers on this platform are implicitly strongly ordered with respect
94 * to memory accesses. So writeq_relaxed() and readq_relaxed() are safe to use
95 * with no memory barriers in this driver. The readq()/writeq() functions add
96 * explicit ordering operation which in this case are redundant, and only
97 * add overhead.
98 */
99
100/* Register read/write APIs */
101void nicvf_reg_write(struct nicvf *nic, u64 offset, u64 val)
102{
103 writeq_relaxed(val, nic->reg_base + offset);
104}
105
106u64 nicvf_reg_read(struct nicvf *nic, u64 offset)
107{
108 return readq_relaxed(nic->reg_base + offset);
109}
110
111void nicvf_queue_reg_write(struct nicvf *nic, u64 offset,
112 u64 qidx, u64 val)
113{
114 void __iomem *addr = nic->reg_base + offset;
115
116 writeq_relaxed(val, addr + (qidx << NIC_Q_NUM_SHIFT));
117}
118
119u64 nicvf_queue_reg_read(struct nicvf *nic, u64 offset, u64 qidx)
120{
121 void __iomem *addr = nic->reg_base + offset;
122
123 return readq_relaxed(addr + (qidx << NIC_Q_NUM_SHIFT));
124}
125
126/* VF -> PF mailbox communication */
Aleksey Makarov2cd2a192015-06-02 11:00:20 -0700127static void nicvf_write_to_mbx(struct nicvf *nic, union nic_mbx *mbx)
128{
129 u64 *msg = (u64 *)mbx;
130
131 nicvf_reg_write(nic, NIC_VF_PF_MAILBOX_0_1 + 0, msg[0]);
132 nicvf_reg_write(nic, NIC_VF_PF_MAILBOX_0_1 + 8, msg[1]);
133}
134
Sunil Goutham4863dea2015-05-26 19:20:15 -0700135int nicvf_send_msg_to_pf(struct nicvf *nic, union nic_mbx *mbx)
136{
137 int timeout = NIC_MBOX_MSG_TIMEOUT;
138 int sleep = 10;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700139
140 nic->pf_acked = false;
141 nic->pf_nacked = false;
142
Aleksey Makarov2cd2a192015-06-02 11:00:20 -0700143 nicvf_write_to_mbx(nic, mbx);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700144
145 /* Wait for previous message to be acked, timeout 2sec */
146 while (!nic->pf_acked) {
Radoslaw Biernackiecae29c2016-08-12 16:51:38 +0530147 if (nic->pf_nacked) {
148 netdev_err(nic->netdev,
149 "PF NACK to mbox msg 0x%02x from VF%d\n",
150 (mbx->msg.msg & 0xFF), nic->vf_id);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700151 return -EINVAL;
Radoslaw Biernackiecae29c2016-08-12 16:51:38 +0530152 }
Sunil Goutham4863dea2015-05-26 19:20:15 -0700153 msleep(sleep);
154 if (nic->pf_acked)
155 break;
156 timeout -= sleep;
157 if (!timeout) {
158 netdev_err(nic->netdev,
Radoslaw Biernackiecae29c2016-08-12 16:51:38 +0530159 "PF didn't ACK to mbox msg 0x%02x from VF%d\n",
Sunil Goutham4863dea2015-05-26 19:20:15 -0700160 (mbx->msg.msg & 0xFF), nic->vf_id);
161 return -EBUSY;
162 }
163 }
164 return 0;
165}
166
167/* Checks if VF is able to comminicate with PF
168* and also gets the VNIC number this VF is associated to.
169*/
170static int nicvf_check_pf_ready(struct nicvf *nic)
171{
Aleksey Makarov2cd2a192015-06-02 11:00:20 -0700172 union nic_mbx mbx = {};
173
174 mbx.msg.msg = NIC_MBOX_MSG_READY;
Sunil Goutham6051cba2015-08-30 12:29:11 +0300175 if (nicvf_send_msg_to_pf(nic, &mbx)) {
176 netdev_err(nic->netdev,
177 "PF didn't respond to READY msg\n");
178 return 0;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700179 }
Sunil Goutham6051cba2015-08-30 12:29:11 +0300180
Sunil Goutham4863dea2015-05-26 19:20:15 -0700181 return 1;
182}
183
Aleksey Makarovfd7ec062015-06-02 11:00:23 -0700184static void nicvf_read_bgx_stats(struct nicvf *nic, struct bgx_stats_msg *bgx)
185{
186 if (bgx->rx)
187 nic->bgx_stats.rx_stats[bgx->idx] = bgx->stats;
188 else
189 nic->bgx_stats.tx_stats[bgx->idx] = bgx->stats;
190}
191
Sunil Goutham4863dea2015-05-26 19:20:15 -0700192static void nicvf_handle_mbx_intr(struct nicvf *nic)
193{
194 union nic_mbx mbx = {};
195 u64 *mbx_data;
196 u64 mbx_addr;
197 int i;
198
199 mbx_addr = NIC_VF_PF_MAILBOX_0_1;
200 mbx_data = (u64 *)&mbx;
201
202 for (i = 0; i < NIC_PF_VF_MAILBOX_SIZE; i++) {
203 *mbx_data = nicvf_reg_read(nic, mbx_addr);
204 mbx_data++;
205 mbx_addr += sizeof(u64);
206 }
207
208 netdev_dbg(nic->netdev, "Mbox message: msg: 0x%x\n", mbx.msg.msg);
209 switch (mbx.msg.msg) {
210 case NIC_MBOX_MSG_READY:
Sunil Goutham6051cba2015-08-30 12:29:11 +0300211 nic->pf_acked = true;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700212 nic->vf_id = mbx.nic_cfg.vf_id & 0x7F;
213 nic->tns_mode = mbx.nic_cfg.tns_mode & 0x7F;
214 nic->node = mbx.nic_cfg.node_id;
Pavel Fedinbd049a92015-06-23 17:51:06 +0300215 if (!nic->set_mac_pending)
216 ether_addr_copy(nic->netdev->dev_addr,
217 mbx.nic_cfg.mac_addr);
Sunil Goutham92dc8762015-08-30 12:29:15 +0300218 nic->sqs_mode = mbx.nic_cfg.sqs_mode;
Sunil Gouthamd77a2382015-08-30 12:29:16 +0300219 nic->loopback_supported = mbx.nic_cfg.loopback_supported;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700220 nic->link_up = false;
221 nic->duplex = 0;
222 nic->speed = 0;
223 break;
224 case NIC_MBOX_MSG_ACK:
225 nic->pf_acked = true;
226 break;
227 case NIC_MBOX_MSG_NACK:
228 nic->pf_nacked = true;
229 break;
230 case NIC_MBOX_MSG_RSS_SIZE:
231 nic->rss_info.rss_size = mbx.rss_size.ind_tbl_size;
232 nic->pf_acked = true;
233 break;
234 case NIC_MBOX_MSG_BGX_STATS:
235 nicvf_read_bgx_stats(nic, &mbx.bgx_stats);
236 nic->pf_acked = true;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700237 break;
238 case NIC_MBOX_MSG_BGX_LINK_CHANGE:
239 nic->pf_acked = true;
240 nic->link_up = mbx.link_status.link_up;
241 nic->duplex = mbx.link_status.duplex;
242 nic->speed = mbx.link_status.speed;
243 if (nic->link_up) {
244 netdev_info(nic->netdev, "%s: Link is Up %d Mbps %s\n",
245 nic->netdev->name, nic->speed,
246 nic->duplex == DUPLEX_FULL ?
247 "Full duplex" : "Half duplex");
248 netif_carrier_on(nic->netdev);
Sunil Gouthamb49087d2015-07-29 16:49:44 +0300249 netif_tx_start_all_queues(nic->netdev);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700250 } else {
251 netdev_info(nic->netdev, "%s: Link is Down\n",
252 nic->netdev->name);
253 netif_carrier_off(nic->netdev);
254 netif_tx_stop_all_queues(nic->netdev);
255 }
256 break;
Sunil Goutham92dc8762015-08-30 12:29:15 +0300257 case NIC_MBOX_MSG_ALLOC_SQS:
258 nic->sqs_count = mbx.sqs_alloc.qs_count;
259 nic->pf_acked = true;
260 break;
261 case NIC_MBOX_MSG_SNICVF_PTR:
262 /* Primary VF: make note of secondary VF's pointer
263 * to be used while packet transmission.
264 */
265 nic->snicvf[mbx.nicvf.sqs_id] =
266 (struct nicvf *)mbx.nicvf.nicvf;
267 nic->pf_acked = true;
268 break;
269 case NIC_MBOX_MSG_PNICVF_PTR:
270 /* Secondary VF/Qset: make note of primary VF's pointer
271 * to be used while packet reception, to handover packet
272 * to primary VF's netdev.
273 */
274 nic->pnicvf = (struct nicvf *)mbx.nicvf.nicvf;
275 nic->pf_acked = true;
276 break;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700277 default:
278 netdev_err(nic->netdev,
279 "Invalid message from PF, msg 0x%x\n", mbx.msg.msg);
280 break;
281 }
282 nicvf_clear_intr(nic, NICVF_INTR_MBOX, 0);
283}
284
285static int nicvf_hw_set_mac_addr(struct nicvf *nic, struct net_device *netdev)
286{
287 union nic_mbx mbx = {};
Sunil Goutham4863dea2015-05-26 19:20:15 -0700288
289 mbx.mac.msg = NIC_MBOX_MSG_SET_MAC;
290 mbx.mac.vf_id = nic->vf_id;
Aleksey Makarove610cb32015-06-02 11:00:21 -0700291 ether_addr_copy(mbx.mac.mac_addr, netdev->dev_addr);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700292
293 return nicvf_send_msg_to_pf(nic, &mbx);
294}
295
Aleksey Makarovfd7ec062015-06-02 11:00:23 -0700296static void nicvf_config_cpi(struct nicvf *nic)
Sunil Goutham4863dea2015-05-26 19:20:15 -0700297{
298 union nic_mbx mbx = {};
299
300 mbx.cpi_cfg.msg = NIC_MBOX_MSG_CPI_CFG;
301 mbx.cpi_cfg.vf_id = nic->vf_id;
302 mbx.cpi_cfg.cpi_alg = nic->cpi_alg;
303 mbx.cpi_cfg.rq_cnt = nic->qs->rq_cnt;
304
305 nicvf_send_msg_to_pf(nic, &mbx);
306}
307
Aleksey Makarovfd7ec062015-06-02 11:00:23 -0700308static void nicvf_get_rss_size(struct nicvf *nic)
Sunil Goutham4863dea2015-05-26 19:20:15 -0700309{
310 union nic_mbx mbx = {};
311
312 mbx.rss_size.msg = NIC_MBOX_MSG_RSS_SIZE;
313 mbx.rss_size.vf_id = nic->vf_id;
314 nicvf_send_msg_to_pf(nic, &mbx);
315}
316
317void nicvf_config_rss(struct nicvf *nic)
318{
319 union nic_mbx mbx = {};
320 struct nicvf_rss_info *rss = &nic->rss_info;
321 int ind_tbl_len = rss->rss_size;
322 int i, nextq = 0;
323
324 mbx.rss_cfg.vf_id = nic->vf_id;
325 mbx.rss_cfg.hash_bits = rss->hash_bits;
326 while (ind_tbl_len) {
327 mbx.rss_cfg.tbl_offset = nextq;
328 mbx.rss_cfg.tbl_len = min(ind_tbl_len,
329 RSS_IND_TBL_LEN_PER_MBX_MSG);
330 mbx.rss_cfg.msg = mbx.rss_cfg.tbl_offset ?
331 NIC_MBOX_MSG_RSS_CFG_CONT : NIC_MBOX_MSG_RSS_CFG;
332
333 for (i = 0; i < mbx.rss_cfg.tbl_len; i++)
334 mbx.rss_cfg.ind_tbl[i] = rss->ind_tbl[nextq++];
335
336 nicvf_send_msg_to_pf(nic, &mbx);
337
338 ind_tbl_len -= mbx.rss_cfg.tbl_len;
339 }
340}
341
342void nicvf_set_rss_key(struct nicvf *nic)
343{
344 struct nicvf_rss_info *rss = &nic->rss_info;
345 u64 key_addr = NIC_VNIC_RSS_KEY_0_4;
346 int idx;
347
348 for (idx = 0; idx < RSS_HASH_KEY_SIZE; idx++) {
349 nicvf_reg_write(nic, key_addr, rss->key[idx]);
350 key_addr += sizeof(u64);
351 }
352}
353
354static int nicvf_rss_init(struct nicvf *nic)
355{
356 struct nicvf_rss_info *rss = &nic->rss_info;
357 int idx;
358
359 nicvf_get_rss_size(nic);
360
Sunil Goutham38bb5d42015-08-30 12:29:12 +0300361 if (cpi_alg != CPI_ALG_NONE) {
Sunil Goutham4863dea2015-05-26 19:20:15 -0700362 rss->enable = false;
363 rss->hash_bits = 0;
364 return 0;
365 }
366
367 rss->enable = true;
368
369 /* Using the HW reset value for now */
Aleksey Makarov4a4f87d2015-06-02 11:00:19 -0700370 rss->key[0] = 0xFEED0BADFEED0BADULL;
371 rss->key[1] = 0xFEED0BADFEED0BADULL;
372 rss->key[2] = 0xFEED0BADFEED0BADULL;
373 rss->key[3] = 0xFEED0BADFEED0BADULL;
374 rss->key[4] = 0xFEED0BADFEED0BADULL;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700375
376 nicvf_set_rss_key(nic);
377
378 rss->cfg = RSS_IP_HASH_ENA | RSS_TCP_HASH_ENA | RSS_UDP_HASH_ENA;
379 nicvf_reg_write(nic, NIC_VNIC_RSS_CFG, rss->cfg);
380
381 rss->hash_bits = ilog2(rounddown_pow_of_two(rss->rss_size));
382
383 for (idx = 0; idx < rss->rss_size; idx++)
384 rss->ind_tbl[idx] = ethtool_rxfh_indir_default(idx,
Sunil Goutham92dc8762015-08-30 12:29:15 +0300385 nic->rx_queues);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700386 nicvf_config_rss(nic);
387 return 1;
388}
389
Sunil Goutham92dc8762015-08-30 12:29:15 +0300390/* Request PF to allocate additional Qsets */
391static void nicvf_request_sqs(struct nicvf *nic)
392{
393 union nic_mbx mbx = {};
394 int sqs;
395 int sqs_count = nic->sqs_count;
396 int rx_queues = 0, tx_queues = 0;
397
398 /* Only primary VF should request */
399 if (nic->sqs_mode || !nic->sqs_count)
400 return;
401
402 mbx.sqs_alloc.msg = NIC_MBOX_MSG_ALLOC_SQS;
403 mbx.sqs_alloc.vf_id = nic->vf_id;
404 mbx.sqs_alloc.qs_count = nic->sqs_count;
405 if (nicvf_send_msg_to_pf(nic, &mbx)) {
406 /* No response from PF */
407 nic->sqs_count = 0;
408 return;
409 }
410
411 /* Return if no Secondary Qsets available */
412 if (!nic->sqs_count)
413 return;
414
415 if (nic->rx_queues > MAX_RCV_QUEUES_PER_QS)
416 rx_queues = nic->rx_queues - MAX_RCV_QUEUES_PER_QS;
417 if (nic->tx_queues > MAX_SND_QUEUES_PER_QS)
418 tx_queues = nic->tx_queues - MAX_SND_QUEUES_PER_QS;
419
420 /* Set no of Rx/Tx queues in each of the SQsets */
421 for (sqs = 0; sqs < nic->sqs_count; sqs++) {
422 mbx.nicvf.msg = NIC_MBOX_MSG_SNICVF_PTR;
423 mbx.nicvf.vf_id = nic->vf_id;
424 mbx.nicvf.sqs_id = sqs;
425 nicvf_send_msg_to_pf(nic, &mbx);
426
427 nic->snicvf[sqs]->sqs_id = sqs;
428 if (rx_queues > MAX_RCV_QUEUES_PER_QS) {
429 nic->snicvf[sqs]->qs->rq_cnt = MAX_RCV_QUEUES_PER_QS;
430 rx_queues -= MAX_RCV_QUEUES_PER_QS;
431 } else {
432 nic->snicvf[sqs]->qs->rq_cnt = rx_queues;
433 rx_queues = 0;
434 }
435
436 if (tx_queues > MAX_SND_QUEUES_PER_QS) {
437 nic->snicvf[sqs]->qs->sq_cnt = MAX_SND_QUEUES_PER_QS;
438 tx_queues -= MAX_SND_QUEUES_PER_QS;
439 } else {
440 nic->snicvf[sqs]->qs->sq_cnt = tx_queues;
441 tx_queues = 0;
442 }
443
444 nic->snicvf[sqs]->qs->cq_cnt =
445 max(nic->snicvf[sqs]->qs->rq_cnt, nic->snicvf[sqs]->qs->sq_cnt);
446
447 /* Initialize secondary Qset's queues and its interrupts */
448 nicvf_open(nic->snicvf[sqs]->netdev);
449 }
450
451 /* Update stack with actual Rx/Tx queue count allocated */
452 if (sqs_count != nic->sqs_count)
453 nicvf_set_real_num_queues(nic->netdev,
454 nic->tx_queues, nic->rx_queues);
455}
456
457/* Send this Qset's nicvf pointer to PF.
458 * PF inturn sends primary VF's nicvf struct to secondary Qsets/VFs
459 * so that packets received by these Qsets can use primary VF's netdev
460 */
461static void nicvf_send_vf_struct(struct nicvf *nic)
462{
463 union nic_mbx mbx = {};
464
465 mbx.nicvf.msg = NIC_MBOX_MSG_NICVF_PTR;
466 mbx.nicvf.sqs_mode = nic->sqs_mode;
467 mbx.nicvf.nicvf = (u64)nic;
468 nicvf_send_msg_to_pf(nic, &mbx);
469}
470
471static void nicvf_get_primary_vf_struct(struct nicvf *nic)
472{
473 union nic_mbx mbx = {};
474
475 mbx.nicvf.msg = NIC_MBOX_MSG_PNICVF_PTR;
476 nicvf_send_msg_to_pf(nic, &mbx);
477}
478
Sunil Goutham4863dea2015-05-26 19:20:15 -0700479int nicvf_set_real_num_queues(struct net_device *netdev,
480 int tx_queues, int rx_queues)
481{
482 int err = 0;
483
484 err = netif_set_real_num_tx_queues(netdev, tx_queues);
485 if (err) {
486 netdev_err(netdev,
487 "Failed to set no of Tx queues: %d\n", tx_queues);
488 return err;
489 }
490
491 err = netif_set_real_num_rx_queues(netdev, rx_queues);
492 if (err)
493 netdev_err(netdev,
494 "Failed to set no of Rx queues: %d\n", rx_queues);
495 return err;
496}
497
498static int nicvf_init_resources(struct nicvf *nic)
499{
500 int err;
Aleksey Makarov2cd2a192015-06-02 11:00:20 -0700501 union nic_mbx mbx = {};
502
503 mbx.msg.msg = NIC_MBOX_MSG_CFG_DONE;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700504
505 /* Enable Qset */
506 nicvf_qset_config(nic, true);
507
508 /* Initialize queues and HW for data transfer */
509 err = nicvf_config_data_transfer(nic, true);
510 if (err) {
511 netdev_err(nic->netdev,
512 "Failed to alloc/config VF's QSet resources\n");
513 return err;
514 }
515
516 /* Send VF config done msg to PF */
Aleksey Makarov2cd2a192015-06-02 11:00:20 -0700517 nicvf_write_to_mbx(nic, &mbx);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700518
519 return 0;
520}
521
522static void nicvf_snd_pkt_handler(struct net_device *netdev,
523 struct cmp_queue *cq,
Sunil Gouthamc43548d2016-08-12 16:51:41 +0530524 struct cqe_send_t *cqe_tx,
525 int cqe_type, int budget)
Sunil Goutham4863dea2015-05-26 19:20:15 -0700526{
527 struct sk_buff *skb = NULL;
528 struct nicvf *nic = netdev_priv(netdev);
529 struct snd_queue *sq;
530 struct sq_hdr_subdesc *hdr;
531
532 sq = &nic->qs->sq[cqe_tx->sq_idx];
533
534 hdr = (struct sq_hdr_subdesc *)GET_SQ_DESC(sq, cqe_tx->sqe_ptr);
535 if (hdr->subdesc_type != SQ_DESC_TYPE_HEADER)
536 return;
537
538 netdev_dbg(nic->netdev,
539 "%s Qset #%d SQ #%d SQ ptr #%d subdesc count %d\n",
540 __func__, cqe_tx->sq_qs, cqe_tx->sq_idx,
541 cqe_tx->sqe_ptr, hdr->subdesc_cnt);
542
Sunil Goutham4863dea2015-05-26 19:20:15 -0700543 nicvf_check_cqe_tx_errs(nic, cq, cqe_tx);
544 skb = (struct sk_buff *)sq->skbuff[cqe_tx->sqe_ptr];
Sunil Goutham40fb5f82015-12-10 13:25:19 +0530545 /* For TSO offloaded packets only one SQE will have a valid SKB */
Sunil Goutham4863dea2015-05-26 19:20:15 -0700546 if (skb) {
Sunil Goutham40fb5f82015-12-10 13:25:19 +0530547 nicvf_put_sq_desc(sq, hdr->subdesc_cnt + 1);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700548 prefetch(skb);
Sunil Gouthamc43548d2016-08-12 16:51:41 +0530549 napi_consume_skb(skb, budget);
Sunil Goutham143ceb02015-07-29 16:49:37 +0300550 sq->skbuff[cqe_tx->sqe_ptr] = (u64)NULL;
Sunil Goutham40fb5f82015-12-10 13:25:19 +0530551 } else {
552 /* In case of HW TSO, HW sends a CQE for each segment of a TSO
553 * packet instead of a single CQE for the whole TSO packet
554 * transmitted. Each of this CQE points to the same SQE, so
555 * avoid freeing same SQE multiple times.
556 */
557 if (!nic->hw_tso)
558 nicvf_put_sq_desc(sq, hdr->subdesc_cnt + 1);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700559 }
560}
561
Sunil Goutham38bb5d42015-08-30 12:29:12 +0300562static inline void nicvf_set_rxhash(struct net_device *netdev,
563 struct cqe_rx_t *cqe_rx,
564 struct sk_buff *skb)
565{
566 u8 hash_type;
567 u32 hash;
568
569 if (!(netdev->features & NETIF_F_RXHASH))
570 return;
571
572 switch (cqe_rx->rss_alg) {
573 case RSS_ALG_TCP_IP:
574 case RSS_ALG_UDP_IP:
575 hash_type = PKT_HASH_TYPE_L4;
576 hash = cqe_rx->rss_tag;
577 break;
578 case RSS_ALG_IP:
579 hash_type = PKT_HASH_TYPE_L3;
580 hash = cqe_rx->rss_tag;
581 break;
582 default:
583 hash_type = PKT_HASH_TYPE_NONE;
584 hash = 0;
585 }
586
587 skb_set_hash(skb, hash, hash_type);
588}
589
Sunil Goutham4863dea2015-05-26 19:20:15 -0700590static void nicvf_rcv_pkt_handler(struct net_device *netdev,
591 struct napi_struct *napi,
Sunil Gouthamad2eceb2016-02-16 16:29:51 +0530592 struct cqe_rx_t *cqe_rx)
Sunil Goutham4863dea2015-05-26 19:20:15 -0700593{
594 struct sk_buff *skb;
595 struct nicvf *nic = netdev_priv(netdev);
596 int err = 0;
Sunil Goutham92dc8762015-08-30 12:29:15 +0300597 int rq_idx;
598
599 rq_idx = nicvf_netdev_qidx(nic, cqe_rx->rq_idx);
600
601 if (nic->sqs_mode) {
602 /* Use primary VF's 'nicvf' struct */
603 nic = nic->pnicvf;
604 netdev = nic->netdev;
605 }
Sunil Goutham4863dea2015-05-26 19:20:15 -0700606
607 /* Check for errors */
Sunil Gouthamad2eceb2016-02-16 16:29:51 +0530608 err = nicvf_check_cqe_rx_errs(nic, cqe_rx);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700609 if (err && !cqe_rx->rb_cnt)
610 return;
611
612 skb = nicvf_get_rcv_skb(nic, cqe_rx);
613 if (!skb) {
614 netdev_dbg(nic->netdev, "Packet not received\n");
615 return;
616 }
617
618 if (netif_msg_pktdata(nic)) {
619 netdev_info(nic->netdev, "%s: skb 0x%p, len=%d\n", netdev->name,
620 skb, skb->len);
621 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_OFFSET, 16, 1,
622 skb->data, skb->len, true);
623 }
624
Sunil Gouthama2dc5de2015-08-30 12:29:10 +0300625 /* If error packet, drop it here */
626 if (err) {
627 dev_kfree_skb_any(skb);
628 return;
629 }
630
Sunil Goutham4863dea2015-05-26 19:20:15 -0700631 nicvf_set_rx_frame_cnt(nic, skb);
632
Sunil Goutham38bb5d42015-08-30 12:29:12 +0300633 nicvf_set_rxhash(netdev, cqe_rx, skb);
634
Sunil Goutham92dc8762015-08-30 12:29:15 +0300635 skb_record_rx_queue(skb, rq_idx);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700636 if (netdev->hw_features & NETIF_F_RXCSUM) {
637 /* HW by default verifies TCP/UDP/SCTP checksums */
638 skb->ip_summed = CHECKSUM_UNNECESSARY;
639 } else {
640 skb_checksum_none_assert(skb);
641 }
642
643 skb->protocol = eth_type_trans(skb, netdev);
644
Sunil Gouthamaa2e2592015-08-30 12:29:13 +0300645 /* Check for stripped VLAN */
646 if (cqe_rx->vlan_found && cqe_rx->vlan_stripped)
647 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
648 ntohs((__force __be16)cqe_rx->vlan_tci));
649
Sunil Goutham4863dea2015-05-26 19:20:15 -0700650 if (napi && (netdev->features & NETIF_F_GRO))
651 napi_gro_receive(napi, skb);
652 else
653 netif_receive_skb(skb);
654}
655
656static int nicvf_cq_intr_handler(struct net_device *netdev, u8 cq_idx,
657 struct napi_struct *napi, int budget)
658{
Sunil Goutham74840b82015-07-29 16:49:42 +0300659 int processed_cqe, work_done = 0, tx_done = 0;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700660 int cqe_count, cqe_head;
661 struct nicvf *nic = netdev_priv(netdev);
662 struct queue_set *qs = nic->qs;
663 struct cmp_queue *cq = &qs->cq[cq_idx];
664 struct cqe_rx_t *cq_desc;
Sunil Goutham74840b82015-07-29 16:49:42 +0300665 struct netdev_queue *txq;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700666
667 spin_lock_bh(&cq->lock);
668loop:
669 processed_cqe = 0;
670 /* Get no of valid CQ entries to process */
671 cqe_count = nicvf_queue_reg_read(nic, NIC_QSET_CQ_0_7_STATUS, cq_idx);
672 cqe_count &= CQ_CQE_COUNT;
673 if (!cqe_count)
674 goto done;
675
676 /* Get head of the valid CQ entries */
677 cqe_head = nicvf_queue_reg_read(nic, NIC_QSET_CQ_0_7_HEAD, cq_idx) >> 9;
678 cqe_head &= 0xFFFF;
679
Sunil Goutham74840b82015-07-29 16:49:42 +0300680 netdev_dbg(nic->netdev, "%s CQ%d cqe_count %d cqe_head %d\n",
681 __func__, cq_idx, cqe_count, cqe_head);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700682 while (processed_cqe < cqe_count) {
683 /* Get the CQ descriptor */
684 cq_desc = (struct cqe_rx_t *)GET_CQ_DESC(cq, cqe_head);
685 cqe_head++;
686 cqe_head &= (cq->dmem.q_len - 1);
687 /* Initiate prefetch for next descriptor */
688 prefetch((struct cqe_rx_t *)GET_CQ_DESC(cq, cqe_head));
689
690 if ((work_done >= budget) && napi &&
691 (cq_desc->cqe_type != CQE_TYPE_SEND)) {
692 break;
693 }
694
Sunil Goutham74840b82015-07-29 16:49:42 +0300695 netdev_dbg(nic->netdev, "CQ%d cq_desc->cqe_type %d\n",
696 cq_idx, cq_desc->cqe_type);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700697 switch (cq_desc->cqe_type) {
698 case CQE_TYPE_RX:
Sunil Gouthamad2eceb2016-02-16 16:29:51 +0530699 nicvf_rcv_pkt_handler(netdev, napi, cq_desc);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700700 work_done++;
701 break;
702 case CQE_TYPE_SEND:
703 nicvf_snd_pkt_handler(netdev, cq,
Sunil Gouthamc43548d2016-08-12 16:51:41 +0530704 (void *)cq_desc, CQE_TYPE_SEND,
705 budget);
Sunil Goutham74840b82015-07-29 16:49:42 +0300706 tx_done++;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700707 break;
708 case CQE_TYPE_INVALID:
709 case CQE_TYPE_RX_SPLIT:
710 case CQE_TYPE_RX_TCP:
711 case CQE_TYPE_SEND_PTP:
712 /* Ignore for now */
713 break;
714 }
715 processed_cqe++;
716 }
Sunil Goutham74840b82015-07-29 16:49:42 +0300717 netdev_dbg(nic->netdev,
718 "%s CQ%d processed_cqe %d work_done %d budget %d\n",
719 __func__, cq_idx, processed_cqe, work_done, budget);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700720
721 /* Ring doorbell to inform H/W to reuse processed CQEs */
722 nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_DOOR,
723 cq_idx, processed_cqe);
724
725 if ((work_done < budget) && napi)
726 goto loop;
727
728done:
Sunil Goutham74840b82015-07-29 16:49:42 +0300729 /* Wakeup TXQ if its stopped earlier due to SQ full */
730 if (tx_done) {
Sunil Goutham92dc8762015-08-30 12:29:15 +0300731 netdev = nic->pnicvf->netdev;
732 txq = netdev_get_tx_queue(netdev,
733 nicvf_netdev_qidx(nic, cq_idx));
734 nic = nic->pnicvf;
735 if (netif_tx_queue_stopped(txq) && netif_carrier_ok(netdev)) {
Sunil Gouthamb49087d2015-07-29 16:49:44 +0300736 netif_tx_start_queue(txq);
Sunil Goutham74840b82015-07-29 16:49:42 +0300737 nic->drv_stats.txq_wake++;
738 if (netif_msg_tx_err(nic))
739 netdev_warn(netdev,
740 "%s: Transmit queue wakeup SQ%d\n",
741 netdev->name, cq_idx);
742 }
743 }
744
Sunil Goutham4863dea2015-05-26 19:20:15 -0700745 spin_unlock_bh(&cq->lock);
746 return work_done;
747}
748
749static int nicvf_poll(struct napi_struct *napi, int budget)
750{
751 u64 cq_head;
752 int work_done = 0;
753 struct net_device *netdev = napi->dev;
754 struct nicvf *nic = netdev_priv(netdev);
755 struct nicvf_cq_poll *cq;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700756
757 cq = container_of(napi, struct nicvf_cq_poll, napi);
758 work_done = nicvf_cq_intr_handler(netdev, cq->cq_idx, napi, budget);
759
Sunil Goutham4863dea2015-05-26 19:20:15 -0700760 if (work_done < budget) {
761 /* Slow packet rate, exit polling */
762 napi_complete(napi);
763 /* Re-enable interrupts */
764 cq_head = nicvf_queue_reg_read(nic, NIC_QSET_CQ_0_7_HEAD,
765 cq->cq_idx);
766 nicvf_clear_intr(nic, NICVF_INTR_CQ, cq->cq_idx);
767 nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_HEAD,
768 cq->cq_idx, cq_head);
769 nicvf_enable_intr(nic, NICVF_INTR_CQ, cq->cq_idx);
770 }
771 return work_done;
772}
773
774/* Qset error interrupt handler
775 *
776 * As of now only CQ errors are handled
777 */
Aleksey Makarovfd7ec062015-06-02 11:00:23 -0700778static void nicvf_handle_qs_err(unsigned long data)
Sunil Goutham4863dea2015-05-26 19:20:15 -0700779{
780 struct nicvf *nic = (struct nicvf *)data;
781 struct queue_set *qs = nic->qs;
782 int qidx;
783 u64 status;
784
785 netif_tx_disable(nic->netdev);
786
787 /* Check if it is CQ err */
788 for (qidx = 0; qidx < qs->cq_cnt; qidx++) {
789 status = nicvf_queue_reg_read(nic, NIC_QSET_CQ_0_7_STATUS,
790 qidx);
791 if (!(status & CQ_ERR_MASK))
792 continue;
793 /* Process already queued CQEs and reconfig CQ */
794 nicvf_disable_intr(nic, NICVF_INTR_CQ, qidx);
795 nicvf_sq_disable(nic, qidx);
796 nicvf_cq_intr_handler(nic->netdev, qidx, NULL, 0);
797 nicvf_cmp_queue_config(nic, qs, qidx, true);
798 nicvf_sq_free_used_descs(nic->netdev, &qs->sq[qidx], qidx);
799 nicvf_sq_enable(nic, &qs->sq[qidx], qidx);
800
801 nicvf_enable_intr(nic, NICVF_INTR_CQ, qidx);
802 }
803
804 netif_tx_start_all_queues(nic->netdev);
805 /* Re-enable Qset error interrupt */
806 nicvf_enable_intr(nic, NICVF_INTR_QS_ERR, 0);
807}
808
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300809static void nicvf_dump_intr_status(struct nicvf *nic)
810{
811 if (netif_msg_intr(nic))
812 netdev_info(nic->netdev, "%s: interrupt status 0x%llx\n",
813 nic->netdev->name, nicvf_reg_read(nic, NIC_VF_INT));
814}
815
Sunil Goutham4863dea2015-05-26 19:20:15 -0700816static irqreturn_t nicvf_misc_intr_handler(int irq, void *nicvf_irq)
817{
818 struct nicvf *nic = (struct nicvf *)nicvf_irq;
819 u64 intr;
820
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300821 nicvf_dump_intr_status(nic);
822
Sunil Goutham4863dea2015-05-26 19:20:15 -0700823 intr = nicvf_reg_read(nic, NIC_VF_INT);
824 /* Check for spurious interrupt */
825 if (!(intr & NICVF_INTR_MBOX_MASK))
826 return IRQ_HANDLED;
827
828 nicvf_handle_mbx_intr(nic);
829
830 return IRQ_HANDLED;
831}
832
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300833static irqreturn_t nicvf_intr_handler(int irq, void *cq_irq)
Sunil Goutham4863dea2015-05-26 19:20:15 -0700834{
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300835 struct nicvf_cq_poll *cq_poll = (struct nicvf_cq_poll *)cq_irq;
836 struct nicvf *nic = cq_poll->nicvf;
837 int qidx = cq_poll->cq_idx;
838
839 nicvf_dump_intr_status(nic);
840
841 /* Disable interrupts */
842 nicvf_disable_intr(nic, NICVF_INTR_CQ, qidx);
843
844 /* Schedule NAPI */
Sunil Gouthamef0a4d82016-02-11 21:50:22 +0530845 napi_schedule_irqoff(&cq_poll->napi);
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300846
847 /* Clear interrupt */
848 nicvf_clear_intr(nic, NICVF_INTR_CQ, qidx);
849
850 return IRQ_HANDLED;
851}
852
853static irqreturn_t nicvf_rbdr_intr_handler(int irq, void *nicvf_irq)
854{
Sunil Goutham4863dea2015-05-26 19:20:15 -0700855 struct nicvf *nic = (struct nicvf *)nicvf_irq;
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300856 u8 qidx;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700857
Sunil Goutham4863dea2015-05-26 19:20:15 -0700858
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300859 nicvf_dump_intr_status(nic);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700860
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300861 /* Disable RBDR interrupt and schedule softirq */
862 for (qidx = 0; qidx < nic->qs->rbdr_cnt; qidx++) {
863 if (!nicvf_is_intr_enabled(nic, NICVF_INTR_RBDR, qidx))
Sunil Goutham4863dea2015-05-26 19:20:15 -0700864 continue;
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300865 nicvf_disable_intr(nic, NICVF_INTR_RBDR, qidx);
866 tasklet_hi_schedule(&nic->rbdr_task);
867 /* Clear interrupt */
868 nicvf_clear_intr(nic, NICVF_INTR_RBDR, qidx);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700869 }
870
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300871 return IRQ_HANDLED;
872}
Sunil Goutham4863dea2015-05-26 19:20:15 -0700873
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300874static irqreturn_t nicvf_qs_err_intr_handler(int irq, void *nicvf_irq)
875{
876 struct nicvf *nic = (struct nicvf *)nicvf_irq;
877
878 nicvf_dump_intr_status(nic);
879
880 /* Disable Qset err interrupt and schedule softirq */
881 nicvf_disable_intr(nic, NICVF_INTR_QS_ERR, 0);
882 tasklet_hi_schedule(&nic->qs_err_task);
883 nicvf_clear_intr(nic, NICVF_INTR_QS_ERR, 0);
884
Sunil Goutham4863dea2015-05-26 19:20:15 -0700885 return IRQ_HANDLED;
886}
887
888static int nicvf_enable_msix(struct nicvf *nic)
889{
890 int ret, vec;
891
892 nic->num_vec = NIC_VF_MSIX_VECTORS;
893
894 for (vec = 0; vec < nic->num_vec; vec++)
895 nic->msix_entries[vec].entry = vec;
896
897 ret = pci_enable_msix(nic->pdev, nic->msix_entries, nic->num_vec);
898 if (ret) {
899 netdev_err(nic->netdev,
900 "Req for #%d msix vectors failed\n", nic->num_vec);
901 return 0;
902 }
903 nic->msix_enabled = 1;
904 return 1;
905}
906
907static void nicvf_disable_msix(struct nicvf *nic)
908{
909 if (nic->msix_enabled) {
910 pci_disable_msix(nic->pdev);
911 nic->msix_enabled = 0;
912 nic->num_vec = 0;
913 }
914}
915
Sunil Gouthamfb4b7d92016-02-11 21:50:23 +0530916static void nicvf_set_irq_affinity(struct nicvf *nic)
917{
918 int vec, cpu;
919 int irqnum;
920
921 for (vec = 0; vec < nic->num_vec; vec++) {
922 if (!nic->irq_allocated[vec])
923 continue;
924
925 if (!zalloc_cpumask_var(&nic->affinity_mask[vec], GFP_KERNEL))
926 return;
927 /* CQ interrupts */
928 if (vec < NICVF_INTR_ID_SQ)
929 /* Leave CPU0 for RBDR and other interrupts */
930 cpu = nicvf_netdev_qidx(nic, vec) + 1;
931 else
932 cpu = 0;
933
934 cpumask_set_cpu(cpumask_local_spread(cpu, nic->node),
935 nic->affinity_mask[vec]);
936 irqnum = nic->msix_entries[vec].vector;
937 irq_set_affinity_hint(irqnum, nic->affinity_mask[vec]);
938 }
939}
940
Sunil Goutham4863dea2015-05-26 19:20:15 -0700941static int nicvf_register_interrupts(struct nicvf *nic)
942{
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300943 int irq, ret = 0;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700944 int vector;
945
946 for_each_cq_irq(irq)
Sunil Gouthame4126212016-08-12 16:51:36 +0530947 sprintf(nic->irq_name[irq], "%s-rxtx-%d",
948 nic->pnicvf->netdev->name,
949 nicvf_netdev_qidx(nic, irq));
Sunil Goutham4863dea2015-05-26 19:20:15 -0700950
951 for_each_sq_irq(irq)
Sunil Gouthame4126212016-08-12 16:51:36 +0530952 sprintf(nic->irq_name[irq], "%s-sq-%d",
953 nic->pnicvf->netdev->name,
954 nicvf_netdev_qidx(nic, irq - NICVF_INTR_ID_SQ));
Sunil Goutham4863dea2015-05-26 19:20:15 -0700955
956 for_each_rbdr_irq(irq)
Sunil Gouthame4126212016-08-12 16:51:36 +0530957 sprintf(nic->irq_name[irq], "%s-rbdr-%d",
958 nic->pnicvf->netdev->name,
959 nic->sqs_mode ? (nic->sqs_id + 1) : 0);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700960
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300961 /* Register CQ interrupts */
962 for (irq = 0; irq < nic->qs->cq_cnt; irq++) {
Sunil Goutham4863dea2015-05-26 19:20:15 -0700963 vector = nic->msix_entries[irq].vector;
964 ret = request_irq(vector, nicvf_intr_handler,
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300965 0, nic->irq_name[irq], nic->napi[irq]);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700966 if (ret)
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300967 goto err;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700968 nic->irq_allocated[irq] = true;
969 }
970
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300971 /* Register RBDR interrupt */
972 for (irq = NICVF_INTR_ID_RBDR;
973 irq < (NICVF_INTR_ID_RBDR + nic->qs->rbdr_cnt); irq++) {
Sunil Goutham4863dea2015-05-26 19:20:15 -0700974 vector = nic->msix_entries[irq].vector;
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300975 ret = request_irq(vector, nicvf_rbdr_intr_handler,
Sunil Goutham4863dea2015-05-26 19:20:15 -0700976 0, nic->irq_name[irq], nic);
977 if (ret)
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300978 goto err;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700979 nic->irq_allocated[irq] = true;
980 }
981
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300982 /* Register QS error interrupt */
Sunil Gouthame4126212016-08-12 16:51:36 +0530983 sprintf(nic->irq_name[NICVF_INTR_ID_QS_ERR], "%s-qset-err-%d",
984 nic->pnicvf->netdev->name,
985 nic->sqs_mode ? (nic->sqs_id + 1) : 0);
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300986 irq = NICVF_INTR_ID_QS_ERR;
987 ret = request_irq(nic->msix_entries[irq].vector,
988 nicvf_qs_err_intr_handler,
989 0, nic->irq_name[irq], nic);
Sunil Gouthamfb4b7d92016-02-11 21:50:23 +0530990 if (ret)
991 goto err;
992
993 nic->irq_allocated[irq] = true;
994
995 /* Set IRQ affinities */
996 nicvf_set_irq_affinity(nic);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700997
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300998err:
999 if (ret)
1000 netdev_err(nic->netdev, "request_irq failed, vector %d\n", irq);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001001
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001002 return ret;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001003}
1004
1005static void nicvf_unregister_interrupts(struct nicvf *nic)
1006{
1007 int irq;
1008
1009 /* Free registered interrupts */
1010 for (irq = 0; irq < nic->num_vec; irq++) {
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001011 if (!nic->irq_allocated[irq])
1012 continue;
1013
Sunil Gouthamfb4b7d92016-02-11 21:50:23 +05301014 irq_set_affinity_hint(nic->msix_entries[irq].vector, NULL);
1015 free_cpumask_var(nic->affinity_mask[irq]);
1016
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001017 if (irq < NICVF_INTR_ID_SQ)
1018 free_irq(nic->msix_entries[irq].vector, nic->napi[irq]);
1019 else
Sunil Goutham4863dea2015-05-26 19:20:15 -07001020 free_irq(nic->msix_entries[irq].vector, nic);
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001021
Sunil Goutham4863dea2015-05-26 19:20:15 -07001022 nic->irq_allocated[irq] = false;
1023 }
1024
1025 /* Disable MSI-X */
1026 nicvf_disable_msix(nic);
1027}
1028
1029/* Initialize MSIX vectors and register MISC interrupt.
1030 * Send READY message to PF to check if its alive
1031 */
1032static int nicvf_register_misc_interrupt(struct nicvf *nic)
1033{
1034 int ret = 0;
1035 int irq = NICVF_INTR_ID_MISC;
1036
1037 /* Return if mailbox interrupt is already registered */
1038 if (nic->msix_enabled)
1039 return 0;
1040
1041 /* Enable MSI-X */
1042 if (!nicvf_enable_msix(nic))
1043 return 1;
1044
1045 sprintf(nic->irq_name[irq], "%s Mbox", "NICVF");
1046 /* Register Misc interrupt */
1047 ret = request_irq(nic->msix_entries[irq].vector,
1048 nicvf_misc_intr_handler, 0, nic->irq_name[irq], nic);
1049
1050 if (ret)
1051 return ret;
1052 nic->irq_allocated[irq] = true;
1053
1054 /* Enable mailbox interrupt */
1055 nicvf_enable_intr(nic, NICVF_INTR_MBOX, 0);
1056
1057 /* Check if VF is able to communicate with PF */
1058 if (!nicvf_check_pf_ready(nic)) {
1059 nicvf_disable_intr(nic, NICVF_INTR_MBOX, 0);
1060 nicvf_unregister_interrupts(nic);
1061 return 1;
1062 }
1063
1064 return 0;
1065}
1066
1067static netdev_tx_t nicvf_xmit(struct sk_buff *skb, struct net_device *netdev)
1068{
1069 struct nicvf *nic = netdev_priv(netdev);
1070 int qid = skb_get_queue_mapping(skb);
1071 struct netdev_queue *txq = netdev_get_tx_queue(netdev, qid);
1072
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 Gouthamb49087d2015-07-29 16:49:44 +03001079 if (!netif_tx_queue_stopped(txq) && !nicvf_sq_append_skb(nic, skb)) {
Sunil Goutham4863dea2015-05-26 19:20:15 -07001080 netif_tx_stop_queue(txq);
Sunil Goutham74840b82015-07-29 16:49:42 +03001081 nic->drv_stats.txq_stop++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001082 if (netif_msg_tx_err(nic))
1083 netdev_warn(netdev,
1084 "%s: Transmit ring full, stopping SQ%d\n",
1085 netdev->name, qid);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001086 return NETDEV_TX_BUSY;
1087 }
1088
1089 return NETDEV_TX_OK;
1090}
1091
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001092static inline void nicvf_free_cq_poll(struct nicvf *nic)
1093{
1094 struct nicvf_cq_poll *cq_poll;
1095 int qidx;
1096
1097 for (qidx = 0; qidx < nic->qs->cq_cnt; qidx++) {
1098 cq_poll = nic->napi[qidx];
1099 if (!cq_poll)
1100 continue;
1101 nic->napi[qidx] = NULL;
1102 kfree(cq_poll);
1103 }
1104}
1105
Sunil Goutham4863dea2015-05-26 19:20:15 -07001106int nicvf_stop(struct net_device *netdev)
1107{
1108 int irq, qidx;
1109 struct nicvf *nic = netdev_priv(netdev);
1110 struct queue_set *qs = nic->qs;
1111 struct nicvf_cq_poll *cq_poll = NULL;
1112 union nic_mbx mbx = {};
1113
1114 mbx.msg.msg = NIC_MBOX_MSG_SHUTDOWN;
1115 nicvf_send_msg_to_pf(nic, &mbx);
1116
1117 netif_carrier_off(netdev);
Sunil Goutham92dc8762015-08-30 12:29:15 +03001118 netif_tx_stop_all_queues(nic->netdev);
Sunil Goutham0b72a9a2015-12-02 15:36:16 +05301119 nic->link_up = false;
Sunil Goutham92dc8762015-08-30 12:29:15 +03001120
1121 /* Teardown secondary qsets first */
1122 if (!nic->sqs_mode) {
1123 for (qidx = 0; qidx < nic->sqs_count; qidx++) {
1124 if (!nic->snicvf[qidx])
1125 continue;
1126 nicvf_stop(nic->snicvf[qidx]->netdev);
1127 nic->snicvf[qidx] = NULL;
1128 }
1129 }
Sunil Goutham4863dea2015-05-26 19:20:15 -07001130
1131 /* Disable RBDR & QS error interrupts */
1132 for (qidx = 0; qidx < qs->rbdr_cnt; qidx++) {
1133 nicvf_disable_intr(nic, NICVF_INTR_RBDR, qidx);
1134 nicvf_clear_intr(nic, NICVF_INTR_RBDR, qidx);
1135 }
1136 nicvf_disable_intr(nic, NICVF_INTR_QS_ERR, 0);
1137 nicvf_clear_intr(nic, NICVF_INTR_QS_ERR, 0);
1138
1139 /* Wait for pending IRQ handlers to finish */
1140 for (irq = 0; irq < nic->num_vec; irq++)
1141 synchronize_irq(nic->msix_entries[irq].vector);
1142
1143 tasklet_kill(&nic->rbdr_task);
1144 tasklet_kill(&nic->qs_err_task);
1145 if (nic->rb_work_scheduled)
1146 cancel_delayed_work_sync(&nic->rbdr_work);
1147
1148 for (qidx = 0; qidx < nic->qs->cq_cnt; qidx++) {
1149 cq_poll = nic->napi[qidx];
1150 if (!cq_poll)
1151 continue;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001152 napi_synchronize(&cq_poll->napi);
1153 /* CQ intr is enabled while napi_complete,
1154 * so disable it now
1155 */
1156 nicvf_disable_intr(nic, NICVF_INTR_CQ, qidx);
1157 nicvf_clear_intr(nic, NICVF_INTR_CQ, qidx);
1158 napi_disable(&cq_poll->napi);
1159 netif_napi_del(&cq_poll->napi);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001160 }
1161
Sunil Gouthamb49087d2015-07-29 16:49:44 +03001162 netif_tx_disable(netdev);
1163
Sunil Goutham4863dea2015-05-26 19:20:15 -07001164 /* Free resources */
1165 nicvf_config_data_transfer(nic, false);
1166
1167 /* Disable HW Qset */
1168 nicvf_qset_config(nic, false);
1169
1170 /* disable mailbox interrupt */
1171 nicvf_disable_intr(nic, NICVF_INTR_MBOX, 0);
1172
1173 nicvf_unregister_interrupts(nic);
1174
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001175 nicvf_free_cq_poll(nic);
1176
Sunil Goutham92dc8762015-08-30 12:29:15 +03001177 /* Clear multiqset info */
1178 nic->pnicvf = nic;
Sunil Goutham92dc8762015-08-30 12:29:15 +03001179
Sunil Goutham4863dea2015-05-26 19:20:15 -07001180 return 0;
1181}
1182
1183int nicvf_open(struct net_device *netdev)
1184{
1185 int err, qidx;
1186 struct nicvf *nic = netdev_priv(netdev);
1187 struct queue_set *qs = nic->qs;
1188 struct nicvf_cq_poll *cq_poll = NULL;
1189
1190 nic->mtu = netdev->mtu;
1191
1192 netif_carrier_off(netdev);
1193
1194 err = nicvf_register_misc_interrupt(nic);
1195 if (err)
1196 return err;
1197
1198 /* Register NAPI handler for processing CQEs */
1199 for (qidx = 0; qidx < qs->cq_cnt; qidx++) {
1200 cq_poll = kzalloc(sizeof(*cq_poll), GFP_KERNEL);
1201 if (!cq_poll) {
1202 err = -ENOMEM;
1203 goto napi_del;
1204 }
1205 cq_poll->cq_idx = qidx;
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001206 cq_poll->nicvf = nic;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001207 netif_napi_add(netdev, &cq_poll->napi, nicvf_poll,
1208 NAPI_POLL_WEIGHT);
1209 napi_enable(&cq_poll->napi);
1210 nic->napi[qidx] = cq_poll;
1211 }
1212
1213 /* Check if we got MAC address from PF or else generate a radom MAC */
Sunil Gouthama3a8ce42016-08-12 16:51:40 +05301214 if (!nic->sqs_mode && is_zero_ether_addr(netdev->dev_addr)) {
Sunil Goutham4863dea2015-05-26 19:20:15 -07001215 eth_hw_addr_random(netdev);
1216 nicvf_hw_set_mac_addr(nic, netdev);
1217 }
1218
Pavel Fedinbd049a92015-06-23 17:51:06 +03001219 if (nic->set_mac_pending) {
1220 nic->set_mac_pending = false;
1221 nicvf_hw_set_mac_addr(nic, netdev);
1222 }
1223
Sunil Goutham4863dea2015-05-26 19:20:15 -07001224 /* Init tasklet for handling Qset err interrupt */
1225 tasklet_init(&nic->qs_err_task, nicvf_handle_qs_err,
1226 (unsigned long)nic);
1227
1228 /* Init RBDR tasklet which will refill RBDR */
1229 tasklet_init(&nic->rbdr_task, nicvf_rbdr_task,
1230 (unsigned long)nic);
1231 INIT_DELAYED_WORK(&nic->rbdr_work, nicvf_rbdr_work);
1232
1233 /* Configure CPI alorithm */
1234 nic->cpi_alg = cpi_alg;
Sunil Goutham92dc8762015-08-30 12:29:15 +03001235 if (!nic->sqs_mode)
1236 nicvf_config_cpi(nic);
1237
1238 nicvf_request_sqs(nic);
1239 if (nic->sqs_mode)
1240 nicvf_get_primary_vf_struct(nic);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001241
1242 /* Configure receive side scaling */
Sunil Goutham92dc8762015-08-30 12:29:15 +03001243 if (!nic->sqs_mode)
1244 nicvf_rss_init(nic);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001245
1246 err = nicvf_register_interrupts(nic);
1247 if (err)
1248 goto cleanup;
1249
1250 /* Initialize the queues */
1251 err = nicvf_init_resources(nic);
1252 if (err)
1253 goto cleanup;
1254
1255 /* Make sure queue initialization is written */
1256 wmb();
1257
1258 nicvf_reg_write(nic, NIC_VF_INT, -1);
1259 /* Enable Qset err interrupt */
1260 nicvf_enable_intr(nic, NICVF_INTR_QS_ERR, 0);
1261
1262 /* Enable completion queue interrupt */
1263 for (qidx = 0; qidx < qs->cq_cnt; qidx++)
1264 nicvf_enable_intr(nic, NICVF_INTR_CQ, qidx);
1265
1266 /* Enable RBDR threshold interrupt */
1267 for (qidx = 0; qidx < qs->rbdr_cnt; qidx++)
1268 nicvf_enable_intr(nic, NICVF_INTR_RBDR, qidx);
1269
Sunil Goutham74840b82015-07-29 16:49:42 +03001270 nic->drv_stats.txq_stop = 0;
1271 nic->drv_stats.txq_wake = 0;
1272
Sunil Goutham4863dea2015-05-26 19:20:15 -07001273 return 0;
1274cleanup:
1275 nicvf_disable_intr(nic, NICVF_INTR_MBOX, 0);
1276 nicvf_unregister_interrupts(nic);
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001277 tasklet_kill(&nic->qs_err_task);
1278 tasklet_kill(&nic->rbdr_task);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001279napi_del:
1280 for (qidx = 0; qidx < qs->cq_cnt; qidx++) {
1281 cq_poll = nic->napi[qidx];
1282 if (!cq_poll)
1283 continue;
1284 napi_disable(&cq_poll->napi);
1285 netif_napi_del(&cq_poll->napi);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001286 }
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001287 nicvf_free_cq_poll(nic);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001288 return err;
1289}
1290
1291static int nicvf_update_hw_max_frs(struct nicvf *nic, int mtu)
1292{
1293 union nic_mbx mbx = {};
1294
1295 mbx.frs.msg = NIC_MBOX_MSG_SET_MAX_FRS;
1296 mbx.frs.max_frs = mtu;
1297 mbx.frs.vf_id = nic->vf_id;
1298
1299 return nicvf_send_msg_to_pf(nic, &mbx);
1300}
1301
1302static int nicvf_change_mtu(struct net_device *netdev, int new_mtu)
1303{
1304 struct nicvf *nic = netdev_priv(netdev);
1305
1306 if (new_mtu > NIC_HW_MAX_FRS)
1307 return -EINVAL;
1308
1309 if (new_mtu < NIC_HW_MIN_FRS)
1310 return -EINVAL;
1311
1312 if (nicvf_update_hw_max_frs(nic, new_mtu))
1313 return -EINVAL;
1314 netdev->mtu = new_mtu;
1315 nic->mtu = new_mtu;
1316
1317 return 0;
1318}
1319
1320static int nicvf_set_mac_address(struct net_device *netdev, void *p)
1321{
1322 struct sockaddr *addr = p;
1323 struct nicvf *nic = netdev_priv(netdev);
1324
1325 if (!is_valid_ether_addr(addr->sa_data))
1326 return -EADDRNOTAVAIL;
1327
1328 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
1329
Pavel Fedinbd049a92015-06-23 17:51:06 +03001330 if (nic->msix_enabled) {
Sunil Goutham4863dea2015-05-26 19:20:15 -07001331 if (nicvf_hw_set_mac_addr(nic, netdev))
1332 return -EBUSY;
Pavel Fedinbd049a92015-06-23 17:51:06 +03001333 } else {
1334 nic->set_mac_pending = true;
1335 }
Sunil Goutham4863dea2015-05-26 19:20:15 -07001336
1337 return 0;
1338}
1339
Sunil Goutham4863dea2015-05-26 19:20:15 -07001340void nicvf_update_lmac_stats(struct nicvf *nic)
1341{
1342 int stat = 0;
1343 union nic_mbx mbx = {};
Sunil Goutham4863dea2015-05-26 19:20:15 -07001344
1345 if (!netif_running(nic->netdev))
1346 return;
1347
1348 mbx.bgx_stats.msg = NIC_MBOX_MSG_BGX_STATS;
1349 mbx.bgx_stats.vf_id = nic->vf_id;
1350 /* Rx stats */
1351 mbx.bgx_stats.rx = 1;
1352 while (stat < BGX_RX_STATS_COUNT) {
Sunil Goutham4863dea2015-05-26 19:20:15 -07001353 mbx.bgx_stats.idx = stat;
Sunil Goutham6051cba2015-08-30 12:29:11 +03001354 if (nicvf_send_msg_to_pf(nic, &mbx))
1355 return;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001356 stat++;
1357 }
1358
1359 stat = 0;
1360
1361 /* Tx stats */
1362 mbx.bgx_stats.rx = 0;
1363 while (stat < BGX_TX_STATS_COUNT) {
Sunil Goutham4863dea2015-05-26 19:20:15 -07001364 mbx.bgx_stats.idx = stat;
Sunil Goutham6051cba2015-08-30 12:29:11 +03001365 if (nicvf_send_msg_to_pf(nic, &mbx))
1366 return;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001367 stat++;
1368 }
1369}
1370
1371void nicvf_update_stats(struct nicvf *nic)
1372{
1373 int qidx;
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001374 struct nicvf_hw_stats *stats = &nic->hw_stats;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001375 struct nicvf_drv_stats *drv_stats = &nic->drv_stats;
1376 struct queue_set *qs = nic->qs;
1377
1378#define GET_RX_STATS(reg) \
1379 nicvf_reg_read(nic, NIC_VNIC_RX_STAT_0_13 | (reg << 3))
1380#define GET_TX_STATS(reg) \
1381 nicvf_reg_read(nic, NIC_VNIC_TX_STAT_0_4 | (reg << 3))
1382
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001383 stats->rx_bytes = GET_RX_STATS(RX_OCTS);
1384 stats->rx_ucast_frames = GET_RX_STATS(RX_UCAST);
1385 stats->rx_bcast_frames = GET_RX_STATS(RX_BCAST);
1386 stats->rx_mcast_frames = GET_RX_STATS(RX_MCAST);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001387 stats->rx_fcs_errors = GET_RX_STATS(RX_FCS);
1388 stats->rx_l2_errors = GET_RX_STATS(RX_L2ERR);
1389 stats->rx_drop_red = GET_RX_STATS(RX_RED);
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001390 stats->rx_drop_red_bytes = GET_RX_STATS(RX_RED_OCTS);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001391 stats->rx_drop_overrun = GET_RX_STATS(RX_ORUN);
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001392 stats->rx_drop_overrun_bytes = GET_RX_STATS(RX_ORUN_OCTS);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001393 stats->rx_drop_bcast = GET_RX_STATS(RX_DRP_BCAST);
1394 stats->rx_drop_mcast = GET_RX_STATS(RX_DRP_MCAST);
1395 stats->rx_drop_l3_bcast = GET_RX_STATS(RX_DRP_L3BCAST);
1396 stats->rx_drop_l3_mcast = GET_RX_STATS(RX_DRP_L3MCAST);
1397
1398 stats->tx_bytes_ok = GET_TX_STATS(TX_OCTS);
1399 stats->tx_ucast_frames_ok = GET_TX_STATS(TX_UCAST);
1400 stats->tx_bcast_frames_ok = GET_TX_STATS(TX_BCAST);
1401 stats->tx_mcast_frames_ok = GET_TX_STATS(TX_MCAST);
1402 stats->tx_drops = GET_TX_STATS(TX_DROP);
1403
Sunil Goutham4863dea2015-05-26 19:20:15 -07001404 drv_stats->tx_frames_ok = stats->tx_ucast_frames_ok +
1405 stats->tx_bcast_frames_ok +
1406 stats->tx_mcast_frames_ok;
Sunil Gouthamad2eceb2016-02-16 16:29:51 +05301407 drv_stats->rx_frames_ok = stats->rx_ucast_frames +
1408 stats->rx_bcast_frames +
1409 stats->rx_mcast_frames;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001410 drv_stats->rx_drops = stats->rx_drop_red +
1411 stats->rx_drop_overrun;
1412 drv_stats->tx_drops = stats->tx_drops;
1413
1414 /* Update RQ and SQ stats */
1415 for (qidx = 0; qidx < qs->rq_cnt; qidx++)
1416 nicvf_update_rq_stats(nic, qidx);
1417 for (qidx = 0; qidx < qs->sq_cnt; qidx++)
1418 nicvf_update_sq_stats(nic, qidx);
1419}
1420
Aleksey Makarovfd7ec062015-06-02 11:00:23 -07001421static struct rtnl_link_stats64 *nicvf_get_stats64(struct net_device *netdev,
Sunil Goutham4863dea2015-05-26 19:20:15 -07001422 struct rtnl_link_stats64 *stats)
1423{
1424 struct nicvf *nic = netdev_priv(netdev);
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001425 struct nicvf_hw_stats *hw_stats = &nic->hw_stats;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001426 struct nicvf_drv_stats *drv_stats = &nic->drv_stats;
1427
1428 nicvf_update_stats(nic);
1429
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001430 stats->rx_bytes = hw_stats->rx_bytes;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001431 stats->rx_packets = drv_stats->rx_frames_ok;
1432 stats->rx_dropped = drv_stats->rx_drops;
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001433 stats->multicast = hw_stats->rx_mcast_frames;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001434
1435 stats->tx_bytes = hw_stats->tx_bytes_ok;
1436 stats->tx_packets = drv_stats->tx_frames_ok;
1437 stats->tx_dropped = drv_stats->tx_drops;
1438
1439 return stats;
1440}
1441
1442static void nicvf_tx_timeout(struct net_device *dev)
1443{
1444 struct nicvf *nic = netdev_priv(dev);
1445
1446 if (netif_msg_tx_err(nic))
1447 netdev_warn(dev, "%s: Transmit timed out, resetting\n",
1448 dev->name);
1449
Thanneeru Srinivasulua05d4842016-02-11 21:50:21 +05301450 nic->drv_stats.tx_timeout++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001451 schedule_work(&nic->reset_task);
1452}
1453
1454static void nicvf_reset_task(struct work_struct *work)
1455{
1456 struct nicvf *nic;
1457
1458 nic = container_of(work, struct nicvf, reset_task);
1459
1460 if (!netif_running(nic->netdev))
1461 return;
1462
1463 nicvf_stop(nic->netdev);
1464 nicvf_open(nic->netdev);
Florian Westphal860e9532016-05-03 16:33:13 +02001465 netif_trans_update(nic->netdev);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001466}
1467
Sunil Gouthamd77a2382015-08-30 12:29:16 +03001468static int nicvf_config_loopback(struct nicvf *nic,
1469 netdev_features_t features)
1470{
1471 union nic_mbx mbx = {};
1472
1473 mbx.lbk.msg = NIC_MBOX_MSG_LOOPBACK;
1474 mbx.lbk.vf_id = nic->vf_id;
1475 mbx.lbk.enable = (features & NETIF_F_LOOPBACK) != 0;
1476
1477 return nicvf_send_msg_to_pf(nic, &mbx);
1478}
1479
1480static netdev_features_t nicvf_fix_features(struct net_device *netdev,
1481 netdev_features_t features)
1482{
1483 struct nicvf *nic = netdev_priv(netdev);
1484
1485 if ((features & NETIF_F_LOOPBACK) &&
1486 netif_running(netdev) && !nic->loopback_supported)
1487 features &= ~NETIF_F_LOOPBACK;
1488
1489 return features;
1490}
1491
Sunil Gouthamaa2e2592015-08-30 12:29:13 +03001492static int nicvf_set_features(struct net_device *netdev,
1493 netdev_features_t features)
1494{
1495 struct nicvf *nic = netdev_priv(netdev);
1496 netdev_features_t changed = features ^ netdev->features;
1497
1498 if (changed & NETIF_F_HW_VLAN_CTAG_RX)
1499 nicvf_config_vlan_stripping(nic, features);
1500
Sunil Gouthamd77a2382015-08-30 12:29:16 +03001501 if ((changed & NETIF_F_LOOPBACK) && netif_running(netdev))
1502 return nicvf_config_loopback(nic, features);
1503
Sunil Gouthamaa2e2592015-08-30 12:29:13 +03001504 return 0;
1505}
1506
Sunil Goutham4863dea2015-05-26 19:20:15 -07001507static const struct net_device_ops nicvf_netdev_ops = {
1508 .ndo_open = nicvf_open,
1509 .ndo_stop = nicvf_stop,
1510 .ndo_start_xmit = nicvf_xmit,
1511 .ndo_change_mtu = nicvf_change_mtu,
1512 .ndo_set_mac_address = nicvf_set_mac_address,
1513 .ndo_get_stats64 = nicvf_get_stats64,
1514 .ndo_tx_timeout = nicvf_tx_timeout,
Sunil Gouthamd77a2382015-08-30 12:29:16 +03001515 .ndo_fix_features = nicvf_fix_features,
Sunil Gouthamaa2e2592015-08-30 12:29:13 +03001516 .ndo_set_features = nicvf_set_features,
Sunil Goutham4863dea2015-05-26 19:20:15 -07001517};
1518
1519static int nicvf_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
1520{
1521 struct device *dev = &pdev->dev;
1522 struct net_device *netdev;
1523 struct nicvf *nic;
Sunil Goutham92dc8762015-08-30 12:29:15 +03001524 int err, qcount;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001525
1526 err = pci_enable_device(pdev);
1527 if (err) {
1528 dev_err(dev, "Failed to enable PCI device\n");
1529 return err;
1530 }
1531
1532 err = pci_request_regions(pdev, DRV_NAME);
1533 if (err) {
1534 dev_err(dev, "PCI request regions failed 0x%x\n", err);
1535 goto err_disable_device;
1536 }
1537
1538 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(48));
1539 if (err) {
1540 dev_err(dev, "Unable to get usable DMA configuration\n");
1541 goto err_release_regions;
1542 }
1543
1544 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(48));
1545 if (err) {
1546 dev_err(dev, "unable to get 48-bit DMA for consistent allocations\n");
1547 goto err_release_regions;
1548 }
1549
Sunil Goutham3a397eb2016-08-12 16:51:27 +05301550 qcount = netif_get_num_default_rss_queues();
Sunil Goutham92dc8762015-08-30 12:29:15 +03001551
1552 /* Restrict multiqset support only for host bound VFs */
1553 if (pdev->is_virtfn) {
1554 /* Set max number of queues per VF */
Sunil Goutham3a397eb2016-08-12 16:51:27 +05301555 qcount = min_t(int, num_online_cpus(),
1556 (MAX_SQS_PER_VF + 1) * MAX_CMP_QUEUES_PER_QS);
Sunil Goutham92dc8762015-08-30 12:29:15 +03001557 }
1558
1559 netdev = alloc_etherdev_mqs(sizeof(struct nicvf), qcount, qcount);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001560 if (!netdev) {
1561 err = -ENOMEM;
1562 goto err_release_regions;
1563 }
1564
1565 pci_set_drvdata(pdev, netdev);
1566
1567 SET_NETDEV_DEV(netdev, &pdev->dev);
1568
1569 nic = netdev_priv(netdev);
1570 nic->netdev = netdev;
1571 nic->pdev = pdev;
Sunil Goutham92dc8762015-08-30 12:29:15 +03001572 nic->pnicvf = nic;
1573 nic->max_queues = qcount;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001574
1575 /* MAP VF's configuration registers */
1576 nic->reg_base = pcim_iomap(pdev, PCI_CFG_REG_BAR_NUM, 0);
1577 if (!nic->reg_base) {
1578 dev_err(dev, "Cannot map config register space, aborting\n");
1579 err = -ENOMEM;
1580 goto err_free_netdev;
1581 }
1582
1583 err = nicvf_set_qset_resources(nic);
1584 if (err)
1585 goto err_free_netdev;
1586
Sunil Goutham4863dea2015-05-26 19:20:15 -07001587 /* Check if PF is alive and get MAC address for this VF */
1588 err = nicvf_register_misc_interrupt(nic);
1589 if (err)
1590 goto err_free_netdev;
1591
Sunil Goutham92dc8762015-08-30 12:29:15 +03001592 nicvf_send_vf_struct(nic);
1593
Sunil Goutham8d210d52016-02-16 16:29:50 +05301594 if (!pass1_silicon(nic->pdev))
1595 nic->hw_tso = true;
1596
Sunil Goutham92dc8762015-08-30 12:29:15 +03001597 /* Check if this VF is in QS only mode */
1598 if (nic->sqs_mode)
1599 return 0;
1600
1601 err = nicvf_set_real_num_queues(netdev, nic->tx_queues, nic->rx_queues);
1602 if (err)
1603 goto err_unregister_interrupts;
1604
Sunil Gouthamaa2e2592015-08-30 12:29:13 +03001605 netdev->hw_features = (NETIF_F_RXCSUM | NETIF_F_IP_CSUM | NETIF_F_SG |
1606 NETIF_F_TSO | NETIF_F_GRO |
Sunil Goutham92dc8762015-08-30 12:29:15 +03001607 NETIF_F_HW_VLAN_CTAG_RX);
1608
1609 netdev->hw_features |= NETIF_F_RXHASH;
Sunil Goutham38bb5d42015-08-30 12:29:12 +03001610
Sunil Gouthamaa2e2592015-08-30 12:29:13 +03001611 netdev->features |= netdev->hw_features;
Sunil Gouthamd77a2382015-08-30 12:29:16 +03001612 netdev->hw_features |= NETIF_F_LOOPBACK;
Sunil Gouthamaa2e2592015-08-30 12:29:13 +03001613
1614 netdev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001615
1616 netdev->netdev_ops = &nicvf_netdev_ops;
Sunil Goutham3d7a8aa2015-07-29 16:49:43 +03001617 netdev->watchdog_timeo = NICVF_TX_TIMEOUT;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001618
1619 INIT_WORK(&nic->reset_task, nicvf_reset_task);
1620
1621 err = register_netdev(netdev);
1622 if (err) {
1623 dev_err(dev, "Failed to register netdevice\n");
1624 goto err_unregister_interrupts;
1625 }
1626
1627 nic->msg_enable = debug;
1628
1629 nicvf_set_ethtool_ops(netdev);
1630
1631 return 0;
1632
1633err_unregister_interrupts:
1634 nicvf_unregister_interrupts(nic);
1635err_free_netdev:
1636 pci_set_drvdata(pdev, NULL);
1637 free_netdev(netdev);
1638err_release_regions:
1639 pci_release_regions(pdev);
1640err_disable_device:
1641 pci_disable_device(pdev);
1642 return err;
1643}
1644
1645static void nicvf_remove(struct pci_dev *pdev)
1646{
1647 struct net_device *netdev = pci_get_drvdata(pdev);
Pavel Fedin77501302015-11-16 17:51:34 +03001648 struct nicvf *nic;
1649 struct net_device *pnetdev;
1650
1651 if (!netdev)
1652 return;
1653
1654 nic = netdev_priv(netdev);
1655 pnetdev = nic->pnicvf->netdev;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001656
Sunil Goutham92dc8762015-08-30 12:29:15 +03001657 /* Check if this Qset is assigned to different VF.
1658 * If yes, clean primary and all secondary Qsets.
1659 */
1660 if (pnetdev && (pnetdev->reg_state == NETREG_REGISTERED))
1661 unregister_netdev(pnetdev);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001662 nicvf_unregister_interrupts(nic);
1663 pci_set_drvdata(pdev, NULL);
1664 free_netdev(netdev);
1665 pci_release_regions(pdev);
1666 pci_disable_device(pdev);
1667}
1668
Sunil Goutham4adf4352015-07-29 16:49:45 +03001669static void nicvf_shutdown(struct pci_dev *pdev)
1670{
1671 nicvf_remove(pdev);
1672}
1673
Sunil Goutham4863dea2015-05-26 19:20:15 -07001674static struct pci_driver nicvf_driver = {
1675 .name = DRV_NAME,
1676 .id_table = nicvf_id_table,
1677 .probe = nicvf_probe,
1678 .remove = nicvf_remove,
Sunil Goutham4adf4352015-07-29 16:49:45 +03001679 .shutdown = nicvf_shutdown,
Sunil Goutham4863dea2015-05-26 19:20:15 -07001680};
1681
1682static int __init nicvf_init_module(void)
1683{
1684 pr_info("%s, ver %s\n", DRV_NAME, DRV_VERSION);
1685
1686 return pci_register_driver(&nicvf_driver);
1687}
1688
1689static void __exit nicvf_cleanup_module(void)
1690{
1691 pci_unregister_driver(&nicvf_driver);
1692}
1693
1694module_init(nicvf_init_module);
1695module_exit(nicvf_cleanup_module);