blob: 0c106350d5a8f4037d99bbf9ffb7a14921a529ec [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) {
147 if (nic->pf_nacked)
148 return -EINVAL;
149 msleep(sleep);
150 if (nic->pf_acked)
151 break;
152 timeout -= sleep;
153 if (!timeout) {
154 netdev_err(nic->netdev,
155 "PF didn't ack to mbox msg %d from VF%d\n",
156 (mbx->msg.msg & 0xFF), nic->vf_id);
157 return -EBUSY;
158 }
159 }
160 return 0;
161}
162
163/* Checks if VF is able to comminicate with PF
164* and also gets the VNIC number this VF is associated to.
165*/
166static int nicvf_check_pf_ready(struct nicvf *nic)
167{
Aleksey Makarov2cd2a192015-06-02 11:00:20 -0700168 union nic_mbx mbx = {};
169
170 mbx.msg.msg = NIC_MBOX_MSG_READY;
Sunil Goutham6051cba2015-08-30 12:29:11 +0300171 if (nicvf_send_msg_to_pf(nic, &mbx)) {
172 netdev_err(nic->netdev,
173 "PF didn't respond to READY msg\n");
174 return 0;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700175 }
Sunil Goutham6051cba2015-08-30 12:29:11 +0300176
Sunil Goutham4863dea2015-05-26 19:20:15 -0700177 return 1;
178}
179
Aleksey Makarovfd7ec062015-06-02 11:00:23 -0700180static void nicvf_read_bgx_stats(struct nicvf *nic, struct bgx_stats_msg *bgx)
181{
182 if (bgx->rx)
183 nic->bgx_stats.rx_stats[bgx->idx] = bgx->stats;
184 else
185 nic->bgx_stats.tx_stats[bgx->idx] = bgx->stats;
186}
187
Sunil Goutham4863dea2015-05-26 19:20:15 -0700188static void nicvf_handle_mbx_intr(struct nicvf *nic)
189{
190 union nic_mbx mbx = {};
191 u64 *mbx_data;
192 u64 mbx_addr;
193 int i;
194
195 mbx_addr = NIC_VF_PF_MAILBOX_0_1;
196 mbx_data = (u64 *)&mbx;
197
198 for (i = 0; i < NIC_PF_VF_MAILBOX_SIZE; i++) {
199 *mbx_data = nicvf_reg_read(nic, mbx_addr);
200 mbx_data++;
201 mbx_addr += sizeof(u64);
202 }
203
204 netdev_dbg(nic->netdev, "Mbox message: msg: 0x%x\n", mbx.msg.msg);
205 switch (mbx.msg.msg) {
206 case NIC_MBOX_MSG_READY:
Sunil Goutham6051cba2015-08-30 12:29:11 +0300207 nic->pf_acked = true;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700208 nic->vf_id = mbx.nic_cfg.vf_id & 0x7F;
209 nic->tns_mode = mbx.nic_cfg.tns_mode & 0x7F;
210 nic->node = mbx.nic_cfg.node_id;
Pavel Fedinbd049a92015-06-23 17:51:06 +0300211 if (!nic->set_mac_pending)
212 ether_addr_copy(nic->netdev->dev_addr,
213 mbx.nic_cfg.mac_addr);
Sunil Goutham92dc8762015-08-30 12:29:15 +0300214 nic->sqs_mode = mbx.nic_cfg.sqs_mode;
Sunil Gouthamd77a2382015-08-30 12:29:16 +0300215 nic->loopback_supported = mbx.nic_cfg.loopback_supported;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700216 nic->link_up = false;
217 nic->duplex = 0;
218 nic->speed = 0;
219 break;
220 case NIC_MBOX_MSG_ACK:
221 nic->pf_acked = true;
222 break;
223 case NIC_MBOX_MSG_NACK:
224 nic->pf_nacked = true;
225 break;
226 case NIC_MBOX_MSG_RSS_SIZE:
227 nic->rss_info.rss_size = mbx.rss_size.ind_tbl_size;
228 nic->pf_acked = true;
229 break;
230 case NIC_MBOX_MSG_BGX_STATS:
231 nicvf_read_bgx_stats(nic, &mbx.bgx_stats);
232 nic->pf_acked = true;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700233 break;
234 case NIC_MBOX_MSG_BGX_LINK_CHANGE:
235 nic->pf_acked = true;
236 nic->link_up = mbx.link_status.link_up;
237 nic->duplex = mbx.link_status.duplex;
238 nic->speed = mbx.link_status.speed;
239 if (nic->link_up) {
240 netdev_info(nic->netdev, "%s: Link is Up %d Mbps %s\n",
241 nic->netdev->name, nic->speed,
242 nic->duplex == DUPLEX_FULL ?
243 "Full duplex" : "Half duplex");
244 netif_carrier_on(nic->netdev);
Sunil Gouthamb49087d2015-07-29 16:49:44 +0300245 netif_tx_start_all_queues(nic->netdev);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700246 } else {
247 netdev_info(nic->netdev, "%s: Link is Down\n",
248 nic->netdev->name);
249 netif_carrier_off(nic->netdev);
250 netif_tx_stop_all_queues(nic->netdev);
251 }
252 break;
Sunil Goutham92dc8762015-08-30 12:29:15 +0300253 case NIC_MBOX_MSG_ALLOC_SQS:
254 nic->sqs_count = mbx.sqs_alloc.qs_count;
255 nic->pf_acked = true;
256 break;
257 case NIC_MBOX_MSG_SNICVF_PTR:
258 /* Primary VF: make note of secondary VF's pointer
259 * to be used while packet transmission.
260 */
261 nic->snicvf[mbx.nicvf.sqs_id] =
262 (struct nicvf *)mbx.nicvf.nicvf;
263 nic->pf_acked = true;
264 break;
265 case NIC_MBOX_MSG_PNICVF_PTR:
266 /* Secondary VF/Qset: make note of primary VF's pointer
267 * to be used while packet reception, to handover packet
268 * to primary VF's netdev.
269 */
270 nic->pnicvf = (struct nicvf *)mbx.nicvf.nicvf;
271 nic->pf_acked = true;
272 break;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700273 default:
274 netdev_err(nic->netdev,
275 "Invalid message from PF, msg 0x%x\n", mbx.msg.msg);
276 break;
277 }
278 nicvf_clear_intr(nic, NICVF_INTR_MBOX, 0);
279}
280
281static int nicvf_hw_set_mac_addr(struct nicvf *nic, struct net_device *netdev)
282{
283 union nic_mbx mbx = {};
Sunil Goutham4863dea2015-05-26 19:20:15 -0700284
285 mbx.mac.msg = NIC_MBOX_MSG_SET_MAC;
286 mbx.mac.vf_id = nic->vf_id;
Aleksey Makarove610cb32015-06-02 11:00:21 -0700287 ether_addr_copy(mbx.mac.mac_addr, netdev->dev_addr);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700288
289 return nicvf_send_msg_to_pf(nic, &mbx);
290}
291
Aleksey Makarovfd7ec062015-06-02 11:00:23 -0700292static void nicvf_config_cpi(struct nicvf *nic)
Sunil Goutham4863dea2015-05-26 19:20:15 -0700293{
294 union nic_mbx mbx = {};
295
296 mbx.cpi_cfg.msg = NIC_MBOX_MSG_CPI_CFG;
297 mbx.cpi_cfg.vf_id = nic->vf_id;
298 mbx.cpi_cfg.cpi_alg = nic->cpi_alg;
299 mbx.cpi_cfg.rq_cnt = nic->qs->rq_cnt;
300
301 nicvf_send_msg_to_pf(nic, &mbx);
302}
303
Aleksey Makarovfd7ec062015-06-02 11:00:23 -0700304static void nicvf_get_rss_size(struct nicvf *nic)
Sunil Goutham4863dea2015-05-26 19:20:15 -0700305{
306 union nic_mbx mbx = {};
307
308 mbx.rss_size.msg = NIC_MBOX_MSG_RSS_SIZE;
309 mbx.rss_size.vf_id = nic->vf_id;
310 nicvf_send_msg_to_pf(nic, &mbx);
311}
312
313void nicvf_config_rss(struct nicvf *nic)
314{
315 union nic_mbx mbx = {};
316 struct nicvf_rss_info *rss = &nic->rss_info;
317 int ind_tbl_len = rss->rss_size;
318 int i, nextq = 0;
319
320 mbx.rss_cfg.vf_id = nic->vf_id;
321 mbx.rss_cfg.hash_bits = rss->hash_bits;
322 while (ind_tbl_len) {
323 mbx.rss_cfg.tbl_offset = nextq;
324 mbx.rss_cfg.tbl_len = min(ind_tbl_len,
325 RSS_IND_TBL_LEN_PER_MBX_MSG);
326 mbx.rss_cfg.msg = mbx.rss_cfg.tbl_offset ?
327 NIC_MBOX_MSG_RSS_CFG_CONT : NIC_MBOX_MSG_RSS_CFG;
328
329 for (i = 0; i < mbx.rss_cfg.tbl_len; i++)
330 mbx.rss_cfg.ind_tbl[i] = rss->ind_tbl[nextq++];
331
332 nicvf_send_msg_to_pf(nic, &mbx);
333
334 ind_tbl_len -= mbx.rss_cfg.tbl_len;
335 }
336}
337
338void nicvf_set_rss_key(struct nicvf *nic)
339{
340 struct nicvf_rss_info *rss = &nic->rss_info;
341 u64 key_addr = NIC_VNIC_RSS_KEY_0_4;
342 int idx;
343
344 for (idx = 0; idx < RSS_HASH_KEY_SIZE; idx++) {
345 nicvf_reg_write(nic, key_addr, rss->key[idx]);
346 key_addr += sizeof(u64);
347 }
348}
349
350static int nicvf_rss_init(struct nicvf *nic)
351{
352 struct nicvf_rss_info *rss = &nic->rss_info;
353 int idx;
354
355 nicvf_get_rss_size(nic);
356
Sunil Goutham38bb5d42015-08-30 12:29:12 +0300357 if (cpi_alg != CPI_ALG_NONE) {
Sunil Goutham4863dea2015-05-26 19:20:15 -0700358 rss->enable = false;
359 rss->hash_bits = 0;
360 return 0;
361 }
362
363 rss->enable = true;
364
365 /* Using the HW reset value for now */
Aleksey Makarov4a4f87d2015-06-02 11:00:19 -0700366 rss->key[0] = 0xFEED0BADFEED0BADULL;
367 rss->key[1] = 0xFEED0BADFEED0BADULL;
368 rss->key[2] = 0xFEED0BADFEED0BADULL;
369 rss->key[3] = 0xFEED0BADFEED0BADULL;
370 rss->key[4] = 0xFEED0BADFEED0BADULL;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700371
372 nicvf_set_rss_key(nic);
373
374 rss->cfg = RSS_IP_HASH_ENA | RSS_TCP_HASH_ENA | RSS_UDP_HASH_ENA;
375 nicvf_reg_write(nic, NIC_VNIC_RSS_CFG, rss->cfg);
376
377 rss->hash_bits = ilog2(rounddown_pow_of_two(rss->rss_size));
378
379 for (idx = 0; idx < rss->rss_size; idx++)
380 rss->ind_tbl[idx] = ethtool_rxfh_indir_default(idx,
Sunil Goutham92dc8762015-08-30 12:29:15 +0300381 nic->rx_queues);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700382 nicvf_config_rss(nic);
383 return 1;
384}
385
Sunil Goutham92dc8762015-08-30 12:29:15 +0300386/* Request PF to allocate additional Qsets */
387static void nicvf_request_sqs(struct nicvf *nic)
388{
389 union nic_mbx mbx = {};
390 int sqs;
391 int sqs_count = nic->sqs_count;
392 int rx_queues = 0, tx_queues = 0;
393
394 /* Only primary VF should request */
395 if (nic->sqs_mode || !nic->sqs_count)
396 return;
397
398 mbx.sqs_alloc.msg = NIC_MBOX_MSG_ALLOC_SQS;
399 mbx.sqs_alloc.vf_id = nic->vf_id;
400 mbx.sqs_alloc.qs_count = nic->sqs_count;
401 if (nicvf_send_msg_to_pf(nic, &mbx)) {
402 /* No response from PF */
403 nic->sqs_count = 0;
404 return;
405 }
406
407 /* Return if no Secondary Qsets available */
408 if (!nic->sqs_count)
409 return;
410
411 if (nic->rx_queues > MAX_RCV_QUEUES_PER_QS)
412 rx_queues = nic->rx_queues - MAX_RCV_QUEUES_PER_QS;
413 if (nic->tx_queues > MAX_SND_QUEUES_PER_QS)
414 tx_queues = nic->tx_queues - MAX_SND_QUEUES_PER_QS;
415
416 /* Set no of Rx/Tx queues in each of the SQsets */
417 for (sqs = 0; sqs < nic->sqs_count; sqs++) {
418 mbx.nicvf.msg = NIC_MBOX_MSG_SNICVF_PTR;
419 mbx.nicvf.vf_id = nic->vf_id;
420 mbx.nicvf.sqs_id = sqs;
421 nicvf_send_msg_to_pf(nic, &mbx);
422
423 nic->snicvf[sqs]->sqs_id = sqs;
424 if (rx_queues > MAX_RCV_QUEUES_PER_QS) {
425 nic->snicvf[sqs]->qs->rq_cnt = MAX_RCV_QUEUES_PER_QS;
426 rx_queues -= MAX_RCV_QUEUES_PER_QS;
427 } else {
428 nic->snicvf[sqs]->qs->rq_cnt = rx_queues;
429 rx_queues = 0;
430 }
431
432 if (tx_queues > MAX_SND_QUEUES_PER_QS) {
433 nic->snicvf[sqs]->qs->sq_cnt = MAX_SND_QUEUES_PER_QS;
434 tx_queues -= MAX_SND_QUEUES_PER_QS;
435 } else {
436 nic->snicvf[sqs]->qs->sq_cnt = tx_queues;
437 tx_queues = 0;
438 }
439
440 nic->snicvf[sqs]->qs->cq_cnt =
441 max(nic->snicvf[sqs]->qs->rq_cnt, nic->snicvf[sqs]->qs->sq_cnt);
442
443 /* Initialize secondary Qset's queues and its interrupts */
444 nicvf_open(nic->snicvf[sqs]->netdev);
445 }
446
447 /* Update stack with actual Rx/Tx queue count allocated */
448 if (sqs_count != nic->sqs_count)
449 nicvf_set_real_num_queues(nic->netdev,
450 nic->tx_queues, nic->rx_queues);
451}
452
453/* Send this Qset's nicvf pointer to PF.
454 * PF inturn sends primary VF's nicvf struct to secondary Qsets/VFs
455 * so that packets received by these Qsets can use primary VF's netdev
456 */
457static void nicvf_send_vf_struct(struct nicvf *nic)
458{
459 union nic_mbx mbx = {};
460
461 mbx.nicvf.msg = NIC_MBOX_MSG_NICVF_PTR;
462 mbx.nicvf.sqs_mode = nic->sqs_mode;
463 mbx.nicvf.nicvf = (u64)nic;
464 nicvf_send_msg_to_pf(nic, &mbx);
465}
466
467static void nicvf_get_primary_vf_struct(struct nicvf *nic)
468{
469 union nic_mbx mbx = {};
470
471 mbx.nicvf.msg = NIC_MBOX_MSG_PNICVF_PTR;
472 nicvf_send_msg_to_pf(nic, &mbx);
473}
474
Sunil Goutham4863dea2015-05-26 19:20:15 -0700475int nicvf_set_real_num_queues(struct net_device *netdev,
476 int tx_queues, int rx_queues)
477{
478 int err = 0;
479
480 err = netif_set_real_num_tx_queues(netdev, tx_queues);
481 if (err) {
482 netdev_err(netdev,
483 "Failed to set no of Tx queues: %d\n", tx_queues);
484 return err;
485 }
486
487 err = netif_set_real_num_rx_queues(netdev, rx_queues);
488 if (err)
489 netdev_err(netdev,
490 "Failed to set no of Rx queues: %d\n", rx_queues);
491 return err;
492}
493
494static int nicvf_init_resources(struct nicvf *nic)
495{
496 int err;
Aleksey Makarov2cd2a192015-06-02 11:00:20 -0700497 union nic_mbx mbx = {};
498
499 mbx.msg.msg = NIC_MBOX_MSG_CFG_DONE;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700500
501 /* Enable Qset */
502 nicvf_qset_config(nic, true);
503
504 /* Initialize queues and HW for data transfer */
505 err = nicvf_config_data_transfer(nic, true);
506 if (err) {
507 netdev_err(nic->netdev,
508 "Failed to alloc/config VF's QSet resources\n");
509 return err;
510 }
511
512 /* Send VF config done msg to PF */
Aleksey Makarov2cd2a192015-06-02 11:00:20 -0700513 nicvf_write_to_mbx(nic, &mbx);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700514
515 return 0;
516}
517
518static void nicvf_snd_pkt_handler(struct net_device *netdev,
519 struct cmp_queue *cq,
520 struct cqe_send_t *cqe_tx, int cqe_type)
521{
522 struct sk_buff *skb = NULL;
523 struct nicvf *nic = netdev_priv(netdev);
524 struct snd_queue *sq;
525 struct sq_hdr_subdesc *hdr;
526
527 sq = &nic->qs->sq[cqe_tx->sq_idx];
528
529 hdr = (struct sq_hdr_subdesc *)GET_SQ_DESC(sq, cqe_tx->sqe_ptr);
530 if (hdr->subdesc_type != SQ_DESC_TYPE_HEADER)
531 return;
532
533 netdev_dbg(nic->netdev,
534 "%s Qset #%d SQ #%d SQ ptr #%d subdesc count %d\n",
535 __func__, cqe_tx->sq_qs, cqe_tx->sq_idx,
536 cqe_tx->sqe_ptr, hdr->subdesc_cnt);
537
Sunil Goutham4863dea2015-05-26 19:20:15 -0700538 nicvf_check_cqe_tx_errs(nic, cq, cqe_tx);
539 skb = (struct sk_buff *)sq->skbuff[cqe_tx->sqe_ptr];
Sunil Goutham40fb5f82015-12-10 13:25:19 +0530540 /* For TSO offloaded packets only one SQE will have a valid SKB */
Sunil Goutham4863dea2015-05-26 19:20:15 -0700541 if (skb) {
Sunil Goutham40fb5f82015-12-10 13:25:19 +0530542 nicvf_put_sq_desc(sq, hdr->subdesc_cnt + 1);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700543 prefetch(skb);
544 dev_consume_skb_any(skb);
Sunil Goutham143ceb02015-07-29 16:49:37 +0300545 sq->skbuff[cqe_tx->sqe_ptr] = (u64)NULL;
Sunil Goutham40fb5f82015-12-10 13:25:19 +0530546 } else {
547 /* In case of HW TSO, HW sends a CQE for each segment of a TSO
548 * packet instead of a single CQE for the whole TSO packet
549 * transmitted. Each of this CQE points to the same SQE, so
550 * avoid freeing same SQE multiple times.
551 */
552 if (!nic->hw_tso)
553 nicvf_put_sq_desc(sq, hdr->subdesc_cnt + 1);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700554 }
555}
556
Sunil Goutham38bb5d42015-08-30 12:29:12 +0300557static inline void nicvf_set_rxhash(struct net_device *netdev,
558 struct cqe_rx_t *cqe_rx,
559 struct sk_buff *skb)
560{
561 u8 hash_type;
562 u32 hash;
563
564 if (!(netdev->features & NETIF_F_RXHASH))
565 return;
566
567 switch (cqe_rx->rss_alg) {
568 case RSS_ALG_TCP_IP:
569 case RSS_ALG_UDP_IP:
570 hash_type = PKT_HASH_TYPE_L4;
571 hash = cqe_rx->rss_tag;
572 break;
573 case RSS_ALG_IP:
574 hash_type = PKT_HASH_TYPE_L3;
575 hash = cqe_rx->rss_tag;
576 break;
577 default:
578 hash_type = PKT_HASH_TYPE_NONE;
579 hash = 0;
580 }
581
582 skb_set_hash(skb, hash, hash_type);
583}
584
Sunil Goutham4863dea2015-05-26 19:20:15 -0700585static void nicvf_rcv_pkt_handler(struct net_device *netdev,
586 struct napi_struct *napi,
Sunil Gouthamad2eceb2016-02-16 16:29:51 +0530587 struct cqe_rx_t *cqe_rx)
Sunil Goutham4863dea2015-05-26 19:20:15 -0700588{
589 struct sk_buff *skb;
590 struct nicvf *nic = netdev_priv(netdev);
591 int err = 0;
Sunil Goutham92dc8762015-08-30 12:29:15 +0300592 int rq_idx;
593
594 rq_idx = nicvf_netdev_qidx(nic, cqe_rx->rq_idx);
595
596 if (nic->sqs_mode) {
597 /* Use primary VF's 'nicvf' struct */
598 nic = nic->pnicvf;
599 netdev = nic->netdev;
600 }
Sunil Goutham4863dea2015-05-26 19:20:15 -0700601
602 /* Check for errors */
Sunil Gouthamad2eceb2016-02-16 16:29:51 +0530603 err = nicvf_check_cqe_rx_errs(nic, cqe_rx);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700604 if (err && !cqe_rx->rb_cnt)
605 return;
606
607 skb = nicvf_get_rcv_skb(nic, cqe_rx);
608 if (!skb) {
609 netdev_dbg(nic->netdev, "Packet not received\n");
610 return;
611 }
612
613 if (netif_msg_pktdata(nic)) {
614 netdev_info(nic->netdev, "%s: skb 0x%p, len=%d\n", netdev->name,
615 skb, skb->len);
616 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_OFFSET, 16, 1,
617 skb->data, skb->len, true);
618 }
619
Sunil Gouthama2dc5de2015-08-30 12:29:10 +0300620 /* If error packet, drop it here */
621 if (err) {
622 dev_kfree_skb_any(skb);
623 return;
624 }
625
Sunil Goutham4863dea2015-05-26 19:20:15 -0700626 nicvf_set_rx_frame_cnt(nic, skb);
627
Sunil Goutham38bb5d42015-08-30 12:29:12 +0300628 nicvf_set_rxhash(netdev, cqe_rx, skb);
629
Sunil Goutham92dc8762015-08-30 12:29:15 +0300630 skb_record_rx_queue(skb, rq_idx);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700631 if (netdev->hw_features & NETIF_F_RXCSUM) {
632 /* HW by default verifies TCP/UDP/SCTP checksums */
633 skb->ip_summed = CHECKSUM_UNNECESSARY;
634 } else {
635 skb_checksum_none_assert(skb);
636 }
637
638 skb->protocol = eth_type_trans(skb, netdev);
639
Sunil Gouthamaa2e2592015-08-30 12:29:13 +0300640 /* Check for stripped VLAN */
641 if (cqe_rx->vlan_found && cqe_rx->vlan_stripped)
642 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
643 ntohs((__force __be16)cqe_rx->vlan_tci));
644
Sunil Goutham4863dea2015-05-26 19:20:15 -0700645 if (napi && (netdev->features & NETIF_F_GRO))
646 napi_gro_receive(napi, skb);
647 else
648 netif_receive_skb(skb);
649}
650
651static int nicvf_cq_intr_handler(struct net_device *netdev, u8 cq_idx,
652 struct napi_struct *napi, int budget)
653{
Sunil Goutham74840b82015-07-29 16:49:42 +0300654 int processed_cqe, work_done = 0, tx_done = 0;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700655 int cqe_count, cqe_head;
656 struct nicvf *nic = netdev_priv(netdev);
657 struct queue_set *qs = nic->qs;
658 struct cmp_queue *cq = &qs->cq[cq_idx];
659 struct cqe_rx_t *cq_desc;
Sunil Goutham74840b82015-07-29 16:49:42 +0300660 struct netdev_queue *txq;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700661
662 spin_lock_bh(&cq->lock);
663loop:
664 processed_cqe = 0;
665 /* Get no of valid CQ entries to process */
666 cqe_count = nicvf_queue_reg_read(nic, NIC_QSET_CQ_0_7_STATUS, cq_idx);
667 cqe_count &= CQ_CQE_COUNT;
668 if (!cqe_count)
669 goto done;
670
671 /* Get head of the valid CQ entries */
672 cqe_head = nicvf_queue_reg_read(nic, NIC_QSET_CQ_0_7_HEAD, cq_idx) >> 9;
673 cqe_head &= 0xFFFF;
674
Sunil Goutham74840b82015-07-29 16:49:42 +0300675 netdev_dbg(nic->netdev, "%s CQ%d cqe_count %d cqe_head %d\n",
676 __func__, cq_idx, cqe_count, cqe_head);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700677 while (processed_cqe < cqe_count) {
678 /* Get the CQ descriptor */
679 cq_desc = (struct cqe_rx_t *)GET_CQ_DESC(cq, cqe_head);
680 cqe_head++;
681 cqe_head &= (cq->dmem.q_len - 1);
682 /* Initiate prefetch for next descriptor */
683 prefetch((struct cqe_rx_t *)GET_CQ_DESC(cq, cqe_head));
684
685 if ((work_done >= budget) && napi &&
686 (cq_desc->cqe_type != CQE_TYPE_SEND)) {
687 break;
688 }
689
Sunil Goutham74840b82015-07-29 16:49:42 +0300690 netdev_dbg(nic->netdev, "CQ%d cq_desc->cqe_type %d\n",
691 cq_idx, cq_desc->cqe_type);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700692 switch (cq_desc->cqe_type) {
693 case CQE_TYPE_RX:
Sunil Gouthamad2eceb2016-02-16 16:29:51 +0530694 nicvf_rcv_pkt_handler(netdev, napi, cq_desc);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700695 work_done++;
696 break;
697 case CQE_TYPE_SEND:
698 nicvf_snd_pkt_handler(netdev, cq,
699 (void *)cq_desc, CQE_TYPE_SEND);
Sunil Goutham74840b82015-07-29 16:49:42 +0300700 tx_done++;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700701 break;
702 case CQE_TYPE_INVALID:
703 case CQE_TYPE_RX_SPLIT:
704 case CQE_TYPE_RX_TCP:
705 case CQE_TYPE_SEND_PTP:
706 /* Ignore for now */
707 break;
708 }
709 processed_cqe++;
710 }
Sunil Goutham74840b82015-07-29 16:49:42 +0300711 netdev_dbg(nic->netdev,
712 "%s CQ%d processed_cqe %d work_done %d budget %d\n",
713 __func__, cq_idx, processed_cqe, work_done, budget);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700714
715 /* Ring doorbell to inform H/W to reuse processed CQEs */
716 nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_DOOR,
717 cq_idx, processed_cqe);
718
719 if ((work_done < budget) && napi)
720 goto loop;
721
722done:
Sunil Goutham74840b82015-07-29 16:49:42 +0300723 /* Wakeup TXQ if its stopped earlier due to SQ full */
724 if (tx_done) {
Sunil Goutham92dc8762015-08-30 12:29:15 +0300725 netdev = nic->pnicvf->netdev;
726 txq = netdev_get_tx_queue(netdev,
727 nicvf_netdev_qidx(nic, cq_idx));
728 nic = nic->pnicvf;
729 if (netif_tx_queue_stopped(txq) && netif_carrier_ok(netdev)) {
Sunil Gouthamb49087d2015-07-29 16:49:44 +0300730 netif_tx_start_queue(txq);
Sunil Goutham74840b82015-07-29 16:49:42 +0300731 nic->drv_stats.txq_wake++;
732 if (netif_msg_tx_err(nic))
733 netdev_warn(netdev,
734 "%s: Transmit queue wakeup SQ%d\n",
735 netdev->name, cq_idx);
736 }
737 }
738
Sunil Goutham4863dea2015-05-26 19:20:15 -0700739 spin_unlock_bh(&cq->lock);
740 return work_done;
741}
742
743static int nicvf_poll(struct napi_struct *napi, int budget)
744{
745 u64 cq_head;
746 int work_done = 0;
747 struct net_device *netdev = napi->dev;
748 struct nicvf *nic = netdev_priv(netdev);
749 struct nicvf_cq_poll *cq;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700750
751 cq = container_of(napi, struct nicvf_cq_poll, napi);
752 work_done = nicvf_cq_intr_handler(netdev, cq->cq_idx, napi, budget);
753
Sunil Goutham4863dea2015-05-26 19:20:15 -0700754 if (work_done < budget) {
755 /* Slow packet rate, exit polling */
756 napi_complete(napi);
757 /* Re-enable interrupts */
758 cq_head = nicvf_queue_reg_read(nic, NIC_QSET_CQ_0_7_HEAD,
759 cq->cq_idx);
760 nicvf_clear_intr(nic, NICVF_INTR_CQ, cq->cq_idx);
761 nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_HEAD,
762 cq->cq_idx, cq_head);
763 nicvf_enable_intr(nic, NICVF_INTR_CQ, cq->cq_idx);
764 }
765 return work_done;
766}
767
768/* Qset error interrupt handler
769 *
770 * As of now only CQ errors are handled
771 */
Aleksey Makarovfd7ec062015-06-02 11:00:23 -0700772static void nicvf_handle_qs_err(unsigned long data)
Sunil Goutham4863dea2015-05-26 19:20:15 -0700773{
774 struct nicvf *nic = (struct nicvf *)data;
775 struct queue_set *qs = nic->qs;
776 int qidx;
777 u64 status;
778
779 netif_tx_disable(nic->netdev);
780
781 /* Check if it is CQ err */
782 for (qidx = 0; qidx < qs->cq_cnt; qidx++) {
783 status = nicvf_queue_reg_read(nic, NIC_QSET_CQ_0_7_STATUS,
784 qidx);
785 if (!(status & CQ_ERR_MASK))
786 continue;
787 /* Process already queued CQEs and reconfig CQ */
788 nicvf_disable_intr(nic, NICVF_INTR_CQ, qidx);
789 nicvf_sq_disable(nic, qidx);
790 nicvf_cq_intr_handler(nic->netdev, qidx, NULL, 0);
791 nicvf_cmp_queue_config(nic, qs, qidx, true);
792 nicvf_sq_free_used_descs(nic->netdev, &qs->sq[qidx], qidx);
793 nicvf_sq_enable(nic, &qs->sq[qidx], qidx);
794
795 nicvf_enable_intr(nic, NICVF_INTR_CQ, qidx);
796 }
797
798 netif_tx_start_all_queues(nic->netdev);
799 /* Re-enable Qset error interrupt */
800 nicvf_enable_intr(nic, NICVF_INTR_QS_ERR, 0);
801}
802
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300803static void nicvf_dump_intr_status(struct nicvf *nic)
804{
805 if (netif_msg_intr(nic))
806 netdev_info(nic->netdev, "%s: interrupt status 0x%llx\n",
807 nic->netdev->name, nicvf_reg_read(nic, NIC_VF_INT));
808}
809
Sunil Goutham4863dea2015-05-26 19:20:15 -0700810static irqreturn_t nicvf_misc_intr_handler(int irq, void *nicvf_irq)
811{
812 struct nicvf *nic = (struct nicvf *)nicvf_irq;
813 u64 intr;
814
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300815 nicvf_dump_intr_status(nic);
816
Sunil Goutham4863dea2015-05-26 19:20:15 -0700817 intr = nicvf_reg_read(nic, NIC_VF_INT);
818 /* Check for spurious interrupt */
819 if (!(intr & NICVF_INTR_MBOX_MASK))
820 return IRQ_HANDLED;
821
822 nicvf_handle_mbx_intr(nic);
823
824 return IRQ_HANDLED;
825}
826
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300827static irqreturn_t nicvf_intr_handler(int irq, void *cq_irq)
Sunil Goutham4863dea2015-05-26 19:20:15 -0700828{
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300829 struct nicvf_cq_poll *cq_poll = (struct nicvf_cq_poll *)cq_irq;
830 struct nicvf *nic = cq_poll->nicvf;
831 int qidx = cq_poll->cq_idx;
832
833 nicvf_dump_intr_status(nic);
834
835 /* Disable interrupts */
836 nicvf_disable_intr(nic, NICVF_INTR_CQ, qidx);
837
838 /* Schedule NAPI */
Sunil Gouthamef0a4d82016-02-11 21:50:22 +0530839 napi_schedule_irqoff(&cq_poll->napi);
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300840
841 /* Clear interrupt */
842 nicvf_clear_intr(nic, NICVF_INTR_CQ, qidx);
843
844 return IRQ_HANDLED;
845}
846
847static irqreturn_t nicvf_rbdr_intr_handler(int irq, void *nicvf_irq)
848{
Sunil Goutham4863dea2015-05-26 19:20:15 -0700849 struct nicvf *nic = (struct nicvf *)nicvf_irq;
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300850 u8 qidx;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700851
Sunil Goutham4863dea2015-05-26 19:20:15 -0700852
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300853 nicvf_dump_intr_status(nic);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700854
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300855 /* Disable RBDR interrupt and schedule softirq */
856 for (qidx = 0; qidx < nic->qs->rbdr_cnt; qidx++) {
857 if (!nicvf_is_intr_enabled(nic, NICVF_INTR_RBDR, qidx))
Sunil Goutham4863dea2015-05-26 19:20:15 -0700858 continue;
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300859 nicvf_disable_intr(nic, NICVF_INTR_RBDR, qidx);
860 tasklet_hi_schedule(&nic->rbdr_task);
861 /* Clear interrupt */
862 nicvf_clear_intr(nic, NICVF_INTR_RBDR, qidx);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700863 }
864
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300865 return IRQ_HANDLED;
866}
Sunil Goutham4863dea2015-05-26 19:20:15 -0700867
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300868static irqreturn_t nicvf_qs_err_intr_handler(int irq, void *nicvf_irq)
869{
870 struct nicvf *nic = (struct nicvf *)nicvf_irq;
871
872 nicvf_dump_intr_status(nic);
873
874 /* Disable Qset err interrupt and schedule softirq */
875 nicvf_disable_intr(nic, NICVF_INTR_QS_ERR, 0);
876 tasklet_hi_schedule(&nic->qs_err_task);
877 nicvf_clear_intr(nic, NICVF_INTR_QS_ERR, 0);
878
Sunil Goutham4863dea2015-05-26 19:20:15 -0700879 return IRQ_HANDLED;
880}
881
882static int nicvf_enable_msix(struct nicvf *nic)
883{
884 int ret, vec;
885
886 nic->num_vec = NIC_VF_MSIX_VECTORS;
887
888 for (vec = 0; vec < nic->num_vec; vec++)
889 nic->msix_entries[vec].entry = vec;
890
891 ret = pci_enable_msix(nic->pdev, nic->msix_entries, nic->num_vec);
892 if (ret) {
893 netdev_err(nic->netdev,
894 "Req for #%d msix vectors failed\n", nic->num_vec);
895 return 0;
896 }
897 nic->msix_enabled = 1;
898 return 1;
899}
900
901static void nicvf_disable_msix(struct nicvf *nic)
902{
903 if (nic->msix_enabled) {
904 pci_disable_msix(nic->pdev);
905 nic->msix_enabled = 0;
906 nic->num_vec = 0;
907 }
908}
909
Sunil Gouthamfb4b7d92016-02-11 21:50:23 +0530910static void nicvf_set_irq_affinity(struct nicvf *nic)
911{
912 int vec, cpu;
913 int irqnum;
914
915 for (vec = 0; vec < nic->num_vec; vec++) {
916 if (!nic->irq_allocated[vec])
917 continue;
918
919 if (!zalloc_cpumask_var(&nic->affinity_mask[vec], GFP_KERNEL))
920 return;
921 /* CQ interrupts */
922 if (vec < NICVF_INTR_ID_SQ)
923 /* Leave CPU0 for RBDR and other interrupts */
924 cpu = nicvf_netdev_qidx(nic, vec) + 1;
925 else
926 cpu = 0;
927
928 cpumask_set_cpu(cpumask_local_spread(cpu, nic->node),
929 nic->affinity_mask[vec]);
930 irqnum = nic->msix_entries[vec].vector;
931 irq_set_affinity_hint(irqnum, nic->affinity_mask[vec]);
932 }
933}
934
Sunil Goutham4863dea2015-05-26 19:20:15 -0700935static int nicvf_register_interrupts(struct nicvf *nic)
936{
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300937 int irq, ret = 0;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700938 int vector;
939
940 for_each_cq_irq(irq)
941 sprintf(nic->irq_name[irq], "NICVF%d CQ%d",
942 nic->vf_id, irq);
943
944 for_each_sq_irq(irq)
945 sprintf(nic->irq_name[irq], "NICVF%d SQ%d",
946 nic->vf_id, irq - NICVF_INTR_ID_SQ);
947
948 for_each_rbdr_irq(irq)
949 sprintf(nic->irq_name[irq], "NICVF%d RBDR%d",
950 nic->vf_id, irq - NICVF_INTR_ID_RBDR);
951
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300952 /* Register CQ interrupts */
953 for (irq = 0; irq < nic->qs->cq_cnt; irq++) {
Sunil Goutham4863dea2015-05-26 19:20:15 -0700954 vector = nic->msix_entries[irq].vector;
955 ret = request_irq(vector, nicvf_intr_handler,
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300956 0, nic->irq_name[irq], nic->napi[irq]);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700957 if (ret)
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300958 goto err;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700959 nic->irq_allocated[irq] = true;
960 }
961
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300962 /* Register RBDR interrupt */
963 for (irq = NICVF_INTR_ID_RBDR;
964 irq < (NICVF_INTR_ID_RBDR + nic->qs->rbdr_cnt); irq++) {
Sunil Goutham4863dea2015-05-26 19:20:15 -0700965 vector = nic->msix_entries[irq].vector;
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300966 ret = request_irq(vector, nicvf_rbdr_intr_handler,
Sunil Goutham4863dea2015-05-26 19:20:15 -0700967 0, nic->irq_name[irq], nic);
968 if (ret)
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300969 goto err;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700970 nic->irq_allocated[irq] = true;
971 }
972
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300973 /* Register QS error interrupt */
Sunil Goutham4863dea2015-05-26 19:20:15 -0700974 sprintf(nic->irq_name[NICVF_INTR_ID_QS_ERR],
975 "NICVF%d Qset error", nic->vf_id);
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300976 irq = NICVF_INTR_ID_QS_ERR;
977 ret = request_irq(nic->msix_entries[irq].vector,
978 nicvf_qs_err_intr_handler,
979 0, nic->irq_name[irq], nic);
Sunil Gouthamfb4b7d92016-02-11 21:50:23 +0530980 if (ret)
981 goto err;
982
983 nic->irq_allocated[irq] = true;
984
985 /* Set IRQ affinities */
986 nicvf_set_irq_affinity(nic);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700987
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300988err:
989 if (ret)
990 netdev_err(nic->netdev, "request_irq failed, vector %d\n", irq);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700991
Sunil Goutham39ad6ee2015-08-30 12:29:14 +0300992 return ret;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700993}
994
995static void nicvf_unregister_interrupts(struct nicvf *nic)
996{
997 int irq;
998
999 /* Free registered interrupts */
1000 for (irq = 0; irq < nic->num_vec; irq++) {
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001001 if (!nic->irq_allocated[irq])
1002 continue;
1003
Sunil Gouthamfb4b7d92016-02-11 21:50:23 +05301004 irq_set_affinity_hint(nic->msix_entries[irq].vector, NULL);
1005 free_cpumask_var(nic->affinity_mask[irq]);
1006
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001007 if (irq < NICVF_INTR_ID_SQ)
1008 free_irq(nic->msix_entries[irq].vector, nic->napi[irq]);
1009 else
Sunil Goutham4863dea2015-05-26 19:20:15 -07001010 free_irq(nic->msix_entries[irq].vector, nic);
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001011
Sunil Goutham4863dea2015-05-26 19:20:15 -07001012 nic->irq_allocated[irq] = false;
1013 }
1014
1015 /* Disable MSI-X */
1016 nicvf_disable_msix(nic);
1017}
1018
1019/* Initialize MSIX vectors and register MISC interrupt.
1020 * Send READY message to PF to check if its alive
1021 */
1022static int nicvf_register_misc_interrupt(struct nicvf *nic)
1023{
1024 int ret = 0;
1025 int irq = NICVF_INTR_ID_MISC;
1026
1027 /* Return if mailbox interrupt is already registered */
1028 if (nic->msix_enabled)
1029 return 0;
1030
1031 /* Enable MSI-X */
1032 if (!nicvf_enable_msix(nic))
1033 return 1;
1034
1035 sprintf(nic->irq_name[irq], "%s Mbox", "NICVF");
1036 /* Register Misc interrupt */
1037 ret = request_irq(nic->msix_entries[irq].vector,
1038 nicvf_misc_intr_handler, 0, nic->irq_name[irq], nic);
1039
1040 if (ret)
1041 return ret;
1042 nic->irq_allocated[irq] = true;
1043
1044 /* Enable mailbox interrupt */
1045 nicvf_enable_intr(nic, NICVF_INTR_MBOX, 0);
1046
1047 /* Check if VF is able to communicate with PF */
1048 if (!nicvf_check_pf_ready(nic)) {
1049 nicvf_disable_intr(nic, NICVF_INTR_MBOX, 0);
1050 nicvf_unregister_interrupts(nic);
1051 return 1;
1052 }
1053
1054 return 0;
1055}
1056
1057static netdev_tx_t nicvf_xmit(struct sk_buff *skb, struct net_device *netdev)
1058{
1059 struct nicvf *nic = netdev_priv(netdev);
1060 int qid = skb_get_queue_mapping(skb);
1061 struct netdev_queue *txq = netdev_get_tx_queue(netdev, qid);
1062
1063 /* Check for minimum packet length */
1064 if (skb->len <= ETH_HLEN) {
1065 dev_kfree_skb(skb);
1066 return NETDEV_TX_OK;
1067 }
1068
Sunil Gouthamb49087d2015-07-29 16:49:44 +03001069 if (!netif_tx_queue_stopped(txq) && !nicvf_sq_append_skb(nic, skb)) {
Sunil Goutham4863dea2015-05-26 19:20:15 -07001070 netif_tx_stop_queue(txq);
Sunil Goutham74840b82015-07-29 16:49:42 +03001071 nic->drv_stats.txq_stop++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001072 if (netif_msg_tx_err(nic))
1073 netdev_warn(netdev,
1074 "%s: Transmit ring full, stopping SQ%d\n",
1075 netdev->name, qid);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001076 return NETDEV_TX_BUSY;
1077 }
1078
1079 return NETDEV_TX_OK;
1080}
1081
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001082static inline void nicvf_free_cq_poll(struct nicvf *nic)
1083{
1084 struct nicvf_cq_poll *cq_poll;
1085 int qidx;
1086
1087 for (qidx = 0; qidx < nic->qs->cq_cnt; qidx++) {
1088 cq_poll = nic->napi[qidx];
1089 if (!cq_poll)
1090 continue;
1091 nic->napi[qidx] = NULL;
1092 kfree(cq_poll);
1093 }
1094}
1095
Sunil Goutham4863dea2015-05-26 19:20:15 -07001096int nicvf_stop(struct net_device *netdev)
1097{
1098 int irq, qidx;
1099 struct nicvf *nic = netdev_priv(netdev);
1100 struct queue_set *qs = nic->qs;
1101 struct nicvf_cq_poll *cq_poll = NULL;
1102 union nic_mbx mbx = {};
1103
1104 mbx.msg.msg = NIC_MBOX_MSG_SHUTDOWN;
1105 nicvf_send_msg_to_pf(nic, &mbx);
1106
1107 netif_carrier_off(netdev);
Sunil Goutham92dc8762015-08-30 12:29:15 +03001108 netif_tx_stop_all_queues(nic->netdev);
Sunil Goutham0b72a9a2015-12-02 15:36:16 +05301109 nic->link_up = false;
Sunil Goutham92dc8762015-08-30 12:29:15 +03001110
1111 /* Teardown secondary qsets first */
1112 if (!nic->sqs_mode) {
1113 for (qidx = 0; qidx < nic->sqs_count; qidx++) {
1114 if (!nic->snicvf[qidx])
1115 continue;
1116 nicvf_stop(nic->snicvf[qidx]->netdev);
1117 nic->snicvf[qidx] = NULL;
1118 }
1119 }
Sunil Goutham4863dea2015-05-26 19:20:15 -07001120
1121 /* Disable RBDR & QS error interrupts */
1122 for (qidx = 0; qidx < qs->rbdr_cnt; qidx++) {
1123 nicvf_disable_intr(nic, NICVF_INTR_RBDR, qidx);
1124 nicvf_clear_intr(nic, NICVF_INTR_RBDR, qidx);
1125 }
1126 nicvf_disable_intr(nic, NICVF_INTR_QS_ERR, 0);
1127 nicvf_clear_intr(nic, NICVF_INTR_QS_ERR, 0);
1128
1129 /* Wait for pending IRQ handlers to finish */
1130 for (irq = 0; irq < nic->num_vec; irq++)
1131 synchronize_irq(nic->msix_entries[irq].vector);
1132
1133 tasklet_kill(&nic->rbdr_task);
1134 tasklet_kill(&nic->qs_err_task);
1135 if (nic->rb_work_scheduled)
1136 cancel_delayed_work_sync(&nic->rbdr_work);
1137
1138 for (qidx = 0; qidx < nic->qs->cq_cnt; qidx++) {
1139 cq_poll = nic->napi[qidx];
1140 if (!cq_poll)
1141 continue;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001142 napi_synchronize(&cq_poll->napi);
1143 /* CQ intr is enabled while napi_complete,
1144 * so disable it now
1145 */
1146 nicvf_disable_intr(nic, NICVF_INTR_CQ, qidx);
1147 nicvf_clear_intr(nic, NICVF_INTR_CQ, qidx);
1148 napi_disable(&cq_poll->napi);
1149 netif_napi_del(&cq_poll->napi);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001150 }
1151
Sunil Gouthamb49087d2015-07-29 16:49:44 +03001152 netif_tx_disable(netdev);
1153
Sunil Goutham4863dea2015-05-26 19:20:15 -07001154 /* Free resources */
1155 nicvf_config_data_transfer(nic, false);
1156
1157 /* Disable HW Qset */
1158 nicvf_qset_config(nic, false);
1159
1160 /* disable mailbox interrupt */
1161 nicvf_disable_intr(nic, NICVF_INTR_MBOX, 0);
1162
1163 nicvf_unregister_interrupts(nic);
1164
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001165 nicvf_free_cq_poll(nic);
1166
Sunil Goutham92dc8762015-08-30 12:29:15 +03001167 /* Clear multiqset info */
1168 nic->pnicvf = nic;
Sunil Goutham92dc8762015-08-30 12:29:15 +03001169
Sunil Goutham4863dea2015-05-26 19:20:15 -07001170 return 0;
1171}
1172
1173int nicvf_open(struct net_device *netdev)
1174{
1175 int err, qidx;
1176 struct nicvf *nic = netdev_priv(netdev);
1177 struct queue_set *qs = nic->qs;
1178 struct nicvf_cq_poll *cq_poll = NULL;
1179
1180 nic->mtu = netdev->mtu;
1181
1182 netif_carrier_off(netdev);
1183
1184 err = nicvf_register_misc_interrupt(nic);
1185 if (err)
1186 return err;
1187
1188 /* Register NAPI handler for processing CQEs */
1189 for (qidx = 0; qidx < qs->cq_cnt; qidx++) {
1190 cq_poll = kzalloc(sizeof(*cq_poll), GFP_KERNEL);
1191 if (!cq_poll) {
1192 err = -ENOMEM;
1193 goto napi_del;
1194 }
1195 cq_poll->cq_idx = qidx;
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001196 cq_poll->nicvf = nic;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001197 netif_napi_add(netdev, &cq_poll->napi, nicvf_poll,
1198 NAPI_POLL_WEIGHT);
1199 napi_enable(&cq_poll->napi);
1200 nic->napi[qidx] = cq_poll;
1201 }
1202
1203 /* Check if we got MAC address from PF or else generate a radom MAC */
1204 if (is_zero_ether_addr(netdev->dev_addr)) {
1205 eth_hw_addr_random(netdev);
1206 nicvf_hw_set_mac_addr(nic, netdev);
1207 }
1208
Pavel Fedinbd049a92015-06-23 17:51:06 +03001209 if (nic->set_mac_pending) {
1210 nic->set_mac_pending = false;
1211 nicvf_hw_set_mac_addr(nic, netdev);
1212 }
1213
Sunil Goutham4863dea2015-05-26 19:20:15 -07001214 /* Init tasklet for handling Qset err interrupt */
1215 tasklet_init(&nic->qs_err_task, nicvf_handle_qs_err,
1216 (unsigned long)nic);
1217
1218 /* Init RBDR tasklet which will refill RBDR */
1219 tasklet_init(&nic->rbdr_task, nicvf_rbdr_task,
1220 (unsigned long)nic);
1221 INIT_DELAYED_WORK(&nic->rbdr_work, nicvf_rbdr_work);
1222
1223 /* Configure CPI alorithm */
1224 nic->cpi_alg = cpi_alg;
Sunil Goutham92dc8762015-08-30 12:29:15 +03001225 if (!nic->sqs_mode)
1226 nicvf_config_cpi(nic);
1227
1228 nicvf_request_sqs(nic);
1229 if (nic->sqs_mode)
1230 nicvf_get_primary_vf_struct(nic);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001231
1232 /* Configure receive side scaling */
Sunil Goutham92dc8762015-08-30 12:29:15 +03001233 if (!nic->sqs_mode)
1234 nicvf_rss_init(nic);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001235
1236 err = nicvf_register_interrupts(nic);
1237 if (err)
1238 goto cleanup;
1239
1240 /* Initialize the queues */
1241 err = nicvf_init_resources(nic);
1242 if (err)
1243 goto cleanup;
1244
1245 /* Make sure queue initialization is written */
1246 wmb();
1247
1248 nicvf_reg_write(nic, NIC_VF_INT, -1);
1249 /* Enable Qset err interrupt */
1250 nicvf_enable_intr(nic, NICVF_INTR_QS_ERR, 0);
1251
1252 /* Enable completion queue interrupt */
1253 for (qidx = 0; qidx < qs->cq_cnt; qidx++)
1254 nicvf_enable_intr(nic, NICVF_INTR_CQ, qidx);
1255
1256 /* Enable RBDR threshold interrupt */
1257 for (qidx = 0; qidx < qs->rbdr_cnt; qidx++)
1258 nicvf_enable_intr(nic, NICVF_INTR_RBDR, qidx);
1259
Sunil Goutham74840b82015-07-29 16:49:42 +03001260 nic->drv_stats.txq_stop = 0;
1261 nic->drv_stats.txq_wake = 0;
1262
Sunil Goutham4863dea2015-05-26 19:20:15 -07001263 return 0;
1264cleanup:
1265 nicvf_disable_intr(nic, NICVF_INTR_MBOX, 0);
1266 nicvf_unregister_interrupts(nic);
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001267 tasklet_kill(&nic->qs_err_task);
1268 tasklet_kill(&nic->rbdr_task);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001269napi_del:
1270 for (qidx = 0; qidx < qs->cq_cnt; qidx++) {
1271 cq_poll = nic->napi[qidx];
1272 if (!cq_poll)
1273 continue;
1274 napi_disable(&cq_poll->napi);
1275 netif_napi_del(&cq_poll->napi);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001276 }
Sunil Goutham39ad6ee2015-08-30 12:29:14 +03001277 nicvf_free_cq_poll(nic);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001278 return err;
1279}
1280
1281static int nicvf_update_hw_max_frs(struct nicvf *nic, int mtu)
1282{
1283 union nic_mbx mbx = {};
1284
1285 mbx.frs.msg = NIC_MBOX_MSG_SET_MAX_FRS;
1286 mbx.frs.max_frs = mtu;
1287 mbx.frs.vf_id = nic->vf_id;
1288
1289 return nicvf_send_msg_to_pf(nic, &mbx);
1290}
1291
1292static 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
1302 if (nicvf_update_hw_max_frs(nic, new_mtu))
1303 return -EINVAL;
1304 netdev->mtu = new_mtu;
1305 nic->mtu = new_mtu;
1306
1307 return 0;
1308}
1309
1310static int nicvf_set_mac_address(struct net_device *netdev, void *p)
1311{
1312 struct sockaddr *addr = p;
1313 struct nicvf *nic = netdev_priv(netdev);
1314
1315 if (!is_valid_ether_addr(addr->sa_data))
1316 return -EADDRNOTAVAIL;
1317
1318 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
1319
Pavel Fedinbd049a92015-06-23 17:51:06 +03001320 if (nic->msix_enabled) {
Sunil Goutham4863dea2015-05-26 19:20:15 -07001321 if (nicvf_hw_set_mac_addr(nic, netdev))
1322 return -EBUSY;
Pavel Fedinbd049a92015-06-23 17:51:06 +03001323 } else {
1324 nic->set_mac_pending = true;
1325 }
Sunil Goutham4863dea2015-05-26 19:20:15 -07001326
1327 return 0;
1328}
1329
Sunil Goutham4863dea2015-05-26 19:20:15 -07001330void nicvf_update_lmac_stats(struct nicvf *nic)
1331{
1332 int stat = 0;
1333 union nic_mbx mbx = {};
Sunil Goutham4863dea2015-05-26 19:20:15 -07001334
1335 if (!netif_running(nic->netdev))
1336 return;
1337
1338 mbx.bgx_stats.msg = NIC_MBOX_MSG_BGX_STATS;
1339 mbx.bgx_stats.vf_id = nic->vf_id;
1340 /* Rx stats */
1341 mbx.bgx_stats.rx = 1;
1342 while (stat < BGX_RX_STATS_COUNT) {
Sunil Goutham4863dea2015-05-26 19:20:15 -07001343 mbx.bgx_stats.idx = stat;
Sunil Goutham6051cba2015-08-30 12:29:11 +03001344 if (nicvf_send_msg_to_pf(nic, &mbx))
1345 return;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001346 stat++;
1347 }
1348
1349 stat = 0;
1350
1351 /* Tx stats */
1352 mbx.bgx_stats.rx = 0;
1353 while (stat < BGX_TX_STATS_COUNT) {
Sunil Goutham4863dea2015-05-26 19:20:15 -07001354 mbx.bgx_stats.idx = stat;
Sunil Goutham6051cba2015-08-30 12:29:11 +03001355 if (nicvf_send_msg_to_pf(nic, &mbx))
1356 return;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001357 stat++;
1358 }
1359}
1360
1361void nicvf_update_stats(struct nicvf *nic)
1362{
1363 int qidx;
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001364 struct nicvf_hw_stats *stats = &nic->hw_stats;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001365 struct nicvf_drv_stats *drv_stats = &nic->drv_stats;
1366 struct queue_set *qs = nic->qs;
1367
1368#define GET_RX_STATS(reg) \
1369 nicvf_reg_read(nic, NIC_VNIC_RX_STAT_0_13 | (reg << 3))
1370#define GET_TX_STATS(reg) \
1371 nicvf_reg_read(nic, NIC_VNIC_TX_STAT_0_4 | (reg << 3))
1372
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001373 stats->rx_bytes = GET_RX_STATS(RX_OCTS);
1374 stats->rx_ucast_frames = GET_RX_STATS(RX_UCAST);
1375 stats->rx_bcast_frames = GET_RX_STATS(RX_BCAST);
1376 stats->rx_mcast_frames = GET_RX_STATS(RX_MCAST);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001377 stats->rx_fcs_errors = GET_RX_STATS(RX_FCS);
1378 stats->rx_l2_errors = GET_RX_STATS(RX_L2ERR);
1379 stats->rx_drop_red = GET_RX_STATS(RX_RED);
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001380 stats->rx_drop_red_bytes = GET_RX_STATS(RX_RED_OCTS);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001381 stats->rx_drop_overrun = GET_RX_STATS(RX_ORUN);
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001382 stats->rx_drop_overrun_bytes = GET_RX_STATS(RX_ORUN_OCTS);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001383 stats->rx_drop_bcast = GET_RX_STATS(RX_DRP_BCAST);
1384 stats->rx_drop_mcast = GET_RX_STATS(RX_DRP_MCAST);
1385 stats->rx_drop_l3_bcast = GET_RX_STATS(RX_DRP_L3BCAST);
1386 stats->rx_drop_l3_mcast = GET_RX_STATS(RX_DRP_L3MCAST);
1387
1388 stats->tx_bytes_ok = GET_TX_STATS(TX_OCTS);
1389 stats->tx_ucast_frames_ok = GET_TX_STATS(TX_UCAST);
1390 stats->tx_bcast_frames_ok = GET_TX_STATS(TX_BCAST);
1391 stats->tx_mcast_frames_ok = GET_TX_STATS(TX_MCAST);
1392 stats->tx_drops = GET_TX_STATS(TX_DROP);
1393
Sunil Goutham4863dea2015-05-26 19:20:15 -07001394 drv_stats->tx_frames_ok = stats->tx_ucast_frames_ok +
1395 stats->tx_bcast_frames_ok +
1396 stats->tx_mcast_frames_ok;
Sunil Gouthamad2eceb2016-02-16 16:29:51 +05301397 drv_stats->rx_frames_ok = stats->rx_ucast_frames +
1398 stats->rx_bcast_frames +
1399 stats->rx_mcast_frames;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001400 drv_stats->rx_drops = stats->rx_drop_red +
1401 stats->rx_drop_overrun;
1402 drv_stats->tx_drops = stats->tx_drops;
1403
1404 /* Update RQ and SQ stats */
1405 for (qidx = 0; qidx < qs->rq_cnt; qidx++)
1406 nicvf_update_rq_stats(nic, qidx);
1407 for (qidx = 0; qidx < qs->sq_cnt; qidx++)
1408 nicvf_update_sq_stats(nic, qidx);
1409}
1410
Aleksey Makarovfd7ec062015-06-02 11:00:23 -07001411static struct rtnl_link_stats64 *nicvf_get_stats64(struct net_device *netdev,
Sunil Goutham4863dea2015-05-26 19:20:15 -07001412 struct rtnl_link_stats64 *stats)
1413{
1414 struct nicvf *nic = netdev_priv(netdev);
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001415 struct nicvf_hw_stats *hw_stats = &nic->hw_stats;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001416 struct nicvf_drv_stats *drv_stats = &nic->drv_stats;
1417
1418 nicvf_update_stats(nic);
1419
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001420 stats->rx_bytes = hw_stats->rx_bytes;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001421 stats->rx_packets = drv_stats->rx_frames_ok;
1422 stats->rx_dropped = drv_stats->rx_drops;
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001423 stats->multicast = hw_stats->rx_mcast_frames;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001424
1425 stats->tx_bytes = hw_stats->tx_bytes_ok;
1426 stats->tx_packets = drv_stats->tx_frames_ok;
1427 stats->tx_dropped = drv_stats->tx_drops;
1428
1429 return stats;
1430}
1431
1432static void nicvf_tx_timeout(struct net_device *dev)
1433{
1434 struct nicvf *nic = netdev_priv(dev);
1435
1436 if (netif_msg_tx_err(nic))
1437 netdev_warn(dev, "%s: Transmit timed out, resetting\n",
1438 dev->name);
1439
Thanneeru Srinivasulua05d4842016-02-11 21:50:21 +05301440 nic->drv_stats.tx_timeout++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001441 schedule_work(&nic->reset_task);
1442}
1443
1444static void nicvf_reset_task(struct work_struct *work)
1445{
1446 struct nicvf *nic;
1447
1448 nic = container_of(work, struct nicvf, reset_task);
1449
1450 if (!netif_running(nic->netdev))
1451 return;
1452
1453 nicvf_stop(nic->netdev);
1454 nicvf_open(nic->netdev);
Florian Westphal860e9532016-05-03 16:33:13 +02001455 netif_trans_update(nic->netdev);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001456}
1457
Sunil Gouthamd77a2382015-08-30 12:29:16 +03001458static int nicvf_config_loopback(struct nicvf *nic,
1459 netdev_features_t features)
1460{
1461 union nic_mbx mbx = {};
1462
1463 mbx.lbk.msg = NIC_MBOX_MSG_LOOPBACK;
1464 mbx.lbk.vf_id = nic->vf_id;
1465 mbx.lbk.enable = (features & NETIF_F_LOOPBACK) != 0;
1466
1467 return nicvf_send_msg_to_pf(nic, &mbx);
1468}
1469
1470static netdev_features_t nicvf_fix_features(struct net_device *netdev,
1471 netdev_features_t features)
1472{
1473 struct nicvf *nic = netdev_priv(netdev);
1474
1475 if ((features & NETIF_F_LOOPBACK) &&
1476 netif_running(netdev) && !nic->loopback_supported)
1477 features &= ~NETIF_F_LOOPBACK;
1478
1479 return features;
1480}
1481
Sunil Gouthamaa2e2592015-08-30 12:29:13 +03001482static int nicvf_set_features(struct net_device *netdev,
1483 netdev_features_t features)
1484{
1485 struct nicvf *nic = netdev_priv(netdev);
1486 netdev_features_t changed = features ^ netdev->features;
1487
1488 if (changed & NETIF_F_HW_VLAN_CTAG_RX)
1489 nicvf_config_vlan_stripping(nic, features);
1490
Sunil Gouthamd77a2382015-08-30 12:29:16 +03001491 if ((changed & NETIF_F_LOOPBACK) && netif_running(netdev))
1492 return nicvf_config_loopback(nic, features);
1493
Sunil Gouthamaa2e2592015-08-30 12:29:13 +03001494 return 0;
1495}
1496
Sunil Goutham4863dea2015-05-26 19:20:15 -07001497static const struct net_device_ops nicvf_netdev_ops = {
1498 .ndo_open = nicvf_open,
1499 .ndo_stop = nicvf_stop,
1500 .ndo_start_xmit = nicvf_xmit,
1501 .ndo_change_mtu = nicvf_change_mtu,
1502 .ndo_set_mac_address = nicvf_set_mac_address,
1503 .ndo_get_stats64 = nicvf_get_stats64,
1504 .ndo_tx_timeout = nicvf_tx_timeout,
Sunil Gouthamd77a2382015-08-30 12:29:16 +03001505 .ndo_fix_features = nicvf_fix_features,
Sunil Gouthamaa2e2592015-08-30 12:29:13 +03001506 .ndo_set_features = nicvf_set_features,
Sunil Goutham4863dea2015-05-26 19:20:15 -07001507};
1508
1509static int nicvf_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
1510{
1511 struct device *dev = &pdev->dev;
1512 struct net_device *netdev;
1513 struct nicvf *nic;
Sunil Goutham92dc8762015-08-30 12:29:15 +03001514 int err, qcount;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001515
1516 err = pci_enable_device(pdev);
1517 if (err) {
1518 dev_err(dev, "Failed to enable PCI device\n");
1519 return err;
1520 }
1521
1522 err = pci_request_regions(pdev, DRV_NAME);
1523 if (err) {
1524 dev_err(dev, "PCI request regions failed 0x%x\n", err);
1525 goto err_disable_device;
1526 }
1527
1528 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(48));
1529 if (err) {
1530 dev_err(dev, "Unable to get usable DMA configuration\n");
1531 goto err_release_regions;
1532 }
1533
1534 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(48));
1535 if (err) {
1536 dev_err(dev, "unable to get 48-bit DMA for consistent allocations\n");
1537 goto err_release_regions;
1538 }
1539
Sunil Goutham92dc8762015-08-30 12:29:15 +03001540 qcount = MAX_CMP_QUEUES_PER_QS;
1541
1542 /* Restrict multiqset support only for host bound VFs */
1543 if (pdev->is_virtfn) {
1544 /* Set max number of queues per VF */
1545 qcount = roundup(num_online_cpus(), MAX_CMP_QUEUES_PER_QS);
1546 qcount = min(qcount,
1547 (MAX_SQS_PER_VF + 1) * MAX_CMP_QUEUES_PER_QS);
1548 }
1549
1550 netdev = alloc_etherdev_mqs(sizeof(struct nicvf), qcount, qcount);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001551 if (!netdev) {
1552 err = -ENOMEM;
1553 goto err_release_regions;
1554 }
1555
1556 pci_set_drvdata(pdev, netdev);
1557
1558 SET_NETDEV_DEV(netdev, &pdev->dev);
1559
1560 nic = netdev_priv(netdev);
1561 nic->netdev = netdev;
1562 nic->pdev = pdev;
Sunil Goutham92dc8762015-08-30 12:29:15 +03001563 nic->pnicvf = nic;
1564 nic->max_queues = qcount;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001565
1566 /* MAP VF's configuration registers */
1567 nic->reg_base = pcim_iomap(pdev, PCI_CFG_REG_BAR_NUM, 0);
1568 if (!nic->reg_base) {
1569 dev_err(dev, "Cannot map config register space, aborting\n");
1570 err = -ENOMEM;
1571 goto err_free_netdev;
1572 }
1573
1574 err = nicvf_set_qset_resources(nic);
1575 if (err)
1576 goto err_free_netdev;
1577
Sunil Goutham4863dea2015-05-26 19:20:15 -07001578 /* Check if PF is alive and get MAC address for this VF */
1579 err = nicvf_register_misc_interrupt(nic);
1580 if (err)
1581 goto err_free_netdev;
1582
Sunil Goutham92dc8762015-08-30 12:29:15 +03001583 nicvf_send_vf_struct(nic);
1584
Sunil Goutham8d210d52016-02-16 16:29:50 +05301585 if (!pass1_silicon(nic->pdev))
1586 nic->hw_tso = true;
1587
Sunil Goutham92dc8762015-08-30 12:29:15 +03001588 /* Check if this VF is in QS only mode */
1589 if (nic->sqs_mode)
1590 return 0;
1591
1592 err = nicvf_set_real_num_queues(netdev, nic->tx_queues, nic->rx_queues);
1593 if (err)
1594 goto err_unregister_interrupts;
1595
Sunil Gouthamaa2e2592015-08-30 12:29:13 +03001596 netdev->hw_features = (NETIF_F_RXCSUM | NETIF_F_IP_CSUM | NETIF_F_SG |
1597 NETIF_F_TSO | NETIF_F_GRO |
Sunil Goutham92dc8762015-08-30 12:29:15 +03001598 NETIF_F_HW_VLAN_CTAG_RX);
1599
1600 netdev->hw_features |= NETIF_F_RXHASH;
Sunil Goutham38bb5d42015-08-30 12:29:12 +03001601
Sunil Gouthamaa2e2592015-08-30 12:29:13 +03001602 netdev->features |= netdev->hw_features;
Sunil Gouthamd77a2382015-08-30 12:29:16 +03001603 netdev->hw_features |= NETIF_F_LOOPBACK;
Sunil Gouthamaa2e2592015-08-30 12:29:13 +03001604
1605 netdev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001606
1607 netdev->netdev_ops = &nicvf_netdev_ops;
Sunil Goutham3d7a8aa2015-07-29 16:49:43 +03001608 netdev->watchdog_timeo = NICVF_TX_TIMEOUT;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001609
1610 INIT_WORK(&nic->reset_task, nicvf_reset_task);
1611
1612 err = register_netdev(netdev);
1613 if (err) {
1614 dev_err(dev, "Failed to register netdevice\n");
1615 goto err_unregister_interrupts;
1616 }
1617
1618 nic->msg_enable = debug;
1619
1620 nicvf_set_ethtool_ops(netdev);
1621
1622 return 0;
1623
1624err_unregister_interrupts:
1625 nicvf_unregister_interrupts(nic);
1626err_free_netdev:
1627 pci_set_drvdata(pdev, NULL);
1628 free_netdev(netdev);
1629err_release_regions:
1630 pci_release_regions(pdev);
1631err_disable_device:
1632 pci_disable_device(pdev);
1633 return err;
1634}
1635
1636static void nicvf_remove(struct pci_dev *pdev)
1637{
1638 struct net_device *netdev = pci_get_drvdata(pdev);
Pavel Fedin77501302015-11-16 17:51:34 +03001639 struct nicvf *nic;
1640 struct net_device *pnetdev;
1641
1642 if (!netdev)
1643 return;
1644
1645 nic = netdev_priv(netdev);
1646 pnetdev = nic->pnicvf->netdev;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001647
Sunil Goutham92dc8762015-08-30 12:29:15 +03001648 /* Check if this Qset is assigned to different VF.
1649 * If yes, clean primary and all secondary Qsets.
1650 */
1651 if (pnetdev && (pnetdev->reg_state == NETREG_REGISTERED))
1652 unregister_netdev(pnetdev);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001653 nicvf_unregister_interrupts(nic);
1654 pci_set_drvdata(pdev, NULL);
1655 free_netdev(netdev);
1656 pci_release_regions(pdev);
1657 pci_disable_device(pdev);
1658}
1659
Sunil Goutham4adf4352015-07-29 16:49:45 +03001660static void nicvf_shutdown(struct pci_dev *pdev)
1661{
1662 nicvf_remove(pdev);
1663}
1664
Sunil Goutham4863dea2015-05-26 19:20:15 -07001665static struct pci_driver nicvf_driver = {
1666 .name = DRV_NAME,
1667 .id_table = nicvf_id_table,
1668 .probe = nicvf_probe,
1669 .remove = nicvf_remove,
Sunil Goutham4adf4352015-07-29 16:49:45 +03001670 .shutdown = nicvf_shutdown,
Sunil Goutham4863dea2015-05-26 19:20:15 -07001671};
1672
1673static int __init nicvf_init_module(void)
1674{
1675 pr_info("%s, ver %s\n", DRV_NAME, DRV_VERSION);
1676
1677 return pci_register_driver(&nicvf_driver);
1678}
1679
1680static void __exit nicvf_cleanup_module(void)
1681{
1682 pci_unregister_driver(&nicvf_driver);
1683}
1684
1685module_init(nicvf_init_module);
1686module_exit(nicvf_cleanup_module);