GNU Linux-libre 4.4.285-gnu1
[releases.git] / drivers / net / ethernet / intel / i40e / i40e_virtchnl_pf.c
1 /*******************************************************************************
2  *
3  * Intel Ethernet Controller XL710 Family Linux Driver
4  * Copyright(c) 2013 - 2015 Intel Corporation.
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms and conditions of the GNU General Public License,
8  * version 2, as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
13  * more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program.  If not, see <http://www.gnu.org/licenses/>.
17  *
18  * The full GNU General Public License is included in this distribution in
19  * the file called "COPYING".
20  *
21  * Contact Information:
22  * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
23  * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24  *
25  ******************************************************************************/
26
27 #include "i40e.h"
28
29 /*********************notification routines***********************/
30
31 /**
32  * i40e_vc_vf_broadcast
33  * @pf: pointer to the PF structure
34  * @opcode: operation code
35  * @retval: return value
36  * @msg: pointer to the msg buffer
37  * @msglen: msg length
38  *
39  * send a message to all VFs on a given PF
40  **/
41 static void i40e_vc_vf_broadcast(struct i40e_pf *pf,
42                                  enum i40e_virtchnl_ops v_opcode,
43                                  i40e_status v_retval, u8 *msg,
44                                  u16 msglen)
45 {
46         struct i40e_hw *hw = &pf->hw;
47         struct i40e_vf *vf = pf->vf;
48         int i;
49
50         for (i = 0; i < pf->num_alloc_vfs; i++, vf++) {
51                 int abs_vf_id = vf->vf_id + hw->func_caps.vf_base_id;
52                 /* Not all vfs are enabled so skip the ones that are not */
53                 if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states) &&
54                     !test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states))
55                         continue;
56
57                 /* Ignore return value on purpose - a given VF may fail, but
58                  * we need to keep going and send to all of them
59                  */
60                 i40e_aq_send_msg_to_vf(hw, abs_vf_id, v_opcode, v_retval,
61                                        msg, msglen, NULL);
62         }
63 }
64
65 /**
66  * i40e_vc_notify_link_state
67  * @vf: pointer to the VF structure
68  *
69  * send a link status message to a single VF
70  **/
71 static void i40e_vc_notify_vf_link_state(struct i40e_vf *vf)
72 {
73         struct i40e_virtchnl_pf_event pfe;
74         struct i40e_pf *pf = vf->pf;
75         struct i40e_hw *hw = &pf->hw;
76         struct i40e_link_status *ls = &pf->hw.phy.link_info;
77         int abs_vf_id = vf->vf_id + hw->func_caps.vf_base_id;
78
79         pfe.event = I40E_VIRTCHNL_EVENT_LINK_CHANGE;
80         pfe.severity = I40E_PF_EVENT_SEVERITY_INFO;
81         if (vf->link_forced) {
82                 pfe.event_data.link_event.link_status = vf->link_up;
83                 pfe.event_data.link_event.link_speed =
84                         (vf->link_up ? I40E_LINK_SPEED_40GB : 0);
85         } else {
86                 pfe.event_data.link_event.link_status =
87                         ls->link_info & I40E_AQ_LINK_UP;
88                 pfe.event_data.link_event.link_speed = ls->link_speed;
89         }
90         i40e_aq_send_msg_to_vf(hw, abs_vf_id, I40E_VIRTCHNL_OP_EVENT,
91                                0, (u8 *)&pfe, sizeof(pfe), NULL);
92 }
93
94 /**
95  * i40e_vc_notify_link_state
96  * @pf: pointer to the PF structure
97  *
98  * send a link status message to all VFs on a given PF
99  **/
100 void i40e_vc_notify_link_state(struct i40e_pf *pf)
101 {
102         int i;
103
104         for (i = 0; i < pf->num_alloc_vfs; i++)
105                 i40e_vc_notify_vf_link_state(&pf->vf[i]);
106 }
107
108 /**
109  * i40e_vc_notify_reset
110  * @pf: pointer to the PF structure
111  *
112  * indicate a pending reset to all VFs on a given PF
113  **/
114 void i40e_vc_notify_reset(struct i40e_pf *pf)
115 {
116         struct i40e_virtchnl_pf_event pfe;
117
118         pfe.event = I40E_VIRTCHNL_EVENT_RESET_IMPENDING;
119         pfe.severity = I40E_PF_EVENT_SEVERITY_CERTAIN_DOOM;
120         i40e_vc_vf_broadcast(pf, I40E_VIRTCHNL_OP_EVENT, 0,
121                              (u8 *)&pfe, sizeof(struct i40e_virtchnl_pf_event));
122 }
123
124 /**
125  * i40e_vc_notify_vf_reset
126  * @vf: pointer to the VF structure
127  *
128  * indicate a pending reset to the given VF
129  **/
130 void i40e_vc_notify_vf_reset(struct i40e_vf *vf)
131 {
132         struct i40e_virtchnl_pf_event pfe;
133         int abs_vf_id;
134
135         /* validate the request */
136         if (!vf || vf->vf_id >= vf->pf->num_alloc_vfs)
137                 return;
138
139         /* verify if the VF is in either init or active before proceeding */
140         if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states) &&
141             !test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states))
142                 return;
143
144         abs_vf_id = vf->vf_id + vf->pf->hw.func_caps.vf_base_id;
145
146         pfe.event = I40E_VIRTCHNL_EVENT_RESET_IMPENDING;
147         pfe.severity = I40E_PF_EVENT_SEVERITY_CERTAIN_DOOM;
148         i40e_aq_send_msg_to_vf(&vf->pf->hw, abs_vf_id, I40E_VIRTCHNL_OP_EVENT,
149                                0, (u8 *)&pfe,
150                                sizeof(struct i40e_virtchnl_pf_event), NULL);
151 }
152 /***********************misc routines*****************************/
153
154 /**
155  * i40e_vc_disable_vf
156  * @pf: pointer to the PF info
157  * @vf: pointer to the VF info
158  *
159  * Disable the VF through a SW reset
160  **/
161 static inline void i40e_vc_disable_vf(struct i40e_pf *pf, struct i40e_vf *vf)
162 {
163         i40e_vc_notify_vf_reset(vf);
164         i40e_reset_vf(vf, false);
165 }
166
167 /**
168  * i40e_vc_isvalid_vsi_id
169  * @vf: pointer to the VF info
170  * @vsi_id: VF relative VSI id
171  *
172  * check for the valid VSI id
173  **/
174 static inline bool i40e_vc_isvalid_vsi_id(struct i40e_vf *vf, u16 vsi_id)
175 {
176         struct i40e_pf *pf = vf->pf;
177         struct i40e_vsi *vsi = i40e_find_vsi_from_id(pf, vsi_id);
178
179         return (vsi && (vsi->vf_id == vf->vf_id));
180 }
181
182 /**
183  * i40e_vc_isvalid_queue_id
184  * @vf: pointer to the VF info
185  * @vsi_id: vsi id
186  * @qid: vsi relative queue id
187  *
188  * check for the valid queue id
189  **/
190 static inline bool i40e_vc_isvalid_queue_id(struct i40e_vf *vf, u16 vsi_id,
191                                             u16 qid)
192 {
193         struct i40e_pf *pf = vf->pf;
194         struct i40e_vsi *vsi = i40e_find_vsi_from_id(pf, vsi_id);
195
196         return (vsi && (qid < vsi->alloc_queue_pairs));
197 }
198
199 /**
200  * i40e_vc_isvalid_vector_id
201  * @vf: pointer to the VF info
202  * @vector_id: VF relative vector id
203  *
204  * check for the valid vector id
205  **/
206 static inline bool i40e_vc_isvalid_vector_id(struct i40e_vf *vf, u32 vector_id)
207 {
208         struct i40e_pf *pf = vf->pf;
209
210         return vector_id < pf->hw.func_caps.num_msix_vectors_vf;
211 }
212
213 /***********************vf resource mgmt routines*****************/
214
215 /**
216  * i40e_vc_get_pf_queue_id
217  * @vf: pointer to the VF info
218  * @vsi_id: id of VSI as provided by the FW
219  * @vsi_queue_id: vsi relative queue id
220  *
221  * return PF relative queue id
222  **/
223 static u16 i40e_vc_get_pf_queue_id(struct i40e_vf *vf, u16 vsi_id,
224                                    u8 vsi_queue_id)
225 {
226         struct i40e_pf *pf = vf->pf;
227         struct i40e_vsi *vsi = i40e_find_vsi_from_id(pf, vsi_id);
228         u16 pf_queue_id = I40E_QUEUE_END_OF_LIST;
229
230         if (!vsi)
231                 return pf_queue_id;
232
233         if (le16_to_cpu(vsi->info.mapping_flags) &
234             I40E_AQ_VSI_QUE_MAP_NONCONTIG)
235                 pf_queue_id =
236                         le16_to_cpu(vsi->info.queue_mapping[vsi_queue_id]);
237         else
238                 pf_queue_id = le16_to_cpu(vsi->info.queue_mapping[0]) +
239                               vsi_queue_id;
240
241         return pf_queue_id;
242 }
243
244 /**
245  * i40e_config_irq_link_list
246  * @vf: pointer to the VF info
247  * @vsi_id: id of VSI as given by the FW
248  * @vecmap: irq map info
249  *
250  * configure irq link list from the map
251  **/
252 static void i40e_config_irq_link_list(struct i40e_vf *vf, u16 vsi_id,
253                                       struct i40e_virtchnl_vector_map *vecmap)
254 {
255         unsigned long linklistmap = 0, tempmap;
256         struct i40e_pf *pf = vf->pf;
257         struct i40e_hw *hw = &pf->hw;
258         u16 vsi_queue_id, pf_queue_id;
259         enum i40e_queue_type qtype;
260         u16 next_q, vector_id;
261         u32 reg, reg_idx;
262         u16 itr_idx = 0;
263
264         vector_id = vecmap->vector_id;
265         /* setup the head */
266         if (0 == vector_id)
267                 reg_idx = I40E_VPINT_LNKLST0(vf->vf_id);
268         else
269                 reg_idx = I40E_VPINT_LNKLSTN(
270                      ((pf->hw.func_caps.num_msix_vectors_vf - 1) * vf->vf_id) +
271                      (vector_id - 1));
272
273         if (vecmap->rxq_map == 0 && vecmap->txq_map == 0) {
274                 /* Special case - No queues mapped on this vector */
275                 wr32(hw, reg_idx, I40E_VPINT_LNKLST0_FIRSTQ_INDX_MASK);
276                 goto irq_list_done;
277         }
278         tempmap = vecmap->rxq_map;
279         for_each_set_bit(vsi_queue_id, &tempmap, I40E_MAX_VSI_QP) {
280                 linklistmap |= (BIT(I40E_VIRTCHNL_SUPPORTED_QTYPES *
281                                     vsi_queue_id));
282         }
283
284         tempmap = vecmap->txq_map;
285         for_each_set_bit(vsi_queue_id, &tempmap, I40E_MAX_VSI_QP) {
286                 linklistmap |= (BIT(I40E_VIRTCHNL_SUPPORTED_QTYPES *
287                                      vsi_queue_id + 1));
288         }
289
290         next_q = find_first_bit(&linklistmap,
291                                 (I40E_MAX_VSI_QP *
292                                  I40E_VIRTCHNL_SUPPORTED_QTYPES));
293         vsi_queue_id = next_q/I40E_VIRTCHNL_SUPPORTED_QTYPES;
294         qtype = next_q%I40E_VIRTCHNL_SUPPORTED_QTYPES;
295         pf_queue_id = i40e_vc_get_pf_queue_id(vf, vsi_id, vsi_queue_id);
296         reg = ((qtype << I40E_VPINT_LNKLSTN_FIRSTQ_TYPE_SHIFT) | pf_queue_id);
297
298         wr32(hw, reg_idx, reg);
299
300         while (next_q < (I40E_MAX_VSI_QP * I40E_VIRTCHNL_SUPPORTED_QTYPES)) {
301                 switch (qtype) {
302                 case I40E_QUEUE_TYPE_RX:
303                         reg_idx = I40E_QINT_RQCTL(pf_queue_id);
304                         itr_idx = vecmap->rxitr_idx;
305                         break;
306                 case I40E_QUEUE_TYPE_TX:
307                         reg_idx = I40E_QINT_TQCTL(pf_queue_id);
308                         itr_idx = vecmap->txitr_idx;
309                         break;
310                 default:
311                         break;
312                 }
313
314                 next_q = find_next_bit(&linklistmap,
315                                        (I40E_MAX_VSI_QP *
316                                         I40E_VIRTCHNL_SUPPORTED_QTYPES),
317                                        next_q + 1);
318                 if (next_q <
319                     (I40E_MAX_VSI_QP * I40E_VIRTCHNL_SUPPORTED_QTYPES)) {
320                         vsi_queue_id = next_q / I40E_VIRTCHNL_SUPPORTED_QTYPES;
321                         qtype = next_q % I40E_VIRTCHNL_SUPPORTED_QTYPES;
322                         pf_queue_id = i40e_vc_get_pf_queue_id(vf, vsi_id,
323                                                               vsi_queue_id);
324                 } else {
325                         pf_queue_id = I40E_QUEUE_END_OF_LIST;
326                         qtype = 0;
327                 }
328
329                 /* format for the RQCTL & TQCTL regs is same */
330                 reg = (vector_id) |
331                     (qtype << I40E_QINT_RQCTL_NEXTQ_TYPE_SHIFT) |
332                     (pf_queue_id << I40E_QINT_RQCTL_NEXTQ_INDX_SHIFT) |
333                     BIT(I40E_QINT_RQCTL_CAUSE_ENA_SHIFT) |
334                     (itr_idx << I40E_QINT_RQCTL_ITR_INDX_SHIFT);
335                 wr32(hw, reg_idx, reg);
336         }
337
338         /* if the vf is running in polling mode and using interrupt zero,
339          * need to disable auto-mask on enabling zero interrupt for VFs.
340          */
341         if ((vf->driver_caps & I40E_VIRTCHNL_VF_OFFLOAD_RX_POLLING) &&
342             (vector_id == 0)) {
343                 reg = rd32(hw, I40E_GLINT_CTL);
344                 if (!(reg & I40E_GLINT_CTL_DIS_AUTOMASK_VF0_MASK)) {
345                         reg |= I40E_GLINT_CTL_DIS_AUTOMASK_VF0_MASK;
346                         wr32(hw, I40E_GLINT_CTL, reg);
347                 }
348         }
349
350 irq_list_done:
351         i40e_flush(hw);
352 }
353
354 /**
355  * i40e_config_vsi_tx_queue
356  * @vf: pointer to the VF info
357  * @vsi_id: id of VSI as provided by the FW
358  * @vsi_queue_id: vsi relative queue index
359  * @info: config. info
360  *
361  * configure tx queue
362  **/
363 static int i40e_config_vsi_tx_queue(struct i40e_vf *vf, u16 vsi_id,
364                                     u16 vsi_queue_id,
365                                     struct i40e_virtchnl_txq_info *info)
366 {
367         struct i40e_pf *pf = vf->pf;
368         struct i40e_hw *hw = &pf->hw;
369         struct i40e_hmc_obj_txq tx_ctx;
370         struct i40e_vsi *vsi;
371         u16 pf_queue_id;
372         u32 qtx_ctl;
373         int ret = 0;
374
375         pf_queue_id = i40e_vc_get_pf_queue_id(vf, vsi_id, vsi_queue_id);
376         vsi = i40e_find_vsi_from_id(pf, vsi_id);
377
378         /* clear the context structure first */
379         memset(&tx_ctx, 0, sizeof(struct i40e_hmc_obj_txq));
380
381         /* only set the required fields */
382         tx_ctx.base = info->dma_ring_addr / 128;
383         tx_ctx.qlen = info->ring_len;
384         tx_ctx.rdylist = le16_to_cpu(vsi->info.qs_handle[0]);
385         tx_ctx.rdylist_act = 0;
386         tx_ctx.head_wb_ena = info->headwb_enabled;
387         tx_ctx.head_wb_addr = info->dma_headwb_addr;
388
389         /* clear the context in the HMC */
390         ret = i40e_clear_lan_tx_queue_context(hw, pf_queue_id);
391         if (ret) {
392                 dev_err(&pf->pdev->dev,
393                         "Failed to clear VF LAN Tx queue context %d, error: %d\n",
394                         pf_queue_id, ret);
395                 ret = -ENOENT;
396                 goto error_context;
397         }
398
399         /* set the context in the HMC */
400         ret = i40e_set_lan_tx_queue_context(hw, pf_queue_id, &tx_ctx);
401         if (ret) {
402                 dev_err(&pf->pdev->dev,
403                         "Failed to set VF LAN Tx queue context %d error: %d\n",
404                         pf_queue_id, ret);
405                 ret = -ENOENT;
406                 goto error_context;
407         }
408
409         /* associate this queue with the PCI VF function */
410         qtx_ctl = I40E_QTX_CTL_VF_QUEUE;
411         qtx_ctl |= ((hw->pf_id << I40E_QTX_CTL_PF_INDX_SHIFT)
412                     & I40E_QTX_CTL_PF_INDX_MASK);
413         qtx_ctl |= (((vf->vf_id + hw->func_caps.vf_base_id)
414                      << I40E_QTX_CTL_VFVM_INDX_SHIFT)
415                     & I40E_QTX_CTL_VFVM_INDX_MASK);
416         wr32(hw, I40E_QTX_CTL(pf_queue_id), qtx_ctl);
417         i40e_flush(hw);
418
419 error_context:
420         return ret;
421 }
422
423 /**
424  * i40e_config_vsi_rx_queue
425  * @vf: pointer to the VF info
426  * @vsi_id: id of VSI  as provided by the FW
427  * @vsi_queue_id: vsi relative queue index
428  * @info: config. info
429  *
430  * configure rx queue
431  **/
432 static int i40e_config_vsi_rx_queue(struct i40e_vf *vf, u16 vsi_id,
433                                     u16 vsi_queue_id,
434                                     struct i40e_virtchnl_rxq_info *info)
435 {
436         struct i40e_pf *pf = vf->pf;
437         struct i40e_hw *hw = &pf->hw;
438         struct i40e_hmc_obj_rxq rx_ctx;
439         u16 pf_queue_id;
440         int ret = 0;
441
442         pf_queue_id = i40e_vc_get_pf_queue_id(vf, vsi_id, vsi_queue_id);
443
444         /* clear the context structure first */
445         memset(&rx_ctx, 0, sizeof(struct i40e_hmc_obj_rxq));
446
447         /* only set the required fields */
448         rx_ctx.base = info->dma_ring_addr / 128;
449         rx_ctx.qlen = info->ring_len;
450
451         if (info->splithdr_enabled) {
452                 rx_ctx.hsplit_0 = I40E_RX_SPLIT_L2      |
453                                   I40E_RX_SPLIT_IP      |
454                                   I40E_RX_SPLIT_TCP_UDP |
455                                   I40E_RX_SPLIT_SCTP;
456                 /* header length validation */
457                 if (info->hdr_size > ((2 * 1024) - 64)) {
458                         ret = -EINVAL;
459                         goto error_param;
460                 }
461                 rx_ctx.hbuff = info->hdr_size >> I40E_RXQ_CTX_HBUFF_SHIFT;
462
463                 /* set splitalways mode 10b */
464                 rx_ctx.dtype = 0x2;
465         }
466
467         /* databuffer length validation */
468         if (info->databuffer_size > ((16 * 1024) - 128)) {
469                 ret = -EINVAL;
470                 goto error_param;
471         }
472         rx_ctx.dbuff = info->databuffer_size >> I40E_RXQ_CTX_DBUFF_SHIFT;
473
474         /* max pkt. length validation */
475         if (info->max_pkt_size >= (16 * 1024) || info->max_pkt_size < 64) {
476                 ret = -EINVAL;
477                 goto error_param;
478         }
479         rx_ctx.rxmax = info->max_pkt_size;
480
481         /* enable 32bytes desc always */
482         rx_ctx.dsize = 1;
483
484         /* default values */
485         rx_ctx.lrxqthresh = 2;
486         rx_ctx.crcstrip = 1;
487         rx_ctx.prefena = 1;
488         rx_ctx.l2tsel = 1;
489
490         /* clear the context in the HMC */
491         ret = i40e_clear_lan_rx_queue_context(hw, pf_queue_id);
492         if (ret) {
493                 dev_err(&pf->pdev->dev,
494                         "Failed to clear VF LAN Rx queue context %d, error: %d\n",
495                         pf_queue_id, ret);
496                 ret = -ENOENT;
497                 goto error_param;
498         }
499
500         /* set the context in the HMC */
501         ret = i40e_set_lan_rx_queue_context(hw, pf_queue_id, &rx_ctx);
502         if (ret) {
503                 dev_err(&pf->pdev->dev,
504                         "Failed to set VF LAN Rx queue context %d error: %d\n",
505                         pf_queue_id, ret);
506                 ret = -ENOENT;
507                 goto error_param;
508         }
509
510 error_param:
511         return ret;
512 }
513
514 /**
515  * i40e_alloc_vsi_res
516  * @vf: pointer to the VF info
517  * @type: type of VSI to allocate
518  *
519  * alloc VF vsi context & resources
520  **/
521 static int i40e_alloc_vsi_res(struct i40e_vf *vf, enum i40e_vsi_type type)
522 {
523         struct i40e_mac_filter *f = NULL;
524         struct i40e_pf *pf = vf->pf;
525         struct i40e_vsi *vsi;
526         int ret = 0;
527
528         vsi = i40e_vsi_setup(pf, type, pf->vsi[pf->lan_vsi]->seid, vf->vf_id);
529
530         if (!vsi) {
531                 dev_err(&pf->pdev->dev,
532                         "add vsi failed for VF %d, aq_err %d\n",
533                         vf->vf_id, pf->hw.aq.asq_last_status);
534                 ret = -ENOENT;
535                 goto error_alloc_vsi_res;
536         }
537         if (type == I40E_VSI_SRIOV) {
538                 u8 brdcast[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
539
540                 vf->lan_vsi_idx = vsi->idx;
541                 vf->lan_vsi_id = vsi->id;
542                 /* If the port VLAN has been configured and then the
543                  * VF driver was removed then the VSI port VLAN
544                  * configuration was destroyed.  Check if there is
545                  * a port VLAN and restore the VSI configuration if
546                  * needed.
547                  */
548                 if (vf->port_vlan_id)
549                         i40e_vsi_add_pvid(vsi, vf->port_vlan_id);
550
551                 spin_lock_bh(&vsi->mac_filter_list_lock);
552                 if (is_valid_ether_addr(vf->default_lan_addr.addr)) {
553                         f = i40e_add_filter(vsi, vf->default_lan_addr.addr,
554                                        vf->port_vlan_id ? vf->port_vlan_id : -1,
555                                        true, false);
556                         if (!f)
557                                 dev_info(&pf->pdev->dev,
558                                          "Could not add MAC filter %pM for VF %d\n",
559                                         vf->default_lan_addr.addr, vf->vf_id);
560                 }
561                 f = i40e_add_filter(vsi, brdcast,
562                                     vf->port_vlan_id ? vf->port_vlan_id : -1,
563                                     true, false);
564                 if (!f)
565                         dev_info(&pf->pdev->dev,
566                                  "Could not allocate VF broadcast filter\n");
567                 spin_unlock_bh(&vsi->mac_filter_list_lock);
568         }
569
570         /* program mac filter */
571         ret = i40e_sync_vsi_filters(vsi, false);
572         if (ret)
573                 dev_err(&pf->pdev->dev, "Unable to program ucast filters\n");
574
575         /* Set VF bandwidth if specified */
576         if (vf->tx_rate) {
577                 ret = i40e_aq_config_vsi_bw_limit(&pf->hw, vsi->seid,
578                                                   vf->tx_rate / 50, 0, NULL);
579                 if (ret)
580                         dev_err(&pf->pdev->dev, "Unable to set tx rate, VF %d, error code %d.\n",
581                                 vf->vf_id, ret);
582         }
583
584 error_alloc_vsi_res:
585         return ret;
586 }
587
588 /**
589  * i40e_enable_vf_mappings
590  * @vf: pointer to the VF info
591  *
592  * enable VF mappings
593  **/
594 static void i40e_enable_vf_mappings(struct i40e_vf *vf)
595 {
596         struct i40e_pf *pf = vf->pf;
597         struct i40e_hw *hw = &pf->hw;
598         u32 reg, total_queue_pairs = 0;
599         int j;
600
601         /* Tell the hardware we're using noncontiguous mapping. HW requires
602          * that VF queues be mapped using this method, even when they are
603          * contiguous in real life
604          */
605         wr32(hw, I40E_VSILAN_QBASE(vf->lan_vsi_id),
606              I40E_VSILAN_QBASE_VSIQTABLE_ENA_MASK);
607
608         /* enable VF vplan_qtable mappings */
609         reg = I40E_VPLAN_MAPENA_TXRX_ENA_MASK;
610         wr32(hw, I40E_VPLAN_MAPENA(vf->vf_id), reg);
611
612         /* map PF queues to VF queues */
613         for (j = 0; j < pf->vsi[vf->lan_vsi_idx]->alloc_queue_pairs; j++) {
614                 u16 qid = i40e_vc_get_pf_queue_id(vf, vf->lan_vsi_id, j);
615
616                 reg = (qid & I40E_VPLAN_QTABLE_QINDEX_MASK);
617                 wr32(hw, I40E_VPLAN_QTABLE(total_queue_pairs, vf->vf_id), reg);
618                 total_queue_pairs++;
619         }
620
621         /* map PF queues to VSI */
622         for (j = 0; j < 7; j++) {
623                 if (j * 2 >= pf->vsi[vf->lan_vsi_idx]->alloc_queue_pairs) {
624                         reg = 0x07FF07FF;       /* unused */
625                 } else {
626                         u16 qid = i40e_vc_get_pf_queue_id(vf, vf->lan_vsi_id,
627                                                           j * 2);
628                         reg = qid;
629                         qid = i40e_vc_get_pf_queue_id(vf, vf->lan_vsi_id,
630                                                       (j * 2) + 1);
631                         reg |= qid << 16;
632                 }
633                 wr32(hw, I40E_VSILAN_QTABLE(j, vf->lan_vsi_id), reg);
634         }
635
636         i40e_flush(hw);
637 }
638
639 /**
640  * i40e_disable_vf_mappings
641  * @vf: pointer to the VF info
642  *
643  * disable VF mappings
644  **/
645 static void i40e_disable_vf_mappings(struct i40e_vf *vf)
646 {
647         struct i40e_pf *pf = vf->pf;
648         struct i40e_hw *hw = &pf->hw;
649         int i;
650
651         /* disable qp mappings */
652         wr32(hw, I40E_VPLAN_MAPENA(vf->vf_id), 0);
653         for (i = 0; i < I40E_MAX_VSI_QP; i++)
654                 wr32(hw, I40E_VPLAN_QTABLE(i, vf->vf_id),
655                      I40E_QUEUE_END_OF_LIST);
656         i40e_flush(hw);
657 }
658
659 /**
660  * i40e_free_vf_res
661  * @vf: pointer to the VF info
662  *
663  * free VF resources
664  **/
665 static void i40e_free_vf_res(struct i40e_vf *vf)
666 {
667         struct i40e_pf *pf = vf->pf;
668         struct i40e_hw *hw = &pf->hw;
669         u32 reg_idx, reg;
670         int i, msix_vf;
671
672         /* free vsi & disconnect it from the parent uplink */
673         if (vf->lan_vsi_idx) {
674                 i40e_vsi_release(pf->vsi[vf->lan_vsi_idx]);
675                 vf->lan_vsi_idx = 0;
676                 vf->lan_vsi_id = 0;
677         }
678         msix_vf = pf->hw.func_caps.num_msix_vectors_vf;
679
680         /* disable interrupts so the VF starts in a known state */
681         for (i = 0; i < msix_vf; i++) {
682                 /* format is same for both registers */
683                 if (0 == i)
684                         reg_idx = I40E_VFINT_DYN_CTL0(vf->vf_id);
685                 else
686                         reg_idx = I40E_VFINT_DYN_CTLN(((msix_vf - 1) *
687                                                       (vf->vf_id))
688                                                      + (i - 1));
689                 wr32(hw, reg_idx, I40E_VFINT_DYN_CTLN_CLEARPBA_MASK);
690                 i40e_flush(hw);
691         }
692
693         /* clear the irq settings */
694         for (i = 0; i < msix_vf; i++) {
695                 /* format is same for both registers */
696                 if (0 == i)
697                         reg_idx = I40E_VPINT_LNKLST0(vf->vf_id);
698                 else
699                         reg_idx = I40E_VPINT_LNKLSTN(((msix_vf - 1) *
700                                                       (vf->vf_id))
701                                                      + (i - 1));
702                 reg = (I40E_VPINT_LNKLSTN_FIRSTQ_TYPE_MASK |
703                        I40E_VPINT_LNKLSTN_FIRSTQ_INDX_MASK);
704                 wr32(hw, reg_idx, reg);
705                 i40e_flush(hw);
706         }
707         /* reset some of the state varibles keeping
708          * track of the resources
709          */
710         vf->num_queue_pairs = 0;
711         vf->vf_states = 0;
712         clear_bit(I40E_VF_STAT_INIT, &vf->vf_states);
713 }
714
715 /**
716  * i40e_alloc_vf_res
717  * @vf: pointer to the VF info
718  *
719  * allocate VF resources
720  **/
721 static int i40e_alloc_vf_res(struct i40e_vf *vf)
722 {
723         struct i40e_pf *pf = vf->pf;
724         int total_queue_pairs = 0;
725         int ret;
726
727         /* allocate hw vsi context & associated resources */
728         ret = i40e_alloc_vsi_res(vf, I40E_VSI_SRIOV);
729         if (ret)
730                 goto error_alloc;
731         total_queue_pairs += pf->vsi[vf->lan_vsi_idx]->alloc_queue_pairs;
732         set_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps);
733
734         /* store the total qps number for the runtime
735          * VF req validation
736          */
737         vf->num_queue_pairs = total_queue_pairs;
738
739         /* VF is now completely initialized */
740         set_bit(I40E_VF_STAT_INIT, &vf->vf_states);
741
742 error_alloc:
743         if (ret)
744                 i40e_free_vf_res(vf);
745
746         return ret;
747 }
748
749 #define VF_DEVICE_STATUS 0xAA
750 #define VF_TRANS_PENDING_MASK 0x20
751 /**
752  * i40e_quiesce_vf_pci
753  * @vf: pointer to the VF structure
754  *
755  * Wait for VF PCI transactions to be cleared after reset. Returns -EIO
756  * if the transactions never clear.
757  **/
758 static int i40e_quiesce_vf_pci(struct i40e_vf *vf)
759 {
760         struct i40e_pf *pf = vf->pf;
761         struct i40e_hw *hw = &pf->hw;
762         int vf_abs_id, i;
763         u32 reg;
764
765         vf_abs_id = vf->vf_id + hw->func_caps.vf_base_id;
766
767         wr32(hw, I40E_PF_PCI_CIAA,
768              VF_DEVICE_STATUS | (vf_abs_id << I40E_PF_PCI_CIAA_VF_NUM_SHIFT));
769         for (i = 0; i < 100; i++) {
770                 reg = rd32(hw, I40E_PF_PCI_CIAD);
771                 if ((reg & VF_TRANS_PENDING_MASK) == 0)
772                         return 0;
773                 udelay(1);
774         }
775         return -EIO;
776 }
777
778 /**
779  * i40e_reset_vf
780  * @vf: pointer to the VF structure
781  * @flr: VFLR was issued or not
782  *
783  * reset the VF
784  **/
785 void i40e_reset_vf(struct i40e_vf *vf, bool flr)
786 {
787         struct i40e_pf *pf = vf->pf;
788         struct i40e_hw *hw = &pf->hw;
789         bool rsd = false;
790         int i;
791         u32 reg;
792
793         if (test_and_set_bit(__I40E_VF_DISABLE, &pf->state))
794                 return;
795
796         /* warn the VF */
797         clear_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states);
798
799         /* In the case of a VFLR, the HW has already reset the VF and we
800          * just need to clean up, so don't hit the VFRTRIG register.
801          */
802         if (!flr) {
803                 /* reset VF using VPGEN_VFRTRIG reg */
804                 reg = rd32(hw, I40E_VPGEN_VFRTRIG(vf->vf_id));
805                 reg |= I40E_VPGEN_VFRTRIG_VFSWR_MASK;
806                 wr32(hw, I40E_VPGEN_VFRTRIG(vf->vf_id), reg);
807                 i40e_flush(hw);
808         }
809
810         if (i40e_quiesce_vf_pci(vf))
811                 dev_err(&pf->pdev->dev, "VF %d PCI transactions stuck\n",
812                         vf->vf_id);
813
814         /* poll VPGEN_VFRSTAT reg to make sure
815          * that reset is complete
816          */
817         for (i = 0; i < 10; i++) {
818                 /* VF reset requires driver to first reset the VF and then
819                  * poll the status register to make sure that the reset
820                  * completed successfully. Due to internal HW FIFO flushes,
821                  * we must wait 10ms before the register will be valid.
822                  */
823                 usleep_range(10000, 20000);
824                 reg = rd32(hw, I40E_VPGEN_VFRSTAT(vf->vf_id));
825                 if (reg & I40E_VPGEN_VFRSTAT_VFRD_MASK) {
826                         rsd = true;
827                         break;
828                 }
829         }
830
831         if (flr)
832                 usleep_range(10000, 20000);
833
834         if (!rsd)
835                 dev_err(&pf->pdev->dev, "VF reset check timeout on VF %d\n",
836                         vf->vf_id);
837         wr32(hw, I40E_VFGEN_RSTAT1(vf->vf_id), I40E_VFR_COMPLETED);
838         /* clear the reset bit in the VPGEN_VFRTRIG reg */
839         reg = rd32(hw, I40E_VPGEN_VFRTRIG(vf->vf_id));
840         reg &= ~I40E_VPGEN_VFRTRIG_VFSWR_MASK;
841         wr32(hw, I40E_VPGEN_VFRTRIG(vf->vf_id), reg);
842
843         /* On initial reset, we won't have any queues */
844         if (vf->lan_vsi_idx == 0)
845                 goto complete_reset;
846
847         i40e_vsi_control_rings(pf->vsi[vf->lan_vsi_idx], false);
848 complete_reset:
849         /* reallocate VF resources to reset the VSI state */
850         i40e_free_vf_res(vf);
851         if (!i40e_alloc_vf_res(vf)) {
852                 i40e_enable_vf_mappings(vf);
853                 set_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states);
854                 clear_bit(I40E_VF_STAT_DISABLED, &vf->vf_states);
855         }
856         /* tell the VF the reset is done */
857         wr32(hw, I40E_VFGEN_RSTAT1(vf->vf_id), I40E_VFR_VFACTIVE);
858         i40e_flush(hw);
859         clear_bit(__I40E_VF_DISABLE, &pf->state);
860 }
861
862 /**
863  * i40e_free_vfs
864  * @pf: pointer to the PF structure
865  *
866  * free VF resources
867  **/
868 void i40e_free_vfs(struct i40e_pf *pf)
869 {
870         struct i40e_hw *hw = &pf->hw;
871         u32 reg_idx, bit_idx;
872         int i, tmp, vf_id;
873
874         if (!pf->vf)
875                 return;
876         while (test_and_set_bit(__I40E_VF_DISABLE, &pf->state))
877                 usleep_range(1000, 2000);
878
879         for (i = 0; i < pf->num_alloc_vfs; i++)
880                 if (test_bit(I40E_VF_STAT_INIT, &pf->vf[i].vf_states))
881                         i40e_vsi_control_rings(pf->vsi[pf->vf[i].lan_vsi_idx],
882                                                false);
883
884         for (i = 0; i < pf->num_alloc_vfs; i++)
885                 if (test_bit(I40E_VF_STAT_INIT, &pf->vf[i].vf_states))
886                         i40e_vsi_control_rings(pf->vsi[pf->vf[i].lan_vsi_idx],
887                                                false);
888
889         /* Disable IOV before freeing resources. This lets any VF drivers
890          * running in the host get themselves cleaned up before we yank
891          * the carpet out from underneath their feet.
892          */
893         if (!pci_vfs_assigned(pf->pdev))
894                 pci_disable_sriov(pf->pdev);
895         else
896                 dev_warn(&pf->pdev->dev, "VFs are assigned - not disabling SR-IOV\n");
897
898         msleep(20); /* let any messages in transit get finished up */
899
900         /* free up VF resources */
901         tmp = pf->num_alloc_vfs;
902         pf->num_alloc_vfs = 0;
903         for (i = 0; i < tmp; i++) {
904                 if (test_bit(I40E_VF_STAT_INIT, &pf->vf[i].vf_states))
905                         i40e_free_vf_res(&pf->vf[i]);
906                 /* disable qp mappings */
907                 i40e_disable_vf_mappings(&pf->vf[i]);
908         }
909
910         kfree(pf->vf);
911         pf->vf = NULL;
912
913         /* This check is for when the driver is unloaded while VFs are
914          * assigned. Setting the number of VFs to 0 through sysfs is caught
915          * before this function ever gets called.
916          */
917         if (!pci_vfs_assigned(pf->pdev)) {
918                 /* Acknowledge VFLR for all VFS. Without this, VFs will fail to
919                  * work correctly when SR-IOV gets re-enabled.
920                  */
921                 for (vf_id = 0; vf_id < tmp; vf_id++) {
922                         reg_idx = (hw->func_caps.vf_base_id + vf_id) / 32;
923                         bit_idx = (hw->func_caps.vf_base_id + vf_id) % 32;
924                         wr32(hw, I40E_GLGEN_VFLRSTAT(reg_idx), BIT(bit_idx));
925                 }
926         }
927         clear_bit(__I40E_VF_DISABLE, &pf->state);
928 }
929
930 #ifdef CONFIG_PCI_IOV
931 /**
932  * i40e_alloc_vfs
933  * @pf: pointer to the PF structure
934  * @num_alloc_vfs: number of VFs to allocate
935  *
936  * allocate VF resources
937  **/
938 int i40e_alloc_vfs(struct i40e_pf *pf, u16 num_alloc_vfs)
939 {
940         struct i40e_vf *vfs;
941         int i, ret = 0;
942
943         /* Disable interrupt 0 so we don't try to handle the VFLR. */
944         i40e_irq_dynamic_disable_icr0(pf);
945
946         /* Check to see if we're just allocating resources for extant VFs */
947         if (pci_num_vf(pf->pdev) != num_alloc_vfs) {
948                 ret = pci_enable_sriov(pf->pdev, num_alloc_vfs);
949                 if (ret) {
950                         pf->flags &= ~I40E_FLAG_VEB_MODE_ENABLED;
951                         pf->num_alloc_vfs = 0;
952                         goto err_iov;
953                 }
954         }
955         /* allocate memory */
956         vfs = kcalloc(num_alloc_vfs, sizeof(struct i40e_vf), GFP_KERNEL);
957         if (!vfs) {
958                 ret = -ENOMEM;
959                 goto err_alloc;
960         }
961         pf->vf = vfs;
962
963         /* apply default profile */
964         for (i = 0; i < num_alloc_vfs; i++) {
965                 vfs[i].pf = pf;
966                 vfs[i].parent_type = I40E_SWITCH_ELEMENT_TYPE_VEB;
967                 vfs[i].vf_id = i;
968
969                 /* assign default capabilities */
970                 set_bit(I40E_VIRTCHNL_VF_CAP_L2, &vfs[i].vf_caps);
971                 vfs[i].spoofchk = true;
972                 /* VF resources get allocated during reset */
973                 i40e_reset_vf(&vfs[i], false);
974
975         }
976         pf->num_alloc_vfs = num_alloc_vfs;
977
978 err_alloc:
979         if (ret)
980                 i40e_free_vfs(pf);
981 err_iov:
982         /* Re-enable interrupt 0. */
983         i40e_irq_dynamic_enable_icr0(pf);
984         return ret;
985 }
986
987 #endif
988 /**
989  * i40e_pci_sriov_enable
990  * @pdev: pointer to a pci_dev structure
991  * @num_vfs: number of VFs to allocate
992  *
993  * Enable or change the number of VFs
994  **/
995 static int i40e_pci_sriov_enable(struct pci_dev *pdev, int num_vfs)
996 {
997 #ifdef CONFIG_PCI_IOV
998         struct i40e_pf *pf = pci_get_drvdata(pdev);
999         int pre_existing_vfs = pci_num_vf(pdev);
1000         int err = 0;
1001
1002         if (test_bit(__I40E_TESTING, &pf->state)) {
1003                 dev_warn(&pdev->dev,
1004                          "Cannot enable SR-IOV virtual functions while the device is undergoing diagnostic testing\n");
1005                 err = -EPERM;
1006                 goto err_out;
1007         }
1008
1009         if (pre_existing_vfs && pre_existing_vfs != num_vfs)
1010                 i40e_free_vfs(pf);
1011         else if (pre_existing_vfs && pre_existing_vfs == num_vfs)
1012                 goto out;
1013
1014         if (num_vfs > pf->num_req_vfs) {
1015                 dev_warn(&pdev->dev, "Unable to enable %d VFs. Limited to %d VFs due to device resource constraints.\n",
1016                          num_vfs, pf->num_req_vfs);
1017                 err = -EPERM;
1018                 goto err_out;
1019         }
1020
1021         dev_info(&pdev->dev, "Allocating %d VFs.\n", num_vfs);
1022         err = i40e_alloc_vfs(pf, num_vfs);
1023         if (err) {
1024                 dev_warn(&pdev->dev, "Failed to enable SR-IOV: %d\n", err);
1025                 goto err_out;
1026         }
1027
1028 out:
1029         return num_vfs;
1030
1031 err_out:
1032         return err;
1033 #endif
1034         return 0;
1035 }
1036
1037 /**
1038  * i40e_pci_sriov_configure
1039  * @pdev: pointer to a pci_dev structure
1040  * @num_vfs: number of VFs to allocate
1041  *
1042  * Enable or change the number of VFs. Called when the user updates the number
1043  * of VFs in sysfs.
1044  **/
1045 int i40e_pci_sriov_configure(struct pci_dev *pdev, int num_vfs)
1046 {
1047         struct i40e_pf *pf = pci_get_drvdata(pdev);
1048
1049         if (num_vfs) {
1050                 if (!(pf->flags & I40E_FLAG_VEB_MODE_ENABLED)) {
1051                         pf->flags |= I40E_FLAG_VEB_MODE_ENABLED;
1052                         i40e_do_reset_safe(pf,
1053                                            BIT_ULL(__I40E_PF_RESET_REQUESTED));
1054                 }
1055                 return i40e_pci_sriov_enable(pdev, num_vfs);
1056         }
1057
1058         if (!pci_vfs_assigned(pf->pdev)) {
1059                 i40e_free_vfs(pf);
1060                 pf->flags &= ~I40E_FLAG_VEB_MODE_ENABLED;
1061                 i40e_do_reset_safe(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED));
1062         } else {
1063                 dev_warn(&pdev->dev, "Unable to free VFs because some are assigned to VMs.\n");
1064                 return -EINVAL;
1065         }
1066         return 0;
1067 }
1068
1069 /***********************virtual channel routines******************/
1070
1071 /**
1072  * i40e_vc_send_msg_to_vf
1073  * @vf: pointer to the VF info
1074  * @v_opcode: virtual channel opcode
1075  * @v_retval: virtual channel return value
1076  * @msg: pointer to the msg buffer
1077  * @msglen: msg length
1078  *
1079  * send msg to VF
1080  **/
1081 static int i40e_vc_send_msg_to_vf(struct i40e_vf *vf, u32 v_opcode,
1082                                   u32 v_retval, u8 *msg, u16 msglen)
1083 {
1084         struct i40e_pf *pf;
1085         struct i40e_hw *hw;
1086         int abs_vf_id;
1087         i40e_status aq_ret;
1088
1089         /* validate the request */
1090         if (!vf || vf->vf_id >= vf->pf->num_alloc_vfs)
1091                 return -EINVAL;
1092
1093         pf = vf->pf;
1094         hw = &pf->hw;
1095         abs_vf_id = vf->vf_id + hw->func_caps.vf_base_id;
1096
1097         /* single place to detect unsuccessful return values */
1098         if (v_retval) {
1099                 vf->num_invalid_msgs++;
1100                 dev_err(&pf->pdev->dev, "Failed opcode %d Error: %d\n",
1101                         v_opcode, v_retval);
1102                 if (vf->num_invalid_msgs >
1103                     I40E_DEFAULT_NUM_INVALID_MSGS_ALLOWED) {
1104                         dev_err(&pf->pdev->dev,
1105                                 "Number of invalid messages exceeded for VF %d\n",
1106                                 vf->vf_id);
1107                         dev_err(&pf->pdev->dev, "Use PF Control I/F to enable the VF\n");
1108                         set_bit(I40E_VF_STAT_DISABLED, &vf->vf_states);
1109                 }
1110         } else {
1111                 vf->num_valid_msgs++;
1112                 /* reset the invalid counter, if a valid message is received. */
1113                 vf->num_invalid_msgs = 0;
1114         }
1115
1116         aq_ret = i40e_aq_send_msg_to_vf(hw, abs_vf_id,  v_opcode, v_retval,
1117                                         msg, msglen, NULL);
1118         if (aq_ret) {
1119                 dev_err(&pf->pdev->dev,
1120                         "Unable to send the message to VF %d aq_err %d\n",
1121                         vf->vf_id, pf->hw.aq.asq_last_status);
1122                 return -EIO;
1123         }
1124
1125         return 0;
1126 }
1127
1128 /**
1129  * i40e_vc_send_resp_to_vf
1130  * @vf: pointer to the VF info
1131  * @opcode: operation code
1132  * @retval: return value
1133  *
1134  * send resp msg to VF
1135  **/
1136 static int i40e_vc_send_resp_to_vf(struct i40e_vf *vf,
1137                                    enum i40e_virtchnl_ops opcode,
1138                                    i40e_status retval)
1139 {
1140         return i40e_vc_send_msg_to_vf(vf, opcode, retval, NULL, 0);
1141 }
1142
1143 /**
1144  * i40e_vc_get_version_msg
1145  * @vf: pointer to the VF info
1146  *
1147  * called from the VF to request the API version used by the PF
1148  **/
1149 static int i40e_vc_get_version_msg(struct i40e_vf *vf, u8 *msg)
1150 {
1151         struct i40e_virtchnl_version_info info = {
1152                 I40E_VIRTCHNL_VERSION_MAJOR, I40E_VIRTCHNL_VERSION_MINOR
1153         };
1154
1155         vf->vf_ver = *(struct i40e_virtchnl_version_info *)msg;
1156         /* VFs running the 1.0 API expect to get 1.0 back or they will cry. */
1157         if (VF_IS_V10(vf))
1158                 info.minor = I40E_VIRTCHNL_VERSION_MINOR_NO_VF_CAPS;
1159         return i40e_vc_send_msg_to_vf(vf, I40E_VIRTCHNL_OP_VERSION,
1160                                       I40E_SUCCESS, (u8 *)&info,
1161                                       sizeof(struct
1162                                              i40e_virtchnl_version_info));
1163 }
1164
1165 /**
1166  * i40e_vc_get_vf_resources_msg
1167  * @vf: pointer to the VF info
1168  * @msg: pointer to the msg buffer
1169  * @msglen: msg length
1170  *
1171  * called from the VF to request its resources
1172  **/
1173 static int i40e_vc_get_vf_resources_msg(struct i40e_vf *vf, u8 *msg)
1174 {
1175         struct i40e_virtchnl_vf_resource *vfres = NULL;
1176         struct i40e_pf *pf = vf->pf;
1177         i40e_status aq_ret = 0;
1178         struct i40e_vsi *vsi;
1179         int i = 0, len = 0;
1180         int num_vsis = 1;
1181         int ret;
1182
1183         if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
1184                 aq_ret = I40E_ERR_PARAM;
1185                 goto err;
1186         }
1187
1188         len = (sizeof(struct i40e_virtchnl_vf_resource) +
1189                sizeof(struct i40e_virtchnl_vsi_resource) * num_vsis);
1190
1191         vfres = kzalloc(len, GFP_KERNEL);
1192         if (!vfres) {
1193                 aq_ret = I40E_ERR_NO_MEMORY;
1194                 len = 0;
1195                 goto err;
1196         }
1197         if (VF_IS_V11(vf))
1198                 vf->driver_caps = *(u32 *)msg;
1199         else
1200                 vf->driver_caps = I40E_VIRTCHNL_VF_OFFLOAD_L2 |
1201                                   I40E_VIRTCHNL_VF_OFFLOAD_RSS_REG |
1202                                   I40E_VIRTCHNL_VF_OFFLOAD_VLAN;
1203
1204         vfres->vf_offload_flags = I40E_VIRTCHNL_VF_OFFLOAD_L2;
1205         vsi = pf->vsi[vf->lan_vsi_idx];
1206         if (!vsi->info.pvid)
1207                 vfres->vf_offload_flags |= I40E_VIRTCHNL_VF_OFFLOAD_VLAN;
1208         if (pf->flags & I40E_FLAG_RSS_AQ_CAPABLE) {
1209                 if (vf->driver_caps & I40E_VIRTCHNL_VF_OFFLOAD_RSS_AQ)
1210                         vfres->vf_offload_flags |=
1211                                 I40E_VIRTCHNL_VF_OFFLOAD_RSS_AQ;
1212         } else {
1213                 vfres->vf_offload_flags |= I40E_VIRTCHNL_VF_OFFLOAD_RSS_REG;
1214         }
1215
1216         if (vf->driver_caps & I40E_VIRTCHNL_VF_OFFLOAD_RX_POLLING)
1217                 vfres->vf_offload_flags |= I40E_VIRTCHNL_VF_OFFLOAD_RX_POLLING;
1218
1219         vfres->num_vsis = num_vsis;
1220         vfres->num_queue_pairs = vf->num_queue_pairs;
1221         vfres->max_vectors = pf->hw.func_caps.num_msix_vectors_vf;
1222         if (vf->lan_vsi_idx) {
1223                 vfres->vsi_res[i].vsi_id = vf->lan_vsi_id;
1224                 vfres->vsi_res[i].vsi_type = I40E_VSI_SRIOV;
1225                 vfres->vsi_res[i].num_queue_pairs = vsi->alloc_queue_pairs;
1226                 /* VFs only use TC 0 */
1227                 vfres->vsi_res[i].qset_handle
1228                                           = le16_to_cpu(vsi->info.qs_handle[0]);
1229                 ether_addr_copy(vfres->vsi_res[i].default_mac_addr,
1230                                 vf->default_lan_addr.addr);
1231                 i++;
1232         }
1233         set_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states);
1234
1235 err:
1236         /* send the response back to the VF */
1237         ret = i40e_vc_send_msg_to_vf(vf, I40E_VIRTCHNL_OP_GET_VF_RESOURCES,
1238                                      aq_ret, (u8 *)vfres, len);
1239
1240         kfree(vfres);
1241         return ret;
1242 }
1243
1244 /**
1245  * i40e_vc_reset_vf_msg
1246  * @vf: pointer to the VF info
1247  * @msg: pointer to the msg buffer
1248  * @msglen: msg length
1249  *
1250  * called from the VF to reset itself,
1251  * unlike other virtchnl messages, PF driver
1252  * doesn't send the response back to the VF
1253  **/
1254 static void i40e_vc_reset_vf_msg(struct i40e_vf *vf)
1255 {
1256         if (test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states))
1257                 i40e_reset_vf(vf, false);
1258 }
1259
1260 /**
1261  * i40e_vc_config_promiscuous_mode_msg
1262  * @vf: pointer to the VF info
1263  * @msg: pointer to the msg buffer
1264  * @msglen: msg length
1265  *
1266  * called from the VF to configure the promiscuous mode of
1267  * VF vsis
1268  **/
1269 static int i40e_vc_config_promiscuous_mode_msg(struct i40e_vf *vf,
1270                                                u8 *msg, u16 msglen)
1271 {
1272         struct i40e_virtchnl_promisc_info *info =
1273             (struct i40e_virtchnl_promisc_info *)msg;
1274         struct i40e_pf *pf = vf->pf;
1275         struct i40e_hw *hw = &pf->hw;
1276         struct i40e_vsi *vsi;
1277         bool allmulti = false;
1278         i40e_status aq_ret;
1279
1280         vsi = i40e_find_vsi_from_id(pf, info->vsi_id);
1281         if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
1282             !test_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps) ||
1283             !i40e_vc_isvalid_vsi_id(vf, info->vsi_id) ||
1284             (vsi->type != I40E_VSI_FCOE)) {
1285                 aq_ret = I40E_ERR_PARAM;
1286                 goto error_param;
1287         }
1288         if (info->flags & I40E_FLAG_VF_MULTICAST_PROMISC)
1289                 allmulti = true;
1290         aq_ret = i40e_aq_set_vsi_multicast_promiscuous(hw, vsi->seid,
1291                                                        allmulti, NULL);
1292
1293 error_param:
1294         /* send the response to the VF */
1295         return i40e_vc_send_resp_to_vf(vf,
1296                                        I40E_VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE,
1297                                        aq_ret);
1298 }
1299
1300 /**
1301  * i40e_vc_config_queues_msg
1302  * @vf: pointer to the VF info
1303  * @msg: pointer to the msg buffer
1304  * @msglen: msg length
1305  *
1306  * called from the VF to configure the rx/tx
1307  * queues
1308  **/
1309 static int i40e_vc_config_queues_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1310 {
1311         struct i40e_virtchnl_vsi_queue_config_info *qci =
1312             (struct i40e_virtchnl_vsi_queue_config_info *)msg;
1313         struct i40e_virtchnl_queue_pair_info *qpi;
1314         struct i40e_pf *pf = vf->pf;
1315         u16 vsi_id, vsi_queue_id;
1316         i40e_status aq_ret = 0;
1317         int i;
1318
1319         if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
1320                 aq_ret = I40E_ERR_PARAM;
1321                 goto error_param;
1322         }
1323
1324         vsi_id = qci->vsi_id;
1325         if (!i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
1326                 aq_ret = I40E_ERR_PARAM;
1327                 goto error_param;
1328         }
1329         for (i = 0; i < qci->num_queue_pairs; i++) {
1330                 qpi = &qci->qpair[i];
1331                 vsi_queue_id = qpi->txq.queue_id;
1332                 if ((qpi->txq.vsi_id != vsi_id) ||
1333                     (qpi->rxq.vsi_id != vsi_id) ||
1334                     (qpi->rxq.queue_id != vsi_queue_id) ||
1335                     !i40e_vc_isvalid_queue_id(vf, vsi_id, vsi_queue_id)) {
1336                         aq_ret = I40E_ERR_PARAM;
1337                         goto error_param;
1338                 }
1339
1340                 if (i40e_config_vsi_rx_queue(vf, vsi_id, vsi_queue_id,
1341                                              &qpi->rxq) ||
1342                     i40e_config_vsi_tx_queue(vf, vsi_id, vsi_queue_id,
1343                                              &qpi->txq)) {
1344                         aq_ret = I40E_ERR_PARAM;
1345                         goto error_param;
1346                 }
1347         }
1348         /* set vsi num_queue_pairs in use to num configured by VF */
1349         pf->vsi[vf->lan_vsi_idx]->num_queue_pairs = qci->num_queue_pairs;
1350
1351 error_param:
1352         /* send the response to the VF */
1353         return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_CONFIG_VSI_QUEUES,
1354                                        aq_ret);
1355 }
1356
1357 /**
1358  * i40e_vc_config_irq_map_msg
1359  * @vf: pointer to the VF info
1360  * @msg: pointer to the msg buffer
1361  * @msglen: msg length
1362  *
1363  * called from the VF to configure the irq to
1364  * queue map
1365  **/
1366 static int i40e_vc_config_irq_map_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1367 {
1368         struct i40e_virtchnl_irq_map_info *irqmap_info =
1369             (struct i40e_virtchnl_irq_map_info *)msg;
1370         struct i40e_virtchnl_vector_map *map;
1371         u16 vsi_id, vsi_queue_id, vector_id;
1372         i40e_status aq_ret = 0;
1373         unsigned long tempmap;
1374         int i;
1375
1376         if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
1377                 aq_ret = I40E_ERR_PARAM;
1378                 goto error_param;
1379         }
1380
1381         for (i = 0; i < irqmap_info->num_vectors; i++) {
1382                 map = &irqmap_info->vecmap[i];
1383
1384                 vector_id = map->vector_id;
1385                 vsi_id = map->vsi_id;
1386                 /* validate msg params */
1387                 if (!i40e_vc_isvalid_vector_id(vf, vector_id) ||
1388                     !i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
1389                         aq_ret = I40E_ERR_PARAM;
1390                         goto error_param;
1391                 }
1392
1393                 /* lookout for the invalid queue index */
1394                 tempmap = map->rxq_map;
1395                 for_each_set_bit(vsi_queue_id, &tempmap, I40E_MAX_VSI_QP) {
1396                         if (!i40e_vc_isvalid_queue_id(vf, vsi_id,
1397                                                       vsi_queue_id)) {
1398                                 aq_ret = I40E_ERR_PARAM;
1399                                 goto error_param;
1400                         }
1401                 }
1402
1403                 tempmap = map->txq_map;
1404                 for_each_set_bit(vsi_queue_id, &tempmap, I40E_MAX_VSI_QP) {
1405                         if (!i40e_vc_isvalid_queue_id(vf, vsi_id,
1406                                                       vsi_queue_id)) {
1407                                 aq_ret = I40E_ERR_PARAM;
1408                                 goto error_param;
1409                         }
1410                 }
1411
1412                 i40e_config_irq_link_list(vf, vsi_id, map);
1413         }
1414 error_param:
1415         /* send the response to the VF */
1416         return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_CONFIG_IRQ_MAP,
1417                                        aq_ret);
1418 }
1419
1420 /**
1421  * i40e_vc_enable_queues_msg
1422  * @vf: pointer to the VF info
1423  * @msg: pointer to the msg buffer
1424  * @msglen: msg length
1425  *
1426  * called from the VF to enable all or specific queue(s)
1427  **/
1428 static int i40e_vc_enable_queues_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1429 {
1430         struct i40e_virtchnl_queue_select *vqs =
1431             (struct i40e_virtchnl_queue_select *)msg;
1432         struct i40e_pf *pf = vf->pf;
1433         u16 vsi_id = vqs->vsi_id;
1434         i40e_status aq_ret = 0;
1435
1436         if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
1437                 aq_ret = I40E_ERR_PARAM;
1438                 goto error_param;
1439         }
1440
1441         if (!i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
1442                 aq_ret = I40E_ERR_PARAM;
1443                 goto error_param;
1444         }
1445
1446         if ((0 == vqs->rx_queues) && (0 == vqs->tx_queues)) {
1447                 aq_ret = I40E_ERR_PARAM;
1448                 goto error_param;
1449         }
1450
1451         if (i40e_vsi_control_rings(pf->vsi[vf->lan_vsi_idx], true))
1452                 aq_ret = I40E_ERR_TIMEOUT;
1453 error_param:
1454         /* send the response to the VF */
1455         return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_ENABLE_QUEUES,
1456                                        aq_ret);
1457 }
1458
1459 /**
1460  * i40e_vc_disable_queues_msg
1461  * @vf: pointer to the VF info
1462  * @msg: pointer to the msg buffer
1463  * @msglen: msg length
1464  *
1465  * called from the VF to disable all or specific
1466  * queue(s)
1467  **/
1468 static int i40e_vc_disable_queues_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1469 {
1470         struct i40e_virtchnl_queue_select *vqs =
1471             (struct i40e_virtchnl_queue_select *)msg;
1472         struct i40e_pf *pf = vf->pf;
1473         i40e_status aq_ret = 0;
1474
1475         if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
1476                 aq_ret = I40E_ERR_PARAM;
1477                 goto error_param;
1478         }
1479
1480         if (!i40e_vc_isvalid_vsi_id(vf, vqs->vsi_id)) {
1481                 aq_ret = I40E_ERR_PARAM;
1482                 goto error_param;
1483         }
1484
1485         if ((0 == vqs->rx_queues) && (0 == vqs->tx_queues)) {
1486                 aq_ret = I40E_ERR_PARAM;
1487                 goto error_param;
1488         }
1489
1490         if (i40e_vsi_control_rings(pf->vsi[vf->lan_vsi_idx], false))
1491                 aq_ret = I40E_ERR_TIMEOUT;
1492
1493 error_param:
1494         /* send the response to the VF */
1495         return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_DISABLE_QUEUES,
1496                                        aq_ret);
1497 }
1498
1499 /**
1500  * i40e_vc_get_stats_msg
1501  * @vf: pointer to the VF info
1502  * @msg: pointer to the msg buffer
1503  * @msglen: msg length
1504  *
1505  * called from the VF to get vsi stats
1506  **/
1507 static int i40e_vc_get_stats_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1508 {
1509         struct i40e_virtchnl_queue_select *vqs =
1510             (struct i40e_virtchnl_queue_select *)msg;
1511         struct i40e_pf *pf = vf->pf;
1512         struct i40e_eth_stats stats;
1513         i40e_status aq_ret = 0;
1514         struct i40e_vsi *vsi;
1515
1516         memset(&stats, 0, sizeof(struct i40e_eth_stats));
1517
1518         if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
1519                 aq_ret = I40E_ERR_PARAM;
1520                 goto error_param;
1521         }
1522
1523         if (!i40e_vc_isvalid_vsi_id(vf, vqs->vsi_id)) {
1524                 aq_ret = I40E_ERR_PARAM;
1525                 goto error_param;
1526         }
1527
1528         vsi = pf->vsi[vf->lan_vsi_idx];
1529         if (!vsi) {
1530                 aq_ret = I40E_ERR_PARAM;
1531                 goto error_param;
1532         }
1533         i40e_update_eth_stats(vsi);
1534         stats = vsi->eth_stats;
1535
1536 error_param:
1537         /* send the response back to the VF */
1538         return i40e_vc_send_msg_to_vf(vf, I40E_VIRTCHNL_OP_GET_STATS, aq_ret,
1539                                       (u8 *)&stats, sizeof(stats));
1540 }
1541
1542 /**
1543  * i40e_check_vf_permission
1544  * @vf: pointer to the VF info
1545  * @macaddr: pointer to the MAC Address being checked
1546  *
1547  * Check if the VF has permission to add or delete unicast MAC address
1548  * filters and return error code -EPERM if not.  Then check if the
1549  * address filter requested is broadcast or zero and if so return
1550  * an invalid MAC address error code.
1551  **/
1552 static inline int i40e_check_vf_permission(struct i40e_vf *vf, u8 *macaddr)
1553 {
1554         struct i40e_pf *pf = vf->pf;
1555         int ret = 0;
1556
1557         if (is_broadcast_ether_addr(macaddr) ||
1558                    is_zero_ether_addr(macaddr)) {
1559                 dev_err(&pf->pdev->dev, "invalid VF MAC addr %pM\n", macaddr);
1560                 ret = I40E_ERR_INVALID_MAC_ADDR;
1561         } else if (vf->pf_set_mac && !is_multicast_ether_addr(macaddr) &&
1562                    !ether_addr_equal(macaddr, vf->default_lan_addr.addr)) {
1563                 /* If the host VMM administrator has set the VF MAC address
1564                  * administratively via the ndo_set_vf_mac command then deny
1565                  * permission to the VF to add or delete unicast MAC addresses.
1566                  * The VF may request to set the MAC address filter already
1567                  * assigned to it so do not return an error in that case.
1568                  */
1569                 dev_err(&pf->pdev->dev,
1570                         "VF attempting to override administratively set MAC address\nPlease reload the VF driver to resume normal operation\n");
1571                 ret = -EPERM;
1572         }
1573         return ret;
1574 }
1575
1576 /**
1577  * i40e_vc_add_mac_addr_msg
1578  * @vf: pointer to the VF info
1579  * @msg: pointer to the msg buffer
1580  * @msglen: msg length
1581  *
1582  * add guest mac address filter
1583  **/
1584 static int i40e_vc_add_mac_addr_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1585 {
1586         struct i40e_virtchnl_ether_addr_list *al =
1587             (struct i40e_virtchnl_ether_addr_list *)msg;
1588         struct i40e_pf *pf = vf->pf;
1589         struct i40e_vsi *vsi = NULL;
1590         u16 vsi_id = al->vsi_id;
1591         i40e_status ret = 0;
1592         int i;
1593
1594         if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
1595             !test_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps) ||
1596             !i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
1597                 ret = I40E_ERR_PARAM;
1598                 goto error_param;
1599         }
1600
1601         for (i = 0; i < al->num_elements; i++) {
1602                 ret = i40e_check_vf_permission(vf, al->list[i].addr);
1603                 if (ret)
1604                         goto error_param;
1605         }
1606         vsi = pf->vsi[vf->lan_vsi_idx];
1607
1608         /* Lock once, because all function inside for loop accesses VSI's
1609          * MAC filter list which needs to be protected using same lock.
1610          */
1611         spin_lock_bh(&vsi->mac_filter_list_lock);
1612
1613         /* add new addresses to the list */
1614         for (i = 0; i < al->num_elements; i++) {
1615                 struct i40e_mac_filter *f;
1616
1617                 f = i40e_find_mac(vsi, al->list[i].addr, true, false);
1618                 if (!f) {
1619                         if (i40e_is_vsi_in_vlan(vsi))
1620                                 f = i40e_put_mac_in_vlan(vsi, al->list[i].addr,
1621                                                          true, false);
1622                         else
1623                                 f = i40e_add_filter(vsi, al->list[i].addr, -1,
1624                                                     true, false);
1625                 }
1626
1627                 if (!f) {
1628                         dev_err(&pf->pdev->dev,
1629                                 "Unable to add VF MAC filter\n");
1630                         ret = I40E_ERR_PARAM;
1631                         spin_unlock_bh(&vsi->mac_filter_list_lock);
1632                         goto error_param;
1633                 }
1634         }
1635         spin_unlock_bh(&vsi->mac_filter_list_lock);
1636
1637         /* program the updated filter list */
1638         if (i40e_sync_vsi_filters(vsi, false))
1639                 dev_err(&pf->pdev->dev, "Unable to program VF MAC filters\n");
1640
1641 error_param:
1642         /* send the response to the VF */
1643         return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_ADD_ETHER_ADDRESS,
1644                                        ret);
1645 }
1646
1647 /**
1648  * i40e_vc_del_mac_addr_msg
1649  * @vf: pointer to the VF info
1650  * @msg: pointer to the msg buffer
1651  * @msglen: msg length
1652  *
1653  * remove guest mac address filter
1654  **/
1655 static int i40e_vc_del_mac_addr_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1656 {
1657         struct i40e_virtchnl_ether_addr_list *al =
1658             (struct i40e_virtchnl_ether_addr_list *)msg;
1659         struct i40e_pf *pf = vf->pf;
1660         struct i40e_vsi *vsi = NULL;
1661         u16 vsi_id = al->vsi_id;
1662         i40e_status ret = 0;
1663         int i;
1664
1665         if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
1666             !test_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps) ||
1667             !i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
1668                 ret = I40E_ERR_PARAM;
1669                 goto error_param;
1670         }
1671
1672         for (i = 0; i < al->num_elements; i++) {
1673                 if (is_broadcast_ether_addr(al->list[i].addr) ||
1674                     is_zero_ether_addr(al->list[i].addr)) {
1675                         dev_err(&pf->pdev->dev, "invalid VF MAC addr %pM\n",
1676                                 al->list[i].addr);
1677                         ret = I40E_ERR_INVALID_MAC_ADDR;
1678                         goto error_param;
1679                 }
1680
1681                 if (vf->pf_set_mac &&
1682                     ether_addr_equal(al->list[i].addr,
1683                                      vf->default_lan_addr.addr)) {
1684                         dev_err(&pf->pdev->dev,
1685                                 "MAC addr %pM has been set by PF, cannot delete it for VF %d, reset VF to change MAC addr\n",
1686                                 vf->default_lan_addr.addr, vf->vf_id);
1687                         ret = I40E_ERR_PARAM;
1688                         goto error_param;
1689                 }
1690         }
1691         vsi = pf->vsi[vf->lan_vsi_idx];
1692
1693         spin_lock_bh(&vsi->mac_filter_list_lock);
1694         /* delete addresses from the list */
1695         for (i = 0; i < al->num_elements; i++)
1696                 if (i40e_del_mac_all_vlan(vsi, al->list[i].addr, true, false)) {
1697                         ret = I40E_ERR_INVALID_MAC_ADDR;
1698                         spin_unlock_bh(&vsi->mac_filter_list_lock);
1699                         goto error_param;
1700                 }
1701
1702         spin_unlock_bh(&vsi->mac_filter_list_lock);
1703
1704         /* program the updated filter list */
1705         if (i40e_sync_vsi_filters(vsi, false))
1706                 dev_err(&pf->pdev->dev, "Unable to program VF MAC filters\n");
1707
1708 error_param:
1709         /* send the response to the VF */
1710         return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_DEL_ETHER_ADDRESS,
1711                                        ret);
1712 }
1713
1714 /**
1715  * i40e_vc_add_vlan_msg
1716  * @vf: pointer to the VF info
1717  * @msg: pointer to the msg buffer
1718  * @msglen: msg length
1719  *
1720  * program guest vlan id
1721  **/
1722 static int i40e_vc_add_vlan_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1723 {
1724         struct i40e_virtchnl_vlan_filter_list *vfl =
1725             (struct i40e_virtchnl_vlan_filter_list *)msg;
1726         struct i40e_pf *pf = vf->pf;
1727         struct i40e_vsi *vsi = NULL;
1728         u16 vsi_id = vfl->vsi_id;
1729         i40e_status aq_ret = 0;
1730         int i;
1731
1732         if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
1733             !test_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps) ||
1734             !i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
1735                 aq_ret = I40E_ERR_PARAM;
1736                 goto error_param;
1737         }
1738
1739         for (i = 0; i < vfl->num_elements; i++) {
1740                 if (vfl->vlan_id[i] > I40E_MAX_VLANID) {
1741                         aq_ret = I40E_ERR_PARAM;
1742                         dev_err(&pf->pdev->dev,
1743                                 "invalid VF VLAN id %d\n", vfl->vlan_id[i]);
1744                         goto error_param;
1745                 }
1746         }
1747         vsi = pf->vsi[vf->lan_vsi_idx];
1748         if (vsi->info.pvid) {
1749                 aq_ret = I40E_ERR_PARAM;
1750                 goto error_param;
1751         }
1752
1753         i40e_vlan_stripping_enable(vsi);
1754         for (i = 0; i < vfl->num_elements; i++) {
1755                 /* add new VLAN filter */
1756                 int ret = i40e_vsi_add_vlan(vsi, vfl->vlan_id[i]);
1757
1758                 if (ret)
1759                         dev_err(&pf->pdev->dev,
1760                                 "Unable to add VF vlan filter %d, error %d\n",
1761                                 vfl->vlan_id[i], ret);
1762         }
1763
1764 error_param:
1765         /* send the response to the VF */
1766         return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_ADD_VLAN, aq_ret);
1767 }
1768
1769 /**
1770  * i40e_vc_remove_vlan_msg
1771  * @vf: pointer to the VF info
1772  * @msg: pointer to the msg buffer
1773  * @msglen: msg length
1774  *
1775  * remove programmed guest vlan id
1776  **/
1777 static int i40e_vc_remove_vlan_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1778 {
1779         struct i40e_virtchnl_vlan_filter_list *vfl =
1780             (struct i40e_virtchnl_vlan_filter_list *)msg;
1781         struct i40e_pf *pf = vf->pf;
1782         struct i40e_vsi *vsi = NULL;
1783         u16 vsi_id = vfl->vsi_id;
1784         i40e_status aq_ret = 0;
1785         int i;
1786
1787         if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
1788             !test_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps) ||
1789             !i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
1790                 aq_ret = I40E_ERR_PARAM;
1791                 goto error_param;
1792         }
1793
1794         for (i = 0; i < vfl->num_elements; i++) {
1795                 if (vfl->vlan_id[i] > I40E_MAX_VLANID) {
1796                         aq_ret = I40E_ERR_PARAM;
1797                         goto error_param;
1798                 }
1799         }
1800
1801         vsi = pf->vsi[vf->lan_vsi_idx];
1802         if (vsi->info.pvid) {
1803                 aq_ret = I40E_ERR_PARAM;
1804                 goto error_param;
1805         }
1806
1807         for (i = 0; i < vfl->num_elements; i++) {
1808                 int ret = i40e_vsi_kill_vlan(vsi, vfl->vlan_id[i]);
1809
1810                 if (ret)
1811                         dev_err(&pf->pdev->dev,
1812                                 "Unable to delete VF vlan filter %d, error %d\n",
1813                                 vfl->vlan_id[i], ret);
1814         }
1815
1816 error_param:
1817         /* send the response to the VF */
1818         return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_DEL_VLAN, aq_ret);
1819 }
1820
1821 /**
1822  * i40e_vc_validate_vf_msg
1823  * @vf: pointer to the VF info
1824  * @msg: pointer to the msg buffer
1825  * @msglen: msg length
1826  * @msghndl: msg handle
1827  *
1828  * validate msg
1829  **/
1830 static int i40e_vc_validate_vf_msg(struct i40e_vf *vf, u32 v_opcode,
1831                                    u32 v_retval, u8 *msg, u16 msglen)
1832 {
1833         bool err_msg_format = false;
1834         int valid_len;
1835
1836         /* Check if VF is disabled. */
1837         if (test_bit(I40E_VF_STAT_DISABLED, &vf->vf_states))
1838                 return I40E_ERR_PARAM;
1839
1840         /* Validate message length. */
1841         switch (v_opcode) {
1842         case I40E_VIRTCHNL_OP_VERSION:
1843                 valid_len = sizeof(struct i40e_virtchnl_version_info);
1844                 break;
1845         case I40E_VIRTCHNL_OP_RESET_VF:
1846                 valid_len = 0;
1847                 break;
1848         case I40E_VIRTCHNL_OP_GET_VF_RESOURCES:
1849                 if (VF_IS_V11(vf))
1850                         valid_len = sizeof(u32);
1851                 else
1852                         valid_len = 0;
1853                 break;
1854         case I40E_VIRTCHNL_OP_CONFIG_TX_QUEUE:
1855                 valid_len = sizeof(struct i40e_virtchnl_txq_info);
1856                 break;
1857         case I40E_VIRTCHNL_OP_CONFIG_RX_QUEUE:
1858                 valid_len = sizeof(struct i40e_virtchnl_rxq_info);
1859                 break;
1860         case I40E_VIRTCHNL_OP_CONFIG_VSI_QUEUES:
1861                 valid_len = sizeof(struct i40e_virtchnl_vsi_queue_config_info);
1862                 if (msglen >= valid_len) {
1863                         struct i40e_virtchnl_vsi_queue_config_info *vqc =
1864                             (struct i40e_virtchnl_vsi_queue_config_info *)msg;
1865                         valid_len += (vqc->num_queue_pairs *
1866                                       sizeof(struct
1867                                              i40e_virtchnl_queue_pair_info));
1868                         if (vqc->num_queue_pairs == 0)
1869                                 err_msg_format = true;
1870                 }
1871                 break;
1872         case I40E_VIRTCHNL_OP_CONFIG_IRQ_MAP:
1873                 valid_len = sizeof(struct i40e_virtchnl_irq_map_info);
1874                 if (msglen >= valid_len) {
1875                         struct i40e_virtchnl_irq_map_info *vimi =
1876                             (struct i40e_virtchnl_irq_map_info *)msg;
1877                         valid_len += (vimi->num_vectors *
1878                                       sizeof(struct i40e_virtchnl_vector_map));
1879                         if (vimi->num_vectors == 0)
1880                                 err_msg_format = true;
1881                 }
1882                 break;
1883         case I40E_VIRTCHNL_OP_ENABLE_QUEUES:
1884         case I40E_VIRTCHNL_OP_DISABLE_QUEUES:
1885                 valid_len = sizeof(struct i40e_virtchnl_queue_select);
1886                 break;
1887         case I40E_VIRTCHNL_OP_ADD_ETHER_ADDRESS:
1888         case I40E_VIRTCHNL_OP_DEL_ETHER_ADDRESS:
1889                 valid_len = sizeof(struct i40e_virtchnl_ether_addr_list);
1890                 if (msglen >= valid_len) {
1891                         struct i40e_virtchnl_ether_addr_list *veal =
1892                             (struct i40e_virtchnl_ether_addr_list *)msg;
1893                         valid_len += veal->num_elements *
1894                             sizeof(struct i40e_virtchnl_ether_addr);
1895                         if (veal->num_elements == 0)
1896                                 err_msg_format = true;
1897                 }
1898                 break;
1899         case I40E_VIRTCHNL_OP_ADD_VLAN:
1900         case I40E_VIRTCHNL_OP_DEL_VLAN:
1901                 valid_len = sizeof(struct i40e_virtchnl_vlan_filter_list);
1902                 if (msglen >= valid_len) {
1903                         struct i40e_virtchnl_vlan_filter_list *vfl =
1904                             (struct i40e_virtchnl_vlan_filter_list *)msg;
1905                         valid_len += vfl->num_elements * sizeof(u16);
1906                         if (vfl->num_elements == 0)
1907                                 err_msg_format = true;
1908                 }
1909                 break;
1910         case I40E_VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE:
1911                 valid_len = sizeof(struct i40e_virtchnl_promisc_info);
1912                 break;
1913         case I40E_VIRTCHNL_OP_GET_STATS:
1914                 valid_len = sizeof(struct i40e_virtchnl_queue_select);
1915                 break;
1916         /* These are always errors coming from the VF. */
1917         case I40E_VIRTCHNL_OP_EVENT:
1918         case I40E_VIRTCHNL_OP_UNKNOWN:
1919         default:
1920                 return -EPERM;
1921         }
1922         /* few more checks */
1923         if ((valid_len != msglen) || (err_msg_format)) {
1924                 i40e_vc_send_resp_to_vf(vf, v_opcode, I40E_ERR_PARAM);
1925                 return -EINVAL;
1926         } else {
1927                 return 0;
1928         }
1929 }
1930
1931 /**
1932  * i40e_vc_process_vf_msg
1933  * @pf: pointer to the PF structure
1934  * @vf_id: source VF id
1935  * @msg: pointer to the msg buffer
1936  * @msglen: msg length
1937  * @msghndl: msg handle
1938  *
1939  * called from the common aeq/arq handler to
1940  * process request from VF
1941  **/
1942 int i40e_vc_process_vf_msg(struct i40e_pf *pf, u16 vf_id, u32 v_opcode,
1943                            u32 v_retval, u8 *msg, u16 msglen)
1944 {
1945         struct i40e_hw *hw = &pf->hw;
1946         unsigned int local_vf_id = vf_id - hw->func_caps.vf_base_id;
1947         struct i40e_vf *vf;
1948         int ret;
1949
1950         pf->vf_aq_requests++;
1951         if (local_vf_id >= pf->num_alloc_vfs)
1952                 return -EINVAL;
1953         vf = &(pf->vf[local_vf_id]);
1954         /* perform basic checks on the msg */
1955         ret = i40e_vc_validate_vf_msg(vf, v_opcode, v_retval, msg, msglen);
1956
1957         if (ret) {
1958                 dev_err(&pf->pdev->dev, "Invalid message from VF %d, opcode %d, len %d\n",
1959                         local_vf_id, v_opcode, msglen);
1960                 return ret;
1961         }
1962
1963         switch (v_opcode) {
1964         case I40E_VIRTCHNL_OP_VERSION:
1965                 ret = i40e_vc_get_version_msg(vf, msg);
1966                 break;
1967         case I40E_VIRTCHNL_OP_GET_VF_RESOURCES:
1968                 ret = i40e_vc_get_vf_resources_msg(vf, msg);
1969                 break;
1970         case I40E_VIRTCHNL_OP_RESET_VF:
1971                 i40e_vc_reset_vf_msg(vf);
1972                 ret = 0;
1973                 break;
1974         case I40E_VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE:
1975                 ret = i40e_vc_config_promiscuous_mode_msg(vf, msg, msglen);
1976                 break;
1977         case I40E_VIRTCHNL_OP_CONFIG_VSI_QUEUES:
1978                 ret = i40e_vc_config_queues_msg(vf, msg, msglen);
1979                 break;
1980         case I40E_VIRTCHNL_OP_CONFIG_IRQ_MAP:
1981                 ret = i40e_vc_config_irq_map_msg(vf, msg, msglen);
1982                 break;
1983         case I40E_VIRTCHNL_OP_ENABLE_QUEUES:
1984                 ret = i40e_vc_enable_queues_msg(vf, msg, msglen);
1985                 i40e_vc_notify_vf_link_state(vf);
1986                 break;
1987         case I40E_VIRTCHNL_OP_DISABLE_QUEUES:
1988                 ret = i40e_vc_disable_queues_msg(vf, msg, msglen);
1989                 break;
1990         case I40E_VIRTCHNL_OP_ADD_ETHER_ADDRESS:
1991                 ret = i40e_vc_add_mac_addr_msg(vf, msg, msglen);
1992                 break;
1993         case I40E_VIRTCHNL_OP_DEL_ETHER_ADDRESS:
1994                 ret = i40e_vc_del_mac_addr_msg(vf, msg, msglen);
1995                 break;
1996         case I40E_VIRTCHNL_OP_ADD_VLAN:
1997                 ret = i40e_vc_add_vlan_msg(vf, msg, msglen);
1998                 break;
1999         case I40E_VIRTCHNL_OP_DEL_VLAN:
2000                 ret = i40e_vc_remove_vlan_msg(vf, msg, msglen);
2001                 break;
2002         case I40E_VIRTCHNL_OP_GET_STATS:
2003                 ret = i40e_vc_get_stats_msg(vf, msg, msglen);
2004                 break;
2005         case I40E_VIRTCHNL_OP_UNKNOWN:
2006         default:
2007                 dev_err(&pf->pdev->dev, "Unsupported opcode %d from VF %d\n",
2008                         v_opcode, local_vf_id);
2009                 ret = i40e_vc_send_resp_to_vf(vf, v_opcode,
2010                                               I40E_ERR_NOT_IMPLEMENTED);
2011                 break;
2012         }
2013
2014         return ret;
2015 }
2016
2017 /**
2018  * i40e_vc_process_vflr_event
2019  * @pf: pointer to the PF structure
2020  *
2021  * called from the vlfr irq handler to
2022  * free up VF resources and state variables
2023  **/
2024 int i40e_vc_process_vflr_event(struct i40e_pf *pf)
2025 {
2026         u32 reg, reg_idx, bit_idx, vf_id;
2027         struct i40e_hw *hw = &pf->hw;
2028         struct i40e_vf *vf;
2029
2030         if (!test_bit(__I40E_VFLR_EVENT_PENDING, &pf->state))
2031                 return 0;
2032
2033         /* re-enable vflr interrupt cause */
2034         reg = rd32(hw, I40E_PFINT_ICR0_ENA);
2035         reg |= I40E_PFINT_ICR0_ENA_VFLR_MASK;
2036         wr32(hw, I40E_PFINT_ICR0_ENA, reg);
2037         i40e_flush(hw);
2038
2039         clear_bit(__I40E_VFLR_EVENT_PENDING, &pf->state);
2040         for (vf_id = 0; vf_id < pf->num_alloc_vfs; vf_id++) {
2041                 reg_idx = (hw->func_caps.vf_base_id + vf_id) / 32;
2042                 bit_idx = (hw->func_caps.vf_base_id + vf_id) % 32;
2043                 /* read GLGEN_VFLRSTAT register to find out the flr VFs */
2044                 vf = &pf->vf[vf_id];
2045                 reg = rd32(hw, I40E_GLGEN_VFLRSTAT(reg_idx));
2046                 if (reg & BIT(bit_idx)) {
2047                         /* clear the bit in GLGEN_VFLRSTAT */
2048                         wr32(hw, I40E_GLGEN_VFLRSTAT(reg_idx), BIT(bit_idx));
2049
2050                         if (!test_bit(__I40E_DOWN, &pf->state))
2051                                 i40e_reset_vf(vf, true);
2052                 }
2053         }
2054
2055         return 0;
2056 }
2057
2058 /**
2059  * i40e_ndo_set_vf_mac
2060  * @netdev: network interface device structure
2061  * @vf_id: VF identifier
2062  * @mac: mac address
2063  *
2064  * program VF mac address
2065  **/
2066 int i40e_ndo_set_vf_mac(struct net_device *netdev, int vf_id, u8 *mac)
2067 {
2068         struct i40e_netdev_priv *np = netdev_priv(netdev);
2069         struct i40e_vsi *vsi = np->vsi;
2070         struct i40e_pf *pf = vsi->back;
2071         struct i40e_mac_filter *f;
2072         struct i40e_vf *vf;
2073         int ret = 0;
2074
2075         /* validate the request */
2076         if (vf_id >= pf->num_alloc_vfs) {
2077                 dev_err(&pf->pdev->dev,
2078                         "Invalid VF Identifier %d\n", vf_id);
2079                 ret = -EINVAL;
2080                 goto error_param;
2081         }
2082
2083         vf = &(pf->vf[vf_id]);
2084         vsi = pf->vsi[vf->lan_vsi_idx];
2085         if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
2086                 dev_err(&pf->pdev->dev,
2087                         "Uninitialized VF %d\n", vf_id);
2088                 ret = -EINVAL;
2089                 goto error_param;
2090         }
2091
2092         if (!is_valid_ether_addr(mac)) {
2093                 dev_err(&pf->pdev->dev,
2094                         "Invalid VF ethernet address\n");
2095                 ret = -EINVAL;
2096                 goto error_param;
2097         }
2098
2099         /* Lock once because below invoked function add/del_filter requires
2100          * mac_filter_list_lock to be held
2101          */
2102         spin_lock_bh(&vsi->mac_filter_list_lock);
2103
2104         /* delete the temporary mac address */
2105         i40e_del_filter(vsi, vf->default_lan_addr.addr,
2106                         vf->port_vlan_id ? vf->port_vlan_id : -1,
2107                         true, false);
2108
2109         /* Delete all the filters for this VSI - we're going to kill it
2110          * anyway.
2111          */
2112         list_for_each_entry(f, &vsi->mac_filter_list, list)
2113                 i40e_del_filter(vsi, f->macaddr, f->vlan, true, false);
2114
2115         spin_unlock_bh(&vsi->mac_filter_list_lock);
2116
2117         dev_info(&pf->pdev->dev, "Setting MAC %pM on VF %d\n", mac, vf_id);
2118         /* program mac filter */
2119         if (i40e_sync_vsi_filters(vsi, false)) {
2120                 dev_err(&pf->pdev->dev, "Unable to program ucast filters\n");
2121                 ret = -EIO;
2122                 goto error_param;
2123         }
2124         ether_addr_copy(vf->default_lan_addr.addr, mac);
2125         vf->pf_set_mac = true;
2126         /* Force the VF driver stop so it has to reload with new MAC address */
2127         i40e_vc_disable_vf(pf, vf);
2128         dev_info(&pf->pdev->dev, "Reload the VF driver to make this change effective.\n");
2129
2130 error_param:
2131         return ret;
2132 }
2133
2134 /**
2135  * i40e_ndo_set_vf_port_vlan
2136  * @netdev: network interface device structure
2137  * @vf_id: VF identifier
2138  * @vlan_id: mac address
2139  * @qos: priority setting
2140  *
2141  * program VF vlan id and/or qos
2142  **/
2143 int i40e_ndo_set_vf_port_vlan(struct net_device *netdev,
2144                               int vf_id, u16 vlan_id, u8 qos)
2145 {
2146         u16 vlanprio = vlan_id | (qos << I40E_VLAN_PRIORITY_SHIFT);
2147         struct i40e_netdev_priv *np = netdev_priv(netdev);
2148         struct i40e_pf *pf = np->vsi->back;
2149         bool is_vsi_in_vlan = false;
2150         struct i40e_vsi *vsi;
2151         struct i40e_vf *vf;
2152         int ret = 0;
2153
2154         /* validate the request */
2155         if (vf_id >= pf->num_alloc_vfs) {
2156                 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d\n", vf_id);
2157                 ret = -EINVAL;
2158                 goto error_pvid;
2159         }
2160
2161         if ((vlan_id > I40E_MAX_VLANID) || (qos > 7)) {
2162                 dev_err(&pf->pdev->dev, "Invalid VF Parameters\n");
2163                 ret = -EINVAL;
2164                 goto error_pvid;
2165         }
2166
2167         vf = &(pf->vf[vf_id]);
2168         vsi = pf->vsi[vf->lan_vsi_idx];
2169         if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
2170                 dev_err(&pf->pdev->dev, "Uninitialized VF %d\n", vf_id);
2171                 ret = -EINVAL;
2172                 goto error_pvid;
2173         }
2174
2175         if (le16_to_cpu(vsi->info.pvid) == vlanprio)
2176                 /* duplicate request, so just return success */
2177                 goto error_pvid;
2178
2179         spin_lock_bh(&vsi->mac_filter_list_lock);
2180         is_vsi_in_vlan = i40e_is_vsi_in_vlan(vsi);
2181         spin_unlock_bh(&vsi->mac_filter_list_lock);
2182
2183         if (le16_to_cpu(vsi->info.pvid) == 0 && is_vsi_in_vlan) {
2184                 dev_err(&pf->pdev->dev,
2185                         "VF %d has already configured VLAN filters and the administrator is requesting a port VLAN override.\nPlease unload and reload the VF driver for this change to take effect.\n",
2186                         vf_id);
2187                 /* Administrator Error - knock the VF offline until he does
2188                  * the right thing by reconfiguring his network correctly
2189                  * and then reloading the VF driver.
2190                  */
2191                 i40e_vc_disable_vf(pf, vf);
2192         }
2193
2194         /* Check for condition where there was already a port VLAN ID
2195          * filter set and now it is being deleted by setting it to zero.
2196          * Additionally check for the condition where there was a port
2197          * VLAN but now there is a new and different port VLAN being set.
2198          * Before deleting all the old VLAN filters we must add new ones
2199          * with -1 (I40E_VLAN_ANY) or otherwise we're left with all our
2200          * MAC addresses deleted.
2201          */
2202         if ((!(vlan_id || qos) ||
2203             vlanprio != le16_to_cpu(vsi->info.pvid)) &&
2204             vsi->info.pvid)
2205                 ret = i40e_vsi_add_vlan(vsi, I40E_VLAN_ANY);
2206
2207         if (vsi->info.pvid) {
2208                 /* kill old VLAN */
2209                 ret = i40e_vsi_kill_vlan(vsi, (le16_to_cpu(vsi->info.pvid) &
2210                                                VLAN_VID_MASK));
2211                 if (ret) {
2212                         dev_info(&vsi->back->pdev->dev,
2213                                  "remove VLAN failed, ret=%d, aq_err=%d\n",
2214                                  ret, pf->hw.aq.asq_last_status);
2215                 }
2216         }
2217         if (vlan_id || qos)
2218                 ret = i40e_vsi_add_pvid(vsi, vlanprio);
2219         else
2220                 i40e_vsi_remove_pvid(vsi);
2221
2222         if (vlan_id) {
2223                 dev_info(&pf->pdev->dev, "Setting VLAN %d, QOS 0x%x on VF %d\n",
2224                          vlan_id, qos, vf_id);
2225
2226                 /* add new VLAN filter */
2227                 ret = i40e_vsi_add_vlan(vsi, vlan_id);
2228                 if (ret) {
2229                         dev_info(&vsi->back->pdev->dev,
2230                                  "add VF VLAN failed, ret=%d aq_err=%d\n", ret,
2231                                  vsi->back->hw.aq.asq_last_status);
2232                         goto error_pvid;
2233                 }
2234                 /* Kill non-vlan MAC filters - ignore error return since
2235                  * there might not be any non-vlan MAC filters.
2236                  */
2237                 i40e_vsi_kill_vlan(vsi, I40E_VLAN_ANY);
2238         }
2239
2240         if (ret) {
2241                 dev_err(&pf->pdev->dev, "Unable to update VF vsi context\n");
2242                 goto error_pvid;
2243         }
2244         /* The Port VLAN needs to be saved across resets the same as the
2245          * default LAN MAC address.
2246          */
2247         vf->port_vlan_id = le16_to_cpu(vsi->info.pvid);
2248         ret = 0;
2249
2250 error_pvid:
2251         return ret;
2252 }
2253
2254 #define I40E_BW_CREDIT_DIVISOR 50     /* 50Mbps per BW credit */
2255 #define I40E_MAX_BW_INACTIVE_ACCUM 4  /* device can accumulate 4 credits max */
2256 /**
2257  * i40e_ndo_set_vf_bw
2258  * @netdev: network interface device structure
2259  * @vf_id: VF identifier
2260  * @tx_rate: Tx rate
2261  *
2262  * configure VF Tx rate
2263  **/
2264 int i40e_ndo_set_vf_bw(struct net_device *netdev, int vf_id, int min_tx_rate,
2265                        int max_tx_rate)
2266 {
2267         struct i40e_netdev_priv *np = netdev_priv(netdev);
2268         struct i40e_pf *pf = np->vsi->back;
2269         struct i40e_vsi *vsi;
2270         struct i40e_vf *vf;
2271         int speed = 0;
2272         int ret = 0;
2273
2274         /* validate the request */
2275         if (vf_id >= pf->num_alloc_vfs) {
2276                 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d.\n", vf_id);
2277                 ret = -EINVAL;
2278                 goto error;
2279         }
2280
2281         if (min_tx_rate) {
2282                 dev_err(&pf->pdev->dev, "Invalid min tx rate (%d) (greater than 0) specified for VF %d.\n",
2283                         min_tx_rate, vf_id);
2284                 return -EINVAL;
2285         }
2286
2287         vf = &(pf->vf[vf_id]);
2288         vsi = pf->vsi[vf->lan_vsi_idx];
2289         if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
2290                 dev_err(&pf->pdev->dev, "Uninitialized VF %d.\n", vf_id);
2291                 ret = -EINVAL;
2292                 goto error;
2293         }
2294
2295         switch (pf->hw.phy.link_info.link_speed) {
2296         case I40E_LINK_SPEED_40GB:
2297                 speed = 40000;
2298                 break;
2299         case I40E_LINK_SPEED_10GB:
2300                 speed = 10000;
2301                 break;
2302         case I40E_LINK_SPEED_1GB:
2303                 speed = 1000;
2304                 break;
2305         default:
2306                 break;
2307         }
2308
2309         if (max_tx_rate > speed) {
2310                 dev_err(&pf->pdev->dev, "Invalid max tx rate %d specified for VF %d.",
2311                         max_tx_rate, vf->vf_id);
2312                 ret = -EINVAL;
2313                 goto error;
2314         }
2315
2316         if ((max_tx_rate < 50) && (max_tx_rate > 0)) {
2317                 dev_warn(&pf->pdev->dev, "Setting max Tx rate to minimum usable value of 50Mbps.\n");
2318                 max_tx_rate = 50;
2319         }
2320
2321         /* Tx rate credits are in values of 50Mbps, 0 is disabled*/
2322         ret = i40e_aq_config_vsi_bw_limit(&pf->hw, vsi->seid,
2323                                           max_tx_rate / I40E_BW_CREDIT_DIVISOR,
2324                                           I40E_MAX_BW_INACTIVE_ACCUM, NULL);
2325         if (ret) {
2326                 dev_err(&pf->pdev->dev, "Unable to set max tx rate, error code %d.\n",
2327                         ret);
2328                 ret = -EIO;
2329                 goto error;
2330         }
2331         vf->tx_rate = max_tx_rate;
2332 error:
2333         return ret;
2334 }
2335
2336 /**
2337  * i40e_ndo_get_vf_config
2338  * @netdev: network interface device structure
2339  * @vf_id: VF identifier
2340  * @ivi: VF configuration structure
2341  *
2342  * return VF configuration
2343  **/
2344 int i40e_ndo_get_vf_config(struct net_device *netdev,
2345                            int vf_id, struct ifla_vf_info *ivi)
2346 {
2347         struct i40e_netdev_priv *np = netdev_priv(netdev);
2348         struct i40e_vsi *vsi = np->vsi;
2349         struct i40e_pf *pf = vsi->back;
2350         struct i40e_vf *vf;
2351         int ret = 0;
2352
2353         /* validate the request */
2354         if (vf_id >= pf->num_alloc_vfs) {
2355                 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d\n", vf_id);
2356                 ret = -EINVAL;
2357                 goto error_param;
2358         }
2359
2360         vf = &(pf->vf[vf_id]);
2361         /* first vsi is always the LAN vsi */
2362         vsi = pf->vsi[vf->lan_vsi_idx];
2363         if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
2364                 dev_err(&pf->pdev->dev, "Uninitialized VF %d\n", vf_id);
2365                 ret = -EINVAL;
2366                 goto error_param;
2367         }
2368
2369         ivi->vf = vf_id;
2370
2371         ether_addr_copy(ivi->mac, vf->default_lan_addr.addr);
2372
2373         ivi->max_tx_rate = vf->tx_rate;
2374         ivi->min_tx_rate = 0;
2375         ivi->vlan = le16_to_cpu(vsi->info.pvid) & I40E_VLAN_MASK;
2376         ivi->qos = (le16_to_cpu(vsi->info.pvid) & I40E_PRIORITY_MASK) >>
2377                    I40E_VLAN_PRIORITY_SHIFT;
2378         if (vf->link_forced == false)
2379                 ivi->linkstate = IFLA_VF_LINK_STATE_AUTO;
2380         else if (vf->link_up == true)
2381                 ivi->linkstate = IFLA_VF_LINK_STATE_ENABLE;
2382         else
2383                 ivi->linkstate = IFLA_VF_LINK_STATE_DISABLE;
2384         ivi->spoofchk = vf->spoofchk;
2385         ret = 0;
2386
2387 error_param:
2388         return ret;
2389 }
2390
2391 /**
2392  * i40e_ndo_set_vf_link_state
2393  * @netdev: network interface device structure
2394  * @vf_id: VF identifier
2395  * @link: required link state
2396  *
2397  * Set the link state of a specified VF, regardless of physical link state
2398  **/
2399 int i40e_ndo_set_vf_link_state(struct net_device *netdev, int vf_id, int link)
2400 {
2401         struct i40e_netdev_priv *np = netdev_priv(netdev);
2402         struct i40e_pf *pf = np->vsi->back;
2403         struct i40e_virtchnl_pf_event pfe;
2404         struct i40e_hw *hw = &pf->hw;
2405         struct i40e_vf *vf;
2406         int abs_vf_id;
2407         int ret = 0;
2408
2409         /* validate the request */
2410         if (vf_id >= pf->num_alloc_vfs) {
2411                 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d\n", vf_id);
2412                 ret = -EINVAL;
2413                 goto error_out;
2414         }
2415
2416         vf = &pf->vf[vf_id];
2417         abs_vf_id = vf->vf_id + hw->func_caps.vf_base_id;
2418
2419         pfe.event = I40E_VIRTCHNL_EVENT_LINK_CHANGE;
2420         pfe.severity = I40E_PF_EVENT_SEVERITY_INFO;
2421
2422         switch (link) {
2423         case IFLA_VF_LINK_STATE_AUTO:
2424                 vf->link_forced = false;
2425                 pfe.event_data.link_event.link_status =
2426                         pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP;
2427                 pfe.event_data.link_event.link_speed =
2428                         pf->hw.phy.link_info.link_speed;
2429                 break;
2430         case IFLA_VF_LINK_STATE_ENABLE:
2431                 vf->link_forced = true;
2432                 vf->link_up = true;
2433                 pfe.event_data.link_event.link_status = true;
2434                 pfe.event_data.link_event.link_speed = I40E_LINK_SPEED_40GB;
2435                 break;
2436         case IFLA_VF_LINK_STATE_DISABLE:
2437                 vf->link_forced = true;
2438                 vf->link_up = false;
2439                 pfe.event_data.link_event.link_status = false;
2440                 pfe.event_data.link_event.link_speed = 0;
2441                 break;
2442         default:
2443                 ret = -EINVAL;
2444                 goto error_out;
2445         }
2446         /* Notify the VF of its new link state */
2447         i40e_aq_send_msg_to_vf(hw, abs_vf_id, I40E_VIRTCHNL_OP_EVENT,
2448                                0, (u8 *)&pfe, sizeof(pfe), NULL);
2449
2450 error_out:
2451         return ret;
2452 }
2453
2454 /**
2455  * i40e_ndo_set_vf_spoofchk
2456  * @netdev: network interface device structure
2457  * @vf_id: VF identifier
2458  * @enable: flag to enable or disable feature
2459  *
2460  * Enable or disable VF spoof checking
2461  **/
2462 int i40e_ndo_set_vf_spoofchk(struct net_device *netdev, int vf_id, bool enable)
2463 {
2464         struct i40e_netdev_priv *np = netdev_priv(netdev);
2465         struct i40e_vsi *vsi = np->vsi;
2466         struct i40e_pf *pf = vsi->back;
2467         struct i40e_vsi_context ctxt;
2468         struct i40e_hw *hw = &pf->hw;
2469         struct i40e_vf *vf;
2470         int ret = 0;
2471
2472         /* validate the request */
2473         if (vf_id >= pf->num_alloc_vfs) {
2474                 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d\n", vf_id);
2475                 ret = -EINVAL;
2476                 goto out;
2477         }
2478
2479         vf = &(pf->vf[vf_id]);
2480
2481         if (enable == vf->spoofchk)
2482                 goto out;
2483
2484         vf->spoofchk = enable;
2485         memset(&ctxt, 0, sizeof(ctxt));
2486         ctxt.seid = pf->vsi[vf->lan_vsi_idx]->seid;
2487         ctxt.pf_num = pf->hw.pf_id;
2488         ctxt.info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID);
2489         if (enable)
2490                 ctxt.info.sec_flags |= (I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK |
2491                                         I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK);
2492         ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL);
2493         if (ret) {
2494                 dev_err(&pf->pdev->dev, "Error %d updating VSI parameters\n",
2495                         ret);
2496                 ret = -EIO;
2497         }
2498 out:
2499         return ret;
2500 }