blob: bf35b64f6a4a0094b5c7edec399909898acd86f4 [file] [log] [blame]
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001/*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Driver
Neerav Parikh51616012015-02-06 08:52:14 +00004 * Copyright(c) 2013 - 2015 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/**
66 * i40e_vc_notify_link_state
67 * @vf: pointer to the VF structure
68 *
69 * send a link status message to a single VF
70 **/
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 */
594 rx_ctx.dtype = 0x2;
595 }
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 */
735 wr32(hw, I40E_VSILAN_QBASE(vf->lan_vsi_id),
736 I40E_VSILAN_QBASE_VSIQTABLE_ENA_MASK);
737
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 }
763 wr32(hw, I40E_VSILAN_QTABLE(j, vf->lan_vsi_id), reg);
764 }
765
766 i40e_flush(hw);
767}
768
769/**
770 * i40e_disable_vf_mappings
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000771 * @vf: pointer to the VF info
Mitch Williams805bd5b2013-11-28 06:39:26 +0000772 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000773 * disable VF mappings
Mitch Williams805bd5b2013-11-28 06:39:26 +0000774 **/
775static void i40e_disable_vf_mappings(struct i40e_vf *vf)
776{
777 struct i40e_pf *pf = vf->pf;
778 struct i40e_hw *hw = &pf->hw;
779 int i;
780
781 /* disable qp mappings */
782 wr32(hw, I40E_VPLAN_MAPENA(vf->vf_id), 0);
783 for (i = 0; i < I40E_MAX_VSI_QP; i++)
784 wr32(hw, I40E_VPLAN_QTABLE(i, vf->vf_id),
785 I40E_QUEUE_END_OF_LIST);
786 i40e_flush(hw);
787}
788
789/**
790 * i40e_free_vf_res
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000791 * @vf: pointer to the VF info
Mitch Williams805bd5b2013-11-28 06:39:26 +0000792 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000793 * free VF resources
Mitch Williams805bd5b2013-11-28 06:39:26 +0000794 **/
795static void i40e_free_vf_res(struct i40e_vf *vf)
796{
797 struct i40e_pf *pf = vf->pf;
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000798 struct i40e_hw *hw = &pf->hw;
799 u32 reg_idx, reg;
800 int i, msix_vf;
Mitch Williams805bd5b2013-11-28 06:39:26 +0000801
802 /* free vsi & disconnect it from the parent uplink */
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700803 if (vf->lan_vsi_idx) {
804 i40e_vsi_release(pf->vsi[vf->lan_vsi_idx]);
805 vf->lan_vsi_idx = 0;
Mitch Williams805bd5b2013-11-28 06:39:26 +0000806 vf->lan_vsi_id = 0;
807 }
Mitch Williams9347eb72014-02-11 08:26:32 +0000808 msix_vf = pf->hw.func_caps.num_msix_vectors_vf;
809
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000810 /* disable interrupts so the VF starts in a known state */
811 for (i = 0; i < msix_vf; i++) {
812 /* format is same for both registers */
813 if (0 == i)
814 reg_idx = I40E_VFINT_DYN_CTL0(vf->vf_id);
815 else
816 reg_idx = I40E_VFINT_DYN_CTLN(((msix_vf - 1) *
817 (vf->vf_id))
818 + (i - 1));
819 wr32(hw, reg_idx, I40E_VFINT_DYN_CTLN_CLEARPBA_MASK);
820 i40e_flush(hw);
821 }
Mitch Williams805bd5b2013-11-28 06:39:26 +0000822
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000823 /* clear the irq settings */
824 for (i = 0; i < msix_vf; i++) {
825 /* format is same for both registers */
826 if (0 == i)
827 reg_idx = I40E_VPINT_LNKLST0(vf->vf_id);
828 else
829 reg_idx = I40E_VPINT_LNKLSTN(((msix_vf - 1) *
830 (vf->vf_id))
831 + (i - 1));
832 reg = (I40E_VPINT_LNKLSTN_FIRSTQ_TYPE_MASK |
833 I40E_VPINT_LNKLSTN_FIRSTQ_INDX_MASK);
834 wr32(hw, reg_idx, reg);
835 i40e_flush(hw);
836 }
Mitch Williams805bd5b2013-11-28 06:39:26 +0000837 /* reset some of the state varibles keeping
838 * track of the resources
839 */
840 vf->num_queue_pairs = 0;
841 vf->vf_states = 0;
Mitch Williams21be99e2015-08-31 19:54:48 -0400842 clear_bit(I40E_VF_STAT_INIT, &vf->vf_states);
Mitch Williams805bd5b2013-11-28 06:39:26 +0000843}
844
845/**
846 * i40e_alloc_vf_res
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000847 * @vf: pointer to the VF info
Mitch Williams805bd5b2013-11-28 06:39:26 +0000848 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000849 * allocate VF resources
Mitch Williams805bd5b2013-11-28 06:39:26 +0000850 **/
851static int i40e_alloc_vf_res(struct i40e_vf *vf)
852{
853 struct i40e_pf *pf = vf->pf;
854 int total_queue_pairs = 0;
855 int ret;
856
857 /* allocate hw vsi context & associated resources */
858 ret = i40e_alloc_vsi_res(vf, I40E_VSI_SRIOV);
859 if (ret)
860 goto error_alloc;
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700861 total_queue_pairs += pf->vsi[vf->lan_vsi_idx]->alloc_queue_pairs;
Mitch Williams805bd5b2013-11-28 06:39:26 +0000862 set_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps);
863
864 /* store the total qps number for the runtime
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000865 * VF req validation
Mitch Williams805bd5b2013-11-28 06:39:26 +0000866 */
867 vf->num_queue_pairs = total_queue_pairs;
868
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000869 /* VF is now completely initialized */
Mitch Williams805bd5b2013-11-28 06:39:26 +0000870 set_bit(I40E_VF_STAT_INIT, &vf->vf_states);
871
872error_alloc:
873 if (ret)
874 i40e_free_vf_res(vf);
875
876 return ret;
877}
878
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000879#define VF_DEVICE_STATUS 0xAA
880#define VF_TRANS_PENDING_MASK 0x20
881/**
882 * i40e_quiesce_vf_pci
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000883 * @vf: pointer to the VF structure
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000884 *
885 * Wait for VF PCI transactions to be cleared after reset. Returns -EIO
886 * if the transactions never clear.
887 **/
888static int i40e_quiesce_vf_pci(struct i40e_vf *vf)
889{
890 struct i40e_pf *pf = vf->pf;
891 struct i40e_hw *hw = &pf->hw;
892 int vf_abs_id, i;
893 u32 reg;
894
Mitch Williamsb141d612013-11-28 06:39:36 +0000895 vf_abs_id = vf->vf_id + hw->func_caps.vf_base_id;
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000896
897 wr32(hw, I40E_PF_PCI_CIAA,
898 VF_DEVICE_STATUS | (vf_abs_id << I40E_PF_PCI_CIAA_VF_NUM_SHIFT));
899 for (i = 0; i < 100; i++) {
900 reg = rd32(hw, I40E_PF_PCI_CIAD);
901 if ((reg & VF_TRANS_PENDING_MASK) == 0)
902 return 0;
903 udelay(1);
904 }
905 return -EIO;
906}
907
Mitch Williams805bd5b2013-11-28 06:39:26 +0000908/**
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000909 * i40e_reset_vf
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000910 * @vf: pointer to the VF structure
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000911 * @flr: VFLR was issued or not
912 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000913 * reset the VF
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000914 **/
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000915void i40e_reset_vf(struct i40e_vf *vf, bool flr)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000916{
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000917 struct i40e_pf *pf = vf->pf;
918 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000919 bool rsd = false;
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000920 int i;
921 u32 reg;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000922
Mitch Williams3ba9bcb2015-01-09 11:18:15 +0000923 if (test_and_set_bit(__I40E_VF_DISABLE, &pf->state))
924 return;
925
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000926 /* warn the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000927 clear_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states);
928
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000929 /* In the case of a VFLR, the HW has already reset the VF and we
930 * just need to clean up, so don't hit the VFRTRIG register.
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000931 */
932 if (!flr) {
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000933 /* reset VF using VPGEN_VFRTRIG reg */
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000934 reg = rd32(hw, I40E_VPGEN_VFRTRIG(vf->vf_id));
935 reg |= I40E_VPGEN_VFRTRIG_VFSWR_MASK;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000936 wr32(hw, I40E_VPGEN_VFRTRIG(vf->vf_id), reg);
937 i40e_flush(hw);
938 }
939
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000940 if (i40e_quiesce_vf_pci(vf))
941 dev_err(&pf->pdev->dev, "VF %d PCI transactions stuck\n",
942 vf->vf_id);
943
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000944 /* poll VPGEN_VFRSTAT reg to make sure
945 * that reset is complete
946 */
Mitch Williams1750a222015-01-09 11:18:13 +0000947 for (i = 0; i < 10; i++) {
948 /* VF reset requires driver to first reset the VF and then
949 * poll the status register to make sure that the reset
950 * completed successfully. Due to internal HW FIFO flushes,
951 * we must wait 10ms before the register will be valid.
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000952 */
Mitch Williams1750a222015-01-09 11:18:13 +0000953 usleep_range(10000, 20000);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000954 reg = rd32(hw, I40E_VPGEN_VFRSTAT(vf->vf_id));
955 if (reg & I40E_VPGEN_VFRSTAT_VFRD_MASK) {
956 rsd = true;
957 break;
958 }
959 }
960
Anjali Singhai Jain57175ac2015-04-07 19:45:35 -0400961 if (flr)
962 usleep_range(10000, 20000);
963
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000964 if (!rsd)
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000965 dev_err(&pf->pdev->dev, "VF reset check timeout on VF %d\n",
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000966 vf->vf_id);
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000967 wr32(hw, I40E_VFGEN_RSTAT1(vf->vf_id), I40E_VFR_COMPLETED);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000968 /* clear the reset bit in the VPGEN_VFRTRIG reg */
969 reg = rd32(hw, I40E_VPGEN_VFRTRIG(vf->vf_id));
970 reg &= ~I40E_VPGEN_VFRTRIG_VFSWR_MASK;
971 wr32(hw, I40E_VPGEN_VFRTRIG(vf->vf_id), reg);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000972
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000973 /* On initial reset, we won't have any queues */
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700974 if (vf->lan_vsi_idx == 0)
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000975 goto complete_reset;
976
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700977 i40e_vsi_control_rings(pf->vsi[vf->lan_vsi_idx], false);
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000978complete_reset:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000979 /* reallocate VF resources to reset the VSI state */
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000980 i40e_free_vf_res(vf);
Mitch Williams21be99e2015-08-31 19:54:48 -0400981 if (!i40e_alloc_vf_res(vf)) {
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -0600982 int abs_vf_id = vf->vf_id + hw->func_caps.vf_base_id;
Mitch Williams21be99e2015-08-31 19:54:48 -0400983 i40e_enable_vf_mappings(vf);
984 set_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states);
985 clear_bit(I40E_VF_STAT_DISABLED, &vf->vf_states);
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -0600986 i40e_notify_client_of_vf_reset(pf, abs_vf_id);
Mitch Williams21be99e2015-08-31 19:54:48 -0400987 }
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000988 /* tell the VF the reset is done */
989 wr32(hw, I40E_VFGEN_RSTAT1(vf->vf_id), I40E_VFR_VFACTIVE);
990 i40e_flush(hw);
Mitch Williams3ba9bcb2015-01-09 11:18:15 +0000991 clear_bit(__I40E_VF_DISABLE, &pf->state);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000992}
Greg Rosec3542292013-12-13 08:38:38 +0000993
994/**
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000995 * i40e_free_vfs
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000996 * @pf: pointer to the PF structure
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000997 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000998 * free VF resources
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000999 **/
1000void i40e_free_vfs(struct i40e_pf *pf)
1001{
Mitch Williamsf7414532013-11-28 06:39:40 +00001002 struct i40e_hw *hw = &pf->hw;
1003 u32 reg_idx, bit_idx;
1004 int i, tmp, vf_id;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001005
1006 if (!pf->vf)
1007 return;
Mitch Williams3ba9bcb2015-01-09 11:18:15 +00001008 while (test_and_set_bit(__I40E_VF_DISABLE, &pf->state))
1009 usleep_range(1000, 2000);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001010
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06001011 i40e_notify_client_of_vf_enable(pf, 0);
Mitch Williams0325fca2015-08-26 15:14:09 -04001012 for (i = 0; i < pf->num_alloc_vfs; i++)
1013 if (test_bit(I40E_VF_STAT_INIT, &pf->vf[i].vf_states))
1014 i40e_vsi_control_rings(pf->vsi[pf->vf[i].lan_vsi_idx],
1015 false);
1016
Mitch A Williams6a9ddb32014-12-09 08:53:01 +00001017 /* Disable IOV before freeing resources. This lets any VF drivers
1018 * running in the host get themselves cleaned up before we yank
1019 * the carpet out from underneath their feet.
1020 */
1021 if (!pci_vfs_assigned(pf->pdev))
1022 pci_disable_sriov(pf->pdev);
Mitch Williams6d7b9672015-03-31 00:45:02 -07001023 else
1024 dev_warn(&pf->pdev->dev, "VFs are assigned - not disabling SR-IOV\n");
Mitch A Williams6a9ddb32014-12-09 08:53:01 +00001025
1026 msleep(20); /* let any messages in transit get finished up */
1027
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001028 /* free up VF resources */
Mitch Williams6c1b5bf2013-11-28 06:39:30 +00001029 tmp = pf->num_alloc_vfs;
1030 pf->num_alloc_vfs = 0;
1031 for (i = 0; i < tmp; i++) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001032 if (test_bit(I40E_VF_STAT_INIT, &pf->vf[i].vf_states))
1033 i40e_free_vf_res(&pf->vf[i]);
1034 /* disable qp mappings */
1035 i40e_disable_vf_mappings(&pf->vf[i]);
1036 }
1037
1038 kfree(pf->vf);
1039 pf->vf = NULL;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001040
Mitch Williams9e5634d2014-04-04 04:43:14 +00001041 /* This check is for when the driver is unloaded while VFs are
1042 * assigned. Setting the number of VFs to 0 through sysfs is caught
1043 * before this function ever gets called.
1044 */
Ethan Zhaoc24817b2014-07-22 18:36:43 +00001045 if (!pci_vfs_assigned(pf->pdev)) {
Mitch Williamsf7414532013-11-28 06:39:40 +00001046 /* Acknowledge VFLR for all VFS. Without this, VFs will fail to
1047 * work correctly when SR-IOV gets re-enabled.
1048 */
1049 for (vf_id = 0; vf_id < tmp; vf_id++) {
1050 reg_idx = (hw->func_caps.vf_base_id + vf_id) / 32;
1051 bit_idx = (hw->func_caps.vf_base_id + vf_id) % 32;
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001052 wr32(hw, I40E_GLGEN_VFLRSTAT(reg_idx), BIT(bit_idx));
Mitch Williamsf7414532013-11-28 06:39:40 +00001053 }
Greg Rosec3542292013-12-13 08:38:38 +00001054 }
Mitch Williams3ba9bcb2015-01-09 11:18:15 +00001055 clear_bit(__I40E_VF_DISABLE, &pf->state);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001056}
1057
1058#ifdef CONFIG_PCI_IOV
1059/**
1060 * i40e_alloc_vfs
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001061 * @pf: pointer to the PF structure
1062 * @num_alloc_vfs: number of VFs to allocate
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001063 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001064 * allocate VF resources
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001065 **/
Mitch Williams4aeec012014-02-13 03:48:47 -08001066int i40e_alloc_vfs(struct i40e_pf *pf, u16 num_alloc_vfs)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001067{
1068 struct i40e_vf *vfs;
1069 int i, ret = 0;
1070
Mitch Williams6c1b5bf2013-11-28 06:39:30 +00001071 /* Disable interrupt 0 so we don't try to handle the VFLR. */
Mitch Williams2ef28cf2013-11-28 06:39:32 +00001072 i40e_irq_dynamic_disable_icr0(pf);
1073
Mitch Williams4aeec012014-02-13 03:48:47 -08001074 /* Check to see if we're just allocating resources for extant VFs */
1075 if (pci_num_vf(pf->pdev) != num_alloc_vfs) {
1076 ret = pci_enable_sriov(pf->pdev, num_alloc_vfs);
1077 if (ret) {
Akeem G Abodunrinde445b32015-10-01 14:37:40 -04001078 pf->flags &= ~I40E_FLAG_VEB_MODE_ENABLED;
Mitch Williams4aeec012014-02-13 03:48:47 -08001079 pf->num_alloc_vfs = 0;
1080 goto err_iov;
1081 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001082 }
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06001083 i40e_notify_client_of_vf_enable(pf, num_alloc_vfs);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001084 /* allocate memory */
Akeem G Abodunrincc6456a2014-02-06 05:51:02 +00001085 vfs = kcalloc(num_alloc_vfs, sizeof(struct i40e_vf), GFP_KERNEL);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001086 if (!vfs) {
1087 ret = -ENOMEM;
1088 goto err_alloc;
1089 }
Mitch Williamsc674d122014-05-20 08:01:40 +00001090 pf->vf = vfs;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001091
1092 /* apply default profile */
1093 for (i = 0; i < num_alloc_vfs; i++) {
1094 vfs[i].pf = pf;
1095 vfs[i].parent_type = I40E_SWITCH_ELEMENT_TYPE_VEB;
1096 vfs[i].vf_id = i;
1097
1098 /* assign default capabilities */
1099 set_bit(I40E_VIRTCHNL_VF_CAP_L2, &vfs[i].vf_caps);
Mitch Williamsc674d122014-05-20 08:01:40 +00001100 vfs[i].spoofchk = true;
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001101 /* VF resources get allocated during reset */
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00001102 i40e_reset_vf(&vfs[i], false);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001103
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001104 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001105 pf->num_alloc_vfs = num_alloc_vfs;
1106
1107err_alloc:
1108 if (ret)
1109 i40e_free_vfs(pf);
1110err_iov:
Mitch Williams6c1b5bf2013-11-28 06:39:30 +00001111 /* Re-enable interrupt 0. */
Mitch Williams2ef28cf2013-11-28 06:39:32 +00001112 i40e_irq_dynamic_enable_icr0(pf);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001113 return ret;
1114}
1115
1116#endif
1117/**
1118 * i40e_pci_sriov_enable
1119 * @pdev: pointer to a pci_dev structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001120 * @num_vfs: number of VFs to allocate
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001121 *
1122 * Enable or change the number of VFs
1123 **/
1124static int i40e_pci_sriov_enable(struct pci_dev *pdev, int num_vfs)
1125{
1126#ifdef CONFIG_PCI_IOV
1127 struct i40e_pf *pf = pci_get_drvdata(pdev);
1128 int pre_existing_vfs = pci_num_vf(pdev);
1129 int err = 0;
1130
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001131 if (test_bit(__I40E_TESTING, &pf->state)) {
Greg Rosee17bc412015-04-16 20:05:59 -04001132 dev_warn(&pdev->dev,
1133 "Cannot enable SR-IOV virtual functions while the device is undergoing diagnostic testing\n");
1134 err = -EPERM;
1135 goto err_out;
1136 }
1137
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001138 if (pre_existing_vfs && pre_existing_vfs != num_vfs)
1139 i40e_free_vfs(pf);
1140 else if (pre_existing_vfs && pre_existing_vfs == num_vfs)
1141 goto out;
1142
1143 if (num_vfs > pf->num_req_vfs) {
Mitch Williams96c8d072015-08-27 11:42:35 -04001144 dev_warn(&pdev->dev, "Unable to enable %d VFs. Limited to %d VFs due to device resource constraints.\n",
1145 num_vfs, pf->num_req_vfs);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001146 err = -EPERM;
1147 goto err_out;
1148 }
1149
Mitch Williams96c8d072015-08-27 11:42:35 -04001150 dev_info(&pdev->dev, "Allocating %d VFs.\n", num_vfs);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001151 err = i40e_alloc_vfs(pf, num_vfs);
1152 if (err) {
1153 dev_warn(&pdev->dev, "Failed to enable SR-IOV: %d\n", err);
1154 goto err_out;
1155 }
1156
1157out:
1158 return num_vfs;
1159
1160err_out:
1161 return err;
1162#endif
1163 return 0;
1164}
1165
1166/**
1167 * i40e_pci_sriov_configure
1168 * @pdev: pointer to a pci_dev structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001169 * @num_vfs: number of VFs to allocate
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001170 *
1171 * Enable or change the number of VFs. Called when the user updates the number
1172 * of VFs in sysfs.
1173 **/
1174int i40e_pci_sriov_configure(struct pci_dev *pdev, int num_vfs)
1175{
1176 struct i40e_pf *pf = pci_get_drvdata(pdev);
1177
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07001178 if (num_vfs) {
1179 if (!(pf->flags & I40E_FLAG_VEB_MODE_ENABLED)) {
1180 pf->flags |= I40E_FLAG_VEB_MODE_ENABLED;
1181 i40e_do_reset_safe(pf,
1182 BIT_ULL(__I40E_PF_RESET_REQUESTED));
1183 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001184 return i40e_pci_sriov_enable(pdev, num_vfs);
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07001185 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001186
Ethan Zhaoc24817b2014-07-22 18:36:43 +00001187 if (!pci_vfs_assigned(pf->pdev)) {
Mitch Williams9e5634d2014-04-04 04:43:14 +00001188 i40e_free_vfs(pf);
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07001189 pf->flags &= ~I40E_FLAG_VEB_MODE_ENABLED;
1190 i40e_do_reset_safe(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED));
Mitch Williams9e5634d2014-04-04 04:43:14 +00001191 } else {
1192 dev_warn(&pdev->dev, "Unable to free VFs because some are assigned to VMs.\n");
1193 return -EINVAL;
1194 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001195 return 0;
1196}
1197
1198/***********************virtual channel routines******************/
1199
1200/**
1201 * i40e_vc_send_msg_to_vf
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001202 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001203 * @v_opcode: virtual channel opcode
1204 * @v_retval: virtual channel return value
1205 * @msg: pointer to the msg buffer
1206 * @msglen: msg length
1207 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001208 * send msg to VF
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001209 **/
1210static int i40e_vc_send_msg_to_vf(struct i40e_vf *vf, u32 v_opcode,
1211 u32 v_retval, u8 *msg, u16 msglen)
1212{
Anjali Singhai Jain6e7b5bd2014-07-10 07:58:21 +00001213 struct i40e_pf *pf;
1214 struct i40e_hw *hw;
1215 int abs_vf_id;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001216 i40e_status aq_ret;
1217
Anjali Singhai Jain6e7b5bd2014-07-10 07:58:21 +00001218 /* validate the request */
1219 if (!vf || vf->vf_id >= vf->pf->num_alloc_vfs)
1220 return -EINVAL;
1221
1222 pf = vf->pf;
1223 hw = &pf->hw;
1224 abs_vf_id = vf->vf_id + hw->func_caps.vf_base_id;
1225
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001226 /* single place to detect unsuccessful return values */
1227 if (v_retval) {
1228 vf->num_invalid_msgs++;
Mitch Williamse7ffb722015-10-26 19:44:37 -04001229 dev_err(&pf->pdev->dev, "VF %d failed opcode %d, error: %d\n",
1230 vf->vf_id, v_opcode, v_retval);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001231 if (vf->num_invalid_msgs >
1232 I40E_DEFAULT_NUM_INVALID_MSGS_ALLOWED) {
1233 dev_err(&pf->pdev->dev,
1234 "Number of invalid messages exceeded for VF %d\n",
1235 vf->vf_id);
1236 dev_err(&pf->pdev->dev, "Use PF Control I/F to enable the VF\n");
1237 set_bit(I40E_VF_STAT_DISABLED, &vf->vf_states);
1238 }
1239 } else {
1240 vf->num_valid_msgs++;
Jingjing Wu5d38c932015-09-28 14:12:39 -04001241 /* reset the invalid counter, if a valid message is received. */
1242 vf->num_invalid_msgs = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001243 }
1244
Ashish Shahf19efbb2014-08-01 13:27:06 -07001245 aq_ret = i40e_aq_send_msg_to_vf(hw, abs_vf_id, v_opcode, v_retval,
Mitch Williams7efa84b2013-11-28 06:39:41 +00001246 msg, msglen, NULL);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001247 if (aq_ret) {
1248 dev_err(&pf->pdev->dev,
1249 "Unable to send the message to VF %d aq_err %d\n",
1250 vf->vf_id, pf->hw.aq.asq_last_status);
1251 return -EIO;
1252 }
1253
1254 return 0;
1255}
1256
1257/**
1258 * i40e_vc_send_resp_to_vf
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001259 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001260 * @opcode: operation code
1261 * @retval: return value
1262 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001263 * send resp msg to VF
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001264 **/
1265static int i40e_vc_send_resp_to_vf(struct i40e_vf *vf,
1266 enum i40e_virtchnl_ops opcode,
1267 i40e_status retval)
1268{
1269 return i40e_vc_send_msg_to_vf(vf, opcode, retval, NULL, 0);
1270}
1271
1272/**
1273 * i40e_vc_get_version_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001274 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001275 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001276 * called from the VF to request the API version used by the PF
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001277 **/
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04001278static int i40e_vc_get_version_msg(struct i40e_vf *vf, u8 *msg)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001279{
1280 struct i40e_virtchnl_version_info info = {
1281 I40E_VIRTCHNL_VERSION_MAJOR, I40E_VIRTCHNL_VERSION_MINOR
1282 };
1283
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04001284 vf->vf_ver = *(struct i40e_virtchnl_version_info *)msg;
Mitch Williams606a5482015-06-04 16:24:00 -04001285 /* VFs running the 1.0 API expect to get 1.0 back or they will cry. */
1286 if (VF_IS_V10(vf))
1287 info.minor = I40E_VIRTCHNL_VERSION_MINOR_NO_VF_CAPS;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001288 return i40e_vc_send_msg_to_vf(vf, I40E_VIRTCHNL_OP_VERSION,
1289 I40E_SUCCESS, (u8 *)&info,
1290 sizeof(struct
1291 i40e_virtchnl_version_info));
1292}
1293
1294/**
1295 * i40e_vc_get_vf_resources_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001296 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001297 * @msg: pointer to the msg buffer
1298 * @msglen: msg length
1299 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001300 * called from the VF to request its resources
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001301 **/
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04001302static int i40e_vc_get_vf_resources_msg(struct i40e_vf *vf, u8 *msg)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001303{
1304 struct i40e_virtchnl_vf_resource *vfres = NULL;
1305 struct i40e_pf *pf = vf->pf;
1306 i40e_status aq_ret = 0;
1307 struct i40e_vsi *vsi;
1308 int i = 0, len = 0;
1309 int num_vsis = 1;
1310 int ret;
1311
1312 if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
1313 aq_ret = I40E_ERR_PARAM;
1314 goto err;
1315 }
1316
1317 len = (sizeof(struct i40e_virtchnl_vf_resource) +
1318 sizeof(struct i40e_virtchnl_vsi_resource) * num_vsis);
1319
1320 vfres = kzalloc(len, GFP_KERNEL);
1321 if (!vfres) {
1322 aq_ret = I40E_ERR_NO_MEMORY;
1323 len = 0;
1324 goto err;
1325 }
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04001326 if (VF_IS_V11(vf))
1327 vf->driver_caps = *(u32 *)msg;
1328 else
1329 vf->driver_caps = I40E_VIRTCHNL_VF_OFFLOAD_L2 |
1330 I40E_VIRTCHNL_VF_OFFLOAD_RSS_REG |
1331 I40E_VIRTCHNL_VF_OFFLOAD_VLAN;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001332
1333 vfres->vf_offload_flags = I40E_VIRTCHNL_VF_OFFLOAD_L2;
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001334 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001335 if (!vsi->info.pvid)
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04001336 vfres->vf_offload_flags |= I40E_VIRTCHNL_VF_OFFLOAD_VLAN;
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06001337
1338 if (i40e_vf_client_capable(pf, vf->vf_id, I40E_CLIENT_IWARP) &&
1339 (vf->driver_caps & I40E_VIRTCHNL_VF_OFFLOAD_IWARP)) {
1340 vfres->vf_offload_flags |= I40E_VIRTCHNL_VF_OFFLOAD_IWARP;
1341 set_bit(I40E_VF_STAT_IWARPENA, &vf->vf_states);
1342 }
1343
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04001344 if (pf->flags & I40E_FLAG_RSS_AQ_CAPABLE) {
1345 if (vf->driver_caps & I40E_VIRTCHNL_VF_OFFLOAD_RSS_AQ)
1346 vfres->vf_offload_flags |=
1347 I40E_VIRTCHNL_VF_OFFLOAD_RSS_AQ;
1348 } else {
1349 vfres->vf_offload_flags |= I40E_VIRTCHNL_VF_OFFLOAD_RSS_REG;
1350 }
Anjali Singhai Jain1f012272015-09-03 17:18:53 -04001351
1352 if (vf->driver_caps & I40E_VIRTCHNL_VF_OFFLOAD_RX_POLLING)
1353 vfres->vf_offload_flags |= I40E_VIRTCHNL_VF_OFFLOAD_RX_POLLING;
1354
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001355 vfres->num_vsis = num_vsis;
1356 vfres->num_queue_pairs = vf->num_queue_pairs;
1357 vfres->max_vectors = pf->hw.func_caps.num_msix_vectors_vf;
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001358 if (vf->lan_vsi_idx) {
1359 vfres->vsi_res[i].vsi_id = vf->lan_vsi_id;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001360 vfres->vsi_res[i].vsi_type = I40E_VSI_SRIOV;
Mitch Williamsf578f5f2015-08-28 17:55:58 -04001361 vfres->vsi_res[i].num_queue_pairs = vsi->alloc_queue_pairs;
1362 /* VFs only use TC 0 */
1363 vfres->vsi_res[i].qset_handle
1364 = le16_to_cpu(vsi->info.qs_handle[0]);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001365 ether_addr_copy(vfres->vsi_res[i].default_mac_addr,
1366 vf->default_lan_addr.addr);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001367 i++;
1368 }
1369 set_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states);
1370
1371err:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001372 /* send the response back to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001373 ret = i40e_vc_send_msg_to_vf(vf, I40E_VIRTCHNL_OP_GET_VF_RESOURCES,
1374 aq_ret, (u8 *)vfres, len);
1375
1376 kfree(vfres);
1377 return ret;
1378}
1379
1380/**
1381 * i40e_vc_reset_vf_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001382 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001383 * @msg: pointer to the msg buffer
1384 * @msglen: msg length
1385 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001386 * called from the VF to reset itself,
1387 * unlike other virtchnl messages, PF driver
1388 * doesn't send the response back to the VF
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001389 **/
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00001390static void i40e_vc_reset_vf_msg(struct i40e_vf *vf)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001391{
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00001392 if (test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states))
1393 i40e_reset_vf(vf, false);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001394}
1395
1396/**
1397 * i40e_vc_config_promiscuous_mode_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001398 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001399 * @msg: pointer to the msg buffer
1400 * @msglen: msg length
1401 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001402 * called from the VF to configure the promiscuous mode of
1403 * VF vsis
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001404 **/
1405static int i40e_vc_config_promiscuous_mode_msg(struct i40e_vf *vf,
1406 u8 *msg, u16 msglen)
1407{
1408 struct i40e_virtchnl_promisc_info *info =
1409 (struct i40e_virtchnl_promisc_info *)msg;
1410 struct i40e_pf *pf = vf->pf;
1411 struct i40e_hw *hw = &pf->hw;
Ashish Shah89cb86c2014-08-01 13:27:10 -07001412 struct i40e_vsi *vsi;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001413 bool allmulti = false;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001414 i40e_status aq_ret;
1415
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001416 vsi = i40e_find_vsi_from_id(pf, info->vsi_id);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001417 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
1418 !test_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps) ||
1419 !i40e_vc_isvalid_vsi_id(vf, info->vsi_id) ||
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001420 (vsi->type != I40E_VSI_FCOE)) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001421 aq_ret = I40E_ERR_PARAM;
1422 goto error_param;
1423 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001424 if (info->flags & I40E_FLAG_VF_MULTICAST_PROMISC)
1425 allmulti = true;
Ashish Shah89cb86c2014-08-01 13:27:10 -07001426 aq_ret = i40e_aq_set_vsi_multicast_promiscuous(hw, vsi->seid,
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001427 allmulti, NULL);
1428
1429error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001430 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001431 return i40e_vc_send_resp_to_vf(vf,
1432 I40E_VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE,
1433 aq_ret);
1434}
1435
1436/**
1437 * i40e_vc_config_queues_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001438 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001439 * @msg: pointer to the msg buffer
1440 * @msglen: msg length
1441 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001442 * called from the VF to configure the rx/tx
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001443 * queues
1444 **/
1445static int i40e_vc_config_queues_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1446{
1447 struct i40e_virtchnl_vsi_queue_config_info *qci =
1448 (struct i40e_virtchnl_vsi_queue_config_info *)msg;
1449 struct i40e_virtchnl_queue_pair_info *qpi;
Ashish Shah5f5e33b2014-07-10 07:58:15 +00001450 struct i40e_pf *pf = vf->pf;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001451 u16 vsi_id, vsi_queue_id;
1452 i40e_status aq_ret = 0;
1453 int i;
1454
1455 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
1456 aq_ret = I40E_ERR_PARAM;
1457 goto error_param;
1458 }
1459
1460 vsi_id = qci->vsi_id;
1461 if (!i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
1462 aq_ret = I40E_ERR_PARAM;
1463 goto error_param;
1464 }
1465 for (i = 0; i < qci->num_queue_pairs; i++) {
1466 qpi = &qci->qpair[i];
1467 vsi_queue_id = qpi->txq.queue_id;
1468 if ((qpi->txq.vsi_id != vsi_id) ||
1469 (qpi->rxq.vsi_id != vsi_id) ||
1470 (qpi->rxq.queue_id != vsi_queue_id) ||
1471 !i40e_vc_isvalid_queue_id(vf, vsi_id, vsi_queue_id)) {
1472 aq_ret = I40E_ERR_PARAM;
1473 goto error_param;
1474 }
1475
1476 if (i40e_config_vsi_rx_queue(vf, vsi_id, vsi_queue_id,
1477 &qpi->rxq) ||
1478 i40e_config_vsi_tx_queue(vf, vsi_id, vsi_queue_id,
1479 &qpi->txq)) {
1480 aq_ret = I40E_ERR_PARAM;
1481 goto error_param;
1482 }
1483 }
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001484 /* set vsi num_queue_pairs in use to num configured by VF */
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001485 pf->vsi[vf->lan_vsi_idx]->num_queue_pairs = qci->num_queue_pairs;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001486
1487error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001488 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001489 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_CONFIG_VSI_QUEUES,
1490 aq_ret);
1491}
1492
1493/**
1494 * i40e_vc_config_irq_map_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001495 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001496 * @msg: pointer to the msg buffer
1497 * @msglen: msg length
1498 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001499 * called from the VF to configure the irq to
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001500 * queue map
1501 **/
1502static int i40e_vc_config_irq_map_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1503{
1504 struct i40e_virtchnl_irq_map_info *irqmap_info =
1505 (struct i40e_virtchnl_irq_map_info *)msg;
1506 struct i40e_virtchnl_vector_map *map;
1507 u16 vsi_id, vsi_queue_id, vector_id;
1508 i40e_status aq_ret = 0;
1509 unsigned long tempmap;
1510 int i;
1511
1512 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
1513 aq_ret = I40E_ERR_PARAM;
1514 goto error_param;
1515 }
1516
1517 for (i = 0; i < irqmap_info->num_vectors; i++) {
1518 map = &irqmap_info->vecmap[i];
1519
1520 vector_id = map->vector_id;
1521 vsi_id = map->vsi_id;
1522 /* validate msg params */
1523 if (!i40e_vc_isvalid_vector_id(vf, vector_id) ||
1524 !i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
1525 aq_ret = I40E_ERR_PARAM;
1526 goto error_param;
1527 }
1528
1529 /* lookout for the invalid queue index */
1530 tempmap = map->rxq_map;
Wei Yongjun48366502013-09-24 05:17:36 +00001531 for_each_set_bit(vsi_queue_id, &tempmap, I40E_MAX_VSI_QP) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001532 if (!i40e_vc_isvalid_queue_id(vf, vsi_id,
1533 vsi_queue_id)) {
1534 aq_ret = I40E_ERR_PARAM;
1535 goto error_param;
1536 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001537 }
1538
1539 tempmap = map->txq_map;
Wei Yongjun48366502013-09-24 05:17:36 +00001540 for_each_set_bit(vsi_queue_id, &tempmap, I40E_MAX_VSI_QP) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001541 if (!i40e_vc_isvalid_queue_id(vf, vsi_id,
1542 vsi_queue_id)) {
1543 aq_ret = I40E_ERR_PARAM;
1544 goto error_param;
1545 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001546 }
1547
1548 i40e_config_irq_link_list(vf, vsi_id, map);
1549 }
1550error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001551 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001552 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_CONFIG_IRQ_MAP,
1553 aq_ret);
1554}
1555
1556/**
1557 * i40e_vc_enable_queues_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001558 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001559 * @msg: pointer to the msg buffer
1560 * @msglen: msg length
1561 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001562 * called from the VF to enable all or specific queue(s)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001563 **/
1564static int i40e_vc_enable_queues_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1565{
1566 struct i40e_virtchnl_queue_select *vqs =
1567 (struct i40e_virtchnl_queue_select *)msg;
1568 struct i40e_pf *pf = vf->pf;
1569 u16 vsi_id = vqs->vsi_id;
1570 i40e_status aq_ret = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001571
1572 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
1573 aq_ret = I40E_ERR_PARAM;
1574 goto error_param;
1575 }
1576
1577 if (!i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
1578 aq_ret = I40E_ERR_PARAM;
1579 goto error_param;
1580 }
1581
1582 if ((0 == vqs->rx_queues) && (0 == vqs->tx_queues)) {
1583 aq_ret = I40E_ERR_PARAM;
1584 goto error_param;
1585 }
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001586
1587 if (i40e_vsi_control_rings(pf->vsi[vf->lan_vsi_idx], true))
Mitch Williams88f65632013-11-28 06:39:28 +00001588 aq_ret = I40E_ERR_TIMEOUT;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001589error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001590 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001591 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_ENABLE_QUEUES,
1592 aq_ret);
1593}
1594
1595/**
1596 * i40e_vc_disable_queues_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001597 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001598 * @msg: pointer to the msg buffer
1599 * @msglen: msg length
1600 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001601 * called from the VF to disable all or specific
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001602 * queue(s)
1603 **/
1604static int i40e_vc_disable_queues_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1605{
1606 struct i40e_virtchnl_queue_select *vqs =
1607 (struct i40e_virtchnl_queue_select *)msg;
1608 struct i40e_pf *pf = vf->pf;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001609 i40e_status aq_ret = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001610
1611 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
1612 aq_ret = I40E_ERR_PARAM;
1613 goto error_param;
1614 }
1615
1616 if (!i40e_vc_isvalid_vsi_id(vf, vqs->vsi_id)) {
1617 aq_ret = I40E_ERR_PARAM;
1618 goto error_param;
1619 }
1620
1621 if ((0 == vqs->rx_queues) && (0 == vqs->tx_queues)) {
1622 aq_ret = I40E_ERR_PARAM;
1623 goto error_param;
1624 }
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001625
1626 if (i40e_vsi_control_rings(pf->vsi[vf->lan_vsi_idx], false))
Mitch Williams88f65632013-11-28 06:39:28 +00001627 aq_ret = I40E_ERR_TIMEOUT;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001628
1629error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001630 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001631 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_DISABLE_QUEUES,
1632 aq_ret);
1633}
1634
1635/**
1636 * i40e_vc_get_stats_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001637 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001638 * @msg: pointer to the msg buffer
1639 * @msglen: msg length
1640 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001641 * called from the VF to get vsi stats
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001642 **/
1643static int i40e_vc_get_stats_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1644{
1645 struct i40e_virtchnl_queue_select *vqs =
1646 (struct i40e_virtchnl_queue_select *)msg;
1647 struct i40e_pf *pf = vf->pf;
1648 struct i40e_eth_stats stats;
1649 i40e_status aq_ret = 0;
1650 struct i40e_vsi *vsi;
1651
1652 memset(&stats, 0, sizeof(struct i40e_eth_stats));
1653
1654 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
1655 aq_ret = I40E_ERR_PARAM;
1656 goto error_param;
1657 }
1658
1659 if (!i40e_vc_isvalid_vsi_id(vf, vqs->vsi_id)) {
1660 aq_ret = I40E_ERR_PARAM;
1661 goto error_param;
1662 }
1663
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001664 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001665 if (!vsi) {
1666 aq_ret = I40E_ERR_PARAM;
1667 goto error_param;
1668 }
1669 i40e_update_eth_stats(vsi);
Mitch Williams5a9769c2013-11-28 06:39:38 +00001670 stats = vsi->eth_stats;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001671
1672error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001673 /* send the response back to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001674 return i40e_vc_send_msg_to_vf(vf, I40E_VIRTCHNL_OP_GET_STATS, aq_ret,
1675 (u8 *)&stats, sizeof(stats));
1676}
1677
1678/**
Greg Rosef657a6e2013-11-28 06:39:42 +00001679 * i40e_check_vf_permission
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001680 * @vf: pointer to the VF info
Greg Rosef657a6e2013-11-28 06:39:42 +00001681 * @macaddr: pointer to the MAC Address being checked
1682 *
1683 * Check if the VF has permission to add or delete unicast MAC address
1684 * filters and return error code -EPERM if not. Then check if the
1685 * address filter requested is broadcast or zero and if so return
1686 * an invalid MAC address error code.
1687 **/
1688static inline int i40e_check_vf_permission(struct i40e_vf *vf, u8 *macaddr)
1689{
1690 struct i40e_pf *pf = vf->pf;
1691 int ret = 0;
1692
1693 if (is_broadcast_ether_addr(macaddr) ||
1694 is_zero_ether_addr(macaddr)) {
1695 dev_err(&pf->pdev->dev, "invalid VF MAC addr %pM\n", macaddr);
1696 ret = I40E_ERR_INVALID_MAC_ADDR;
Greg Rose5017c2a2013-12-07 10:36:54 +00001697 } else if (vf->pf_set_mac && !is_multicast_ether_addr(macaddr) &&
1698 !ether_addr_equal(macaddr, vf->default_lan_addr.addr)) {
Greg Rosef657a6e2013-11-28 06:39:42 +00001699 /* If the host VMM administrator has set the VF MAC address
1700 * administratively via the ndo_set_vf_mac command then deny
1701 * permission to the VF to add or delete unicast MAC addresses.
Greg Rose5017c2a2013-12-07 10:36:54 +00001702 * The VF may request to set the MAC address filter already
1703 * assigned to it so do not return an error in that case.
Greg Rosef657a6e2013-11-28 06:39:42 +00001704 */
1705 dev_err(&pf->pdev->dev,
1706 "VF attempting to override administratively set MAC address\nPlease reload the VF driver to resume normal operation\n");
1707 ret = -EPERM;
1708 }
1709 return ret;
1710}
1711
1712/**
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001713 * i40e_vc_add_mac_addr_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001714 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001715 * @msg: pointer to the msg buffer
1716 * @msglen: msg length
1717 *
1718 * add guest mac address filter
1719 **/
1720static int i40e_vc_add_mac_addr_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1721{
1722 struct i40e_virtchnl_ether_addr_list *al =
1723 (struct i40e_virtchnl_ether_addr_list *)msg;
1724 struct i40e_pf *pf = vf->pf;
1725 struct i40e_vsi *vsi = NULL;
1726 u16 vsi_id = al->vsi_id;
Greg Rosef657a6e2013-11-28 06:39:42 +00001727 i40e_status ret = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001728 int i;
1729
1730 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
1731 !test_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps) ||
1732 !i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
Greg Rosef657a6e2013-11-28 06:39:42 +00001733 ret = I40E_ERR_PARAM;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001734 goto error_param;
1735 }
1736
1737 for (i = 0; i < al->num_elements; i++) {
Greg Rosef657a6e2013-11-28 06:39:42 +00001738 ret = i40e_check_vf_permission(vf, al->list[i].addr);
1739 if (ret)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001740 goto error_param;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001741 }
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001742 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001743
Kiran Patil21659032015-09-30 14:09:03 -04001744 /* Lock once, because all function inside for loop accesses VSI's
1745 * MAC filter list which needs to be protected using same lock.
1746 */
1747 spin_lock_bh(&vsi->mac_filter_list_lock);
1748
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001749 /* add new addresses to the list */
1750 for (i = 0; i < al->num_elements; i++) {
1751 struct i40e_mac_filter *f;
1752
1753 f = i40e_find_mac(vsi, al->list[i].addr, true, false);
Mitch Williams7e68edf92013-11-16 10:00:41 +00001754 if (!f) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001755 if (i40e_is_vsi_in_vlan(vsi))
1756 f = i40e_put_mac_in_vlan(vsi, al->list[i].addr,
1757 true, false);
1758 else
1759 f = i40e_add_filter(vsi, al->list[i].addr, -1,
1760 true, false);
1761 }
1762
1763 if (!f) {
1764 dev_err(&pf->pdev->dev,
Mitch Williams8d8f2292015-10-21 19:47:11 -04001765 "Unable to add MAC filter %pM for VF %d\n",
1766 al->list[i].addr, vf->vf_id);
Greg Rosef657a6e2013-11-28 06:39:42 +00001767 ret = I40E_ERR_PARAM;
Kiran Patil21659032015-09-30 14:09:03 -04001768 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001769 goto error_param;
1770 }
1771 }
Kiran Patil21659032015-09-30 14:09:03 -04001772 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001773
1774 /* program the updated filter list */
Mitch Williamsea02e902015-11-09 15:35:50 -08001775 ret = i40e_sync_vsi_filters(vsi);
1776 if (ret)
1777 dev_err(&pf->pdev->dev, "Unable to program VF %d MAC filters, error %d\n",
1778 vf->vf_id, ret);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001779
1780error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001781 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001782 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_ADD_ETHER_ADDRESS,
Greg Rosef657a6e2013-11-28 06:39:42 +00001783 ret);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001784}
1785
1786/**
1787 * i40e_vc_del_mac_addr_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001788 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001789 * @msg: pointer to the msg buffer
1790 * @msglen: msg length
1791 *
1792 * remove guest mac address filter
1793 **/
1794static int i40e_vc_del_mac_addr_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1795{
1796 struct i40e_virtchnl_ether_addr_list *al =
1797 (struct i40e_virtchnl_ether_addr_list *)msg;
1798 struct i40e_pf *pf = vf->pf;
1799 struct i40e_vsi *vsi = NULL;
1800 u16 vsi_id = al->vsi_id;
Greg Rosef657a6e2013-11-28 06:39:42 +00001801 i40e_status ret = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001802 int i;
1803
1804 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
1805 !test_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps) ||
1806 !i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
Greg Rosef657a6e2013-11-28 06:39:42 +00001807 ret = I40E_ERR_PARAM;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001808 goto error_param;
1809 }
Greg Rosef657a6e2013-11-28 06:39:42 +00001810
1811 for (i = 0; i < al->num_elements; i++) {
Mitch Williams700bbf62013-12-21 05:44:45 +00001812 if (is_broadcast_ether_addr(al->list[i].addr) ||
1813 is_zero_ether_addr(al->list[i].addr)) {
Mitch Williams8d8f2292015-10-21 19:47:11 -04001814 dev_err(&pf->pdev->dev, "Invalid MAC addr %pM for VF %d\n",
1815 al->list[i].addr, vf->vf_id);
Mitch Williams700bbf62013-12-21 05:44:45 +00001816 ret = I40E_ERR_INVALID_MAC_ADDR;
Greg Rosef657a6e2013-11-28 06:39:42 +00001817 goto error_param;
Mitch Williams700bbf62013-12-21 05:44:45 +00001818 }
Greg Rosef657a6e2013-11-28 06:39:42 +00001819 }
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001820 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001821
Kiran Patil21659032015-09-30 14:09:03 -04001822 spin_lock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001823 /* delete addresses from the list */
1824 for (i = 0; i < al->num_elements; i++)
Mitch Williamsb36e9ab2015-11-19 11:34:16 -08001825 if (i40e_del_mac_all_vlan(vsi, al->list[i].addr, true, false)) {
1826 ret = I40E_ERR_INVALID_MAC_ADDR;
1827 spin_unlock_bh(&vsi->mac_filter_list_lock);
1828 goto error_param;
1829 }
1830
Kiran Patil21659032015-09-30 14:09:03 -04001831 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001832
1833 /* program the updated filter list */
Mitch Williamsea02e902015-11-09 15:35:50 -08001834 ret = i40e_sync_vsi_filters(vsi);
1835 if (ret)
1836 dev_err(&pf->pdev->dev, "Unable to program VF %d MAC filters, error %d\n",
1837 vf->vf_id, ret);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001838
1839error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001840 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001841 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_DEL_ETHER_ADDRESS,
Greg Rosef657a6e2013-11-28 06:39:42 +00001842 ret);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001843}
1844
1845/**
1846 * i40e_vc_add_vlan_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001847 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001848 * @msg: pointer to the msg buffer
1849 * @msglen: msg length
1850 *
1851 * program guest vlan id
1852 **/
1853static int i40e_vc_add_vlan_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1854{
1855 struct i40e_virtchnl_vlan_filter_list *vfl =
1856 (struct i40e_virtchnl_vlan_filter_list *)msg;
1857 struct i40e_pf *pf = vf->pf;
1858 struct i40e_vsi *vsi = NULL;
1859 u16 vsi_id = vfl->vsi_id;
1860 i40e_status aq_ret = 0;
1861 int i;
1862
1863 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
1864 !test_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps) ||
1865 !i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
1866 aq_ret = I40E_ERR_PARAM;
1867 goto error_param;
1868 }
1869
1870 for (i = 0; i < vfl->num_elements; i++) {
1871 if (vfl->vlan_id[i] > I40E_MAX_VLANID) {
1872 aq_ret = I40E_ERR_PARAM;
1873 dev_err(&pf->pdev->dev,
1874 "invalid VF VLAN id %d\n", vfl->vlan_id[i]);
1875 goto error_param;
1876 }
1877 }
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001878 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001879 if (vsi->info.pvid) {
1880 aq_ret = I40E_ERR_PARAM;
1881 goto error_param;
1882 }
1883
1884 i40e_vlan_stripping_enable(vsi);
1885 for (i = 0; i < vfl->num_elements; i++) {
1886 /* add new VLAN filter */
1887 int ret = i40e_vsi_add_vlan(vsi, vfl->vlan_id[i]);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001888
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001889 if (ret)
1890 dev_err(&pf->pdev->dev,
Mitch Williams8d8f2292015-10-21 19:47:11 -04001891 "Unable to add VLAN filter %d for VF %d, error %d\n",
1892 vfl->vlan_id[i], vf->vf_id, ret);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001893 }
1894
1895error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001896 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001897 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_ADD_VLAN, aq_ret);
1898}
1899
1900/**
1901 * i40e_vc_remove_vlan_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001902 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001903 * @msg: pointer to the msg buffer
1904 * @msglen: msg length
1905 *
1906 * remove programmed guest vlan id
1907 **/
1908static int i40e_vc_remove_vlan_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1909{
1910 struct i40e_virtchnl_vlan_filter_list *vfl =
1911 (struct i40e_virtchnl_vlan_filter_list *)msg;
1912 struct i40e_pf *pf = vf->pf;
1913 struct i40e_vsi *vsi = NULL;
1914 u16 vsi_id = vfl->vsi_id;
1915 i40e_status aq_ret = 0;
1916 int i;
1917
1918 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
1919 !test_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps) ||
1920 !i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
1921 aq_ret = I40E_ERR_PARAM;
1922 goto error_param;
1923 }
1924
1925 for (i = 0; i < vfl->num_elements; i++) {
1926 if (vfl->vlan_id[i] > I40E_MAX_VLANID) {
1927 aq_ret = I40E_ERR_PARAM;
1928 goto error_param;
1929 }
1930 }
1931
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001932 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001933 if (vsi->info.pvid) {
1934 aq_ret = I40E_ERR_PARAM;
1935 goto error_param;
1936 }
1937
1938 for (i = 0; i < vfl->num_elements; i++) {
1939 int ret = i40e_vsi_kill_vlan(vsi, vfl->vlan_id[i]);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001940
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001941 if (ret)
1942 dev_err(&pf->pdev->dev,
Mitch Williams8d8f2292015-10-21 19:47:11 -04001943 "Unable to delete VLAN filter %d for VF %d, error %d\n",
1944 vfl->vlan_id[i], vf->vf_id, ret);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001945 }
1946
1947error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001948 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001949 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_DEL_VLAN, aq_ret);
1950}
1951
1952/**
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06001953 * i40e_vc_iwarp_msg
1954 * @vf: pointer to the VF info
1955 * @msg: pointer to the msg buffer
1956 * @msglen: msg length
1957 *
1958 * called from the VF for the iwarp msgs
1959 **/
1960static int i40e_vc_iwarp_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1961{
1962 struct i40e_pf *pf = vf->pf;
1963 int abs_vf_id = vf->vf_id + pf->hw.func_caps.vf_base_id;
1964 i40e_status aq_ret = 0;
1965
1966 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
1967 !test_bit(I40E_VF_STAT_IWARPENA, &vf->vf_states)) {
1968 aq_ret = I40E_ERR_PARAM;
1969 goto error_param;
1970 }
1971
1972 i40e_notify_client_of_vf_msg(pf->vsi[pf->lan_vsi], abs_vf_id,
1973 msg, msglen);
1974
1975error_param:
1976 /* send the response to the VF */
1977 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_IWARP,
1978 aq_ret);
1979}
1980
1981/**
1982 * i40e_vc_iwarp_qvmap_msg
1983 * @vf: pointer to the VF info
1984 * @msg: pointer to the msg buffer
1985 * @msglen: msg length
1986 * @config: config qvmap or release it
1987 *
1988 * called from the VF for the iwarp msgs
1989 **/
1990static int i40e_vc_iwarp_qvmap_msg(struct i40e_vf *vf, u8 *msg, u16 msglen,
1991 bool config)
1992{
1993 struct i40e_virtchnl_iwarp_qvlist_info *qvlist_info =
1994 (struct i40e_virtchnl_iwarp_qvlist_info *)msg;
1995 i40e_status aq_ret = 0;
1996
1997 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
1998 !test_bit(I40E_VF_STAT_IWARPENA, &vf->vf_states)) {
1999 aq_ret = I40E_ERR_PARAM;
2000 goto error_param;
2001 }
2002
2003 if (config) {
2004 if (i40e_config_iwarp_qvlist(vf, qvlist_info))
2005 aq_ret = I40E_ERR_PARAM;
2006 } else {
2007 i40e_release_iwarp_qvlist(vf);
2008 }
2009
2010error_param:
2011 /* send the response to the VF */
2012 return i40e_vc_send_resp_to_vf(vf,
2013 config ? I40E_VIRTCHNL_OP_RELEASE_IWARP_IRQ_MAP :
2014 I40E_VIRTCHNL_OP_CONFIG_IWARP_IRQ_MAP,
2015 aq_ret);
2016}
2017
2018/**
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002019 * i40e_vc_validate_vf_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002020 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002021 * @msg: pointer to the msg buffer
2022 * @msglen: msg length
2023 * @msghndl: msg handle
2024 *
2025 * validate msg
2026 **/
2027static int i40e_vc_validate_vf_msg(struct i40e_vf *vf, u32 v_opcode,
2028 u32 v_retval, u8 *msg, u16 msglen)
2029{
2030 bool err_msg_format = false;
2031 int valid_len;
2032
2033 /* Check if VF is disabled. */
2034 if (test_bit(I40E_VF_STAT_DISABLED, &vf->vf_states))
2035 return I40E_ERR_PARAM;
2036
2037 /* Validate message length. */
2038 switch (v_opcode) {
2039 case I40E_VIRTCHNL_OP_VERSION:
2040 valid_len = sizeof(struct i40e_virtchnl_version_info);
2041 break;
2042 case I40E_VIRTCHNL_OP_RESET_VF:
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002043 valid_len = 0;
2044 break;
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04002045 case I40E_VIRTCHNL_OP_GET_VF_RESOURCES:
2046 if (VF_IS_V11(vf))
2047 valid_len = sizeof(u32);
2048 else
2049 valid_len = 0;
2050 break;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002051 case I40E_VIRTCHNL_OP_CONFIG_TX_QUEUE:
2052 valid_len = sizeof(struct i40e_virtchnl_txq_info);
2053 break;
2054 case I40E_VIRTCHNL_OP_CONFIG_RX_QUEUE:
2055 valid_len = sizeof(struct i40e_virtchnl_rxq_info);
2056 break;
2057 case I40E_VIRTCHNL_OP_CONFIG_VSI_QUEUES:
2058 valid_len = sizeof(struct i40e_virtchnl_vsi_queue_config_info);
2059 if (msglen >= valid_len) {
2060 struct i40e_virtchnl_vsi_queue_config_info *vqc =
2061 (struct i40e_virtchnl_vsi_queue_config_info *)msg;
2062 valid_len += (vqc->num_queue_pairs *
2063 sizeof(struct
2064 i40e_virtchnl_queue_pair_info));
2065 if (vqc->num_queue_pairs == 0)
2066 err_msg_format = true;
2067 }
2068 break;
2069 case I40E_VIRTCHNL_OP_CONFIG_IRQ_MAP:
2070 valid_len = sizeof(struct i40e_virtchnl_irq_map_info);
2071 if (msglen >= valid_len) {
2072 struct i40e_virtchnl_irq_map_info *vimi =
2073 (struct i40e_virtchnl_irq_map_info *)msg;
2074 valid_len += (vimi->num_vectors *
2075 sizeof(struct i40e_virtchnl_vector_map));
2076 if (vimi->num_vectors == 0)
2077 err_msg_format = true;
2078 }
2079 break;
2080 case I40E_VIRTCHNL_OP_ENABLE_QUEUES:
2081 case I40E_VIRTCHNL_OP_DISABLE_QUEUES:
2082 valid_len = sizeof(struct i40e_virtchnl_queue_select);
2083 break;
2084 case I40E_VIRTCHNL_OP_ADD_ETHER_ADDRESS:
2085 case I40E_VIRTCHNL_OP_DEL_ETHER_ADDRESS:
2086 valid_len = sizeof(struct i40e_virtchnl_ether_addr_list);
2087 if (msglen >= valid_len) {
2088 struct i40e_virtchnl_ether_addr_list *veal =
2089 (struct i40e_virtchnl_ether_addr_list *)msg;
2090 valid_len += veal->num_elements *
2091 sizeof(struct i40e_virtchnl_ether_addr);
2092 if (veal->num_elements == 0)
2093 err_msg_format = true;
2094 }
2095 break;
2096 case I40E_VIRTCHNL_OP_ADD_VLAN:
2097 case I40E_VIRTCHNL_OP_DEL_VLAN:
2098 valid_len = sizeof(struct i40e_virtchnl_vlan_filter_list);
2099 if (msglen >= valid_len) {
2100 struct i40e_virtchnl_vlan_filter_list *vfl =
2101 (struct i40e_virtchnl_vlan_filter_list *)msg;
2102 valid_len += vfl->num_elements * sizeof(u16);
2103 if (vfl->num_elements == 0)
2104 err_msg_format = true;
2105 }
2106 break;
2107 case I40E_VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE:
2108 valid_len = sizeof(struct i40e_virtchnl_promisc_info);
2109 break;
2110 case I40E_VIRTCHNL_OP_GET_STATS:
2111 valid_len = sizeof(struct i40e_virtchnl_queue_select);
2112 break;
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06002113 case I40E_VIRTCHNL_OP_IWARP:
2114 /* These messages are opaque to us and will be validated in
2115 * the RDMA client code. We just need to check for nonzero
2116 * length. The firmware will enforce max length restrictions.
2117 */
2118 if (msglen)
2119 valid_len = msglen;
2120 else
2121 err_msg_format = true;
2122 break;
2123 case I40E_VIRTCHNL_OP_RELEASE_IWARP_IRQ_MAP:
2124 valid_len = 0;
2125 break;
2126 case I40E_VIRTCHNL_OP_CONFIG_IWARP_IRQ_MAP:
2127 valid_len = sizeof(struct i40e_virtchnl_iwarp_qvlist_info);
2128 if (msglen >= valid_len) {
2129 struct i40e_virtchnl_iwarp_qvlist_info *qv =
2130 (struct i40e_virtchnl_iwarp_qvlist_info *)msg;
2131 if (qv->num_vectors == 0) {
2132 err_msg_format = true;
2133 break;
2134 }
2135 valid_len += ((qv->num_vectors - 1) *
2136 sizeof(struct i40e_virtchnl_iwarp_qv_info));
2137 }
2138 break;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002139 /* These are always errors coming from the VF. */
2140 case I40E_VIRTCHNL_OP_EVENT:
2141 case I40E_VIRTCHNL_OP_UNKNOWN:
2142 default:
2143 return -EPERM;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002144 }
2145 /* few more checks */
2146 if ((valid_len != msglen) || (err_msg_format)) {
2147 i40e_vc_send_resp_to_vf(vf, v_opcode, I40E_ERR_PARAM);
2148 return -EINVAL;
2149 } else {
2150 return 0;
2151 }
2152}
2153
2154/**
2155 * i40e_vc_process_vf_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002156 * @pf: pointer to the PF structure
2157 * @vf_id: source VF id
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002158 * @msg: pointer to the msg buffer
2159 * @msglen: msg length
2160 * @msghndl: msg handle
2161 *
2162 * called from the common aeq/arq handler to
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002163 * process request from VF
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002164 **/
2165int i40e_vc_process_vf_msg(struct i40e_pf *pf, u16 vf_id, u32 v_opcode,
2166 u32 v_retval, u8 *msg, u16 msglen)
2167{
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002168 struct i40e_hw *hw = &pf->hw;
Dan Carpenterc243e962014-01-15 06:43:39 +00002169 unsigned int local_vf_id = vf_id - hw->func_caps.vf_base_id;
Mitch Williams6c1b5bf2013-11-28 06:39:30 +00002170 struct i40e_vf *vf;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002171 int ret;
2172
2173 pf->vf_aq_requests++;
Mitch Williams7efa84b2013-11-28 06:39:41 +00002174 if (local_vf_id >= pf->num_alloc_vfs)
Mitch Williams6c1b5bf2013-11-28 06:39:30 +00002175 return -EINVAL;
Mitch Williams7efa84b2013-11-28 06:39:41 +00002176 vf = &(pf->vf[local_vf_id]);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002177 /* perform basic checks on the msg */
2178 ret = i40e_vc_validate_vf_msg(vf, v_opcode, v_retval, msg, msglen);
2179
2180 if (ret) {
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002181 dev_err(&pf->pdev->dev, "Invalid message from VF %d, opcode %d, len %d\n",
Mitch Williams7efa84b2013-11-28 06:39:41 +00002182 local_vf_id, v_opcode, msglen);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002183 return ret;
2184 }
Mitch Williamsbae3cae2014-01-14 00:49:49 -08002185
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002186 switch (v_opcode) {
2187 case I40E_VIRTCHNL_OP_VERSION:
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04002188 ret = i40e_vc_get_version_msg(vf, msg);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002189 break;
2190 case I40E_VIRTCHNL_OP_GET_VF_RESOURCES:
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04002191 ret = i40e_vc_get_vf_resources_msg(vf, msg);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002192 break;
2193 case I40E_VIRTCHNL_OP_RESET_VF:
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00002194 i40e_vc_reset_vf_msg(vf);
2195 ret = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002196 break;
2197 case I40E_VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE:
2198 ret = i40e_vc_config_promiscuous_mode_msg(vf, msg, msglen);
2199 break;
2200 case I40E_VIRTCHNL_OP_CONFIG_VSI_QUEUES:
2201 ret = i40e_vc_config_queues_msg(vf, msg, msglen);
2202 break;
2203 case I40E_VIRTCHNL_OP_CONFIG_IRQ_MAP:
2204 ret = i40e_vc_config_irq_map_msg(vf, msg, msglen);
2205 break;
2206 case I40E_VIRTCHNL_OP_ENABLE_QUEUES:
2207 ret = i40e_vc_enable_queues_msg(vf, msg, msglen);
Mitch Williams055b2952015-04-07 19:45:33 -04002208 i40e_vc_notify_vf_link_state(vf);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002209 break;
2210 case I40E_VIRTCHNL_OP_DISABLE_QUEUES:
2211 ret = i40e_vc_disable_queues_msg(vf, msg, msglen);
2212 break;
2213 case I40E_VIRTCHNL_OP_ADD_ETHER_ADDRESS:
2214 ret = i40e_vc_add_mac_addr_msg(vf, msg, msglen);
2215 break;
2216 case I40E_VIRTCHNL_OP_DEL_ETHER_ADDRESS:
2217 ret = i40e_vc_del_mac_addr_msg(vf, msg, msglen);
2218 break;
2219 case I40E_VIRTCHNL_OP_ADD_VLAN:
2220 ret = i40e_vc_add_vlan_msg(vf, msg, msglen);
2221 break;
2222 case I40E_VIRTCHNL_OP_DEL_VLAN:
2223 ret = i40e_vc_remove_vlan_msg(vf, msg, msglen);
2224 break;
2225 case I40E_VIRTCHNL_OP_GET_STATS:
2226 ret = i40e_vc_get_stats_msg(vf, msg, msglen);
2227 break;
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06002228 case I40E_VIRTCHNL_OP_IWARP:
2229 ret = i40e_vc_iwarp_msg(vf, msg, msglen);
2230 break;
2231 case I40E_VIRTCHNL_OP_CONFIG_IWARP_IRQ_MAP:
2232 ret = i40e_vc_iwarp_qvmap_msg(vf, msg, msglen, true);
2233 break;
2234 case I40E_VIRTCHNL_OP_RELEASE_IWARP_IRQ_MAP:
2235 ret = i40e_vc_iwarp_qvmap_msg(vf, msg, msglen, false);
2236 break;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002237 case I40E_VIRTCHNL_OP_UNKNOWN:
2238 default:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002239 dev_err(&pf->pdev->dev, "Unsupported opcode %d from VF %d\n",
Mitch Williams7efa84b2013-11-28 06:39:41 +00002240 v_opcode, local_vf_id);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002241 ret = i40e_vc_send_resp_to_vf(vf, v_opcode,
2242 I40E_ERR_NOT_IMPLEMENTED);
2243 break;
2244 }
2245
2246 return ret;
2247}
2248
2249/**
2250 * i40e_vc_process_vflr_event
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002251 * @pf: pointer to the PF structure
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002252 *
2253 * called from the vlfr irq handler to
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002254 * free up VF resources and state variables
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002255 **/
2256int i40e_vc_process_vflr_event(struct i40e_pf *pf)
2257{
2258 u32 reg, reg_idx, bit_idx, vf_id;
2259 struct i40e_hw *hw = &pf->hw;
2260 struct i40e_vf *vf;
2261
2262 if (!test_bit(__I40E_VFLR_EVENT_PENDING, &pf->state))
2263 return 0;
2264
Mitch Williamsc5c2f7c2014-11-11 03:15:04 +00002265 /* re-enable vflr interrupt cause */
2266 reg = rd32(hw, I40E_PFINT_ICR0_ENA);
2267 reg |= I40E_PFINT_ICR0_ENA_VFLR_MASK;
2268 wr32(hw, I40E_PFINT_ICR0_ENA, reg);
2269 i40e_flush(hw);
2270
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002271 clear_bit(__I40E_VFLR_EVENT_PENDING, &pf->state);
2272 for (vf_id = 0; vf_id < pf->num_alloc_vfs; vf_id++) {
2273 reg_idx = (hw->func_caps.vf_base_id + vf_id) / 32;
2274 bit_idx = (hw->func_caps.vf_base_id + vf_id) % 32;
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002275 /* read GLGEN_VFLRSTAT register to find out the flr VFs */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002276 vf = &pf->vf[vf_id];
2277 reg = rd32(hw, I40E_GLGEN_VFLRSTAT(reg_idx));
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04002278 if (reg & BIT(bit_idx)) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002279 /* clear the bit in GLGEN_VFLRSTAT */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04002280 wr32(hw, I40E_GLGEN_VFLRSTAT(reg_idx), BIT(bit_idx));
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002281
Mitch Williamseb2d80b2014-02-13 03:48:48 -08002282 if (!test_bit(__I40E_DOWN, &pf->state))
2283 i40e_reset_vf(vf, true);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002284 }
2285 }
2286
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002287 return 0;
2288}
2289
2290/**
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002291 * i40e_ndo_set_vf_mac
2292 * @netdev: network interface device structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002293 * @vf_id: VF identifier
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002294 * @mac: mac address
2295 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002296 * program VF mac address
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002297 **/
2298int i40e_ndo_set_vf_mac(struct net_device *netdev, int vf_id, u8 *mac)
2299{
2300 struct i40e_netdev_priv *np = netdev_priv(netdev);
2301 struct i40e_vsi *vsi = np->vsi;
2302 struct i40e_pf *pf = vsi->back;
2303 struct i40e_mac_filter *f;
2304 struct i40e_vf *vf;
2305 int ret = 0;
2306
2307 /* validate the request */
2308 if (vf_id >= pf->num_alloc_vfs) {
2309 dev_err(&pf->pdev->dev,
2310 "Invalid VF Identifier %d\n", vf_id);
2311 ret = -EINVAL;
2312 goto error_param;
2313 }
2314
2315 vf = &(pf->vf[vf_id]);
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07002316 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002317 if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
Mitch Williams2d166c32015-12-22 15:34:42 -08002318 dev_err(&pf->pdev->dev, "VF %d still in reset. Try again.\n",
2319 vf_id);
2320 ret = -EAGAIN;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002321 goto error_param;
2322 }
2323
Mitch Williamsefd8e392015-12-22 15:34:43 -08002324 if (is_multicast_ether_addr(mac)) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002325 dev_err(&pf->pdev->dev,
Mitch Williamsefd8e392015-12-22 15:34:43 -08002326 "Invalid Ethernet address %pM for VF %d\n", mac, vf_id);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002327 ret = -EINVAL;
2328 goto error_param;
2329 }
2330
Kiran Patil21659032015-09-30 14:09:03 -04002331 /* Lock once because below invoked function add/del_filter requires
2332 * mac_filter_list_lock to be held
2333 */
2334 spin_lock_bh(&vsi->mac_filter_list_lock);
2335
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002336 /* delete the temporary mac address */
Mitch Williamsefd8e392015-12-22 15:34:43 -08002337 if (!is_zero_ether_addr(vf->default_lan_addr.addr))
2338 i40e_del_filter(vsi, vf->default_lan_addr.addr,
2339 vf->port_vlan_id ? vf->port_vlan_id : -1,
2340 true, false);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002341
Greg Rose29f71bb2014-05-20 08:01:45 +00002342 /* Delete all the filters for this VSI - we're going to kill it
2343 * anyway.
2344 */
2345 list_for_each_entry(f, &vsi->mac_filter_list, list)
2346 i40e_del_filter(vsi, f->macaddr, f->vlan, true, false);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002347
Kiran Patil21659032015-09-30 14:09:03 -04002348 spin_unlock_bh(&vsi->mac_filter_list_lock);
2349
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002350 dev_info(&pf->pdev->dev, "Setting MAC %pM on VF %d\n", mac, vf_id);
2351 /* program mac filter */
Jesse Brandeburg17652c62015-11-05 17:01:02 -08002352 if (i40e_sync_vsi_filters(vsi)) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002353 dev_err(&pf->pdev->dev, "Unable to program ucast filters\n");
2354 ret = -EIO;
2355 goto error_param;
2356 }
Greg Rose9a173902014-05-22 06:32:02 +00002357 ether_addr_copy(vf->default_lan_addr.addr, mac);
Greg Rosef657a6e2013-11-28 06:39:42 +00002358 vf->pf_set_mac = true;
Greg Rose17413a82014-06-04 01:23:13 +00002359 /* Force the VF driver stop so it has to reload with new MAC address */
2360 i40e_vc_disable_vf(pf, vf);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002361 dev_info(&pf->pdev->dev, "Reload the VF driver to make this change effective.\n");
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002362
2363error_param:
2364 return ret;
2365}
2366
2367/**
2368 * i40e_ndo_set_vf_port_vlan
2369 * @netdev: network interface device structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002370 * @vf_id: VF identifier
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002371 * @vlan_id: mac address
2372 * @qos: priority setting
2373 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002374 * program VF vlan id and/or qos
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002375 **/
2376int i40e_ndo_set_vf_port_vlan(struct net_device *netdev,
2377 int vf_id, u16 vlan_id, u8 qos)
2378{
Mitch Williamsf7fc2f22015-07-23 16:54:36 -04002379 u16 vlanprio = vlan_id | (qos << I40E_VLAN_PRIORITY_SHIFT);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002380 struct i40e_netdev_priv *np = netdev_priv(netdev);
2381 struct i40e_pf *pf = np->vsi->back;
Kiran Patil21659032015-09-30 14:09:03 -04002382 bool is_vsi_in_vlan = false;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002383 struct i40e_vsi *vsi;
2384 struct i40e_vf *vf;
2385 int ret = 0;
2386
2387 /* validate the request */
2388 if (vf_id >= pf->num_alloc_vfs) {
2389 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d\n", vf_id);
2390 ret = -EINVAL;
2391 goto error_pvid;
2392 }
2393
2394 if ((vlan_id > I40E_MAX_VLANID) || (qos > 7)) {
2395 dev_err(&pf->pdev->dev, "Invalid VF Parameters\n");
2396 ret = -EINVAL;
2397 goto error_pvid;
2398 }
2399
2400 vf = &(pf->vf[vf_id]);
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07002401 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002402 if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
Mitch Williams2d166c32015-12-22 15:34:42 -08002403 dev_err(&pf->pdev->dev, "VF %d still in reset. Try again.\n",
2404 vf_id);
2405 ret = -EAGAIN;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002406 goto error_pvid;
2407 }
2408
Mitch Williamsf7fc2f22015-07-23 16:54:36 -04002409 if (le16_to_cpu(vsi->info.pvid) == vlanprio)
Mitch Williams85927ec2015-04-27 14:57:10 -04002410 /* duplicate request, so just return success */
2411 goto error_pvid;
2412
Kiran Patil21659032015-09-30 14:09:03 -04002413 spin_lock_bh(&vsi->mac_filter_list_lock);
2414 is_vsi_in_vlan = i40e_is_vsi_in_vlan(vsi);
2415 spin_unlock_bh(&vsi->mac_filter_list_lock);
2416
2417 if (le16_to_cpu(vsi->info.pvid) == 0 && is_vsi_in_vlan) {
Greg Rose99a49732014-01-13 16:13:03 -08002418 dev_err(&pf->pdev->dev,
2419 "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",
2420 vf_id);
Greg Rosef9b4b622014-03-06 09:02:28 +00002421 /* Administrator Error - knock the VF offline until he does
2422 * the right thing by reconfiguring his network correctly
2423 * and then reloading the VF driver.
2424 */
2425 i40e_vc_disable_vf(pf, vf);
2426 }
Greg Rose99a49732014-01-13 16:13:03 -08002427
Greg Rose8d82a7c2014-01-13 16:13:04 -08002428 /* Check for condition where there was already a port VLAN ID
2429 * filter set and now it is being deleted by setting it to zero.
Greg Rose1315f7c2014-03-14 07:32:20 +00002430 * Additionally check for the condition where there was a port
2431 * VLAN but now there is a new and different port VLAN being set.
Greg Rose8d82a7c2014-01-13 16:13:04 -08002432 * Before deleting all the old VLAN filters we must add new ones
2433 * with -1 (I40E_VLAN_ANY) or otherwise we're left with all our
2434 * MAC addresses deleted.
2435 */
Greg Rose1315f7c2014-03-14 07:32:20 +00002436 if ((!(vlan_id || qos) ||
Mitch Williamsf7fc2f22015-07-23 16:54:36 -04002437 vlanprio != le16_to_cpu(vsi->info.pvid)) &&
Greg Rose1315f7c2014-03-14 07:32:20 +00002438 vsi->info.pvid)
Greg Rose8d82a7c2014-01-13 16:13:04 -08002439 ret = i40e_vsi_add_vlan(vsi, I40E_VLAN_ANY);
2440
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002441 if (vsi->info.pvid) {
2442 /* kill old VLAN */
2443 ret = i40e_vsi_kill_vlan(vsi, (le16_to_cpu(vsi->info.pvid) &
2444 VLAN_VID_MASK));
2445 if (ret) {
2446 dev_info(&vsi->back->pdev->dev,
2447 "remove VLAN failed, ret=%d, aq_err=%d\n",
2448 ret, pf->hw.aq.asq_last_status);
2449 }
2450 }
2451 if (vlan_id || qos)
Mitch Williamsf7fc2f22015-07-23 16:54:36 -04002452 ret = i40e_vsi_add_pvid(vsi, vlanprio);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002453 else
Greg Rose6c12fcb2013-11-28 06:39:34 +00002454 i40e_vsi_remove_pvid(vsi);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002455
2456 if (vlan_id) {
2457 dev_info(&pf->pdev->dev, "Setting VLAN %d, QOS 0x%x on VF %d\n",
2458 vlan_id, qos, vf_id);
2459
2460 /* add new VLAN filter */
2461 ret = i40e_vsi_add_vlan(vsi, vlan_id);
2462 if (ret) {
2463 dev_info(&vsi->back->pdev->dev,
2464 "add VF VLAN failed, ret=%d aq_err=%d\n", ret,
2465 vsi->back->hw.aq.asq_last_status);
2466 goto error_pvid;
2467 }
Greg Rose8d82a7c2014-01-13 16:13:04 -08002468 /* Kill non-vlan MAC filters - ignore error return since
2469 * there might not be any non-vlan MAC filters.
2470 */
2471 i40e_vsi_kill_vlan(vsi, I40E_VLAN_ANY);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002472 }
2473
2474 if (ret) {
2475 dev_err(&pf->pdev->dev, "Unable to update VF vsi context\n");
2476 goto error_pvid;
2477 }
Greg Rose6c12fcb2013-11-28 06:39:34 +00002478 /* The Port VLAN needs to be saved across resets the same as the
2479 * default LAN MAC address.
2480 */
2481 vf->port_vlan_id = le16_to_cpu(vsi->info.pvid);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002482 ret = 0;
2483
2484error_pvid:
2485 return ret;
2486}
2487
Mitch Williams84590fd2014-04-09 05:58:57 +00002488#define I40E_BW_CREDIT_DIVISOR 50 /* 50Mbps per BW credit */
2489#define I40E_MAX_BW_INACTIVE_ACCUM 4 /* device can accumulate 4 credits max */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002490/**
2491 * i40e_ndo_set_vf_bw
2492 * @netdev: network interface device structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002493 * @vf_id: VF identifier
2494 * @tx_rate: Tx rate
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002495 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002496 * configure VF Tx rate
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002497 **/
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002498int i40e_ndo_set_vf_bw(struct net_device *netdev, int vf_id, int min_tx_rate,
2499 int max_tx_rate)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002500{
Mitch Williams6b192892014-03-06 09:02:29 +00002501 struct i40e_netdev_priv *np = netdev_priv(netdev);
2502 struct i40e_pf *pf = np->vsi->back;
2503 struct i40e_vsi *vsi;
2504 struct i40e_vf *vf;
2505 int speed = 0;
2506 int ret = 0;
2507
2508 /* validate the request */
2509 if (vf_id >= pf->num_alloc_vfs) {
2510 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d.\n", vf_id);
2511 ret = -EINVAL;
2512 goto error;
2513 }
2514
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002515 if (min_tx_rate) {
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002516 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 -04002517 min_tx_rate, vf_id);
2518 return -EINVAL;
2519 }
2520
Mitch Williams6b192892014-03-06 09:02:29 +00002521 vf = &(pf->vf[vf_id]);
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07002522 vsi = pf->vsi[vf->lan_vsi_idx];
Mitch Williams6b192892014-03-06 09:02:29 +00002523 if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
Mitch Williams2d166c32015-12-22 15:34:42 -08002524 dev_err(&pf->pdev->dev, "VF %d still in reset. Try again.\n",
2525 vf_id);
2526 ret = -EAGAIN;
Mitch Williams6b192892014-03-06 09:02:29 +00002527 goto error;
2528 }
2529
2530 switch (pf->hw.phy.link_info.link_speed) {
2531 case I40E_LINK_SPEED_40GB:
2532 speed = 40000;
2533 break;
2534 case I40E_LINK_SPEED_10GB:
2535 speed = 10000;
2536 break;
2537 case I40E_LINK_SPEED_1GB:
2538 speed = 1000;
2539 break;
2540 default:
2541 break;
2542 }
2543
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002544 if (max_tx_rate > speed) {
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002545 dev_err(&pf->pdev->dev, "Invalid max tx rate %d specified for VF %d.",
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002546 max_tx_rate, vf->vf_id);
Mitch Williams6b192892014-03-06 09:02:29 +00002547 ret = -EINVAL;
2548 goto error;
2549 }
2550
Mitch Williamsdac9b312014-04-09 05:58:56 +00002551 if ((max_tx_rate < 50) && (max_tx_rate > 0)) {
2552 dev_warn(&pf->pdev->dev, "Setting max Tx rate to minimum usable value of 50Mbps.\n");
2553 max_tx_rate = 50;
2554 }
2555
Mitch Williams6b192892014-03-06 09:02:29 +00002556 /* Tx rate credits are in values of 50Mbps, 0 is disabled*/
Mitch Williams84590fd2014-04-09 05:58:57 +00002557 ret = i40e_aq_config_vsi_bw_limit(&pf->hw, vsi->seid,
2558 max_tx_rate / I40E_BW_CREDIT_DIVISOR,
2559 I40E_MAX_BW_INACTIVE_ACCUM, NULL);
Mitch Williams6b192892014-03-06 09:02:29 +00002560 if (ret) {
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002561 dev_err(&pf->pdev->dev, "Unable to set max tx rate, error code %d.\n",
Mitch Williams6b192892014-03-06 09:02:29 +00002562 ret);
2563 ret = -EIO;
2564 goto error;
2565 }
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002566 vf->tx_rate = max_tx_rate;
Mitch Williams6b192892014-03-06 09:02:29 +00002567error:
2568 return ret;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002569}
2570
2571/**
2572 * i40e_ndo_get_vf_config
2573 * @netdev: network interface device structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002574 * @vf_id: VF identifier
2575 * @ivi: VF configuration structure
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002576 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002577 * return VF configuration
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002578 **/
2579int i40e_ndo_get_vf_config(struct net_device *netdev,
2580 int vf_id, struct ifla_vf_info *ivi)
2581{
2582 struct i40e_netdev_priv *np = netdev_priv(netdev);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002583 struct i40e_vsi *vsi = np->vsi;
2584 struct i40e_pf *pf = vsi->back;
2585 struct i40e_vf *vf;
2586 int ret = 0;
2587
2588 /* validate the request */
2589 if (vf_id >= pf->num_alloc_vfs) {
2590 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d\n", vf_id);
2591 ret = -EINVAL;
2592 goto error_param;
2593 }
2594
2595 vf = &(pf->vf[vf_id]);
2596 /* first vsi is always the LAN vsi */
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07002597 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002598 if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
Mitch Williams2d166c32015-12-22 15:34:42 -08002599 dev_err(&pf->pdev->dev, "VF %d still in reset. Try again.\n",
2600 vf_id);
2601 ret = -EAGAIN;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002602 goto error_param;
2603 }
2604
2605 ivi->vf = vf_id;
2606
Jesse Brandeburg6995b362015-08-28 17:55:54 -04002607 ether_addr_copy(ivi->mac, vf->default_lan_addr.addr);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002608
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002609 ivi->max_tx_rate = vf->tx_rate;
2610 ivi->min_tx_rate = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002611 ivi->vlan = le16_to_cpu(vsi->info.pvid) & I40E_VLAN_MASK;
2612 ivi->qos = (le16_to_cpu(vsi->info.pvid) & I40E_PRIORITY_MASK) >>
2613 I40E_VLAN_PRIORITY_SHIFT;
Mitch Williams84ca55a2014-03-14 07:32:24 +00002614 if (vf->link_forced == false)
2615 ivi->linkstate = IFLA_VF_LINK_STATE_AUTO;
2616 else if (vf->link_up == true)
2617 ivi->linkstate = IFLA_VF_LINK_STATE_ENABLE;
2618 else
2619 ivi->linkstate = IFLA_VF_LINK_STATE_DISABLE;
Mitch Williamsc674d122014-05-20 08:01:40 +00002620 ivi->spoofchk = vf->spoofchk;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002621 ret = 0;
2622
2623error_param:
2624 return ret;
2625}
Mitch Williams588aefa2014-02-11 08:27:49 +00002626
2627/**
2628 * i40e_ndo_set_vf_link_state
2629 * @netdev: network interface device structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002630 * @vf_id: VF identifier
Mitch Williams588aefa2014-02-11 08:27:49 +00002631 * @link: required link state
2632 *
2633 * Set the link state of a specified VF, regardless of physical link state
2634 **/
2635int i40e_ndo_set_vf_link_state(struct net_device *netdev, int vf_id, int link)
2636{
2637 struct i40e_netdev_priv *np = netdev_priv(netdev);
2638 struct i40e_pf *pf = np->vsi->back;
2639 struct i40e_virtchnl_pf_event pfe;
2640 struct i40e_hw *hw = &pf->hw;
2641 struct i40e_vf *vf;
Ashish Shahf19efbb2014-08-01 13:27:06 -07002642 int abs_vf_id;
Mitch Williams588aefa2014-02-11 08:27:49 +00002643 int ret = 0;
2644
2645 /* validate the request */
2646 if (vf_id >= pf->num_alloc_vfs) {
2647 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d\n", vf_id);
2648 ret = -EINVAL;
2649 goto error_out;
2650 }
2651
2652 vf = &pf->vf[vf_id];
Ashish Shahf19efbb2014-08-01 13:27:06 -07002653 abs_vf_id = vf->vf_id + hw->func_caps.vf_base_id;
Mitch Williams588aefa2014-02-11 08:27:49 +00002654
2655 pfe.event = I40E_VIRTCHNL_EVENT_LINK_CHANGE;
2656 pfe.severity = I40E_PF_EVENT_SEVERITY_INFO;
2657
2658 switch (link) {
2659 case IFLA_VF_LINK_STATE_AUTO:
2660 vf->link_forced = false;
2661 pfe.event_data.link_event.link_status =
2662 pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP;
2663 pfe.event_data.link_event.link_speed =
2664 pf->hw.phy.link_info.link_speed;
2665 break;
2666 case IFLA_VF_LINK_STATE_ENABLE:
2667 vf->link_forced = true;
2668 vf->link_up = true;
2669 pfe.event_data.link_event.link_status = true;
2670 pfe.event_data.link_event.link_speed = I40E_LINK_SPEED_40GB;
2671 break;
2672 case IFLA_VF_LINK_STATE_DISABLE:
2673 vf->link_forced = true;
2674 vf->link_up = false;
2675 pfe.event_data.link_event.link_status = false;
2676 pfe.event_data.link_event.link_speed = 0;
2677 break;
2678 default:
2679 ret = -EINVAL;
2680 goto error_out;
2681 }
2682 /* Notify the VF of its new link state */
Ashish Shahf19efbb2014-08-01 13:27:06 -07002683 i40e_aq_send_msg_to_vf(hw, abs_vf_id, I40E_VIRTCHNL_OP_EVENT,
Mitch Williams588aefa2014-02-11 08:27:49 +00002684 0, (u8 *)&pfe, sizeof(pfe), NULL);
2685
2686error_out:
2687 return ret;
2688}
Mitch Williamsc674d122014-05-20 08:01:40 +00002689
2690/**
2691 * i40e_ndo_set_vf_spoofchk
2692 * @netdev: network interface device structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002693 * @vf_id: VF identifier
Mitch Williamsc674d122014-05-20 08:01:40 +00002694 * @enable: flag to enable or disable feature
2695 *
2696 * Enable or disable VF spoof checking
2697 **/
Serey Konge6d90042014-07-12 07:28:14 +00002698int i40e_ndo_set_vf_spoofchk(struct net_device *netdev, int vf_id, bool enable)
Mitch Williamsc674d122014-05-20 08:01:40 +00002699{
2700 struct i40e_netdev_priv *np = netdev_priv(netdev);
2701 struct i40e_vsi *vsi = np->vsi;
2702 struct i40e_pf *pf = vsi->back;
2703 struct i40e_vsi_context ctxt;
2704 struct i40e_hw *hw = &pf->hw;
2705 struct i40e_vf *vf;
2706 int ret = 0;
2707
2708 /* validate the request */
2709 if (vf_id >= pf->num_alloc_vfs) {
2710 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d\n", vf_id);
2711 ret = -EINVAL;
2712 goto out;
2713 }
2714
2715 vf = &(pf->vf[vf_id]);
Mitch Williams2d166c32015-12-22 15:34:42 -08002716 if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
2717 dev_err(&pf->pdev->dev, "VF %d still in reset. Try again.\n",
2718 vf_id);
2719 ret = -EAGAIN;
2720 goto out;
2721 }
Mitch Williamsc674d122014-05-20 08:01:40 +00002722
2723 if (enable == vf->spoofchk)
2724 goto out;
2725
2726 vf->spoofchk = enable;
2727 memset(&ctxt, 0, sizeof(ctxt));
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07002728 ctxt.seid = pf->vsi[vf->lan_vsi_idx]->seid;
Mitch Williamsc674d122014-05-20 08:01:40 +00002729 ctxt.pf_num = pf->hw.pf_id;
2730 ctxt.info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID);
2731 if (enable)
Greg Rose30d71af2015-01-29 07:17:17 +00002732 ctxt.info.sec_flags |= (I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK |
2733 I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK);
Mitch Williamsc674d122014-05-20 08:01:40 +00002734 ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL);
2735 if (ret) {
2736 dev_err(&pf->pdev->dev, "Error %d updating VSI parameters\n",
2737 ret);
2738 ret = -EIO;
2739 }
2740out:
2741 return ret;
2742}