]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - drivers/net/ethernet/cavium/thunder/nicvf_main.c
02da802d3288ee1ccfdc8c2d7db74810c6b6ef71
[mirror_ubuntu-artful-kernel.git] / drivers / net / ethernet / cavium / thunder / nicvf_main.c
1 /*
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>
13 #include <linux/etherdevice.h>
14 #include <linux/ethtool.h>
15 #include <linux/log2.h>
16 #include <linux/prefetch.h>
17 #include <linux/irq.h>
18
19 #include "nic_reg.h"
20 #include "nic.h"
21 #include "nicvf_queues.h"
22 #include "thunder_bgx.h"
23
24 #define DRV_NAME "thunder-nicvf"
25 #define DRV_VERSION "1.0"
26
27 /* Supported devices */
28 static const struct pci_device_id nicvf_id_table[] = {
29 { PCI_DEVICE_SUB(PCI_VENDOR_ID_CAVIUM,
30 PCI_DEVICE_ID_THUNDER_NIC_VF,
31 PCI_VENDOR_ID_CAVIUM, 0xA11E) },
32 { PCI_DEVICE_SUB(PCI_VENDOR_ID_CAVIUM,
33 PCI_DEVICE_ID_THUNDER_PASS1_NIC_VF,
34 PCI_VENDOR_ID_CAVIUM, 0xA11E) },
35 { 0, } /* end of table */
36 };
37
38 MODULE_AUTHOR("Sunil Goutham");
39 MODULE_DESCRIPTION("Cavium Thunder NIC Virtual Function Driver");
40 MODULE_LICENSE("GPL v2");
41 MODULE_VERSION(DRV_VERSION);
42 MODULE_DEVICE_TABLE(pci, nicvf_id_table);
43
44 static int debug = 0x00;
45 module_param(debug, int, 0644);
46 MODULE_PARM_DESC(debug, "Debug message level bitmap");
47
48 static int cpi_alg = CPI_ALG_NONE;
49 module_param(cpi_alg, int, S_IRUGO);
50 MODULE_PARM_DESC(cpi_alg,
51 "PFC algorithm (0=none, 1=VLAN, 2=VLAN16, 3=IP Diffserv)");
52
53 static inline void nicvf_set_rx_frame_cnt(struct nicvf *nic,
54 struct sk_buff *skb)
55 {
56 if (skb->len <= 64)
57 nic->drv_stats.rx_frames_64++;
58 else if (skb->len <= 127)
59 nic->drv_stats.rx_frames_127++;
60 else if (skb->len <= 255)
61 nic->drv_stats.rx_frames_255++;
62 else if (skb->len <= 511)
63 nic->drv_stats.rx_frames_511++;
64 else if (skb->len <= 1023)
65 nic->drv_stats.rx_frames_1023++;
66 else if (skb->len <= 1518)
67 nic->drv_stats.rx_frames_1518++;
68 else
69 nic->drv_stats.rx_frames_jumbo++;
70 }
71
72 /* The Cavium ThunderX network controller can *only* be found in SoCs
73 * containing the ThunderX ARM64 CPU implementation. All accesses to the device
74 * registers on this platform are implicitly strongly ordered with respect
75 * to memory accesses. So writeq_relaxed() and readq_relaxed() are safe to use
76 * with no memory barriers in this driver. The readq()/writeq() functions add
77 * explicit ordering operation which in this case are redundant, and only
78 * add overhead.
79 */
80
81 /* Register read/write APIs */
82 void nicvf_reg_write(struct nicvf *nic, u64 offset, u64 val)
83 {
84 writeq_relaxed(val, nic->reg_base + offset);
85 }
86
87 u64 nicvf_reg_read(struct nicvf *nic, u64 offset)
88 {
89 return readq_relaxed(nic->reg_base + offset);
90 }
91
92 void nicvf_queue_reg_write(struct nicvf *nic, u64 offset,
93 u64 qidx, u64 val)
94 {
95 void __iomem *addr = nic->reg_base + offset;
96
97 writeq_relaxed(val, addr + (qidx << NIC_Q_NUM_SHIFT));
98 }
99
100 u64 nicvf_queue_reg_read(struct nicvf *nic, u64 offset, u64 qidx)
101 {
102 void __iomem *addr = nic->reg_base + offset;
103
104 return readq_relaxed(addr + (qidx << NIC_Q_NUM_SHIFT));
105 }
106
107 /* VF -> PF mailbox communication */
108
109 static void nicvf_write_to_mbx(struct nicvf *nic, union nic_mbx *mbx)
110 {
111 u64 *msg = (u64 *)mbx;
112
113 nicvf_reg_write(nic, NIC_VF_PF_MAILBOX_0_1 + 0, msg[0]);
114 nicvf_reg_write(nic, NIC_VF_PF_MAILBOX_0_1 + 8, msg[1]);
115 }
116
117 int nicvf_send_msg_to_pf(struct nicvf *nic, union nic_mbx *mbx)
118 {
119 int timeout = NIC_MBOX_MSG_TIMEOUT;
120 int sleep = 10;
121
122 nic->pf_acked = false;
123 nic->pf_nacked = false;
124
125 nicvf_write_to_mbx(nic, mbx);
126
127 /* Wait for previous message to be acked, timeout 2sec */
128 while (!nic->pf_acked) {
129 if (nic->pf_nacked)
130 return -EINVAL;
131 msleep(sleep);
132 if (nic->pf_acked)
133 break;
134 timeout -= sleep;
135 if (!timeout) {
136 netdev_err(nic->netdev,
137 "PF didn't ack to mbox msg %d from VF%d\n",
138 (mbx->msg.msg & 0xFF), nic->vf_id);
139 return -EBUSY;
140 }
141 }
142 return 0;
143 }
144
145 /* Checks if VF is able to comminicate with PF
146 * and also gets the VNIC number this VF is associated to.
147 */
148 static int nicvf_check_pf_ready(struct nicvf *nic)
149 {
150 int timeout = 5000, sleep = 20;
151 union nic_mbx mbx = {};
152
153 mbx.msg.msg = NIC_MBOX_MSG_READY;
154
155 nic->pf_ready_to_rcv_msg = false;
156
157 nicvf_write_to_mbx(nic, &mbx);
158
159 while (!nic->pf_ready_to_rcv_msg) {
160 msleep(sleep);
161 if (nic->pf_ready_to_rcv_msg)
162 break;
163 timeout -= sleep;
164 if (!timeout) {
165 netdev_err(nic->netdev,
166 "PF didn't respond to READY msg\n");
167 return 0;
168 }
169 }
170 return 1;
171 }
172
173 static void nicvf_read_bgx_stats(struct nicvf *nic, struct bgx_stats_msg *bgx)
174 {
175 if (bgx->rx)
176 nic->bgx_stats.rx_stats[bgx->idx] = bgx->stats;
177 else
178 nic->bgx_stats.tx_stats[bgx->idx] = bgx->stats;
179 }
180
181 static void nicvf_handle_mbx_intr(struct nicvf *nic)
182 {
183 union nic_mbx mbx = {};
184 u64 *mbx_data;
185 u64 mbx_addr;
186 int i;
187
188 mbx_addr = NIC_VF_PF_MAILBOX_0_1;
189 mbx_data = (u64 *)&mbx;
190
191 for (i = 0; i < NIC_PF_VF_MAILBOX_SIZE; i++) {
192 *mbx_data = nicvf_reg_read(nic, mbx_addr);
193 mbx_data++;
194 mbx_addr += sizeof(u64);
195 }
196
197 netdev_dbg(nic->netdev, "Mbox message: msg: 0x%x\n", mbx.msg.msg);
198 switch (mbx.msg.msg) {
199 case NIC_MBOX_MSG_READY:
200 nic->pf_ready_to_rcv_msg = true;
201 nic->vf_id = mbx.nic_cfg.vf_id & 0x7F;
202 nic->tns_mode = mbx.nic_cfg.tns_mode & 0x7F;
203 nic->node = mbx.nic_cfg.node_id;
204 ether_addr_copy(nic->netdev->dev_addr, mbx.nic_cfg.mac_addr);
205 nic->link_up = false;
206 nic->duplex = 0;
207 nic->speed = 0;
208 break;
209 case NIC_MBOX_MSG_ACK:
210 nic->pf_acked = true;
211 break;
212 case NIC_MBOX_MSG_NACK:
213 nic->pf_nacked = true;
214 break;
215 case NIC_MBOX_MSG_RSS_SIZE:
216 nic->rss_info.rss_size = mbx.rss_size.ind_tbl_size;
217 nic->pf_acked = true;
218 break;
219 case NIC_MBOX_MSG_BGX_STATS:
220 nicvf_read_bgx_stats(nic, &mbx.bgx_stats);
221 nic->pf_acked = true;
222 nic->bgx_stats_acked = true;
223 break;
224 case NIC_MBOX_MSG_BGX_LINK_CHANGE:
225 nic->pf_acked = true;
226 nic->link_up = mbx.link_status.link_up;
227 nic->duplex = mbx.link_status.duplex;
228 nic->speed = mbx.link_status.speed;
229 if (nic->link_up) {
230 netdev_info(nic->netdev, "%s: Link is Up %d Mbps %s\n",
231 nic->netdev->name, nic->speed,
232 nic->duplex == DUPLEX_FULL ?
233 "Full duplex" : "Half duplex");
234 netif_carrier_on(nic->netdev);
235 netif_tx_wake_all_queues(nic->netdev);
236 } else {
237 netdev_info(nic->netdev, "%s: Link is Down\n",
238 nic->netdev->name);
239 netif_carrier_off(nic->netdev);
240 netif_tx_stop_all_queues(nic->netdev);
241 }
242 break;
243 default:
244 netdev_err(nic->netdev,
245 "Invalid message from PF, msg 0x%x\n", mbx.msg.msg);
246 break;
247 }
248 nicvf_clear_intr(nic, NICVF_INTR_MBOX, 0);
249 }
250
251 static int nicvf_hw_set_mac_addr(struct nicvf *nic, struct net_device *netdev)
252 {
253 union nic_mbx mbx = {};
254
255 mbx.mac.msg = NIC_MBOX_MSG_SET_MAC;
256 mbx.mac.vf_id = nic->vf_id;
257 ether_addr_copy(mbx.mac.mac_addr, netdev->dev_addr);
258
259 return nicvf_send_msg_to_pf(nic, &mbx);
260 }
261
262 static void nicvf_config_cpi(struct nicvf *nic)
263 {
264 union nic_mbx mbx = {};
265
266 mbx.cpi_cfg.msg = NIC_MBOX_MSG_CPI_CFG;
267 mbx.cpi_cfg.vf_id = nic->vf_id;
268 mbx.cpi_cfg.cpi_alg = nic->cpi_alg;
269 mbx.cpi_cfg.rq_cnt = nic->qs->rq_cnt;
270
271 nicvf_send_msg_to_pf(nic, &mbx);
272 }
273
274 static void nicvf_get_rss_size(struct nicvf *nic)
275 {
276 union nic_mbx mbx = {};
277
278 mbx.rss_size.msg = NIC_MBOX_MSG_RSS_SIZE;
279 mbx.rss_size.vf_id = nic->vf_id;
280 nicvf_send_msg_to_pf(nic, &mbx);
281 }
282
283 void nicvf_config_rss(struct nicvf *nic)
284 {
285 union nic_mbx mbx = {};
286 struct nicvf_rss_info *rss = &nic->rss_info;
287 int ind_tbl_len = rss->rss_size;
288 int i, nextq = 0;
289
290 mbx.rss_cfg.vf_id = nic->vf_id;
291 mbx.rss_cfg.hash_bits = rss->hash_bits;
292 while (ind_tbl_len) {
293 mbx.rss_cfg.tbl_offset = nextq;
294 mbx.rss_cfg.tbl_len = min(ind_tbl_len,
295 RSS_IND_TBL_LEN_PER_MBX_MSG);
296 mbx.rss_cfg.msg = mbx.rss_cfg.tbl_offset ?
297 NIC_MBOX_MSG_RSS_CFG_CONT : NIC_MBOX_MSG_RSS_CFG;
298
299 for (i = 0; i < mbx.rss_cfg.tbl_len; i++)
300 mbx.rss_cfg.ind_tbl[i] = rss->ind_tbl[nextq++];
301
302 nicvf_send_msg_to_pf(nic, &mbx);
303
304 ind_tbl_len -= mbx.rss_cfg.tbl_len;
305 }
306 }
307
308 void nicvf_set_rss_key(struct nicvf *nic)
309 {
310 struct nicvf_rss_info *rss = &nic->rss_info;
311 u64 key_addr = NIC_VNIC_RSS_KEY_0_4;
312 int idx;
313
314 for (idx = 0; idx < RSS_HASH_KEY_SIZE; idx++) {
315 nicvf_reg_write(nic, key_addr, rss->key[idx]);
316 key_addr += sizeof(u64);
317 }
318 }
319
320 static int nicvf_rss_init(struct nicvf *nic)
321 {
322 struct nicvf_rss_info *rss = &nic->rss_info;
323 int idx;
324
325 nicvf_get_rss_size(nic);
326
327 if ((nic->qs->rq_cnt <= 1) || (cpi_alg != CPI_ALG_NONE)) {
328 rss->enable = false;
329 rss->hash_bits = 0;
330 return 0;
331 }
332
333 rss->enable = true;
334
335 /* Using the HW reset value for now */
336 rss->key[0] = 0xFEED0BADFEED0BADULL;
337 rss->key[1] = 0xFEED0BADFEED0BADULL;
338 rss->key[2] = 0xFEED0BADFEED0BADULL;
339 rss->key[3] = 0xFEED0BADFEED0BADULL;
340 rss->key[4] = 0xFEED0BADFEED0BADULL;
341
342 nicvf_set_rss_key(nic);
343
344 rss->cfg = RSS_IP_HASH_ENA | RSS_TCP_HASH_ENA | RSS_UDP_HASH_ENA;
345 nicvf_reg_write(nic, NIC_VNIC_RSS_CFG, rss->cfg);
346
347 rss->hash_bits = ilog2(rounddown_pow_of_two(rss->rss_size));
348
349 for (idx = 0; idx < rss->rss_size; idx++)
350 rss->ind_tbl[idx] = ethtool_rxfh_indir_default(idx,
351 nic->qs->rq_cnt);
352 nicvf_config_rss(nic);
353 return 1;
354 }
355
356 int nicvf_set_real_num_queues(struct net_device *netdev,
357 int tx_queues, int rx_queues)
358 {
359 int err = 0;
360
361 err = netif_set_real_num_tx_queues(netdev, tx_queues);
362 if (err) {
363 netdev_err(netdev,
364 "Failed to set no of Tx queues: %d\n", tx_queues);
365 return err;
366 }
367
368 err = netif_set_real_num_rx_queues(netdev, rx_queues);
369 if (err)
370 netdev_err(netdev,
371 "Failed to set no of Rx queues: %d\n", rx_queues);
372 return err;
373 }
374
375 static int nicvf_init_resources(struct nicvf *nic)
376 {
377 int err;
378 union nic_mbx mbx = {};
379
380 mbx.msg.msg = NIC_MBOX_MSG_CFG_DONE;
381
382 /* Enable Qset */
383 nicvf_qset_config(nic, true);
384
385 /* Initialize queues and HW for data transfer */
386 err = nicvf_config_data_transfer(nic, true);
387 if (err) {
388 netdev_err(nic->netdev,
389 "Failed to alloc/config VF's QSet resources\n");
390 return err;
391 }
392
393 /* Send VF config done msg to PF */
394 nicvf_write_to_mbx(nic, &mbx);
395
396 return 0;
397 }
398
399 static void nicvf_snd_pkt_handler(struct net_device *netdev,
400 struct cmp_queue *cq,
401 struct cqe_send_t *cqe_tx, int cqe_type)
402 {
403 struct sk_buff *skb = NULL;
404 struct nicvf *nic = netdev_priv(netdev);
405 struct snd_queue *sq;
406 struct sq_hdr_subdesc *hdr;
407
408 sq = &nic->qs->sq[cqe_tx->sq_idx];
409
410 hdr = (struct sq_hdr_subdesc *)GET_SQ_DESC(sq, cqe_tx->sqe_ptr);
411 if (hdr->subdesc_type != SQ_DESC_TYPE_HEADER)
412 return;
413
414 netdev_dbg(nic->netdev,
415 "%s Qset #%d SQ #%d SQ ptr #%d subdesc count %d\n",
416 __func__, cqe_tx->sq_qs, cqe_tx->sq_idx,
417 cqe_tx->sqe_ptr, hdr->subdesc_cnt);
418
419 nicvf_put_sq_desc(sq, hdr->subdesc_cnt + 1);
420 nicvf_check_cqe_tx_errs(nic, cq, cqe_tx);
421 skb = (struct sk_buff *)sq->skbuff[cqe_tx->sqe_ptr];
422 /* For TSO offloaded packets only one head SKB needs to be freed */
423 if (skb) {
424 prefetch(skb);
425 dev_consume_skb_any(skb);
426 }
427 }
428
429 static void nicvf_rcv_pkt_handler(struct net_device *netdev,
430 struct napi_struct *napi,
431 struct cmp_queue *cq,
432 struct cqe_rx_t *cqe_rx, int cqe_type)
433 {
434 struct sk_buff *skb;
435 struct nicvf *nic = netdev_priv(netdev);
436 int err = 0;
437
438 /* Check for errors */
439 err = nicvf_check_cqe_rx_errs(nic, cq, cqe_rx);
440 if (err && !cqe_rx->rb_cnt)
441 return;
442
443 skb = nicvf_get_rcv_skb(nic, cqe_rx);
444 if (!skb) {
445 netdev_dbg(nic->netdev, "Packet not received\n");
446 return;
447 }
448
449 if (netif_msg_pktdata(nic)) {
450 netdev_info(nic->netdev, "%s: skb 0x%p, len=%d\n", netdev->name,
451 skb, skb->len);
452 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_OFFSET, 16, 1,
453 skb->data, skb->len, true);
454 }
455
456 nicvf_set_rx_frame_cnt(nic, skb);
457
458 skb_record_rx_queue(skb, cqe_rx->rq_idx);
459 if (netdev->hw_features & NETIF_F_RXCSUM) {
460 /* HW by default verifies TCP/UDP/SCTP checksums */
461 skb->ip_summed = CHECKSUM_UNNECESSARY;
462 } else {
463 skb_checksum_none_assert(skb);
464 }
465
466 skb->protocol = eth_type_trans(skb, netdev);
467
468 if (napi && (netdev->features & NETIF_F_GRO))
469 napi_gro_receive(napi, skb);
470 else
471 netif_receive_skb(skb);
472 }
473
474 static int nicvf_cq_intr_handler(struct net_device *netdev, u8 cq_idx,
475 struct napi_struct *napi, int budget)
476 {
477 int processed_cqe, work_done = 0;
478 int cqe_count, cqe_head;
479 struct nicvf *nic = netdev_priv(netdev);
480 struct queue_set *qs = nic->qs;
481 struct cmp_queue *cq = &qs->cq[cq_idx];
482 struct cqe_rx_t *cq_desc;
483
484 spin_lock_bh(&cq->lock);
485 loop:
486 processed_cqe = 0;
487 /* Get no of valid CQ entries to process */
488 cqe_count = nicvf_queue_reg_read(nic, NIC_QSET_CQ_0_7_STATUS, cq_idx);
489 cqe_count &= CQ_CQE_COUNT;
490 if (!cqe_count)
491 goto done;
492
493 /* Get head of the valid CQ entries */
494 cqe_head = nicvf_queue_reg_read(nic, NIC_QSET_CQ_0_7_HEAD, cq_idx) >> 9;
495 cqe_head &= 0xFFFF;
496
497 netdev_dbg(nic->netdev, "%s cqe_count %d cqe_head %d\n",
498 __func__, cqe_count, cqe_head);
499 while (processed_cqe < cqe_count) {
500 /* Get the CQ descriptor */
501 cq_desc = (struct cqe_rx_t *)GET_CQ_DESC(cq, cqe_head);
502 cqe_head++;
503 cqe_head &= (cq->dmem.q_len - 1);
504 /* Initiate prefetch for next descriptor */
505 prefetch((struct cqe_rx_t *)GET_CQ_DESC(cq, cqe_head));
506
507 if ((work_done >= budget) && napi &&
508 (cq_desc->cqe_type != CQE_TYPE_SEND)) {
509 break;
510 }
511
512 netdev_dbg(nic->netdev, "cq_desc->cqe_type %d\n",
513 cq_desc->cqe_type);
514 switch (cq_desc->cqe_type) {
515 case CQE_TYPE_RX:
516 nicvf_rcv_pkt_handler(netdev, napi, cq,
517 cq_desc, CQE_TYPE_RX);
518 work_done++;
519 break;
520 case CQE_TYPE_SEND:
521 nicvf_snd_pkt_handler(netdev, cq,
522 (void *)cq_desc, CQE_TYPE_SEND);
523 break;
524 case CQE_TYPE_INVALID:
525 case CQE_TYPE_RX_SPLIT:
526 case CQE_TYPE_RX_TCP:
527 case CQE_TYPE_SEND_PTP:
528 /* Ignore for now */
529 break;
530 }
531 processed_cqe++;
532 }
533 netdev_dbg(nic->netdev, "%s processed_cqe %d work_done %d budget %d\n",
534 __func__, processed_cqe, work_done, budget);
535
536 /* Ring doorbell to inform H/W to reuse processed CQEs */
537 nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_DOOR,
538 cq_idx, processed_cqe);
539
540 if ((work_done < budget) && napi)
541 goto loop;
542
543 done:
544 spin_unlock_bh(&cq->lock);
545 return work_done;
546 }
547
548 static int nicvf_poll(struct napi_struct *napi, int budget)
549 {
550 u64 cq_head;
551 int work_done = 0;
552 struct net_device *netdev = napi->dev;
553 struct nicvf *nic = netdev_priv(netdev);
554 struct nicvf_cq_poll *cq;
555 struct netdev_queue *txq;
556
557 cq = container_of(napi, struct nicvf_cq_poll, napi);
558 work_done = nicvf_cq_intr_handler(netdev, cq->cq_idx, napi, budget);
559
560 txq = netdev_get_tx_queue(netdev, cq->cq_idx);
561 if (netif_tx_queue_stopped(txq))
562 netif_tx_wake_queue(txq);
563
564 if (work_done < budget) {
565 /* Slow packet rate, exit polling */
566 napi_complete(napi);
567 /* Re-enable interrupts */
568 cq_head = nicvf_queue_reg_read(nic, NIC_QSET_CQ_0_7_HEAD,
569 cq->cq_idx);
570 nicvf_clear_intr(nic, NICVF_INTR_CQ, cq->cq_idx);
571 nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_HEAD,
572 cq->cq_idx, cq_head);
573 nicvf_enable_intr(nic, NICVF_INTR_CQ, cq->cq_idx);
574 }
575 return work_done;
576 }
577
578 /* Qset error interrupt handler
579 *
580 * As of now only CQ errors are handled
581 */
582 static void nicvf_handle_qs_err(unsigned long data)
583 {
584 struct nicvf *nic = (struct nicvf *)data;
585 struct queue_set *qs = nic->qs;
586 int qidx;
587 u64 status;
588
589 netif_tx_disable(nic->netdev);
590
591 /* Check if it is CQ err */
592 for (qidx = 0; qidx < qs->cq_cnt; qidx++) {
593 status = nicvf_queue_reg_read(nic, NIC_QSET_CQ_0_7_STATUS,
594 qidx);
595 if (!(status & CQ_ERR_MASK))
596 continue;
597 /* Process already queued CQEs and reconfig CQ */
598 nicvf_disable_intr(nic, NICVF_INTR_CQ, qidx);
599 nicvf_sq_disable(nic, qidx);
600 nicvf_cq_intr_handler(nic->netdev, qidx, NULL, 0);
601 nicvf_cmp_queue_config(nic, qs, qidx, true);
602 nicvf_sq_free_used_descs(nic->netdev, &qs->sq[qidx], qidx);
603 nicvf_sq_enable(nic, &qs->sq[qidx], qidx);
604
605 nicvf_enable_intr(nic, NICVF_INTR_CQ, qidx);
606 }
607
608 netif_tx_start_all_queues(nic->netdev);
609 /* Re-enable Qset error interrupt */
610 nicvf_enable_intr(nic, NICVF_INTR_QS_ERR, 0);
611 }
612
613 static irqreturn_t nicvf_misc_intr_handler(int irq, void *nicvf_irq)
614 {
615 struct nicvf *nic = (struct nicvf *)nicvf_irq;
616 u64 intr;
617
618 intr = nicvf_reg_read(nic, NIC_VF_INT);
619 /* Check for spurious interrupt */
620 if (!(intr & NICVF_INTR_MBOX_MASK))
621 return IRQ_HANDLED;
622
623 nicvf_handle_mbx_intr(nic);
624
625 return IRQ_HANDLED;
626 }
627
628 static irqreturn_t nicvf_intr_handler(int irq, void *nicvf_irq)
629 {
630 u64 qidx, intr, clear_intr = 0;
631 u64 cq_intr, rbdr_intr, qs_err_intr;
632 struct nicvf *nic = (struct nicvf *)nicvf_irq;
633 struct queue_set *qs = nic->qs;
634 struct nicvf_cq_poll *cq_poll = NULL;
635
636 intr = nicvf_reg_read(nic, NIC_VF_INT);
637 if (netif_msg_intr(nic))
638 netdev_info(nic->netdev, "%s: interrupt status 0x%llx\n",
639 nic->netdev->name, intr);
640
641 qs_err_intr = intr & NICVF_INTR_QS_ERR_MASK;
642 if (qs_err_intr) {
643 /* Disable Qset err interrupt and schedule softirq */
644 nicvf_disable_intr(nic, NICVF_INTR_QS_ERR, 0);
645 tasklet_hi_schedule(&nic->qs_err_task);
646 clear_intr |= qs_err_intr;
647 }
648
649 /* Disable interrupts and start polling */
650 cq_intr = (intr & NICVF_INTR_CQ_MASK) >> NICVF_INTR_CQ_SHIFT;
651 for (qidx = 0; qidx < qs->cq_cnt; qidx++) {
652 if (!(cq_intr & (1 << qidx)))
653 continue;
654 if (!nicvf_is_intr_enabled(nic, NICVF_INTR_CQ, qidx))
655 continue;
656
657 nicvf_disable_intr(nic, NICVF_INTR_CQ, qidx);
658 clear_intr |= ((1 << qidx) << NICVF_INTR_CQ_SHIFT);
659
660 cq_poll = nic->napi[qidx];
661 /* Schedule NAPI */
662 if (cq_poll)
663 napi_schedule(&cq_poll->napi);
664 }
665
666 /* Handle RBDR interrupts */
667 rbdr_intr = (intr & NICVF_INTR_RBDR_MASK) >> NICVF_INTR_RBDR_SHIFT;
668 if (rbdr_intr) {
669 /* Disable RBDR interrupt and schedule softirq */
670 for (qidx = 0; qidx < qs->rbdr_cnt; qidx++) {
671 if (!nicvf_is_intr_enabled(nic, NICVF_INTR_RBDR, qidx))
672 continue;
673 nicvf_disable_intr(nic, NICVF_INTR_RBDR, qidx);
674 tasklet_hi_schedule(&nic->rbdr_task);
675 clear_intr |= ((1 << qidx) << NICVF_INTR_RBDR_SHIFT);
676 }
677 }
678
679 /* Clear interrupts */
680 nicvf_reg_write(nic, NIC_VF_INT, clear_intr);
681 return IRQ_HANDLED;
682 }
683
684 static int nicvf_enable_msix(struct nicvf *nic)
685 {
686 int ret, vec;
687
688 nic->num_vec = NIC_VF_MSIX_VECTORS;
689
690 for (vec = 0; vec < nic->num_vec; vec++)
691 nic->msix_entries[vec].entry = vec;
692
693 ret = pci_enable_msix(nic->pdev, nic->msix_entries, nic->num_vec);
694 if (ret) {
695 netdev_err(nic->netdev,
696 "Req for #%d msix vectors failed\n", nic->num_vec);
697 return 0;
698 }
699 nic->msix_enabled = 1;
700 return 1;
701 }
702
703 static void nicvf_disable_msix(struct nicvf *nic)
704 {
705 if (nic->msix_enabled) {
706 pci_disable_msix(nic->pdev);
707 nic->msix_enabled = 0;
708 nic->num_vec = 0;
709 }
710 }
711
712 static int nicvf_register_interrupts(struct nicvf *nic)
713 {
714 int irq, free, ret = 0;
715 int vector;
716
717 for_each_cq_irq(irq)
718 sprintf(nic->irq_name[irq], "NICVF%d CQ%d",
719 nic->vf_id, irq);
720
721 for_each_sq_irq(irq)
722 sprintf(nic->irq_name[irq], "NICVF%d SQ%d",
723 nic->vf_id, irq - NICVF_INTR_ID_SQ);
724
725 for_each_rbdr_irq(irq)
726 sprintf(nic->irq_name[irq], "NICVF%d RBDR%d",
727 nic->vf_id, irq - NICVF_INTR_ID_RBDR);
728
729 /* Register all interrupts except mailbox */
730 for (irq = 0; irq < NICVF_INTR_ID_SQ; irq++) {
731 vector = nic->msix_entries[irq].vector;
732 ret = request_irq(vector, nicvf_intr_handler,
733 0, nic->irq_name[irq], nic);
734 if (ret)
735 break;
736 nic->irq_allocated[irq] = true;
737 }
738
739 for (irq = NICVF_INTR_ID_SQ; irq < NICVF_INTR_ID_MISC; irq++) {
740 vector = nic->msix_entries[irq].vector;
741 ret = request_irq(vector, nicvf_intr_handler,
742 0, nic->irq_name[irq], nic);
743 if (ret)
744 break;
745 nic->irq_allocated[irq] = true;
746 }
747
748 sprintf(nic->irq_name[NICVF_INTR_ID_QS_ERR],
749 "NICVF%d Qset error", nic->vf_id);
750 if (!ret) {
751 vector = nic->msix_entries[NICVF_INTR_ID_QS_ERR].vector;
752 irq = NICVF_INTR_ID_QS_ERR;
753 ret = request_irq(vector, nicvf_intr_handler,
754 0, nic->irq_name[irq], nic);
755 if (!ret)
756 nic->irq_allocated[irq] = true;
757 }
758
759 if (ret) {
760 netdev_err(nic->netdev, "Request irq failed\n");
761 for (free = 0; free < irq; free++)
762 free_irq(nic->msix_entries[free].vector, nic);
763 return ret;
764 }
765
766 return 0;
767 }
768
769 static void nicvf_unregister_interrupts(struct nicvf *nic)
770 {
771 int irq;
772
773 /* Free registered interrupts */
774 for (irq = 0; irq < nic->num_vec; irq++) {
775 if (nic->irq_allocated[irq])
776 free_irq(nic->msix_entries[irq].vector, nic);
777 nic->irq_allocated[irq] = false;
778 }
779
780 /* Disable MSI-X */
781 nicvf_disable_msix(nic);
782 }
783
784 /* Initialize MSIX vectors and register MISC interrupt.
785 * Send READY message to PF to check if its alive
786 */
787 static int nicvf_register_misc_interrupt(struct nicvf *nic)
788 {
789 int ret = 0;
790 int irq = NICVF_INTR_ID_MISC;
791
792 /* Return if mailbox interrupt is already registered */
793 if (nic->msix_enabled)
794 return 0;
795
796 /* Enable MSI-X */
797 if (!nicvf_enable_msix(nic))
798 return 1;
799
800 sprintf(nic->irq_name[irq], "%s Mbox", "NICVF");
801 /* Register Misc interrupt */
802 ret = request_irq(nic->msix_entries[irq].vector,
803 nicvf_misc_intr_handler, 0, nic->irq_name[irq], nic);
804
805 if (ret)
806 return ret;
807 nic->irq_allocated[irq] = true;
808
809 /* Enable mailbox interrupt */
810 nicvf_enable_intr(nic, NICVF_INTR_MBOX, 0);
811
812 /* Check if VF is able to communicate with PF */
813 if (!nicvf_check_pf_ready(nic)) {
814 nicvf_disable_intr(nic, NICVF_INTR_MBOX, 0);
815 nicvf_unregister_interrupts(nic);
816 return 1;
817 }
818
819 return 0;
820 }
821
822 static netdev_tx_t nicvf_xmit(struct sk_buff *skb, struct net_device *netdev)
823 {
824 struct nicvf *nic = netdev_priv(netdev);
825 int qid = skb_get_queue_mapping(skb);
826 struct netdev_queue *txq = netdev_get_tx_queue(netdev, qid);
827
828 /* Check for minimum packet length */
829 if (skb->len <= ETH_HLEN) {
830 dev_kfree_skb(skb);
831 return NETDEV_TX_OK;
832 }
833
834 if (!nicvf_sq_append_skb(nic, skb) && !netif_tx_queue_stopped(txq)) {
835 netif_tx_stop_queue(txq);
836 nic->drv_stats.tx_busy++;
837 if (netif_msg_tx_err(nic))
838 netdev_warn(netdev,
839 "%s: Transmit ring full, stopping SQ%d\n",
840 netdev->name, qid);
841
842 return NETDEV_TX_BUSY;
843 }
844
845 return NETDEV_TX_OK;
846 }
847
848 int nicvf_stop(struct net_device *netdev)
849 {
850 int irq, qidx;
851 struct nicvf *nic = netdev_priv(netdev);
852 struct queue_set *qs = nic->qs;
853 struct nicvf_cq_poll *cq_poll = NULL;
854 union nic_mbx mbx = {};
855
856 mbx.msg.msg = NIC_MBOX_MSG_SHUTDOWN;
857 nicvf_send_msg_to_pf(nic, &mbx);
858
859 netif_carrier_off(netdev);
860 netif_tx_disable(netdev);
861
862 /* Disable RBDR & QS error interrupts */
863 for (qidx = 0; qidx < qs->rbdr_cnt; qidx++) {
864 nicvf_disable_intr(nic, NICVF_INTR_RBDR, qidx);
865 nicvf_clear_intr(nic, NICVF_INTR_RBDR, qidx);
866 }
867 nicvf_disable_intr(nic, NICVF_INTR_QS_ERR, 0);
868 nicvf_clear_intr(nic, NICVF_INTR_QS_ERR, 0);
869
870 /* Wait for pending IRQ handlers to finish */
871 for (irq = 0; irq < nic->num_vec; irq++)
872 synchronize_irq(nic->msix_entries[irq].vector);
873
874 tasklet_kill(&nic->rbdr_task);
875 tasklet_kill(&nic->qs_err_task);
876 if (nic->rb_work_scheduled)
877 cancel_delayed_work_sync(&nic->rbdr_work);
878
879 for (qidx = 0; qidx < nic->qs->cq_cnt; qidx++) {
880 cq_poll = nic->napi[qidx];
881 if (!cq_poll)
882 continue;
883 nic->napi[qidx] = NULL;
884 napi_synchronize(&cq_poll->napi);
885 /* CQ intr is enabled while napi_complete,
886 * so disable it now
887 */
888 nicvf_disable_intr(nic, NICVF_INTR_CQ, qidx);
889 nicvf_clear_intr(nic, NICVF_INTR_CQ, qidx);
890 napi_disable(&cq_poll->napi);
891 netif_napi_del(&cq_poll->napi);
892 kfree(cq_poll);
893 }
894
895 /* Free resources */
896 nicvf_config_data_transfer(nic, false);
897
898 /* Disable HW Qset */
899 nicvf_qset_config(nic, false);
900
901 /* disable mailbox interrupt */
902 nicvf_disable_intr(nic, NICVF_INTR_MBOX, 0);
903
904 nicvf_unregister_interrupts(nic);
905
906 return 0;
907 }
908
909 int nicvf_open(struct net_device *netdev)
910 {
911 int err, qidx;
912 struct nicvf *nic = netdev_priv(netdev);
913 struct queue_set *qs = nic->qs;
914 struct nicvf_cq_poll *cq_poll = NULL;
915
916 nic->mtu = netdev->mtu;
917
918 netif_carrier_off(netdev);
919
920 err = nicvf_register_misc_interrupt(nic);
921 if (err)
922 return err;
923
924 /* Register NAPI handler for processing CQEs */
925 for (qidx = 0; qidx < qs->cq_cnt; qidx++) {
926 cq_poll = kzalloc(sizeof(*cq_poll), GFP_KERNEL);
927 if (!cq_poll) {
928 err = -ENOMEM;
929 goto napi_del;
930 }
931 cq_poll->cq_idx = qidx;
932 netif_napi_add(netdev, &cq_poll->napi, nicvf_poll,
933 NAPI_POLL_WEIGHT);
934 napi_enable(&cq_poll->napi);
935 nic->napi[qidx] = cq_poll;
936 }
937
938 /* Check if we got MAC address from PF or else generate a radom MAC */
939 if (is_zero_ether_addr(netdev->dev_addr)) {
940 eth_hw_addr_random(netdev);
941 nicvf_hw_set_mac_addr(nic, netdev);
942 }
943
944 /* Init tasklet for handling Qset err interrupt */
945 tasklet_init(&nic->qs_err_task, nicvf_handle_qs_err,
946 (unsigned long)nic);
947
948 /* Init RBDR tasklet which will refill RBDR */
949 tasklet_init(&nic->rbdr_task, nicvf_rbdr_task,
950 (unsigned long)nic);
951 INIT_DELAYED_WORK(&nic->rbdr_work, nicvf_rbdr_work);
952
953 /* Configure CPI alorithm */
954 nic->cpi_alg = cpi_alg;
955 nicvf_config_cpi(nic);
956
957 /* Configure receive side scaling */
958 nicvf_rss_init(nic);
959
960 err = nicvf_register_interrupts(nic);
961 if (err)
962 goto cleanup;
963
964 /* Initialize the queues */
965 err = nicvf_init_resources(nic);
966 if (err)
967 goto cleanup;
968
969 /* Make sure queue initialization is written */
970 wmb();
971
972 nicvf_reg_write(nic, NIC_VF_INT, -1);
973 /* Enable Qset err interrupt */
974 nicvf_enable_intr(nic, NICVF_INTR_QS_ERR, 0);
975
976 /* Enable completion queue interrupt */
977 for (qidx = 0; qidx < qs->cq_cnt; qidx++)
978 nicvf_enable_intr(nic, NICVF_INTR_CQ, qidx);
979
980 /* Enable RBDR threshold interrupt */
981 for (qidx = 0; qidx < qs->rbdr_cnt; qidx++)
982 nicvf_enable_intr(nic, NICVF_INTR_RBDR, qidx);
983
984 netif_carrier_on(netdev);
985 netif_tx_start_all_queues(netdev);
986
987 return 0;
988 cleanup:
989 nicvf_disable_intr(nic, NICVF_INTR_MBOX, 0);
990 nicvf_unregister_interrupts(nic);
991 napi_del:
992 for (qidx = 0; qidx < qs->cq_cnt; qidx++) {
993 cq_poll = nic->napi[qidx];
994 if (!cq_poll)
995 continue;
996 napi_disable(&cq_poll->napi);
997 netif_napi_del(&cq_poll->napi);
998 kfree(cq_poll);
999 nic->napi[qidx] = NULL;
1000 }
1001 return err;
1002 }
1003
1004 static int nicvf_update_hw_max_frs(struct nicvf *nic, int mtu)
1005 {
1006 union nic_mbx mbx = {};
1007
1008 mbx.frs.msg = NIC_MBOX_MSG_SET_MAX_FRS;
1009 mbx.frs.max_frs = mtu;
1010 mbx.frs.vf_id = nic->vf_id;
1011
1012 return nicvf_send_msg_to_pf(nic, &mbx);
1013 }
1014
1015 static int nicvf_change_mtu(struct net_device *netdev, int new_mtu)
1016 {
1017 struct nicvf *nic = netdev_priv(netdev);
1018
1019 if (new_mtu > NIC_HW_MAX_FRS)
1020 return -EINVAL;
1021
1022 if (new_mtu < NIC_HW_MIN_FRS)
1023 return -EINVAL;
1024
1025 if (nicvf_update_hw_max_frs(nic, new_mtu))
1026 return -EINVAL;
1027 netdev->mtu = new_mtu;
1028 nic->mtu = new_mtu;
1029
1030 return 0;
1031 }
1032
1033 static int nicvf_set_mac_address(struct net_device *netdev, void *p)
1034 {
1035 struct sockaddr *addr = p;
1036 struct nicvf *nic = netdev_priv(netdev);
1037
1038 if (!is_valid_ether_addr(addr->sa_data))
1039 return -EADDRNOTAVAIL;
1040
1041 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
1042
1043 if (nic->msix_enabled)
1044 if (nicvf_hw_set_mac_addr(nic, netdev))
1045 return -EBUSY;
1046
1047 return 0;
1048 }
1049
1050 void nicvf_update_lmac_stats(struct nicvf *nic)
1051 {
1052 int stat = 0;
1053 union nic_mbx mbx = {};
1054 int timeout;
1055
1056 if (!netif_running(nic->netdev))
1057 return;
1058
1059 mbx.bgx_stats.msg = NIC_MBOX_MSG_BGX_STATS;
1060 mbx.bgx_stats.vf_id = nic->vf_id;
1061 /* Rx stats */
1062 mbx.bgx_stats.rx = 1;
1063 while (stat < BGX_RX_STATS_COUNT) {
1064 nic->bgx_stats_acked = 0;
1065 mbx.bgx_stats.idx = stat;
1066 nicvf_send_msg_to_pf(nic, &mbx);
1067 timeout = 0;
1068 while ((!nic->bgx_stats_acked) && (timeout < 10)) {
1069 msleep(2);
1070 timeout++;
1071 }
1072 stat++;
1073 }
1074
1075 stat = 0;
1076
1077 /* Tx stats */
1078 mbx.bgx_stats.rx = 0;
1079 while (stat < BGX_TX_STATS_COUNT) {
1080 nic->bgx_stats_acked = 0;
1081 mbx.bgx_stats.idx = stat;
1082 nicvf_send_msg_to_pf(nic, &mbx);
1083 timeout = 0;
1084 while ((!nic->bgx_stats_acked) && (timeout < 10)) {
1085 msleep(2);
1086 timeout++;
1087 }
1088 stat++;
1089 }
1090 }
1091
1092 void nicvf_update_stats(struct nicvf *nic)
1093 {
1094 int qidx;
1095 struct nicvf_hw_stats *stats = &nic->stats;
1096 struct nicvf_drv_stats *drv_stats = &nic->drv_stats;
1097 struct queue_set *qs = nic->qs;
1098
1099 #define GET_RX_STATS(reg) \
1100 nicvf_reg_read(nic, NIC_VNIC_RX_STAT_0_13 | (reg << 3))
1101 #define GET_TX_STATS(reg) \
1102 nicvf_reg_read(nic, NIC_VNIC_TX_STAT_0_4 | (reg << 3))
1103
1104 stats->rx_bytes_ok = GET_RX_STATS(RX_OCTS);
1105 stats->rx_ucast_frames_ok = GET_RX_STATS(RX_UCAST);
1106 stats->rx_bcast_frames_ok = GET_RX_STATS(RX_BCAST);
1107 stats->rx_mcast_frames_ok = GET_RX_STATS(RX_MCAST);
1108 stats->rx_fcs_errors = GET_RX_STATS(RX_FCS);
1109 stats->rx_l2_errors = GET_RX_STATS(RX_L2ERR);
1110 stats->rx_drop_red = GET_RX_STATS(RX_RED);
1111 stats->rx_drop_overrun = GET_RX_STATS(RX_ORUN);
1112 stats->rx_drop_bcast = GET_RX_STATS(RX_DRP_BCAST);
1113 stats->rx_drop_mcast = GET_RX_STATS(RX_DRP_MCAST);
1114 stats->rx_drop_l3_bcast = GET_RX_STATS(RX_DRP_L3BCAST);
1115 stats->rx_drop_l3_mcast = GET_RX_STATS(RX_DRP_L3MCAST);
1116
1117 stats->tx_bytes_ok = GET_TX_STATS(TX_OCTS);
1118 stats->tx_ucast_frames_ok = GET_TX_STATS(TX_UCAST);
1119 stats->tx_bcast_frames_ok = GET_TX_STATS(TX_BCAST);
1120 stats->tx_mcast_frames_ok = GET_TX_STATS(TX_MCAST);
1121 stats->tx_drops = GET_TX_STATS(TX_DROP);
1122
1123 drv_stats->rx_frames_ok = stats->rx_ucast_frames_ok +
1124 stats->rx_bcast_frames_ok +
1125 stats->rx_mcast_frames_ok;
1126 drv_stats->tx_frames_ok = stats->tx_ucast_frames_ok +
1127 stats->tx_bcast_frames_ok +
1128 stats->tx_mcast_frames_ok;
1129 drv_stats->rx_drops = stats->rx_drop_red +
1130 stats->rx_drop_overrun;
1131 drv_stats->tx_drops = stats->tx_drops;
1132
1133 /* Update RQ and SQ stats */
1134 for (qidx = 0; qidx < qs->rq_cnt; qidx++)
1135 nicvf_update_rq_stats(nic, qidx);
1136 for (qidx = 0; qidx < qs->sq_cnt; qidx++)
1137 nicvf_update_sq_stats(nic, qidx);
1138 }
1139
1140 static struct rtnl_link_stats64 *nicvf_get_stats64(struct net_device *netdev,
1141 struct rtnl_link_stats64 *stats)
1142 {
1143 struct nicvf *nic = netdev_priv(netdev);
1144 struct nicvf_hw_stats *hw_stats = &nic->stats;
1145 struct nicvf_drv_stats *drv_stats = &nic->drv_stats;
1146
1147 nicvf_update_stats(nic);
1148
1149 stats->rx_bytes = hw_stats->rx_bytes_ok;
1150 stats->rx_packets = drv_stats->rx_frames_ok;
1151 stats->rx_dropped = drv_stats->rx_drops;
1152
1153 stats->tx_bytes = hw_stats->tx_bytes_ok;
1154 stats->tx_packets = drv_stats->tx_frames_ok;
1155 stats->tx_dropped = drv_stats->tx_drops;
1156
1157 return stats;
1158 }
1159
1160 static void nicvf_tx_timeout(struct net_device *dev)
1161 {
1162 struct nicvf *nic = netdev_priv(dev);
1163
1164 if (netif_msg_tx_err(nic))
1165 netdev_warn(dev, "%s: Transmit timed out, resetting\n",
1166 dev->name);
1167
1168 schedule_work(&nic->reset_task);
1169 }
1170
1171 static void nicvf_reset_task(struct work_struct *work)
1172 {
1173 struct nicvf *nic;
1174
1175 nic = container_of(work, struct nicvf, reset_task);
1176
1177 if (!netif_running(nic->netdev))
1178 return;
1179
1180 nicvf_stop(nic->netdev);
1181 nicvf_open(nic->netdev);
1182 nic->netdev->trans_start = jiffies;
1183 }
1184
1185 static const struct net_device_ops nicvf_netdev_ops = {
1186 .ndo_open = nicvf_open,
1187 .ndo_stop = nicvf_stop,
1188 .ndo_start_xmit = nicvf_xmit,
1189 .ndo_change_mtu = nicvf_change_mtu,
1190 .ndo_set_mac_address = nicvf_set_mac_address,
1191 .ndo_get_stats64 = nicvf_get_stats64,
1192 .ndo_tx_timeout = nicvf_tx_timeout,
1193 };
1194
1195 static int nicvf_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
1196 {
1197 struct device *dev = &pdev->dev;
1198 struct net_device *netdev;
1199 struct nicvf *nic;
1200 struct queue_set *qs;
1201 int err;
1202
1203 err = pci_enable_device(pdev);
1204 if (err) {
1205 dev_err(dev, "Failed to enable PCI device\n");
1206 return err;
1207 }
1208
1209 err = pci_request_regions(pdev, DRV_NAME);
1210 if (err) {
1211 dev_err(dev, "PCI request regions failed 0x%x\n", err);
1212 goto err_disable_device;
1213 }
1214
1215 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(48));
1216 if (err) {
1217 dev_err(dev, "Unable to get usable DMA configuration\n");
1218 goto err_release_regions;
1219 }
1220
1221 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(48));
1222 if (err) {
1223 dev_err(dev, "unable to get 48-bit DMA for consistent allocations\n");
1224 goto err_release_regions;
1225 }
1226
1227 netdev = alloc_etherdev_mqs(sizeof(struct nicvf),
1228 MAX_RCV_QUEUES_PER_QS,
1229 MAX_SND_QUEUES_PER_QS);
1230 if (!netdev) {
1231 err = -ENOMEM;
1232 goto err_release_regions;
1233 }
1234
1235 pci_set_drvdata(pdev, netdev);
1236
1237 SET_NETDEV_DEV(netdev, &pdev->dev);
1238
1239 nic = netdev_priv(netdev);
1240 nic->netdev = netdev;
1241 nic->pdev = pdev;
1242
1243 /* MAP VF's configuration registers */
1244 nic->reg_base = pcim_iomap(pdev, PCI_CFG_REG_BAR_NUM, 0);
1245 if (!nic->reg_base) {
1246 dev_err(dev, "Cannot map config register space, aborting\n");
1247 err = -ENOMEM;
1248 goto err_free_netdev;
1249 }
1250
1251 err = nicvf_set_qset_resources(nic);
1252 if (err)
1253 goto err_free_netdev;
1254
1255 qs = nic->qs;
1256
1257 err = nicvf_set_real_num_queues(netdev, qs->sq_cnt, qs->rq_cnt);
1258 if (err)
1259 goto err_free_netdev;
1260
1261 /* Check if PF is alive and get MAC address for this VF */
1262 err = nicvf_register_misc_interrupt(nic);
1263 if (err)
1264 goto err_free_netdev;
1265
1266 netdev->features |= (NETIF_F_RXCSUM | NETIF_F_IP_CSUM | NETIF_F_SG |
1267 NETIF_F_TSO | NETIF_F_GRO);
1268 netdev->hw_features = netdev->features;
1269
1270 netdev->netdev_ops = &nicvf_netdev_ops;
1271
1272 INIT_WORK(&nic->reset_task, nicvf_reset_task);
1273
1274 err = register_netdev(netdev);
1275 if (err) {
1276 dev_err(dev, "Failed to register netdevice\n");
1277 goto err_unregister_interrupts;
1278 }
1279
1280 nic->msg_enable = debug;
1281
1282 nicvf_set_ethtool_ops(netdev);
1283
1284 return 0;
1285
1286 err_unregister_interrupts:
1287 nicvf_unregister_interrupts(nic);
1288 err_free_netdev:
1289 pci_set_drvdata(pdev, NULL);
1290 free_netdev(netdev);
1291 err_release_regions:
1292 pci_release_regions(pdev);
1293 err_disable_device:
1294 pci_disable_device(pdev);
1295 return err;
1296 }
1297
1298 static void nicvf_remove(struct pci_dev *pdev)
1299 {
1300 struct net_device *netdev = pci_get_drvdata(pdev);
1301 struct nicvf *nic = netdev_priv(netdev);
1302
1303 unregister_netdev(netdev);
1304 nicvf_unregister_interrupts(nic);
1305 pci_set_drvdata(pdev, NULL);
1306 free_netdev(netdev);
1307 pci_release_regions(pdev);
1308 pci_disable_device(pdev);
1309 }
1310
1311 static struct pci_driver nicvf_driver = {
1312 .name = DRV_NAME,
1313 .id_table = nicvf_id_table,
1314 .probe = nicvf_probe,
1315 .remove = nicvf_remove,
1316 };
1317
1318 static int __init nicvf_init_module(void)
1319 {
1320 pr_info("%s, ver %s\n", DRV_NAME, DRV_VERSION);
1321
1322 return pci_register_driver(&nicvf_driver);
1323 }
1324
1325 static void __exit nicvf_cleanup_module(void)
1326 {
1327 pci_unregister_driver(&nicvf_driver);
1328 }
1329
1330 module_init(nicvf_init_module);
1331 module_exit(nicvf_cleanup_module);