1
2
3
4#include "iavf.h"
5#include "iavf_prototype.h"
6#include "iavf_client.h"
7
8
9#define IAVF_BUSY_WAIT_DELAY 10
10#define IAVF_BUSY_WAIT_COUNT 50
11
12
13
14
15
16
17
18
19
20
21static int iavf_send_pf_msg(struct iavf_adapter *adapter,
22 enum virtchnl_ops op, u8 *msg, u16 len)
23{
24 struct iavf_hw *hw = &adapter->hw;
25 enum iavf_status err;
26
27 if (adapter->flags & IAVF_FLAG_PF_COMMS_FAILED)
28 return 0;
29
30 err = iavf_aq_send_msg_to_pf(hw, op, 0, msg, len, NULL);
31 if (err)
32 dev_dbg(&adapter->pdev->dev, "Unable to send opcode %d to PF, err %s, aq_err %s\n",
33 op, iavf_stat_str(hw, err),
34 iavf_aq_str(hw, hw->aq.asq_last_status));
35 return err;
36}
37
38
39
40
41
42
43
44
45
46int iavf_send_api_ver(struct iavf_adapter *adapter)
47{
48 struct virtchnl_version_info vvi;
49
50 vvi.major = VIRTCHNL_VERSION_MAJOR;
51 vvi.minor = VIRTCHNL_VERSION_MINOR;
52
53 return iavf_send_pf_msg(adapter, VIRTCHNL_OP_VERSION, (u8 *)&vvi,
54 sizeof(vvi));
55}
56
57
58
59
60
61
62
63
64
65
66int iavf_verify_api_ver(struct iavf_adapter *adapter)
67{
68 struct virtchnl_version_info *pf_vvi;
69 struct iavf_hw *hw = &adapter->hw;
70 struct iavf_arq_event_info event;
71 enum virtchnl_ops op;
72 enum iavf_status err;
73
74 event.buf_len = IAVF_MAX_AQ_BUF_SIZE;
75 event.msg_buf = kzalloc(event.buf_len, GFP_KERNEL);
76 if (!event.msg_buf) {
77 err = -ENOMEM;
78 goto out;
79 }
80
81 while (1) {
82 err = iavf_clean_arq_element(hw, &event, NULL);
83
84
85
86 if (err)
87 goto out_alloc;
88 op =
89 (enum virtchnl_ops)le32_to_cpu(event.desc.cookie_high);
90 if (op == VIRTCHNL_OP_VERSION)
91 break;
92 }
93
94
95 err = (enum iavf_status)le32_to_cpu(event.desc.cookie_low);
96 if (err)
97 goto out_alloc;
98
99 if (op != VIRTCHNL_OP_VERSION) {
100 dev_info(&adapter->pdev->dev, "Invalid reply type %d from PF\n",
101 op);
102 err = -EIO;
103 goto out_alloc;
104 }
105
106 pf_vvi = (struct virtchnl_version_info *)event.msg_buf;
107 adapter->pf_version = *pf_vvi;
108
109 if ((pf_vvi->major > VIRTCHNL_VERSION_MAJOR) ||
110 ((pf_vvi->major == VIRTCHNL_VERSION_MAJOR) &&
111 (pf_vvi->minor > VIRTCHNL_VERSION_MINOR)))
112 err = -EIO;
113
114out_alloc:
115 kfree(event.msg_buf);
116out:
117 return err;
118}
119
120
121
122
123
124
125
126
127
128int iavf_send_vf_config_msg(struct iavf_adapter *adapter)
129{
130 u32 caps;
131
132 caps = VIRTCHNL_VF_OFFLOAD_L2 |
133 VIRTCHNL_VF_OFFLOAD_RSS_PF |
134 VIRTCHNL_VF_OFFLOAD_RSS_AQ |
135 VIRTCHNL_VF_OFFLOAD_RSS_REG |
136 VIRTCHNL_VF_OFFLOAD_VLAN |
137 VIRTCHNL_VF_OFFLOAD_WB_ON_ITR |
138 VIRTCHNL_VF_OFFLOAD_RSS_PCTYPE_V2 |
139 VIRTCHNL_VF_OFFLOAD_ENCAP |
140 VIRTCHNL_VF_OFFLOAD_ENCAP_CSUM |
141 VIRTCHNL_VF_OFFLOAD_REQ_QUEUES |
142 VIRTCHNL_VF_OFFLOAD_ADQ |
143 VIRTCHNL_VF_CAP_ADV_LINK_SPEED;
144
145 adapter->current_op = VIRTCHNL_OP_GET_VF_RESOURCES;
146 adapter->aq_required &= ~IAVF_FLAG_AQ_GET_CONFIG;
147 if (PF_IS_V11(adapter))
148 return iavf_send_pf_msg(adapter, VIRTCHNL_OP_GET_VF_RESOURCES,
149 (u8 *)&caps, sizeof(caps));
150 else
151 return iavf_send_pf_msg(adapter, VIRTCHNL_OP_GET_VF_RESOURCES,
152 NULL, 0);
153}
154
155
156
157
158
159
160
161
162static void iavf_validate_num_queues(struct iavf_adapter *adapter)
163{
164 if (adapter->vf_res->num_queue_pairs > IAVF_MAX_REQ_QUEUES) {
165 struct virtchnl_vsi_resource *vsi_res;
166 int i;
167
168 dev_info(&adapter->pdev->dev, "Received %d queues, but can only have a max of %d\n",
169 adapter->vf_res->num_queue_pairs,
170 IAVF_MAX_REQ_QUEUES);
171 dev_info(&adapter->pdev->dev, "Fixing by reducing queues to %d\n",
172 IAVF_MAX_REQ_QUEUES);
173 adapter->vf_res->num_queue_pairs = IAVF_MAX_REQ_QUEUES;
174 for (i = 0; i < adapter->vf_res->num_vsis; i++) {
175 vsi_res = &adapter->vf_res->vsi_res[i];
176 vsi_res->num_queue_pairs = IAVF_MAX_REQ_QUEUES;
177 }
178 }
179}
180
181
182
183
184
185
186
187
188
189
190int iavf_get_vf_config(struct iavf_adapter *adapter)
191{
192 struct iavf_hw *hw = &adapter->hw;
193 struct iavf_arq_event_info event;
194 enum virtchnl_ops op;
195 enum iavf_status err;
196 u16 len;
197
198 len = sizeof(struct virtchnl_vf_resource) +
199 IAVF_MAX_VF_VSI * sizeof(struct virtchnl_vsi_resource);
200 event.buf_len = len;
201 event.msg_buf = kzalloc(event.buf_len, GFP_KERNEL);
202 if (!event.msg_buf) {
203 err = -ENOMEM;
204 goto out;
205 }
206
207 while (1) {
208
209
210
211 err = iavf_clean_arq_element(hw, &event, NULL);
212 if (err)
213 goto out_alloc;
214 op =
215 (enum virtchnl_ops)le32_to_cpu(event.desc.cookie_high);
216 if (op == VIRTCHNL_OP_GET_VF_RESOURCES)
217 break;
218 }
219
220 err = (enum iavf_status)le32_to_cpu(event.desc.cookie_low);
221 memcpy(adapter->vf_res, event.msg_buf, min(event.msg_len, len));
222
223
224
225
226 if (!err)
227 iavf_validate_num_queues(adapter);
228 iavf_vf_parse_hw_config(hw, adapter->vf_res);
229out_alloc:
230 kfree(event.msg_buf);
231out:
232 return err;
233}
234
235
236
237
238
239
240
241void iavf_configure_queues(struct iavf_adapter *adapter)
242{
243 struct virtchnl_vsi_queue_config_info *vqci;
244 struct virtchnl_queue_pair_info *vqpi;
245 int pairs = adapter->num_active_queues;
246 int i, max_frame = IAVF_MAX_RXBUFFER;
247 size_t len;
248
249 if (adapter->current_op != VIRTCHNL_OP_UNKNOWN) {
250
251 dev_err(&adapter->pdev->dev, "Cannot configure queues, command %d pending\n",
252 adapter->current_op);
253 return;
254 }
255 adapter->current_op = VIRTCHNL_OP_CONFIG_VSI_QUEUES;
256 len = struct_size(vqci, qpair, pairs);
257 vqci = kzalloc(len, GFP_KERNEL);
258 if (!vqci)
259 return;
260
261
262 if (!(adapter->flags & IAVF_FLAG_LEGACY_RX) &&
263 (adapter->netdev->mtu <= ETH_DATA_LEN))
264 max_frame = IAVF_RXBUFFER_1536 - NET_IP_ALIGN;
265
266 vqci->vsi_id = adapter->vsi_res->vsi_id;
267 vqci->num_queue_pairs = pairs;
268 vqpi = vqci->qpair;
269
270
271
272 for (i = 0; i < pairs; i++) {
273 vqpi->txq.vsi_id = vqci->vsi_id;
274 vqpi->txq.queue_id = i;
275 vqpi->txq.ring_len = adapter->tx_rings[i].count;
276 vqpi->txq.dma_ring_addr = adapter->tx_rings[i].dma;
277 vqpi->rxq.vsi_id = vqci->vsi_id;
278 vqpi->rxq.queue_id = i;
279 vqpi->rxq.ring_len = adapter->rx_rings[i].count;
280 vqpi->rxq.dma_ring_addr = adapter->rx_rings[i].dma;
281 vqpi->rxq.max_pkt_size = max_frame;
282 vqpi->rxq.databuffer_size =
283 ALIGN(adapter->rx_rings[i].rx_buf_len,
284 BIT_ULL(IAVF_RXQ_CTX_DBUFF_SHIFT));
285 vqpi++;
286 }
287
288 adapter->aq_required &= ~IAVF_FLAG_AQ_CONFIGURE_QUEUES;
289 iavf_send_pf_msg(adapter, VIRTCHNL_OP_CONFIG_VSI_QUEUES,
290 (u8 *)vqci, len);
291 kfree(vqci);
292}
293
294
295
296
297
298
299
300void iavf_enable_queues(struct iavf_adapter *adapter)
301{
302 struct virtchnl_queue_select vqs;
303
304 if (adapter->current_op != VIRTCHNL_OP_UNKNOWN) {
305
306 dev_err(&adapter->pdev->dev, "Cannot enable queues, command %d pending\n",
307 adapter->current_op);
308 return;
309 }
310 adapter->current_op = VIRTCHNL_OP_ENABLE_QUEUES;
311 vqs.vsi_id = adapter->vsi_res->vsi_id;
312 vqs.tx_queues = BIT(adapter->num_active_queues) - 1;
313 vqs.rx_queues = vqs.tx_queues;
314 adapter->aq_required &= ~IAVF_FLAG_AQ_ENABLE_QUEUES;
315 iavf_send_pf_msg(adapter, VIRTCHNL_OP_ENABLE_QUEUES,
316 (u8 *)&vqs, sizeof(vqs));
317}
318
319
320
321
322
323
324
325void iavf_disable_queues(struct iavf_adapter *adapter)
326{
327 struct virtchnl_queue_select vqs;
328
329 if (adapter->current_op != VIRTCHNL_OP_UNKNOWN) {
330
331 dev_err(&adapter->pdev->dev, "Cannot disable queues, command %d pending\n",
332 adapter->current_op);
333 return;
334 }
335 adapter->current_op = VIRTCHNL_OP_DISABLE_QUEUES;
336 vqs.vsi_id = adapter->vsi_res->vsi_id;
337 vqs.tx_queues = BIT(adapter->num_active_queues) - 1;
338 vqs.rx_queues = vqs.tx_queues;
339 adapter->aq_required &= ~IAVF_FLAG_AQ_DISABLE_QUEUES;
340 iavf_send_pf_msg(adapter, VIRTCHNL_OP_DISABLE_QUEUES,
341 (u8 *)&vqs, sizeof(vqs));
342}
343
344
345
346
347
348
349
350
351void iavf_map_queues(struct iavf_adapter *adapter)
352{
353 struct virtchnl_irq_map_info *vimi;
354 struct virtchnl_vector_map *vecmap;
355 struct iavf_q_vector *q_vector;
356 int v_idx, q_vectors;
357 size_t len;
358
359 if (adapter->current_op != VIRTCHNL_OP_UNKNOWN) {
360
361 dev_err(&adapter->pdev->dev, "Cannot map queues to vectors, command %d pending\n",
362 adapter->current_op);
363 return;
364 }
365 adapter->current_op = VIRTCHNL_OP_CONFIG_IRQ_MAP;
366
367 q_vectors = adapter->num_msix_vectors - NONQ_VECS;
368
369 len = struct_size(vimi, vecmap, adapter->num_msix_vectors);
370 vimi = kzalloc(len, GFP_KERNEL);
371 if (!vimi)
372 return;
373
374 vimi->num_vectors = adapter->num_msix_vectors;
375
376 for (v_idx = 0; v_idx < q_vectors; v_idx++) {
377 q_vector = &adapter->q_vectors[v_idx];
378 vecmap = &vimi->vecmap[v_idx];
379
380 vecmap->vsi_id = adapter->vsi_res->vsi_id;
381 vecmap->vector_id = v_idx + NONQ_VECS;
382 vecmap->txq_map = q_vector->ring_mask;
383 vecmap->rxq_map = q_vector->ring_mask;
384 vecmap->rxitr_idx = IAVF_RX_ITR;
385 vecmap->txitr_idx = IAVF_TX_ITR;
386 }
387
388 vecmap = &vimi->vecmap[v_idx];
389 vecmap->vsi_id = adapter->vsi_res->vsi_id;
390 vecmap->vector_id = 0;
391 vecmap->txq_map = 0;
392 vecmap->rxq_map = 0;
393
394 adapter->aq_required &= ~IAVF_FLAG_AQ_MAP_VECTORS;
395 iavf_send_pf_msg(adapter, VIRTCHNL_OP_CONFIG_IRQ_MAP,
396 (u8 *)vimi, len);
397 kfree(vimi);
398}
399
400
401
402
403
404
405
406void iavf_add_ether_addrs(struct iavf_adapter *adapter)
407{
408 struct virtchnl_ether_addr_list *veal;
409 struct iavf_mac_filter *f;
410 int i = 0, count = 0;
411 bool more = false;
412 size_t len;
413
414 if (adapter->current_op != VIRTCHNL_OP_UNKNOWN) {
415
416 dev_err(&adapter->pdev->dev, "Cannot add filters, command %d pending\n",
417 adapter->current_op);
418 return;
419 }
420
421 spin_lock_bh(&adapter->mac_vlan_list_lock);
422
423 list_for_each_entry(f, &adapter->mac_filter_list, list) {
424 if (f->add)
425 count++;
426 }
427 if (!count) {
428 adapter->aq_required &= ~IAVF_FLAG_AQ_ADD_MAC_FILTER;
429 spin_unlock_bh(&adapter->mac_vlan_list_lock);
430 return;
431 }
432 adapter->current_op = VIRTCHNL_OP_ADD_ETH_ADDR;
433
434 len = struct_size(veal, list, count);
435 if (len > IAVF_MAX_AQ_BUF_SIZE) {
436 dev_warn(&adapter->pdev->dev, "Too many add MAC changes in one request\n");
437 count = (IAVF_MAX_AQ_BUF_SIZE -
438 sizeof(struct virtchnl_ether_addr_list)) /
439 sizeof(struct virtchnl_ether_addr);
440 len = struct_size(veal, list, count);
441 more = true;
442 }
443
444 veal = kzalloc(len, GFP_ATOMIC);
445 if (!veal) {
446 spin_unlock_bh(&adapter->mac_vlan_list_lock);
447 return;
448 }
449
450 veal->vsi_id = adapter->vsi_res->vsi_id;
451 veal->num_elements = count;
452 list_for_each_entry(f, &adapter->mac_filter_list, list) {
453 if (f->add) {
454 ether_addr_copy(veal->list[i].addr, f->macaddr);
455 i++;
456 f->add = false;
457 if (i == count)
458 break;
459 }
460 }
461 if (!more)
462 adapter->aq_required &= ~IAVF_FLAG_AQ_ADD_MAC_FILTER;
463
464 spin_unlock_bh(&adapter->mac_vlan_list_lock);
465
466 iavf_send_pf_msg(adapter, VIRTCHNL_OP_ADD_ETH_ADDR, (u8 *)veal, len);
467 kfree(veal);
468}
469
470
471
472
473
474
475
476void iavf_del_ether_addrs(struct iavf_adapter *adapter)
477{
478 struct virtchnl_ether_addr_list *veal;
479 struct iavf_mac_filter *f, *ftmp;
480 int i = 0, count = 0;
481 bool more = false;
482 size_t len;
483
484 if (adapter->current_op != VIRTCHNL_OP_UNKNOWN) {
485
486 dev_err(&adapter->pdev->dev, "Cannot remove filters, command %d pending\n",
487 adapter->current_op);
488 return;
489 }
490
491 spin_lock_bh(&adapter->mac_vlan_list_lock);
492
493 list_for_each_entry(f, &adapter->mac_filter_list, list) {
494 if (f->remove)
495 count++;
496 }
497 if (!count) {
498 adapter->aq_required &= ~IAVF_FLAG_AQ_DEL_MAC_FILTER;
499 spin_unlock_bh(&adapter->mac_vlan_list_lock);
500 return;
501 }
502 adapter->current_op = VIRTCHNL_OP_DEL_ETH_ADDR;
503
504 len = struct_size(veal, list, count);
505 if (len > IAVF_MAX_AQ_BUF_SIZE) {
506 dev_warn(&adapter->pdev->dev, "Too many delete MAC changes in one request\n");
507 count = (IAVF_MAX_AQ_BUF_SIZE -
508 sizeof(struct virtchnl_ether_addr_list)) /
509 sizeof(struct virtchnl_ether_addr);
510 len = struct_size(veal, list, count);
511 more = true;
512 }
513 veal = kzalloc(len, GFP_ATOMIC);
514 if (!veal) {
515 spin_unlock_bh(&adapter->mac_vlan_list_lock);
516 return;
517 }
518
519 veal->vsi_id = adapter->vsi_res->vsi_id;
520 veal->num_elements = count;
521 list_for_each_entry_safe(f, ftmp, &adapter->mac_filter_list, list) {
522 if (f->remove) {
523 ether_addr_copy(veal->list[i].addr, f->macaddr);
524 i++;
525 list_del(&f->list);
526 kfree(f);
527 if (i == count)
528 break;
529 }
530 }
531 if (!more)
532 adapter->aq_required &= ~IAVF_FLAG_AQ_DEL_MAC_FILTER;
533
534 spin_unlock_bh(&adapter->mac_vlan_list_lock);
535
536 iavf_send_pf_msg(adapter, VIRTCHNL_OP_DEL_ETH_ADDR, (u8 *)veal, len);
537 kfree(veal);
538}
539
540
541
542
543
544
545
546void iavf_add_vlans(struct iavf_adapter *adapter)
547{
548 struct virtchnl_vlan_filter_list *vvfl;
549 int len, i = 0, count = 0;
550 struct iavf_vlan_filter *f;
551 bool more = false;
552
553 if (adapter->current_op != VIRTCHNL_OP_UNKNOWN) {
554
555 dev_err(&adapter->pdev->dev, "Cannot add VLANs, command %d pending\n",
556 adapter->current_op);
557 return;
558 }
559
560 spin_lock_bh(&adapter->mac_vlan_list_lock);
561
562 list_for_each_entry(f, &adapter->vlan_filter_list, list) {
563 if (f->add)
564 count++;
565 }
566 if (!count) {
567 adapter->aq_required &= ~IAVF_FLAG_AQ_ADD_VLAN_FILTER;
568 spin_unlock_bh(&adapter->mac_vlan_list_lock);
569 return;
570 }
571 adapter->current_op = VIRTCHNL_OP_ADD_VLAN;
572
573 len = sizeof(struct virtchnl_vlan_filter_list) +
574 (count * sizeof(u16));
575 if (len > IAVF_MAX_AQ_BUF_SIZE) {
576 dev_warn(&adapter->pdev->dev, "Too many add VLAN changes in one request\n");
577 count = (IAVF_MAX_AQ_BUF_SIZE -
578 sizeof(struct virtchnl_vlan_filter_list)) /
579 sizeof(u16);
580 len = sizeof(struct virtchnl_vlan_filter_list) +
581 (count * sizeof(u16));
582 more = true;
583 }
584 vvfl = kzalloc(len, GFP_ATOMIC);
585 if (!vvfl) {
586 spin_unlock_bh(&adapter->mac_vlan_list_lock);
587 return;
588 }
589
590 vvfl->vsi_id = adapter->vsi_res->vsi_id;
591 vvfl->num_elements = count;
592 list_for_each_entry(f, &adapter->vlan_filter_list, list) {
593 if (f->add) {
594 vvfl->vlan_id[i] = f->vlan;
595 i++;
596 f->add = false;
597 if (i == count)
598 break;
599 }
600 }
601 if (!more)
602 adapter->aq_required &= ~IAVF_FLAG_AQ_ADD_VLAN_FILTER;
603
604 spin_unlock_bh(&adapter->mac_vlan_list_lock);
605
606 iavf_send_pf_msg(adapter, VIRTCHNL_OP_ADD_VLAN, (u8 *)vvfl, len);
607 kfree(vvfl);
608}
609
610
611
612
613
614
615
616void iavf_del_vlans(struct iavf_adapter *adapter)
617{
618 struct virtchnl_vlan_filter_list *vvfl;
619 struct iavf_vlan_filter *f, *ftmp;
620 int len, i = 0, count = 0;
621 bool more = false;
622
623 if (adapter->current_op != VIRTCHNL_OP_UNKNOWN) {
624
625 dev_err(&adapter->pdev->dev, "Cannot remove VLANs, command %d pending\n",
626 adapter->current_op);
627 return;
628 }
629
630 spin_lock_bh(&adapter->mac_vlan_list_lock);
631
632 list_for_each_entry(f, &adapter->vlan_filter_list, list) {
633 if (f->remove)
634 count++;
635 }
636 if (!count) {
637 adapter->aq_required &= ~IAVF_FLAG_AQ_DEL_VLAN_FILTER;
638 spin_unlock_bh(&adapter->mac_vlan_list_lock);
639 return;
640 }
641 adapter->current_op = VIRTCHNL_OP_DEL_VLAN;
642
643 len = sizeof(struct virtchnl_vlan_filter_list) +
644 (count * sizeof(u16));
645 if (len > IAVF_MAX_AQ_BUF_SIZE) {
646 dev_warn(&adapter->pdev->dev, "Too many delete VLAN changes in one request\n");
647 count = (IAVF_MAX_AQ_BUF_SIZE -
648 sizeof(struct virtchnl_vlan_filter_list)) /
649 sizeof(u16);
650 len = sizeof(struct virtchnl_vlan_filter_list) +
651 (count * sizeof(u16));
652 more = true;
653 }
654 vvfl = kzalloc(len, GFP_ATOMIC);
655 if (!vvfl) {
656 spin_unlock_bh(&adapter->mac_vlan_list_lock);
657 return;
658 }
659
660 vvfl->vsi_id = adapter->vsi_res->vsi_id;
661 vvfl->num_elements = count;
662 list_for_each_entry_safe(f, ftmp, &adapter->vlan_filter_list, list) {
663 if (f->remove) {
664 vvfl->vlan_id[i] = f->vlan;
665 i++;
666 list_del(&f->list);
667 kfree(f);
668 if (i == count)
669 break;
670 }
671 }
672 if (!more)
673 adapter->aq_required &= ~IAVF_FLAG_AQ_DEL_VLAN_FILTER;
674
675 spin_unlock_bh(&adapter->mac_vlan_list_lock);
676
677 iavf_send_pf_msg(adapter, VIRTCHNL_OP_DEL_VLAN, (u8 *)vvfl, len);
678 kfree(vvfl);
679}
680
681
682
683
684
685
686
687
688void iavf_set_promiscuous(struct iavf_adapter *adapter, int flags)
689{
690 struct virtchnl_promisc_info vpi;
691 int promisc_all;
692
693 if (adapter->current_op != VIRTCHNL_OP_UNKNOWN) {
694
695 dev_err(&adapter->pdev->dev, "Cannot set promiscuous mode, command %d pending\n",
696 adapter->current_op);
697 return;
698 }
699
700 promisc_all = FLAG_VF_UNICAST_PROMISC |
701 FLAG_VF_MULTICAST_PROMISC;
702 if ((flags & promisc_all) == promisc_all) {
703 adapter->flags |= IAVF_FLAG_PROMISC_ON;
704 adapter->aq_required &= ~IAVF_FLAG_AQ_REQUEST_PROMISC;
705 dev_info(&adapter->pdev->dev, "Entering promiscuous mode\n");
706 }
707
708 if (flags & FLAG_VF_MULTICAST_PROMISC) {
709 adapter->flags |= IAVF_FLAG_ALLMULTI_ON;
710 adapter->aq_required &= ~IAVF_FLAG_AQ_REQUEST_ALLMULTI;
711 dev_info(&adapter->pdev->dev, "Entering multicast promiscuous mode\n");
712 }
713
714 if (!flags) {
715 adapter->flags &= ~(IAVF_FLAG_PROMISC_ON |
716 IAVF_FLAG_ALLMULTI_ON);
717 adapter->aq_required &= ~(IAVF_FLAG_AQ_RELEASE_PROMISC |
718 IAVF_FLAG_AQ_RELEASE_ALLMULTI);
719 dev_info(&adapter->pdev->dev, "Leaving promiscuous mode\n");
720 }
721
722 adapter->current_op = VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE;
723 vpi.vsi_id = adapter->vsi_res->vsi_id;
724 vpi.flags = flags;
725 iavf_send_pf_msg(adapter, VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE,
726 (u8 *)&vpi, sizeof(vpi));
727}
728
729
730
731
732
733
734
735void iavf_request_stats(struct iavf_adapter *adapter)
736{
737 struct virtchnl_queue_select vqs;
738
739 if (adapter->current_op != VIRTCHNL_OP_UNKNOWN) {
740
741 return;
742 }
743 adapter->current_op = VIRTCHNL_OP_GET_STATS;
744 vqs.vsi_id = adapter->vsi_res->vsi_id;
745
746 if (iavf_send_pf_msg(adapter, VIRTCHNL_OP_GET_STATS, (u8 *)&vqs,
747 sizeof(vqs)))
748
749 adapter->current_op = VIRTCHNL_OP_UNKNOWN;
750}
751
752
753
754
755
756
757
758void iavf_get_hena(struct iavf_adapter *adapter)
759{
760 if (adapter->current_op != VIRTCHNL_OP_UNKNOWN) {
761
762 dev_err(&adapter->pdev->dev, "Cannot get RSS hash capabilities, command %d pending\n",
763 adapter->current_op);
764 return;
765 }
766 adapter->current_op = VIRTCHNL_OP_GET_RSS_HENA_CAPS;
767 adapter->aq_required &= ~IAVF_FLAG_AQ_GET_HENA;
768 iavf_send_pf_msg(adapter, VIRTCHNL_OP_GET_RSS_HENA_CAPS, NULL, 0);
769}
770
771
772
773
774
775
776
777void iavf_set_hena(struct iavf_adapter *adapter)
778{
779 struct virtchnl_rss_hena vrh;
780
781 if (adapter->current_op != VIRTCHNL_OP_UNKNOWN) {
782
783 dev_err(&adapter->pdev->dev, "Cannot set RSS hash enable, command %d pending\n",
784 adapter->current_op);
785 return;
786 }
787 vrh.hena = adapter->hena;
788 adapter->current_op = VIRTCHNL_OP_SET_RSS_HENA;
789 adapter->aq_required &= ~IAVF_FLAG_AQ_SET_HENA;
790 iavf_send_pf_msg(adapter, VIRTCHNL_OP_SET_RSS_HENA, (u8 *)&vrh,
791 sizeof(vrh));
792}
793
794
795
796
797
798
799
800void iavf_set_rss_key(struct iavf_adapter *adapter)
801{
802 struct virtchnl_rss_key *vrk;
803 int len;
804
805 if (adapter->current_op != VIRTCHNL_OP_UNKNOWN) {
806
807 dev_err(&adapter->pdev->dev, "Cannot set RSS key, command %d pending\n",
808 adapter->current_op);
809 return;
810 }
811 len = sizeof(struct virtchnl_rss_key) +
812 (adapter->rss_key_size * sizeof(u8)) - 1;
813 vrk = kzalloc(len, GFP_KERNEL);
814 if (!vrk)
815 return;
816 vrk->vsi_id = adapter->vsi.id;
817 vrk->key_len = adapter->rss_key_size;
818 memcpy(vrk->key, adapter->rss_key, adapter->rss_key_size);
819
820 adapter->current_op = VIRTCHNL_OP_CONFIG_RSS_KEY;
821 adapter->aq_required &= ~IAVF_FLAG_AQ_SET_RSS_KEY;
822 iavf_send_pf_msg(adapter, VIRTCHNL_OP_CONFIG_RSS_KEY, (u8 *)vrk, len);
823 kfree(vrk);
824}
825
826
827
828
829
830
831
832void iavf_set_rss_lut(struct iavf_adapter *adapter)
833{
834 struct virtchnl_rss_lut *vrl;
835 int len;
836
837 if (adapter->current_op != VIRTCHNL_OP_UNKNOWN) {
838
839 dev_err(&adapter->pdev->dev, "Cannot set RSS LUT, command %d pending\n",
840 adapter->current_op);
841 return;
842 }
843 len = sizeof(struct virtchnl_rss_lut) +
844 (adapter->rss_lut_size * sizeof(u8)) - 1;
845 vrl = kzalloc(len, GFP_KERNEL);
846 if (!vrl)
847 return;
848 vrl->vsi_id = adapter->vsi.id;
849 vrl->lut_entries = adapter->rss_lut_size;
850 memcpy(vrl->lut, adapter->rss_lut, adapter->rss_lut_size);
851 adapter->current_op = VIRTCHNL_OP_CONFIG_RSS_LUT;
852 adapter->aq_required &= ~IAVF_FLAG_AQ_SET_RSS_LUT;
853 iavf_send_pf_msg(adapter, VIRTCHNL_OP_CONFIG_RSS_LUT, (u8 *)vrl, len);
854 kfree(vrl);
855}
856
857
858
859
860
861
862
863void iavf_enable_vlan_stripping(struct iavf_adapter *adapter)
864{
865 if (adapter->current_op != VIRTCHNL_OP_UNKNOWN) {
866
867 dev_err(&adapter->pdev->dev, "Cannot enable stripping, command %d pending\n",
868 adapter->current_op);
869 return;
870 }
871 adapter->current_op = VIRTCHNL_OP_ENABLE_VLAN_STRIPPING;
872 adapter->aq_required &= ~IAVF_FLAG_AQ_ENABLE_VLAN_STRIPPING;
873 iavf_send_pf_msg(adapter, VIRTCHNL_OP_ENABLE_VLAN_STRIPPING, NULL, 0);
874}
875
876
877
878
879
880
881
882void iavf_disable_vlan_stripping(struct iavf_adapter *adapter)
883{
884 if (adapter->current_op != VIRTCHNL_OP_UNKNOWN) {
885
886 dev_err(&adapter->pdev->dev, "Cannot disable stripping, command %d pending\n",
887 adapter->current_op);
888 return;
889 }
890 adapter->current_op = VIRTCHNL_OP_DISABLE_VLAN_STRIPPING;
891 adapter->aq_required &= ~IAVF_FLAG_AQ_DISABLE_VLAN_STRIPPING;
892 iavf_send_pf_msg(adapter, VIRTCHNL_OP_DISABLE_VLAN_STRIPPING, NULL, 0);
893}
894
895#define IAVF_MAX_SPEED_STRLEN 13
896
897
898
899
900
901
902
903static void iavf_print_link_message(struct iavf_adapter *adapter)
904{
905 struct net_device *netdev = adapter->netdev;
906 int link_speed_mbps;
907 char *speed;
908
909 if (!adapter->link_up) {
910 netdev_info(netdev, "NIC Link is Down\n");
911 return;
912 }
913
914 speed = kcalloc(1, IAVF_MAX_SPEED_STRLEN, GFP_KERNEL);
915 if (!speed)
916 return;
917
918 if (ADV_LINK_SUPPORT(adapter)) {
919 link_speed_mbps = adapter->link_speed_mbps;
920 goto print_link_msg;
921 }
922
923 switch (adapter->link_speed) {
924 case VIRTCHNL_LINK_SPEED_40GB:
925 link_speed_mbps = SPEED_40000;
926 break;
927 case VIRTCHNL_LINK_SPEED_25GB:
928 link_speed_mbps = SPEED_25000;
929 break;
930 case VIRTCHNL_LINK_SPEED_20GB:
931 link_speed_mbps = SPEED_20000;
932 break;
933 case VIRTCHNL_LINK_SPEED_10GB:
934 link_speed_mbps = SPEED_10000;
935 break;
936 case VIRTCHNL_LINK_SPEED_5GB:
937 link_speed_mbps = SPEED_5000;
938 break;
939 case VIRTCHNL_LINK_SPEED_2_5GB:
940 link_speed_mbps = SPEED_2500;
941 break;
942 case VIRTCHNL_LINK_SPEED_1GB:
943 link_speed_mbps = SPEED_1000;
944 break;
945 case VIRTCHNL_LINK_SPEED_100MB:
946 link_speed_mbps = SPEED_100;
947 break;
948 default:
949 link_speed_mbps = SPEED_UNKNOWN;
950 break;
951 }
952
953print_link_msg:
954 if (link_speed_mbps > SPEED_1000) {
955 if (link_speed_mbps == SPEED_2500)
956 snprintf(speed, IAVF_MAX_SPEED_STRLEN, "2.5 Gbps");
957 else
958
959 snprintf(speed, IAVF_MAX_SPEED_STRLEN, "%d %s",
960 link_speed_mbps / 1000, "Gbps");
961 } else if (link_speed_mbps == SPEED_UNKNOWN) {
962 snprintf(speed, IAVF_MAX_SPEED_STRLEN, "%s", "Unknown Mbps");
963 } else {
964 snprintf(speed, IAVF_MAX_SPEED_STRLEN, "%u %s",
965 link_speed_mbps, "Mbps");
966 }
967
968 netdev_info(netdev, "NIC Link is Up Speed is %s Full Duplex\n", speed);
969 kfree(speed);
970}
971
972
973
974
975
976
977
978
979static bool
980iavf_get_vpe_link_status(struct iavf_adapter *adapter,
981 struct virtchnl_pf_event *vpe)
982{
983 if (ADV_LINK_SUPPORT(adapter))
984 return vpe->event_data.link_event_adv.link_status;
985 else
986 return vpe->event_data.link_event.link_status;
987}
988
989
990
991
992
993
994
995
996static void
997iavf_set_adapter_link_speed_from_vpe(struct iavf_adapter *adapter,
998 struct virtchnl_pf_event *vpe)
999{
1000 if (ADV_LINK_SUPPORT(adapter))
1001 adapter->link_speed_mbps =
1002 vpe->event_data.link_event_adv.link_speed;
1003 else
1004 adapter->link_speed = vpe->event_data.link_event.link_speed;
1005}
1006
1007
1008
1009
1010
1011
1012
1013
1014void iavf_enable_channels(struct iavf_adapter *adapter)
1015{
1016 struct virtchnl_tc_info *vti = NULL;
1017 size_t len;
1018 int i;
1019
1020 if (adapter->current_op != VIRTCHNL_OP_UNKNOWN) {
1021
1022 dev_err(&adapter->pdev->dev, "Cannot configure mqprio, command %d pending\n",
1023 adapter->current_op);
1024 return;
1025 }
1026
1027 len = struct_size(vti, list, adapter->num_tc - 1);
1028 vti = kzalloc(len, GFP_KERNEL);
1029 if (!vti)
1030 return;
1031 vti->num_tc = adapter->num_tc;
1032 for (i = 0; i < vti->num_tc; i++) {
1033 vti->list[i].count = adapter->ch_config.ch_info[i].count;
1034 vti->list[i].offset = adapter->ch_config.ch_info[i].offset;
1035 vti->list[i].pad = 0;
1036 vti->list[i].max_tx_rate =
1037 adapter->ch_config.ch_info[i].max_tx_rate;
1038 }
1039
1040 adapter->ch_config.state = __IAVF_TC_RUNNING;
1041 adapter->flags |= IAVF_FLAG_REINIT_ITR_NEEDED;
1042 adapter->current_op = VIRTCHNL_OP_ENABLE_CHANNELS;
1043 adapter->aq_required &= ~IAVF_FLAG_AQ_ENABLE_CHANNELS;
1044 iavf_send_pf_msg(adapter, VIRTCHNL_OP_ENABLE_CHANNELS, (u8 *)vti, len);
1045 kfree(vti);
1046}
1047
1048
1049
1050
1051
1052
1053
1054void iavf_disable_channels(struct iavf_adapter *adapter)
1055{
1056 if (adapter->current_op != VIRTCHNL_OP_UNKNOWN) {
1057
1058 dev_err(&adapter->pdev->dev, "Cannot configure mqprio, command %d pending\n",
1059 adapter->current_op);
1060 return;
1061 }
1062
1063 adapter->ch_config.state = __IAVF_TC_INVALID;
1064 adapter->flags |= IAVF_FLAG_REINIT_ITR_NEEDED;
1065 adapter->current_op = VIRTCHNL_OP_DISABLE_CHANNELS;
1066 adapter->aq_required &= ~IAVF_FLAG_AQ_DISABLE_CHANNELS;
1067 iavf_send_pf_msg(adapter, VIRTCHNL_OP_DISABLE_CHANNELS, NULL, 0);
1068}
1069
1070
1071
1072
1073
1074
1075
1076
1077static void iavf_print_cloud_filter(struct iavf_adapter *adapter,
1078 struct virtchnl_filter *f)
1079{
1080 switch (f->flow_type) {
1081 case VIRTCHNL_TCP_V4_FLOW:
1082 dev_info(&adapter->pdev->dev, "dst_mac: %pM src_mac: %pM vlan_id: %hu dst_ip: %pI4 src_ip %pI4 dst_port %hu src_port %hu\n",
1083 &f->data.tcp_spec.dst_mac,
1084 &f->data.tcp_spec.src_mac,
1085 ntohs(f->data.tcp_spec.vlan_id),
1086 &f->data.tcp_spec.dst_ip[0],
1087 &f->data.tcp_spec.src_ip[0],
1088 ntohs(f->data.tcp_spec.dst_port),
1089 ntohs(f->data.tcp_spec.src_port));
1090 break;
1091 case VIRTCHNL_TCP_V6_FLOW:
1092 dev_info(&adapter->pdev->dev, "dst_mac: %pM src_mac: %pM vlan_id: %hu dst_ip: %pI6 src_ip %pI6 dst_port %hu src_port %hu\n",
1093 &f->data.tcp_spec.dst_mac,
1094 &f->data.tcp_spec.src_mac,
1095 ntohs(f->data.tcp_spec.vlan_id),
1096 &f->data.tcp_spec.dst_ip,
1097 &f->data.tcp_spec.src_ip,
1098 ntohs(f->data.tcp_spec.dst_port),
1099 ntohs(f->data.tcp_spec.src_port));
1100 break;
1101 }
1102}
1103
1104
1105
1106
1107
1108
1109
1110
1111void iavf_add_cloud_filter(struct iavf_adapter *adapter)
1112{
1113 struct iavf_cloud_filter *cf;
1114 struct virtchnl_filter *f;
1115 int len = 0, count = 0;
1116
1117 if (adapter->current_op != VIRTCHNL_OP_UNKNOWN) {
1118
1119 dev_err(&adapter->pdev->dev, "Cannot add cloud filter, command %d pending\n",
1120 adapter->current_op);
1121 return;
1122 }
1123 list_for_each_entry(cf, &adapter->cloud_filter_list, list) {
1124 if (cf->add) {
1125 count++;
1126 break;
1127 }
1128 }
1129 if (!count) {
1130 adapter->aq_required &= ~IAVF_FLAG_AQ_ADD_CLOUD_FILTER;
1131 return;
1132 }
1133 adapter->current_op = VIRTCHNL_OP_ADD_CLOUD_FILTER;
1134
1135 len = sizeof(struct virtchnl_filter);
1136 f = kzalloc(len, GFP_KERNEL);
1137 if (!f)
1138 return;
1139
1140 list_for_each_entry(cf, &adapter->cloud_filter_list, list) {
1141 if (cf->add) {
1142 memcpy(f, &cf->f, sizeof(struct virtchnl_filter));
1143 cf->add = false;
1144 cf->state = __IAVF_CF_ADD_PENDING;
1145 iavf_send_pf_msg(adapter, VIRTCHNL_OP_ADD_CLOUD_FILTER,
1146 (u8 *)f, len);
1147 }
1148 }
1149 kfree(f);
1150}
1151
1152
1153
1154
1155
1156
1157
1158
1159void iavf_del_cloud_filter(struct iavf_adapter *adapter)
1160{
1161 struct iavf_cloud_filter *cf, *cftmp;
1162 struct virtchnl_filter *f;
1163 int len = 0, count = 0;
1164
1165 if (adapter->current_op != VIRTCHNL_OP_UNKNOWN) {
1166
1167 dev_err(&adapter->pdev->dev, "Cannot remove cloud filter, command %d pending\n",
1168 adapter->current_op);
1169 return;
1170 }
1171 list_for_each_entry(cf, &adapter->cloud_filter_list, list) {
1172 if (cf->del) {
1173 count++;
1174 break;
1175 }
1176 }
1177 if (!count) {
1178 adapter->aq_required &= ~IAVF_FLAG_AQ_DEL_CLOUD_FILTER;
1179 return;
1180 }
1181 adapter->current_op = VIRTCHNL_OP_DEL_CLOUD_FILTER;
1182
1183 len = sizeof(struct virtchnl_filter);
1184 f = kzalloc(len, GFP_KERNEL);
1185 if (!f)
1186 return;
1187
1188 list_for_each_entry_safe(cf, cftmp, &adapter->cloud_filter_list, list) {
1189 if (cf->del) {
1190 memcpy(f, &cf->f, sizeof(struct virtchnl_filter));
1191 cf->del = false;
1192 cf->state = __IAVF_CF_DEL_PENDING;
1193 iavf_send_pf_msg(adapter, VIRTCHNL_OP_DEL_CLOUD_FILTER,
1194 (u8 *)f, len);
1195 }
1196 }
1197 kfree(f);
1198}
1199
1200
1201
1202
1203
1204
1205
1206void iavf_request_reset(struct iavf_adapter *adapter)
1207{
1208
1209 iavf_send_pf_msg(adapter, VIRTCHNL_OP_RESET_VF, NULL, 0);
1210 adapter->current_op = VIRTCHNL_OP_UNKNOWN;
1211}
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225void iavf_virtchnl_completion(struct iavf_adapter *adapter,
1226 enum virtchnl_ops v_opcode,
1227 enum iavf_status v_retval, u8 *msg, u16 msglen)
1228{
1229 struct net_device *netdev = adapter->netdev;
1230
1231 if (v_opcode == VIRTCHNL_OP_EVENT) {
1232 struct virtchnl_pf_event *vpe =
1233 (struct virtchnl_pf_event *)msg;
1234 bool link_up = iavf_get_vpe_link_status(adapter, vpe);
1235
1236 switch (vpe->event) {
1237 case VIRTCHNL_EVENT_LINK_CHANGE:
1238 iavf_set_adapter_link_speed_from_vpe(adapter, vpe);
1239
1240
1241 if (adapter->link_up == link_up)
1242 break;
1243
1244 if (link_up) {
1245
1246
1247
1248
1249
1250
1251
1252 if (adapter->state != __IAVF_RUNNING)
1253 break;
1254
1255
1256
1257
1258
1259 if (adapter->flags &
1260 IAVF_FLAG_QUEUES_DISABLED)
1261 break;
1262 }
1263
1264 adapter->link_up = link_up;
1265 if (link_up) {
1266 netif_tx_start_all_queues(netdev);
1267 netif_carrier_on(netdev);
1268 } else {
1269 netif_tx_stop_all_queues(netdev);
1270 netif_carrier_off(netdev);
1271 }
1272 iavf_print_link_message(adapter);
1273 break;
1274 case VIRTCHNL_EVENT_RESET_IMPENDING:
1275 dev_info(&adapter->pdev->dev, "Reset warning received from the PF\n");
1276 if (!(adapter->flags & IAVF_FLAG_RESET_PENDING)) {
1277 adapter->flags |= IAVF_FLAG_RESET_PENDING;
1278 dev_info(&adapter->pdev->dev, "Scheduling reset task\n");
1279 queue_work(iavf_wq, &adapter->reset_task);
1280 }
1281 break;
1282 default:
1283 dev_err(&adapter->pdev->dev, "Unknown event %d from PF\n",
1284 vpe->event);
1285 break;
1286 }
1287 return;
1288 }
1289 if (v_retval) {
1290 switch (v_opcode) {
1291 case VIRTCHNL_OP_ADD_VLAN:
1292 dev_err(&adapter->pdev->dev, "Failed to add VLAN filter, error %s\n",
1293 iavf_stat_str(&adapter->hw, v_retval));
1294 break;
1295 case VIRTCHNL_OP_ADD_ETH_ADDR:
1296 dev_err(&adapter->pdev->dev, "Failed to add MAC filter, error %s\n",
1297 iavf_stat_str(&adapter->hw, v_retval));
1298
1299 ether_addr_copy(adapter->hw.mac.addr, netdev->dev_addr);
1300 break;
1301 case VIRTCHNL_OP_DEL_VLAN:
1302 dev_err(&adapter->pdev->dev, "Failed to delete VLAN filter, error %s\n",
1303 iavf_stat_str(&adapter->hw, v_retval));
1304 break;
1305 case VIRTCHNL_OP_DEL_ETH_ADDR:
1306 dev_err(&adapter->pdev->dev, "Failed to delete MAC filter, error %s\n",
1307 iavf_stat_str(&adapter->hw, v_retval));
1308 break;
1309 case VIRTCHNL_OP_ENABLE_CHANNELS:
1310 dev_err(&adapter->pdev->dev, "Failed to configure queue channels, error %s\n",
1311 iavf_stat_str(&adapter->hw, v_retval));
1312 adapter->flags &= ~IAVF_FLAG_REINIT_ITR_NEEDED;
1313 adapter->ch_config.state = __IAVF_TC_INVALID;
1314 netdev_reset_tc(netdev);
1315 netif_tx_start_all_queues(netdev);
1316 break;
1317 case VIRTCHNL_OP_DISABLE_CHANNELS:
1318 dev_err(&adapter->pdev->dev, "Failed to disable queue channels, error %s\n",
1319 iavf_stat_str(&adapter->hw, v_retval));
1320 adapter->flags &= ~IAVF_FLAG_REINIT_ITR_NEEDED;
1321 adapter->ch_config.state = __IAVF_TC_RUNNING;
1322 netif_tx_start_all_queues(netdev);
1323 break;
1324 case VIRTCHNL_OP_ADD_CLOUD_FILTER: {
1325 struct iavf_cloud_filter *cf, *cftmp;
1326
1327 list_for_each_entry_safe(cf, cftmp,
1328 &adapter->cloud_filter_list,
1329 list) {
1330 if (cf->state == __IAVF_CF_ADD_PENDING) {
1331 cf->state = __IAVF_CF_INVALID;
1332 dev_info(&adapter->pdev->dev, "Failed to add cloud filter, error %s\n",
1333 iavf_stat_str(&adapter->hw,
1334 v_retval));
1335 iavf_print_cloud_filter(adapter,
1336 &cf->f);
1337 list_del(&cf->list);
1338 kfree(cf);
1339 adapter->num_cloud_filters--;
1340 }
1341 }
1342 }
1343 break;
1344 case VIRTCHNL_OP_DEL_CLOUD_FILTER: {
1345 struct iavf_cloud_filter *cf;
1346
1347 list_for_each_entry(cf, &adapter->cloud_filter_list,
1348 list) {
1349 if (cf->state == __IAVF_CF_DEL_PENDING) {
1350 cf->state = __IAVF_CF_ACTIVE;
1351 dev_info(&adapter->pdev->dev, "Failed to del cloud filter, error %s\n",
1352 iavf_stat_str(&adapter->hw,
1353 v_retval));
1354 iavf_print_cloud_filter(adapter,
1355 &cf->f);
1356 }
1357 }
1358 }
1359 break;
1360 default:
1361 dev_err(&adapter->pdev->dev, "PF returned error %d (%s) to our request %d\n",
1362 v_retval, iavf_stat_str(&adapter->hw, v_retval),
1363 v_opcode);
1364 }
1365 }
1366 switch (v_opcode) {
1367 case VIRTCHNL_OP_ADD_ETH_ADDR: {
1368 if (!ether_addr_equal(netdev->dev_addr, adapter->hw.mac.addr))
1369 ether_addr_copy(netdev->dev_addr, adapter->hw.mac.addr);
1370 }
1371 break;
1372 case VIRTCHNL_OP_GET_STATS: {
1373 struct iavf_eth_stats *stats =
1374 (struct iavf_eth_stats *)msg;
1375 netdev->stats.rx_packets = stats->rx_unicast +
1376 stats->rx_multicast +
1377 stats->rx_broadcast;
1378 netdev->stats.tx_packets = stats->tx_unicast +
1379 stats->tx_multicast +
1380 stats->tx_broadcast;
1381 netdev->stats.rx_bytes = stats->rx_bytes;
1382 netdev->stats.tx_bytes = stats->tx_bytes;
1383 netdev->stats.tx_errors = stats->tx_errors;
1384 netdev->stats.rx_dropped = stats->rx_discards;
1385 netdev->stats.tx_dropped = stats->tx_discards;
1386 adapter->current_stats = *stats;
1387 }
1388 break;
1389 case VIRTCHNL_OP_GET_VF_RESOURCES: {
1390 u16 len = sizeof(struct virtchnl_vf_resource) +
1391 IAVF_MAX_VF_VSI *
1392 sizeof(struct virtchnl_vsi_resource);
1393 memcpy(adapter->vf_res, msg, min(msglen, len));
1394 iavf_validate_num_queues(adapter);
1395 iavf_vf_parse_hw_config(&adapter->hw, adapter->vf_res);
1396 if (is_zero_ether_addr(adapter->hw.mac.addr)) {
1397
1398 ether_addr_copy(adapter->hw.mac.addr, netdev->dev_addr);
1399 } else {
1400
1401 ether_addr_copy(netdev->dev_addr, adapter->hw.mac.addr);
1402 ether_addr_copy(netdev->perm_addr,
1403 adapter->hw.mac.addr);
1404 }
1405 spin_lock_bh(&adapter->mac_vlan_list_lock);
1406 iavf_add_filter(adapter, adapter->hw.mac.addr);
1407 spin_unlock_bh(&adapter->mac_vlan_list_lock);
1408 iavf_process_config(adapter);
1409 }
1410 break;
1411 case VIRTCHNL_OP_ENABLE_QUEUES:
1412
1413 iavf_irq_enable(adapter, true);
1414 adapter->flags &= ~IAVF_FLAG_QUEUES_DISABLED;
1415 break;
1416 case VIRTCHNL_OP_DISABLE_QUEUES:
1417 iavf_free_all_tx_resources(adapter);
1418 iavf_free_all_rx_resources(adapter);
1419 if (adapter->state == __IAVF_DOWN_PENDING) {
1420 adapter->state = __IAVF_DOWN;
1421 wake_up(&adapter->down_waitqueue);
1422 }
1423 break;
1424 case VIRTCHNL_OP_VERSION:
1425 case VIRTCHNL_OP_CONFIG_IRQ_MAP:
1426
1427
1428
1429
1430 if (v_opcode != adapter->current_op)
1431 return;
1432 break;
1433 case VIRTCHNL_OP_IWARP:
1434
1435
1436
1437
1438 if (msglen && CLIENT_ENABLED(adapter))
1439 iavf_notify_client_message(&adapter->vsi, msg, msglen);
1440 break;
1441
1442 case VIRTCHNL_OP_CONFIG_IWARP_IRQ_MAP:
1443 adapter->client_pending &=
1444 ~(BIT(VIRTCHNL_OP_CONFIG_IWARP_IRQ_MAP));
1445 break;
1446 case VIRTCHNL_OP_GET_RSS_HENA_CAPS: {
1447 struct virtchnl_rss_hena *vrh = (struct virtchnl_rss_hena *)msg;
1448
1449 if (msglen == sizeof(*vrh))
1450 adapter->hena = vrh->hena;
1451 else
1452 dev_warn(&adapter->pdev->dev,
1453 "Invalid message %d from PF\n", v_opcode);
1454 }
1455 break;
1456 case VIRTCHNL_OP_REQUEST_QUEUES: {
1457 struct virtchnl_vf_res_request *vfres =
1458 (struct virtchnl_vf_res_request *)msg;
1459
1460 if (vfres->num_queue_pairs != adapter->num_req_queues) {
1461 dev_info(&adapter->pdev->dev,
1462 "Requested %d queues, PF can support %d\n",
1463 adapter->num_req_queues,
1464 vfres->num_queue_pairs);
1465 adapter->num_req_queues = 0;
1466 adapter->flags &= ~IAVF_FLAG_REINIT_ITR_NEEDED;
1467 }
1468 }
1469 break;
1470 case VIRTCHNL_OP_ADD_CLOUD_FILTER: {
1471 struct iavf_cloud_filter *cf;
1472
1473 list_for_each_entry(cf, &adapter->cloud_filter_list, list) {
1474 if (cf->state == __IAVF_CF_ADD_PENDING)
1475 cf->state = __IAVF_CF_ACTIVE;
1476 }
1477 }
1478 break;
1479 case VIRTCHNL_OP_DEL_CLOUD_FILTER: {
1480 struct iavf_cloud_filter *cf, *cftmp;
1481
1482 list_for_each_entry_safe(cf, cftmp, &adapter->cloud_filter_list,
1483 list) {
1484 if (cf->state == __IAVF_CF_DEL_PENDING) {
1485 cf->state = __IAVF_CF_INVALID;
1486 list_del(&cf->list);
1487 kfree(cf);
1488 adapter->num_cloud_filters--;
1489 }
1490 }
1491 }
1492 break;
1493 default:
1494 if (adapter->current_op && (v_opcode != adapter->current_op))
1495 dev_warn(&adapter->pdev->dev, "Expected response %d from PF, received %d\n",
1496 adapter->current_op, v_opcode);
1497 break;
1498 }
1499 adapter->current_op = VIRTCHNL_OP_UNKNOWN;
1500}
1501