blob: 150002ed3ad60e9a33ffe49227e277f17d0bb6c3 [file] [log] [blame]
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001/*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Driver
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08004 * Copyright(c) 2013 - 2016 Intel Corporation.
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00005 *
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 *
Greg Rosedc641b72013-12-18 13:45:51 +000015 * 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/>.
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +000017 *
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
Mitch Williams532b0452015-04-07 19:45:34 -040029/*********************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 **/
41static 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/**
Mitch Williams55f7d722016-03-10 14:59:50 -080066 * i40e_vc_notify_vf_link_state
Mitch Williams532b0452015-04-07 19:45:34 -040067 * @vf: pointer to the VF structure
68 *
69 * send a link status message to a single VF
70 **/
71static 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 **/
100void 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 **/
114void 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 **/
130void 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}
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000152/***********************misc routines*****************************/
153
154/**
Greg Rosef9b4b622014-03-06 09:02:28 +0000155 * i40e_vc_disable_vf
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000156 * @pf: pointer to the PF info
157 * @vf: pointer to the VF info
Greg Rosef9b4b622014-03-06 09:02:28 +0000158 *
159 * Disable the VF through a SW reset
160 **/
161static inline void i40e_vc_disable_vf(struct i40e_pf *pf, struct i40e_vf *vf)
162{
Mitch Williams54f455e2015-04-27 14:57:14 -0400163 i40e_vc_notify_vf_reset(vf);
164 i40e_reset_vf(vf, false);
Greg Rosef9b4b622014-03-06 09:02:28 +0000165}
166
167/**
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000168 * i40e_vc_isvalid_vsi_id
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000169 * @vf: pointer to the VF info
170 * @vsi_id: VF relative VSI id
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000171 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000172 * check for the valid VSI id
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000173 **/
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700174static inline bool i40e_vc_isvalid_vsi_id(struct i40e_vf *vf, u16 vsi_id)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000175{
176 struct i40e_pf *pf = vf->pf;
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700177 struct i40e_vsi *vsi = i40e_find_vsi_from_id(pf, vsi_id);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000178
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700179 return (vsi && (vsi->vf_id == vf->vf_id));
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000180}
181
182/**
183 * i40e_vc_isvalid_queue_id
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000184 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000185 * @vsi_id: vsi id
186 * @qid: vsi relative queue id
187 *
188 * check for the valid queue id
189 **/
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700190static inline bool i40e_vc_isvalid_queue_id(struct i40e_vf *vf, u16 vsi_id,
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000191 u8 qid)
192{
193 struct i40e_pf *pf = vf->pf;
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700194 struct i40e_vsi *vsi = i40e_find_vsi_from_id(pf, vsi_id);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000195
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700196 return (vsi && (qid < vsi->alloc_queue_pairs));
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000197}
198
199/**
200 * i40e_vc_isvalid_vector_id
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000201 * @vf: pointer to the VF info
202 * @vector_id: VF relative vector id
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000203 *
204 * check for the valid vector id
205 **/
206static inline bool i40e_vc_isvalid_vector_id(struct i40e_vf *vf, u8 vector_id)
207{
208 struct i40e_pf *pf = vf->pf;
209
Mitch Williams9347eb72014-02-11 08:26:32 +0000210 return vector_id < pf->hw.func_caps.num_msix_vectors_vf;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000211}
212
213/***********************vf resource mgmt routines*****************/
214
215/**
216 * i40e_vc_get_pf_queue_id
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000217 * @vf: pointer to the VF info
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700218 * @vsi_id: id of VSI as provided by the FW
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000219 * @vsi_queue_id: vsi relative queue id
220 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000221 * return PF relative queue id
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000222 **/
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700223static u16 i40e_vc_get_pf_queue_id(struct i40e_vf *vf, u16 vsi_id,
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000224 u8 vsi_queue_id)
225{
226 struct i40e_pf *pf = vf->pf;
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700227 struct i40e_vsi *vsi = i40e_find_vsi_from_id(pf, vsi_id);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000228 u16 pf_queue_id = I40E_QUEUE_END_OF_LIST;
229
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700230 if (!vsi)
231 return pf_queue_id;
232
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000233 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/**
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000245 * i40e_config_irq_link_list
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000246 * @vf: pointer to the VF info
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700247 * @vsi_id: id of VSI as given by the FW
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000248 * @vecmap: irq map info
249 *
250 * configure irq link list from the map
251 **/
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700252static void i40e_config_irq_link_list(struct i40e_vf *vf, u16 vsi_id,
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000253 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(
Mitch Williams9347eb72014-02-11 08:26:32 +0000270 ((pf->hw.func_caps.num_msix_vectors_vf - 1) * vf->vf_id) +
271 (vector_id - 1));
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000272
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;
Wei Yongjun48366502013-09-24 05:17:36 +0000279 for_each_set_bit(vsi_queue_id, &tempmap, I40E_MAX_VSI_QP) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400280 linklistmap |= (BIT(I40E_VIRTCHNL_SUPPORTED_QTYPES *
281 vsi_queue_id));
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000282 }
283
284 tempmap = vecmap->txq_map;
Wei Yongjun48366502013-09-24 05:17:36 +0000285 for_each_set_bit(vsi_queue_id, &tempmap, I40E_MAX_VSI_QP) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400286 linklistmap |= (BIT(I40E_VIRTCHNL_SUPPORTED_QTYPES *
287 vsi_queue_id + 1));
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000288 }
289
290 next_q = find_first_bit(&linklistmap,
291 (I40E_MAX_VSI_QP *
292 I40E_VIRTCHNL_SUPPORTED_QTYPES));
Mitch Williamsb82bc49e2015-11-06 15:26:10 -0800293 vsi_queue_id = next_q / I40E_VIRTCHNL_SUPPORTED_QTYPES;
294 qtype = next_q % I40E_VIRTCHNL_SUPPORTED_QTYPES;
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700295 pf_queue_id = i40e_vc_get_pf_queue_id(vf, vsi_id, vsi_queue_id);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000296 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);
Mitch Williams829af3a2013-12-18 13:46:00 +0000318 if (next_q <
319 (I40E_MAX_VSI_QP * I40E_VIRTCHNL_SUPPORTED_QTYPES)) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000320 vsi_queue_id = next_q / I40E_VIRTCHNL_SUPPORTED_QTYPES;
321 qtype = next_q % I40E_VIRTCHNL_SUPPORTED_QTYPES;
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700322 pf_queue_id = i40e_vc_get_pf_queue_id(vf, vsi_id,
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000323 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) |
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400333 BIT(I40E_QINT_RQCTL_CAUSE_ENA_SHIFT) |
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000334 (itr_idx << I40E_QINT_RQCTL_ITR_INDX_SHIFT);
335 wr32(hw, reg_idx, reg);
336 }
337
Anjali Singhai Jainb8262a62015-07-10 19:36:08 -0400338 /* 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
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000350irq_list_done:
351 i40e_flush(hw);
352}
353
354/**
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -0600355 * i40e_release_iwarp_qvlist
356 * @vf: pointer to the VF.
357 *
358 **/
359static void i40e_release_iwarp_qvlist(struct i40e_vf *vf)
360{
361 struct i40e_pf *pf = vf->pf;
362 struct i40e_virtchnl_iwarp_qvlist_info *qvlist_info = vf->qvlist_info;
363 u32 msix_vf;
364 u32 i;
365
366 if (!vf->qvlist_info)
367 return;
368
369 msix_vf = pf->hw.func_caps.num_msix_vectors_vf;
370 for (i = 0; i < qvlist_info->num_vectors; i++) {
371 struct i40e_virtchnl_iwarp_qv_info *qv_info;
372 u32 next_q_index, next_q_type;
373 struct i40e_hw *hw = &pf->hw;
374 u32 v_idx, reg_idx, reg;
375
376 qv_info = &qvlist_info->qv_info[i];
377 if (!qv_info)
378 continue;
379 v_idx = qv_info->v_idx;
380 if (qv_info->ceq_idx != I40E_QUEUE_INVALID_IDX) {
381 /* Figure out the queue after CEQ and make that the
382 * first queue.
383 */
384 reg_idx = (msix_vf - 1) * vf->vf_id + qv_info->ceq_idx;
385 reg = rd32(hw, I40E_VPINT_CEQCTL(reg_idx));
386 next_q_index = (reg & I40E_VPINT_CEQCTL_NEXTQ_INDX_MASK)
387 >> I40E_VPINT_CEQCTL_NEXTQ_INDX_SHIFT;
388 next_q_type = (reg & I40E_VPINT_CEQCTL_NEXTQ_TYPE_MASK)
389 >> I40E_VPINT_CEQCTL_NEXTQ_TYPE_SHIFT;
390
391 reg_idx = ((msix_vf - 1) * vf->vf_id) + (v_idx - 1);
392 reg = (next_q_index &
393 I40E_VPINT_LNKLSTN_FIRSTQ_INDX_MASK) |
394 (next_q_type <<
395 I40E_VPINT_LNKLSTN_FIRSTQ_TYPE_SHIFT);
396
397 wr32(hw, I40E_VPINT_LNKLSTN(reg_idx), reg);
398 }
399 }
400 kfree(vf->qvlist_info);
401 vf->qvlist_info = NULL;
402}
403
404/**
405 * i40e_config_iwarp_qvlist
406 * @vf: pointer to the VF info
407 * @qvlist_info: queue and vector list
408 *
409 * Return 0 on success or < 0 on error
410 **/
411static int i40e_config_iwarp_qvlist(struct i40e_vf *vf,
412 struct i40e_virtchnl_iwarp_qvlist_info *qvlist_info)
413{
414 struct i40e_pf *pf = vf->pf;
415 struct i40e_hw *hw = &pf->hw;
416 struct i40e_virtchnl_iwarp_qv_info *qv_info;
417 u32 v_idx, i, reg_idx, reg;
418 u32 next_q_idx, next_q_type;
419 u32 msix_vf, size;
420
421 size = sizeof(struct i40e_virtchnl_iwarp_qvlist_info) +
422 (sizeof(struct i40e_virtchnl_iwarp_qv_info) *
423 (qvlist_info->num_vectors - 1));
424 vf->qvlist_info = kzalloc(size, GFP_KERNEL);
425 vf->qvlist_info->num_vectors = qvlist_info->num_vectors;
426
427 msix_vf = pf->hw.func_caps.num_msix_vectors_vf;
428 for (i = 0; i < qvlist_info->num_vectors; i++) {
429 qv_info = &qvlist_info->qv_info[i];
430 if (!qv_info)
431 continue;
432 v_idx = qv_info->v_idx;
433
434 /* Validate vector id belongs to this vf */
435 if (!i40e_vc_isvalid_vector_id(vf, v_idx))
436 goto err;
437
438 vf->qvlist_info->qv_info[i] = *qv_info;
439
440 reg_idx = ((msix_vf - 1) * vf->vf_id) + (v_idx - 1);
441 /* We might be sharing the interrupt, so get the first queue
442 * index and type, push it down the list by adding the new
443 * queue on top. Also link it with the new queue in CEQCTL.
444 */
445 reg = rd32(hw, I40E_VPINT_LNKLSTN(reg_idx));
446 next_q_idx = ((reg & I40E_VPINT_LNKLSTN_FIRSTQ_INDX_MASK) >>
447 I40E_VPINT_LNKLSTN_FIRSTQ_INDX_SHIFT);
448 next_q_type = ((reg & I40E_VPINT_LNKLSTN_FIRSTQ_TYPE_MASK) >>
449 I40E_VPINT_LNKLSTN_FIRSTQ_TYPE_SHIFT);
450
451 if (qv_info->ceq_idx != I40E_QUEUE_INVALID_IDX) {
452 reg_idx = (msix_vf - 1) * vf->vf_id + qv_info->ceq_idx;
453 reg = (I40E_VPINT_CEQCTL_CAUSE_ENA_MASK |
454 (v_idx << I40E_VPINT_CEQCTL_MSIX_INDX_SHIFT) |
455 (qv_info->itr_idx << I40E_VPINT_CEQCTL_ITR_INDX_SHIFT) |
456 (next_q_type << I40E_VPINT_CEQCTL_NEXTQ_TYPE_SHIFT) |
457 (next_q_idx << I40E_VPINT_CEQCTL_NEXTQ_INDX_SHIFT));
458 wr32(hw, I40E_VPINT_CEQCTL(reg_idx), reg);
459
460 reg_idx = ((msix_vf - 1) * vf->vf_id) + (v_idx - 1);
461 reg = (qv_info->ceq_idx &
462 I40E_VPINT_LNKLSTN_FIRSTQ_INDX_MASK) |
463 (I40E_QUEUE_TYPE_PE_CEQ <<
464 I40E_VPINT_LNKLSTN_FIRSTQ_TYPE_SHIFT);
465 wr32(hw, I40E_VPINT_LNKLSTN(reg_idx), reg);
466 }
467
468 if (qv_info->aeq_idx != I40E_QUEUE_INVALID_IDX) {
469 reg = (I40E_VPINT_AEQCTL_CAUSE_ENA_MASK |
470 (v_idx << I40E_VPINT_AEQCTL_MSIX_INDX_SHIFT) |
471 (qv_info->itr_idx << I40E_VPINT_AEQCTL_ITR_INDX_SHIFT));
472
473 wr32(hw, I40E_VPINT_AEQCTL(vf->vf_id), reg);
474 }
475 }
476
477 return 0;
478err:
479 kfree(vf->qvlist_info);
480 vf->qvlist_info = NULL;
481 return -EINVAL;
482}
483
484/**
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000485 * i40e_config_vsi_tx_queue
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000486 * @vf: pointer to the VF info
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700487 * @vsi_id: id of VSI as provided by the FW
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000488 * @vsi_queue_id: vsi relative queue index
489 * @info: config. info
490 *
491 * configure tx queue
492 **/
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700493static int i40e_config_vsi_tx_queue(struct i40e_vf *vf, u16 vsi_id,
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000494 u16 vsi_queue_id,
495 struct i40e_virtchnl_txq_info *info)
496{
497 struct i40e_pf *pf = vf->pf;
498 struct i40e_hw *hw = &pf->hw;
499 struct i40e_hmc_obj_txq tx_ctx;
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700500 struct i40e_vsi *vsi;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000501 u16 pf_queue_id;
502 u32 qtx_ctl;
503 int ret = 0;
504
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700505 pf_queue_id = i40e_vc_get_pf_queue_id(vf, vsi_id, vsi_queue_id);
506 vsi = i40e_find_vsi_from_id(pf, vsi_id);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000507
508 /* clear the context structure first */
509 memset(&tx_ctx, 0, sizeof(struct i40e_hmc_obj_txq));
510
511 /* only set the required fields */
512 tx_ctx.base = info->dma_ring_addr / 128;
513 tx_ctx.qlen = info->ring_len;
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700514 tx_ctx.rdylist = le16_to_cpu(vsi->info.qs_handle[0]);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000515 tx_ctx.rdylist_act = 0;
Ashish Shah5d298962014-05-22 06:31:25 +0000516 tx_ctx.head_wb_ena = info->headwb_enabled;
517 tx_ctx.head_wb_addr = info->dma_headwb_addr;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000518
519 /* clear the context in the HMC */
520 ret = i40e_clear_lan_tx_queue_context(hw, pf_queue_id);
521 if (ret) {
522 dev_err(&pf->pdev->dev,
523 "Failed to clear VF LAN Tx queue context %d, error: %d\n",
524 pf_queue_id, ret);
525 ret = -ENOENT;
526 goto error_context;
527 }
528
529 /* set the context in the HMC */
530 ret = i40e_set_lan_tx_queue_context(hw, pf_queue_id, &tx_ctx);
531 if (ret) {
532 dev_err(&pf->pdev->dev,
533 "Failed to set VF LAN Tx queue context %d error: %d\n",
534 pf_queue_id, ret);
535 ret = -ENOENT;
536 goto error_context;
537 }
538
539 /* associate this queue with the PCI VF function */
540 qtx_ctl = I40E_QTX_CTL_VF_QUEUE;
Shannon Nelson13fd9772013-09-28 07:14:19 +0000541 qtx_ctl |= ((hw->pf_id << I40E_QTX_CTL_PF_INDX_SHIFT)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000542 & I40E_QTX_CTL_PF_INDX_MASK);
543 qtx_ctl |= (((vf->vf_id + hw->func_caps.vf_base_id)
544 << I40E_QTX_CTL_VFVM_INDX_SHIFT)
545 & I40E_QTX_CTL_VFVM_INDX_MASK);
546 wr32(hw, I40E_QTX_CTL(pf_queue_id), qtx_ctl);
547 i40e_flush(hw);
548
549error_context:
550 return ret;
551}
552
553/**
554 * i40e_config_vsi_rx_queue
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000555 * @vf: pointer to the VF info
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700556 * @vsi_id: id of VSI as provided by the FW
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000557 * @vsi_queue_id: vsi relative queue index
558 * @info: config. info
559 *
560 * configure rx queue
561 **/
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700562static int i40e_config_vsi_rx_queue(struct i40e_vf *vf, u16 vsi_id,
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000563 u16 vsi_queue_id,
564 struct i40e_virtchnl_rxq_info *info)
565{
566 struct i40e_pf *pf = vf->pf;
567 struct i40e_hw *hw = &pf->hw;
568 struct i40e_hmc_obj_rxq rx_ctx;
569 u16 pf_queue_id;
570 int ret = 0;
571
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700572 pf_queue_id = i40e_vc_get_pf_queue_id(vf, vsi_id, vsi_queue_id);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000573
574 /* clear the context structure first */
575 memset(&rx_ctx, 0, sizeof(struct i40e_hmc_obj_rxq));
576
577 /* only set the required fields */
578 rx_ctx.base = info->dma_ring_addr / 128;
579 rx_ctx.qlen = info->ring_len;
580
581 if (info->splithdr_enabled) {
582 rx_ctx.hsplit_0 = I40E_RX_SPLIT_L2 |
583 I40E_RX_SPLIT_IP |
584 I40E_RX_SPLIT_TCP_UDP |
585 I40E_RX_SPLIT_SCTP;
586 /* header length validation */
587 if (info->hdr_size > ((2 * 1024) - 64)) {
588 ret = -EINVAL;
589 goto error_param;
590 }
591 rx_ctx.hbuff = info->hdr_size >> I40E_RXQ_CTX_HBUFF_SHIFT;
592
593 /* set splitalways mode 10b */
Mitch Williamsd6b3bca2016-01-15 14:33:08 -0800594 rx_ctx.dtype = I40E_RX_DTYPE_HEADER_SPLIT;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000595 }
596
597 /* databuffer length validation */
598 if (info->databuffer_size > ((16 * 1024) - 128)) {
599 ret = -EINVAL;
600 goto error_param;
601 }
602 rx_ctx.dbuff = info->databuffer_size >> I40E_RXQ_CTX_DBUFF_SHIFT;
603
604 /* max pkt. length validation */
605 if (info->max_pkt_size >= (16 * 1024) || info->max_pkt_size < 64) {
606 ret = -EINVAL;
607 goto error_param;
608 }
609 rx_ctx.rxmax = info->max_pkt_size;
610
611 /* enable 32bytes desc always */
612 rx_ctx.dsize = 1;
613
614 /* default values */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000615 rx_ctx.lrxqthresh = 2;
616 rx_ctx.crcstrip = 1;
Mitch Williams50d41652014-04-09 05:58:55 +0000617 rx_ctx.prefena = 1;
Shannon Nelsonc1d11ce2014-07-29 04:01:03 +0000618 rx_ctx.l2tsel = 1;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000619
620 /* clear the context in the HMC */
621 ret = i40e_clear_lan_rx_queue_context(hw, pf_queue_id);
622 if (ret) {
623 dev_err(&pf->pdev->dev,
624 "Failed to clear VF LAN Rx queue context %d, error: %d\n",
625 pf_queue_id, ret);
626 ret = -ENOENT;
627 goto error_param;
628 }
629
630 /* set the context in the HMC */
631 ret = i40e_set_lan_rx_queue_context(hw, pf_queue_id, &rx_ctx);
632 if (ret) {
633 dev_err(&pf->pdev->dev,
634 "Failed to set VF LAN Rx queue context %d error: %d\n",
635 pf_queue_id, ret);
636 ret = -ENOENT;
637 goto error_param;
638 }
639
640error_param:
641 return ret;
642}
643
644/**
645 * i40e_alloc_vsi_res
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000646 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000647 * @type: type of VSI to allocate
648 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000649 * alloc VF vsi context & resources
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000650 **/
651static int i40e_alloc_vsi_res(struct i40e_vf *vf, enum i40e_vsi_type type)
652{
653 struct i40e_mac_filter *f = NULL;
654 struct i40e_pf *pf = vf->pf;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000655 struct i40e_vsi *vsi;
656 int ret = 0;
657
658 vsi = i40e_vsi_setup(pf, type, pf->vsi[pf->lan_vsi]->seid, vf->vf_id);
659
660 if (!vsi) {
661 dev_err(&pf->pdev->dev,
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000662 "add vsi failed for VF %d, aq_err %d\n",
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000663 vf->vf_id, pf->hw.aq.asq_last_status);
664 ret = -ENOENT;
665 goto error_alloc_vsi_res;
666 }
667 if (type == I40E_VSI_SRIOV) {
Greg Rose1a103702013-11-28 06:42:39 +0000668 u8 brdcast[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400669
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700670 vf->lan_vsi_idx = vsi->idx;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000671 vf->lan_vsi_id = vsi->id;
Greg Rose6c12fcb2013-11-28 06:39:34 +0000672 /* If the port VLAN has been configured and then the
673 * VF driver was removed then the VSI port VLAN
674 * configuration was destroyed. Check if there is
675 * a port VLAN and restore the VSI configuration if
676 * needed.
677 */
678 if (vf->port_vlan_id)
679 i40e_vsi_add_pvid(vsi, vf->port_vlan_id);
Kiran Patil21659032015-09-30 14:09:03 -0400680
681 spin_lock_bh(&vsi->mac_filter_list_lock);
Mitch Williamsb7b713a2015-11-19 11:34:17 -0800682 if (is_valid_ether_addr(vf->default_lan_addr.addr)) {
683 f = i40e_add_filter(vsi, vf->default_lan_addr.addr,
684 vf->port_vlan_id ? vf->port_vlan_id : -1,
685 true, false);
686 if (!f)
687 dev_info(&pf->pdev->dev,
688 "Could not add MAC filter %pM for VF %d\n",
689 vf->default_lan_addr.addr, vf->vf_id);
690 }
Mitch Williamse9951632015-04-27 14:57:13 -0400691 f = i40e_add_filter(vsi, brdcast,
692 vf->port_vlan_id ? vf->port_vlan_id : -1,
Greg Rose1a103702013-11-28 06:42:39 +0000693 true, false);
694 if (!f)
695 dev_info(&pf->pdev->dev,
696 "Could not allocate VF broadcast filter\n");
Kiran Patil21659032015-09-30 14:09:03 -0400697 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000698 }
Neerav Parikh6dbbbfb2013-11-26 10:49:24 +0000699
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000700 /* program mac filter */
Jesse Brandeburg17652c62015-11-05 17:01:02 -0800701 ret = i40e_sync_vsi_filters(vsi);
Mitch Williamsfd1646e2014-02-13 03:48:44 -0800702 if (ret)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000703 dev_err(&pf->pdev->dev, "Unable to program ucast filters\n");
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000704
Mitch Williams6b192892014-03-06 09:02:29 +0000705 /* Set VF bandwidth if specified */
706 if (vf->tx_rate) {
707 ret = i40e_aq_config_vsi_bw_limit(&pf->hw, vsi->seid,
708 vf->tx_rate / 50, 0, NULL);
709 if (ret)
710 dev_err(&pf->pdev->dev, "Unable to set tx rate, VF %d, error code %d.\n",
711 vf->vf_id, ret);
712 }
713
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000714error_alloc_vsi_res:
715 return ret;
716}
717
718/**
Mitch Williams805bd5b2013-11-28 06:39:26 +0000719 * i40e_enable_vf_mappings
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000720 * @vf: pointer to the VF info
Mitch Williams805bd5b2013-11-28 06:39:26 +0000721 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000722 * enable VF mappings
Mitch Williams805bd5b2013-11-28 06:39:26 +0000723 **/
724static void i40e_enable_vf_mappings(struct i40e_vf *vf)
725{
726 struct i40e_pf *pf = vf->pf;
727 struct i40e_hw *hw = &pf->hw;
728 u32 reg, total_queue_pairs = 0;
729 int j;
730
731 /* Tell the hardware we're using noncontiguous mapping. HW requires
732 * that VF queues be mapped using this method, even when they are
733 * contiguous in real life
734 */
Shannon Nelson272cdaf22016-02-17 16:12:21 -0800735 i40e_write_rx_ctl(hw, I40E_VSILAN_QBASE(vf->lan_vsi_id),
736 I40E_VSILAN_QBASE_VSIQTABLE_ENA_MASK);
Mitch Williams805bd5b2013-11-28 06:39:26 +0000737
738 /* enable VF vplan_qtable mappings */
739 reg = I40E_VPLAN_MAPENA_TXRX_ENA_MASK;
740 wr32(hw, I40E_VPLAN_MAPENA(vf->vf_id), reg);
741
742 /* map PF queues to VF queues */
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700743 for (j = 0; j < pf->vsi[vf->lan_vsi_idx]->alloc_queue_pairs; j++) {
744 u16 qid = i40e_vc_get_pf_queue_id(vf, vf->lan_vsi_id, j);
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400745
Mitch Williams805bd5b2013-11-28 06:39:26 +0000746 reg = (qid & I40E_VPLAN_QTABLE_QINDEX_MASK);
747 wr32(hw, I40E_VPLAN_QTABLE(total_queue_pairs, vf->vf_id), reg);
748 total_queue_pairs++;
749 }
750
751 /* map PF queues to VSI */
752 for (j = 0; j < 7; j++) {
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700753 if (j * 2 >= pf->vsi[vf->lan_vsi_idx]->alloc_queue_pairs) {
Mitch Williams805bd5b2013-11-28 06:39:26 +0000754 reg = 0x07FF07FF; /* unused */
755 } else {
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700756 u16 qid = i40e_vc_get_pf_queue_id(vf, vf->lan_vsi_id,
Mitch Williams805bd5b2013-11-28 06:39:26 +0000757 j * 2);
758 reg = qid;
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700759 qid = i40e_vc_get_pf_queue_id(vf, vf->lan_vsi_id,
Mitch Williams805bd5b2013-11-28 06:39:26 +0000760 (j * 2) + 1);
761 reg |= qid << 16;
762 }
Shannon Nelson272cdaf22016-02-17 16:12:21 -0800763 i40e_write_rx_ctl(hw, I40E_VSILAN_QTABLE(j, vf->lan_vsi_id),
764 reg);
Mitch Williams805bd5b2013-11-28 06:39:26 +0000765 }
766
767 i40e_flush(hw);
768}
769
770/**
771 * i40e_disable_vf_mappings
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000772 * @vf: pointer to the VF info
Mitch Williams805bd5b2013-11-28 06:39:26 +0000773 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000774 * disable VF mappings
Mitch Williams805bd5b2013-11-28 06:39:26 +0000775 **/
776static void i40e_disable_vf_mappings(struct i40e_vf *vf)
777{
778 struct i40e_pf *pf = vf->pf;
779 struct i40e_hw *hw = &pf->hw;
780 int i;
781
782 /* disable qp mappings */
783 wr32(hw, I40E_VPLAN_MAPENA(vf->vf_id), 0);
784 for (i = 0; i < I40E_MAX_VSI_QP; i++)
785 wr32(hw, I40E_VPLAN_QTABLE(i, vf->vf_id),
786 I40E_QUEUE_END_OF_LIST);
787 i40e_flush(hw);
788}
789
790/**
791 * i40e_free_vf_res
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000792 * @vf: pointer to the VF info
Mitch Williams805bd5b2013-11-28 06:39:26 +0000793 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000794 * free VF resources
Mitch Williams805bd5b2013-11-28 06:39:26 +0000795 **/
796static void i40e_free_vf_res(struct i40e_vf *vf)
797{
798 struct i40e_pf *pf = vf->pf;
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000799 struct i40e_hw *hw = &pf->hw;
800 u32 reg_idx, reg;
801 int i, msix_vf;
Mitch Williams805bd5b2013-11-28 06:39:26 +0000802
803 /* free vsi & disconnect it from the parent uplink */
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700804 if (vf->lan_vsi_idx) {
805 i40e_vsi_release(pf->vsi[vf->lan_vsi_idx]);
806 vf->lan_vsi_idx = 0;
Mitch Williams805bd5b2013-11-28 06:39:26 +0000807 vf->lan_vsi_id = 0;
808 }
Mitch Williams9347eb72014-02-11 08:26:32 +0000809 msix_vf = pf->hw.func_caps.num_msix_vectors_vf;
810
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000811 /* disable interrupts so the VF starts in a known state */
812 for (i = 0; i < msix_vf; i++) {
813 /* format is same for both registers */
814 if (0 == i)
815 reg_idx = I40E_VFINT_DYN_CTL0(vf->vf_id);
816 else
817 reg_idx = I40E_VFINT_DYN_CTLN(((msix_vf - 1) *
818 (vf->vf_id))
819 + (i - 1));
820 wr32(hw, reg_idx, I40E_VFINT_DYN_CTLN_CLEARPBA_MASK);
821 i40e_flush(hw);
822 }
Mitch Williams805bd5b2013-11-28 06:39:26 +0000823
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000824 /* clear the irq settings */
825 for (i = 0; i < msix_vf; i++) {
826 /* format is same for both registers */
827 if (0 == i)
828 reg_idx = I40E_VPINT_LNKLST0(vf->vf_id);
829 else
830 reg_idx = I40E_VPINT_LNKLSTN(((msix_vf - 1) *
831 (vf->vf_id))
832 + (i - 1));
833 reg = (I40E_VPINT_LNKLSTN_FIRSTQ_TYPE_MASK |
834 I40E_VPINT_LNKLSTN_FIRSTQ_INDX_MASK);
835 wr32(hw, reg_idx, reg);
836 i40e_flush(hw);
837 }
Mitch Williams805bd5b2013-11-28 06:39:26 +0000838 /* reset some of the state varibles keeping
839 * track of the resources
840 */
841 vf->num_queue_pairs = 0;
842 vf->vf_states = 0;
Mitch Williams21be99e2015-08-31 19:54:48 -0400843 clear_bit(I40E_VF_STAT_INIT, &vf->vf_states);
Mitch Williams805bd5b2013-11-28 06:39:26 +0000844}
845
846/**
847 * i40e_alloc_vf_res
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000848 * @vf: pointer to the VF info
Mitch Williams805bd5b2013-11-28 06:39:26 +0000849 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000850 * allocate VF resources
Mitch Williams805bd5b2013-11-28 06:39:26 +0000851 **/
852static int i40e_alloc_vf_res(struct i40e_vf *vf)
853{
854 struct i40e_pf *pf = vf->pf;
855 int total_queue_pairs = 0;
856 int ret;
857
858 /* allocate hw vsi context & associated resources */
859 ret = i40e_alloc_vsi_res(vf, I40E_VSI_SRIOV);
860 if (ret)
861 goto error_alloc;
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700862 total_queue_pairs += pf->vsi[vf->lan_vsi_idx]->alloc_queue_pairs;
Mitch Williams805bd5b2013-11-28 06:39:26 +0000863 set_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps);
864
865 /* store the total qps number for the runtime
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000866 * VF req validation
Mitch Williams805bd5b2013-11-28 06:39:26 +0000867 */
868 vf->num_queue_pairs = total_queue_pairs;
869
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000870 /* VF is now completely initialized */
Mitch Williams805bd5b2013-11-28 06:39:26 +0000871 set_bit(I40E_VF_STAT_INIT, &vf->vf_states);
872
873error_alloc:
874 if (ret)
875 i40e_free_vf_res(vf);
876
877 return ret;
878}
879
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000880#define VF_DEVICE_STATUS 0xAA
881#define VF_TRANS_PENDING_MASK 0x20
882/**
883 * i40e_quiesce_vf_pci
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000884 * @vf: pointer to the VF structure
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000885 *
886 * Wait for VF PCI transactions to be cleared after reset. Returns -EIO
887 * if the transactions never clear.
888 **/
889static int i40e_quiesce_vf_pci(struct i40e_vf *vf)
890{
891 struct i40e_pf *pf = vf->pf;
892 struct i40e_hw *hw = &pf->hw;
893 int vf_abs_id, i;
894 u32 reg;
895
Mitch Williamsb141d612013-11-28 06:39:36 +0000896 vf_abs_id = vf->vf_id + hw->func_caps.vf_base_id;
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000897
898 wr32(hw, I40E_PF_PCI_CIAA,
899 VF_DEVICE_STATUS | (vf_abs_id << I40E_PF_PCI_CIAA_VF_NUM_SHIFT));
900 for (i = 0; i < 100; i++) {
901 reg = rd32(hw, I40E_PF_PCI_CIAD);
902 if ((reg & VF_TRANS_PENDING_MASK) == 0)
903 return 0;
904 udelay(1);
905 }
906 return -EIO;
907}
908
Mitch Williams805bd5b2013-11-28 06:39:26 +0000909/**
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000910 * i40e_reset_vf
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000911 * @vf: pointer to the VF structure
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000912 * @flr: VFLR was issued or not
913 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000914 * reset the VF
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000915 **/
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000916void i40e_reset_vf(struct i40e_vf *vf, bool flr)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000917{
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000918 struct i40e_pf *pf = vf->pf;
919 struct i40e_hw *hw = &pf->hw;
Mitch Williams7e5a3132016-03-10 14:59:47 -0800920 u32 reg, reg_idx, bit_idx;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000921 bool rsd = false;
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000922 int i;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000923
Mitch Williams3ba9bcb2015-01-09 11:18:15 +0000924 if (test_and_set_bit(__I40E_VF_DISABLE, &pf->state))
925 return;
926
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000927 /* warn the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000928 clear_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states);
929
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000930 /* In the case of a VFLR, the HW has already reset the VF and we
931 * just need to clean up, so don't hit the VFRTRIG register.
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000932 */
933 if (!flr) {
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000934 /* reset VF using VPGEN_VFRTRIG reg */
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000935 reg = rd32(hw, I40E_VPGEN_VFRTRIG(vf->vf_id));
936 reg |= I40E_VPGEN_VFRTRIG_VFSWR_MASK;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000937 wr32(hw, I40E_VPGEN_VFRTRIG(vf->vf_id), reg);
938 i40e_flush(hw);
939 }
940
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000941 if (i40e_quiesce_vf_pci(vf))
942 dev_err(&pf->pdev->dev, "VF %d PCI transactions stuck\n",
943 vf->vf_id);
944
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000945 /* poll VPGEN_VFRSTAT reg to make sure
946 * that reset is complete
947 */
Mitch Williams1750a222015-01-09 11:18:13 +0000948 for (i = 0; i < 10; i++) {
949 /* VF reset requires driver to first reset the VF and then
950 * poll the status register to make sure that the reset
951 * completed successfully. Due to internal HW FIFO flushes,
952 * we must wait 10ms before the register will be valid.
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000953 */
Mitch Williams1750a222015-01-09 11:18:13 +0000954 usleep_range(10000, 20000);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000955 reg = rd32(hw, I40E_VPGEN_VFRSTAT(vf->vf_id));
956 if (reg & I40E_VPGEN_VFRSTAT_VFRD_MASK) {
957 rsd = true;
958 break;
959 }
960 }
961
Anjali Singhai Jain57175ac2015-04-07 19:45:35 -0400962 if (flr)
963 usleep_range(10000, 20000);
964
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000965 if (!rsd)
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000966 dev_err(&pf->pdev->dev, "VF reset check timeout on VF %d\n",
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000967 vf->vf_id);
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000968 wr32(hw, I40E_VFGEN_RSTAT1(vf->vf_id), I40E_VFR_COMPLETED);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000969 /* clear the reset bit in the VPGEN_VFRTRIG reg */
970 reg = rd32(hw, I40E_VPGEN_VFRTRIG(vf->vf_id));
971 reg &= ~I40E_VPGEN_VFRTRIG_VFSWR_MASK;
972 wr32(hw, I40E_VPGEN_VFRTRIG(vf->vf_id), reg);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000973
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000974 /* On initial reset, we won't have any queues */
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700975 if (vf->lan_vsi_idx == 0)
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000976 goto complete_reset;
977
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700978 i40e_vsi_control_rings(pf->vsi[vf->lan_vsi_idx], false);
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000979complete_reset:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000980 /* reallocate VF resources to reset the VSI state */
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000981 i40e_free_vf_res(vf);
Mitch Williams21be99e2015-08-31 19:54:48 -0400982 if (!i40e_alloc_vf_res(vf)) {
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -0600983 int abs_vf_id = vf->vf_id + hw->func_caps.vf_base_id;
Mitch Williams21be99e2015-08-31 19:54:48 -0400984 i40e_enable_vf_mappings(vf);
985 set_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states);
986 clear_bit(I40E_VF_STAT_DISABLED, &vf->vf_states);
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -0600987 i40e_notify_client_of_vf_reset(pf, abs_vf_id);
Mitch Williams21be99e2015-08-31 19:54:48 -0400988 }
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000989 /* tell the VF the reset is done */
990 wr32(hw, I40E_VFGEN_RSTAT1(vf->vf_id), I40E_VFR_VFACTIVE);
Mitch Williams7e5a3132016-03-10 14:59:47 -0800991
992 /* clear the VFLR bit in GLGEN_VFLRSTAT */
993 reg_idx = (hw->func_caps.vf_base_id + vf->vf_id) / 32;
994 bit_idx = (hw->func_caps.vf_base_id + vf->vf_id) % 32;
995 wr32(hw, I40E_GLGEN_VFLRSTAT(reg_idx), BIT(bit_idx));
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000996 i40e_flush(hw);
Mitch Williams3ba9bcb2015-01-09 11:18:15 +0000997 clear_bit(__I40E_VF_DISABLE, &pf->state);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000998}
Greg Rosec3542292013-12-13 08:38:38 +0000999
1000/**
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001001 * i40e_free_vfs
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001002 * @pf: pointer to the PF structure
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001003 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001004 * free VF resources
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001005 **/
1006void i40e_free_vfs(struct i40e_pf *pf)
1007{
Mitch Williamsf7414532013-11-28 06:39:40 +00001008 struct i40e_hw *hw = &pf->hw;
1009 u32 reg_idx, bit_idx;
1010 int i, tmp, vf_id;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001011
1012 if (!pf->vf)
1013 return;
Mitch Williams3ba9bcb2015-01-09 11:18:15 +00001014 while (test_and_set_bit(__I40E_VF_DISABLE, &pf->state))
1015 usleep_range(1000, 2000);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001016
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06001017 i40e_notify_client_of_vf_enable(pf, 0);
Mitch Williams0325fca2015-08-26 15:14:09 -04001018 for (i = 0; i < pf->num_alloc_vfs; i++)
1019 if (test_bit(I40E_VF_STAT_INIT, &pf->vf[i].vf_states))
1020 i40e_vsi_control_rings(pf->vsi[pf->vf[i].lan_vsi_idx],
1021 false);
1022
Mitch A Williams6a9ddb32014-12-09 08:53:01 +00001023 /* Disable IOV before freeing resources. This lets any VF drivers
1024 * running in the host get themselves cleaned up before we yank
1025 * the carpet out from underneath their feet.
1026 */
1027 if (!pci_vfs_assigned(pf->pdev))
1028 pci_disable_sriov(pf->pdev);
Mitch Williams6d7b9672015-03-31 00:45:02 -07001029 else
1030 dev_warn(&pf->pdev->dev, "VFs are assigned - not disabling SR-IOV\n");
Mitch A Williams6a9ddb32014-12-09 08:53:01 +00001031
1032 msleep(20); /* let any messages in transit get finished up */
1033
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001034 /* free up VF resources */
Mitch Williams6c1b5bf2013-11-28 06:39:30 +00001035 tmp = pf->num_alloc_vfs;
1036 pf->num_alloc_vfs = 0;
1037 for (i = 0; i < tmp; i++) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001038 if (test_bit(I40E_VF_STAT_INIT, &pf->vf[i].vf_states))
1039 i40e_free_vf_res(&pf->vf[i]);
1040 /* disable qp mappings */
1041 i40e_disable_vf_mappings(&pf->vf[i]);
1042 }
1043
1044 kfree(pf->vf);
1045 pf->vf = NULL;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001046
Mitch Williams9e5634d2014-04-04 04:43:14 +00001047 /* This check is for when the driver is unloaded while VFs are
1048 * assigned. Setting the number of VFs to 0 through sysfs is caught
1049 * before this function ever gets called.
1050 */
Ethan Zhaoc24817b2014-07-22 18:36:43 +00001051 if (!pci_vfs_assigned(pf->pdev)) {
Mitch Williamsf7414532013-11-28 06:39:40 +00001052 /* Acknowledge VFLR for all VFS. Without this, VFs will fail to
1053 * work correctly when SR-IOV gets re-enabled.
1054 */
1055 for (vf_id = 0; vf_id < tmp; vf_id++) {
1056 reg_idx = (hw->func_caps.vf_base_id + vf_id) / 32;
1057 bit_idx = (hw->func_caps.vf_base_id + vf_id) % 32;
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001058 wr32(hw, I40E_GLGEN_VFLRSTAT(reg_idx), BIT(bit_idx));
Mitch Williamsf7414532013-11-28 06:39:40 +00001059 }
Greg Rosec3542292013-12-13 08:38:38 +00001060 }
Mitch Williams3ba9bcb2015-01-09 11:18:15 +00001061 clear_bit(__I40E_VF_DISABLE, &pf->state);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001062}
1063
1064#ifdef CONFIG_PCI_IOV
1065/**
1066 * i40e_alloc_vfs
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001067 * @pf: pointer to the PF structure
1068 * @num_alloc_vfs: number of VFs to allocate
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001069 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001070 * allocate VF resources
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001071 **/
Mitch Williams4aeec012014-02-13 03:48:47 -08001072int i40e_alloc_vfs(struct i40e_pf *pf, u16 num_alloc_vfs)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001073{
1074 struct i40e_vf *vfs;
1075 int i, ret = 0;
1076
Mitch Williams6c1b5bf2013-11-28 06:39:30 +00001077 /* Disable interrupt 0 so we don't try to handle the VFLR. */
Mitch Williams2ef28cf2013-11-28 06:39:32 +00001078 i40e_irq_dynamic_disable_icr0(pf);
1079
Mitch Williams4aeec012014-02-13 03:48:47 -08001080 /* Check to see if we're just allocating resources for extant VFs */
1081 if (pci_num_vf(pf->pdev) != num_alloc_vfs) {
1082 ret = pci_enable_sriov(pf->pdev, num_alloc_vfs);
1083 if (ret) {
Akeem G Abodunrinde445b32015-10-01 14:37:40 -04001084 pf->flags &= ~I40E_FLAG_VEB_MODE_ENABLED;
Mitch Williams4aeec012014-02-13 03:48:47 -08001085 pf->num_alloc_vfs = 0;
1086 goto err_iov;
1087 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001088 }
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06001089 i40e_notify_client_of_vf_enable(pf, num_alloc_vfs);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001090 /* allocate memory */
Akeem G Abodunrincc6456a2014-02-06 05:51:02 +00001091 vfs = kcalloc(num_alloc_vfs, sizeof(struct i40e_vf), GFP_KERNEL);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001092 if (!vfs) {
1093 ret = -ENOMEM;
1094 goto err_alloc;
1095 }
Mitch Williamsc674d122014-05-20 08:01:40 +00001096 pf->vf = vfs;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001097
1098 /* apply default profile */
1099 for (i = 0; i < num_alloc_vfs; i++) {
1100 vfs[i].pf = pf;
1101 vfs[i].parent_type = I40E_SWITCH_ELEMENT_TYPE_VEB;
1102 vfs[i].vf_id = i;
1103
1104 /* assign default capabilities */
1105 set_bit(I40E_VIRTCHNL_VF_CAP_L2, &vfs[i].vf_caps);
Mitch Williamsc674d122014-05-20 08:01:40 +00001106 vfs[i].spoofchk = true;
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001107 /* VF resources get allocated during reset */
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00001108 i40e_reset_vf(&vfs[i], false);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001109
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001110 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001111 pf->num_alloc_vfs = num_alloc_vfs;
1112
1113err_alloc:
1114 if (ret)
1115 i40e_free_vfs(pf);
1116err_iov:
Mitch Williams6c1b5bf2013-11-28 06:39:30 +00001117 /* Re-enable interrupt 0. */
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08001118 i40e_irq_dynamic_enable_icr0(pf, false);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001119 return ret;
1120}
1121
1122#endif
1123/**
1124 * i40e_pci_sriov_enable
1125 * @pdev: pointer to a pci_dev structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001126 * @num_vfs: number of VFs to allocate
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001127 *
1128 * Enable or change the number of VFs
1129 **/
1130static int i40e_pci_sriov_enable(struct pci_dev *pdev, int num_vfs)
1131{
1132#ifdef CONFIG_PCI_IOV
1133 struct i40e_pf *pf = pci_get_drvdata(pdev);
1134 int pre_existing_vfs = pci_num_vf(pdev);
1135 int err = 0;
1136
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001137 if (test_bit(__I40E_TESTING, &pf->state)) {
Greg Rosee17bc412015-04-16 20:05:59 -04001138 dev_warn(&pdev->dev,
1139 "Cannot enable SR-IOV virtual functions while the device is undergoing diagnostic testing\n");
1140 err = -EPERM;
1141 goto err_out;
1142 }
1143
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001144 if (pre_existing_vfs && pre_existing_vfs != num_vfs)
1145 i40e_free_vfs(pf);
1146 else if (pre_existing_vfs && pre_existing_vfs == num_vfs)
1147 goto out;
1148
1149 if (num_vfs > pf->num_req_vfs) {
Mitch Williams96c8d072015-08-27 11:42:35 -04001150 dev_warn(&pdev->dev, "Unable to enable %d VFs. Limited to %d VFs due to device resource constraints.\n",
1151 num_vfs, pf->num_req_vfs);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001152 err = -EPERM;
1153 goto err_out;
1154 }
1155
Mitch Williams96c8d072015-08-27 11:42:35 -04001156 dev_info(&pdev->dev, "Allocating %d VFs.\n", num_vfs);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001157 err = i40e_alloc_vfs(pf, num_vfs);
1158 if (err) {
1159 dev_warn(&pdev->dev, "Failed to enable SR-IOV: %d\n", err);
1160 goto err_out;
1161 }
1162
1163out:
1164 return num_vfs;
1165
1166err_out:
1167 return err;
1168#endif
1169 return 0;
1170}
1171
1172/**
1173 * i40e_pci_sriov_configure
1174 * @pdev: pointer to a pci_dev structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001175 * @num_vfs: number of VFs to allocate
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001176 *
1177 * Enable or change the number of VFs. Called when the user updates the number
1178 * of VFs in sysfs.
1179 **/
1180int i40e_pci_sriov_configure(struct pci_dev *pdev, int num_vfs)
1181{
1182 struct i40e_pf *pf = pci_get_drvdata(pdev);
1183
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07001184 if (num_vfs) {
1185 if (!(pf->flags & I40E_FLAG_VEB_MODE_ENABLED)) {
1186 pf->flags |= I40E_FLAG_VEB_MODE_ENABLED;
1187 i40e_do_reset_safe(pf,
1188 BIT_ULL(__I40E_PF_RESET_REQUESTED));
1189 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001190 return i40e_pci_sriov_enable(pdev, num_vfs);
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07001191 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001192
Ethan Zhaoc24817b2014-07-22 18:36:43 +00001193 if (!pci_vfs_assigned(pf->pdev)) {
Mitch Williams9e5634d2014-04-04 04:43:14 +00001194 i40e_free_vfs(pf);
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07001195 pf->flags &= ~I40E_FLAG_VEB_MODE_ENABLED;
1196 i40e_do_reset_safe(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED));
Mitch Williams9e5634d2014-04-04 04:43:14 +00001197 } else {
1198 dev_warn(&pdev->dev, "Unable to free VFs because some are assigned to VMs.\n");
1199 return -EINVAL;
1200 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001201 return 0;
1202}
1203
1204/***********************virtual channel routines******************/
1205
1206/**
1207 * i40e_vc_send_msg_to_vf
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001208 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001209 * @v_opcode: virtual channel opcode
1210 * @v_retval: virtual channel return value
1211 * @msg: pointer to the msg buffer
1212 * @msglen: msg length
1213 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001214 * send msg to VF
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001215 **/
1216static int i40e_vc_send_msg_to_vf(struct i40e_vf *vf, u32 v_opcode,
1217 u32 v_retval, u8 *msg, u16 msglen)
1218{
Anjali Singhai Jain6e7b5bd2014-07-10 07:58:21 +00001219 struct i40e_pf *pf;
1220 struct i40e_hw *hw;
1221 int abs_vf_id;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001222 i40e_status aq_ret;
1223
Anjali Singhai Jain6e7b5bd2014-07-10 07:58:21 +00001224 /* validate the request */
1225 if (!vf || vf->vf_id >= vf->pf->num_alloc_vfs)
1226 return -EINVAL;
1227
1228 pf = vf->pf;
1229 hw = &pf->hw;
1230 abs_vf_id = vf->vf_id + hw->func_caps.vf_base_id;
1231
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001232 /* single place to detect unsuccessful return values */
1233 if (v_retval) {
1234 vf->num_invalid_msgs++;
Mitch Williamse7ffb722015-10-26 19:44:37 -04001235 dev_err(&pf->pdev->dev, "VF %d failed opcode %d, error: %d\n",
1236 vf->vf_id, v_opcode, v_retval);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001237 if (vf->num_invalid_msgs >
1238 I40E_DEFAULT_NUM_INVALID_MSGS_ALLOWED) {
1239 dev_err(&pf->pdev->dev,
1240 "Number of invalid messages exceeded for VF %d\n",
1241 vf->vf_id);
1242 dev_err(&pf->pdev->dev, "Use PF Control I/F to enable the VF\n");
1243 set_bit(I40E_VF_STAT_DISABLED, &vf->vf_states);
1244 }
1245 } else {
1246 vf->num_valid_msgs++;
Jingjing Wu5d38c932015-09-28 14:12:39 -04001247 /* reset the invalid counter, if a valid message is received. */
1248 vf->num_invalid_msgs = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001249 }
1250
Ashish Shahf19efbb2014-08-01 13:27:06 -07001251 aq_ret = i40e_aq_send_msg_to_vf(hw, abs_vf_id, v_opcode, v_retval,
Mitch Williams7efa84b2013-11-28 06:39:41 +00001252 msg, msglen, NULL);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001253 if (aq_ret) {
1254 dev_err(&pf->pdev->dev,
1255 "Unable to send the message to VF %d aq_err %d\n",
1256 vf->vf_id, pf->hw.aq.asq_last_status);
1257 return -EIO;
1258 }
1259
1260 return 0;
1261}
1262
1263/**
1264 * i40e_vc_send_resp_to_vf
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001265 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001266 * @opcode: operation code
1267 * @retval: return value
1268 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001269 * send resp msg to VF
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001270 **/
1271static int i40e_vc_send_resp_to_vf(struct i40e_vf *vf,
1272 enum i40e_virtchnl_ops opcode,
1273 i40e_status retval)
1274{
1275 return i40e_vc_send_msg_to_vf(vf, opcode, retval, NULL, 0);
1276}
1277
1278/**
1279 * i40e_vc_get_version_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001280 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001281 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001282 * called from the VF to request the API version used by the PF
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001283 **/
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04001284static int i40e_vc_get_version_msg(struct i40e_vf *vf, u8 *msg)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001285{
1286 struct i40e_virtchnl_version_info info = {
1287 I40E_VIRTCHNL_VERSION_MAJOR, I40E_VIRTCHNL_VERSION_MINOR
1288 };
1289
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04001290 vf->vf_ver = *(struct i40e_virtchnl_version_info *)msg;
Mitch Williams606a5482015-06-04 16:24:00 -04001291 /* VFs running the 1.0 API expect to get 1.0 back or they will cry. */
1292 if (VF_IS_V10(vf))
1293 info.minor = I40E_VIRTCHNL_VERSION_MINOR_NO_VF_CAPS;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001294 return i40e_vc_send_msg_to_vf(vf, I40E_VIRTCHNL_OP_VERSION,
1295 I40E_SUCCESS, (u8 *)&info,
1296 sizeof(struct
1297 i40e_virtchnl_version_info));
1298}
1299
1300/**
1301 * i40e_vc_get_vf_resources_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001302 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001303 * @msg: pointer to the msg buffer
1304 * @msglen: msg length
1305 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001306 * called from the VF to request its resources
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001307 **/
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04001308static int i40e_vc_get_vf_resources_msg(struct i40e_vf *vf, u8 *msg)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001309{
1310 struct i40e_virtchnl_vf_resource *vfres = NULL;
1311 struct i40e_pf *pf = vf->pf;
1312 i40e_status aq_ret = 0;
1313 struct i40e_vsi *vsi;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001314 int num_vsis = 1;
Mitch Williams442b25e2016-03-18 12:18:06 -07001315 int len = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001316 int ret;
1317
1318 if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
1319 aq_ret = I40E_ERR_PARAM;
1320 goto err;
1321 }
1322
1323 len = (sizeof(struct i40e_virtchnl_vf_resource) +
1324 sizeof(struct i40e_virtchnl_vsi_resource) * num_vsis);
1325
1326 vfres = kzalloc(len, GFP_KERNEL);
1327 if (!vfres) {
1328 aq_ret = I40E_ERR_NO_MEMORY;
1329 len = 0;
1330 goto err;
1331 }
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04001332 if (VF_IS_V11(vf))
1333 vf->driver_caps = *(u32 *)msg;
1334 else
1335 vf->driver_caps = I40E_VIRTCHNL_VF_OFFLOAD_L2 |
1336 I40E_VIRTCHNL_VF_OFFLOAD_RSS_REG |
1337 I40E_VIRTCHNL_VF_OFFLOAD_VLAN;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001338
1339 vfres->vf_offload_flags = I40E_VIRTCHNL_VF_OFFLOAD_L2;
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001340 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001341 if (!vsi->info.pvid)
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04001342 vfres->vf_offload_flags |= I40E_VIRTCHNL_VF_OFFLOAD_VLAN;
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06001343
1344 if (i40e_vf_client_capable(pf, vf->vf_id, I40E_CLIENT_IWARP) &&
1345 (vf->driver_caps & I40E_VIRTCHNL_VF_OFFLOAD_IWARP)) {
1346 vfres->vf_offload_flags |= I40E_VIRTCHNL_VF_OFFLOAD_IWARP;
1347 set_bit(I40E_VF_STAT_IWARPENA, &vf->vf_states);
1348 }
1349
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04001350 if (pf->flags & I40E_FLAG_RSS_AQ_CAPABLE) {
1351 if (vf->driver_caps & I40E_VIRTCHNL_VF_OFFLOAD_RSS_AQ)
1352 vfres->vf_offload_flags |=
1353 I40E_VIRTCHNL_VF_OFFLOAD_RSS_AQ;
1354 } else {
1355 vfres->vf_offload_flags |= I40E_VIRTCHNL_VF_OFFLOAD_RSS_REG;
1356 }
Anjali Singhai Jain1f012272015-09-03 17:18:53 -04001357
Anjali Singhai Jain3d0da5b2015-12-22 14:25:05 -08001358 if (pf->flags & I40E_FLAG_MULTIPLE_TCP_UDP_RSS_PCTYPE) {
1359 if (vf->driver_caps & I40E_VIRTCHNL_VF_OFFLOAD_RSS_PCTYPE_V2)
1360 vfres->vf_offload_flags |=
1361 I40E_VIRTCHNL_VF_OFFLOAD_RSS_PCTYPE_V2;
1362 }
1363
Anjali Singhai Jain1f012272015-09-03 17:18:53 -04001364 if (vf->driver_caps & I40E_VIRTCHNL_VF_OFFLOAD_RX_POLLING)
1365 vfres->vf_offload_flags |= I40E_VIRTCHNL_VF_OFFLOAD_RX_POLLING;
1366
Anjali Singhai Jainf6d83d12015-12-22 14:25:07 -08001367 if (pf->flags & I40E_FLAG_WB_ON_ITR_CAPABLE) {
1368 if (vf->driver_caps & I40E_VIRTCHNL_VF_OFFLOAD_WB_ON_ITR)
1369 vfres->vf_offload_flags |=
1370 I40E_VIRTCHNL_VF_OFFLOAD_WB_ON_ITR;
1371 }
1372
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001373 vfres->num_vsis = num_vsis;
1374 vfres->num_queue_pairs = vf->num_queue_pairs;
1375 vfres->max_vectors = pf->hw.func_caps.num_msix_vectors_vf;
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001376 if (vf->lan_vsi_idx) {
Mitch Williams442b25e2016-03-18 12:18:06 -07001377 vfres->vsi_res[0].vsi_id = vf->lan_vsi_id;
1378 vfres->vsi_res[0].vsi_type = I40E_VSI_SRIOV;
1379 vfres->vsi_res[0].num_queue_pairs = vsi->alloc_queue_pairs;
Mitch Williamsf578f5f2015-08-28 17:55:58 -04001380 /* VFs only use TC 0 */
Mitch Williams442b25e2016-03-18 12:18:06 -07001381 vfres->vsi_res[0].qset_handle
Mitch Williamsf578f5f2015-08-28 17:55:58 -04001382 = le16_to_cpu(vsi->info.qs_handle[0]);
Mitch Williams442b25e2016-03-18 12:18:06 -07001383 ether_addr_copy(vfres->vsi_res[0].default_mac_addr,
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001384 vf->default_lan_addr.addr);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001385 }
1386 set_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states);
1387
1388err:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001389 /* send the response back to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001390 ret = i40e_vc_send_msg_to_vf(vf, I40E_VIRTCHNL_OP_GET_VF_RESOURCES,
1391 aq_ret, (u8 *)vfres, len);
1392
1393 kfree(vfres);
1394 return ret;
1395}
1396
1397/**
1398 * i40e_vc_reset_vf_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001399 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001400 * @msg: pointer to the msg buffer
1401 * @msglen: msg length
1402 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001403 * called from the VF to reset itself,
1404 * unlike other virtchnl messages, PF driver
1405 * doesn't send the response back to the VF
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001406 **/
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00001407static void i40e_vc_reset_vf_msg(struct i40e_vf *vf)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001408{
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00001409 if (test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states))
1410 i40e_reset_vf(vf, false);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001411}
1412
1413/**
1414 * i40e_vc_config_promiscuous_mode_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001415 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001416 * @msg: pointer to the msg buffer
1417 * @msglen: msg length
1418 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001419 * called from the VF to configure the promiscuous mode of
1420 * VF vsis
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001421 **/
1422static int i40e_vc_config_promiscuous_mode_msg(struct i40e_vf *vf,
1423 u8 *msg, u16 msglen)
1424{
1425 struct i40e_virtchnl_promisc_info *info =
1426 (struct i40e_virtchnl_promisc_info *)msg;
1427 struct i40e_pf *pf = vf->pf;
1428 struct i40e_hw *hw = &pf->hw;
Ashish Shah89cb86c2014-08-01 13:27:10 -07001429 struct i40e_vsi *vsi;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001430 bool allmulti = false;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001431 i40e_status aq_ret;
1432
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001433 vsi = i40e_find_vsi_from_id(pf, info->vsi_id);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001434 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
1435 !test_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps) ||
1436 !i40e_vc_isvalid_vsi_id(vf, info->vsi_id) ||
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001437 (vsi->type != I40E_VSI_FCOE)) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001438 aq_ret = I40E_ERR_PARAM;
1439 goto error_param;
1440 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001441 if (info->flags & I40E_FLAG_VF_MULTICAST_PROMISC)
1442 allmulti = true;
Ashish Shah89cb86c2014-08-01 13:27:10 -07001443 aq_ret = i40e_aq_set_vsi_multicast_promiscuous(hw, vsi->seid,
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001444 allmulti, NULL);
1445
1446error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001447 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001448 return i40e_vc_send_resp_to_vf(vf,
1449 I40E_VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE,
1450 aq_ret);
1451}
1452
1453/**
1454 * i40e_vc_config_queues_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001455 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001456 * @msg: pointer to the msg buffer
1457 * @msglen: msg length
1458 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001459 * called from the VF to configure the rx/tx
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001460 * queues
1461 **/
1462static int i40e_vc_config_queues_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1463{
1464 struct i40e_virtchnl_vsi_queue_config_info *qci =
1465 (struct i40e_virtchnl_vsi_queue_config_info *)msg;
1466 struct i40e_virtchnl_queue_pair_info *qpi;
Ashish Shah5f5e33b2014-07-10 07:58:15 +00001467 struct i40e_pf *pf = vf->pf;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001468 u16 vsi_id, vsi_queue_id;
1469 i40e_status aq_ret = 0;
1470 int i;
1471
1472 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
1473 aq_ret = I40E_ERR_PARAM;
1474 goto error_param;
1475 }
1476
1477 vsi_id = qci->vsi_id;
1478 if (!i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
1479 aq_ret = I40E_ERR_PARAM;
1480 goto error_param;
1481 }
1482 for (i = 0; i < qci->num_queue_pairs; i++) {
1483 qpi = &qci->qpair[i];
1484 vsi_queue_id = qpi->txq.queue_id;
1485 if ((qpi->txq.vsi_id != vsi_id) ||
1486 (qpi->rxq.vsi_id != vsi_id) ||
1487 (qpi->rxq.queue_id != vsi_queue_id) ||
1488 !i40e_vc_isvalid_queue_id(vf, vsi_id, vsi_queue_id)) {
1489 aq_ret = I40E_ERR_PARAM;
1490 goto error_param;
1491 }
1492
1493 if (i40e_config_vsi_rx_queue(vf, vsi_id, vsi_queue_id,
1494 &qpi->rxq) ||
1495 i40e_config_vsi_tx_queue(vf, vsi_id, vsi_queue_id,
1496 &qpi->txq)) {
1497 aq_ret = I40E_ERR_PARAM;
1498 goto error_param;
1499 }
1500 }
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001501 /* set vsi num_queue_pairs in use to num configured by VF */
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001502 pf->vsi[vf->lan_vsi_idx]->num_queue_pairs = qci->num_queue_pairs;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001503
1504error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001505 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001506 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_CONFIG_VSI_QUEUES,
1507 aq_ret);
1508}
1509
1510/**
1511 * i40e_vc_config_irq_map_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001512 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001513 * @msg: pointer to the msg buffer
1514 * @msglen: msg length
1515 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001516 * called from the VF to configure the irq to
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001517 * queue map
1518 **/
1519static int i40e_vc_config_irq_map_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1520{
1521 struct i40e_virtchnl_irq_map_info *irqmap_info =
1522 (struct i40e_virtchnl_irq_map_info *)msg;
1523 struct i40e_virtchnl_vector_map *map;
1524 u16 vsi_id, vsi_queue_id, vector_id;
1525 i40e_status aq_ret = 0;
1526 unsigned long tempmap;
1527 int i;
1528
1529 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
1530 aq_ret = I40E_ERR_PARAM;
1531 goto error_param;
1532 }
1533
1534 for (i = 0; i < irqmap_info->num_vectors; i++) {
1535 map = &irqmap_info->vecmap[i];
1536
1537 vector_id = map->vector_id;
1538 vsi_id = map->vsi_id;
1539 /* validate msg params */
1540 if (!i40e_vc_isvalid_vector_id(vf, vector_id) ||
1541 !i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
1542 aq_ret = I40E_ERR_PARAM;
1543 goto error_param;
1544 }
1545
1546 /* lookout for the invalid queue index */
1547 tempmap = map->rxq_map;
Wei Yongjun48366502013-09-24 05:17:36 +00001548 for_each_set_bit(vsi_queue_id, &tempmap, I40E_MAX_VSI_QP) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001549 if (!i40e_vc_isvalid_queue_id(vf, vsi_id,
1550 vsi_queue_id)) {
1551 aq_ret = I40E_ERR_PARAM;
1552 goto error_param;
1553 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001554 }
1555
1556 tempmap = map->txq_map;
Wei Yongjun48366502013-09-24 05:17:36 +00001557 for_each_set_bit(vsi_queue_id, &tempmap, I40E_MAX_VSI_QP) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001558 if (!i40e_vc_isvalid_queue_id(vf, vsi_id,
1559 vsi_queue_id)) {
1560 aq_ret = I40E_ERR_PARAM;
1561 goto error_param;
1562 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001563 }
1564
1565 i40e_config_irq_link_list(vf, vsi_id, map);
1566 }
1567error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001568 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001569 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_CONFIG_IRQ_MAP,
1570 aq_ret);
1571}
1572
1573/**
1574 * i40e_vc_enable_queues_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001575 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001576 * @msg: pointer to the msg buffer
1577 * @msglen: msg length
1578 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001579 * called from the VF to enable all or specific queue(s)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001580 **/
1581static int i40e_vc_enable_queues_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1582{
1583 struct i40e_virtchnl_queue_select *vqs =
1584 (struct i40e_virtchnl_queue_select *)msg;
1585 struct i40e_pf *pf = vf->pf;
1586 u16 vsi_id = vqs->vsi_id;
1587 i40e_status aq_ret = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001588
1589 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
1590 aq_ret = I40E_ERR_PARAM;
1591 goto error_param;
1592 }
1593
1594 if (!i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
1595 aq_ret = I40E_ERR_PARAM;
1596 goto error_param;
1597 }
1598
1599 if ((0 == vqs->rx_queues) && (0 == vqs->tx_queues)) {
1600 aq_ret = I40E_ERR_PARAM;
1601 goto error_param;
1602 }
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001603
1604 if (i40e_vsi_control_rings(pf->vsi[vf->lan_vsi_idx], true))
Mitch Williams88f65632013-11-28 06:39:28 +00001605 aq_ret = I40E_ERR_TIMEOUT;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001606error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001607 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001608 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_ENABLE_QUEUES,
1609 aq_ret);
1610}
1611
1612/**
1613 * i40e_vc_disable_queues_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001614 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001615 * @msg: pointer to the msg buffer
1616 * @msglen: msg length
1617 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001618 * called from the VF to disable all or specific
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001619 * queue(s)
1620 **/
1621static int i40e_vc_disable_queues_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1622{
1623 struct i40e_virtchnl_queue_select *vqs =
1624 (struct i40e_virtchnl_queue_select *)msg;
1625 struct i40e_pf *pf = vf->pf;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001626 i40e_status aq_ret = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001627
1628 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
1629 aq_ret = I40E_ERR_PARAM;
1630 goto error_param;
1631 }
1632
1633 if (!i40e_vc_isvalid_vsi_id(vf, vqs->vsi_id)) {
1634 aq_ret = I40E_ERR_PARAM;
1635 goto error_param;
1636 }
1637
1638 if ((0 == vqs->rx_queues) && (0 == vqs->tx_queues)) {
1639 aq_ret = I40E_ERR_PARAM;
1640 goto error_param;
1641 }
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001642
1643 if (i40e_vsi_control_rings(pf->vsi[vf->lan_vsi_idx], false))
Mitch Williams88f65632013-11-28 06:39:28 +00001644 aq_ret = I40E_ERR_TIMEOUT;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001645
1646error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001647 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001648 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_DISABLE_QUEUES,
1649 aq_ret);
1650}
1651
1652/**
1653 * i40e_vc_get_stats_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001654 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001655 * @msg: pointer to the msg buffer
1656 * @msglen: msg length
1657 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001658 * called from the VF to get vsi stats
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001659 **/
1660static int i40e_vc_get_stats_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1661{
1662 struct i40e_virtchnl_queue_select *vqs =
1663 (struct i40e_virtchnl_queue_select *)msg;
1664 struct i40e_pf *pf = vf->pf;
1665 struct i40e_eth_stats stats;
1666 i40e_status aq_ret = 0;
1667 struct i40e_vsi *vsi;
1668
1669 memset(&stats, 0, sizeof(struct i40e_eth_stats));
1670
1671 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
1672 aq_ret = I40E_ERR_PARAM;
1673 goto error_param;
1674 }
1675
1676 if (!i40e_vc_isvalid_vsi_id(vf, vqs->vsi_id)) {
1677 aq_ret = I40E_ERR_PARAM;
1678 goto error_param;
1679 }
1680
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001681 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001682 if (!vsi) {
1683 aq_ret = I40E_ERR_PARAM;
1684 goto error_param;
1685 }
1686 i40e_update_eth_stats(vsi);
Mitch Williams5a9769c2013-11-28 06:39:38 +00001687 stats = vsi->eth_stats;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001688
1689error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001690 /* send the response back to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001691 return i40e_vc_send_msg_to_vf(vf, I40E_VIRTCHNL_OP_GET_STATS, aq_ret,
1692 (u8 *)&stats, sizeof(stats));
1693}
1694
1695/**
Greg Rosef657a6e2013-11-28 06:39:42 +00001696 * i40e_check_vf_permission
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001697 * @vf: pointer to the VF info
Greg Rosef657a6e2013-11-28 06:39:42 +00001698 * @macaddr: pointer to the MAC Address being checked
1699 *
1700 * Check if the VF has permission to add or delete unicast MAC address
1701 * filters and return error code -EPERM if not. Then check if the
1702 * address filter requested is broadcast or zero and if so return
1703 * an invalid MAC address error code.
1704 **/
1705static inline int i40e_check_vf_permission(struct i40e_vf *vf, u8 *macaddr)
1706{
1707 struct i40e_pf *pf = vf->pf;
1708 int ret = 0;
1709
1710 if (is_broadcast_ether_addr(macaddr) ||
1711 is_zero_ether_addr(macaddr)) {
1712 dev_err(&pf->pdev->dev, "invalid VF MAC addr %pM\n", macaddr);
1713 ret = I40E_ERR_INVALID_MAC_ADDR;
Greg Rose5017c2a2013-12-07 10:36:54 +00001714 } else if (vf->pf_set_mac && !is_multicast_ether_addr(macaddr) &&
1715 !ether_addr_equal(macaddr, vf->default_lan_addr.addr)) {
Greg Rosef657a6e2013-11-28 06:39:42 +00001716 /* If the host VMM administrator has set the VF MAC address
1717 * administratively via the ndo_set_vf_mac command then deny
1718 * permission to the VF to add or delete unicast MAC addresses.
Greg Rose5017c2a2013-12-07 10:36:54 +00001719 * The VF may request to set the MAC address filter already
1720 * assigned to it so do not return an error in that case.
Greg Rosef657a6e2013-11-28 06:39:42 +00001721 */
1722 dev_err(&pf->pdev->dev,
1723 "VF attempting to override administratively set MAC address\nPlease reload the VF driver to resume normal operation\n");
1724 ret = -EPERM;
1725 }
1726 return ret;
1727}
1728
1729/**
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001730 * i40e_vc_add_mac_addr_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001731 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001732 * @msg: pointer to the msg buffer
1733 * @msglen: msg length
1734 *
1735 * add guest mac address filter
1736 **/
1737static int i40e_vc_add_mac_addr_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1738{
1739 struct i40e_virtchnl_ether_addr_list *al =
1740 (struct i40e_virtchnl_ether_addr_list *)msg;
1741 struct i40e_pf *pf = vf->pf;
1742 struct i40e_vsi *vsi = NULL;
1743 u16 vsi_id = al->vsi_id;
Greg Rosef657a6e2013-11-28 06:39:42 +00001744 i40e_status ret = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001745 int i;
1746
1747 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
1748 !test_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps) ||
1749 !i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
Greg Rosef657a6e2013-11-28 06:39:42 +00001750 ret = I40E_ERR_PARAM;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001751 goto error_param;
1752 }
1753
1754 for (i = 0; i < al->num_elements; i++) {
Greg Rosef657a6e2013-11-28 06:39:42 +00001755 ret = i40e_check_vf_permission(vf, al->list[i].addr);
1756 if (ret)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001757 goto error_param;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001758 }
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001759 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001760
Kiran Patil21659032015-09-30 14:09:03 -04001761 /* Lock once, because all function inside for loop accesses VSI's
1762 * MAC filter list which needs to be protected using same lock.
1763 */
1764 spin_lock_bh(&vsi->mac_filter_list_lock);
1765
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001766 /* add new addresses to the list */
1767 for (i = 0; i < al->num_elements; i++) {
1768 struct i40e_mac_filter *f;
1769
1770 f = i40e_find_mac(vsi, al->list[i].addr, true, false);
Mitch Williams7e68edf92013-11-16 10:00:41 +00001771 if (!f) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001772 if (i40e_is_vsi_in_vlan(vsi))
1773 f = i40e_put_mac_in_vlan(vsi, al->list[i].addr,
1774 true, false);
1775 else
1776 f = i40e_add_filter(vsi, al->list[i].addr, -1,
1777 true, false);
1778 }
1779
1780 if (!f) {
1781 dev_err(&pf->pdev->dev,
Mitch Williams8d8f2292015-10-21 19:47:11 -04001782 "Unable to add MAC filter %pM for VF %d\n",
1783 al->list[i].addr, vf->vf_id);
Greg Rosef657a6e2013-11-28 06:39:42 +00001784 ret = I40E_ERR_PARAM;
Kiran Patil21659032015-09-30 14:09:03 -04001785 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001786 goto error_param;
1787 }
1788 }
Kiran Patil21659032015-09-30 14:09:03 -04001789 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001790
1791 /* program the updated filter list */
Mitch Williamsea02e902015-11-09 15:35:50 -08001792 ret = i40e_sync_vsi_filters(vsi);
1793 if (ret)
1794 dev_err(&pf->pdev->dev, "Unable to program VF %d MAC filters, error %d\n",
1795 vf->vf_id, ret);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001796
1797error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001798 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001799 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_ADD_ETHER_ADDRESS,
Greg Rosef657a6e2013-11-28 06:39:42 +00001800 ret);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001801}
1802
1803/**
1804 * i40e_vc_del_mac_addr_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001805 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001806 * @msg: pointer to the msg buffer
1807 * @msglen: msg length
1808 *
1809 * remove guest mac address filter
1810 **/
1811static int i40e_vc_del_mac_addr_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1812{
1813 struct i40e_virtchnl_ether_addr_list *al =
1814 (struct i40e_virtchnl_ether_addr_list *)msg;
1815 struct i40e_pf *pf = vf->pf;
1816 struct i40e_vsi *vsi = NULL;
1817 u16 vsi_id = al->vsi_id;
Greg Rosef657a6e2013-11-28 06:39:42 +00001818 i40e_status ret = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001819 int i;
1820
1821 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
1822 !test_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps) ||
1823 !i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
Greg Rosef657a6e2013-11-28 06:39:42 +00001824 ret = I40E_ERR_PARAM;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001825 goto error_param;
1826 }
Greg Rosef657a6e2013-11-28 06:39:42 +00001827
1828 for (i = 0; i < al->num_elements; i++) {
Mitch Williams700bbf62013-12-21 05:44:45 +00001829 if (is_broadcast_ether_addr(al->list[i].addr) ||
1830 is_zero_ether_addr(al->list[i].addr)) {
Mitch Williams8d8f2292015-10-21 19:47:11 -04001831 dev_err(&pf->pdev->dev, "Invalid MAC addr %pM for VF %d\n",
1832 al->list[i].addr, vf->vf_id);
Mitch Williams700bbf62013-12-21 05:44:45 +00001833 ret = I40E_ERR_INVALID_MAC_ADDR;
Greg Rosef657a6e2013-11-28 06:39:42 +00001834 goto error_param;
Mitch Williams700bbf62013-12-21 05:44:45 +00001835 }
Greg Rosef657a6e2013-11-28 06:39:42 +00001836 }
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001837 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001838
Kiran Patil21659032015-09-30 14:09:03 -04001839 spin_lock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001840 /* delete addresses from the list */
1841 for (i = 0; i < al->num_elements; i++)
Mitch Williamsb36e9ab2015-11-19 11:34:16 -08001842 if (i40e_del_mac_all_vlan(vsi, al->list[i].addr, true, false)) {
1843 ret = I40E_ERR_INVALID_MAC_ADDR;
1844 spin_unlock_bh(&vsi->mac_filter_list_lock);
1845 goto error_param;
1846 }
1847
Kiran Patil21659032015-09-30 14:09:03 -04001848 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001849
1850 /* program the updated filter list */
Mitch Williamsea02e902015-11-09 15:35:50 -08001851 ret = i40e_sync_vsi_filters(vsi);
1852 if (ret)
1853 dev_err(&pf->pdev->dev, "Unable to program VF %d MAC filters, error %d\n",
1854 vf->vf_id, ret);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001855
1856error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001857 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001858 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_DEL_ETHER_ADDRESS,
Greg Rosef657a6e2013-11-28 06:39:42 +00001859 ret);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001860}
1861
1862/**
1863 * i40e_vc_add_vlan_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001864 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001865 * @msg: pointer to the msg buffer
1866 * @msglen: msg length
1867 *
1868 * program guest vlan id
1869 **/
1870static int i40e_vc_add_vlan_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1871{
1872 struct i40e_virtchnl_vlan_filter_list *vfl =
1873 (struct i40e_virtchnl_vlan_filter_list *)msg;
1874 struct i40e_pf *pf = vf->pf;
1875 struct i40e_vsi *vsi = NULL;
1876 u16 vsi_id = vfl->vsi_id;
1877 i40e_status aq_ret = 0;
1878 int i;
1879
1880 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
1881 !test_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps) ||
1882 !i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
1883 aq_ret = I40E_ERR_PARAM;
1884 goto error_param;
1885 }
1886
1887 for (i = 0; i < vfl->num_elements; i++) {
1888 if (vfl->vlan_id[i] > I40E_MAX_VLANID) {
1889 aq_ret = I40E_ERR_PARAM;
1890 dev_err(&pf->pdev->dev,
1891 "invalid VF VLAN id %d\n", vfl->vlan_id[i]);
1892 goto error_param;
1893 }
1894 }
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001895 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001896 if (vsi->info.pvid) {
1897 aq_ret = I40E_ERR_PARAM;
1898 goto error_param;
1899 }
1900
1901 i40e_vlan_stripping_enable(vsi);
1902 for (i = 0; i < vfl->num_elements; i++) {
1903 /* add new VLAN filter */
1904 int ret = i40e_vsi_add_vlan(vsi, vfl->vlan_id[i]);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001905
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001906 if (ret)
1907 dev_err(&pf->pdev->dev,
Mitch Williams8d8f2292015-10-21 19:47:11 -04001908 "Unable to add VLAN filter %d for VF %d, error %d\n",
1909 vfl->vlan_id[i], vf->vf_id, ret);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001910 }
1911
1912error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001913 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001914 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_ADD_VLAN, aq_ret);
1915}
1916
1917/**
1918 * i40e_vc_remove_vlan_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001919 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001920 * @msg: pointer to the msg buffer
1921 * @msglen: msg length
1922 *
1923 * remove programmed guest vlan id
1924 **/
1925static int i40e_vc_remove_vlan_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1926{
1927 struct i40e_virtchnl_vlan_filter_list *vfl =
1928 (struct i40e_virtchnl_vlan_filter_list *)msg;
1929 struct i40e_pf *pf = vf->pf;
1930 struct i40e_vsi *vsi = NULL;
1931 u16 vsi_id = vfl->vsi_id;
1932 i40e_status aq_ret = 0;
1933 int i;
1934
1935 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
1936 !test_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps) ||
1937 !i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
1938 aq_ret = I40E_ERR_PARAM;
1939 goto error_param;
1940 }
1941
1942 for (i = 0; i < vfl->num_elements; i++) {
1943 if (vfl->vlan_id[i] > I40E_MAX_VLANID) {
1944 aq_ret = I40E_ERR_PARAM;
1945 goto error_param;
1946 }
1947 }
1948
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001949 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001950 if (vsi->info.pvid) {
1951 aq_ret = I40E_ERR_PARAM;
1952 goto error_param;
1953 }
1954
1955 for (i = 0; i < vfl->num_elements; i++) {
1956 int ret = i40e_vsi_kill_vlan(vsi, vfl->vlan_id[i]);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001957
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001958 if (ret)
1959 dev_err(&pf->pdev->dev,
Mitch Williams8d8f2292015-10-21 19:47:11 -04001960 "Unable to delete VLAN filter %d for VF %d, error %d\n",
1961 vfl->vlan_id[i], vf->vf_id, ret);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001962 }
1963
1964error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001965 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001966 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_DEL_VLAN, aq_ret);
1967}
1968
1969/**
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06001970 * i40e_vc_iwarp_msg
1971 * @vf: pointer to the VF info
1972 * @msg: pointer to the msg buffer
1973 * @msglen: msg length
1974 *
1975 * called from the VF for the iwarp msgs
1976 **/
1977static int i40e_vc_iwarp_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1978{
1979 struct i40e_pf *pf = vf->pf;
1980 int abs_vf_id = vf->vf_id + pf->hw.func_caps.vf_base_id;
1981 i40e_status aq_ret = 0;
1982
1983 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
1984 !test_bit(I40E_VF_STAT_IWARPENA, &vf->vf_states)) {
1985 aq_ret = I40E_ERR_PARAM;
1986 goto error_param;
1987 }
1988
1989 i40e_notify_client_of_vf_msg(pf->vsi[pf->lan_vsi], abs_vf_id,
1990 msg, msglen);
1991
1992error_param:
1993 /* send the response to the VF */
1994 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_IWARP,
1995 aq_ret);
1996}
1997
1998/**
1999 * i40e_vc_iwarp_qvmap_msg
2000 * @vf: pointer to the VF info
2001 * @msg: pointer to the msg buffer
2002 * @msglen: msg length
2003 * @config: config qvmap or release it
2004 *
2005 * called from the VF for the iwarp msgs
2006 **/
2007static int i40e_vc_iwarp_qvmap_msg(struct i40e_vf *vf, u8 *msg, u16 msglen,
2008 bool config)
2009{
2010 struct i40e_virtchnl_iwarp_qvlist_info *qvlist_info =
2011 (struct i40e_virtchnl_iwarp_qvlist_info *)msg;
2012 i40e_status aq_ret = 0;
2013
2014 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
2015 !test_bit(I40E_VF_STAT_IWARPENA, &vf->vf_states)) {
2016 aq_ret = I40E_ERR_PARAM;
2017 goto error_param;
2018 }
2019
2020 if (config) {
2021 if (i40e_config_iwarp_qvlist(vf, qvlist_info))
2022 aq_ret = I40E_ERR_PARAM;
2023 } else {
2024 i40e_release_iwarp_qvlist(vf);
2025 }
2026
2027error_param:
2028 /* send the response to the VF */
2029 return i40e_vc_send_resp_to_vf(vf,
2030 config ? I40E_VIRTCHNL_OP_RELEASE_IWARP_IRQ_MAP :
2031 I40E_VIRTCHNL_OP_CONFIG_IWARP_IRQ_MAP,
2032 aq_ret);
2033}
2034
2035/**
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002036 * i40e_vc_validate_vf_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002037 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002038 * @msg: pointer to the msg buffer
2039 * @msglen: msg length
2040 * @msghndl: msg handle
2041 *
2042 * validate msg
2043 **/
2044static int i40e_vc_validate_vf_msg(struct i40e_vf *vf, u32 v_opcode,
2045 u32 v_retval, u8 *msg, u16 msglen)
2046{
2047 bool err_msg_format = false;
2048 int valid_len;
2049
2050 /* Check if VF is disabled. */
2051 if (test_bit(I40E_VF_STAT_DISABLED, &vf->vf_states))
2052 return I40E_ERR_PARAM;
2053
2054 /* Validate message length. */
2055 switch (v_opcode) {
2056 case I40E_VIRTCHNL_OP_VERSION:
2057 valid_len = sizeof(struct i40e_virtchnl_version_info);
2058 break;
2059 case I40E_VIRTCHNL_OP_RESET_VF:
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002060 valid_len = 0;
2061 break;
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04002062 case I40E_VIRTCHNL_OP_GET_VF_RESOURCES:
2063 if (VF_IS_V11(vf))
2064 valid_len = sizeof(u32);
2065 else
2066 valid_len = 0;
2067 break;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002068 case I40E_VIRTCHNL_OP_CONFIG_TX_QUEUE:
2069 valid_len = sizeof(struct i40e_virtchnl_txq_info);
2070 break;
2071 case I40E_VIRTCHNL_OP_CONFIG_RX_QUEUE:
2072 valid_len = sizeof(struct i40e_virtchnl_rxq_info);
2073 break;
2074 case I40E_VIRTCHNL_OP_CONFIG_VSI_QUEUES:
2075 valid_len = sizeof(struct i40e_virtchnl_vsi_queue_config_info);
2076 if (msglen >= valid_len) {
2077 struct i40e_virtchnl_vsi_queue_config_info *vqc =
2078 (struct i40e_virtchnl_vsi_queue_config_info *)msg;
2079 valid_len += (vqc->num_queue_pairs *
2080 sizeof(struct
2081 i40e_virtchnl_queue_pair_info));
2082 if (vqc->num_queue_pairs == 0)
2083 err_msg_format = true;
2084 }
2085 break;
2086 case I40E_VIRTCHNL_OP_CONFIG_IRQ_MAP:
2087 valid_len = sizeof(struct i40e_virtchnl_irq_map_info);
2088 if (msglen >= valid_len) {
2089 struct i40e_virtchnl_irq_map_info *vimi =
2090 (struct i40e_virtchnl_irq_map_info *)msg;
2091 valid_len += (vimi->num_vectors *
2092 sizeof(struct i40e_virtchnl_vector_map));
2093 if (vimi->num_vectors == 0)
2094 err_msg_format = true;
2095 }
2096 break;
2097 case I40E_VIRTCHNL_OP_ENABLE_QUEUES:
2098 case I40E_VIRTCHNL_OP_DISABLE_QUEUES:
2099 valid_len = sizeof(struct i40e_virtchnl_queue_select);
2100 break;
2101 case I40E_VIRTCHNL_OP_ADD_ETHER_ADDRESS:
2102 case I40E_VIRTCHNL_OP_DEL_ETHER_ADDRESS:
2103 valid_len = sizeof(struct i40e_virtchnl_ether_addr_list);
2104 if (msglen >= valid_len) {
2105 struct i40e_virtchnl_ether_addr_list *veal =
2106 (struct i40e_virtchnl_ether_addr_list *)msg;
2107 valid_len += veal->num_elements *
2108 sizeof(struct i40e_virtchnl_ether_addr);
2109 if (veal->num_elements == 0)
2110 err_msg_format = true;
2111 }
2112 break;
2113 case I40E_VIRTCHNL_OP_ADD_VLAN:
2114 case I40E_VIRTCHNL_OP_DEL_VLAN:
2115 valid_len = sizeof(struct i40e_virtchnl_vlan_filter_list);
2116 if (msglen >= valid_len) {
2117 struct i40e_virtchnl_vlan_filter_list *vfl =
2118 (struct i40e_virtchnl_vlan_filter_list *)msg;
2119 valid_len += vfl->num_elements * sizeof(u16);
2120 if (vfl->num_elements == 0)
2121 err_msg_format = true;
2122 }
2123 break;
2124 case I40E_VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE:
2125 valid_len = sizeof(struct i40e_virtchnl_promisc_info);
2126 break;
2127 case I40E_VIRTCHNL_OP_GET_STATS:
2128 valid_len = sizeof(struct i40e_virtchnl_queue_select);
2129 break;
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06002130 case I40E_VIRTCHNL_OP_IWARP:
2131 /* These messages are opaque to us and will be validated in
2132 * the RDMA client code. We just need to check for nonzero
2133 * length. The firmware will enforce max length restrictions.
2134 */
2135 if (msglen)
2136 valid_len = msglen;
2137 else
2138 err_msg_format = true;
2139 break;
2140 case I40E_VIRTCHNL_OP_RELEASE_IWARP_IRQ_MAP:
2141 valid_len = 0;
2142 break;
2143 case I40E_VIRTCHNL_OP_CONFIG_IWARP_IRQ_MAP:
2144 valid_len = sizeof(struct i40e_virtchnl_iwarp_qvlist_info);
2145 if (msglen >= valid_len) {
2146 struct i40e_virtchnl_iwarp_qvlist_info *qv =
2147 (struct i40e_virtchnl_iwarp_qvlist_info *)msg;
2148 if (qv->num_vectors == 0) {
2149 err_msg_format = true;
2150 break;
2151 }
2152 valid_len += ((qv->num_vectors - 1) *
2153 sizeof(struct i40e_virtchnl_iwarp_qv_info));
2154 }
2155 break;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002156 /* These are always errors coming from the VF. */
2157 case I40E_VIRTCHNL_OP_EVENT:
2158 case I40E_VIRTCHNL_OP_UNKNOWN:
2159 default:
2160 return -EPERM;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002161 }
2162 /* few more checks */
2163 if ((valid_len != msglen) || (err_msg_format)) {
2164 i40e_vc_send_resp_to_vf(vf, v_opcode, I40E_ERR_PARAM);
2165 return -EINVAL;
2166 } else {
2167 return 0;
2168 }
2169}
2170
2171/**
2172 * i40e_vc_process_vf_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002173 * @pf: pointer to the PF structure
2174 * @vf_id: source VF id
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002175 * @msg: pointer to the msg buffer
2176 * @msglen: msg length
2177 * @msghndl: msg handle
2178 *
2179 * called from the common aeq/arq handler to
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002180 * process request from VF
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002181 **/
2182int i40e_vc_process_vf_msg(struct i40e_pf *pf, u16 vf_id, u32 v_opcode,
2183 u32 v_retval, u8 *msg, u16 msglen)
2184{
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002185 struct i40e_hw *hw = &pf->hw;
Dan Carpenterc243e962014-01-15 06:43:39 +00002186 unsigned int local_vf_id = vf_id - hw->func_caps.vf_base_id;
Mitch Williams6c1b5bf2013-11-28 06:39:30 +00002187 struct i40e_vf *vf;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002188 int ret;
2189
2190 pf->vf_aq_requests++;
Mitch Williams7efa84b2013-11-28 06:39:41 +00002191 if (local_vf_id >= pf->num_alloc_vfs)
Mitch Williams6c1b5bf2013-11-28 06:39:30 +00002192 return -EINVAL;
Mitch Williams7efa84b2013-11-28 06:39:41 +00002193 vf = &(pf->vf[local_vf_id]);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002194 /* perform basic checks on the msg */
2195 ret = i40e_vc_validate_vf_msg(vf, v_opcode, v_retval, msg, msglen);
2196
2197 if (ret) {
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002198 dev_err(&pf->pdev->dev, "Invalid message from VF %d, opcode %d, len %d\n",
Mitch Williams7efa84b2013-11-28 06:39:41 +00002199 local_vf_id, v_opcode, msglen);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002200 return ret;
2201 }
Mitch Williamsbae3cae2014-01-14 00:49:49 -08002202
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002203 switch (v_opcode) {
2204 case I40E_VIRTCHNL_OP_VERSION:
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04002205 ret = i40e_vc_get_version_msg(vf, msg);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002206 break;
2207 case I40E_VIRTCHNL_OP_GET_VF_RESOURCES:
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04002208 ret = i40e_vc_get_vf_resources_msg(vf, msg);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002209 break;
2210 case I40E_VIRTCHNL_OP_RESET_VF:
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00002211 i40e_vc_reset_vf_msg(vf);
2212 ret = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002213 break;
2214 case I40E_VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE:
2215 ret = i40e_vc_config_promiscuous_mode_msg(vf, msg, msglen);
2216 break;
2217 case I40E_VIRTCHNL_OP_CONFIG_VSI_QUEUES:
2218 ret = i40e_vc_config_queues_msg(vf, msg, msglen);
2219 break;
2220 case I40E_VIRTCHNL_OP_CONFIG_IRQ_MAP:
2221 ret = i40e_vc_config_irq_map_msg(vf, msg, msglen);
2222 break;
2223 case I40E_VIRTCHNL_OP_ENABLE_QUEUES:
2224 ret = i40e_vc_enable_queues_msg(vf, msg, msglen);
Mitch Williams055b2952015-04-07 19:45:33 -04002225 i40e_vc_notify_vf_link_state(vf);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002226 break;
2227 case I40E_VIRTCHNL_OP_DISABLE_QUEUES:
2228 ret = i40e_vc_disable_queues_msg(vf, msg, msglen);
2229 break;
2230 case I40E_VIRTCHNL_OP_ADD_ETHER_ADDRESS:
2231 ret = i40e_vc_add_mac_addr_msg(vf, msg, msglen);
2232 break;
2233 case I40E_VIRTCHNL_OP_DEL_ETHER_ADDRESS:
2234 ret = i40e_vc_del_mac_addr_msg(vf, msg, msglen);
2235 break;
2236 case I40E_VIRTCHNL_OP_ADD_VLAN:
2237 ret = i40e_vc_add_vlan_msg(vf, msg, msglen);
2238 break;
2239 case I40E_VIRTCHNL_OP_DEL_VLAN:
2240 ret = i40e_vc_remove_vlan_msg(vf, msg, msglen);
2241 break;
2242 case I40E_VIRTCHNL_OP_GET_STATS:
2243 ret = i40e_vc_get_stats_msg(vf, msg, msglen);
2244 break;
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06002245 case I40E_VIRTCHNL_OP_IWARP:
2246 ret = i40e_vc_iwarp_msg(vf, msg, msglen);
2247 break;
2248 case I40E_VIRTCHNL_OP_CONFIG_IWARP_IRQ_MAP:
2249 ret = i40e_vc_iwarp_qvmap_msg(vf, msg, msglen, true);
2250 break;
2251 case I40E_VIRTCHNL_OP_RELEASE_IWARP_IRQ_MAP:
2252 ret = i40e_vc_iwarp_qvmap_msg(vf, msg, msglen, false);
2253 break;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002254 case I40E_VIRTCHNL_OP_UNKNOWN:
2255 default:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002256 dev_err(&pf->pdev->dev, "Unsupported opcode %d from VF %d\n",
Mitch Williams7efa84b2013-11-28 06:39:41 +00002257 v_opcode, local_vf_id);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002258 ret = i40e_vc_send_resp_to_vf(vf, v_opcode,
2259 I40E_ERR_NOT_IMPLEMENTED);
2260 break;
2261 }
2262
2263 return ret;
2264}
2265
2266/**
2267 * i40e_vc_process_vflr_event
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002268 * @pf: pointer to the PF structure
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002269 *
2270 * called from the vlfr irq handler to
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002271 * free up VF resources and state variables
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002272 **/
2273int i40e_vc_process_vflr_event(struct i40e_pf *pf)
2274{
2275 u32 reg, reg_idx, bit_idx, vf_id;
2276 struct i40e_hw *hw = &pf->hw;
2277 struct i40e_vf *vf;
2278
2279 if (!test_bit(__I40E_VFLR_EVENT_PENDING, &pf->state))
2280 return 0;
2281
Mitch Williams0d790322016-01-15 14:33:17 -08002282 /* Re-enable the VFLR interrupt cause here, before looking for which
2283 * VF got reset. Otherwise, if another VF gets a reset while the
2284 * first one is being processed, that interrupt will be lost, and
2285 * that VF will be stuck in reset forever.
2286 */
Mitch Williamsc5c2f7c2014-11-11 03:15:04 +00002287 reg = rd32(hw, I40E_PFINT_ICR0_ENA);
2288 reg |= I40E_PFINT_ICR0_ENA_VFLR_MASK;
2289 wr32(hw, I40E_PFINT_ICR0_ENA, reg);
2290 i40e_flush(hw);
2291
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002292 clear_bit(__I40E_VFLR_EVENT_PENDING, &pf->state);
2293 for (vf_id = 0; vf_id < pf->num_alloc_vfs; vf_id++) {
2294 reg_idx = (hw->func_caps.vf_base_id + vf_id) / 32;
2295 bit_idx = (hw->func_caps.vf_base_id + vf_id) % 32;
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002296 /* read GLGEN_VFLRSTAT register to find out the flr VFs */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002297 vf = &pf->vf[vf_id];
2298 reg = rd32(hw, I40E_GLGEN_VFLRSTAT(reg_idx));
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04002299 if (reg & BIT(bit_idx)) {
Mitch Williams7e5a3132016-03-10 14:59:47 -08002300 /* i40e_reset_vf will clear the bit in GLGEN_VFLRSTAT */
Mitch Williamseb2d80b2014-02-13 03:48:48 -08002301 if (!test_bit(__I40E_DOWN, &pf->state))
2302 i40e_reset_vf(vf, true);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002303 }
2304 }
2305
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002306 return 0;
2307}
2308
2309/**
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002310 * i40e_ndo_set_vf_mac
2311 * @netdev: network interface device structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002312 * @vf_id: VF identifier
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002313 * @mac: mac address
2314 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002315 * program VF mac address
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002316 **/
2317int i40e_ndo_set_vf_mac(struct net_device *netdev, int vf_id, u8 *mac)
2318{
2319 struct i40e_netdev_priv *np = netdev_priv(netdev);
2320 struct i40e_vsi *vsi = np->vsi;
2321 struct i40e_pf *pf = vsi->back;
2322 struct i40e_mac_filter *f;
2323 struct i40e_vf *vf;
2324 int ret = 0;
2325
2326 /* validate the request */
2327 if (vf_id >= pf->num_alloc_vfs) {
2328 dev_err(&pf->pdev->dev,
2329 "Invalid VF Identifier %d\n", vf_id);
2330 ret = -EINVAL;
2331 goto error_param;
2332 }
2333
2334 vf = &(pf->vf[vf_id]);
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07002335 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002336 if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
Mitch Williams2d166c32015-12-22 15:34:42 -08002337 dev_err(&pf->pdev->dev, "VF %d still in reset. Try again.\n",
2338 vf_id);
2339 ret = -EAGAIN;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002340 goto error_param;
2341 }
2342
Mitch Williamsefd8e392015-12-22 15:34:43 -08002343 if (is_multicast_ether_addr(mac)) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002344 dev_err(&pf->pdev->dev,
Mitch Williamsefd8e392015-12-22 15:34:43 -08002345 "Invalid Ethernet address %pM for VF %d\n", mac, vf_id);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002346 ret = -EINVAL;
2347 goto error_param;
2348 }
2349
Kiran Patil21659032015-09-30 14:09:03 -04002350 /* Lock once because below invoked function add/del_filter requires
2351 * mac_filter_list_lock to be held
2352 */
2353 spin_lock_bh(&vsi->mac_filter_list_lock);
2354
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002355 /* delete the temporary mac address */
Mitch Williamsefd8e392015-12-22 15:34:43 -08002356 if (!is_zero_ether_addr(vf->default_lan_addr.addr))
2357 i40e_del_filter(vsi, vf->default_lan_addr.addr,
2358 vf->port_vlan_id ? vf->port_vlan_id : -1,
2359 true, false);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002360
Greg Rose29f71bb2014-05-20 08:01:45 +00002361 /* Delete all the filters for this VSI - we're going to kill it
2362 * anyway.
2363 */
2364 list_for_each_entry(f, &vsi->mac_filter_list, list)
2365 i40e_del_filter(vsi, f->macaddr, f->vlan, true, false);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002366
Kiran Patil21659032015-09-30 14:09:03 -04002367 spin_unlock_bh(&vsi->mac_filter_list_lock);
2368
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002369 dev_info(&pf->pdev->dev, "Setting MAC %pM on VF %d\n", mac, vf_id);
2370 /* program mac filter */
Jesse Brandeburg17652c62015-11-05 17:01:02 -08002371 if (i40e_sync_vsi_filters(vsi)) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002372 dev_err(&pf->pdev->dev, "Unable to program ucast filters\n");
2373 ret = -EIO;
2374 goto error_param;
2375 }
Greg Rose9a173902014-05-22 06:32:02 +00002376 ether_addr_copy(vf->default_lan_addr.addr, mac);
Greg Rosef657a6e2013-11-28 06:39:42 +00002377 vf->pf_set_mac = true;
Greg Rose17413a82014-06-04 01:23:13 +00002378 /* Force the VF driver stop so it has to reload with new MAC address */
2379 i40e_vc_disable_vf(pf, vf);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002380 dev_info(&pf->pdev->dev, "Reload the VF driver to make this change effective.\n");
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002381
2382error_param:
2383 return ret;
2384}
2385
2386/**
2387 * i40e_ndo_set_vf_port_vlan
2388 * @netdev: network interface device structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002389 * @vf_id: VF identifier
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002390 * @vlan_id: mac address
2391 * @qos: priority setting
2392 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002393 * program VF vlan id and/or qos
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002394 **/
2395int i40e_ndo_set_vf_port_vlan(struct net_device *netdev,
2396 int vf_id, u16 vlan_id, u8 qos)
2397{
Mitch Williamsf7fc2f22015-07-23 16:54:36 -04002398 u16 vlanprio = vlan_id | (qos << I40E_VLAN_PRIORITY_SHIFT);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002399 struct i40e_netdev_priv *np = netdev_priv(netdev);
2400 struct i40e_pf *pf = np->vsi->back;
Kiran Patil21659032015-09-30 14:09:03 -04002401 bool is_vsi_in_vlan = false;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002402 struct i40e_vsi *vsi;
2403 struct i40e_vf *vf;
2404 int ret = 0;
2405
2406 /* validate the request */
2407 if (vf_id >= pf->num_alloc_vfs) {
2408 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d\n", vf_id);
2409 ret = -EINVAL;
2410 goto error_pvid;
2411 }
2412
2413 if ((vlan_id > I40E_MAX_VLANID) || (qos > 7)) {
2414 dev_err(&pf->pdev->dev, "Invalid VF Parameters\n");
2415 ret = -EINVAL;
2416 goto error_pvid;
2417 }
2418
2419 vf = &(pf->vf[vf_id]);
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07002420 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002421 if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
Mitch Williams2d166c32015-12-22 15:34:42 -08002422 dev_err(&pf->pdev->dev, "VF %d still in reset. Try again.\n",
2423 vf_id);
2424 ret = -EAGAIN;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002425 goto error_pvid;
2426 }
2427
Mitch Williamsf7fc2f22015-07-23 16:54:36 -04002428 if (le16_to_cpu(vsi->info.pvid) == vlanprio)
Mitch Williams85927ec2015-04-27 14:57:10 -04002429 /* duplicate request, so just return success */
2430 goto error_pvid;
2431
Kiran Patil21659032015-09-30 14:09:03 -04002432 spin_lock_bh(&vsi->mac_filter_list_lock);
2433 is_vsi_in_vlan = i40e_is_vsi_in_vlan(vsi);
2434 spin_unlock_bh(&vsi->mac_filter_list_lock);
2435
2436 if (le16_to_cpu(vsi->info.pvid) == 0 && is_vsi_in_vlan) {
Greg Rose99a49732014-01-13 16:13:03 -08002437 dev_err(&pf->pdev->dev,
2438 "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",
2439 vf_id);
Greg Rosef9b4b622014-03-06 09:02:28 +00002440 /* Administrator Error - knock the VF offline until he does
2441 * the right thing by reconfiguring his network correctly
2442 * and then reloading the VF driver.
2443 */
2444 i40e_vc_disable_vf(pf, vf);
Mitch Williams35f34722016-02-17 16:12:23 -08002445 /* During reset the VF got a new VSI, so refresh the pointer. */
2446 vsi = pf->vsi[vf->lan_vsi_idx];
Greg Rosef9b4b622014-03-06 09:02:28 +00002447 }
Greg Rose99a49732014-01-13 16:13:03 -08002448
Greg Rose8d82a7c2014-01-13 16:13:04 -08002449 /* Check for condition where there was already a port VLAN ID
2450 * filter set and now it is being deleted by setting it to zero.
Greg Rose1315f7c2014-03-14 07:32:20 +00002451 * Additionally check for the condition where there was a port
2452 * VLAN but now there is a new and different port VLAN being set.
Greg Rose8d82a7c2014-01-13 16:13:04 -08002453 * Before deleting all the old VLAN filters we must add new ones
2454 * with -1 (I40E_VLAN_ANY) or otherwise we're left with all our
2455 * MAC addresses deleted.
2456 */
Greg Rose1315f7c2014-03-14 07:32:20 +00002457 if ((!(vlan_id || qos) ||
Mitch Williamsf7fc2f22015-07-23 16:54:36 -04002458 vlanprio != le16_to_cpu(vsi->info.pvid)) &&
Greg Rose1315f7c2014-03-14 07:32:20 +00002459 vsi->info.pvid)
Greg Rose8d82a7c2014-01-13 16:13:04 -08002460 ret = i40e_vsi_add_vlan(vsi, I40E_VLAN_ANY);
2461
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002462 if (vsi->info.pvid) {
2463 /* kill old VLAN */
2464 ret = i40e_vsi_kill_vlan(vsi, (le16_to_cpu(vsi->info.pvid) &
2465 VLAN_VID_MASK));
2466 if (ret) {
2467 dev_info(&vsi->back->pdev->dev,
2468 "remove VLAN failed, ret=%d, aq_err=%d\n",
2469 ret, pf->hw.aq.asq_last_status);
2470 }
2471 }
2472 if (vlan_id || qos)
Mitch Williamsf7fc2f22015-07-23 16:54:36 -04002473 ret = i40e_vsi_add_pvid(vsi, vlanprio);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002474 else
Greg Rose6c12fcb2013-11-28 06:39:34 +00002475 i40e_vsi_remove_pvid(vsi);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002476
2477 if (vlan_id) {
2478 dev_info(&pf->pdev->dev, "Setting VLAN %d, QOS 0x%x on VF %d\n",
2479 vlan_id, qos, vf_id);
2480
2481 /* add new VLAN filter */
2482 ret = i40e_vsi_add_vlan(vsi, vlan_id);
2483 if (ret) {
2484 dev_info(&vsi->back->pdev->dev,
2485 "add VF VLAN failed, ret=%d aq_err=%d\n", ret,
2486 vsi->back->hw.aq.asq_last_status);
2487 goto error_pvid;
2488 }
Greg Rose8d82a7c2014-01-13 16:13:04 -08002489 /* Kill non-vlan MAC filters - ignore error return since
2490 * there might not be any non-vlan MAC filters.
2491 */
2492 i40e_vsi_kill_vlan(vsi, I40E_VLAN_ANY);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002493 }
2494
2495 if (ret) {
2496 dev_err(&pf->pdev->dev, "Unable to update VF vsi context\n");
2497 goto error_pvid;
2498 }
Greg Rose6c12fcb2013-11-28 06:39:34 +00002499 /* The Port VLAN needs to be saved across resets the same as the
2500 * default LAN MAC address.
2501 */
2502 vf->port_vlan_id = le16_to_cpu(vsi->info.pvid);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002503 ret = 0;
2504
2505error_pvid:
2506 return ret;
2507}
2508
Mitch Williams84590fd2014-04-09 05:58:57 +00002509#define I40E_BW_CREDIT_DIVISOR 50 /* 50Mbps per BW credit */
2510#define I40E_MAX_BW_INACTIVE_ACCUM 4 /* device can accumulate 4 credits max */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002511/**
2512 * i40e_ndo_set_vf_bw
2513 * @netdev: network interface device structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002514 * @vf_id: VF identifier
2515 * @tx_rate: Tx rate
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002516 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002517 * configure VF Tx rate
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002518 **/
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002519int i40e_ndo_set_vf_bw(struct net_device *netdev, int vf_id, int min_tx_rate,
2520 int max_tx_rate)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002521{
Mitch Williams6b192892014-03-06 09:02:29 +00002522 struct i40e_netdev_priv *np = netdev_priv(netdev);
2523 struct i40e_pf *pf = np->vsi->back;
2524 struct i40e_vsi *vsi;
2525 struct i40e_vf *vf;
2526 int speed = 0;
2527 int ret = 0;
2528
2529 /* validate the request */
2530 if (vf_id >= pf->num_alloc_vfs) {
2531 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d.\n", vf_id);
2532 ret = -EINVAL;
2533 goto error;
2534 }
2535
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002536 if (min_tx_rate) {
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002537 dev_err(&pf->pdev->dev, "Invalid min tx rate (%d) (greater than 0) specified for VF %d.\n",
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002538 min_tx_rate, vf_id);
2539 return -EINVAL;
2540 }
2541
Mitch Williams6b192892014-03-06 09:02:29 +00002542 vf = &(pf->vf[vf_id]);
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07002543 vsi = pf->vsi[vf->lan_vsi_idx];
Mitch Williams6b192892014-03-06 09:02:29 +00002544 if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
Mitch Williams2d166c32015-12-22 15:34:42 -08002545 dev_err(&pf->pdev->dev, "VF %d still in reset. Try again.\n",
2546 vf_id);
2547 ret = -EAGAIN;
Mitch Williams6b192892014-03-06 09:02:29 +00002548 goto error;
2549 }
2550
2551 switch (pf->hw.phy.link_info.link_speed) {
2552 case I40E_LINK_SPEED_40GB:
2553 speed = 40000;
2554 break;
Mitch Williams07f169c2015-12-23 12:05:49 -08002555 case I40E_LINK_SPEED_20GB:
2556 speed = 20000;
2557 break;
Mitch Williams6b192892014-03-06 09:02:29 +00002558 case I40E_LINK_SPEED_10GB:
2559 speed = 10000;
2560 break;
2561 case I40E_LINK_SPEED_1GB:
2562 speed = 1000;
2563 break;
2564 default:
2565 break;
2566 }
2567
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002568 if (max_tx_rate > speed) {
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002569 dev_err(&pf->pdev->dev, "Invalid max tx rate %d specified for VF %d.",
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002570 max_tx_rate, vf->vf_id);
Mitch Williams6b192892014-03-06 09:02:29 +00002571 ret = -EINVAL;
2572 goto error;
2573 }
2574
Mitch Williamsdac9b312014-04-09 05:58:56 +00002575 if ((max_tx_rate < 50) && (max_tx_rate > 0)) {
2576 dev_warn(&pf->pdev->dev, "Setting max Tx rate to minimum usable value of 50Mbps.\n");
2577 max_tx_rate = 50;
2578 }
2579
Mitch Williams6b192892014-03-06 09:02:29 +00002580 /* Tx rate credits are in values of 50Mbps, 0 is disabled*/
Mitch Williams84590fd2014-04-09 05:58:57 +00002581 ret = i40e_aq_config_vsi_bw_limit(&pf->hw, vsi->seid,
2582 max_tx_rate / I40E_BW_CREDIT_DIVISOR,
2583 I40E_MAX_BW_INACTIVE_ACCUM, NULL);
Mitch Williams6b192892014-03-06 09:02:29 +00002584 if (ret) {
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002585 dev_err(&pf->pdev->dev, "Unable to set max tx rate, error code %d.\n",
Mitch Williams6b192892014-03-06 09:02:29 +00002586 ret);
2587 ret = -EIO;
2588 goto error;
2589 }
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002590 vf->tx_rate = max_tx_rate;
Mitch Williams6b192892014-03-06 09:02:29 +00002591error:
2592 return ret;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002593}
2594
2595/**
2596 * i40e_ndo_get_vf_config
2597 * @netdev: network interface device structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002598 * @vf_id: VF identifier
2599 * @ivi: VF configuration structure
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002600 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002601 * return VF configuration
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002602 **/
2603int i40e_ndo_get_vf_config(struct net_device *netdev,
2604 int vf_id, struct ifla_vf_info *ivi)
2605{
2606 struct i40e_netdev_priv *np = netdev_priv(netdev);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002607 struct i40e_vsi *vsi = np->vsi;
2608 struct i40e_pf *pf = vsi->back;
2609 struct i40e_vf *vf;
2610 int ret = 0;
2611
2612 /* validate the request */
2613 if (vf_id >= pf->num_alloc_vfs) {
2614 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d\n", vf_id);
2615 ret = -EINVAL;
2616 goto error_param;
2617 }
2618
2619 vf = &(pf->vf[vf_id]);
2620 /* first vsi is always the LAN vsi */
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07002621 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002622 if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
Mitch Williams2d166c32015-12-22 15:34:42 -08002623 dev_err(&pf->pdev->dev, "VF %d still in reset. Try again.\n",
2624 vf_id);
2625 ret = -EAGAIN;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002626 goto error_param;
2627 }
2628
2629 ivi->vf = vf_id;
2630
Jesse Brandeburg6995b362015-08-28 17:55:54 -04002631 ether_addr_copy(ivi->mac, vf->default_lan_addr.addr);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002632
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002633 ivi->max_tx_rate = vf->tx_rate;
2634 ivi->min_tx_rate = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002635 ivi->vlan = le16_to_cpu(vsi->info.pvid) & I40E_VLAN_MASK;
2636 ivi->qos = (le16_to_cpu(vsi->info.pvid) & I40E_PRIORITY_MASK) >>
2637 I40E_VLAN_PRIORITY_SHIFT;
Mitch Williams84ca55a2014-03-14 07:32:24 +00002638 if (vf->link_forced == false)
2639 ivi->linkstate = IFLA_VF_LINK_STATE_AUTO;
2640 else if (vf->link_up == true)
2641 ivi->linkstate = IFLA_VF_LINK_STATE_ENABLE;
2642 else
2643 ivi->linkstate = IFLA_VF_LINK_STATE_DISABLE;
Mitch Williamsc674d122014-05-20 08:01:40 +00002644 ivi->spoofchk = vf->spoofchk;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002645 ret = 0;
2646
2647error_param:
2648 return ret;
2649}
Mitch Williams588aefa2014-02-11 08:27:49 +00002650
2651/**
2652 * i40e_ndo_set_vf_link_state
2653 * @netdev: network interface device structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002654 * @vf_id: VF identifier
Mitch Williams588aefa2014-02-11 08:27:49 +00002655 * @link: required link state
2656 *
2657 * Set the link state of a specified VF, regardless of physical link state
2658 **/
2659int i40e_ndo_set_vf_link_state(struct net_device *netdev, int vf_id, int link)
2660{
2661 struct i40e_netdev_priv *np = netdev_priv(netdev);
2662 struct i40e_pf *pf = np->vsi->back;
2663 struct i40e_virtchnl_pf_event pfe;
2664 struct i40e_hw *hw = &pf->hw;
2665 struct i40e_vf *vf;
Ashish Shahf19efbb2014-08-01 13:27:06 -07002666 int abs_vf_id;
Mitch Williams588aefa2014-02-11 08:27:49 +00002667 int ret = 0;
2668
2669 /* validate the request */
2670 if (vf_id >= pf->num_alloc_vfs) {
2671 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d\n", vf_id);
2672 ret = -EINVAL;
2673 goto error_out;
2674 }
2675
2676 vf = &pf->vf[vf_id];
Ashish Shahf19efbb2014-08-01 13:27:06 -07002677 abs_vf_id = vf->vf_id + hw->func_caps.vf_base_id;
Mitch Williams588aefa2014-02-11 08:27:49 +00002678
2679 pfe.event = I40E_VIRTCHNL_EVENT_LINK_CHANGE;
2680 pfe.severity = I40E_PF_EVENT_SEVERITY_INFO;
2681
2682 switch (link) {
2683 case IFLA_VF_LINK_STATE_AUTO:
2684 vf->link_forced = false;
2685 pfe.event_data.link_event.link_status =
2686 pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP;
2687 pfe.event_data.link_event.link_speed =
2688 pf->hw.phy.link_info.link_speed;
2689 break;
2690 case IFLA_VF_LINK_STATE_ENABLE:
2691 vf->link_forced = true;
2692 vf->link_up = true;
2693 pfe.event_data.link_event.link_status = true;
2694 pfe.event_data.link_event.link_speed = I40E_LINK_SPEED_40GB;
2695 break;
2696 case IFLA_VF_LINK_STATE_DISABLE:
2697 vf->link_forced = true;
2698 vf->link_up = false;
2699 pfe.event_data.link_event.link_status = false;
2700 pfe.event_data.link_event.link_speed = 0;
2701 break;
2702 default:
2703 ret = -EINVAL;
2704 goto error_out;
2705 }
2706 /* Notify the VF of its new link state */
Ashish Shahf19efbb2014-08-01 13:27:06 -07002707 i40e_aq_send_msg_to_vf(hw, abs_vf_id, I40E_VIRTCHNL_OP_EVENT,
Mitch Williams588aefa2014-02-11 08:27:49 +00002708 0, (u8 *)&pfe, sizeof(pfe), NULL);
2709
2710error_out:
2711 return ret;
2712}
Mitch Williamsc674d122014-05-20 08:01:40 +00002713
2714/**
2715 * i40e_ndo_set_vf_spoofchk
2716 * @netdev: network interface device structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002717 * @vf_id: VF identifier
Mitch Williamsc674d122014-05-20 08:01:40 +00002718 * @enable: flag to enable or disable feature
2719 *
2720 * Enable or disable VF spoof checking
2721 **/
Serey Konge6d90042014-07-12 07:28:14 +00002722int i40e_ndo_set_vf_spoofchk(struct net_device *netdev, int vf_id, bool enable)
Mitch Williamsc674d122014-05-20 08:01:40 +00002723{
2724 struct i40e_netdev_priv *np = netdev_priv(netdev);
2725 struct i40e_vsi *vsi = np->vsi;
2726 struct i40e_pf *pf = vsi->back;
2727 struct i40e_vsi_context ctxt;
2728 struct i40e_hw *hw = &pf->hw;
2729 struct i40e_vf *vf;
2730 int ret = 0;
2731
2732 /* validate the request */
2733 if (vf_id >= pf->num_alloc_vfs) {
2734 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d\n", vf_id);
2735 ret = -EINVAL;
2736 goto out;
2737 }
2738
2739 vf = &(pf->vf[vf_id]);
Mitch Williams2d166c32015-12-22 15:34:42 -08002740 if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
2741 dev_err(&pf->pdev->dev, "VF %d still in reset. Try again.\n",
2742 vf_id);
2743 ret = -EAGAIN;
2744 goto out;
2745 }
Mitch Williamsc674d122014-05-20 08:01:40 +00002746
2747 if (enable == vf->spoofchk)
2748 goto out;
2749
2750 vf->spoofchk = enable;
2751 memset(&ctxt, 0, sizeof(ctxt));
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07002752 ctxt.seid = pf->vsi[vf->lan_vsi_idx]->seid;
Mitch Williamsc674d122014-05-20 08:01:40 +00002753 ctxt.pf_num = pf->hw.pf_id;
2754 ctxt.info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID);
2755 if (enable)
Greg Rose30d71af2015-01-29 07:17:17 +00002756 ctxt.info.sec_flags |= (I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK |
2757 I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK);
Mitch Williamsc674d122014-05-20 08:01:40 +00002758 ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL);
2759 if (ret) {
2760 dev_err(&pf->pdev->dev, "Error %d updating VSI parameters\n",
2761 ret);
2762 ret = -EIO;
2763 }
2764out:
2765 return ret;
2766}