GNU Linux-libre 6.8.9-gnu
[releases.git] / drivers / net / ethernet / intel / i40e / i40e_virtchnl_pf.c
1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright(c) 2013 - 2018 Intel Corporation. */
3
4 #include "i40e.h"
5 #include "i40e_lan_hmc.h"
6 #include "i40e_virtchnl_pf.h"
7
8 /*********************notification routines***********************/
9
10 /**
11  * i40e_vc_vf_broadcast
12  * @pf: pointer to the PF structure
13  * @v_opcode: operation code
14  * @v_retval: return value
15  * @msg: pointer to the msg buffer
16  * @msglen: msg length
17  *
18  * send a message to all VFs on a given PF
19  **/
20 static void i40e_vc_vf_broadcast(struct i40e_pf *pf,
21                                  enum virtchnl_ops v_opcode,
22                                  int v_retval, u8 *msg,
23                                  u16 msglen)
24 {
25         struct i40e_hw *hw = &pf->hw;
26         struct i40e_vf *vf = pf->vf;
27         int i;
28
29         for (i = 0; i < pf->num_alloc_vfs; i++, vf++) {
30                 int abs_vf_id = vf->vf_id + (int)hw->func_caps.vf_base_id;
31                 /* Not all vfs are enabled so skip the ones that are not */
32                 if (!test_bit(I40E_VF_STATE_INIT, &vf->vf_states) &&
33                     !test_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states))
34                         continue;
35
36                 /* Ignore return value on purpose - a given VF may fail, but
37                  * we need to keep going and send to all of them
38                  */
39                 i40e_aq_send_msg_to_vf(hw, abs_vf_id, v_opcode, v_retval,
40                                        msg, msglen, NULL);
41         }
42 }
43
44 /**
45  * i40e_vc_link_speed2mbps
46  * converts i40e_aq_link_speed to integer value of Mbps
47  * @link_speed: the speed to convert
48  *
49  * return the speed as direct value of Mbps.
50  **/
51 static u32
52 i40e_vc_link_speed2mbps(enum i40e_aq_link_speed link_speed)
53 {
54         switch (link_speed) {
55         case I40E_LINK_SPEED_100MB:
56                 return SPEED_100;
57         case I40E_LINK_SPEED_1GB:
58                 return SPEED_1000;
59         case I40E_LINK_SPEED_2_5GB:
60                 return SPEED_2500;
61         case I40E_LINK_SPEED_5GB:
62                 return SPEED_5000;
63         case I40E_LINK_SPEED_10GB:
64                 return SPEED_10000;
65         case I40E_LINK_SPEED_20GB:
66                 return SPEED_20000;
67         case I40E_LINK_SPEED_25GB:
68                 return SPEED_25000;
69         case I40E_LINK_SPEED_40GB:
70                 return SPEED_40000;
71         case I40E_LINK_SPEED_UNKNOWN:
72                 return SPEED_UNKNOWN;
73         }
74         return SPEED_UNKNOWN;
75 }
76
77 /**
78  * i40e_set_vf_link_state
79  * @vf: pointer to the VF structure
80  * @pfe: pointer to PF event structure
81  * @ls: pointer to link status structure
82  *
83  * set a link state on a single vf
84  **/
85 static void i40e_set_vf_link_state(struct i40e_vf *vf,
86                                    struct virtchnl_pf_event *pfe, struct i40e_link_status *ls)
87 {
88         u8 link_status = ls->link_info & I40E_AQ_LINK_UP;
89
90         if (vf->link_forced)
91                 link_status = vf->link_up;
92
93         if (vf->driver_caps & VIRTCHNL_VF_CAP_ADV_LINK_SPEED) {
94                 pfe->event_data.link_event_adv.link_speed = link_status ?
95                         i40e_vc_link_speed2mbps(ls->link_speed) : 0;
96                 pfe->event_data.link_event_adv.link_status = link_status;
97         } else {
98                 pfe->event_data.link_event.link_speed = link_status ?
99                         i40e_virtchnl_link_speed(ls->link_speed) : 0;
100                 pfe->event_data.link_event.link_status = link_status;
101         }
102 }
103
104 /**
105  * i40e_vc_notify_vf_link_state
106  * @vf: pointer to the VF structure
107  *
108  * send a link status message to a single VF
109  **/
110 static void i40e_vc_notify_vf_link_state(struct i40e_vf *vf)
111 {
112         struct virtchnl_pf_event pfe;
113         struct i40e_pf *pf = vf->pf;
114         struct i40e_hw *hw = &pf->hw;
115         struct i40e_link_status *ls = &pf->hw.phy.link_info;
116         int abs_vf_id = vf->vf_id + (int)hw->func_caps.vf_base_id;
117
118         pfe.event = VIRTCHNL_EVENT_LINK_CHANGE;
119         pfe.severity = PF_EVENT_SEVERITY_INFO;
120
121         i40e_set_vf_link_state(vf, &pfe, ls);
122
123         i40e_aq_send_msg_to_vf(hw, abs_vf_id, VIRTCHNL_OP_EVENT,
124                                0, (u8 *)&pfe, sizeof(pfe), NULL);
125 }
126
127 /**
128  * i40e_vc_notify_link_state
129  * @pf: pointer to the PF structure
130  *
131  * send a link status message to all VFs on a given PF
132  **/
133 void i40e_vc_notify_link_state(struct i40e_pf *pf)
134 {
135         int i;
136
137         for (i = 0; i < pf->num_alloc_vfs; i++)
138                 i40e_vc_notify_vf_link_state(&pf->vf[i]);
139 }
140
141 /**
142  * i40e_vc_notify_reset
143  * @pf: pointer to the PF structure
144  *
145  * indicate a pending reset to all VFs on a given PF
146  **/
147 void i40e_vc_notify_reset(struct i40e_pf *pf)
148 {
149         struct virtchnl_pf_event pfe;
150
151         pfe.event = VIRTCHNL_EVENT_RESET_IMPENDING;
152         pfe.severity = PF_EVENT_SEVERITY_CERTAIN_DOOM;
153         i40e_vc_vf_broadcast(pf, VIRTCHNL_OP_EVENT, 0,
154                              (u8 *)&pfe, sizeof(struct virtchnl_pf_event));
155 }
156
157 #ifdef CONFIG_PCI_IOV
158 void i40e_restore_all_vfs_msi_state(struct pci_dev *pdev)
159 {
160         u16 vf_id;
161         u16 pos;
162
163         /* Continue only if this is a PF */
164         if (!pdev->is_physfn)
165                 return;
166
167         if (!pci_num_vf(pdev))
168                 return;
169
170         pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_SRIOV);
171         if (pos) {
172                 struct pci_dev *vf_dev = NULL;
173
174                 pci_read_config_word(pdev, pos + PCI_SRIOV_VF_DID, &vf_id);
175                 while ((vf_dev = pci_get_device(pdev->vendor, vf_id, vf_dev))) {
176                         if (vf_dev->is_virtfn && vf_dev->physfn == pdev)
177                                 pci_restore_msi_state(vf_dev);
178                 }
179         }
180 }
181 #endif /* CONFIG_PCI_IOV */
182
183 /**
184  * i40e_vc_notify_vf_reset
185  * @vf: pointer to the VF structure
186  *
187  * indicate a pending reset to the given VF
188  **/
189 void i40e_vc_notify_vf_reset(struct i40e_vf *vf)
190 {
191         struct virtchnl_pf_event pfe;
192         int abs_vf_id;
193
194         /* validate the request */
195         if (!vf || vf->vf_id >= vf->pf->num_alloc_vfs)
196                 return;
197
198         /* verify if the VF is in either init or active before proceeding */
199         if (!test_bit(I40E_VF_STATE_INIT, &vf->vf_states) &&
200             !test_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states))
201                 return;
202
203         abs_vf_id = vf->vf_id + (int)vf->pf->hw.func_caps.vf_base_id;
204
205         pfe.event = VIRTCHNL_EVENT_RESET_IMPENDING;
206         pfe.severity = PF_EVENT_SEVERITY_CERTAIN_DOOM;
207         i40e_aq_send_msg_to_vf(&vf->pf->hw, abs_vf_id, VIRTCHNL_OP_EVENT,
208                                0, (u8 *)&pfe,
209                                sizeof(struct virtchnl_pf_event), NULL);
210 }
211 /***********************misc routines*****************************/
212
213 /**
214  * i40e_vc_reset_vf
215  * @vf: pointer to the VF info
216  * @notify_vf: notify vf about reset or not
217  * Reset VF handler.
218  **/
219 static void i40e_vc_reset_vf(struct i40e_vf *vf, bool notify_vf)
220 {
221         struct i40e_pf *pf = vf->pf;
222         int i;
223
224         if (notify_vf)
225                 i40e_vc_notify_vf_reset(vf);
226
227         /* We want to ensure that an actual reset occurs initiated after this
228          * function was called. However, we do not want to wait forever, so
229          * we'll give a reasonable time and print a message if we failed to
230          * ensure a reset.
231          */
232         for (i = 0; i < 20; i++) {
233                 /* If PF is in VFs releasing state reset VF is impossible,
234                  * so leave it.
235                  */
236                 if (test_bit(__I40E_VFS_RELEASING, pf->state))
237                         return;
238                 if (i40e_reset_vf(vf, false))
239                         return;
240                 usleep_range(10000, 20000);
241         }
242
243         if (notify_vf)
244                 dev_warn(&vf->pf->pdev->dev,
245                          "Failed to initiate reset for VF %d after 200 milliseconds\n",
246                          vf->vf_id);
247         else
248                 dev_dbg(&vf->pf->pdev->dev,
249                         "Failed to initiate reset for VF %d after 200 milliseconds\n",
250                         vf->vf_id);
251 }
252
253 /**
254  * i40e_vc_isvalid_vsi_id
255  * @vf: pointer to the VF info
256  * @vsi_id: VF relative VSI id
257  *
258  * check for the valid VSI id
259  **/
260 static inline bool i40e_vc_isvalid_vsi_id(struct i40e_vf *vf, u16 vsi_id)
261 {
262         struct i40e_pf *pf = vf->pf;
263         struct i40e_vsi *vsi = i40e_find_vsi_from_id(pf, vsi_id);
264
265         return (vsi && (vsi->vf_id == vf->vf_id));
266 }
267
268 /**
269  * i40e_vc_isvalid_queue_id
270  * @vf: pointer to the VF info
271  * @vsi_id: vsi id
272  * @qid: vsi relative queue id
273  *
274  * check for the valid queue id
275  **/
276 static inline bool i40e_vc_isvalid_queue_id(struct i40e_vf *vf, u16 vsi_id,
277                                             u16 qid)
278 {
279         struct i40e_pf *pf = vf->pf;
280         struct i40e_vsi *vsi = i40e_find_vsi_from_id(pf, vsi_id);
281
282         return (vsi && (qid < vsi->alloc_queue_pairs));
283 }
284
285 /**
286  * i40e_vc_isvalid_vector_id
287  * @vf: pointer to the VF info
288  * @vector_id: VF relative vector id
289  *
290  * check for the valid vector id
291  **/
292 static inline bool i40e_vc_isvalid_vector_id(struct i40e_vf *vf, u32 vector_id)
293 {
294         struct i40e_pf *pf = vf->pf;
295
296         return vector_id < pf->hw.func_caps.num_msix_vectors_vf;
297 }
298
299 /***********************vf resource mgmt routines*****************/
300
301 /**
302  * i40e_vc_get_pf_queue_id
303  * @vf: pointer to the VF info
304  * @vsi_id: id of VSI as provided by the FW
305  * @vsi_queue_id: vsi relative queue id
306  *
307  * return PF relative queue id
308  **/
309 static u16 i40e_vc_get_pf_queue_id(struct i40e_vf *vf, u16 vsi_id,
310                                    u8 vsi_queue_id)
311 {
312         struct i40e_pf *pf = vf->pf;
313         struct i40e_vsi *vsi = i40e_find_vsi_from_id(pf, vsi_id);
314         u16 pf_queue_id = I40E_QUEUE_END_OF_LIST;
315
316         if (!vsi)
317                 return pf_queue_id;
318
319         if (le16_to_cpu(vsi->info.mapping_flags) &
320             I40E_AQ_VSI_QUE_MAP_NONCONTIG)
321                 pf_queue_id =
322                         le16_to_cpu(vsi->info.queue_mapping[vsi_queue_id]);
323         else
324                 pf_queue_id = le16_to_cpu(vsi->info.queue_mapping[0]) +
325                               vsi_queue_id;
326
327         return pf_queue_id;
328 }
329
330 /**
331  * i40e_get_real_pf_qid
332  * @vf: pointer to the VF info
333  * @vsi_id: vsi id
334  * @queue_id: queue number
335  *
336  * wrapper function to get pf_queue_id handling ADq code as well
337  **/
338 static u16 i40e_get_real_pf_qid(struct i40e_vf *vf, u16 vsi_id, u16 queue_id)
339 {
340         int i;
341
342         if (vf->adq_enabled) {
343                 /* Although VF considers all the queues(can be 1 to 16) as its
344                  * own but they may actually belong to different VSIs(up to 4).
345                  * We need to find which queues belongs to which VSI.
346                  */
347                 for (i = 0; i < vf->num_tc; i++) {
348                         if (queue_id < vf->ch[i].num_qps) {
349                                 vsi_id = vf->ch[i].vsi_id;
350                                 break;
351                         }
352                         /* find right queue id which is relative to a
353                          * given VSI.
354                          */
355                         queue_id -= vf->ch[i].num_qps;
356                         }
357                 }
358
359         return i40e_vc_get_pf_queue_id(vf, vsi_id, queue_id);
360 }
361
362 /**
363  * i40e_config_irq_link_list
364  * @vf: pointer to the VF info
365  * @vsi_id: id of VSI as given by the FW
366  * @vecmap: irq map info
367  *
368  * configure irq link list from the map
369  **/
370 static void i40e_config_irq_link_list(struct i40e_vf *vf, u16 vsi_id,
371                                       struct virtchnl_vector_map *vecmap)
372 {
373         unsigned long linklistmap = 0, tempmap;
374         struct i40e_pf *pf = vf->pf;
375         struct i40e_hw *hw = &pf->hw;
376         u16 vsi_queue_id, pf_queue_id;
377         enum i40e_queue_type qtype;
378         u16 next_q, vector_id, size;
379         u32 reg, reg_idx;
380         u16 itr_idx = 0;
381
382         vector_id = vecmap->vector_id;
383         /* setup the head */
384         if (0 == vector_id)
385                 reg_idx = I40E_VPINT_LNKLST0(vf->vf_id);
386         else
387                 reg_idx = I40E_VPINT_LNKLSTN(
388                      ((pf->hw.func_caps.num_msix_vectors_vf - 1) * vf->vf_id) +
389                      (vector_id - 1));
390
391         if (vecmap->rxq_map == 0 && vecmap->txq_map == 0) {
392                 /* Special case - No queues mapped on this vector */
393                 wr32(hw, reg_idx, I40E_VPINT_LNKLST0_FIRSTQ_INDX_MASK);
394                 goto irq_list_done;
395         }
396         tempmap = vecmap->rxq_map;
397         for_each_set_bit(vsi_queue_id, &tempmap, I40E_MAX_VSI_QP) {
398                 linklistmap |= (BIT(I40E_VIRTCHNL_SUPPORTED_QTYPES *
399                                     vsi_queue_id));
400         }
401
402         tempmap = vecmap->txq_map;
403         for_each_set_bit(vsi_queue_id, &tempmap, I40E_MAX_VSI_QP) {
404                 linklistmap |= (BIT(I40E_VIRTCHNL_SUPPORTED_QTYPES *
405                                      vsi_queue_id + 1));
406         }
407
408         size = I40E_MAX_VSI_QP * I40E_VIRTCHNL_SUPPORTED_QTYPES;
409         next_q = find_first_bit(&linklistmap, size);
410         if (unlikely(next_q == size))
411                 goto irq_list_done;
412
413         vsi_queue_id = next_q / I40E_VIRTCHNL_SUPPORTED_QTYPES;
414         qtype = next_q % I40E_VIRTCHNL_SUPPORTED_QTYPES;
415         pf_queue_id = i40e_get_real_pf_qid(vf, vsi_id, vsi_queue_id);
416         reg = ((qtype << I40E_VPINT_LNKLSTN_FIRSTQ_TYPE_SHIFT) | pf_queue_id);
417
418         wr32(hw, reg_idx, reg);
419
420         while (next_q < size) {
421                 switch (qtype) {
422                 case I40E_QUEUE_TYPE_RX:
423                         reg_idx = I40E_QINT_RQCTL(pf_queue_id);
424                         itr_idx = vecmap->rxitr_idx;
425                         break;
426                 case I40E_QUEUE_TYPE_TX:
427                         reg_idx = I40E_QINT_TQCTL(pf_queue_id);
428                         itr_idx = vecmap->txitr_idx;
429                         break;
430                 default:
431                         break;
432                 }
433
434                 next_q = find_next_bit(&linklistmap, size, next_q + 1);
435                 if (next_q < size) {
436                         vsi_queue_id = next_q / I40E_VIRTCHNL_SUPPORTED_QTYPES;
437                         qtype = next_q % I40E_VIRTCHNL_SUPPORTED_QTYPES;
438                         pf_queue_id = i40e_get_real_pf_qid(vf,
439                                                            vsi_id,
440                                                            vsi_queue_id);
441                 } else {
442                         pf_queue_id = I40E_QUEUE_END_OF_LIST;
443                         qtype = 0;
444                 }
445
446                 /* format for the RQCTL & TQCTL regs is same */
447                 reg = (vector_id) |
448                     (qtype << I40E_QINT_RQCTL_NEXTQ_TYPE_SHIFT) |
449                     (pf_queue_id << I40E_QINT_RQCTL_NEXTQ_INDX_SHIFT) |
450                     BIT(I40E_QINT_RQCTL_CAUSE_ENA_SHIFT) |
451                     (itr_idx << I40E_QINT_RQCTL_ITR_INDX_SHIFT);
452                 wr32(hw, reg_idx, reg);
453         }
454
455         /* if the vf is running in polling mode and using interrupt zero,
456          * need to disable auto-mask on enabling zero interrupt for VFs.
457          */
458         if ((vf->driver_caps & VIRTCHNL_VF_OFFLOAD_RX_POLLING) &&
459             (vector_id == 0)) {
460                 reg = rd32(hw, I40E_GLINT_CTL);
461                 if (!(reg & I40E_GLINT_CTL_DIS_AUTOMASK_VF0_MASK)) {
462                         reg |= I40E_GLINT_CTL_DIS_AUTOMASK_VF0_MASK;
463                         wr32(hw, I40E_GLINT_CTL, reg);
464                 }
465         }
466
467 irq_list_done:
468         i40e_flush(hw);
469 }
470
471 /**
472  * i40e_release_rdma_qvlist
473  * @vf: pointer to the VF.
474  *
475  **/
476 static void i40e_release_rdma_qvlist(struct i40e_vf *vf)
477 {
478         struct i40e_pf *pf = vf->pf;
479         struct virtchnl_rdma_qvlist_info *qvlist_info = vf->qvlist_info;
480         u32 msix_vf;
481         u32 i;
482
483         if (!vf->qvlist_info)
484                 return;
485
486         msix_vf = pf->hw.func_caps.num_msix_vectors_vf;
487         for (i = 0; i < qvlist_info->num_vectors; i++) {
488                 struct virtchnl_rdma_qv_info *qv_info;
489                 u32 next_q_index, next_q_type;
490                 struct i40e_hw *hw = &pf->hw;
491                 u32 v_idx, reg_idx, reg;
492
493                 qv_info = &qvlist_info->qv_info[i];
494                 if (!qv_info)
495                         continue;
496                 v_idx = qv_info->v_idx;
497                 if (qv_info->ceq_idx != I40E_QUEUE_INVALID_IDX) {
498                         /* Figure out the queue after CEQ and make that the
499                          * first queue.
500                          */
501                         reg_idx = (msix_vf - 1) * vf->vf_id + qv_info->ceq_idx;
502                         reg = rd32(hw, I40E_VPINT_CEQCTL(reg_idx));
503                         next_q_index = FIELD_GET(I40E_VPINT_CEQCTL_NEXTQ_INDX_MASK,
504                                                  reg);
505                         next_q_type = FIELD_GET(I40E_VPINT_CEQCTL_NEXTQ_TYPE_MASK,
506                                                 reg);
507
508                         reg_idx = ((msix_vf - 1) * vf->vf_id) + (v_idx - 1);
509                         reg = (next_q_index &
510                                I40E_VPINT_LNKLSTN_FIRSTQ_INDX_MASK) |
511                                (next_q_type <<
512                                I40E_VPINT_LNKLSTN_FIRSTQ_TYPE_SHIFT);
513
514                         wr32(hw, I40E_VPINT_LNKLSTN(reg_idx), reg);
515                 }
516         }
517         kfree(vf->qvlist_info);
518         vf->qvlist_info = NULL;
519 }
520
521 /**
522  * i40e_config_rdma_qvlist
523  * @vf: pointer to the VF info
524  * @qvlist_info: queue and vector list
525  *
526  * Return 0 on success or < 0 on error
527  **/
528 static int
529 i40e_config_rdma_qvlist(struct i40e_vf *vf,
530                         struct virtchnl_rdma_qvlist_info *qvlist_info)
531 {
532         struct i40e_pf *pf = vf->pf;
533         struct i40e_hw *hw = &pf->hw;
534         struct virtchnl_rdma_qv_info *qv_info;
535         u32 v_idx, i, reg_idx, reg;
536         u32 next_q_idx, next_q_type;
537         size_t size;
538         u32 msix_vf;
539         int ret = 0;
540
541         msix_vf = pf->hw.func_caps.num_msix_vectors_vf;
542
543         if (qvlist_info->num_vectors > msix_vf) {
544                 dev_warn(&pf->pdev->dev,
545                          "Incorrect number of iwarp vectors %u. Maximum %u allowed.\n",
546                          qvlist_info->num_vectors,
547                          msix_vf);
548                 ret = -EINVAL;
549                 goto err_out;
550         }
551
552         kfree(vf->qvlist_info);
553         size = virtchnl_struct_size(vf->qvlist_info, qv_info,
554                                     qvlist_info->num_vectors);
555         vf->qvlist_info = kzalloc(size, GFP_KERNEL);
556         if (!vf->qvlist_info) {
557                 ret = -ENOMEM;
558                 goto err_out;
559         }
560         vf->qvlist_info->num_vectors = qvlist_info->num_vectors;
561
562         msix_vf = pf->hw.func_caps.num_msix_vectors_vf;
563         for (i = 0; i < qvlist_info->num_vectors; i++) {
564                 qv_info = &qvlist_info->qv_info[i];
565                 if (!qv_info)
566                         continue;
567
568                 /* Validate vector id belongs to this vf */
569                 if (!i40e_vc_isvalid_vector_id(vf, qv_info->v_idx)) {
570                         ret = -EINVAL;
571                         goto err_free;
572                 }
573
574                 v_idx = qv_info->v_idx;
575
576                 vf->qvlist_info->qv_info[i] = *qv_info;
577
578                 reg_idx = ((msix_vf - 1) * vf->vf_id) + (v_idx - 1);
579                 /* We might be sharing the interrupt, so get the first queue
580                  * index and type, push it down the list by adding the new
581                  * queue on top. Also link it with the new queue in CEQCTL.
582                  */
583                 reg = rd32(hw, I40E_VPINT_LNKLSTN(reg_idx));
584                 next_q_idx = FIELD_GET(I40E_VPINT_LNKLSTN_FIRSTQ_INDX_MASK,
585                                        reg);
586                 next_q_type = FIELD_GET(I40E_VPINT_LNKLSTN_FIRSTQ_TYPE_MASK,
587                                         reg);
588
589                 if (qv_info->ceq_idx != I40E_QUEUE_INVALID_IDX) {
590                         reg_idx = (msix_vf - 1) * vf->vf_id + qv_info->ceq_idx;
591                         reg = (I40E_VPINT_CEQCTL_CAUSE_ENA_MASK |
592                         (v_idx << I40E_VPINT_CEQCTL_MSIX_INDX_SHIFT) |
593                         (qv_info->itr_idx << I40E_VPINT_CEQCTL_ITR_INDX_SHIFT) |
594                         (next_q_type << I40E_VPINT_CEQCTL_NEXTQ_TYPE_SHIFT) |
595                         (next_q_idx << I40E_VPINT_CEQCTL_NEXTQ_INDX_SHIFT));
596                         wr32(hw, I40E_VPINT_CEQCTL(reg_idx), reg);
597
598                         reg_idx = ((msix_vf - 1) * vf->vf_id) + (v_idx - 1);
599                         reg = (qv_info->ceq_idx &
600                                I40E_VPINT_LNKLSTN_FIRSTQ_INDX_MASK) |
601                                (I40E_QUEUE_TYPE_PE_CEQ <<
602                                I40E_VPINT_LNKLSTN_FIRSTQ_TYPE_SHIFT);
603                         wr32(hw, I40E_VPINT_LNKLSTN(reg_idx), reg);
604                 }
605
606                 if (qv_info->aeq_idx != I40E_QUEUE_INVALID_IDX) {
607                         reg = (I40E_VPINT_AEQCTL_CAUSE_ENA_MASK |
608                         (v_idx << I40E_VPINT_AEQCTL_MSIX_INDX_SHIFT) |
609                         (qv_info->itr_idx << I40E_VPINT_AEQCTL_ITR_INDX_SHIFT));
610
611                         wr32(hw, I40E_VPINT_AEQCTL(vf->vf_id), reg);
612                 }
613         }
614
615         return 0;
616 err_free:
617         kfree(vf->qvlist_info);
618         vf->qvlist_info = NULL;
619 err_out:
620         return ret;
621 }
622
623 /**
624  * i40e_config_vsi_tx_queue
625  * @vf: pointer to the VF info
626  * @vsi_id: id of VSI as provided by the FW
627  * @vsi_queue_id: vsi relative queue index
628  * @info: config. info
629  *
630  * configure tx queue
631  **/
632 static int i40e_config_vsi_tx_queue(struct i40e_vf *vf, u16 vsi_id,
633                                     u16 vsi_queue_id,
634                                     struct virtchnl_txq_info *info)
635 {
636         struct i40e_pf *pf = vf->pf;
637         struct i40e_hw *hw = &pf->hw;
638         struct i40e_hmc_obj_txq tx_ctx;
639         struct i40e_vsi *vsi;
640         u16 pf_queue_id;
641         u32 qtx_ctl;
642         int ret = 0;
643
644         if (!i40e_vc_isvalid_vsi_id(vf, info->vsi_id)) {
645                 ret = -ENOENT;
646                 goto error_context;
647         }
648         pf_queue_id = i40e_vc_get_pf_queue_id(vf, vsi_id, vsi_queue_id);
649         vsi = i40e_find_vsi_from_id(pf, vsi_id);
650         if (!vsi) {
651                 ret = -ENOENT;
652                 goto error_context;
653         }
654
655         /* clear the context structure first */
656         memset(&tx_ctx, 0, sizeof(struct i40e_hmc_obj_txq));
657
658         /* only set the required fields */
659         tx_ctx.base = info->dma_ring_addr / 128;
660         tx_ctx.qlen = info->ring_len;
661         tx_ctx.rdylist = le16_to_cpu(vsi->info.qs_handle[0]);
662         tx_ctx.rdylist_act = 0;
663         tx_ctx.head_wb_ena = info->headwb_enabled;
664         tx_ctx.head_wb_addr = info->dma_headwb_addr;
665
666         /* clear the context in the HMC */
667         ret = i40e_clear_lan_tx_queue_context(hw, pf_queue_id);
668         if (ret) {
669                 dev_err(&pf->pdev->dev,
670                         "Failed to clear VF LAN Tx queue context %d, error: %d\n",
671                         pf_queue_id, ret);
672                 ret = -ENOENT;
673                 goto error_context;
674         }
675
676         /* set the context in the HMC */
677         ret = i40e_set_lan_tx_queue_context(hw, pf_queue_id, &tx_ctx);
678         if (ret) {
679                 dev_err(&pf->pdev->dev,
680                         "Failed to set VF LAN Tx queue context %d error: %d\n",
681                         pf_queue_id, ret);
682                 ret = -ENOENT;
683                 goto error_context;
684         }
685
686         /* associate this queue with the PCI VF function */
687         qtx_ctl = I40E_QTX_CTL_VF_QUEUE;
688         qtx_ctl |= FIELD_PREP(I40E_QTX_CTL_PF_INDX_MASK, hw->pf_id);
689         qtx_ctl |= FIELD_PREP(I40E_QTX_CTL_VFVM_INDX_MASK,
690                               vf->vf_id + hw->func_caps.vf_base_id);
691         wr32(hw, I40E_QTX_CTL(pf_queue_id), qtx_ctl);
692         i40e_flush(hw);
693
694 error_context:
695         return ret;
696 }
697
698 /**
699  * i40e_config_vsi_rx_queue
700  * @vf: pointer to the VF info
701  * @vsi_id: id of VSI  as provided by the FW
702  * @vsi_queue_id: vsi relative queue index
703  * @info: config. info
704  *
705  * configure rx queue
706  **/
707 static int i40e_config_vsi_rx_queue(struct i40e_vf *vf, u16 vsi_id,
708                                     u16 vsi_queue_id,
709                                     struct virtchnl_rxq_info *info)
710 {
711         u16 pf_queue_id = i40e_vc_get_pf_queue_id(vf, vsi_id, vsi_queue_id);
712         struct i40e_pf *pf = vf->pf;
713         struct i40e_vsi *vsi = pf->vsi[vf->lan_vsi_idx];
714         struct i40e_hw *hw = &pf->hw;
715         struct i40e_hmc_obj_rxq rx_ctx;
716         int ret = 0;
717
718         /* clear the context structure first */
719         memset(&rx_ctx, 0, sizeof(struct i40e_hmc_obj_rxq));
720
721         /* only set the required fields */
722         rx_ctx.base = info->dma_ring_addr / 128;
723         rx_ctx.qlen = info->ring_len;
724
725         if (info->splithdr_enabled) {
726                 rx_ctx.hsplit_0 = I40E_RX_SPLIT_L2      |
727                                   I40E_RX_SPLIT_IP      |
728                                   I40E_RX_SPLIT_TCP_UDP |
729                                   I40E_RX_SPLIT_SCTP;
730                 /* header length validation */
731                 if (info->hdr_size > ((2 * 1024) - 64)) {
732                         ret = -EINVAL;
733                         goto error_param;
734                 }
735                 rx_ctx.hbuff = info->hdr_size >> I40E_RXQ_CTX_HBUFF_SHIFT;
736
737                 /* set split mode 10b */
738                 rx_ctx.dtype = I40E_RX_DTYPE_HEADER_SPLIT;
739         }
740
741         /* databuffer length validation */
742         if (info->databuffer_size > ((16 * 1024) - 128)) {
743                 ret = -EINVAL;
744                 goto error_param;
745         }
746         rx_ctx.dbuff = info->databuffer_size >> I40E_RXQ_CTX_DBUFF_SHIFT;
747
748         /* max pkt. length validation */
749         if (info->max_pkt_size >= (16 * 1024) || info->max_pkt_size < 64) {
750                 ret = -EINVAL;
751                 goto error_param;
752         }
753         rx_ctx.rxmax = info->max_pkt_size;
754
755         /* if port VLAN is configured increase the max packet size */
756         if (vsi->info.pvid)
757                 rx_ctx.rxmax += VLAN_HLEN;
758
759         /* enable 32bytes desc always */
760         rx_ctx.dsize = 1;
761
762         /* default values */
763         rx_ctx.lrxqthresh = 1;
764         rx_ctx.crcstrip = 1;
765         rx_ctx.prefena = 1;
766         rx_ctx.l2tsel = 1;
767
768         /* clear the context in the HMC */
769         ret = i40e_clear_lan_rx_queue_context(hw, pf_queue_id);
770         if (ret) {
771                 dev_err(&pf->pdev->dev,
772                         "Failed to clear VF LAN Rx queue context %d, error: %d\n",
773                         pf_queue_id, ret);
774                 ret = -ENOENT;
775                 goto error_param;
776         }
777
778         /* set the context in the HMC */
779         ret = i40e_set_lan_rx_queue_context(hw, pf_queue_id, &rx_ctx);
780         if (ret) {
781                 dev_err(&pf->pdev->dev,
782                         "Failed to set VF LAN Rx queue context %d error: %d\n",
783                         pf_queue_id, ret);
784                 ret = -ENOENT;
785                 goto error_param;
786         }
787
788 error_param:
789         return ret;
790 }
791
792 /**
793  * i40e_alloc_vsi_res
794  * @vf: pointer to the VF info
795  * @idx: VSI index, applies only for ADq mode, zero otherwise
796  *
797  * alloc VF vsi context & resources
798  **/
799 static int i40e_alloc_vsi_res(struct i40e_vf *vf, u8 idx)
800 {
801         struct i40e_mac_filter *f = NULL;
802         struct i40e_pf *pf = vf->pf;
803         struct i40e_vsi *vsi;
804         u64 max_tx_rate = 0;
805         int ret = 0;
806
807         vsi = i40e_vsi_setup(pf, I40E_VSI_SRIOV, pf->vsi[pf->lan_vsi]->seid,
808                              vf->vf_id);
809
810         if (!vsi) {
811                 dev_err(&pf->pdev->dev,
812                         "add vsi failed for VF %d, aq_err %d\n",
813                         vf->vf_id, pf->hw.aq.asq_last_status);
814                 ret = -ENOENT;
815                 goto error_alloc_vsi_res;
816         }
817
818         if (!idx) {
819                 u64 hena = i40e_pf_get_default_rss_hena(pf);
820                 u8 broadcast[ETH_ALEN];
821
822                 vf->lan_vsi_idx = vsi->idx;
823                 vf->lan_vsi_id = vsi->id;
824                 /* If the port VLAN has been configured and then the
825                  * VF driver was removed then the VSI port VLAN
826                  * configuration was destroyed.  Check if there is
827                  * a port VLAN and restore the VSI configuration if
828                  * needed.
829                  */
830                 if (vf->port_vlan_id)
831                         i40e_vsi_add_pvid(vsi, vf->port_vlan_id);
832
833                 spin_lock_bh(&vsi->mac_filter_hash_lock);
834                 if (is_valid_ether_addr(vf->default_lan_addr.addr)) {
835                         f = i40e_add_mac_filter(vsi,
836                                                 vf->default_lan_addr.addr);
837                         if (!f)
838                                 dev_info(&pf->pdev->dev,
839                                          "Could not add MAC filter %pM for VF %d\n",
840                                         vf->default_lan_addr.addr, vf->vf_id);
841                 }
842                 eth_broadcast_addr(broadcast);
843                 f = i40e_add_mac_filter(vsi, broadcast);
844                 if (!f)
845                         dev_info(&pf->pdev->dev,
846                                  "Could not allocate VF broadcast filter\n");
847                 spin_unlock_bh(&vsi->mac_filter_hash_lock);
848                 wr32(&pf->hw, I40E_VFQF_HENA1(0, vf->vf_id), (u32)hena);
849                 wr32(&pf->hw, I40E_VFQF_HENA1(1, vf->vf_id), (u32)(hena >> 32));
850                 /* program mac filter only for VF VSI */
851                 ret = i40e_sync_vsi_filters(vsi);
852                 if (ret)
853                         dev_err(&pf->pdev->dev, "Unable to program ucast filters\n");
854         }
855
856         /* storing VSI index and id for ADq and don't apply the mac filter */
857         if (vf->adq_enabled) {
858                 vf->ch[idx].vsi_idx = vsi->idx;
859                 vf->ch[idx].vsi_id = vsi->id;
860         }
861
862         /* Set VF bandwidth if specified */
863         if (vf->tx_rate) {
864                 max_tx_rate = vf->tx_rate;
865         } else if (vf->ch[idx].max_tx_rate) {
866                 max_tx_rate = vf->ch[idx].max_tx_rate;
867         }
868
869         if (max_tx_rate) {
870                 max_tx_rate = div_u64(max_tx_rate, I40E_BW_CREDIT_DIVISOR);
871                 ret = i40e_aq_config_vsi_bw_limit(&pf->hw, vsi->seid,
872                                                   max_tx_rate, 0, NULL);
873                 if (ret)
874                         dev_err(&pf->pdev->dev, "Unable to set tx rate, VF %d, error code %d.\n",
875                                 vf->vf_id, ret);
876         }
877
878 error_alloc_vsi_res:
879         return ret;
880 }
881
882 /**
883  * i40e_map_pf_queues_to_vsi
884  * @vf: pointer to the VF info
885  *
886  * PF maps LQPs to a VF by programming VSILAN_QTABLE & VPLAN_QTABLE. This
887  * function takes care of first part VSILAN_QTABLE, mapping pf queues to VSI.
888  **/
889 static void i40e_map_pf_queues_to_vsi(struct i40e_vf *vf)
890 {
891         struct i40e_pf *pf = vf->pf;
892         struct i40e_hw *hw = &pf->hw;
893         u32 reg, num_tc = 1; /* VF has at least one traffic class */
894         u16 vsi_id, qps;
895         int i, j;
896
897         if (vf->adq_enabled)
898                 num_tc = vf->num_tc;
899
900         for (i = 0; i < num_tc; i++) {
901                 if (vf->adq_enabled) {
902                         qps = vf->ch[i].num_qps;
903                         vsi_id =  vf->ch[i].vsi_id;
904                 } else {
905                         qps = pf->vsi[vf->lan_vsi_idx]->alloc_queue_pairs;
906                         vsi_id = vf->lan_vsi_id;
907                 }
908
909                 for (j = 0; j < 7; j++) {
910                         if (j * 2 >= qps) {
911                                 /* end of list */
912                                 reg = 0x07FF07FF;
913                         } else {
914                                 u16 qid = i40e_vc_get_pf_queue_id(vf,
915                                                                   vsi_id,
916                                                                   j * 2);
917                                 reg = qid;
918                                 qid = i40e_vc_get_pf_queue_id(vf, vsi_id,
919                                                               (j * 2) + 1);
920                                 reg |= qid << 16;
921                         }
922                         i40e_write_rx_ctl(hw,
923                                           I40E_VSILAN_QTABLE(j, vsi_id),
924                                           reg);
925                 }
926         }
927 }
928
929 /**
930  * i40e_map_pf_to_vf_queues
931  * @vf: pointer to the VF info
932  *
933  * PF maps LQPs to a VF by programming VSILAN_QTABLE & VPLAN_QTABLE. This
934  * function takes care of the second part VPLAN_QTABLE & completes VF mappings.
935  **/
936 static void i40e_map_pf_to_vf_queues(struct i40e_vf *vf)
937 {
938         struct i40e_pf *pf = vf->pf;
939         struct i40e_hw *hw = &pf->hw;
940         u32 reg, total_qps = 0;
941         u32 qps, num_tc = 1; /* VF has at least one traffic class */
942         u16 vsi_id, qid;
943         int i, j;
944
945         if (vf->adq_enabled)
946                 num_tc = vf->num_tc;
947
948         for (i = 0; i < num_tc; i++) {
949                 if (vf->adq_enabled) {
950                         qps = vf->ch[i].num_qps;
951                         vsi_id =  vf->ch[i].vsi_id;
952                 } else {
953                         qps = pf->vsi[vf->lan_vsi_idx]->alloc_queue_pairs;
954                         vsi_id = vf->lan_vsi_id;
955                 }
956
957                 for (j = 0; j < qps; j++) {
958                         qid = i40e_vc_get_pf_queue_id(vf, vsi_id, j);
959
960                         reg = (qid & I40E_VPLAN_QTABLE_QINDEX_MASK);
961                         wr32(hw, I40E_VPLAN_QTABLE(total_qps, vf->vf_id),
962                              reg);
963                         total_qps++;
964                 }
965         }
966 }
967
968 /**
969  * i40e_enable_vf_mappings
970  * @vf: pointer to the VF info
971  *
972  * enable VF mappings
973  **/
974 static void i40e_enable_vf_mappings(struct i40e_vf *vf)
975 {
976         struct i40e_pf *pf = vf->pf;
977         struct i40e_hw *hw = &pf->hw;
978         u32 reg;
979
980         /* Tell the hardware we're using noncontiguous mapping. HW requires
981          * that VF queues be mapped using this method, even when they are
982          * contiguous in real life
983          */
984         i40e_write_rx_ctl(hw, I40E_VSILAN_QBASE(vf->lan_vsi_id),
985                           I40E_VSILAN_QBASE_VSIQTABLE_ENA_MASK);
986
987         /* enable VF vplan_qtable mappings */
988         reg = I40E_VPLAN_MAPENA_TXRX_ENA_MASK;
989         wr32(hw, I40E_VPLAN_MAPENA(vf->vf_id), reg);
990
991         i40e_map_pf_to_vf_queues(vf);
992         i40e_map_pf_queues_to_vsi(vf);
993
994         i40e_flush(hw);
995 }
996
997 /**
998  * i40e_disable_vf_mappings
999  * @vf: pointer to the VF info
1000  *
1001  * disable VF mappings
1002  **/
1003 static void i40e_disable_vf_mappings(struct i40e_vf *vf)
1004 {
1005         struct i40e_pf *pf = vf->pf;
1006         struct i40e_hw *hw = &pf->hw;
1007         int i;
1008
1009         /* disable qp mappings */
1010         wr32(hw, I40E_VPLAN_MAPENA(vf->vf_id), 0);
1011         for (i = 0; i < I40E_MAX_VSI_QP; i++)
1012                 wr32(hw, I40E_VPLAN_QTABLE(i, vf->vf_id),
1013                      I40E_QUEUE_END_OF_LIST);
1014         i40e_flush(hw);
1015 }
1016
1017 /**
1018  * i40e_free_vf_res
1019  * @vf: pointer to the VF info
1020  *
1021  * free VF resources
1022  **/
1023 static void i40e_free_vf_res(struct i40e_vf *vf)
1024 {
1025         struct i40e_pf *pf = vf->pf;
1026         struct i40e_hw *hw = &pf->hw;
1027         u32 reg_idx, reg;
1028         int i, j, msix_vf;
1029
1030         /* Start by disabling VF's configuration API to prevent the OS from
1031          * accessing the VF's VSI after it's freed / invalidated.
1032          */
1033         clear_bit(I40E_VF_STATE_INIT, &vf->vf_states);
1034
1035         /* It's possible the VF had requeuested more queues than the default so
1036          * do the accounting here when we're about to free them.
1037          */
1038         if (vf->num_queue_pairs > I40E_DEFAULT_QUEUES_PER_VF) {
1039                 pf->queues_left += vf->num_queue_pairs -
1040                                    I40E_DEFAULT_QUEUES_PER_VF;
1041         }
1042
1043         /* free vsi & disconnect it from the parent uplink */
1044         if (vf->lan_vsi_idx) {
1045                 i40e_vsi_release(pf->vsi[vf->lan_vsi_idx]);
1046                 vf->lan_vsi_idx = 0;
1047                 vf->lan_vsi_id = 0;
1048         }
1049
1050         /* do the accounting and remove additional ADq VSI's */
1051         if (vf->adq_enabled && vf->ch[0].vsi_idx) {
1052                 for (j = 0; j < vf->num_tc; j++) {
1053                         /* At this point VSI0 is already released so don't
1054                          * release it again and only clear their values in
1055                          * structure variables
1056                          */
1057                         if (j)
1058                                 i40e_vsi_release(pf->vsi[vf->ch[j].vsi_idx]);
1059                         vf->ch[j].vsi_idx = 0;
1060                         vf->ch[j].vsi_id = 0;
1061                 }
1062         }
1063         msix_vf = pf->hw.func_caps.num_msix_vectors_vf;
1064
1065         /* disable interrupts so the VF starts in a known state */
1066         for (i = 0; i < msix_vf; i++) {
1067                 /* format is same for both registers */
1068                 if (0 == i)
1069                         reg_idx = I40E_VFINT_DYN_CTL0(vf->vf_id);
1070                 else
1071                         reg_idx = I40E_VFINT_DYN_CTLN(((msix_vf - 1) *
1072                                                       (vf->vf_id))
1073                                                      + (i - 1));
1074                 wr32(hw, reg_idx, I40E_VFINT_DYN_CTLN_CLEARPBA_MASK);
1075                 i40e_flush(hw);
1076         }
1077
1078         /* clear the irq settings */
1079         for (i = 0; i < msix_vf; i++) {
1080                 /* format is same for both registers */
1081                 if (0 == i)
1082                         reg_idx = I40E_VPINT_LNKLST0(vf->vf_id);
1083                 else
1084                         reg_idx = I40E_VPINT_LNKLSTN(((msix_vf - 1) *
1085                                                       (vf->vf_id))
1086                                                      + (i - 1));
1087                 reg = (I40E_VPINT_LNKLSTN_FIRSTQ_TYPE_MASK |
1088                        I40E_VPINT_LNKLSTN_FIRSTQ_INDX_MASK);
1089                 wr32(hw, reg_idx, reg);
1090                 i40e_flush(hw);
1091         }
1092         /* reset some of the state variables keeping track of the resources */
1093         vf->num_queue_pairs = 0;
1094         clear_bit(I40E_VF_STATE_MC_PROMISC, &vf->vf_states);
1095         clear_bit(I40E_VF_STATE_UC_PROMISC, &vf->vf_states);
1096 }
1097
1098 /**
1099  * i40e_alloc_vf_res
1100  * @vf: pointer to the VF info
1101  *
1102  * allocate VF resources
1103  **/
1104 static int i40e_alloc_vf_res(struct i40e_vf *vf)
1105 {
1106         struct i40e_pf *pf = vf->pf;
1107         int total_queue_pairs = 0;
1108         int ret, idx;
1109
1110         if (vf->num_req_queues &&
1111             vf->num_req_queues <= pf->queues_left + I40E_DEFAULT_QUEUES_PER_VF)
1112                 pf->num_vf_qps = vf->num_req_queues;
1113         else
1114                 pf->num_vf_qps = I40E_DEFAULT_QUEUES_PER_VF;
1115
1116         /* allocate hw vsi context & associated resources */
1117         ret = i40e_alloc_vsi_res(vf, 0);
1118         if (ret)
1119                 goto error_alloc;
1120         total_queue_pairs += pf->vsi[vf->lan_vsi_idx]->alloc_queue_pairs;
1121
1122         /* allocate additional VSIs based on tc information for ADq */
1123         if (vf->adq_enabled) {
1124                 if (pf->queues_left >=
1125                     (I40E_MAX_VF_QUEUES - I40E_DEFAULT_QUEUES_PER_VF)) {
1126                         /* TC 0 always belongs to VF VSI */
1127                         for (idx = 1; idx < vf->num_tc; idx++) {
1128                                 ret = i40e_alloc_vsi_res(vf, idx);
1129                                 if (ret)
1130                                         goto error_alloc;
1131                         }
1132                         /* send correct number of queues */
1133                         total_queue_pairs = I40E_MAX_VF_QUEUES;
1134                 } else {
1135                         dev_info(&pf->pdev->dev, "VF %d: Not enough queues to allocate, disabling ADq\n",
1136                                  vf->vf_id);
1137                         vf->adq_enabled = false;
1138                 }
1139         }
1140
1141         /* We account for each VF to get a default number of queue pairs.  If
1142          * the VF has now requested more, we need to account for that to make
1143          * certain we never request more queues than we actually have left in
1144          * HW.
1145          */
1146         if (total_queue_pairs > I40E_DEFAULT_QUEUES_PER_VF)
1147                 pf->queues_left -=
1148                         total_queue_pairs - I40E_DEFAULT_QUEUES_PER_VF;
1149
1150         if (vf->trusted)
1151                 set_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps);
1152         else
1153                 clear_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps);
1154
1155         /* store the total qps number for the runtime
1156          * VF req validation
1157          */
1158         vf->num_queue_pairs = total_queue_pairs;
1159
1160         /* VF is now completely initialized */
1161         set_bit(I40E_VF_STATE_INIT, &vf->vf_states);
1162
1163 error_alloc:
1164         if (ret)
1165                 i40e_free_vf_res(vf);
1166
1167         return ret;
1168 }
1169
1170 #define VF_DEVICE_STATUS 0xAA
1171 #define VF_TRANS_PENDING_MASK 0x20
1172 /**
1173  * i40e_quiesce_vf_pci
1174  * @vf: pointer to the VF structure
1175  *
1176  * Wait for VF PCI transactions to be cleared after reset. Returns -EIO
1177  * if the transactions never clear.
1178  **/
1179 static int i40e_quiesce_vf_pci(struct i40e_vf *vf)
1180 {
1181         struct i40e_pf *pf = vf->pf;
1182         struct i40e_hw *hw = &pf->hw;
1183         int vf_abs_id, i;
1184         u32 reg;
1185
1186         vf_abs_id = vf->vf_id + hw->func_caps.vf_base_id;
1187
1188         wr32(hw, I40E_PF_PCI_CIAA,
1189              VF_DEVICE_STATUS | (vf_abs_id << I40E_PF_PCI_CIAA_VF_NUM_SHIFT));
1190         for (i = 0; i < 100; i++) {
1191                 reg = rd32(hw, I40E_PF_PCI_CIAD);
1192                 if ((reg & VF_TRANS_PENDING_MASK) == 0)
1193                         return 0;
1194                 udelay(1);
1195         }
1196         return -EIO;
1197 }
1198
1199 /**
1200  * __i40e_getnum_vf_vsi_vlan_filters
1201  * @vsi: pointer to the vsi
1202  *
1203  * called to get the number of VLANs offloaded on this VF
1204  **/
1205 static int __i40e_getnum_vf_vsi_vlan_filters(struct i40e_vsi *vsi)
1206 {
1207         struct i40e_mac_filter *f;
1208         u16 num_vlans = 0, bkt;
1209
1210         hash_for_each(vsi->mac_filter_hash, bkt, f, hlist) {
1211                 if (f->vlan >= 0 && f->vlan <= I40E_MAX_VLANID)
1212                         num_vlans++;
1213         }
1214
1215         return num_vlans;
1216 }
1217
1218 /**
1219  * i40e_getnum_vf_vsi_vlan_filters
1220  * @vsi: pointer to the vsi
1221  *
1222  * wrapper for __i40e_getnum_vf_vsi_vlan_filters() with spinlock held
1223  **/
1224 static int i40e_getnum_vf_vsi_vlan_filters(struct i40e_vsi *vsi)
1225 {
1226         int num_vlans;
1227
1228         spin_lock_bh(&vsi->mac_filter_hash_lock);
1229         num_vlans = __i40e_getnum_vf_vsi_vlan_filters(vsi);
1230         spin_unlock_bh(&vsi->mac_filter_hash_lock);
1231
1232         return num_vlans;
1233 }
1234
1235 /**
1236  * i40e_get_vlan_list_sync
1237  * @vsi: pointer to the VSI
1238  * @num_vlans: number of VLANs in mac_filter_hash, returned to caller
1239  * @vlan_list: list of VLANs present in mac_filter_hash, returned to caller.
1240  *             This array is allocated here, but has to be freed in caller.
1241  *
1242  * Called to get number of VLANs and VLAN list present in mac_filter_hash.
1243  **/
1244 static void i40e_get_vlan_list_sync(struct i40e_vsi *vsi, u16 *num_vlans,
1245                                     s16 **vlan_list)
1246 {
1247         struct i40e_mac_filter *f;
1248         int i = 0;
1249         int bkt;
1250
1251         spin_lock_bh(&vsi->mac_filter_hash_lock);
1252         *num_vlans = __i40e_getnum_vf_vsi_vlan_filters(vsi);
1253         *vlan_list = kcalloc(*num_vlans, sizeof(**vlan_list), GFP_ATOMIC);
1254         if (!(*vlan_list))
1255                 goto err;
1256
1257         hash_for_each(vsi->mac_filter_hash, bkt, f, hlist) {
1258                 if (f->vlan < 0 || f->vlan > I40E_MAX_VLANID)
1259                         continue;
1260                 (*vlan_list)[i++] = f->vlan;
1261         }
1262 err:
1263         spin_unlock_bh(&vsi->mac_filter_hash_lock);
1264 }
1265
1266 /**
1267  * i40e_set_vsi_promisc
1268  * @vf: pointer to the VF struct
1269  * @seid: VSI number
1270  * @multi_enable: set MAC L2 layer multicast promiscuous enable/disable
1271  *                for a given VLAN
1272  * @unicast_enable: set MAC L2 layer unicast promiscuous enable/disable
1273  *                  for a given VLAN
1274  * @vl: List of VLANs - apply filter for given VLANs
1275  * @num_vlans: Number of elements in @vl
1276  **/
1277 static int
1278 i40e_set_vsi_promisc(struct i40e_vf *vf, u16 seid, bool multi_enable,
1279                      bool unicast_enable, s16 *vl, u16 num_vlans)
1280 {
1281         struct i40e_pf *pf = vf->pf;
1282         struct i40e_hw *hw = &pf->hw;
1283         int aq_ret, aq_tmp = 0;
1284         int i;
1285
1286         /* No VLAN to set promisc on, set on VSI */
1287         if (!num_vlans || !vl) {
1288                 aq_ret = i40e_aq_set_vsi_multicast_promiscuous(hw, seid,
1289                                                                multi_enable,
1290                                                                NULL);
1291                 if (aq_ret) {
1292                         int aq_err = pf->hw.aq.asq_last_status;
1293
1294                         dev_err(&pf->pdev->dev,
1295                                 "VF %d failed to set multicast promiscuous mode err %pe aq_err %s\n",
1296                                 vf->vf_id,
1297                                 ERR_PTR(aq_ret),
1298                                 i40e_aq_str(&pf->hw, aq_err));
1299
1300                         return aq_ret;
1301                 }
1302
1303                 aq_ret = i40e_aq_set_vsi_unicast_promiscuous(hw, seid,
1304                                                              unicast_enable,
1305                                                              NULL, true);
1306
1307                 if (aq_ret) {
1308                         int aq_err = pf->hw.aq.asq_last_status;
1309
1310                         dev_err(&pf->pdev->dev,
1311                                 "VF %d failed to set unicast promiscuous mode err %pe aq_err %s\n",
1312                                 vf->vf_id,
1313                                 ERR_PTR(aq_ret),
1314                                 i40e_aq_str(&pf->hw, aq_err));
1315                 }
1316
1317                 return aq_ret;
1318         }
1319
1320         for (i = 0; i < num_vlans; i++) {
1321                 aq_ret = i40e_aq_set_vsi_mc_promisc_on_vlan(hw, seid,
1322                                                             multi_enable,
1323                                                             vl[i], NULL);
1324                 if (aq_ret) {
1325                         int aq_err = pf->hw.aq.asq_last_status;
1326
1327                         dev_err(&pf->pdev->dev,
1328                                 "VF %d failed to set multicast promiscuous mode err %pe aq_err %s\n",
1329                                 vf->vf_id,
1330                                 ERR_PTR(aq_ret),
1331                                 i40e_aq_str(&pf->hw, aq_err));
1332
1333                         if (!aq_tmp)
1334                                 aq_tmp = aq_ret;
1335                 }
1336
1337                 aq_ret = i40e_aq_set_vsi_uc_promisc_on_vlan(hw, seid,
1338                                                             unicast_enable,
1339                                                             vl[i], NULL);
1340                 if (aq_ret) {
1341                         int aq_err = pf->hw.aq.asq_last_status;
1342
1343                         dev_err(&pf->pdev->dev,
1344                                 "VF %d failed to set unicast promiscuous mode err %pe aq_err %s\n",
1345                                 vf->vf_id,
1346                                 ERR_PTR(aq_ret),
1347                                 i40e_aq_str(&pf->hw, aq_err));
1348
1349                         if (!aq_tmp)
1350                                 aq_tmp = aq_ret;
1351                 }
1352         }
1353
1354         if (aq_tmp)
1355                 aq_ret = aq_tmp;
1356
1357         return aq_ret;
1358 }
1359
1360 /**
1361  * i40e_config_vf_promiscuous_mode
1362  * @vf: pointer to the VF info
1363  * @vsi_id: VSI id
1364  * @allmulti: set MAC L2 layer multicast promiscuous enable/disable
1365  * @alluni: set MAC L2 layer unicast promiscuous enable/disable
1366  *
1367  * Called from the VF to configure the promiscuous mode of
1368  * VF vsis and from the VF reset path to reset promiscuous mode.
1369  **/
1370 static int i40e_config_vf_promiscuous_mode(struct i40e_vf *vf,
1371                                            u16 vsi_id,
1372                                            bool allmulti,
1373                                            bool alluni)
1374 {
1375         struct i40e_pf *pf = vf->pf;
1376         struct i40e_vsi *vsi;
1377         int aq_ret = 0;
1378         u16 num_vlans;
1379         s16 *vl;
1380
1381         vsi = i40e_find_vsi_from_id(pf, vsi_id);
1382         if (!i40e_vc_isvalid_vsi_id(vf, vsi_id) || !vsi)
1383                 return -EINVAL;
1384
1385         if (vf->port_vlan_id) {
1386                 aq_ret = i40e_set_vsi_promisc(vf, vsi->seid, allmulti,
1387                                               alluni, &vf->port_vlan_id, 1);
1388                 return aq_ret;
1389         } else if (i40e_getnum_vf_vsi_vlan_filters(vsi)) {
1390                 i40e_get_vlan_list_sync(vsi, &num_vlans, &vl);
1391
1392                 if (!vl)
1393                         return -ENOMEM;
1394
1395                 aq_ret = i40e_set_vsi_promisc(vf, vsi->seid, allmulti, alluni,
1396                                               vl, num_vlans);
1397                 kfree(vl);
1398                 return aq_ret;
1399         }
1400
1401         /* no VLANs to set on, set on VSI */
1402         aq_ret = i40e_set_vsi_promisc(vf, vsi->seid, allmulti, alluni,
1403                                       NULL, 0);
1404         return aq_ret;
1405 }
1406
1407 /**
1408  * i40e_sync_vfr_reset
1409  * @hw: pointer to hw struct
1410  * @vf_id: VF identifier
1411  *
1412  * Before trigger hardware reset, we need to know if no other process has
1413  * reserved the hardware for any reset operations. This check is done by
1414  * examining the status of the RSTAT1 register used to signal the reset.
1415  **/
1416 static int i40e_sync_vfr_reset(struct i40e_hw *hw, int vf_id)
1417 {
1418         u32 reg;
1419         int i;
1420
1421         for (i = 0; i < I40E_VFR_WAIT_COUNT; i++) {
1422                 reg = rd32(hw, I40E_VFINT_ICR0_ENA(vf_id)) &
1423                            I40E_VFINT_ICR0_ADMINQ_MASK;
1424                 if (reg)
1425                         return 0;
1426
1427                 usleep_range(100, 200);
1428         }
1429
1430         return -EAGAIN;
1431 }
1432
1433 /**
1434  * i40e_trigger_vf_reset
1435  * @vf: pointer to the VF structure
1436  * @flr: VFLR was issued or not
1437  *
1438  * Trigger hardware to start a reset for a particular VF. Expects the caller
1439  * to wait the proper amount of time to allow hardware to reset the VF before
1440  * it cleans up and restores VF functionality.
1441  **/
1442 static void i40e_trigger_vf_reset(struct i40e_vf *vf, bool flr)
1443 {
1444         struct i40e_pf *pf = vf->pf;
1445         struct i40e_hw *hw = &pf->hw;
1446         u32 reg, reg_idx, bit_idx;
1447         bool vf_active;
1448         u32 radq;
1449
1450         /* warn the VF */
1451         vf_active = test_and_clear_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states);
1452
1453         /* Disable VF's configuration API during reset. The flag is re-enabled
1454          * in i40e_alloc_vf_res(), when it's safe again to access VF's VSI.
1455          * It's normally disabled in i40e_free_vf_res(), but it's safer
1456          * to do it earlier to give some time to finish to any VF config
1457          * functions that may still be running at this point.
1458          */
1459         clear_bit(I40E_VF_STATE_INIT, &vf->vf_states);
1460
1461         /* In the case of a VFLR, the HW has already reset the VF and we
1462          * just need to clean up, so don't hit the VFRTRIG register.
1463          */
1464         if (!flr) {
1465                 /* Sync VFR reset before trigger next one */
1466                 radq = rd32(hw, I40E_VFINT_ICR0_ENA(vf->vf_id)) &
1467                             I40E_VFINT_ICR0_ADMINQ_MASK;
1468                 if (vf_active && !radq)
1469                         /* waiting for finish reset by virtual driver */
1470                         if (i40e_sync_vfr_reset(hw, vf->vf_id))
1471                                 dev_info(&pf->pdev->dev,
1472                                          "Reset VF %d never finished\n",
1473                                 vf->vf_id);
1474
1475                 /* Reset VF using VPGEN_VFRTRIG reg. It is also setting
1476                  * in progress state in rstat1 register.
1477                  */
1478                 reg = rd32(hw, I40E_VPGEN_VFRTRIG(vf->vf_id));
1479                 reg |= I40E_VPGEN_VFRTRIG_VFSWR_MASK;
1480                 wr32(hw, I40E_VPGEN_VFRTRIG(vf->vf_id), reg);
1481                 i40e_flush(hw);
1482         }
1483         /* clear the VFLR bit in GLGEN_VFLRSTAT */
1484         reg_idx = (hw->func_caps.vf_base_id + vf->vf_id) / 32;
1485         bit_idx = (hw->func_caps.vf_base_id + vf->vf_id) % 32;
1486         wr32(hw, I40E_GLGEN_VFLRSTAT(reg_idx), BIT(bit_idx));
1487         i40e_flush(hw);
1488
1489         if (i40e_quiesce_vf_pci(vf))
1490                 dev_err(&pf->pdev->dev, "VF %d PCI transactions stuck\n",
1491                         vf->vf_id);
1492 }
1493
1494 /**
1495  * i40e_cleanup_reset_vf
1496  * @vf: pointer to the VF structure
1497  *
1498  * Cleanup a VF after the hardware reset is finished. Expects the caller to
1499  * have verified whether the reset is finished properly, and ensure the
1500  * minimum amount of wait time has passed.
1501  **/
1502 static void i40e_cleanup_reset_vf(struct i40e_vf *vf)
1503 {
1504         struct i40e_pf *pf = vf->pf;
1505         struct i40e_hw *hw = &pf->hw;
1506         u32 reg;
1507
1508         /* disable promisc modes in case they were enabled */
1509         i40e_config_vf_promiscuous_mode(vf, vf->lan_vsi_id, false, false);
1510
1511         /* free VF resources to begin resetting the VSI state */
1512         i40e_free_vf_res(vf);
1513
1514         /* Enable hardware by clearing the reset bit in the VPGEN_VFRTRIG reg.
1515          * By doing this we allow HW to access VF memory at any point. If we
1516          * did it any sooner, HW could access memory while it was being freed
1517          * in i40e_free_vf_res(), causing an IOMMU fault.
1518          *
1519          * On the other hand, this needs to be done ASAP, because the VF driver
1520          * is waiting for this to happen and may report a timeout. It's
1521          * harmless, but it gets logged into Guest OS kernel log, so best avoid
1522          * it.
1523          */
1524         reg = rd32(hw, I40E_VPGEN_VFRTRIG(vf->vf_id));
1525         reg &= ~I40E_VPGEN_VFRTRIG_VFSWR_MASK;
1526         wr32(hw, I40E_VPGEN_VFRTRIG(vf->vf_id), reg);
1527
1528         /* reallocate VF resources to finish resetting the VSI state */
1529         if (!i40e_alloc_vf_res(vf)) {
1530                 int abs_vf_id = vf->vf_id + hw->func_caps.vf_base_id;
1531                 i40e_enable_vf_mappings(vf);
1532                 set_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states);
1533                 clear_bit(I40E_VF_STATE_DISABLED, &vf->vf_states);
1534                 /* Do not notify the client during VF init */
1535                 if (!test_and_clear_bit(I40E_VF_STATE_PRE_ENABLE,
1536                                         &vf->vf_states))
1537                         i40e_notify_client_of_vf_reset(pf, abs_vf_id);
1538                 vf->num_vlan = 0;
1539         }
1540
1541         /* Tell the VF driver the reset is done. This needs to be done only
1542          * after VF has been fully initialized, because the VF driver may
1543          * request resources immediately after setting this flag.
1544          */
1545         wr32(hw, I40E_VFGEN_RSTAT1(vf->vf_id), VIRTCHNL_VFR_VFACTIVE);
1546 }
1547
1548 /**
1549  * i40e_reset_vf
1550  * @vf: pointer to the VF structure
1551  * @flr: VFLR was issued or not
1552  *
1553  * Returns true if the VF is in reset, resets successfully, or resets
1554  * are disabled and false otherwise.
1555  **/
1556 bool i40e_reset_vf(struct i40e_vf *vf, bool flr)
1557 {
1558         struct i40e_pf *pf = vf->pf;
1559         struct i40e_hw *hw = &pf->hw;
1560         bool rsd = false;
1561         u32 reg;
1562         int i;
1563
1564         if (test_bit(__I40E_VF_RESETS_DISABLED, pf->state))
1565                 return true;
1566
1567         /* Bail out if VFs are disabled. */
1568         if (test_bit(__I40E_VF_DISABLE, pf->state))
1569                 return true;
1570
1571         /* If VF is being reset already we don't need to continue. */
1572         if (test_and_set_bit(I40E_VF_STATE_RESETTING, &vf->vf_states))
1573                 return true;
1574
1575         i40e_trigger_vf_reset(vf, flr);
1576
1577         /* poll VPGEN_VFRSTAT reg to make sure
1578          * that reset is complete
1579          */
1580         for (i = 0; i < 10; i++) {
1581                 /* VF reset requires driver to first reset the VF and then
1582                  * poll the status register to make sure that the reset
1583                  * completed successfully. Due to internal HW FIFO flushes,
1584                  * we must wait 10ms before the register will be valid.
1585                  */
1586                 usleep_range(10000, 20000);
1587                 reg = rd32(hw, I40E_VPGEN_VFRSTAT(vf->vf_id));
1588                 if (reg & I40E_VPGEN_VFRSTAT_VFRD_MASK) {
1589                         rsd = true;
1590                         break;
1591                 }
1592         }
1593
1594         if (flr)
1595                 usleep_range(10000, 20000);
1596
1597         if (!rsd)
1598                 dev_err(&pf->pdev->dev, "VF reset check timeout on VF %d\n",
1599                         vf->vf_id);
1600         usleep_range(10000, 20000);
1601
1602         /* On initial reset, we don't have any queues to disable */
1603         if (vf->lan_vsi_idx != 0)
1604                 i40e_vsi_stop_rings(pf->vsi[vf->lan_vsi_idx]);
1605
1606         i40e_cleanup_reset_vf(vf);
1607
1608         i40e_flush(hw);
1609         usleep_range(20000, 40000);
1610         clear_bit(I40E_VF_STATE_RESETTING, &vf->vf_states);
1611
1612         return true;
1613 }
1614
1615 /**
1616  * i40e_reset_all_vfs
1617  * @pf: pointer to the PF structure
1618  * @flr: VFLR was issued or not
1619  *
1620  * Reset all allocated VFs in one go. First, tell the hardware to reset each
1621  * VF, then do all the waiting in one chunk, and finally finish restoring each
1622  * VF after the wait. This is useful during PF routines which need to reset
1623  * all VFs, as otherwise it must perform these resets in a serialized fashion.
1624  *
1625  * Returns true if any VFs were reset, and false otherwise.
1626  **/
1627 bool i40e_reset_all_vfs(struct i40e_pf *pf, bool flr)
1628 {
1629         struct i40e_hw *hw = &pf->hw;
1630         struct i40e_vf *vf;
1631         u32 reg;
1632         int i;
1633
1634         /* If we don't have any VFs, then there is nothing to reset */
1635         if (!pf->num_alloc_vfs)
1636                 return false;
1637
1638         /* If VFs have been disabled, there is no need to reset */
1639         if (test_and_set_bit(__I40E_VF_DISABLE, pf->state))
1640                 return false;
1641
1642         /* Begin reset on all VFs at once */
1643         for (vf = &pf->vf[0]; vf < &pf->vf[pf->num_alloc_vfs]; ++vf) {
1644                 /* If VF is being reset no need to trigger reset again */
1645                 if (!test_bit(I40E_VF_STATE_RESETTING, &vf->vf_states))
1646                         i40e_trigger_vf_reset(vf, flr);
1647         }
1648
1649         /* HW requires some time to make sure it can flush the FIFO for a VF
1650          * when it resets it. Poll the VPGEN_VFRSTAT register for each VF in
1651          * sequence to make sure that it has completed. We'll keep track of
1652          * the VFs using a simple iterator that increments once that VF has
1653          * finished resetting.
1654          */
1655         for (i = 0, vf = &pf->vf[0]; i < 10 && vf < &pf->vf[pf->num_alloc_vfs]; ++i) {
1656                 usleep_range(10000, 20000);
1657
1658                 /* Check each VF in sequence, beginning with the VF to fail
1659                  * the previous check.
1660                  */
1661                 while (vf < &pf->vf[pf->num_alloc_vfs]) {
1662                         if (!test_bit(I40E_VF_STATE_RESETTING, &vf->vf_states)) {
1663                                 reg = rd32(hw, I40E_VPGEN_VFRSTAT(vf->vf_id));
1664                                 if (!(reg & I40E_VPGEN_VFRSTAT_VFRD_MASK))
1665                                         break;
1666                         }
1667
1668                         /* If the current VF has finished resetting, move on
1669                          * to the next VF in sequence.
1670                          */
1671                         ++vf;
1672                 }
1673         }
1674
1675         if (flr)
1676                 usleep_range(10000, 20000);
1677
1678         /* Display a warning if at least one VF didn't manage to reset in
1679          * time, but continue on with the operation.
1680          */
1681         if (vf < &pf->vf[pf->num_alloc_vfs])
1682                 dev_err(&pf->pdev->dev, "VF reset check timeout on VF %d\n",
1683                         vf->vf_id);
1684         usleep_range(10000, 20000);
1685
1686         /* Begin disabling all the rings associated with VFs, but do not wait
1687          * between each VF.
1688          */
1689         for (vf = &pf->vf[0]; vf < &pf->vf[pf->num_alloc_vfs]; ++vf) {
1690                 /* On initial reset, we don't have any queues to disable */
1691                 if (vf->lan_vsi_idx == 0)
1692                         continue;
1693
1694                 /* If VF is reset in another thread just continue */
1695                 if (test_bit(I40E_VF_STATE_RESETTING, &vf->vf_states))
1696                         continue;
1697
1698                 i40e_vsi_stop_rings_no_wait(pf->vsi[vf->lan_vsi_idx]);
1699         }
1700
1701         /* Now that we've notified HW to disable all of the VF rings, wait
1702          * until they finish.
1703          */
1704         for (vf = &pf->vf[0]; vf < &pf->vf[pf->num_alloc_vfs]; ++vf) {
1705                 /* On initial reset, we don't have any queues to disable */
1706                 if (vf->lan_vsi_idx == 0)
1707                         continue;
1708
1709                 /* If VF is reset in another thread just continue */
1710                 if (test_bit(I40E_VF_STATE_RESETTING, &vf->vf_states))
1711                         continue;
1712
1713                 i40e_vsi_wait_queues_disabled(pf->vsi[vf->lan_vsi_idx]);
1714         }
1715
1716         /* Hw may need up to 50ms to finish disabling the RX queues. We
1717          * minimize the wait by delaying only once for all VFs.
1718          */
1719         mdelay(50);
1720
1721         /* Finish the reset on each VF */
1722         for (vf = &pf->vf[0]; vf < &pf->vf[pf->num_alloc_vfs]; ++vf) {
1723                 /* If VF is reset in another thread just continue */
1724                 if (test_bit(I40E_VF_STATE_RESETTING, &vf->vf_states))
1725                         continue;
1726
1727                 i40e_cleanup_reset_vf(vf);
1728         }
1729
1730         i40e_flush(hw);
1731         usleep_range(20000, 40000);
1732         clear_bit(__I40E_VF_DISABLE, pf->state);
1733
1734         return true;
1735 }
1736
1737 /**
1738  * i40e_free_vfs
1739  * @pf: pointer to the PF structure
1740  *
1741  * free VF resources
1742  **/
1743 void i40e_free_vfs(struct i40e_pf *pf)
1744 {
1745         struct i40e_hw *hw = &pf->hw;
1746         u32 reg_idx, bit_idx;
1747         int i, tmp, vf_id;
1748
1749         if (!pf->vf)
1750                 return;
1751
1752         set_bit(__I40E_VFS_RELEASING, pf->state);
1753         while (test_and_set_bit(__I40E_VF_DISABLE, pf->state))
1754                 usleep_range(1000, 2000);
1755
1756         i40e_notify_client_of_vf_enable(pf, 0);
1757
1758         /* Disable IOV before freeing resources. This lets any VF drivers
1759          * running in the host get themselves cleaned up before we yank
1760          * the carpet out from underneath their feet.
1761          */
1762         if (!pci_vfs_assigned(pf->pdev))
1763                 pci_disable_sriov(pf->pdev);
1764         else
1765                 dev_warn(&pf->pdev->dev, "VFs are assigned - not disabling SR-IOV\n");
1766
1767         /* Amortize wait time by stopping all VFs at the same time */
1768         for (i = 0; i < pf->num_alloc_vfs; i++) {
1769                 if (test_bit(I40E_VF_STATE_INIT, &pf->vf[i].vf_states))
1770                         continue;
1771
1772                 i40e_vsi_stop_rings_no_wait(pf->vsi[pf->vf[i].lan_vsi_idx]);
1773         }
1774
1775         for (i = 0; i < pf->num_alloc_vfs; i++) {
1776                 if (test_bit(I40E_VF_STATE_INIT, &pf->vf[i].vf_states))
1777                         continue;
1778
1779                 i40e_vsi_wait_queues_disabled(pf->vsi[pf->vf[i].lan_vsi_idx]);
1780         }
1781
1782         /* free up VF resources */
1783         tmp = pf->num_alloc_vfs;
1784         pf->num_alloc_vfs = 0;
1785         for (i = 0; i < tmp; i++) {
1786                 if (test_bit(I40E_VF_STATE_INIT, &pf->vf[i].vf_states))
1787                         i40e_free_vf_res(&pf->vf[i]);
1788                 /* disable qp mappings */
1789                 i40e_disable_vf_mappings(&pf->vf[i]);
1790         }
1791
1792         kfree(pf->vf);
1793         pf->vf = NULL;
1794
1795         /* This check is for when the driver is unloaded while VFs are
1796          * assigned. Setting the number of VFs to 0 through sysfs is caught
1797          * before this function ever gets called.
1798          */
1799         if (!pci_vfs_assigned(pf->pdev)) {
1800                 /* Acknowledge VFLR for all VFS. Without this, VFs will fail to
1801                  * work correctly when SR-IOV gets re-enabled.
1802                  */
1803                 for (vf_id = 0; vf_id < tmp; vf_id++) {
1804                         reg_idx = (hw->func_caps.vf_base_id + vf_id) / 32;
1805                         bit_idx = (hw->func_caps.vf_base_id + vf_id) % 32;
1806                         wr32(hw, I40E_GLGEN_VFLRSTAT(reg_idx), BIT(bit_idx));
1807                 }
1808         }
1809         clear_bit(__I40E_VF_DISABLE, pf->state);
1810         clear_bit(__I40E_VFS_RELEASING, pf->state);
1811 }
1812
1813 #ifdef CONFIG_PCI_IOV
1814 /**
1815  * i40e_alloc_vfs
1816  * @pf: pointer to the PF structure
1817  * @num_alloc_vfs: number of VFs to allocate
1818  *
1819  * allocate VF resources
1820  **/
1821 int i40e_alloc_vfs(struct i40e_pf *pf, u16 num_alloc_vfs)
1822 {
1823         struct i40e_vf *vfs;
1824         int i, ret = 0;
1825
1826         /* Disable interrupt 0 so we don't try to handle the VFLR. */
1827         i40e_irq_dynamic_disable_icr0(pf);
1828
1829         /* Check to see if we're just allocating resources for extant VFs */
1830         if (pci_num_vf(pf->pdev) != num_alloc_vfs) {
1831                 ret = pci_enable_sriov(pf->pdev, num_alloc_vfs);
1832                 if (ret) {
1833                         clear_bit(I40E_FLAG_VEB_MODE_ENA, pf->flags);
1834                         pf->num_alloc_vfs = 0;
1835                         goto err_iov;
1836                 }
1837         }
1838         /* allocate memory */
1839         vfs = kcalloc(num_alloc_vfs, sizeof(struct i40e_vf), GFP_KERNEL);
1840         if (!vfs) {
1841                 ret = -ENOMEM;
1842                 goto err_alloc;
1843         }
1844         pf->vf = vfs;
1845
1846         /* apply default profile */
1847         for (i = 0; i < num_alloc_vfs; i++) {
1848                 vfs[i].pf = pf;
1849                 vfs[i].parent_type = I40E_SWITCH_ELEMENT_TYPE_VEB;
1850                 vfs[i].vf_id = i;
1851
1852                 /* assign default capabilities */
1853                 set_bit(I40E_VIRTCHNL_VF_CAP_L2, &vfs[i].vf_caps);
1854                 vfs[i].spoofchk = true;
1855
1856                 set_bit(I40E_VF_STATE_PRE_ENABLE, &vfs[i].vf_states);
1857
1858         }
1859         pf->num_alloc_vfs = num_alloc_vfs;
1860
1861         /* VF resources get allocated during reset */
1862         i40e_reset_all_vfs(pf, false);
1863
1864         i40e_notify_client_of_vf_enable(pf, num_alloc_vfs);
1865
1866 err_alloc:
1867         if (ret)
1868                 i40e_free_vfs(pf);
1869 err_iov:
1870         /* Re-enable interrupt 0. */
1871         i40e_irq_dynamic_enable_icr0(pf);
1872         return ret;
1873 }
1874
1875 #endif
1876 /**
1877  * i40e_pci_sriov_enable
1878  * @pdev: pointer to a pci_dev structure
1879  * @num_vfs: number of VFs to allocate
1880  *
1881  * Enable or change the number of VFs
1882  **/
1883 static int i40e_pci_sriov_enable(struct pci_dev *pdev, int num_vfs)
1884 {
1885 #ifdef CONFIG_PCI_IOV
1886         struct i40e_pf *pf = pci_get_drvdata(pdev);
1887         int pre_existing_vfs = pci_num_vf(pdev);
1888         int err = 0;
1889
1890         if (test_bit(__I40E_TESTING, pf->state)) {
1891                 dev_warn(&pdev->dev,
1892                          "Cannot enable SR-IOV virtual functions while the device is undergoing diagnostic testing\n");
1893                 err = -EPERM;
1894                 goto err_out;
1895         }
1896
1897         if (pre_existing_vfs && pre_existing_vfs != num_vfs)
1898                 i40e_free_vfs(pf);
1899         else if (pre_existing_vfs && pre_existing_vfs == num_vfs)
1900                 goto out;
1901
1902         if (num_vfs > pf->num_req_vfs) {
1903                 dev_warn(&pdev->dev, "Unable to enable %d VFs. Limited to %d VFs due to device resource constraints.\n",
1904                          num_vfs, pf->num_req_vfs);
1905                 err = -EPERM;
1906                 goto err_out;
1907         }
1908
1909         dev_info(&pdev->dev, "Allocating %d VFs.\n", num_vfs);
1910         err = i40e_alloc_vfs(pf, num_vfs);
1911         if (err) {
1912                 dev_warn(&pdev->dev, "Failed to enable SR-IOV: %d\n", err);
1913                 goto err_out;
1914         }
1915
1916 out:
1917         return num_vfs;
1918
1919 err_out:
1920         return err;
1921 #endif
1922         return 0;
1923 }
1924
1925 /**
1926  * i40e_pci_sriov_configure
1927  * @pdev: pointer to a pci_dev structure
1928  * @num_vfs: number of VFs to allocate
1929  *
1930  * Enable or change the number of VFs. Called when the user updates the number
1931  * of VFs in sysfs.
1932  **/
1933 int i40e_pci_sriov_configure(struct pci_dev *pdev, int num_vfs)
1934 {
1935         struct i40e_pf *pf = pci_get_drvdata(pdev);
1936         int ret = 0;
1937
1938         if (test_and_set_bit(__I40E_VIRTCHNL_OP_PENDING, pf->state)) {
1939                 dev_warn(&pdev->dev, "Unable to configure VFs, other operation is pending.\n");
1940                 return -EAGAIN;
1941         }
1942
1943         if (num_vfs) {
1944                 if (!test_bit(I40E_FLAG_VEB_MODE_ENA, pf->flags)) {
1945                         set_bit(I40E_FLAG_VEB_MODE_ENA, pf->flags);
1946                         i40e_do_reset_safe(pf, I40E_PF_RESET_AND_REBUILD_FLAG);
1947                 }
1948                 ret = i40e_pci_sriov_enable(pdev, num_vfs);
1949                 goto sriov_configure_out;
1950         }
1951
1952         if (!pci_vfs_assigned(pf->pdev)) {
1953                 i40e_free_vfs(pf);
1954                 clear_bit(I40E_FLAG_VEB_MODE_ENA, pf->flags);
1955                 i40e_do_reset_safe(pf, I40E_PF_RESET_AND_REBUILD_FLAG);
1956         } else {
1957                 dev_warn(&pdev->dev, "Unable to free VFs because some are assigned to VMs.\n");
1958                 ret = -EINVAL;
1959                 goto sriov_configure_out;
1960         }
1961 sriov_configure_out:
1962         clear_bit(__I40E_VIRTCHNL_OP_PENDING, pf->state);
1963         return ret;
1964 }
1965
1966 /***********************virtual channel routines******************/
1967
1968 /**
1969  * i40e_vc_send_msg_to_vf
1970  * @vf: pointer to the VF info
1971  * @v_opcode: virtual channel opcode
1972  * @v_retval: virtual channel return value
1973  * @msg: pointer to the msg buffer
1974  * @msglen: msg length
1975  *
1976  * send msg to VF
1977  **/
1978 static int i40e_vc_send_msg_to_vf(struct i40e_vf *vf, u32 v_opcode,
1979                                   u32 v_retval, u8 *msg, u16 msglen)
1980 {
1981         struct i40e_pf *pf;
1982         struct i40e_hw *hw;
1983         int abs_vf_id;
1984         int aq_ret;
1985
1986         /* validate the request */
1987         if (!vf || vf->vf_id >= vf->pf->num_alloc_vfs)
1988                 return -EINVAL;
1989
1990         pf = vf->pf;
1991         hw = &pf->hw;
1992         abs_vf_id = vf->vf_id + hw->func_caps.vf_base_id;
1993
1994         aq_ret = i40e_aq_send_msg_to_vf(hw, abs_vf_id,  v_opcode, v_retval,
1995                                         msg, msglen, NULL);
1996         if (aq_ret) {
1997                 dev_info(&pf->pdev->dev,
1998                          "Unable to send the message to VF %d aq_err %d\n",
1999                          vf->vf_id, pf->hw.aq.asq_last_status);
2000                 return -EIO;
2001         }
2002
2003         return 0;
2004 }
2005
2006 /**
2007  * i40e_vc_send_resp_to_vf
2008  * @vf: pointer to the VF info
2009  * @opcode: operation code
2010  * @retval: return value
2011  *
2012  * send resp msg to VF
2013  **/
2014 static int i40e_vc_send_resp_to_vf(struct i40e_vf *vf,
2015                                    enum virtchnl_ops opcode,
2016                                    int retval)
2017 {
2018         return i40e_vc_send_msg_to_vf(vf, opcode, retval, NULL, 0);
2019 }
2020
2021 /**
2022  * i40e_sync_vf_state
2023  * @vf: pointer to the VF info
2024  * @state: VF state
2025  *
2026  * Called from a VF message to synchronize the service with a potential
2027  * VF reset state
2028  **/
2029 static bool i40e_sync_vf_state(struct i40e_vf *vf, enum i40e_vf_states state)
2030 {
2031         int i;
2032
2033         /* When handling some messages, it needs VF state to be set.
2034          * It is possible that this flag is cleared during VF reset,
2035          * so there is a need to wait until the end of the reset to
2036          * handle the request message correctly.
2037          */
2038         for (i = 0; i < I40E_VF_STATE_WAIT_COUNT; i++) {
2039                 if (test_bit(state, &vf->vf_states))
2040                         return true;
2041                 usleep_range(10000, 20000);
2042         }
2043
2044         return test_bit(state, &vf->vf_states);
2045 }
2046
2047 /**
2048  * i40e_vc_get_version_msg
2049  * @vf: pointer to the VF info
2050  * @msg: pointer to the msg buffer
2051  *
2052  * called from the VF to request the API version used by the PF
2053  **/
2054 static int i40e_vc_get_version_msg(struct i40e_vf *vf, u8 *msg)
2055 {
2056         struct virtchnl_version_info info = {
2057                 VIRTCHNL_VERSION_MAJOR, VIRTCHNL_VERSION_MINOR
2058         };
2059
2060         vf->vf_ver = *(struct virtchnl_version_info *)msg;
2061         /* VFs running the 1.0 API expect to get 1.0 back or they will cry. */
2062         if (VF_IS_V10(&vf->vf_ver))
2063                 info.minor = VIRTCHNL_VERSION_MINOR_NO_VF_CAPS;
2064         return i40e_vc_send_msg_to_vf(vf, VIRTCHNL_OP_VERSION,
2065                                       0, (u8 *)&info,
2066                                       sizeof(struct virtchnl_version_info));
2067 }
2068
2069 /**
2070  * i40e_del_qch - delete all the additional VSIs created as a part of ADq
2071  * @vf: pointer to VF structure
2072  **/
2073 static void i40e_del_qch(struct i40e_vf *vf)
2074 {
2075         struct i40e_pf *pf = vf->pf;
2076         int i;
2077
2078         /* first element in the array belongs to primary VF VSI and we shouldn't
2079          * delete it. We should however delete the rest of the VSIs created
2080          */
2081         for (i = 1; i < vf->num_tc; i++) {
2082                 if (vf->ch[i].vsi_idx) {
2083                         i40e_vsi_release(pf->vsi[vf->ch[i].vsi_idx]);
2084                         vf->ch[i].vsi_idx = 0;
2085                         vf->ch[i].vsi_id = 0;
2086                 }
2087         }
2088 }
2089
2090 /**
2091  * i40e_vc_get_max_frame_size
2092  * @vf: pointer to the VF
2093  *
2094  * Max frame size is determined based on the current port's max frame size and
2095  * whether a port VLAN is configured on this VF. The VF is not aware whether
2096  * it's in a port VLAN so the PF needs to account for this in max frame size
2097  * checks and sending the max frame size to the VF.
2098  **/
2099 static u16 i40e_vc_get_max_frame_size(struct i40e_vf *vf)
2100 {
2101         u16 max_frame_size = vf->pf->hw.phy.link_info.max_frame_size;
2102
2103         if (vf->port_vlan_id)
2104                 max_frame_size -= VLAN_HLEN;
2105
2106         return max_frame_size;
2107 }
2108
2109 /**
2110  * i40e_vc_get_vf_resources_msg
2111  * @vf: pointer to the VF info
2112  * @msg: pointer to the msg buffer
2113  *
2114  * called from the VF to request its resources
2115  **/
2116 static int i40e_vc_get_vf_resources_msg(struct i40e_vf *vf, u8 *msg)
2117 {
2118         struct virtchnl_vf_resource *vfres = NULL;
2119         struct i40e_pf *pf = vf->pf;
2120         struct i40e_vsi *vsi;
2121         int num_vsis = 1;
2122         int aq_ret = 0;
2123         size_t len = 0;
2124         int ret;
2125
2126         if (!i40e_sync_vf_state(vf, I40E_VF_STATE_INIT)) {
2127                 aq_ret = -EINVAL;
2128                 goto err;
2129         }
2130
2131         len = virtchnl_struct_size(vfres, vsi_res, num_vsis);
2132         vfres = kzalloc(len, GFP_KERNEL);
2133         if (!vfres) {
2134                 aq_ret = -ENOMEM;
2135                 len = 0;
2136                 goto err;
2137         }
2138         if (VF_IS_V11(&vf->vf_ver))
2139                 vf->driver_caps = *(u32 *)msg;
2140         else
2141                 vf->driver_caps = VIRTCHNL_VF_OFFLOAD_L2 |
2142                                   VIRTCHNL_VF_OFFLOAD_RSS_REG |
2143                                   VIRTCHNL_VF_OFFLOAD_VLAN;
2144
2145         vfres->vf_cap_flags = VIRTCHNL_VF_OFFLOAD_L2;
2146         vfres->vf_cap_flags |= VIRTCHNL_VF_CAP_ADV_LINK_SPEED;
2147         vsi = pf->vsi[vf->lan_vsi_idx];
2148         if (!vsi->info.pvid)
2149                 vfres->vf_cap_flags |= VIRTCHNL_VF_OFFLOAD_VLAN;
2150
2151         if (i40e_vf_client_capable(pf, vf->vf_id) &&
2152             (vf->driver_caps & VIRTCHNL_VF_OFFLOAD_RDMA)) {
2153                 vfres->vf_cap_flags |= VIRTCHNL_VF_OFFLOAD_RDMA;
2154                 set_bit(I40E_VF_STATE_RDMAENA, &vf->vf_states);
2155         } else {
2156                 clear_bit(I40E_VF_STATE_RDMAENA, &vf->vf_states);
2157         }
2158
2159         if (vf->driver_caps & VIRTCHNL_VF_OFFLOAD_RSS_PF) {
2160                 vfres->vf_cap_flags |= VIRTCHNL_VF_OFFLOAD_RSS_PF;
2161         } else {
2162                 if (test_bit(I40E_HW_CAP_RSS_AQ, pf->hw.caps) &&
2163                     (vf->driver_caps & VIRTCHNL_VF_OFFLOAD_RSS_AQ))
2164                         vfres->vf_cap_flags |= VIRTCHNL_VF_OFFLOAD_RSS_AQ;
2165                 else
2166                         vfres->vf_cap_flags |= VIRTCHNL_VF_OFFLOAD_RSS_REG;
2167         }
2168
2169         if (test_bit(I40E_HW_CAP_MULTI_TCP_UDP_RSS_PCTYPE, pf->hw.caps)) {
2170                 if (vf->driver_caps & VIRTCHNL_VF_OFFLOAD_RSS_PCTYPE_V2)
2171                         vfres->vf_cap_flags |=
2172                                 VIRTCHNL_VF_OFFLOAD_RSS_PCTYPE_V2;
2173         }
2174
2175         if (vf->driver_caps & VIRTCHNL_VF_OFFLOAD_ENCAP)
2176                 vfres->vf_cap_flags |= VIRTCHNL_VF_OFFLOAD_ENCAP;
2177
2178         if (test_bit(I40E_HW_CAP_OUTER_UDP_CSUM, pf->hw.caps) &&
2179             (vf->driver_caps & VIRTCHNL_VF_OFFLOAD_ENCAP_CSUM))
2180                 vfres->vf_cap_flags |= VIRTCHNL_VF_OFFLOAD_ENCAP_CSUM;
2181
2182         if (vf->driver_caps & VIRTCHNL_VF_OFFLOAD_RX_POLLING) {
2183                 if (test_bit(I40E_FLAG_MFP_ENA, pf->flags)) {
2184                         dev_err(&pf->pdev->dev,
2185                                 "VF %d requested polling mode: this feature is supported only when the device is running in single function per port (SFP) mode\n",
2186                                  vf->vf_id);
2187                         aq_ret = -EINVAL;
2188                         goto err;
2189                 }
2190                 vfres->vf_cap_flags |= VIRTCHNL_VF_OFFLOAD_RX_POLLING;
2191         }
2192
2193         if (test_bit(I40E_HW_CAP_WB_ON_ITR, pf->hw.caps)) {
2194                 if (vf->driver_caps & VIRTCHNL_VF_OFFLOAD_WB_ON_ITR)
2195                         vfres->vf_cap_flags |=
2196                                         VIRTCHNL_VF_OFFLOAD_WB_ON_ITR;
2197         }
2198
2199         if (vf->driver_caps & VIRTCHNL_VF_OFFLOAD_REQ_QUEUES)
2200                 vfres->vf_cap_flags |= VIRTCHNL_VF_OFFLOAD_REQ_QUEUES;
2201
2202         if (vf->driver_caps & VIRTCHNL_VF_OFFLOAD_ADQ)
2203                 vfres->vf_cap_flags |= VIRTCHNL_VF_OFFLOAD_ADQ;
2204
2205         vfres->num_vsis = num_vsis;
2206         vfres->num_queue_pairs = vf->num_queue_pairs;
2207         vfres->max_vectors = pf->hw.func_caps.num_msix_vectors_vf;
2208         vfres->rss_key_size = I40E_HKEY_ARRAY_SIZE;
2209         vfres->rss_lut_size = I40E_VF_HLUT_ARRAY_SIZE;
2210         vfres->max_mtu = i40e_vc_get_max_frame_size(vf);
2211
2212         if (vf->lan_vsi_idx) {
2213                 vfres->vsi_res[0].vsi_id = vf->lan_vsi_id;
2214                 vfres->vsi_res[0].vsi_type = VIRTCHNL_VSI_SRIOV;
2215                 vfres->vsi_res[0].num_queue_pairs = vsi->alloc_queue_pairs;
2216                 /* VFs only use TC 0 */
2217                 vfres->vsi_res[0].qset_handle
2218                                           = le16_to_cpu(vsi->info.qs_handle[0]);
2219                 if (!(vf->driver_caps & VIRTCHNL_VF_OFFLOAD_USO) && !vf->pf_set_mac) {
2220                         i40e_del_mac_filter(vsi, vf->default_lan_addr.addr);
2221                         eth_zero_addr(vf->default_lan_addr.addr);
2222                 }
2223                 ether_addr_copy(vfres->vsi_res[0].default_mac_addr,
2224                                 vf->default_lan_addr.addr);
2225         }
2226         set_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states);
2227
2228 err:
2229         /* send the response back to the VF */
2230         ret = i40e_vc_send_msg_to_vf(vf, VIRTCHNL_OP_GET_VF_RESOURCES,
2231                                      aq_ret, (u8 *)vfres, len);
2232
2233         kfree(vfres);
2234         return ret;
2235 }
2236
2237 /**
2238  * i40e_vc_config_promiscuous_mode_msg
2239  * @vf: pointer to the VF info
2240  * @msg: pointer to the msg buffer
2241  *
2242  * called from the VF to configure the promiscuous mode of
2243  * VF vsis
2244  **/
2245 static int i40e_vc_config_promiscuous_mode_msg(struct i40e_vf *vf, u8 *msg)
2246 {
2247         struct virtchnl_promisc_info *info =
2248             (struct virtchnl_promisc_info *)msg;
2249         struct i40e_pf *pf = vf->pf;
2250         bool allmulti = false;
2251         bool alluni = false;
2252         int aq_ret = 0;
2253
2254         if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) {
2255                 aq_ret = -EINVAL;
2256                 goto err_out;
2257         }
2258         if (!test_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps)) {
2259                 dev_err(&pf->pdev->dev,
2260                         "Unprivileged VF %d is attempting to configure promiscuous mode\n",
2261                         vf->vf_id);
2262
2263                 /* Lie to the VF on purpose, because this is an error we can
2264                  * ignore. Unprivileged VF is not a virtual channel error.
2265                  */
2266                 aq_ret = 0;
2267                 goto err_out;
2268         }
2269
2270         if (info->flags > I40E_MAX_VF_PROMISC_FLAGS) {
2271                 aq_ret = -EINVAL;
2272                 goto err_out;
2273         }
2274
2275         if (!i40e_vc_isvalid_vsi_id(vf, info->vsi_id)) {
2276                 aq_ret = -EINVAL;
2277                 goto err_out;
2278         }
2279
2280         /* Multicast promiscuous handling*/
2281         if (info->flags & FLAG_VF_MULTICAST_PROMISC)
2282                 allmulti = true;
2283
2284         if (info->flags & FLAG_VF_UNICAST_PROMISC)
2285                 alluni = true;
2286         aq_ret = i40e_config_vf_promiscuous_mode(vf, info->vsi_id, allmulti,
2287                                                  alluni);
2288         if (aq_ret)
2289                 goto err_out;
2290
2291         if (allmulti) {
2292                 if (!test_and_set_bit(I40E_VF_STATE_MC_PROMISC,
2293                                       &vf->vf_states))
2294                         dev_info(&pf->pdev->dev,
2295                                  "VF %d successfully set multicast promiscuous mode\n",
2296                                  vf->vf_id);
2297         } else if (test_and_clear_bit(I40E_VF_STATE_MC_PROMISC,
2298                                       &vf->vf_states))
2299                 dev_info(&pf->pdev->dev,
2300                          "VF %d successfully unset multicast promiscuous mode\n",
2301                          vf->vf_id);
2302
2303         if (alluni) {
2304                 if (!test_and_set_bit(I40E_VF_STATE_UC_PROMISC,
2305                                       &vf->vf_states))
2306                         dev_info(&pf->pdev->dev,
2307                                  "VF %d successfully set unicast promiscuous mode\n",
2308                                  vf->vf_id);
2309         } else if (test_and_clear_bit(I40E_VF_STATE_UC_PROMISC,
2310                                       &vf->vf_states))
2311                 dev_info(&pf->pdev->dev,
2312                          "VF %d successfully unset unicast promiscuous mode\n",
2313                          vf->vf_id);
2314
2315 err_out:
2316         /* send the response to the VF */
2317         return i40e_vc_send_resp_to_vf(vf,
2318                                        VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE,
2319                                        aq_ret);
2320 }
2321
2322 /**
2323  * i40e_vc_config_queues_msg
2324  * @vf: pointer to the VF info
2325  * @msg: pointer to the msg buffer
2326  *
2327  * called from the VF to configure the rx/tx
2328  * queues
2329  **/
2330 static int i40e_vc_config_queues_msg(struct i40e_vf *vf, u8 *msg)
2331 {
2332         struct virtchnl_vsi_queue_config_info *qci =
2333             (struct virtchnl_vsi_queue_config_info *)msg;
2334         struct virtchnl_queue_pair_info *qpi;
2335         u16 vsi_id, vsi_queue_id = 0;
2336         struct i40e_pf *pf = vf->pf;
2337         int i, j = 0, idx = 0;
2338         struct i40e_vsi *vsi;
2339         u16 num_qps_all = 0;
2340         int aq_ret = 0;
2341
2342         if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) {
2343                 aq_ret = -EINVAL;
2344                 goto error_param;
2345         }
2346
2347         if (!i40e_vc_isvalid_vsi_id(vf, qci->vsi_id)) {
2348                 aq_ret = -EINVAL;
2349                 goto error_param;
2350         }
2351
2352         if (qci->num_queue_pairs > I40E_MAX_VF_QUEUES) {
2353                 aq_ret = -EINVAL;
2354                 goto error_param;
2355         }
2356
2357         if (vf->adq_enabled) {
2358                 for (i = 0; i < vf->num_tc; i++)
2359                         num_qps_all += vf->ch[i].num_qps;
2360                 if (num_qps_all != qci->num_queue_pairs) {
2361                         aq_ret = -EINVAL;
2362                         goto error_param;
2363                 }
2364         }
2365
2366         vsi_id = qci->vsi_id;
2367
2368         for (i = 0; i < qci->num_queue_pairs; i++) {
2369                 qpi = &qci->qpair[i];
2370
2371                 if (!vf->adq_enabled) {
2372                         if (!i40e_vc_isvalid_queue_id(vf, vsi_id,
2373                                                       qpi->txq.queue_id)) {
2374                                 aq_ret = -EINVAL;
2375                                 goto error_param;
2376                         }
2377
2378                         vsi_queue_id = qpi->txq.queue_id;
2379
2380                         if (qpi->txq.vsi_id != qci->vsi_id ||
2381                             qpi->rxq.vsi_id != qci->vsi_id ||
2382                             qpi->rxq.queue_id != vsi_queue_id) {
2383                                 aq_ret = -EINVAL;
2384                                 goto error_param;
2385                         }
2386                 }
2387
2388                 if (vf->adq_enabled) {
2389                         if (idx >= ARRAY_SIZE(vf->ch)) {
2390                                 aq_ret = -ENODEV;
2391                                 goto error_param;
2392                         }
2393                         vsi_id = vf->ch[idx].vsi_id;
2394                 }
2395
2396                 if (i40e_config_vsi_rx_queue(vf, vsi_id, vsi_queue_id,
2397                                              &qpi->rxq) ||
2398                     i40e_config_vsi_tx_queue(vf, vsi_id, vsi_queue_id,
2399                                              &qpi->txq)) {
2400                         aq_ret = -EINVAL;
2401                         goto error_param;
2402                 }
2403
2404                 /* For ADq there can be up to 4 VSIs with max 4 queues each.
2405                  * VF does not know about these additional VSIs and all
2406                  * it cares is about its own queues. PF configures these queues
2407                  * to its appropriate VSIs based on TC mapping
2408                  */
2409                 if (vf->adq_enabled) {
2410                         if (idx >= ARRAY_SIZE(vf->ch)) {
2411                                 aq_ret = -ENODEV;
2412                                 goto error_param;
2413                         }
2414                         if (j == (vf->ch[idx].num_qps - 1)) {
2415                                 idx++;
2416                                 j = 0; /* resetting the queue count */
2417                                 vsi_queue_id = 0;
2418                         } else {
2419                                 j++;
2420                                 vsi_queue_id++;
2421                         }
2422                 }
2423         }
2424         /* set vsi num_queue_pairs in use to num configured by VF */
2425         if (!vf->adq_enabled) {
2426                 pf->vsi[vf->lan_vsi_idx]->num_queue_pairs =
2427                         qci->num_queue_pairs;
2428         } else {
2429                 for (i = 0; i < vf->num_tc; i++) {
2430                         vsi = pf->vsi[vf->ch[i].vsi_idx];
2431                         vsi->num_queue_pairs = vf->ch[i].num_qps;
2432
2433                         if (i40e_update_adq_vsi_queues(vsi, i)) {
2434                                 aq_ret = -EIO;
2435                                 goto error_param;
2436                         }
2437                 }
2438         }
2439
2440 error_param:
2441         /* send the response to the VF */
2442         return i40e_vc_send_resp_to_vf(vf, VIRTCHNL_OP_CONFIG_VSI_QUEUES,
2443                                        aq_ret);
2444 }
2445
2446 /**
2447  * i40e_validate_queue_map - check queue map is valid
2448  * @vf: the VF structure pointer
2449  * @vsi_id: vsi id
2450  * @queuemap: Tx or Rx queue map
2451  *
2452  * check if Tx or Rx queue map is valid
2453  **/
2454 static int i40e_validate_queue_map(struct i40e_vf *vf, u16 vsi_id,
2455                                    unsigned long queuemap)
2456 {
2457         u16 vsi_queue_id, queue_id;
2458
2459         for_each_set_bit(vsi_queue_id, &queuemap, I40E_MAX_VSI_QP) {
2460                 if (vf->adq_enabled) {
2461                         vsi_id = vf->ch[vsi_queue_id / I40E_MAX_VF_VSI].vsi_id;
2462                         queue_id = (vsi_queue_id % I40E_DEFAULT_QUEUES_PER_VF);
2463                 } else {
2464                         queue_id = vsi_queue_id;
2465                 }
2466
2467                 if (!i40e_vc_isvalid_queue_id(vf, vsi_id, queue_id))
2468                         return -EINVAL;
2469         }
2470
2471         return 0;
2472 }
2473
2474 /**
2475  * i40e_vc_config_irq_map_msg
2476  * @vf: pointer to the VF info
2477  * @msg: pointer to the msg buffer
2478  *
2479  * called from the VF to configure the irq to
2480  * queue map
2481  **/
2482 static int i40e_vc_config_irq_map_msg(struct i40e_vf *vf, u8 *msg)
2483 {
2484         struct virtchnl_irq_map_info *irqmap_info =
2485             (struct virtchnl_irq_map_info *)msg;
2486         struct virtchnl_vector_map *map;
2487         int aq_ret = 0;
2488         u16 vsi_id;
2489         int i;
2490
2491         if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) {
2492                 aq_ret = -EINVAL;
2493                 goto error_param;
2494         }
2495
2496         if (irqmap_info->num_vectors >
2497             vf->pf->hw.func_caps.num_msix_vectors_vf) {
2498                 aq_ret = -EINVAL;
2499                 goto error_param;
2500         }
2501
2502         for (i = 0; i < irqmap_info->num_vectors; i++) {
2503                 map = &irqmap_info->vecmap[i];
2504                 /* validate msg params */
2505                 if (!i40e_vc_isvalid_vector_id(vf, map->vector_id) ||
2506                     !i40e_vc_isvalid_vsi_id(vf, map->vsi_id)) {
2507                         aq_ret = -EINVAL;
2508                         goto error_param;
2509                 }
2510                 vsi_id = map->vsi_id;
2511
2512                 if (i40e_validate_queue_map(vf, vsi_id, map->rxq_map)) {
2513                         aq_ret = -EINVAL;
2514                         goto error_param;
2515                 }
2516
2517                 if (i40e_validate_queue_map(vf, vsi_id, map->txq_map)) {
2518                         aq_ret = -EINVAL;
2519                         goto error_param;
2520                 }
2521
2522                 i40e_config_irq_link_list(vf, vsi_id, map);
2523         }
2524 error_param:
2525         /* send the response to the VF */
2526         return i40e_vc_send_resp_to_vf(vf, VIRTCHNL_OP_CONFIG_IRQ_MAP,
2527                                        aq_ret);
2528 }
2529
2530 /**
2531  * i40e_ctrl_vf_tx_rings
2532  * @vsi: the SRIOV VSI being configured
2533  * @q_map: bit map of the queues to be enabled
2534  * @enable: start or stop the queue
2535  **/
2536 static int i40e_ctrl_vf_tx_rings(struct i40e_vsi *vsi, unsigned long q_map,
2537                                  bool enable)
2538 {
2539         struct i40e_pf *pf = vsi->back;
2540         int ret = 0;
2541         u16 q_id;
2542
2543         for_each_set_bit(q_id, &q_map, I40E_MAX_VF_QUEUES) {
2544                 ret = i40e_control_wait_tx_q(vsi->seid, pf,
2545                                              vsi->base_queue + q_id,
2546                                              false /*is xdp*/, enable);
2547                 if (ret)
2548                         break;
2549         }
2550         return ret;
2551 }
2552
2553 /**
2554  * i40e_ctrl_vf_rx_rings
2555  * @vsi: the SRIOV VSI being configured
2556  * @q_map: bit map of the queues to be enabled
2557  * @enable: start or stop the queue
2558  **/
2559 static int i40e_ctrl_vf_rx_rings(struct i40e_vsi *vsi, unsigned long q_map,
2560                                  bool enable)
2561 {
2562         struct i40e_pf *pf = vsi->back;
2563         int ret = 0;
2564         u16 q_id;
2565
2566         for_each_set_bit(q_id, &q_map, I40E_MAX_VF_QUEUES) {
2567                 ret = i40e_control_wait_rx_q(pf, vsi->base_queue + q_id,
2568                                              enable);
2569                 if (ret)
2570                         break;
2571         }
2572         return ret;
2573 }
2574
2575 /**
2576  * i40e_vc_validate_vqs_bitmaps - validate Rx/Tx queue bitmaps from VIRTHCHNL
2577  * @vqs: virtchnl_queue_select structure containing bitmaps to validate
2578  *
2579  * Returns true if validation was successful, else false.
2580  */
2581 static bool i40e_vc_validate_vqs_bitmaps(struct virtchnl_queue_select *vqs)
2582 {
2583         if ((!vqs->rx_queues && !vqs->tx_queues) ||
2584             vqs->rx_queues >= BIT(I40E_MAX_VF_QUEUES) ||
2585             vqs->tx_queues >= BIT(I40E_MAX_VF_QUEUES))
2586                 return false;
2587
2588         return true;
2589 }
2590
2591 /**
2592  * i40e_vc_enable_queues_msg
2593  * @vf: pointer to the VF info
2594  * @msg: pointer to the msg buffer
2595  *
2596  * called from the VF to enable all or specific queue(s)
2597  **/
2598 static int i40e_vc_enable_queues_msg(struct i40e_vf *vf, u8 *msg)
2599 {
2600         struct virtchnl_queue_select *vqs =
2601             (struct virtchnl_queue_select *)msg;
2602         struct i40e_pf *pf = vf->pf;
2603         int aq_ret = 0;
2604         int i;
2605
2606         if (vf->is_disabled_from_host) {
2607                 aq_ret = -EPERM;
2608                 dev_info(&pf->pdev->dev,
2609                          "Admin has disabled VF %d, will not enable queues\n",
2610                          vf->vf_id);
2611                 goto error_param;
2612         }
2613
2614         if (!test_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states)) {
2615                 aq_ret = -EINVAL;
2616                 goto error_param;
2617         }
2618
2619         if (!i40e_vc_isvalid_vsi_id(vf, vqs->vsi_id)) {
2620                 aq_ret = -EINVAL;
2621                 goto error_param;
2622         }
2623
2624         if (!i40e_vc_validate_vqs_bitmaps(vqs)) {
2625                 aq_ret = -EINVAL;
2626                 goto error_param;
2627         }
2628
2629         /* Use the queue bit map sent by the VF */
2630         if (i40e_ctrl_vf_rx_rings(pf->vsi[vf->lan_vsi_idx], vqs->rx_queues,
2631                                   true)) {
2632                 aq_ret = -EIO;
2633                 goto error_param;
2634         }
2635         if (i40e_ctrl_vf_tx_rings(pf->vsi[vf->lan_vsi_idx], vqs->tx_queues,
2636                                   true)) {
2637                 aq_ret = -EIO;
2638                 goto error_param;
2639         }
2640
2641         /* need to start the rings for additional ADq VSI's as well */
2642         if (vf->adq_enabled) {
2643                 /* zero belongs to LAN VSI */
2644                 for (i = 1; i < vf->num_tc; i++) {
2645                         if (i40e_vsi_start_rings(pf->vsi[vf->ch[i].vsi_idx]))
2646                                 aq_ret = -EIO;
2647                 }
2648         }
2649
2650 error_param:
2651         /* send the response to the VF */
2652         return i40e_vc_send_resp_to_vf(vf, VIRTCHNL_OP_ENABLE_QUEUES,
2653                                        aq_ret);
2654 }
2655
2656 /**
2657  * i40e_vc_disable_queues_msg
2658  * @vf: pointer to the VF info
2659  * @msg: pointer to the msg buffer
2660  *
2661  * called from the VF to disable all or specific
2662  * queue(s)
2663  **/
2664 static int i40e_vc_disable_queues_msg(struct i40e_vf *vf, u8 *msg)
2665 {
2666         struct virtchnl_queue_select *vqs =
2667             (struct virtchnl_queue_select *)msg;
2668         struct i40e_pf *pf = vf->pf;
2669         int aq_ret = 0;
2670
2671         if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) {
2672                 aq_ret = -EINVAL;
2673                 goto error_param;
2674         }
2675
2676         if (!i40e_vc_isvalid_vsi_id(vf, vqs->vsi_id)) {
2677                 aq_ret = -EINVAL;
2678                 goto error_param;
2679         }
2680
2681         if (!i40e_vc_validate_vqs_bitmaps(vqs)) {
2682                 aq_ret = -EINVAL;
2683                 goto error_param;
2684         }
2685
2686         /* Use the queue bit map sent by the VF */
2687         if (i40e_ctrl_vf_tx_rings(pf->vsi[vf->lan_vsi_idx], vqs->tx_queues,
2688                                   false)) {
2689                 aq_ret = -EIO;
2690                 goto error_param;
2691         }
2692         if (i40e_ctrl_vf_rx_rings(pf->vsi[vf->lan_vsi_idx], vqs->rx_queues,
2693                                   false)) {
2694                 aq_ret = -EIO;
2695                 goto error_param;
2696         }
2697 error_param:
2698         /* send the response to the VF */
2699         return i40e_vc_send_resp_to_vf(vf, VIRTCHNL_OP_DISABLE_QUEUES,
2700                                        aq_ret);
2701 }
2702
2703 /**
2704  * i40e_check_enough_queue - find big enough queue number
2705  * @vf: pointer to the VF info
2706  * @needed: the number of items needed
2707  *
2708  * Returns the base item index of the queue, or negative for error
2709  **/
2710 static int i40e_check_enough_queue(struct i40e_vf *vf, u16 needed)
2711 {
2712         unsigned int  i, cur_queues, more, pool_size;
2713         struct i40e_lump_tracking *pile;
2714         struct i40e_pf *pf = vf->pf;
2715         struct i40e_vsi *vsi;
2716
2717         vsi = pf->vsi[vf->lan_vsi_idx];
2718         cur_queues = vsi->alloc_queue_pairs;
2719
2720         /* if current allocated queues are enough for need */
2721         if (cur_queues >= needed)
2722                 return vsi->base_queue;
2723
2724         pile = pf->qp_pile;
2725         if (cur_queues > 0) {
2726                 /* if the allocated queues are not zero
2727                  * just check if there are enough queues for more
2728                  * behind the allocated queues.
2729                  */
2730                 more = needed - cur_queues;
2731                 for (i = vsi->base_queue + cur_queues;
2732                         i < pile->num_entries; i++) {
2733                         if (pile->list[i] & I40E_PILE_VALID_BIT)
2734                                 break;
2735
2736                         if (more-- == 1)
2737                                 /* there is enough */
2738                                 return vsi->base_queue;
2739                 }
2740         }
2741
2742         pool_size = 0;
2743         for (i = 0; i < pile->num_entries; i++) {
2744                 if (pile->list[i] & I40E_PILE_VALID_BIT) {
2745                         pool_size = 0;
2746                         continue;
2747                 }
2748                 if (needed <= ++pool_size)
2749                         /* there is enough */
2750                         return i;
2751         }
2752
2753         return -ENOMEM;
2754 }
2755
2756 /**
2757  * i40e_vc_request_queues_msg
2758  * @vf: pointer to the VF info
2759  * @msg: pointer to the msg buffer
2760  *
2761  * VFs get a default number of queues but can use this message to request a
2762  * different number.  If the request is successful, PF will reset the VF and
2763  * return 0.  If unsuccessful, PF will send message informing VF of number of
2764  * available queues and return result of sending VF a message.
2765  **/
2766 static int i40e_vc_request_queues_msg(struct i40e_vf *vf, u8 *msg)
2767 {
2768         struct virtchnl_vf_res_request *vfres =
2769                 (struct virtchnl_vf_res_request *)msg;
2770         u16 req_pairs = vfres->num_queue_pairs;
2771         u8 cur_pairs = vf->num_queue_pairs;
2772         struct i40e_pf *pf = vf->pf;
2773
2774         if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE))
2775                 return -EINVAL;
2776
2777         if (req_pairs > I40E_MAX_VF_QUEUES) {
2778                 dev_err(&pf->pdev->dev,
2779                         "VF %d tried to request more than %d queues.\n",
2780                         vf->vf_id,
2781                         I40E_MAX_VF_QUEUES);
2782                 vfres->num_queue_pairs = I40E_MAX_VF_QUEUES;
2783         } else if (req_pairs - cur_pairs > pf->queues_left) {
2784                 dev_warn(&pf->pdev->dev,
2785                          "VF %d requested %d more queues, but only %d left.\n",
2786                          vf->vf_id,
2787                          req_pairs - cur_pairs,
2788                          pf->queues_left);
2789                 vfres->num_queue_pairs = pf->queues_left + cur_pairs;
2790         } else if (i40e_check_enough_queue(vf, req_pairs) < 0) {
2791                 dev_warn(&pf->pdev->dev,
2792                          "VF %d requested %d more queues, but there is not enough for it.\n",
2793                          vf->vf_id,
2794                          req_pairs - cur_pairs);
2795                 vfres->num_queue_pairs = cur_pairs;
2796         } else {
2797                 /* successful request */
2798                 vf->num_req_queues = req_pairs;
2799                 i40e_vc_reset_vf(vf, true);
2800                 return 0;
2801         }
2802
2803         return i40e_vc_send_msg_to_vf(vf, VIRTCHNL_OP_REQUEST_QUEUES, 0,
2804                                       (u8 *)vfres, sizeof(*vfres));
2805 }
2806
2807 /**
2808  * i40e_vc_get_stats_msg
2809  * @vf: pointer to the VF info
2810  * @msg: pointer to the msg buffer
2811  *
2812  * called from the VF to get vsi stats
2813  **/
2814 static int i40e_vc_get_stats_msg(struct i40e_vf *vf, u8 *msg)
2815 {
2816         struct virtchnl_queue_select *vqs =
2817             (struct virtchnl_queue_select *)msg;
2818         struct i40e_pf *pf = vf->pf;
2819         struct i40e_eth_stats stats;
2820         int aq_ret = 0;
2821         struct i40e_vsi *vsi;
2822
2823         memset(&stats, 0, sizeof(struct i40e_eth_stats));
2824
2825         if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) {
2826                 aq_ret = -EINVAL;
2827                 goto error_param;
2828         }
2829
2830         if (!i40e_vc_isvalid_vsi_id(vf, vqs->vsi_id)) {
2831                 aq_ret = -EINVAL;
2832                 goto error_param;
2833         }
2834
2835         vsi = pf->vsi[vf->lan_vsi_idx];
2836         if (!vsi) {
2837                 aq_ret = -EINVAL;
2838                 goto error_param;
2839         }
2840         i40e_update_eth_stats(vsi);
2841         stats = vsi->eth_stats;
2842
2843 error_param:
2844         /* send the response back to the VF */
2845         return i40e_vc_send_msg_to_vf(vf, VIRTCHNL_OP_GET_STATS, aq_ret,
2846                                       (u8 *)&stats, sizeof(stats));
2847 }
2848
2849 /**
2850  * i40e_can_vf_change_mac
2851  * @vf: pointer to the VF info
2852  *
2853  * Return true if the VF is allowed to change its MAC filters, false otherwise
2854  */
2855 static bool i40e_can_vf_change_mac(struct i40e_vf *vf)
2856 {
2857         /* If the VF MAC address has been set administratively (via the
2858          * ndo_set_vf_mac command), then deny permission to the VF to
2859          * add/delete unicast MAC addresses, unless the VF is trusted
2860          */
2861         if (vf->pf_set_mac && !vf->trusted)
2862                 return false;
2863
2864         return true;
2865 }
2866
2867 #define I40E_MAX_MACVLAN_PER_HW 3072
2868 #define I40E_MAX_MACVLAN_PER_PF(num_ports) (I40E_MAX_MACVLAN_PER_HW /   \
2869         (num_ports))
2870 /* If the VF is not trusted restrict the number of MAC/VLAN it can program
2871  * MAC filters: 16 for multicast, 1 for MAC, 1 for broadcast
2872  */
2873 #define I40E_VC_MAX_MAC_ADDR_PER_VF (16 + 1 + 1)
2874 #define I40E_VC_MAX_VLAN_PER_VF 16
2875
2876 #define I40E_VC_MAX_MACVLAN_PER_TRUSTED_VF(vf_num, num_ports)           \
2877 ({      typeof(vf_num) vf_num_ = (vf_num);                              \
2878         typeof(num_ports) num_ports_ = (num_ports);                     \
2879         ((I40E_MAX_MACVLAN_PER_PF(num_ports_) - vf_num_ *               \
2880         I40E_VC_MAX_MAC_ADDR_PER_VF) / vf_num_) +                       \
2881         I40E_VC_MAX_MAC_ADDR_PER_VF; })
2882 /**
2883  * i40e_check_vf_permission
2884  * @vf: pointer to the VF info
2885  * @al: MAC address list from virtchnl
2886  *
2887  * Check that the given list of MAC addresses is allowed. Will return -EPERM
2888  * if any address in the list is not valid. Checks the following conditions:
2889  *
2890  * 1) broadcast and zero addresses are never valid
2891  * 2) unicast addresses are not allowed if the VMM has administratively set
2892  *    the VF MAC address, unless the VF is marked as privileged.
2893  * 3) There is enough space to add all the addresses.
2894  *
2895  * Note that to guarantee consistency, it is expected this function be called
2896  * while holding the mac_filter_hash_lock, as otherwise the current number of
2897  * addresses might not be accurate.
2898  **/
2899 static inline int i40e_check_vf_permission(struct i40e_vf *vf,
2900                                            struct virtchnl_ether_addr_list *al)
2901 {
2902         struct i40e_pf *pf = vf->pf;
2903         struct i40e_vsi *vsi = pf->vsi[vf->lan_vsi_idx];
2904         struct i40e_hw *hw = &pf->hw;
2905         int mac2add_cnt = 0;
2906         int i;
2907
2908         for (i = 0; i < al->num_elements; i++) {
2909                 struct i40e_mac_filter *f;
2910                 u8 *addr = al->list[i].addr;
2911
2912                 if (is_broadcast_ether_addr(addr) ||
2913                     is_zero_ether_addr(addr)) {
2914                         dev_err(&pf->pdev->dev, "invalid VF MAC addr %pM\n",
2915                                 addr);
2916                         return -EINVAL;
2917                 }
2918
2919                 /* If the host VMM administrator has set the VF MAC address
2920                  * administratively via the ndo_set_vf_mac command then deny
2921                  * permission to the VF to add or delete unicast MAC addresses.
2922                  * Unless the VF is privileged and then it can do whatever.
2923                  * The VF may request to set the MAC address filter already
2924                  * assigned to it so do not return an error in that case.
2925                  */
2926                 if (!i40e_can_vf_change_mac(vf) &&
2927                     !is_multicast_ether_addr(addr) &&
2928                     !ether_addr_equal(addr, vf->default_lan_addr.addr)) {
2929                         dev_err(&pf->pdev->dev,
2930                                 "VF attempting to override administratively set MAC address, bring down and up the VF interface to resume normal operation\n");
2931                         return -EPERM;
2932                 }
2933
2934                 /*count filters that really will be added*/
2935                 f = i40e_find_mac(vsi, addr);
2936                 if (!f)
2937                         ++mac2add_cnt;
2938         }
2939
2940         /* If this VF is not privileged, then we can't add more than a limited
2941          * number of addresses. Check to make sure that the additions do not
2942          * push us over the limit.
2943          */
2944         if (!test_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps)) {
2945                 if ((i40e_count_filters(vsi) + mac2add_cnt) >
2946                     I40E_VC_MAX_MAC_ADDR_PER_VF) {
2947                         dev_err(&pf->pdev->dev,
2948                                 "Cannot add more MAC addresses, VF is not trusted, switch the VF to trusted to add more functionality\n");
2949                         return -EPERM;
2950                 }
2951         /* If this VF is trusted, it can use more resources than untrusted.
2952          * However to ensure that every trusted VF has appropriate number of
2953          * resources, divide whole pool of resources per port and then across
2954          * all VFs.
2955          */
2956         } else {
2957                 if ((i40e_count_filters(vsi) + mac2add_cnt) >
2958                     I40E_VC_MAX_MACVLAN_PER_TRUSTED_VF(pf->num_alloc_vfs,
2959                                                        hw->num_ports)) {
2960                         dev_err(&pf->pdev->dev,
2961                                 "Cannot add more MAC addresses, trusted VF exhausted it's resources\n");
2962                         return -EPERM;
2963                 }
2964         }
2965         return 0;
2966 }
2967
2968 /**
2969  * i40e_vc_ether_addr_type - get type of virtchnl_ether_addr
2970  * @vc_ether_addr: used to extract the type
2971  **/
2972 static u8
2973 i40e_vc_ether_addr_type(struct virtchnl_ether_addr *vc_ether_addr)
2974 {
2975         return vc_ether_addr->type & VIRTCHNL_ETHER_ADDR_TYPE_MASK;
2976 }
2977
2978 /**
2979  * i40e_is_vc_addr_legacy
2980  * @vc_ether_addr: VIRTCHNL structure that contains MAC and type
2981  *
2982  * check if the MAC address is from an older VF
2983  **/
2984 static bool
2985 i40e_is_vc_addr_legacy(struct virtchnl_ether_addr *vc_ether_addr)
2986 {
2987         return i40e_vc_ether_addr_type(vc_ether_addr) ==
2988                 VIRTCHNL_ETHER_ADDR_LEGACY;
2989 }
2990
2991 /**
2992  * i40e_is_vc_addr_primary
2993  * @vc_ether_addr: VIRTCHNL structure that contains MAC and type
2994  *
2995  * check if the MAC address is the VF's primary MAC
2996  * This function should only be called when the MAC address in
2997  * virtchnl_ether_addr is a valid unicast MAC
2998  **/
2999 static bool
3000 i40e_is_vc_addr_primary(struct virtchnl_ether_addr *vc_ether_addr)
3001 {
3002         return i40e_vc_ether_addr_type(vc_ether_addr) ==
3003                 VIRTCHNL_ETHER_ADDR_PRIMARY;
3004 }
3005
3006 /**
3007  * i40e_update_vf_mac_addr
3008  * @vf: VF to update
3009  * @vc_ether_addr: structure from VIRTCHNL with MAC to add
3010  *
3011  * update the VF's cached hardware MAC if allowed
3012  **/
3013 static void
3014 i40e_update_vf_mac_addr(struct i40e_vf *vf,
3015                         struct virtchnl_ether_addr *vc_ether_addr)
3016 {
3017         u8 *mac_addr = vc_ether_addr->addr;
3018
3019         if (!is_valid_ether_addr(mac_addr))
3020                 return;
3021
3022         /* If request to add MAC filter is a primary request update its default
3023          * MAC address with the requested one. If it is a legacy request then
3024          * check if current default is empty if so update the default MAC
3025          */
3026         if (i40e_is_vc_addr_primary(vc_ether_addr)) {
3027                 ether_addr_copy(vf->default_lan_addr.addr, mac_addr);
3028         } else if (i40e_is_vc_addr_legacy(vc_ether_addr)) {
3029                 if (is_zero_ether_addr(vf->default_lan_addr.addr))
3030                         ether_addr_copy(vf->default_lan_addr.addr, mac_addr);
3031         }
3032 }
3033
3034 /**
3035  * i40e_vc_add_mac_addr_msg
3036  * @vf: pointer to the VF info
3037  * @msg: pointer to the msg buffer
3038  *
3039  * add guest mac address filter
3040  **/
3041 static int i40e_vc_add_mac_addr_msg(struct i40e_vf *vf, u8 *msg)
3042 {
3043         struct virtchnl_ether_addr_list *al =
3044             (struct virtchnl_ether_addr_list *)msg;
3045         struct i40e_pf *pf = vf->pf;
3046         struct i40e_vsi *vsi = NULL;
3047         int ret = 0;
3048         int i;
3049
3050         if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE) ||
3051             !i40e_vc_isvalid_vsi_id(vf, al->vsi_id)) {
3052                 ret = -EINVAL;
3053                 goto error_param;
3054         }
3055
3056         vsi = pf->vsi[vf->lan_vsi_idx];
3057
3058         /* Lock once, because all function inside for loop accesses VSI's
3059          * MAC filter list which needs to be protected using same lock.
3060          */
3061         spin_lock_bh(&vsi->mac_filter_hash_lock);
3062
3063         ret = i40e_check_vf_permission(vf, al);
3064         if (ret) {
3065                 spin_unlock_bh(&vsi->mac_filter_hash_lock);
3066                 goto error_param;
3067         }
3068
3069         /* add new addresses to the list */
3070         for (i = 0; i < al->num_elements; i++) {
3071                 struct i40e_mac_filter *f;
3072
3073                 f = i40e_find_mac(vsi, al->list[i].addr);
3074                 if (!f) {
3075                         f = i40e_add_mac_filter(vsi, al->list[i].addr);
3076
3077                         if (!f) {
3078                                 dev_err(&pf->pdev->dev,
3079                                         "Unable to add MAC filter %pM for VF %d\n",
3080                                         al->list[i].addr, vf->vf_id);
3081                                 ret = -EINVAL;
3082                                 spin_unlock_bh(&vsi->mac_filter_hash_lock);
3083                                 goto error_param;
3084                         }
3085                 }
3086                 i40e_update_vf_mac_addr(vf, &al->list[i]);
3087         }
3088         spin_unlock_bh(&vsi->mac_filter_hash_lock);
3089
3090         /* program the updated filter list */
3091         ret = i40e_sync_vsi_filters(vsi);
3092         if (ret)
3093                 dev_err(&pf->pdev->dev, "Unable to program VF %d MAC filters, error %d\n",
3094                         vf->vf_id, ret);
3095
3096 error_param:
3097         /* send the response to the VF */
3098         return i40e_vc_send_msg_to_vf(vf, VIRTCHNL_OP_ADD_ETH_ADDR,
3099                                       ret, NULL, 0);
3100 }
3101
3102 /**
3103  * i40e_vc_del_mac_addr_msg
3104  * @vf: pointer to the VF info
3105  * @msg: pointer to the msg buffer
3106  *
3107  * remove guest mac address filter
3108  **/
3109 static int i40e_vc_del_mac_addr_msg(struct i40e_vf *vf, u8 *msg)
3110 {
3111         struct virtchnl_ether_addr_list *al =
3112             (struct virtchnl_ether_addr_list *)msg;
3113         bool was_unimac_deleted = false;
3114         struct i40e_pf *pf = vf->pf;
3115         struct i40e_vsi *vsi = NULL;
3116         int ret = 0;
3117         int i;
3118
3119         if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE) ||
3120             !i40e_vc_isvalid_vsi_id(vf, al->vsi_id)) {
3121                 ret = -EINVAL;
3122                 goto error_param;
3123         }
3124
3125         for (i = 0; i < al->num_elements; i++) {
3126                 if (is_broadcast_ether_addr(al->list[i].addr) ||
3127                     is_zero_ether_addr(al->list[i].addr)) {
3128                         dev_err(&pf->pdev->dev, "Invalid MAC addr %pM for VF %d\n",
3129                                 al->list[i].addr, vf->vf_id);
3130                         ret = -EINVAL;
3131                         goto error_param;
3132                 }
3133         }
3134         vsi = pf->vsi[vf->lan_vsi_idx];
3135
3136         spin_lock_bh(&vsi->mac_filter_hash_lock);
3137         /* delete addresses from the list */
3138         for (i = 0; i < al->num_elements; i++) {
3139                 const u8 *addr = al->list[i].addr;
3140
3141                 /* Allow to delete VF primary MAC only if it was not set
3142                  * administratively by PF or if VF is trusted.
3143                  */
3144                 if (ether_addr_equal(addr, vf->default_lan_addr.addr)) {
3145                         if (i40e_can_vf_change_mac(vf))
3146                                 was_unimac_deleted = true;
3147                         else
3148                                 continue;
3149                 }
3150
3151                 if (i40e_del_mac_filter(vsi, al->list[i].addr)) {
3152                         ret = -EINVAL;
3153                         spin_unlock_bh(&vsi->mac_filter_hash_lock);
3154                         goto error_param;
3155                 }
3156         }
3157
3158         spin_unlock_bh(&vsi->mac_filter_hash_lock);
3159
3160         if (was_unimac_deleted)
3161                 eth_zero_addr(vf->default_lan_addr.addr);
3162
3163         /* program the updated filter list */
3164         ret = i40e_sync_vsi_filters(vsi);
3165         if (ret)
3166                 dev_err(&pf->pdev->dev, "Unable to program VF %d MAC filters, error %d\n",
3167                         vf->vf_id, ret);
3168
3169         if (vf->trusted && was_unimac_deleted) {
3170                 struct i40e_mac_filter *f;
3171                 struct hlist_node *h;
3172                 u8 *macaddr = NULL;
3173                 int bkt;
3174
3175                 /* set last unicast mac address as default */
3176                 spin_lock_bh(&vsi->mac_filter_hash_lock);
3177                 hash_for_each_safe(vsi->mac_filter_hash, bkt, h, f, hlist) {
3178                         if (is_valid_ether_addr(f->macaddr))
3179                                 macaddr = f->macaddr;
3180                 }
3181                 if (macaddr)
3182                         ether_addr_copy(vf->default_lan_addr.addr, macaddr);
3183                 spin_unlock_bh(&vsi->mac_filter_hash_lock);
3184         }
3185 error_param:
3186         /* send the response to the VF */
3187         return i40e_vc_send_resp_to_vf(vf, VIRTCHNL_OP_DEL_ETH_ADDR, ret);
3188 }
3189
3190 /**
3191  * i40e_vc_add_vlan_msg
3192  * @vf: pointer to the VF info
3193  * @msg: pointer to the msg buffer
3194  *
3195  * program guest vlan id
3196  **/
3197 static int i40e_vc_add_vlan_msg(struct i40e_vf *vf, u8 *msg)
3198 {
3199         struct virtchnl_vlan_filter_list *vfl =
3200             (struct virtchnl_vlan_filter_list *)msg;
3201         struct i40e_pf *pf = vf->pf;
3202         struct i40e_vsi *vsi = NULL;
3203         int aq_ret = 0;
3204         int i;
3205
3206         if ((vf->num_vlan >= I40E_VC_MAX_VLAN_PER_VF) &&
3207             !test_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps)) {
3208                 dev_err(&pf->pdev->dev,
3209                         "VF is not trusted, switch the VF to trusted to add more VLAN addresses\n");
3210                 goto error_param;
3211         }
3212         if (!test_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states) ||
3213             !i40e_vc_isvalid_vsi_id(vf, vfl->vsi_id)) {
3214                 aq_ret = -EINVAL;
3215                 goto error_param;
3216         }
3217
3218         for (i = 0; i < vfl->num_elements; i++) {
3219                 if (vfl->vlan_id[i] > I40E_MAX_VLANID) {
3220                         aq_ret = -EINVAL;
3221                         dev_err(&pf->pdev->dev,
3222                                 "invalid VF VLAN id %d\n", vfl->vlan_id[i]);
3223                         goto error_param;
3224                 }
3225         }
3226         vsi = pf->vsi[vf->lan_vsi_idx];
3227         if (vsi->info.pvid) {
3228                 aq_ret = -EINVAL;
3229                 goto error_param;
3230         }
3231
3232         i40e_vlan_stripping_enable(vsi);
3233         for (i = 0; i < vfl->num_elements; i++) {
3234                 /* add new VLAN filter */
3235                 int ret = i40e_vsi_add_vlan(vsi, vfl->vlan_id[i]);
3236                 if (!ret)
3237                         vf->num_vlan++;
3238
3239                 if (test_bit(I40E_VF_STATE_UC_PROMISC, &vf->vf_states))
3240                         i40e_aq_set_vsi_uc_promisc_on_vlan(&pf->hw, vsi->seid,
3241                                                            true,
3242                                                            vfl->vlan_id[i],
3243                                                            NULL);
3244                 if (test_bit(I40E_VF_STATE_MC_PROMISC, &vf->vf_states))
3245                         i40e_aq_set_vsi_mc_promisc_on_vlan(&pf->hw, vsi->seid,
3246                                                            true,
3247                                                            vfl->vlan_id[i],
3248                                                            NULL);
3249
3250                 if (ret)
3251                         dev_err(&pf->pdev->dev,
3252                                 "Unable to add VLAN filter %d for VF %d, error %d\n",
3253                                 vfl->vlan_id[i], vf->vf_id, ret);
3254         }
3255
3256 error_param:
3257         /* send the response to the VF */
3258         return i40e_vc_send_resp_to_vf(vf, VIRTCHNL_OP_ADD_VLAN, aq_ret);
3259 }
3260
3261 /**
3262  * i40e_vc_remove_vlan_msg
3263  * @vf: pointer to the VF info
3264  * @msg: pointer to the msg buffer
3265  *
3266  * remove programmed guest vlan id
3267  **/
3268 static int i40e_vc_remove_vlan_msg(struct i40e_vf *vf, u8 *msg)
3269 {
3270         struct virtchnl_vlan_filter_list *vfl =
3271             (struct virtchnl_vlan_filter_list *)msg;
3272         struct i40e_pf *pf = vf->pf;
3273         struct i40e_vsi *vsi = NULL;
3274         int aq_ret = 0;
3275         int i;
3276
3277         if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE) ||
3278             !i40e_vc_isvalid_vsi_id(vf, vfl->vsi_id)) {
3279                 aq_ret = -EINVAL;
3280                 goto error_param;
3281         }
3282
3283         for (i = 0; i < vfl->num_elements; i++) {
3284                 if (vfl->vlan_id[i] > I40E_MAX_VLANID) {
3285                         aq_ret = -EINVAL;
3286                         goto error_param;
3287                 }
3288         }
3289
3290         vsi = pf->vsi[vf->lan_vsi_idx];
3291         if (vsi->info.pvid) {
3292                 if (vfl->num_elements > 1 || vfl->vlan_id[0])
3293                         aq_ret = -EINVAL;
3294                 goto error_param;
3295         }
3296
3297         for (i = 0; i < vfl->num_elements; i++) {
3298                 i40e_vsi_kill_vlan(vsi, vfl->vlan_id[i]);
3299                 vf->num_vlan--;
3300
3301                 if (test_bit(I40E_VF_STATE_UC_PROMISC, &vf->vf_states))
3302                         i40e_aq_set_vsi_uc_promisc_on_vlan(&pf->hw, vsi->seid,
3303                                                            false,
3304                                                            vfl->vlan_id[i],
3305                                                            NULL);
3306                 if (test_bit(I40E_VF_STATE_MC_PROMISC, &vf->vf_states))
3307                         i40e_aq_set_vsi_mc_promisc_on_vlan(&pf->hw, vsi->seid,
3308                                                            false,
3309                                                            vfl->vlan_id[i],
3310                                                            NULL);
3311         }
3312
3313 error_param:
3314         /* send the response to the VF */
3315         return i40e_vc_send_resp_to_vf(vf, VIRTCHNL_OP_DEL_VLAN, aq_ret);
3316 }
3317
3318 /**
3319  * i40e_vc_rdma_msg
3320  * @vf: pointer to the VF info
3321  * @msg: pointer to the msg buffer
3322  * @msglen: msg length
3323  *
3324  * called from the VF for the iwarp msgs
3325  **/
3326 static int i40e_vc_rdma_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
3327 {
3328         struct i40e_pf *pf = vf->pf;
3329         int abs_vf_id = vf->vf_id + pf->hw.func_caps.vf_base_id;
3330         int aq_ret = 0;
3331
3332         if (!test_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states) ||
3333             !test_bit(I40E_VF_STATE_RDMAENA, &vf->vf_states)) {
3334                 aq_ret = -EINVAL;
3335                 goto error_param;
3336         }
3337
3338         i40e_notify_client_of_vf_msg(pf->vsi[pf->lan_vsi], abs_vf_id,
3339                                      msg, msglen);
3340
3341 error_param:
3342         /* send the response to the VF */
3343         return i40e_vc_send_resp_to_vf(vf, VIRTCHNL_OP_RDMA,
3344                                        aq_ret);
3345 }
3346
3347 /**
3348  * i40e_vc_rdma_qvmap_msg
3349  * @vf: pointer to the VF info
3350  * @msg: pointer to the msg buffer
3351  * @config: config qvmap or release it
3352  *
3353  * called from the VF for the iwarp msgs
3354  **/
3355 static int i40e_vc_rdma_qvmap_msg(struct i40e_vf *vf, u8 *msg, bool config)
3356 {
3357         struct virtchnl_rdma_qvlist_info *qvlist_info =
3358                                 (struct virtchnl_rdma_qvlist_info *)msg;
3359         int aq_ret = 0;
3360
3361         if (!test_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states) ||
3362             !test_bit(I40E_VF_STATE_RDMAENA, &vf->vf_states)) {
3363                 aq_ret = -EINVAL;
3364                 goto error_param;
3365         }
3366
3367         if (config) {
3368                 if (i40e_config_rdma_qvlist(vf, qvlist_info))
3369                         aq_ret = -EINVAL;
3370         } else {
3371                 i40e_release_rdma_qvlist(vf);
3372         }
3373
3374 error_param:
3375         /* send the response to the VF */
3376         return i40e_vc_send_resp_to_vf(vf,
3377                                config ? VIRTCHNL_OP_CONFIG_RDMA_IRQ_MAP :
3378                                VIRTCHNL_OP_RELEASE_RDMA_IRQ_MAP,
3379                                aq_ret);
3380 }
3381
3382 /**
3383  * i40e_vc_config_rss_key
3384  * @vf: pointer to the VF info
3385  * @msg: pointer to the msg buffer
3386  *
3387  * Configure the VF's RSS key
3388  **/
3389 static int i40e_vc_config_rss_key(struct i40e_vf *vf, u8 *msg)
3390 {
3391         struct virtchnl_rss_key *vrk =
3392                 (struct virtchnl_rss_key *)msg;
3393         struct i40e_pf *pf = vf->pf;
3394         struct i40e_vsi *vsi = NULL;
3395         int aq_ret = 0;
3396
3397         if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE) ||
3398             !i40e_vc_isvalid_vsi_id(vf, vrk->vsi_id) ||
3399             vrk->key_len != I40E_HKEY_ARRAY_SIZE) {
3400                 aq_ret = -EINVAL;
3401                 goto err;
3402         }
3403
3404         vsi = pf->vsi[vf->lan_vsi_idx];
3405         aq_ret = i40e_config_rss(vsi, vrk->key, NULL, 0);
3406 err:
3407         /* send the response to the VF */
3408         return i40e_vc_send_resp_to_vf(vf, VIRTCHNL_OP_CONFIG_RSS_KEY,
3409                                        aq_ret);
3410 }
3411
3412 /**
3413  * i40e_vc_config_rss_lut
3414  * @vf: pointer to the VF info
3415  * @msg: pointer to the msg buffer
3416  *
3417  * Configure the VF's RSS LUT
3418  **/
3419 static int i40e_vc_config_rss_lut(struct i40e_vf *vf, u8 *msg)
3420 {
3421         struct virtchnl_rss_lut *vrl =
3422                 (struct virtchnl_rss_lut *)msg;
3423         struct i40e_pf *pf = vf->pf;
3424         struct i40e_vsi *vsi = NULL;
3425         int aq_ret = 0;
3426         u16 i;
3427
3428         if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE) ||
3429             !i40e_vc_isvalid_vsi_id(vf, vrl->vsi_id) ||
3430             vrl->lut_entries != I40E_VF_HLUT_ARRAY_SIZE) {
3431                 aq_ret = -EINVAL;
3432                 goto err;
3433         }
3434
3435         for (i = 0; i < vrl->lut_entries; i++)
3436                 if (vrl->lut[i] >= vf->num_queue_pairs) {
3437                         aq_ret = -EINVAL;
3438                         goto err;
3439                 }
3440
3441         vsi = pf->vsi[vf->lan_vsi_idx];
3442         aq_ret = i40e_config_rss(vsi, NULL, vrl->lut, I40E_VF_HLUT_ARRAY_SIZE);
3443         /* send the response to the VF */
3444 err:
3445         return i40e_vc_send_resp_to_vf(vf, VIRTCHNL_OP_CONFIG_RSS_LUT,
3446                                        aq_ret);
3447 }
3448
3449 /**
3450  * i40e_vc_get_rss_hena
3451  * @vf: pointer to the VF info
3452  * @msg: pointer to the msg buffer
3453  *
3454  * Return the RSS HENA bits allowed by the hardware
3455  **/
3456 static int i40e_vc_get_rss_hena(struct i40e_vf *vf, u8 *msg)
3457 {
3458         struct virtchnl_rss_hena *vrh = NULL;
3459         struct i40e_pf *pf = vf->pf;
3460         int aq_ret = 0;
3461         int len = 0;
3462
3463         if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) {
3464                 aq_ret = -EINVAL;
3465                 goto err;
3466         }
3467         len = sizeof(struct virtchnl_rss_hena);
3468
3469         vrh = kzalloc(len, GFP_KERNEL);
3470         if (!vrh) {
3471                 aq_ret = -ENOMEM;
3472                 len = 0;
3473                 goto err;
3474         }
3475         vrh->hena = i40e_pf_get_default_rss_hena(pf);
3476 err:
3477         /* send the response back to the VF */
3478         aq_ret = i40e_vc_send_msg_to_vf(vf, VIRTCHNL_OP_GET_RSS_HENA_CAPS,
3479                                         aq_ret, (u8 *)vrh, len);
3480         kfree(vrh);
3481         return aq_ret;
3482 }
3483
3484 /**
3485  * i40e_vc_set_rss_hena
3486  * @vf: pointer to the VF info
3487  * @msg: pointer to the msg buffer
3488  *
3489  * Set the RSS HENA bits for the VF
3490  **/
3491 static int i40e_vc_set_rss_hena(struct i40e_vf *vf, u8 *msg)
3492 {
3493         struct virtchnl_rss_hena *vrh =
3494                 (struct virtchnl_rss_hena *)msg;
3495         struct i40e_pf *pf = vf->pf;
3496         struct i40e_hw *hw = &pf->hw;
3497         int aq_ret = 0;
3498
3499         if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) {
3500                 aq_ret = -EINVAL;
3501                 goto err;
3502         }
3503         i40e_write_rx_ctl(hw, I40E_VFQF_HENA1(0, vf->vf_id), (u32)vrh->hena);
3504         i40e_write_rx_ctl(hw, I40E_VFQF_HENA1(1, vf->vf_id),
3505                           (u32)(vrh->hena >> 32));
3506
3507         /* send the response to the VF */
3508 err:
3509         return i40e_vc_send_resp_to_vf(vf, VIRTCHNL_OP_SET_RSS_HENA, aq_ret);
3510 }
3511
3512 /**
3513  * i40e_vc_enable_vlan_stripping
3514  * @vf: pointer to the VF info
3515  * @msg: pointer to the msg buffer
3516  *
3517  * Enable vlan header stripping for the VF
3518  **/
3519 static int i40e_vc_enable_vlan_stripping(struct i40e_vf *vf, u8 *msg)
3520 {
3521         struct i40e_vsi *vsi;
3522         int aq_ret = 0;
3523
3524         if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) {
3525                 aq_ret = -EINVAL;
3526                 goto err;
3527         }
3528
3529         vsi = vf->pf->vsi[vf->lan_vsi_idx];
3530         i40e_vlan_stripping_enable(vsi);
3531
3532         /* send the response to the VF */
3533 err:
3534         return i40e_vc_send_resp_to_vf(vf, VIRTCHNL_OP_ENABLE_VLAN_STRIPPING,
3535                                        aq_ret);
3536 }
3537
3538 /**
3539  * i40e_vc_disable_vlan_stripping
3540  * @vf: pointer to the VF info
3541  * @msg: pointer to the msg buffer
3542  *
3543  * Disable vlan header stripping for the VF
3544  **/
3545 static int i40e_vc_disable_vlan_stripping(struct i40e_vf *vf, u8 *msg)
3546 {
3547         struct i40e_vsi *vsi;
3548         int aq_ret = 0;
3549
3550         if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) {
3551                 aq_ret = -EINVAL;
3552                 goto err;
3553         }
3554
3555         vsi = vf->pf->vsi[vf->lan_vsi_idx];
3556         i40e_vlan_stripping_disable(vsi);
3557
3558         /* send the response to the VF */
3559 err:
3560         return i40e_vc_send_resp_to_vf(vf, VIRTCHNL_OP_DISABLE_VLAN_STRIPPING,
3561                                        aq_ret);
3562 }
3563
3564 /**
3565  * i40e_validate_cloud_filter
3566  * @vf: pointer to VF structure
3567  * @tc_filter: pointer to filter requested
3568  *
3569  * This function validates cloud filter programmed as TC filter for ADq
3570  **/
3571 static int i40e_validate_cloud_filter(struct i40e_vf *vf,
3572                                       struct virtchnl_filter *tc_filter)
3573 {
3574         struct virtchnl_l4_spec mask = tc_filter->mask.tcp_spec;
3575         struct virtchnl_l4_spec data = tc_filter->data.tcp_spec;
3576         struct i40e_pf *pf = vf->pf;
3577         struct i40e_vsi *vsi = NULL;
3578         struct i40e_mac_filter *f;
3579         struct hlist_node *h;
3580         bool found = false;
3581         int bkt;
3582
3583         if (tc_filter->action != VIRTCHNL_ACTION_TC_REDIRECT) {
3584                 dev_info(&pf->pdev->dev,
3585                          "VF %d: ADQ doesn't support this action (%d)\n",
3586                          vf->vf_id, tc_filter->action);
3587                 goto err;
3588         }
3589
3590         /* action_meta is TC number here to which the filter is applied */
3591         if (!tc_filter->action_meta ||
3592             tc_filter->action_meta > vf->num_tc) {
3593                 dev_info(&pf->pdev->dev, "VF %d: Invalid TC number %u\n",
3594                          vf->vf_id, tc_filter->action_meta);
3595                 goto err;
3596         }
3597
3598         /* Check filter if it's programmed for advanced mode or basic mode.
3599          * There are two ADq modes (for VF only),
3600          * 1. Basic mode: intended to allow as many filter options as possible
3601          *                to be added to a VF in Non-trusted mode. Main goal is
3602          *                to add filters to its own MAC and VLAN id.
3603          * 2. Advanced mode: is for allowing filters to be applied other than
3604          *                its own MAC or VLAN. This mode requires the VF to be
3605          *                Trusted.
3606          */
3607         if (mask.dst_mac[0] && !mask.dst_ip[0]) {
3608                 vsi = pf->vsi[vf->lan_vsi_idx];
3609                 f = i40e_find_mac(vsi, data.dst_mac);
3610
3611                 if (!f) {
3612                         dev_info(&pf->pdev->dev,
3613                                  "Destination MAC %pM doesn't belong to VF %d\n",
3614                                  data.dst_mac, vf->vf_id);
3615                         goto err;
3616                 }
3617
3618                 if (mask.vlan_id) {
3619                         hash_for_each_safe(vsi->mac_filter_hash, bkt, h, f,
3620                                            hlist) {
3621                                 if (f->vlan == ntohs(data.vlan_id)) {
3622                                         found = true;
3623                                         break;
3624                                 }
3625                         }
3626                         if (!found) {
3627                                 dev_info(&pf->pdev->dev,
3628                                          "VF %d doesn't have any VLAN id %u\n",
3629                                          vf->vf_id, ntohs(data.vlan_id));
3630                                 goto err;
3631                         }
3632                 }
3633         } else {
3634                 /* Check if VF is trusted */
3635                 if (!test_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps)) {
3636                         dev_err(&pf->pdev->dev,
3637                                 "VF %d not trusted, make VF trusted to add advanced mode ADq cloud filters\n",
3638                                 vf->vf_id);
3639                         return -EIO;
3640                 }
3641         }
3642
3643         if (mask.dst_mac[0] & data.dst_mac[0]) {
3644                 if (is_broadcast_ether_addr(data.dst_mac) ||
3645                     is_zero_ether_addr(data.dst_mac)) {
3646                         dev_info(&pf->pdev->dev, "VF %d: Invalid Dest MAC addr %pM\n",
3647                                  vf->vf_id, data.dst_mac);
3648                         goto err;
3649                 }
3650         }
3651
3652         if (mask.src_mac[0] & data.src_mac[0]) {
3653                 if (is_broadcast_ether_addr(data.src_mac) ||
3654                     is_zero_ether_addr(data.src_mac)) {
3655                         dev_info(&pf->pdev->dev, "VF %d: Invalid Source MAC addr %pM\n",
3656                                  vf->vf_id, data.src_mac);
3657                         goto err;
3658                 }
3659         }
3660
3661         if (mask.dst_port & data.dst_port) {
3662                 if (!data.dst_port) {
3663                         dev_info(&pf->pdev->dev, "VF %d: Invalid Dest port\n",
3664                                  vf->vf_id);
3665                         goto err;
3666                 }
3667         }
3668
3669         if (mask.src_port & data.src_port) {
3670                 if (!data.src_port) {
3671                         dev_info(&pf->pdev->dev, "VF %d: Invalid Source port\n",
3672                                  vf->vf_id);
3673                         goto err;
3674                 }
3675         }
3676
3677         if (tc_filter->flow_type != VIRTCHNL_TCP_V6_FLOW &&
3678             tc_filter->flow_type != VIRTCHNL_TCP_V4_FLOW) {
3679                 dev_info(&pf->pdev->dev, "VF %d: Invalid Flow type\n",
3680                          vf->vf_id);
3681                 goto err;
3682         }
3683
3684         if (mask.vlan_id & data.vlan_id) {
3685                 if (ntohs(data.vlan_id) > I40E_MAX_VLANID) {
3686                         dev_info(&pf->pdev->dev, "VF %d: invalid VLAN ID\n",
3687                                  vf->vf_id);
3688                         goto err;
3689                 }
3690         }
3691
3692         return 0;
3693 err:
3694         return -EIO;
3695 }
3696
3697 /**
3698  * i40e_find_vsi_from_seid - searches for the vsi with the given seid
3699  * @vf: pointer to the VF info
3700  * @seid: seid of the vsi it is searching for
3701  **/
3702 static struct i40e_vsi *i40e_find_vsi_from_seid(struct i40e_vf *vf, u16 seid)
3703 {
3704         struct i40e_pf *pf = vf->pf;
3705         struct i40e_vsi *vsi = NULL;
3706         int i;
3707
3708         for (i = 0; i < vf->num_tc ; i++) {
3709                 vsi = i40e_find_vsi_from_id(pf, vf->ch[i].vsi_id);
3710                 if (vsi && vsi->seid == seid)
3711                         return vsi;
3712         }
3713         return NULL;
3714 }
3715
3716 /**
3717  * i40e_del_all_cloud_filters
3718  * @vf: pointer to the VF info
3719  *
3720  * This function deletes all cloud filters
3721  **/
3722 static void i40e_del_all_cloud_filters(struct i40e_vf *vf)
3723 {
3724         struct i40e_cloud_filter *cfilter = NULL;
3725         struct i40e_pf *pf = vf->pf;
3726         struct i40e_vsi *vsi = NULL;
3727         struct hlist_node *node;
3728         int ret;
3729
3730         hlist_for_each_entry_safe(cfilter, node,
3731                                   &vf->cloud_filter_list, cloud_node) {
3732                 vsi = i40e_find_vsi_from_seid(vf, cfilter->seid);
3733
3734                 if (!vsi) {
3735                         dev_err(&pf->pdev->dev, "VF %d: no VSI found for matching %u seid, can't delete cloud filter\n",
3736                                 vf->vf_id, cfilter->seid);
3737                         continue;
3738                 }
3739
3740                 if (cfilter->dst_port)
3741                         ret = i40e_add_del_cloud_filter_big_buf(vsi, cfilter,
3742                                                                 false);
3743                 else
3744                         ret = i40e_add_del_cloud_filter(vsi, cfilter, false);
3745                 if (ret)
3746                         dev_err(&pf->pdev->dev,
3747                                 "VF %d: Failed to delete cloud filter, err %pe aq_err %s\n",
3748                                 vf->vf_id, ERR_PTR(ret),
3749                                 i40e_aq_str(&pf->hw,
3750                                             pf->hw.aq.asq_last_status));
3751
3752                 hlist_del(&cfilter->cloud_node);
3753                 kfree(cfilter);
3754                 vf->num_cloud_filters--;
3755         }
3756 }
3757
3758 /**
3759  * i40e_vc_del_cloud_filter
3760  * @vf: pointer to the VF info
3761  * @msg: pointer to the msg buffer
3762  *
3763  * This function deletes a cloud filter programmed as TC filter for ADq
3764  **/
3765 static int i40e_vc_del_cloud_filter(struct i40e_vf *vf, u8 *msg)
3766 {
3767         struct virtchnl_filter *vcf = (struct virtchnl_filter *)msg;
3768         struct virtchnl_l4_spec mask = vcf->mask.tcp_spec;
3769         struct virtchnl_l4_spec tcf = vcf->data.tcp_spec;
3770         struct i40e_cloud_filter cfilter, *cf = NULL;
3771         struct i40e_pf *pf = vf->pf;
3772         struct i40e_vsi *vsi = NULL;
3773         struct hlist_node *node;
3774         int aq_ret = 0;
3775         int i, ret;
3776
3777         if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) {
3778                 aq_ret = -EINVAL;
3779                 goto err;
3780         }
3781
3782         if (!vf->adq_enabled) {
3783                 dev_info(&pf->pdev->dev,
3784                          "VF %d: ADq not enabled, can't apply cloud filter\n",
3785                          vf->vf_id);
3786                 aq_ret = -EINVAL;
3787                 goto err;
3788         }
3789
3790         if (i40e_validate_cloud_filter(vf, vcf)) {
3791                 dev_info(&pf->pdev->dev,
3792                          "VF %d: Invalid input, can't apply cloud filter\n",
3793                          vf->vf_id);
3794                 aq_ret = -EINVAL;
3795                 goto err;
3796         }
3797
3798         memset(&cfilter, 0, sizeof(cfilter));
3799         /* parse destination mac address */
3800         for (i = 0; i < ETH_ALEN; i++)
3801                 cfilter.dst_mac[i] = mask.dst_mac[i] & tcf.dst_mac[i];
3802
3803         /* parse source mac address */
3804         for (i = 0; i < ETH_ALEN; i++)
3805                 cfilter.src_mac[i] = mask.src_mac[i] & tcf.src_mac[i];
3806
3807         cfilter.vlan_id = mask.vlan_id & tcf.vlan_id;
3808         cfilter.dst_port = mask.dst_port & tcf.dst_port;
3809         cfilter.src_port = mask.src_port & tcf.src_port;
3810
3811         switch (vcf->flow_type) {
3812         case VIRTCHNL_TCP_V4_FLOW:
3813                 cfilter.n_proto = ETH_P_IP;
3814                 if (mask.dst_ip[0] & tcf.dst_ip[0])
3815                         memcpy(&cfilter.ip.v4.dst_ip, tcf.dst_ip,
3816                                ARRAY_SIZE(tcf.dst_ip));
3817                 else if (mask.src_ip[0] & tcf.dst_ip[0])
3818                         memcpy(&cfilter.ip.v4.src_ip, tcf.src_ip,
3819                                ARRAY_SIZE(tcf.dst_ip));
3820                 break;
3821         case VIRTCHNL_TCP_V6_FLOW:
3822                 cfilter.n_proto = ETH_P_IPV6;
3823                 if (mask.dst_ip[3] & tcf.dst_ip[3])
3824                         memcpy(&cfilter.ip.v6.dst_ip6, tcf.dst_ip,
3825                                sizeof(cfilter.ip.v6.dst_ip6));
3826                 if (mask.src_ip[3] & tcf.src_ip[3])
3827                         memcpy(&cfilter.ip.v6.src_ip6, tcf.src_ip,
3828                                sizeof(cfilter.ip.v6.src_ip6));
3829                 break;
3830         default:
3831                 /* TC filter can be configured based on different combinations
3832                  * and in this case IP is not a part of filter config
3833                  */
3834                 dev_info(&pf->pdev->dev, "VF %d: Flow type not configured\n",
3835                          vf->vf_id);
3836         }
3837
3838         /* get the vsi to which the tc belongs to */
3839         vsi = pf->vsi[vf->ch[vcf->action_meta].vsi_idx];
3840         cfilter.seid = vsi->seid;
3841         cfilter.flags = vcf->field_flags;
3842
3843         /* Deleting TC filter */
3844         if (tcf.dst_port)
3845                 ret = i40e_add_del_cloud_filter_big_buf(vsi, &cfilter, false);
3846         else
3847                 ret = i40e_add_del_cloud_filter(vsi, &cfilter, false);
3848         if (ret) {
3849                 dev_err(&pf->pdev->dev,
3850                         "VF %d: Failed to delete cloud filter, err %pe aq_err %s\n",
3851                         vf->vf_id, ERR_PTR(ret),
3852                         i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
3853                 goto err;
3854         }
3855
3856         hlist_for_each_entry_safe(cf, node,
3857                                   &vf->cloud_filter_list, cloud_node) {
3858                 if (cf->seid != cfilter.seid)
3859                         continue;
3860                 if (mask.dst_port)
3861                         if (cfilter.dst_port != cf->dst_port)
3862                                 continue;
3863                 if (mask.dst_mac[0])
3864                         if (!ether_addr_equal(cf->src_mac, cfilter.src_mac))
3865                                 continue;
3866                 /* for ipv4 data to be valid, only first byte of mask is set */
3867                 if (cfilter.n_proto == ETH_P_IP && mask.dst_ip[0])
3868                         if (memcmp(&cfilter.ip.v4.dst_ip, &cf->ip.v4.dst_ip,
3869                                    ARRAY_SIZE(tcf.dst_ip)))
3870                                 continue;
3871                 /* for ipv6, mask is set for all sixteen bytes (4 words) */
3872                 if (cfilter.n_proto == ETH_P_IPV6 && mask.dst_ip[3])
3873                         if (memcmp(&cfilter.ip.v6.dst_ip6, &cf->ip.v6.dst_ip6,
3874                                    sizeof(cfilter.ip.v6.src_ip6)))
3875                                 continue;
3876                 if (mask.vlan_id)
3877                         if (cfilter.vlan_id != cf->vlan_id)
3878                                 continue;
3879
3880                 hlist_del(&cf->cloud_node);
3881                 kfree(cf);
3882                 vf->num_cloud_filters--;
3883         }
3884
3885 err:
3886         return i40e_vc_send_resp_to_vf(vf, VIRTCHNL_OP_DEL_CLOUD_FILTER,
3887                                        aq_ret);
3888 }
3889
3890 /**
3891  * i40e_vc_add_cloud_filter
3892  * @vf: pointer to the VF info
3893  * @msg: pointer to the msg buffer
3894  *
3895  * This function adds a cloud filter programmed as TC filter for ADq
3896  **/
3897 static int i40e_vc_add_cloud_filter(struct i40e_vf *vf, u8 *msg)
3898 {
3899         struct virtchnl_filter *vcf = (struct virtchnl_filter *)msg;
3900         struct virtchnl_l4_spec mask = vcf->mask.tcp_spec;
3901         struct virtchnl_l4_spec tcf = vcf->data.tcp_spec;
3902         struct i40e_cloud_filter *cfilter = NULL;
3903         struct i40e_pf *pf = vf->pf;
3904         struct i40e_vsi *vsi = NULL;
3905         int aq_ret = 0;
3906         int i;
3907
3908         if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) {
3909                 aq_ret = -EINVAL;
3910                 goto err_out;
3911         }
3912
3913         if (!vf->adq_enabled) {
3914                 dev_info(&pf->pdev->dev,
3915                          "VF %d: ADq is not enabled, can't apply cloud filter\n",
3916                          vf->vf_id);
3917                 aq_ret = -EINVAL;
3918                 goto err_out;
3919         }
3920
3921         if (i40e_validate_cloud_filter(vf, vcf)) {
3922                 dev_info(&pf->pdev->dev,
3923                          "VF %d: Invalid input/s, can't apply cloud filter\n",
3924                          vf->vf_id);
3925                 aq_ret = -EINVAL;
3926                 goto err_out;
3927         }
3928
3929         cfilter = kzalloc(sizeof(*cfilter), GFP_KERNEL);
3930         if (!cfilter) {
3931                 aq_ret = -ENOMEM;
3932                 goto err_out;
3933         }
3934
3935         /* parse destination mac address */
3936         for (i = 0; i < ETH_ALEN; i++)
3937                 cfilter->dst_mac[i] = mask.dst_mac[i] & tcf.dst_mac[i];
3938
3939         /* parse source mac address */
3940         for (i = 0; i < ETH_ALEN; i++)
3941                 cfilter->src_mac[i] = mask.src_mac[i] & tcf.src_mac[i];
3942
3943         cfilter->vlan_id = mask.vlan_id & tcf.vlan_id;
3944         cfilter->dst_port = mask.dst_port & tcf.dst_port;
3945         cfilter->src_port = mask.src_port & tcf.src_port;
3946
3947         switch (vcf->flow_type) {
3948         case VIRTCHNL_TCP_V4_FLOW:
3949                 cfilter->n_proto = ETH_P_IP;
3950                 if (mask.dst_ip[0] & tcf.dst_ip[0])
3951                         memcpy(&cfilter->ip.v4.dst_ip, tcf.dst_ip,
3952                                ARRAY_SIZE(tcf.dst_ip));
3953                 else if (mask.src_ip[0] & tcf.dst_ip[0])
3954                         memcpy(&cfilter->ip.v4.src_ip, tcf.src_ip,
3955                                ARRAY_SIZE(tcf.dst_ip));
3956                 break;
3957         case VIRTCHNL_TCP_V6_FLOW:
3958                 cfilter->n_proto = ETH_P_IPV6;
3959                 if (mask.dst_ip[3] & tcf.dst_ip[3])
3960                         memcpy(&cfilter->ip.v6.dst_ip6, tcf.dst_ip,
3961                                sizeof(cfilter->ip.v6.dst_ip6));
3962                 if (mask.src_ip[3] & tcf.src_ip[3])
3963                         memcpy(&cfilter->ip.v6.src_ip6, tcf.src_ip,
3964                                sizeof(cfilter->ip.v6.src_ip6));
3965                 break;
3966         default:
3967                 /* TC filter can be configured based on different combinations
3968                  * and in this case IP is not a part of filter config
3969                  */
3970                 dev_info(&pf->pdev->dev, "VF %d: Flow type not configured\n",
3971                          vf->vf_id);
3972         }
3973
3974         /* get the VSI to which the TC belongs to */
3975         vsi = pf->vsi[vf->ch[vcf->action_meta].vsi_idx];
3976         cfilter->seid = vsi->seid;
3977         cfilter->flags = vcf->field_flags;
3978
3979         /* Adding cloud filter programmed as TC filter */
3980         if (tcf.dst_port)
3981                 aq_ret = i40e_add_del_cloud_filter_big_buf(vsi, cfilter, true);
3982         else
3983                 aq_ret = i40e_add_del_cloud_filter(vsi, cfilter, true);
3984         if (aq_ret) {
3985                 dev_err(&pf->pdev->dev,
3986                         "VF %d: Failed to add cloud filter, err %pe aq_err %s\n",
3987                         vf->vf_id, ERR_PTR(aq_ret),
3988                         i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
3989                 goto err_free;
3990         }
3991
3992         INIT_HLIST_NODE(&cfilter->cloud_node);
3993         hlist_add_head(&cfilter->cloud_node, &vf->cloud_filter_list);
3994         /* release the pointer passing it to the collection */
3995         cfilter = NULL;
3996         vf->num_cloud_filters++;
3997 err_free:
3998         kfree(cfilter);
3999 err_out:
4000         return i40e_vc_send_resp_to_vf(vf, VIRTCHNL_OP_ADD_CLOUD_FILTER,
4001                                        aq_ret);
4002 }
4003
4004 /**
4005  * i40e_vc_add_qch_msg: Add queue channel and enable ADq
4006  * @vf: pointer to the VF info
4007  * @msg: pointer to the msg buffer
4008  **/
4009 static int i40e_vc_add_qch_msg(struct i40e_vf *vf, u8 *msg)
4010 {
4011         struct virtchnl_tc_info *tci =
4012                 (struct virtchnl_tc_info *)msg;
4013         struct i40e_pf *pf = vf->pf;
4014         struct i40e_link_status *ls = &pf->hw.phy.link_info;
4015         int i, adq_request_qps = 0;
4016         int aq_ret = 0;
4017         u64 speed = 0;
4018
4019         if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) {
4020                 aq_ret = -EINVAL;
4021                 goto err;
4022         }
4023
4024         /* ADq cannot be applied if spoof check is ON */
4025         if (vf->spoofchk) {
4026                 dev_err(&pf->pdev->dev,
4027                         "Spoof check is ON, turn it OFF to enable ADq\n");
4028                 aq_ret = -EINVAL;
4029                 goto err;
4030         }
4031
4032         if (!(vf->driver_caps & VIRTCHNL_VF_OFFLOAD_ADQ)) {
4033                 dev_err(&pf->pdev->dev,
4034                         "VF %d attempting to enable ADq, but hasn't properly negotiated that capability\n",
4035                         vf->vf_id);
4036                 aq_ret = -EINVAL;
4037                 goto err;
4038         }
4039
4040         /* max number of traffic classes for VF currently capped at 4 */
4041         if (!tci->num_tc || tci->num_tc > I40E_MAX_VF_VSI) {
4042                 dev_err(&pf->pdev->dev,
4043                         "VF %d trying to set %u TCs, valid range 1-%u TCs per VF\n",
4044                         vf->vf_id, tci->num_tc, I40E_MAX_VF_VSI);
4045                 aq_ret = -EINVAL;
4046                 goto err;
4047         }
4048
4049         /* validate queues for each TC */
4050         for (i = 0; i < tci->num_tc; i++)
4051                 if (!tci->list[i].count ||
4052                     tci->list[i].count > I40E_DEFAULT_QUEUES_PER_VF) {
4053                         dev_err(&pf->pdev->dev,
4054                                 "VF %d: TC %d trying to set %u queues, valid range 1-%u queues per TC\n",
4055                                 vf->vf_id, i, tci->list[i].count,
4056                                 I40E_DEFAULT_QUEUES_PER_VF);
4057                         aq_ret = -EINVAL;
4058                         goto err;
4059                 }
4060
4061         /* need Max VF queues but already have default number of queues */
4062         adq_request_qps = I40E_MAX_VF_QUEUES - I40E_DEFAULT_QUEUES_PER_VF;
4063
4064         if (pf->queues_left < adq_request_qps) {
4065                 dev_err(&pf->pdev->dev,
4066                         "No queues left to allocate to VF %d\n",
4067                         vf->vf_id);
4068                 aq_ret = -EINVAL;
4069                 goto err;
4070         } else {
4071                 /* we need to allocate max VF queues to enable ADq so as to
4072                  * make sure ADq enabled VF always gets back queues when it
4073                  * goes through a reset.
4074                  */
4075                 vf->num_queue_pairs = I40E_MAX_VF_QUEUES;
4076         }
4077
4078         /* get link speed in MB to validate rate limit */
4079         speed = i40e_vc_link_speed2mbps(ls->link_speed);
4080         if (speed == SPEED_UNKNOWN) {
4081                 dev_err(&pf->pdev->dev,
4082                         "Cannot detect link speed\n");
4083                 aq_ret = -EINVAL;
4084                 goto err;
4085         }
4086
4087         /* parse data from the queue channel info */
4088         vf->num_tc = tci->num_tc;
4089         for (i = 0; i < vf->num_tc; i++) {
4090                 if (tci->list[i].max_tx_rate) {
4091                         if (tci->list[i].max_tx_rate > speed) {
4092                                 dev_err(&pf->pdev->dev,
4093                                         "Invalid max tx rate %llu specified for VF %d.",
4094                                         tci->list[i].max_tx_rate,
4095                                         vf->vf_id);
4096                                 aq_ret = -EINVAL;
4097                                 goto err;
4098                         } else {
4099                                 vf->ch[i].max_tx_rate =
4100                                         tci->list[i].max_tx_rate;
4101                         }
4102                 }
4103                 vf->ch[i].num_qps = tci->list[i].count;
4104         }
4105
4106         /* set this flag only after making sure all inputs are sane */
4107         vf->adq_enabled = true;
4108
4109         /* reset the VF in order to allocate resources */
4110         i40e_vc_reset_vf(vf, true);
4111
4112         return 0;
4113
4114         /* send the response to the VF */
4115 err:
4116         return i40e_vc_send_resp_to_vf(vf, VIRTCHNL_OP_ENABLE_CHANNELS,
4117                                        aq_ret);
4118 }
4119
4120 /**
4121  * i40e_vc_del_qch_msg
4122  * @vf: pointer to the VF info
4123  * @msg: pointer to the msg buffer
4124  **/
4125 static int i40e_vc_del_qch_msg(struct i40e_vf *vf, u8 *msg)
4126 {
4127         struct i40e_pf *pf = vf->pf;
4128         int aq_ret = 0;
4129
4130         if (!i40e_sync_vf_state(vf, I40E_VF_STATE_ACTIVE)) {
4131                 aq_ret = -EINVAL;
4132                 goto err;
4133         }
4134
4135         if (vf->adq_enabled) {
4136                 i40e_del_all_cloud_filters(vf);
4137                 i40e_del_qch(vf);
4138                 vf->adq_enabled = false;
4139                 vf->num_tc = 0;
4140                 dev_info(&pf->pdev->dev,
4141                          "Deleting Queue Channels and cloud filters for ADq on VF %d\n",
4142                          vf->vf_id);
4143         } else {
4144                 dev_info(&pf->pdev->dev, "VF %d trying to delete queue channels but ADq isn't enabled\n",
4145                          vf->vf_id);
4146                 aq_ret = -EINVAL;
4147         }
4148
4149         /* reset the VF in order to allocate resources */
4150         i40e_vc_reset_vf(vf, true);
4151
4152         return 0;
4153
4154 err:
4155         return i40e_vc_send_resp_to_vf(vf, VIRTCHNL_OP_DISABLE_CHANNELS,
4156                                        aq_ret);
4157 }
4158
4159 /**
4160  * i40e_vc_process_vf_msg
4161  * @pf: pointer to the PF structure
4162  * @vf_id: source VF id
4163  * @v_opcode: operation code
4164  * @v_retval: unused return value code
4165  * @msg: pointer to the msg buffer
4166  * @msglen: msg length
4167  *
4168  * called from the common aeq/arq handler to
4169  * process request from VF
4170  **/
4171 int i40e_vc_process_vf_msg(struct i40e_pf *pf, s16 vf_id, u32 v_opcode,
4172                            u32 __always_unused v_retval, u8 *msg, u16 msglen)
4173 {
4174         struct i40e_hw *hw = &pf->hw;
4175         int local_vf_id = vf_id - (s16)hw->func_caps.vf_base_id;
4176         struct i40e_vf *vf;
4177         int ret;
4178
4179         pf->vf_aq_requests++;
4180         if (local_vf_id < 0 || local_vf_id >= pf->num_alloc_vfs)
4181                 return -EINVAL;
4182         vf = &(pf->vf[local_vf_id]);
4183
4184         /* Check if VF is disabled. */
4185         if (test_bit(I40E_VF_STATE_DISABLED, &vf->vf_states))
4186                 return -EINVAL;
4187
4188         /* perform basic checks on the msg */
4189         ret = virtchnl_vc_validate_vf_msg(&vf->vf_ver, v_opcode, msg, msglen);
4190
4191         if (ret) {
4192                 i40e_vc_send_resp_to_vf(vf, v_opcode, -EINVAL);
4193                 dev_err(&pf->pdev->dev, "Invalid message from VF %d, opcode %d, len %d\n",
4194                         local_vf_id, v_opcode, msglen);
4195                 return ret;
4196         }
4197
4198         switch (v_opcode) {
4199         case VIRTCHNL_OP_VERSION:
4200                 ret = i40e_vc_get_version_msg(vf, msg);
4201                 break;
4202         case VIRTCHNL_OP_GET_VF_RESOURCES:
4203                 ret = i40e_vc_get_vf_resources_msg(vf, msg);
4204                 i40e_vc_notify_vf_link_state(vf);
4205                 break;
4206         case VIRTCHNL_OP_RESET_VF:
4207                 i40e_vc_reset_vf(vf, false);
4208                 ret = 0;
4209                 break;
4210         case VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE:
4211                 ret = i40e_vc_config_promiscuous_mode_msg(vf, msg);
4212                 break;
4213         case VIRTCHNL_OP_CONFIG_VSI_QUEUES:
4214                 ret = i40e_vc_config_queues_msg(vf, msg);
4215                 break;
4216         case VIRTCHNL_OP_CONFIG_IRQ_MAP:
4217                 ret = i40e_vc_config_irq_map_msg(vf, msg);
4218                 break;
4219         case VIRTCHNL_OP_ENABLE_QUEUES:
4220                 ret = i40e_vc_enable_queues_msg(vf, msg);
4221                 i40e_vc_notify_vf_link_state(vf);
4222                 break;
4223         case VIRTCHNL_OP_DISABLE_QUEUES:
4224                 ret = i40e_vc_disable_queues_msg(vf, msg);
4225                 break;
4226         case VIRTCHNL_OP_ADD_ETH_ADDR:
4227                 ret = i40e_vc_add_mac_addr_msg(vf, msg);
4228                 break;
4229         case VIRTCHNL_OP_DEL_ETH_ADDR:
4230                 ret = i40e_vc_del_mac_addr_msg(vf, msg);
4231                 break;
4232         case VIRTCHNL_OP_ADD_VLAN:
4233                 ret = i40e_vc_add_vlan_msg(vf, msg);
4234                 break;
4235         case VIRTCHNL_OP_DEL_VLAN:
4236                 ret = i40e_vc_remove_vlan_msg(vf, msg);
4237                 break;
4238         case VIRTCHNL_OP_GET_STATS:
4239                 ret = i40e_vc_get_stats_msg(vf, msg);
4240                 break;
4241         case VIRTCHNL_OP_RDMA:
4242                 ret = i40e_vc_rdma_msg(vf, msg, msglen);
4243                 break;
4244         case VIRTCHNL_OP_CONFIG_RDMA_IRQ_MAP:
4245                 ret = i40e_vc_rdma_qvmap_msg(vf, msg, true);
4246                 break;
4247         case VIRTCHNL_OP_RELEASE_RDMA_IRQ_MAP:
4248                 ret = i40e_vc_rdma_qvmap_msg(vf, msg, false);
4249                 break;
4250         case VIRTCHNL_OP_CONFIG_RSS_KEY:
4251                 ret = i40e_vc_config_rss_key(vf, msg);
4252                 break;
4253         case VIRTCHNL_OP_CONFIG_RSS_LUT:
4254                 ret = i40e_vc_config_rss_lut(vf, msg);
4255                 break;
4256         case VIRTCHNL_OP_GET_RSS_HENA_CAPS:
4257                 ret = i40e_vc_get_rss_hena(vf, msg);
4258                 break;
4259         case VIRTCHNL_OP_SET_RSS_HENA:
4260                 ret = i40e_vc_set_rss_hena(vf, msg);
4261                 break;
4262         case VIRTCHNL_OP_ENABLE_VLAN_STRIPPING:
4263                 ret = i40e_vc_enable_vlan_stripping(vf, msg);
4264                 break;
4265         case VIRTCHNL_OP_DISABLE_VLAN_STRIPPING:
4266                 ret = i40e_vc_disable_vlan_stripping(vf, msg);
4267                 break;
4268         case VIRTCHNL_OP_REQUEST_QUEUES:
4269                 ret = i40e_vc_request_queues_msg(vf, msg);
4270                 break;
4271         case VIRTCHNL_OP_ENABLE_CHANNELS:
4272                 ret = i40e_vc_add_qch_msg(vf, msg);
4273                 break;
4274         case VIRTCHNL_OP_DISABLE_CHANNELS:
4275                 ret = i40e_vc_del_qch_msg(vf, msg);
4276                 break;
4277         case VIRTCHNL_OP_ADD_CLOUD_FILTER:
4278                 ret = i40e_vc_add_cloud_filter(vf, msg);
4279                 break;
4280         case VIRTCHNL_OP_DEL_CLOUD_FILTER:
4281                 ret = i40e_vc_del_cloud_filter(vf, msg);
4282                 break;
4283         case VIRTCHNL_OP_UNKNOWN:
4284         default:
4285                 dev_err(&pf->pdev->dev, "Unsupported opcode %d from VF %d\n",
4286                         v_opcode, local_vf_id);
4287                 ret = i40e_vc_send_resp_to_vf(vf, v_opcode,
4288                                               -EOPNOTSUPP);
4289                 break;
4290         }
4291
4292         return ret;
4293 }
4294
4295 /**
4296  * i40e_vc_process_vflr_event
4297  * @pf: pointer to the PF structure
4298  *
4299  * called from the vlfr irq handler to
4300  * free up VF resources and state variables
4301  **/
4302 int i40e_vc_process_vflr_event(struct i40e_pf *pf)
4303 {
4304         struct i40e_hw *hw = &pf->hw;
4305         u32 reg, reg_idx, bit_idx;
4306         struct i40e_vf *vf;
4307         int vf_id;
4308
4309         if (!test_bit(__I40E_VFLR_EVENT_PENDING, pf->state))
4310                 return 0;
4311
4312         /* Re-enable the VFLR interrupt cause here, before looking for which
4313          * VF got reset. Otherwise, if another VF gets a reset while the
4314          * first one is being processed, that interrupt will be lost, and
4315          * that VF will be stuck in reset forever.
4316          */
4317         reg = rd32(hw, I40E_PFINT_ICR0_ENA);
4318         reg |= I40E_PFINT_ICR0_ENA_VFLR_MASK;
4319         wr32(hw, I40E_PFINT_ICR0_ENA, reg);
4320         i40e_flush(hw);
4321
4322         clear_bit(__I40E_VFLR_EVENT_PENDING, pf->state);
4323         for (vf_id = 0; vf_id < pf->num_alloc_vfs; vf_id++) {
4324                 reg_idx = (hw->func_caps.vf_base_id + vf_id) / 32;
4325                 bit_idx = (hw->func_caps.vf_base_id + vf_id) % 32;
4326                 /* read GLGEN_VFLRSTAT register to find out the flr VFs */
4327                 vf = &pf->vf[vf_id];
4328                 reg = rd32(hw, I40E_GLGEN_VFLRSTAT(reg_idx));
4329                 if (reg & BIT(bit_idx))
4330                         /* i40e_reset_vf will clear the bit in GLGEN_VFLRSTAT */
4331                         i40e_reset_vf(vf, true);
4332         }
4333
4334         return 0;
4335 }
4336
4337 /**
4338  * i40e_validate_vf
4339  * @pf: the physical function
4340  * @vf_id: VF identifier
4341  *
4342  * Check that the VF is enabled and the VSI exists.
4343  *
4344  * Returns 0 on success, negative on failure
4345  **/
4346 static int i40e_validate_vf(struct i40e_pf *pf, int vf_id)
4347 {
4348         struct i40e_vsi *vsi;
4349         struct i40e_vf *vf;
4350         int ret = 0;
4351
4352         if (vf_id >= pf->num_alloc_vfs) {
4353                 dev_err(&pf->pdev->dev,
4354                         "Invalid VF Identifier %d\n", vf_id);
4355                 ret = -EINVAL;
4356                 goto err_out;
4357         }
4358         vf = &pf->vf[vf_id];
4359         vsi = i40e_find_vsi_from_id(pf, vf->lan_vsi_id);
4360         if (!vsi)
4361                 ret = -EINVAL;
4362 err_out:
4363         return ret;
4364 }
4365
4366 /**
4367  * i40e_check_vf_init_timeout
4368  * @vf: the virtual function
4369  *
4370  * Check that the VF's initialization was successfully done and if not
4371  * wait up to 300ms for its finish.
4372  *
4373  * Returns true when VF is initialized, false on timeout
4374  **/
4375 static bool i40e_check_vf_init_timeout(struct i40e_vf *vf)
4376 {
4377         int i;
4378
4379         /* When the VF is resetting wait until it is done.
4380          * It can take up to 200 milliseconds, but wait for
4381          * up to 300 milliseconds to be safe.
4382          */
4383         for (i = 0; i < 15; i++) {
4384                 if (test_bit(I40E_VF_STATE_INIT, &vf->vf_states))
4385                         return true;
4386                 msleep(20);
4387         }
4388
4389         if (!test_bit(I40E_VF_STATE_INIT, &vf->vf_states)) {
4390                 dev_err(&vf->pf->pdev->dev,
4391                         "VF %d still in reset. Try again.\n", vf->vf_id);
4392                 return false;
4393         }
4394
4395         return true;
4396 }
4397
4398 /**
4399  * i40e_ndo_set_vf_mac
4400  * @netdev: network interface device structure
4401  * @vf_id: VF identifier
4402  * @mac: mac address
4403  *
4404  * program VF mac address
4405  **/
4406 int i40e_ndo_set_vf_mac(struct net_device *netdev, int vf_id, u8 *mac)
4407 {
4408         struct i40e_netdev_priv *np = netdev_priv(netdev);
4409         struct i40e_vsi *vsi = np->vsi;
4410         struct i40e_pf *pf = vsi->back;
4411         struct i40e_mac_filter *f;
4412         struct i40e_vf *vf;
4413         int ret = 0;
4414         struct hlist_node *h;
4415         int bkt;
4416
4417         if (test_and_set_bit(__I40E_VIRTCHNL_OP_PENDING, pf->state)) {
4418                 dev_warn(&pf->pdev->dev, "Unable to configure VFs, other operation is pending.\n");
4419                 return -EAGAIN;
4420         }
4421
4422         /* validate the request */
4423         ret = i40e_validate_vf(pf, vf_id);
4424         if (ret)
4425                 goto error_param;
4426
4427         vf = &pf->vf[vf_id];
4428         if (!i40e_check_vf_init_timeout(vf)) {
4429                 ret = -EAGAIN;
4430                 goto error_param;
4431         }
4432         vsi = pf->vsi[vf->lan_vsi_idx];
4433
4434         if (is_multicast_ether_addr(mac)) {
4435                 dev_err(&pf->pdev->dev,
4436                         "Invalid Ethernet address %pM for VF %d\n", mac, vf_id);
4437                 ret = -EINVAL;
4438                 goto error_param;
4439         }
4440
4441         /* Lock once because below invoked function add/del_filter requires
4442          * mac_filter_hash_lock to be held
4443          */
4444         spin_lock_bh(&vsi->mac_filter_hash_lock);
4445
4446         /* delete the temporary mac address */
4447         if (!is_zero_ether_addr(vf->default_lan_addr.addr))
4448                 i40e_del_mac_filter(vsi, vf->default_lan_addr.addr);
4449
4450         /* Delete all the filters for this VSI - we're going to kill it
4451          * anyway.
4452          */
4453         hash_for_each_safe(vsi->mac_filter_hash, bkt, h, f, hlist)
4454                 __i40e_del_filter(vsi, f);
4455
4456         spin_unlock_bh(&vsi->mac_filter_hash_lock);
4457
4458         /* program mac filter */
4459         if (i40e_sync_vsi_filters(vsi)) {
4460                 dev_err(&pf->pdev->dev, "Unable to program ucast filters\n");
4461                 ret = -EIO;
4462                 goto error_param;
4463         }
4464         ether_addr_copy(vf->default_lan_addr.addr, mac);
4465
4466         if (is_zero_ether_addr(mac)) {
4467                 vf->pf_set_mac = false;
4468                 dev_info(&pf->pdev->dev, "Removing MAC on VF %d\n", vf_id);
4469         } else {
4470                 vf->pf_set_mac = true;
4471                 dev_info(&pf->pdev->dev, "Setting MAC %pM on VF %d\n",
4472                          mac, vf_id);
4473         }
4474
4475         /* Force the VF interface down so it has to bring up with new MAC
4476          * address
4477          */
4478         i40e_vc_reset_vf(vf, true);
4479         dev_info(&pf->pdev->dev, "Bring down and up the VF interface to make this change effective.\n");
4480
4481 error_param:
4482         clear_bit(__I40E_VIRTCHNL_OP_PENDING, pf->state);
4483         return ret;
4484 }
4485
4486 /**
4487  * i40e_ndo_set_vf_port_vlan
4488  * @netdev: network interface device structure
4489  * @vf_id: VF identifier
4490  * @vlan_id: mac address
4491  * @qos: priority setting
4492  * @vlan_proto: vlan protocol
4493  *
4494  * program VF vlan id and/or qos
4495  **/
4496 int i40e_ndo_set_vf_port_vlan(struct net_device *netdev, int vf_id,
4497                               u16 vlan_id, u8 qos, __be16 vlan_proto)
4498 {
4499         u16 vlanprio = vlan_id | (qos << I40E_VLAN_PRIORITY_SHIFT);
4500         struct i40e_netdev_priv *np = netdev_priv(netdev);
4501         bool allmulti = false, alluni = false;
4502         struct i40e_pf *pf = np->vsi->back;
4503         struct i40e_vsi *vsi;
4504         struct i40e_vf *vf;
4505         int ret = 0;
4506
4507         if (test_and_set_bit(__I40E_VIRTCHNL_OP_PENDING, pf->state)) {
4508                 dev_warn(&pf->pdev->dev, "Unable to configure VFs, other operation is pending.\n");
4509                 return -EAGAIN;
4510         }
4511
4512         /* validate the request */
4513         ret = i40e_validate_vf(pf, vf_id);
4514         if (ret)
4515                 goto error_pvid;
4516
4517         if ((vlan_id > I40E_MAX_VLANID) || (qos > 7)) {
4518                 dev_err(&pf->pdev->dev, "Invalid VF Parameters\n");
4519                 ret = -EINVAL;
4520                 goto error_pvid;
4521         }
4522
4523         if (vlan_proto != htons(ETH_P_8021Q)) {
4524                 dev_err(&pf->pdev->dev, "VF VLAN protocol is not supported\n");
4525                 ret = -EPROTONOSUPPORT;
4526                 goto error_pvid;
4527         }
4528
4529         vf = &pf->vf[vf_id];
4530         if (!i40e_check_vf_init_timeout(vf)) {
4531                 ret = -EAGAIN;
4532                 goto error_pvid;
4533         }
4534         vsi = pf->vsi[vf->lan_vsi_idx];
4535
4536         if (le16_to_cpu(vsi->info.pvid) == vlanprio)
4537                 /* duplicate request, so just return success */
4538                 goto error_pvid;
4539
4540         i40e_vlan_stripping_enable(vsi);
4541
4542         /* Locked once because multiple functions below iterate list */
4543         spin_lock_bh(&vsi->mac_filter_hash_lock);
4544
4545         /* Check for condition where there was already a port VLAN ID
4546          * filter set and now it is being deleted by setting it to zero.
4547          * Additionally check for the condition where there was a port
4548          * VLAN but now there is a new and different port VLAN being set.
4549          * Before deleting all the old VLAN filters we must add new ones
4550          * with -1 (I40E_VLAN_ANY) or otherwise we're left with all our
4551          * MAC addresses deleted.
4552          */
4553         if ((!(vlan_id || qos) ||
4554              vlanprio != le16_to_cpu(vsi->info.pvid)) &&
4555             vsi->info.pvid) {
4556                 ret = i40e_add_vlan_all_mac(vsi, I40E_VLAN_ANY);
4557                 if (ret) {
4558                         dev_info(&vsi->back->pdev->dev,
4559                                  "add VF VLAN failed, ret=%d aq_err=%d\n", ret,
4560                                  vsi->back->hw.aq.asq_last_status);
4561                         spin_unlock_bh(&vsi->mac_filter_hash_lock);
4562                         goto error_pvid;
4563                 }
4564         }
4565
4566         if (vsi->info.pvid) {
4567                 /* remove all filters on the old VLAN */
4568                 i40e_rm_vlan_all_mac(vsi, (le16_to_cpu(vsi->info.pvid) &
4569                                            VLAN_VID_MASK));
4570         }
4571
4572         spin_unlock_bh(&vsi->mac_filter_hash_lock);
4573
4574         /* disable promisc modes in case they were enabled */
4575         ret = i40e_config_vf_promiscuous_mode(vf, vf->lan_vsi_id,
4576                                               allmulti, alluni);
4577         if (ret) {
4578                 dev_err(&pf->pdev->dev, "Unable to config VF promiscuous mode\n");
4579                 goto error_pvid;
4580         }
4581
4582         if (vlan_id || qos)
4583                 ret = i40e_vsi_add_pvid(vsi, vlanprio);
4584         else
4585                 i40e_vsi_remove_pvid(vsi);
4586         spin_lock_bh(&vsi->mac_filter_hash_lock);
4587
4588         if (vlan_id) {
4589                 dev_info(&pf->pdev->dev, "Setting VLAN %d, QOS 0x%x on VF %d\n",
4590                          vlan_id, qos, vf_id);
4591
4592                 /* add new VLAN filter for each MAC */
4593                 ret = i40e_add_vlan_all_mac(vsi, vlan_id);
4594                 if (ret) {
4595                         dev_info(&vsi->back->pdev->dev,
4596                                  "add VF VLAN failed, ret=%d aq_err=%d\n", ret,
4597                                  vsi->back->hw.aq.asq_last_status);
4598                         spin_unlock_bh(&vsi->mac_filter_hash_lock);
4599                         goto error_pvid;
4600                 }
4601
4602                 /* remove the previously added non-VLAN MAC filters */
4603                 i40e_rm_vlan_all_mac(vsi, I40E_VLAN_ANY);
4604         }
4605
4606         spin_unlock_bh(&vsi->mac_filter_hash_lock);
4607
4608         if (test_bit(I40E_VF_STATE_UC_PROMISC, &vf->vf_states))
4609                 alluni = true;
4610
4611         if (test_bit(I40E_VF_STATE_MC_PROMISC, &vf->vf_states))
4612                 allmulti = true;
4613
4614         /* Schedule the worker thread to take care of applying changes */
4615         i40e_service_event_schedule(vsi->back);
4616
4617         if (ret) {
4618                 dev_err(&pf->pdev->dev, "Unable to update VF vsi context\n");
4619                 goto error_pvid;
4620         }
4621
4622         /* The Port VLAN needs to be saved across resets the same as the
4623          * default LAN MAC address.
4624          */
4625         vf->port_vlan_id = le16_to_cpu(vsi->info.pvid);
4626
4627         i40e_vc_reset_vf(vf, true);
4628         /* During reset the VF got a new VSI, so refresh a pointer. */
4629         vsi = pf->vsi[vf->lan_vsi_idx];
4630
4631         ret = i40e_config_vf_promiscuous_mode(vf, vsi->id, allmulti, alluni);
4632         if (ret) {
4633                 dev_err(&pf->pdev->dev, "Unable to config vf promiscuous mode\n");
4634                 goto error_pvid;
4635         }
4636
4637         ret = 0;
4638
4639 error_pvid:
4640         clear_bit(__I40E_VIRTCHNL_OP_PENDING, pf->state);
4641         return ret;
4642 }
4643
4644 /**
4645  * i40e_ndo_set_vf_bw
4646  * @netdev: network interface device structure
4647  * @vf_id: VF identifier
4648  * @min_tx_rate: Minimum Tx rate
4649  * @max_tx_rate: Maximum Tx rate
4650  *
4651  * configure VF Tx rate
4652  **/
4653 int i40e_ndo_set_vf_bw(struct net_device *netdev, int vf_id, int min_tx_rate,
4654                        int max_tx_rate)
4655 {
4656         struct i40e_netdev_priv *np = netdev_priv(netdev);
4657         struct i40e_pf *pf = np->vsi->back;
4658         struct i40e_vsi *vsi;
4659         struct i40e_vf *vf;
4660         int ret = 0;
4661
4662         if (test_and_set_bit(__I40E_VIRTCHNL_OP_PENDING, pf->state)) {
4663                 dev_warn(&pf->pdev->dev, "Unable to configure VFs, other operation is pending.\n");
4664                 return -EAGAIN;
4665         }
4666
4667         /* validate the request */
4668         ret = i40e_validate_vf(pf, vf_id);
4669         if (ret)
4670                 goto error;
4671
4672         if (min_tx_rate) {
4673                 dev_err(&pf->pdev->dev, "Invalid min tx rate (%d) (greater than 0) specified for VF %d.\n",
4674                         min_tx_rate, vf_id);
4675                 ret = -EINVAL;
4676                 goto error;
4677         }
4678
4679         vf = &pf->vf[vf_id];
4680         if (!i40e_check_vf_init_timeout(vf)) {
4681                 ret = -EAGAIN;
4682                 goto error;
4683         }
4684         vsi = pf->vsi[vf->lan_vsi_idx];
4685
4686         ret = i40e_set_bw_limit(vsi, vsi->seid, max_tx_rate);
4687         if (ret)
4688                 goto error;
4689
4690         vf->tx_rate = max_tx_rate;
4691 error:
4692         clear_bit(__I40E_VIRTCHNL_OP_PENDING, pf->state);
4693         return ret;
4694 }
4695
4696 /**
4697  * i40e_ndo_get_vf_config
4698  * @netdev: network interface device structure
4699  * @vf_id: VF identifier
4700  * @ivi: VF configuration structure
4701  *
4702  * return VF configuration
4703  **/
4704 int i40e_ndo_get_vf_config(struct net_device *netdev,
4705                            int vf_id, struct ifla_vf_info *ivi)
4706 {
4707         struct i40e_netdev_priv *np = netdev_priv(netdev);
4708         struct i40e_vsi *vsi = np->vsi;
4709         struct i40e_pf *pf = vsi->back;
4710         struct i40e_vf *vf;
4711         int ret = 0;
4712
4713         if (test_and_set_bit(__I40E_VIRTCHNL_OP_PENDING, pf->state)) {
4714                 dev_warn(&pf->pdev->dev, "Unable to configure VFs, other operation is pending.\n");
4715                 return -EAGAIN;
4716         }
4717
4718         /* validate the request */
4719         ret = i40e_validate_vf(pf, vf_id);
4720         if (ret)
4721                 goto error_param;
4722
4723         vf = &pf->vf[vf_id];
4724         /* first vsi is always the LAN vsi */
4725         vsi = pf->vsi[vf->lan_vsi_idx];
4726         if (!vsi) {
4727                 ret = -ENOENT;
4728                 goto error_param;
4729         }
4730
4731         ivi->vf = vf_id;
4732
4733         ether_addr_copy(ivi->mac, vf->default_lan_addr.addr);
4734
4735         ivi->max_tx_rate = vf->tx_rate;
4736         ivi->min_tx_rate = 0;
4737         ivi->vlan = le16_get_bits(vsi->info.pvid, I40E_VLAN_MASK);
4738         ivi->qos = le16_get_bits(vsi->info.pvid, I40E_PRIORITY_MASK);
4739         if (vf->link_forced == false)
4740                 ivi->linkstate = IFLA_VF_LINK_STATE_AUTO;
4741         else if (vf->link_up == true)
4742                 ivi->linkstate = IFLA_VF_LINK_STATE_ENABLE;
4743         else
4744                 ivi->linkstate = IFLA_VF_LINK_STATE_DISABLE;
4745         ivi->spoofchk = vf->spoofchk;
4746         ivi->trusted = vf->trusted;
4747         ret = 0;
4748
4749 error_param:
4750         clear_bit(__I40E_VIRTCHNL_OP_PENDING, pf->state);
4751         return ret;
4752 }
4753
4754 /**
4755  * i40e_ndo_set_vf_link_state
4756  * @netdev: network interface device structure
4757  * @vf_id: VF identifier
4758  * @link: required link state
4759  *
4760  * Set the link state of a specified VF, regardless of physical link state
4761  **/
4762 int i40e_ndo_set_vf_link_state(struct net_device *netdev, int vf_id, int link)
4763 {
4764         struct i40e_netdev_priv *np = netdev_priv(netdev);
4765         struct i40e_pf *pf = np->vsi->back;
4766         struct i40e_link_status *ls = &pf->hw.phy.link_info;
4767         struct virtchnl_pf_event pfe;
4768         struct i40e_hw *hw = &pf->hw;
4769         struct i40e_vsi *vsi;
4770         unsigned long q_map;
4771         struct i40e_vf *vf;
4772         int abs_vf_id;
4773         int ret = 0;
4774         int tmp;
4775
4776         if (test_and_set_bit(__I40E_VIRTCHNL_OP_PENDING, pf->state)) {
4777                 dev_warn(&pf->pdev->dev, "Unable to configure VFs, other operation is pending.\n");
4778                 return -EAGAIN;
4779         }
4780
4781         /* validate the request */
4782         if (vf_id >= pf->num_alloc_vfs) {
4783                 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d\n", vf_id);
4784                 ret = -EINVAL;
4785                 goto error_out;
4786         }
4787
4788         vf = &pf->vf[vf_id];
4789         abs_vf_id = vf->vf_id + hw->func_caps.vf_base_id;
4790
4791         pfe.event = VIRTCHNL_EVENT_LINK_CHANGE;
4792         pfe.severity = PF_EVENT_SEVERITY_INFO;
4793
4794         switch (link) {
4795         case IFLA_VF_LINK_STATE_AUTO:
4796                 vf->link_forced = false;
4797                 vf->is_disabled_from_host = false;
4798                 /* reset needed to reinit VF resources */
4799                 i40e_vc_reset_vf(vf, true);
4800                 i40e_set_vf_link_state(vf, &pfe, ls);
4801                 break;
4802         case IFLA_VF_LINK_STATE_ENABLE:
4803                 vf->link_forced = true;
4804                 vf->link_up = true;
4805                 vf->is_disabled_from_host = false;
4806                 /* reset needed to reinit VF resources */
4807                 i40e_vc_reset_vf(vf, true);
4808                 i40e_set_vf_link_state(vf, &pfe, ls);
4809                 break;
4810         case IFLA_VF_LINK_STATE_DISABLE:
4811                 vf->link_forced = true;
4812                 vf->link_up = false;
4813                 i40e_set_vf_link_state(vf, &pfe, ls);
4814
4815                 vsi = pf->vsi[vf->lan_vsi_idx];
4816                 q_map = BIT(vsi->num_queue_pairs) - 1;
4817
4818                 vf->is_disabled_from_host = true;
4819
4820                 /* Try to stop both Tx&Rx rings even if one of the calls fails
4821                  * to ensure we stop the rings even in case of errors.
4822                  * If any of them returns with an error then the first
4823                  * error that occurred will be returned.
4824                  */
4825                 tmp = i40e_ctrl_vf_tx_rings(vsi, q_map, false);
4826                 ret = i40e_ctrl_vf_rx_rings(vsi, q_map, false);
4827
4828                 ret = tmp ? tmp : ret;
4829                 break;
4830         default:
4831                 ret = -EINVAL;
4832                 goto error_out;
4833         }
4834         /* Notify the VF of its new link state */
4835         i40e_aq_send_msg_to_vf(hw, abs_vf_id, VIRTCHNL_OP_EVENT,
4836                                0, (u8 *)&pfe, sizeof(pfe), NULL);
4837
4838 error_out:
4839         clear_bit(__I40E_VIRTCHNL_OP_PENDING, pf->state);
4840         return ret;
4841 }
4842
4843 /**
4844  * i40e_ndo_set_vf_spoofchk
4845  * @netdev: network interface device structure
4846  * @vf_id: VF identifier
4847  * @enable: flag to enable or disable feature
4848  *
4849  * Enable or disable VF spoof checking
4850  **/
4851 int i40e_ndo_set_vf_spoofchk(struct net_device *netdev, int vf_id, bool enable)
4852 {
4853         struct i40e_netdev_priv *np = netdev_priv(netdev);
4854         struct i40e_vsi *vsi = np->vsi;
4855         struct i40e_pf *pf = vsi->back;
4856         struct i40e_vsi_context ctxt;
4857         struct i40e_hw *hw = &pf->hw;
4858         struct i40e_vf *vf;
4859         int ret = 0;
4860
4861         if (test_and_set_bit(__I40E_VIRTCHNL_OP_PENDING, pf->state)) {
4862                 dev_warn(&pf->pdev->dev, "Unable to configure VFs, other operation is pending.\n");
4863                 return -EAGAIN;
4864         }
4865
4866         /* validate the request */
4867         if (vf_id >= pf->num_alloc_vfs) {
4868                 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d\n", vf_id);
4869                 ret = -EINVAL;
4870                 goto out;
4871         }
4872
4873         vf = &(pf->vf[vf_id]);
4874         if (!i40e_check_vf_init_timeout(vf)) {
4875                 ret = -EAGAIN;
4876                 goto out;
4877         }
4878
4879         if (enable == vf->spoofchk)
4880                 goto out;
4881
4882         vf->spoofchk = enable;
4883         memset(&ctxt, 0, sizeof(ctxt));
4884         ctxt.seid = pf->vsi[vf->lan_vsi_idx]->seid;
4885         ctxt.pf_num = pf->hw.pf_id;
4886         ctxt.info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID);
4887         if (enable)
4888                 ctxt.info.sec_flags |= (I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK |
4889                                         I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK);
4890         ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL);
4891         if (ret) {
4892                 dev_err(&pf->pdev->dev, "Error %d updating VSI parameters\n",
4893                         ret);
4894                 ret = -EIO;
4895         }
4896 out:
4897         clear_bit(__I40E_VIRTCHNL_OP_PENDING, pf->state);
4898         return ret;
4899 }
4900
4901 /**
4902  * i40e_ndo_set_vf_trust
4903  * @netdev: network interface device structure of the pf
4904  * @vf_id: VF identifier
4905  * @setting: trust setting
4906  *
4907  * Enable or disable VF trust setting
4908  **/
4909 int i40e_ndo_set_vf_trust(struct net_device *netdev, int vf_id, bool setting)
4910 {
4911         struct i40e_netdev_priv *np = netdev_priv(netdev);
4912         struct i40e_pf *pf = np->vsi->back;
4913         struct i40e_vf *vf;
4914         int ret = 0;
4915
4916         if (test_and_set_bit(__I40E_VIRTCHNL_OP_PENDING, pf->state)) {
4917                 dev_warn(&pf->pdev->dev, "Unable to configure VFs, other operation is pending.\n");
4918                 return -EAGAIN;
4919         }
4920
4921         /* validate the request */
4922         if (vf_id >= pf->num_alloc_vfs) {
4923                 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d\n", vf_id);
4924                 ret = -EINVAL;
4925                 goto out;
4926         }
4927
4928         if (test_bit(I40E_FLAG_MFP_ENA, pf->flags)) {
4929                 dev_err(&pf->pdev->dev, "Trusted VF not supported in MFP mode.\n");
4930                 ret = -EINVAL;
4931                 goto out;
4932         }
4933
4934         vf = &pf->vf[vf_id];
4935
4936         if (setting == vf->trusted)
4937                 goto out;
4938
4939         vf->trusted = setting;
4940
4941         /* request PF to sync mac/vlan filters for the VF */
4942         set_bit(__I40E_MACVLAN_SYNC_PENDING, pf->state);
4943         pf->vsi[vf->lan_vsi_idx]->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
4944
4945         i40e_vc_reset_vf(vf, true);
4946         dev_info(&pf->pdev->dev, "VF %u is now %strusted\n",
4947                  vf_id, setting ? "" : "un");
4948
4949         if (vf->adq_enabled) {
4950                 if (!vf->trusted) {
4951                         dev_info(&pf->pdev->dev,
4952                                  "VF %u no longer Trusted, deleting all cloud filters\n",
4953                                  vf_id);
4954                         i40e_del_all_cloud_filters(vf);
4955                 }
4956         }
4957
4958 out:
4959         clear_bit(__I40E_VIRTCHNL_OP_PENDING, pf->state);
4960         return ret;
4961 }
4962
4963 /**
4964  * i40e_get_vf_stats - populate some stats for the VF
4965  * @netdev: the netdev of the PF
4966  * @vf_id: the host OS identifier (0-127)
4967  * @vf_stats: pointer to the OS memory to be initialized
4968  */
4969 int i40e_get_vf_stats(struct net_device *netdev, int vf_id,
4970                       struct ifla_vf_stats *vf_stats)
4971 {
4972         struct i40e_netdev_priv *np = netdev_priv(netdev);
4973         struct i40e_pf *pf = np->vsi->back;
4974         struct i40e_eth_stats *stats;
4975         struct i40e_vsi *vsi;
4976         struct i40e_vf *vf;
4977
4978         /* validate the request */
4979         if (i40e_validate_vf(pf, vf_id))
4980                 return -EINVAL;
4981
4982         vf = &pf->vf[vf_id];
4983         if (!test_bit(I40E_VF_STATE_INIT, &vf->vf_states)) {
4984                 dev_err(&pf->pdev->dev, "VF %d in reset. Try again.\n", vf_id);
4985                 return -EBUSY;
4986         }
4987
4988         vsi = pf->vsi[vf->lan_vsi_idx];
4989         if (!vsi)
4990                 return -EINVAL;
4991
4992         i40e_update_eth_stats(vsi);
4993         stats = &vsi->eth_stats;
4994
4995         memset(vf_stats, 0, sizeof(*vf_stats));
4996
4997         vf_stats->rx_packets = stats->rx_unicast + stats->rx_broadcast +
4998                 stats->rx_multicast;
4999         vf_stats->tx_packets = stats->tx_unicast + stats->tx_broadcast +
5000                 stats->tx_multicast;
5001         vf_stats->rx_bytes   = stats->rx_bytes;
5002         vf_stats->tx_bytes   = stats->tx_bytes;
5003         vf_stats->broadcast  = stats->rx_broadcast;
5004         vf_stats->multicast  = stats->rx_multicast;
5005         vf_stats->rx_dropped = stats->rx_discards + stats->rx_discards_other;
5006         vf_stats->tx_dropped = stats->tx_discards;
5007
5008         return 0;
5009 }