blob: 94734290907cf2cf7cfc8ba548e46621c62f0371 [file] [log] [blame]
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001/*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Driver
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08004 * Copyright(c) 2013 - 2016 Intel Corporation.
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00005 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
Greg Rosedc641b72013-12-18 13:45:51 +000015 * You should have received a copy of the GNU General Public License along
16 * with this program. If not, see <http://www.gnu.org/licenses/>.
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +000017 *
18 * The full GNU General Public License is included in this distribution in
19 * the file called "COPYING".
20 *
21 * Contact Information:
22 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 ******************************************************************************/
26
27#include "i40e.h"
28
Mitch Williams532b0452015-04-07 19:45:34 -040029/*********************notification routines***********************/
30
31/**
32 * i40e_vc_vf_broadcast
33 * @pf: pointer to the PF structure
34 * @opcode: operation code
35 * @retval: return value
36 * @msg: pointer to the msg buffer
37 * @msglen: msg length
38 *
39 * send a message to all VFs on a given PF
40 **/
41static void i40e_vc_vf_broadcast(struct i40e_pf *pf,
42 enum i40e_virtchnl_ops v_opcode,
43 i40e_status v_retval, u8 *msg,
44 u16 msglen)
45{
46 struct i40e_hw *hw = &pf->hw;
47 struct i40e_vf *vf = pf->vf;
48 int i;
49
50 for (i = 0; i < pf->num_alloc_vfs; i++, vf++) {
Jesse Brandeburga1b5a242016-04-13 03:08:29 -070051 int abs_vf_id = vf->vf_id + (int)hw->func_caps.vf_base_id;
Mitch Williams532b0452015-04-07 19:45:34 -040052 /* Not all vfs are enabled so skip the ones that are not */
53 if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states) &&
54 !test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states))
55 continue;
56
57 /* Ignore return value on purpose - a given VF may fail, but
58 * we need to keep going and send to all of them
59 */
60 i40e_aq_send_msg_to_vf(hw, abs_vf_id, v_opcode, v_retval,
61 msg, msglen, NULL);
62 }
63}
64
65/**
Mitch Williams55f7d722016-03-10 14:59:50 -080066 * i40e_vc_notify_vf_link_state
Mitch Williams532b0452015-04-07 19:45:34 -040067 * @vf: pointer to the VF structure
68 *
69 * send a link status message to a single VF
70 **/
71static void i40e_vc_notify_vf_link_state(struct i40e_vf *vf)
72{
73 struct i40e_virtchnl_pf_event pfe;
74 struct i40e_pf *pf = vf->pf;
75 struct i40e_hw *hw = &pf->hw;
76 struct i40e_link_status *ls = &pf->hw.phy.link_info;
Jesse Brandeburga1b5a242016-04-13 03:08:29 -070077 int abs_vf_id = vf->vf_id + (int)hw->func_caps.vf_base_id;
Mitch Williams532b0452015-04-07 19:45:34 -040078
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
Jesse Brandeburga1b5a242016-04-13 03:08:29 -0700144 abs_vf_id = vf->vf_id + (int)vf->pf->hw.func_caps.vf_base_id;
Mitch Williams532b0452015-04-07 19:45:34 -0400145
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
Jesse Brandeburg19b85e62016-04-18 11:33:45 -0700593 /* set split mode 10b */
Mitch Williamsd6b3bca2016-01-15 14:33:08 -0800594 rx_ctx.dtype = I40E_RX_DTYPE_HEADER_SPLIT;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000595 }
596
597 /* databuffer length validation */
598 if (info->databuffer_size > ((16 * 1024) - 128)) {
599 ret = -EINVAL;
600 goto error_param;
601 }
602 rx_ctx.dbuff = info->databuffer_size >> I40E_RXQ_CTX_DBUFF_SHIFT;
603
604 /* max pkt. length validation */
605 if (info->max_pkt_size >= (16 * 1024) || info->max_pkt_size < 64) {
606 ret = -EINVAL;
607 goto error_param;
608 }
609 rx_ctx.rxmax = info->max_pkt_size;
610
611 /* enable 32bytes desc always */
612 rx_ctx.dsize = 1;
613
614 /* default values */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000615 rx_ctx.lrxqthresh = 2;
616 rx_ctx.crcstrip = 1;
Mitch Williams50d41652014-04-09 05:58:55 +0000617 rx_ctx.prefena = 1;
Shannon Nelsonc1d11ce2014-07-29 04:01:03 +0000618 rx_ctx.l2tsel = 1;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000619
620 /* clear the context in the HMC */
621 ret = i40e_clear_lan_rx_queue_context(hw, pf_queue_id);
622 if (ret) {
623 dev_err(&pf->pdev->dev,
624 "Failed to clear VF LAN Rx queue context %d, error: %d\n",
625 pf_queue_id, ret);
626 ret = -ENOENT;
627 goto error_param;
628 }
629
630 /* set the context in the HMC */
631 ret = i40e_set_lan_rx_queue_context(hw, pf_queue_id, &rx_ctx);
632 if (ret) {
633 dev_err(&pf->pdev->dev,
634 "Failed to set VF LAN Rx queue context %d error: %d\n",
635 pf_queue_id, ret);
636 ret = -ENOENT;
637 goto error_param;
638 }
639
640error_param:
641 return ret;
642}
643
644/**
645 * i40e_alloc_vsi_res
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000646 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000647 * @type: type of VSI to allocate
648 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000649 * alloc VF vsi context & resources
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000650 **/
651static int i40e_alloc_vsi_res(struct i40e_vf *vf, enum i40e_vsi_type type)
652{
653 struct i40e_mac_filter *f = NULL;
654 struct i40e_pf *pf = vf->pf;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000655 struct i40e_vsi *vsi;
656 int ret = 0;
657
658 vsi = i40e_vsi_setup(pf, type, pf->vsi[pf->lan_vsi]->seid, vf->vf_id);
659
660 if (!vsi) {
661 dev_err(&pf->pdev->dev,
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000662 "add vsi failed for VF %d, aq_err %d\n",
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000663 vf->vf_id, pf->hw.aq.asq_last_status);
664 ret = -ENOENT;
665 goto error_alloc_vsi_res;
666 }
667 if (type == I40E_VSI_SRIOV) {
Greg Rose1a103702013-11-28 06:42:39 +0000668 u8 brdcast[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400669
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700670 vf->lan_vsi_idx = vsi->idx;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000671 vf->lan_vsi_id = vsi->id;
Greg Rose6c12fcb2013-11-28 06:39:34 +0000672 /* If the port VLAN has been configured and then the
673 * VF driver was removed then the VSI port VLAN
674 * configuration was destroyed. Check if there is
675 * a port VLAN and restore the VSI configuration if
676 * needed.
677 */
678 if (vf->port_vlan_id)
679 i40e_vsi_add_pvid(vsi, vf->port_vlan_id);
Kiran Patil21659032015-09-30 14:09:03 -0400680
681 spin_lock_bh(&vsi->mac_filter_list_lock);
Mitch Williamsb7b713a2015-11-19 11:34:17 -0800682 if (is_valid_ether_addr(vf->default_lan_addr.addr)) {
683 f = i40e_add_filter(vsi, vf->default_lan_addr.addr,
684 vf->port_vlan_id ? vf->port_vlan_id : -1,
685 true, false);
686 if (!f)
687 dev_info(&pf->pdev->dev,
688 "Could not add MAC filter %pM for VF %d\n",
689 vf->default_lan_addr.addr, vf->vf_id);
690 }
Mitch Williamse9951632015-04-27 14:57:13 -0400691 f = i40e_add_filter(vsi, brdcast,
692 vf->port_vlan_id ? vf->port_vlan_id : -1,
Greg Rose1a103702013-11-28 06:42:39 +0000693 true, false);
694 if (!f)
695 dev_info(&pf->pdev->dev,
696 "Could not allocate VF broadcast filter\n");
Kiran Patil21659032015-09-30 14:09:03 -0400697 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000698 }
Neerav Parikh6dbbbfb2013-11-26 10:49:24 +0000699
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000700 /* program mac filter */
Jesse Brandeburg17652c62015-11-05 17:01:02 -0800701 ret = i40e_sync_vsi_filters(vsi);
Mitch Williamsfd1646e2014-02-13 03:48:44 -0800702 if (ret)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000703 dev_err(&pf->pdev->dev, "Unable to program ucast filters\n");
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000704
Mitch Williams6b192892014-03-06 09:02:29 +0000705 /* Set VF bandwidth if specified */
706 if (vf->tx_rate) {
707 ret = i40e_aq_config_vsi_bw_limit(&pf->hw, vsi->seid,
708 vf->tx_rate / 50, 0, NULL);
709 if (ret)
710 dev_err(&pf->pdev->dev, "Unable to set tx rate, VF %d, error code %d.\n",
711 vf->vf_id, ret);
712 }
713
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000714error_alloc_vsi_res:
715 return ret;
716}
717
718/**
Mitch Williams805bd5b2013-11-28 06:39:26 +0000719 * i40e_enable_vf_mappings
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000720 * @vf: pointer to the VF info
Mitch Williams805bd5b2013-11-28 06:39:26 +0000721 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000722 * enable VF mappings
Mitch Williams805bd5b2013-11-28 06:39:26 +0000723 **/
724static void i40e_enable_vf_mappings(struct i40e_vf *vf)
725{
726 struct i40e_pf *pf = vf->pf;
727 struct i40e_hw *hw = &pf->hw;
728 u32 reg, total_queue_pairs = 0;
729 int j;
730
731 /* Tell the hardware we're using noncontiguous mapping. HW requires
732 * that VF queues be mapped using this method, even when they are
733 * contiguous in real life
734 */
Shannon Nelson272cdaf22016-02-17 16:12:21 -0800735 i40e_write_rx_ctl(hw, I40E_VSILAN_QBASE(vf->lan_vsi_id),
736 I40E_VSILAN_QBASE_VSIQTABLE_ENA_MASK);
Mitch Williams805bd5b2013-11-28 06:39:26 +0000737
738 /* enable VF vplan_qtable mappings */
739 reg = I40E_VPLAN_MAPENA_TXRX_ENA_MASK;
740 wr32(hw, I40E_VPLAN_MAPENA(vf->vf_id), reg);
741
742 /* map PF queues to VF queues */
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700743 for (j = 0; j < pf->vsi[vf->lan_vsi_idx]->alloc_queue_pairs; j++) {
744 u16 qid = i40e_vc_get_pf_queue_id(vf, vf->lan_vsi_id, j);
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400745
Mitch Williams805bd5b2013-11-28 06:39:26 +0000746 reg = (qid & I40E_VPLAN_QTABLE_QINDEX_MASK);
747 wr32(hw, I40E_VPLAN_QTABLE(total_queue_pairs, vf->vf_id), reg);
748 total_queue_pairs++;
749 }
750
751 /* map PF queues to VSI */
752 for (j = 0; j < 7; j++) {
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700753 if (j * 2 >= pf->vsi[vf->lan_vsi_idx]->alloc_queue_pairs) {
Mitch Williams805bd5b2013-11-28 06:39:26 +0000754 reg = 0x07FF07FF; /* unused */
755 } else {
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700756 u16 qid = i40e_vc_get_pf_queue_id(vf, vf->lan_vsi_id,
Mitch Williams805bd5b2013-11-28 06:39:26 +0000757 j * 2);
758 reg = qid;
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700759 qid = i40e_vc_get_pf_queue_id(vf, vf->lan_vsi_id,
Mitch Williams805bd5b2013-11-28 06:39:26 +0000760 (j * 2) + 1);
761 reg |= qid << 16;
762 }
Shannon Nelson272cdaf22016-02-17 16:12:21 -0800763 i40e_write_rx_ctl(hw, I40E_VSILAN_QTABLE(j, vf->lan_vsi_id),
764 reg);
Mitch Williams805bd5b2013-11-28 06:39:26 +0000765 }
766
767 i40e_flush(hw);
768}
769
770/**
771 * i40e_disable_vf_mappings
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000772 * @vf: pointer to the VF info
Mitch Williams805bd5b2013-11-28 06:39:26 +0000773 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000774 * disable VF mappings
Mitch Williams805bd5b2013-11-28 06:39:26 +0000775 **/
776static void i40e_disable_vf_mappings(struct i40e_vf *vf)
777{
778 struct i40e_pf *pf = vf->pf;
779 struct i40e_hw *hw = &pf->hw;
780 int i;
781
782 /* disable qp mappings */
783 wr32(hw, I40E_VPLAN_MAPENA(vf->vf_id), 0);
784 for (i = 0; i < I40E_MAX_VSI_QP; i++)
785 wr32(hw, I40E_VPLAN_QTABLE(i, vf->vf_id),
786 I40E_QUEUE_END_OF_LIST);
787 i40e_flush(hw);
788}
789
790/**
791 * i40e_free_vf_res
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000792 * @vf: pointer to the VF info
Mitch Williams805bd5b2013-11-28 06:39:26 +0000793 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000794 * free VF resources
Mitch Williams805bd5b2013-11-28 06:39:26 +0000795 **/
796static void i40e_free_vf_res(struct i40e_vf *vf)
797{
798 struct i40e_pf *pf = vf->pf;
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000799 struct i40e_hw *hw = &pf->hw;
800 u32 reg_idx, reg;
801 int i, msix_vf;
Mitch Williams805bd5b2013-11-28 06:39:26 +0000802
803 /* free vsi & disconnect it from the parent uplink */
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700804 if (vf->lan_vsi_idx) {
805 i40e_vsi_release(pf->vsi[vf->lan_vsi_idx]);
806 vf->lan_vsi_idx = 0;
Mitch Williams805bd5b2013-11-28 06:39:26 +0000807 vf->lan_vsi_id = 0;
808 }
Mitch Williams9347eb72014-02-11 08:26:32 +0000809 msix_vf = pf->hw.func_caps.num_msix_vectors_vf;
810
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000811 /* disable interrupts so the VF starts in a known state */
812 for (i = 0; i < msix_vf; i++) {
813 /* format is same for both registers */
814 if (0 == i)
815 reg_idx = I40E_VFINT_DYN_CTL0(vf->vf_id);
816 else
817 reg_idx = I40E_VFINT_DYN_CTLN(((msix_vf - 1) *
818 (vf->vf_id))
819 + (i - 1));
820 wr32(hw, reg_idx, I40E_VFINT_DYN_CTLN_CLEARPBA_MASK);
821 i40e_flush(hw);
822 }
Mitch Williams805bd5b2013-11-28 06:39:26 +0000823
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000824 /* clear the irq settings */
825 for (i = 0; i < msix_vf; i++) {
826 /* format is same for both registers */
827 if (0 == i)
828 reg_idx = I40E_VPINT_LNKLST0(vf->vf_id);
829 else
830 reg_idx = I40E_VPINT_LNKLSTN(((msix_vf - 1) *
831 (vf->vf_id))
832 + (i - 1));
833 reg = (I40E_VPINT_LNKLSTN_FIRSTQ_TYPE_MASK |
834 I40E_VPINT_LNKLSTN_FIRSTQ_INDX_MASK);
835 wr32(hw, reg_idx, reg);
836 i40e_flush(hw);
837 }
Mitch Williams805bd5b2013-11-28 06:39:26 +0000838 /* reset some of the state varibles keeping
839 * track of the resources
840 */
841 vf->num_queue_pairs = 0;
842 vf->vf_states = 0;
Mitch Williams21be99e2015-08-31 19:54:48 -0400843 clear_bit(I40E_VF_STAT_INIT, &vf->vf_states);
Mitch Williams805bd5b2013-11-28 06:39:26 +0000844}
845
846/**
847 * i40e_alloc_vf_res
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000848 * @vf: pointer to the VF info
Mitch Williams805bd5b2013-11-28 06:39:26 +0000849 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000850 * allocate VF resources
Mitch Williams805bd5b2013-11-28 06:39:26 +0000851 **/
852static int i40e_alloc_vf_res(struct i40e_vf *vf)
853{
854 struct i40e_pf *pf = vf->pf;
855 int total_queue_pairs = 0;
856 int ret;
857
858 /* allocate hw vsi context & associated resources */
859 ret = i40e_alloc_vsi_res(vf, I40E_VSI_SRIOV);
860 if (ret)
861 goto error_alloc;
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700862 total_queue_pairs += pf->vsi[vf->lan_vsi_idx]->alloc_queue_pairs;
Anjali Singhai Jain692fb0a2016-04-13 03:08:21 -0700863
864 if (vf->trusted)
865 set_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps);
866 else
867 clear_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps);
Mitch Williams805bd5b2013-11-28 06:39:26 +0000868
869 /* store the total qps number for the runtime
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000870 * VF req validation
Mitch Williams805bd5b2013-11-28 06:39:26 +0000871 */
872 vf->num_queue_pairs = total_queue_pairs;
873
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000874 /* VF is now completely initialized */
Mitch Williams805bd5b2013-11-28 06:39:26 +0000875 set_bit(I40E_VF_STAT_INIT, &vf->vf_states);
876
877error_alloc:
878 if (ret)
879 i40e_free_vf_res(vf);
880
881 return ret;
882}
883
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000884#define VF_DEVICE_STATUS 0xAA
885#define VF_TRANS_PENDING_MASK 0x20
886/**
887 * i40e_quiesce_vf_pci
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000888 * @vf: pointer to the VF structure
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000889 *
890 * Wait for VF PCI transactions to be cleared after reset. Returns -EIO
891 * if the transactions never clear.
892 **/
893static int i40e_quiesce_vf_pci(struct i40e_vf *vf)
894{
895 struct i40e_pf *pf = vf->pf;
896 struct i40e_hw *hw = &pf->hw;
897 int vf_abs_id, i;
898 u32 reg;
899
Mitch Williamsb141d612013-11-28 06:39:36 +0000900 vf_abs_id = vf->vf_id + hw->func_caps.vf_base_id;
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000901
902 wr32(hw, I40E_PF_PCI_CIAA,
903 VF_DEVICE_STATUS | (vf_abs_id << I40E_PF_PCI_CIAA_VF_NUM_SHIFT));
904 for (i = 0; i < 100; i++) {
905 reg = rd32(hw, I40E_PF_PCI_CIAD);
906 if ((reg & VF_TRANS_PENDING_MASK) == 0)
907 return 0;
908 udelay(1);
909 }
910 return -EIO;
911}
912
Mitch Williams805bd5b2013-11-28 06:39:26 +0000913/**
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000914 * i40e_reset_vf
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000915 * @vf: pointer to the VF structure
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000916 * @flr: VFLR was issued or not
917 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000918 * reset the VF
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000919 **/
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000920void i40e_reset_vf(struct i40e_vf *vf, bool flr)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000921{
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000922 struct i40e_pf *pf = vf->pf;
923 struct i40e_hw *hw = &pf->hw;
Mitch Williams7e5a3132016-03-10 14:59:47 -0800924 u32 reg, reg_idx, bit_idx;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000925 bool rsd = false;
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000926 int i;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000927
Mitch Williams3ba9bcb2015-01-09 11:18:15 +0000928 if (test_and_set_bit(__I40E_VF_DISABLE, &pf->state))
929 return;
930
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000931 /* warn the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000932 clear_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states);
933
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000934 /* In the case of a VFLR, the HW has already reset the VF and we
935 * just need to clean up, so don't hit the VFRTRIG register.
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000936 */
937 if (!flr) {
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000938 /* reset VF using VPGEN_VFRTRIG reg */
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000939 reg = rd32(hw, I40E_VPGEN_VFRTRIG(vf->vf_id));
940 reg |= I40E_VPGEN_VFRTRIG_VFSWR_MASK;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000941 wr32(hw, I40E_VPGEN_VFRTRIG(vf->vf_id), reg);
942 i40e_flush(hw);
943 }
Mitch Williams7369ca82016-03-18 12:18:09 -0700944 /* clear the VFLR bit in GLGEN_VFLRSTAT */
945 reg_idx = (hw->func_caps.vf_base_id + vf->vf_id) / 32;
946 bit_idx = (hw->func_caps.vf_base_id + vf->vf_id) % 32;
947 wr32(hw, I40E_GLGEN_VFLRSTAT(reg_idx), BIT(bit_idx));
Akeem G Abodunrin30728c52016-04-01 03:56:03 -0700948 i40e_flush(hw);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000949
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000950 if (i40e_quiesce_vf_pci(vf))
951 dev_err(&pf->pdev->dev, "VF %d PCI transactions stuck\n",
952 vf->vf_id);
953
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000954 /* poll VPGEN_VFRSTAT reg to make sure
955 * that reset is complete
956 */
Mitch Williams1750a222015-01-09 11:18:13 +0000957 for (i = 0; i < 10; i++) {
958 /* VF reset requires driver to first reset the VF and then
959 * poll the status register to make sure that the reset
960 * completed successfully. Due to internal HW FIFO flushes,
961 * we must wait 10ms before the register will be valid.
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000962 */
Mitch Williams1750a222015-01-09 11:18:13 +0000963 usleep_range(10000, 20000);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000964 reg = rd32(hw, I40E_VPGEN_VFRSTAT(vf->vf_id));
965 if (reg & I40E_VPGEN_VFRSTAT_VFRD_MASK) {
966 rsd = true;
967 break;
968 }
969 }
970
Anjali Singhai Jain57175ac2015-04-07 19:45:35 -0400971 if (flr)
972 usleep_range(10000, 20000);
973
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000974 if (!rsd)
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000975 dev_err(&pf->pdev->dev, "VF reset check timeout on VF %d\n",
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000976 vf->vf_id);
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000977 wr32(hw, I40E_VFGEN_RSTAT1(vf->vf_id), I40E_VFR_COMPLETED);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000978 /* clear the reset bit in the VPGEN_VFRTRIG reg */
979 reg = rd32(hw, I40E_VPGEN_VFRTRIG(vf->vf_id));
980 reg &= ~I40E_VPGEN_VFRTRIG_VFSWR_MASK;
981 wr32(hw, I40E_VPGEN_VFRTRIG(vf->vf_id), reg);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000982
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000983 /* On initial reset, we won't have any queues */
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700984 if (vf->lan_vsi_idx == 0)
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000985 goto complete_reset;
986
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700987 i40e_vsi_control_rings(pf->vsi[vf->lan_vsi_idx], false);
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000988complete_reset:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000989 /* reallocate VF resources to reset the VSI state */
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000990 i40e_free_vf_res(vf);
Mitch Williams21be99e2015-08-31 19:54:48 -0400991 if (!i40e_alloc_vf_res(vf)) {
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -0600992 int abs_vf_id = vf->vf_id + hw->func_caps.vf_base_id;
Mitch Williams21be99e2015-08-31 19:54:48 -0400993 i40e_enable_vf_mappings(vf);
994 set_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states);
995 clear_bit(I40E_VF_STAT_DISABLED, &vf->vf_states);
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -0600996 i40e_notify_client_of_vf_reset(pf, abs_vf_id);
Mitch Williams21be99e2015-08-31 19:54:48 -0400997 }
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000998 /* tell the VF the reset is done */
999 wr32(hw, I40E_VFGEN_RSTAT1(vf->vf_id), I40E_VFR_VFACTIVE);
Mitch Williams7e5a3132016-03-10 14:59:47 -08001000
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00001001 i40e_flush(hw);
Mitch Williams3ba9bcb2015-01-09 11:18:15 +00001002 clear_bit(__I40E_VF_DISABLE, &pf->state);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001003}
Greg Rosec3542292013-12-13 08:38:38 +00001004
1005/**
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001006 * i40e_free_vfs
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001007 * @pf: pointer to the PF structure
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001008 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001009 * free VF resources
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001010 **/
1011void i40e_free_vfs(struct i40e_pf *pf)
1012{
Mitch Williamsf7414532013-11-28 06:39:40 +00001013 struct i40e_hw *hw = &pf->hw;
1014 u32 reg_idx, bit_idx;
1015 int i, tmp, vf_id;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001016
1017 if (!pf->vf)
1018 return;
Mitch Williams3ba9bcb2015-01-09 11:18:15 +00001019 while (test_and_set_bit(__I40E_VF_DISABLE, &pf->state))
1020 usleep_range(1000, 2000);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001021
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06001022 i40e_notify_client_of_vf_enable(pf, 0);
Mitch Williams0325fca2015-08-26 15:14:09 -04001023 for (i = 0; i < pf->num_alloc_vfs; i++)
1024 if (test_bit(I40E_VF_STAT_INIT, &pf->vf[i].vf_states))
1025 i40e_vsi_control_rings(pf->vsi[pf->vf[i].lan_vsi_idx],
1026 false);
1027
Mitch A Williams6a9ddb32014-12-09 08:53:01 +00001028 /* Disable IOV before freeing resources. This lets any VF drivers
1029 * running in the host get themselves cleaned up before we yank
1030 * the carpet out from underneath their feet.
1031 */
1032 if (!pci_vfs_assigned(pf->pdev))
1033 pci_disable_sriov(pf->pdev);
Mitch Williams6d7b9672015-03-31 00:45:02 -07001034 else
1035 dev_warn(&pf->pdev->dev, "VFs are assigned - not disabling SR-IOV\n");
Mitch A Williams6a9ddb32014-12-09 08:53:01 +00001036
1037 msleep(20); /* let any messages in transit get finished up */
1038
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001039 /* free up VF resources */
Mitch Williams6c1b5bf2013-11-28 06:39:30 +00001040 tmp = pf->num_alloc_vfs;
1041 pf->num_alloc_vfs = 0;
1042 for (i = 0; i < tmp; i++) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001043 if (test_bit(I40E_VF_STAT_INIT, &pf->vf[i].vf_states))
1044 i40e_free_vf_res(&pf->vf[i]);
1045 /* disable qp mappings */
1046 i40e_disable_vf_mappings(&pf->vf[i]);
1047 }
1048
1049 kfree(pf->vf);
1050 pf->vf = NULL;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001051
Mitch Williams9e5634d2014-04-04 04:43:14 +00001052 /* This check is for when the driver is unloaded while VFs are
1053 * assigned. Setting the number of VFs to 0 through sysfs is caught
1054 * before this function ever gets called.
1055 */
Ethan Zhaoc24817b2014-07-22 18:36:43 +00001056 if (!pci_vfs_assigned(pf->pdev)) {
Mitch Williamsf7414532013-11-28 06:39:40 +00001057 /* Acknowledge VFLR for all VFS. Without this, VFs will fail to
1058 * work correctly when SR-IOV gets re-enabled.
1059 */
1060 for (vf_id = 0; vf_id < tmp; vf_id++) {
1061 reg_idx = (hw->func_caps.vf_base_id + vf_id) / 32;
1062 bit_idx = (hw->func_caps.vf_base_id + vf_id) % 32;
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001063 wr32(hw, I40E_GLGEN_VFLRSTAT(reg_idx), BIT(bit_idx));
Mitch Williamsf7414532013-11-28 06:39:40 +00001064 }
Greg Rosec3542292013-12-13 08:38:38 +00001065 }
Mitch Williams3ba9bcb2015-01-09 11:18:15 +00001066 clear_bit(__I40E_VF_DISABLE, &pf->state);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001067}
1068
1069#ifdef CONFIG_PCI_IOV
1070/**
1071 * i40e_alloc_vfs
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001072 * @pf: pointer to the PF structure
1073 * @num_alloc_vfs: number of VFs to allocate
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001074 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001075 * allocate VF resources
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001076 **/
Mitch Williams4aeec012014-02-13 03:48:47 -08001077int i40e_alloc_vfs(struct i40e_pf *pf, u16 num_alloc_vfs)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001078{
1079 struct i40e_vf *vfs;
1080 int i, ret = 0;
1081
Mitch Williams6c1b5bf2013-11-28 06:39:30 +00001082 /* Disable interrupt 0 so we don't try to handle the VFLR. */
Mitch Williams2ef28cf2013-11-28 06:39:32 +00001083 i40e_irq_dynamic_disable_icr0(pf);
1084
Mitch Williams4aeec012014-02-13 03:48:47 -08001085 /* Check to see if we're just allocating resources for extant VFs */
1086 if (pci_num_vf(pf->pdev) != num_alloc_vfs) {
1087 ret = pci_enable_sriov(pf->pdev, num_alloc_vfs);
1088 if (ret) {
Akeem G Abodunrinde445b32015-10-01 14:37:40 -04001089 pf->flags &= ~I40E_FLAG_VEB_MODE_ENABLED;
Mitch Williams4aeec012014-02-13 03:48:47 -08001090 pf->num_alloc_vfs = 0;
1091 goto err_iov;
1092 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001093 }
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06001094 i40e_notify_client_of_vf_enable(pf, num_alloc_vfs);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001095 /* allocate memory */
Akeem G Abodunrincc6456a2014-02-06 05:51:02 +00001096 vfs = kcalloc(num_alloc_vfs, sizeof(struct i40e_vf), GFP_KERNEL);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001097 if (!vfs) {
1098 ret = -ENOMEM;
1099 goto err_alloc;
1100 }
Mitch Williamsc674d122014-05-20 08:01:40 +00001101 pf->vf = vfs;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001102
1103 /* apply default profile */
1104 for (i = 0; i < num_alloc_vfs; i++) {
1105 vfs[i].pf = pf;
1106 vfs[i].parent_type = I40E_SWITCH_ELEMENT_TYPE_VEB;
1107 vfs[i].vf_id = i;
1108
1109 /* assign default capabilities */
1110 set_bit(I40E_VIRTCHNL_VF_CAP_L2, &vfs[i].vf_caps);
Mitch Williamsc674d122014-05-20 08:01:40 +00001111 vfs[i].spoofchk = true;
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001112 /* VF resources get allocated during reset */
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00001113 i40e_reset_vf(&vfs[i], false);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001114
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001115 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001116 pf->num_alloc_vfs = num_alloc_vfs;
1117
1118err_alloc:
1119 if (ret)
1120 i40e_free_vfs(pf);
1121err_iov:
Mitch Williams6c1b5bf2013-11-28 06:39:30 +00001122 /* Re-enable interrupt 0. */
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08001123 i40e_irq_dynamic_enable_icr0(pf, false);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001124 return ret;
1125}
1126
1127#endif
1128/**
1129 * i40e_pci_sriov_enable
1130 * @pdev: pointer to a pci_dev structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001131 * @num_vfs: number of VFs to allocate
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001132 *
1133 * Enable or change the number of VFs
1134 **/
1135static int i40e_pci_sriov_enable(struct pci_dev *pdev, int num_vfs)
1136{
1137#ifdef CONFIG_PCI_IOV
1138 struct i40e_pf *pf = pci_get_drvdata(pdev);
1139 int pre_existing_vfs = pci_num_vf(pdev);
1140 int err = 0;
1141
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001142 if (test_bit(__I40E_TESTING, &pf->state)) {
Greg Rosee17bc412015-04-16 20:05:59 -04001143 dev_warn(&pdev->dev,
1144 "Cannot enable SR-IOV virtual functions while the device is undergoing diagnostic testing\n");
1145 err = -EPERM;
1146 goto err_out;
1147 }
1148
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001149 if (pre_existing_vfs && pre_existing_vfs != num_vfs)
1150 i40e_free_vfs(pf);
1151 else if (pre_existing_vfs && pre_existing_vfs == num_vfs)
1152 goto out;
1153
1154 if (num_vfs > pf->num_req_vfs) {
Mitch Williams96c8d072015-08-27 11:42:35 -04001155 dev_warn(&pdev->dev, "Unable to enable %d VFs. Limited to %d VFs due to device resource constraints.\n",
1156 num_vfs, pf->num_req_vfs);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001157 err = -EPERM;
1158 goto err_out;
1159 }
1160
Mitch Williams96c8d072015-08-27 11:42:35 -04001161 dev_info(&pdev->dev, "Allocating %d VFs.\n", num_vfs);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001162 err = i40e_alloc_vfs(pf, num_vfs);
1163 if (err) {
1164 dev_warn(&pdev->dev, "Failed to enable SR-IOV: %d\n", err);
1165 goto err_out;
1166 }
1167
1168out:
1169 return num_vfs;
1170
1171err_out:
1172 return err;
1173#endif
1174 return 0;
1175}
1176
1177/**
1178 * i40e_pci_sriov_configure
1179 * @pdev: pointer to a pci_dev structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001180 * @num_vfs: number of VFs to allocate
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001181 *
1182 * Enable or change the number of VFs. Called when the user updates the number
1183 * of VFs in sysfs.
1184 **/
1185int i40e_pci_sriov_configure(struct pci_dev *pdev, int num_vfs)
1186{
1187 struct i40e_pf *pf = pci_get_drvdata(pdev);
1188
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07001189 if (num_vfs) {
1190 if (!(pf->flags & I40E_FLAG_VEB_MODE_ENABLED)) {
1191 pf->flags |= I40E_FLAG_VEB_MODE_ENABLED;
1192 i40e_do_reset_safe(pf,
1193 BIT_ULL(__I40E_PF_RESET_REQUESTED));
1194 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001195 return i40e_pci_sriov_enable(pdev, num_vfs);
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07001196 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001197
Ethan Zhaoc24817b2014-07-22 18:36:43 +00001198 if (!pci_vfs_assigned(pf->pdev)) {
Mitch Williams9e5634d2014-04-04 04:43:14 +00001199 i40e_free_vfs(pf);
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07001200 pf->flags &= ~I40E_FLAG_VEB_MODE_ENABLED;
1201 i40e_do_reset_safe(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED));
Mitch Williams9e5634d2014-04-04 04:43:14 +00001202 } else {
1203 dev_warn(&pdev->dev, "Unable to free VFs because some are assigned to VMs.\n");
1204 return -EINVAL;
1205 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001206 return 0;
1207}
1208
1209/***********************virtual channel routines******************/
1210
1211/**
1212 * i40e_vc_send_msg_to_vf
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001213 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001214 * @v_opcode: virtual channel opcode
1215 * @v_retval: virtual channel return value
1216 * @msg: pointer to the msg buffer
1217 * @msglen: msg length
1218 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001219 * send msg to VF
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001220 **/
1221static int i40e_vc_send_msg_to_vf(struct i40e_vf *vf, u32 v_opcode,
1222 u32 v_retval, u8 *msg, u16 msglen)
1223{
Anjali Singhai Jain6e7b5bd2014-07-10 07:58:21 +00001224 struct i40e_pf *pf;
1225 struct i40e_hw *hw;
1226 int abs_vf_id;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001227 i40e_status aq_ret;
1228
Anjali Singhai Jain6e7b5bd2014-07-10 07:58:21 +00001229 /* validate the request */
1230 if (!vf || vf->vf_id >= vf->pf->num_alloc_vfs)
1231 return -EINVAL;
1232
1233 pf = vf->pf;
1234 hw = &pf->hw;
1235 abs_vf_id = vf->vf_id + hw->func_caps.vf_base_id;
1236
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001237 /* single place to detect unsuccessful return values */
1238 if (v_retval) {
1239 vf->num_invalid_msgs++;
Mitch Williams18b7af52016-03-18 12:18:14 -07001240 dev_info(&pf->pdev->dev, "VF %d failed opcode %d, retval: %d\n",
1241 vf->vf_id, v_opcode, v_retval);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001242 if (vf->num_invalid_msgs >
1243 I40E_DEFAULT_NUM_INVALID_MSGS_ALLOWED) {
1244 dev_err(&pf->pdev->dev,
1245 "Number of invalid messages exceeded for VF %d\n",
1246 vf->vf_id);
1247 dev_err(&pf->pdev->dev, "Use PF Control I/F to enable the VF\n");
1248 set_bit(I40E_VF_STAT_DISABLED, &vf->vf_states);
1249 }
1250 } else {
1251 vf->num_valid_msgs++;
Jingjing Wu5d38c932015-09-28 14:12:39 -04001252 /* reset the invalid counter, if a valid message is received. */
1253 vf->num_invalid_msgs = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001254 }
1255
Ashish Shahf19efbb2014-08-01 13:27:06 -07001256 aq_ret = i40e_aq_send_msg_to_vf(hw, abs_vf_id, v_opcode, v_retval,
Mitch Williams7efa84b2013-11-28 06:39:41 +00001257 msg, msglen, NULL);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001258 if (aq_ret) {
Mitch Williams18b7af52016-03-18 12:18:14 -07001259 dev_info(&pf->pdev->dev,
1260 "Unable to send the message to VF %d aq_err %d\n",
1261 vf->vf_id, pf->hw.aq.asq_last_status);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001262 return -EIO;
1263 }
1264
1265 return 0;
1266}
1267
1268/**
1269 * i40e_vc_send_resp_to_vf
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001270 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001271 * @opcode: operation code
1272 * @retval: return value
1273 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001274 * send resp msg to VF
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001275 **/
1276static int i40e_vc_send_resp_to_vf(struct i40e_vf *vf,
1277 enum i40e_virtchnl_ops opcode,
1278 i40e_status retval)
1279{
1280 return i40e_vc_send_msg_to_vf(vf, opcode, retval, NULL, 0);
1281}
1282
1283/**
1284 * i40e_vc_get_version_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001285 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001286 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001287 * called from the VF to request the API version used by the PF
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001288 **/
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04001289static int i40e_vc_get_version_msg(struct i40e_vf *vf, u8 *msg)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001290{
1291 struct i40e_virtchnl_version_info info = {
1292 I40E_VIRTCHNL_VERSION_MAJOR, I40E_VIRTCHNL_VERSION_MINOR
1293 };
1294
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04001295 vf->vf_ver = *(struct i40e_virtchnl_version_info *)msg;
Mitch Williams606a5482015-06-04 16:24:00 -04001296 /* VFs running the 1.0 API expect to get 1.0 back or they will cry. */
1297 if (VF_IS_V10(vf))
1298 info.minor = I40E_VIRTCHNL_VERSION_MINOR_NO_VF_CAPS;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001299 return i40e_vc_send_msg_to_vf(vf, I40E_VIRTCHNL_OP_VERSION,
1300 I40E_SUCCESS, (u8 *)&info,
1301 sizeof(struct
1302 i40e_virtchnl_version_info));
1303}
1304
1305/**
1306 * i40e_vc_get_vf_resources_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001307 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001308 * @msg: pointer to the msg buffer
1309 * @msglen: msg length
1310 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001311 * called from the VF to request its resources
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001312 **/
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04001313static int i40e_vc_get_vf_resources_msg(struct i40e_vf *vf, u8 *msg)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001314{
1315 struct i40e_virtchnl_vf_resource *vfres = NULL;
1316 struct i40e_pf *pf = vf->pf;
1317 i40e_status aq_ret = 0;
1318 struct i40e_vsi *vsi;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001319 int num_vsis = 1;
Mitch Williams442b25e2016-03-18 12:18:06 -07001320 int len = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001321 int ret;
1322
1323 if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
1324 aq_ret = I40E_ERR_PARAM;
1325 goto err;
1326 }
1327
1328 len = (sizeof(struct i40e_virtchnl_vf_resource) +
1329 sizeof(struct i40e_virtchnl_vsi_resource) * num_vsis);
1330
1331 vfres = kzalloc(len, GFP_KERNEL);
1332 if (!vfres) {
1333 aq_ret = I40E_ERR_NO_MEMORY;
1334 len = 0;
1335 goto err;
1336 }
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04001337 if (VF_IS_V11(vf))
1338 vf->driver_caps = *(u32 *)msg;
1339 else
1340 vf->driver_caps = I40E_VIRTCHNL_VF_OFFLOAD_L2 |
1341 I40E_VIRTCHNL_VF_OFFLOAD_RSS_REG |
1342 I40E_VIRTCHNL_VF_OFFLOAD_VLAN;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001343
1344 vfres->vf_offload_flags = I40E_VIRTCHNL_VF_OFFLOAD_L2;
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001345 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001346 if (!vsi->info.pvid)
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04001347 vfres->vf_offload_flags |= I40E_VIRTCHNL_VF_OFFLOAD_VLAN;
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06001348
1349 if (i40e_vf_client_capable(pf, vf->vf_id, I40E_CLIENT_IWARP) &&
1350 (vf->driver_caps & I40E_VIRTCHNL_VF_OFFLOAD_IWARP)) {
1351 vfres->vf_offload_flags |= I40E_VIRTCHNL_VF_OFFLOAD_IWARP;
1352 set_bit(I40E_VF_STAT_IWARPENA, &vf->vf_states);
1353 }
1354
Mitch Williamsc4e18682016-04-12 08:30:40 -07001355 if (vf->driver_caps & I40E_VIRTCHNL_VF_OFFLOAD_RSS_PF) {
1356 vfres->vf_offload_flags |= I40E_VIRTCHNL_VF_OFFLOAD_RSS_PF;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04001357 } else {
Mitch Williamsc4e18682016-04-12 08:30:40 -07001358 if ((pf->flags & I40E_FLAG_RSS_AQ_CAPABLE) &&
1359 (vf->driver_caps & I40E_VIRTCHNL_VF_OFFLOAD_RSS_AQ))
1360 vfres->vf_offload_flags |=
1361 I40E_VIRTCHNL_VF_OFFLOAD_RSS_AQ;
1362 else
1363 vfres->vf_offload_flags |=
1364 I40E_VIRTCHNL_VF_OFFLOAD_RSS_REG;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04001365 }
Anjali Singhai Jain1f012272015-09-03 17:18:53 -04001366
Anjali Singhai Jain3d0da5b2015-12-22 14:25:05 -08001367 if (pf->flags & I40E_FLAG_MULTIPLE_TCP_UDP_RSS_PCTYPE) {
1368 if (vf->driver_caps & I40E_VIRTCHNL_VF_OFFLOAD_RSS_PCTYPE_V2)
1369 vfres->vf_offload_flags |=
1370 I40E_VIRTCHNL_VF_OFFLOAD_RSS_PCTYPE_V2;
1371 }
1372
Shannon Nelson14c5f5d2016-04-01 03:56:08 -07001373 if (vf->driver_caps & I40E_VIRTCHNL_VF_OFFLOAD_RX_POLLING) {
1374 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
1375 dev_err(&pf->pdev->dev,
1376 "VF %d requested polling mode: this feature is supported only when the device is running in single function per port (SFP) mode\n",
1377 vf->vf_id);
1378 ret = I40E_ERR_PARAM;
1379 goto err;
1380 }
Anjali Singhai Jain1f012272015-09-03 17:18:53 -04001381 vfres->vf_offload_flags |= I40E_VIRTCHNL_VF_OFFLOAD_RX_POLLING;
Shannon Nelson14c5f5d2016-04-01 03:56:08 -07001382 }
Anjali Singhai Jain1f012272015-09-03 17:18:53 -04001383
Anjali Singhai Jainf6d83d12015-12-22 14:25:07 -08001384 if (pf->flags & I40E_FLAG_WB_ON_ITR_CAPABLE) {
1385 if (vf->driver_caps & I40E_VIRTCHNL_VF_OFFLOAD_WB_ON_ITR)
1386 vfres->vf_offload_flags |=
1387 I40E_VIRTCHNL_VF_OFFLOAD_WB_ON_ITR;
1388 }
1389
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001390 vfres->num_vsis = num_vsis;
1391 vfres->num_queue_pairs = vf->num_queue_pairs;
1392 vfres->max_vectors = pf->hw.func_caps.num_msix_vectors_vf;
Mitch Williamsc4e18682016-04-12 08:30:40 -07001393 vfres->rss_key_size = I40E_HKEY_ARRAY_SIZE;
1394 vfres->rss_lut_size = I40E_VF_HLUT_ARRAY_SIZE;
1395
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001396 if (vf->lan_vsi_idx) {
Mitch Williams442b25e2016-03-18 12:18:06 -07001397 vfres->vsi_res[0].vsi_id = vf->lan_vsi_id;
1398 vfres->vsi_res[0].vsi_type = I40E_VSI_SRIOV;
1399 vfres->vsi_res[0].num_queue_pairs = vsi->alloc_queue_pairs;
Mitch Williamsf578f5f2015-08-28 17:55:58 -04001400 /* VFs only use TC 0 */
Mitch Williams442b25e2016-03-18 12:18:06 -07001401 vfres->vsi_res[0].qset_handle
Mitch Williamsf578f5f2015-08-28 17:55:58 -04001402 = le16_to_cpu(vsi->info.qs_handle[0]);
Mitch Williams442b25e2016-03-18 12:18:06 -07001403 ether_addr_copy(vfres->vsi_res[0].default_mac_addr,
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001404 vf->default_lan_addr.addr);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001405 }
1406 set_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states);
1407
1408err:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001409 /* send the response back to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001410 ret = i40e_vc_send_msg_to_vf(vf, I40E_VIRTCHNL_OP_GET_VF_RESOURCES,
1411 aq_ret, (u8 *)vfres, len);
1412
1413 kfree(vfres);
1414 return ret;
1415}
1416
1417/**
1418 * i40e_vc_reset_vf_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001419 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001420 * @msg: pointer to the msg buffer
1421 * @msglen: msg length
1422 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001423 * called from the VF to reset itself,
1424 * unlike other virtchnl messages, PF driver
1425 * doesn't send the response back to the VF
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001426 **/
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00001427static void i40e_vc_reset_vf_msg(struct i40e_vf *vf)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001428{
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00001429 if (test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states))
1430 i40e_reset_vf(vf, false);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001431}
1432
1433/**
Anjali Singhai Jain5676a8b2016-04-12 08:30:51 -07001434 * i40e_getnum_vf_vsi_vlan_filters
1435 * @vsi: pointer to the vsi
1436 *
1437 * called to get the number of VLANs offloaded on this VF
1438 **/
1439static inline int i40e_getnum_vf_vsi_vlan_filters(struct i40e_vsi *vsi)
1440{
1441 struct i40e_mac_filter *f;
1442 int num_vlans = 0;
1443
1444 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1445 if (f->vlan >= 0 && f->vlan <= I40E_MAX_VLANID)
1446 num_vlans++;
1447 }
1448
1449 return num_vlans;
1450}
1451
1452/**
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001453 * i40e_vc_config_promiscuous_mode_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001454 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001455 * @msg: pointer to the msg buffer
1456 * @msglen: msg length
1457 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001458 * called from the VF to configure the promiscuous mode of
1459 * VF vsis
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001460 **/
1461static int i40e_vc_config_promiscuous_mode_msg(struct i40e_vf *vf,
1462 u8 *msg, u16 msglen)
1463{
1464 struct i40e_virtchnl_promisc_info *info =
1465 (struct i40e_virtchnl_promisc_info *)msg;
1466 struct i40e_pf *pf = vf->pf;
1467 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jain5676a8b2016-04-12 08:30:51 -07001468 struct i40e_mac_filter *f;
1469 i40e_status aq_ret = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001470 bool allmulti = false;
Anjali Singhai Jain5676a8b2016-04-12 08:30:51 -07001471 struct i40e_vsi *vsi;
1472 bool alluni = false;
1473 int aq_err = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001474
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001475 vsi = i40e_find_vsi_from_id(pf, info->vsi_id);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001476 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
Anjali Singhai Jain5676a8b2016-04-12 08:30:51 -07001477 !i40e_vc_isvalid_vsi_id(vf, info->vsi_id)) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001478 aq_ret = I40E_ERR_PARAM;
1479 goto error_param;
1480 }
Mitch Williamseee41722016-05-03 15:13:13 -07001481 if (!test_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps)) {
1482 dev_err(&pf->pdev->dev,
1483 "Unprivileged VF %d is attempting to configure promiscuous mode\n",
1484 vf->vf_id);
1485 /* Lie to the VF on purpose. */
1486 aq_ret = 0;
1487 goto error_param;
1488 }
Anjali Singhai Jain5676a8b2016-04-12 08:30:51 -07001489 /* Multicast promiscuous handling*/
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001490 if (info->flags & I40E_FLAG_VF_MULTICAST_PROMISC)
1491 allmulti = true;
Anjali Singhai Jain5676a8b2016-04-12 08:30:51 -07001492
1493 if (vf->port_vlan_id) {
1494 aq_ret = i40e_aq_set_vsi_mc_promisc_on_vlan(hw, vsi->seid,
1495 allmulti,
1496 vf->port_vlan_id,
1497 NULL);
1498 } else if (i40e_getnum_vf_vsi_vlan_filters(vsi)) {
1499 list_for_each_entry(f, &vsi->mac_filter_list, list) {
Anjali Singhai Jain47d34832016-04-12 08:30:52 -07001500 if (f->vlan < 0 || f->vlan > I40E_MAX_VLANID)
1501 continue;
1502 aq_ret = i40e_aq_set_vsi_mc_promisc_on_vlan(hw,
1503 vsi->seid,
1504 allmulti,
1505 f->vlan,
1506 NULL);
Anjali Singhai Jain5676a8b2016-04-12 08:30:51 -07001507 aq_err = pf->hw.aq.asq_last_status;
1508 if (aq_ret) {
1509 dev_err(&pf->pdev->dev,
1510 "Could not add VLAN %d to multicast promiscuous domain err %s aq_err %s\n",
1511 f->vlan,
1512 i40e_stat_str(&pf->hw, aq_ret),
1513 i40e_aq_str(&pf->hw, aq_err));
1514 break;
1515 }
1516 }
1517 } else {
1518 aq_ret = i40e_aq_set_vsi_multicast_promiscuous(hw, vsi->seid,
1519 allmulti, NULL);
1520 aq_err = pf->hw.aq.asq_last_status;
1521 if (aq_ret) {
1522 dev_err(&pf->pdev->dev,
1523 "VF %d failed to set multicast promiscuous mode err %s aq_err %s\n",
1524 vf->vf_id,
1525 i40e_stat_str(&pf->hw, aq_ret),
1526 i40e_aq_str(&pf->hw, aq_err));
1527 goto error_param_int;
1528 }
1529 }
1530
1531 if (!aq_ret) {
1532 dev_info(&pf->pdev->dev,
1533 "VF %d successfully set multicast promiscuous mode\n",
1534 vf->vf_id);
1535 if (allmulti)
1536 set_bit(I40E_VF_STAT_MC_PROMISC, &vf->vf_states);
1537 else
1538 clear_bit(I40E_VF_STAT_MC_PROMISC, &vf->vf_states);
1539 }
1540
1541 if (info->flags & I40E_FLAG_VF_UNICAST_PROMISC)
1542 alluni = true;
1543 if (vf->port_vlan_id) {
1544 aq_ret = i40e_aq_set_vsi_uc_promisc_on_vlan(hw, vsi->seid,
1545 alluni,
1546 vf->port_vlan_id,
1547 NULL);
1548 } else if (i40e_getnum_vf_vsi_vlan_filters(vsi)) {
1549 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1550 aq_ret = 0;
Arnd Bergmannce927db2016-04-29 19:44:05 +02001551 if (f->vlan >= 0 && f->vlan <= I40E_MAX_VLANID) {
Anjali Singhai Jain5676a8b2016-04-12 08:30:51 -07001552 aq_ret =
1553 i40e_aq_set_vsi_uc_promisc_on_vlan(hw,
1554 vsi->seid,
1555 alluni,
1556 f->vlan,
1557 NULL);
1558 aq_err = pf->hw.aq.asq_last_status;
Arnd Bergmannce927db2016-04-29 19:44:05 +02001559 }
Anjali Singhai Jain5676a8b2016-04-12 08:30:51 -07001560 if (aq_ret)
1561 dev_err(&pf->pdev->dev,
1562 "Could not add VLAN %d to Unicast promiscuous domain err %s aq_err %s\n",
1563 f->vlan,
1564 i40e_stat_str(&pf->hw, aq_ret),
1565 i40e_aq_str(&pf->hw, aq_err));
1566 }
1567 } else {
1568 aq_ret = i40e_aq_set_vsi_unicast_promiscuous(hw, vsi->seid,
Anjali Singhai Jainb5569892016-05-03 15:13:12 -07001569 allmulti, NULL,
1570 true);
Anjali Singhai Jain5676a8b2016-04-12 08:30:51 -07001571 aq_err = pf->hw.aq.asq_last_status;
1572 if (aq_ret)
1573 dev_err(&pf->pdev->dev,
1574 "VF %d failed to set unicast promiscuous mode %8.8x err %s aq_err %s\n",
1575 vf->vf_id, info->flags,
1576 i40e_stat_str(&pf->hw, aq_ret),
1577 i40e_aq_str(&pf->hw, aq_err));
1578 }
1579
1580error_param_int:
1581 if (!aq_ret) {
1582 dev_info(&pf->pdev->dev,
1583 "VF %d successfully set unicast promiscuous mode\n",
1584 vf->vf_id);
1585 if (alluni)
1586 set_bit(I40E_VF_STAT_UC_PROMISC, &vf->vf_states);
1587 else
1588 clear_bit(I40E_VF_STAT_UC_PROMISC, &vf->vf_states);
1589 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001590
1591error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001592 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001593 return i40e_vc_send_resp_to_vf(vf,
1594 I40E_VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE,
1595 aq_ret);
1596}
1597
1598/**
1599 * i40e_vc_config_queues_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001600 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001601 * @msg: pointer to the msg buffer
1602 * @msglen: msg length
1603 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001604 * called from the VF to configure the rx/tx
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001605 * queues
1606 **/
1607static int i40e_vc_config_queues_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1608{
1609 struct i40e_virtchnl_vsi_queue_config_info *qci =
1610 (struct i40e_virtchnl_vsi_queue_config_info *)msg;
1611 struct i40e_virtchnl_queue_pair_info *qpi;
Ashish Shah5f5e33b2014-07-10 07:58:15 +00001612 struct i40e_pf *pf = vf->pf;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001613 u16 vsi_id, vsi_queue_id;
1614 i40e_status aq_ret = 0;
1615 int i;
1616
1617 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
1618 aq_ret = I40E_ERR_PARAM;
1619 goto error_param;
1620 }
1621
1622 vsi_id = qci->vsi_id;
1623 if (!i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
1624 aq_ret = I40E_ERR_PARAM;
1625 goto error_param;
1626 }
1627 for (i = 0; i < qci->num_queue_pairs; i++) {
1628 qpi = &qci->qpair[i];
1629 vsi_queue_id = qpi->txq.queue_id;
1630 if ((qpi->txq.vsi_id != vsi_id) ||
1631 (qpi->rxq.vsi_id != vsi_id) ||
1632 (qpi->rxq.queue_id != vsi_queue_id) ||
1633 !i40e_vc_isvalid_queue_id(vf, vsi_id, vsi_queue_id)) {
1634 aq_ret = I40E_ERR_PARAM;
1635 goto error_param;
1636 }
1637
1638 if (i40e_config_vsi_rx_queue(vf, vsi_id, vsi_queue_id,
1639 &qpi->rxq) ||
1640 i40e_config_vsi_tx_queue(vf, vsi_id, vsi_queue_id,
1641 &qpi->txq)) {
1642 aq_ret = I40E_ERR_PARAM;
1643 goto error_param;
1644 }
1645 }
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001646 /* set vsi num_queue_pairs in use to num configured by VF */
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001647 pf->vsi[vf->lan_vsi_idx]->num_queue_pairs = qci->num_queue_pairs;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001648
1649error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001650 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001651 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_CONFIG_VSI_QUEUES,
1652 aq_ret);
1653}
1654
1655/**
1656 * i40e_vc_config_irq_map_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001657 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001658 * @msg: pointer to the msg buffer
1659 * @msglen: msg length
1660 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001661 * called from the VF to configure the irq to
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001662 * queue map
1663 **/
1664static int i40e_vc_config_irq_map_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1665{
1666 struct i40e_virtchnl_irq_map_info *irqmap_info =
1667 (struct i40e_virtchnl_irq_map_info *)msg;
1668 struct i40e_virtchnl_vector_map *map;
1669 u16 vsi_id, vsi_queue_id, vector_id;
1670 i40e_status aq_ret = 0;
1671 unsigned long tempmap;
1672 int i;
1673
1674 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
1675 aq_ret = I40E_ERR_PARAM;
1676 goto error_param;
1677 }
1678
1679 for (i = 0; i < irqmap_info->num_vectors; i++) {
1680 map = &irqmap_info->vecmap[i];
1681
1682 vector_id = map->vector_id;
1683 vsi_id = map->vsi_id;
1684 /* validate msg params */
1685 if (!i40e_vc_isvalid_vector_id(vf, vector_id) ||
1686 !i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
1687 aq_ret = I40E_ERR_PARAM;
1688 goto error_param;
1689 }
1690
1691 /* lookout for the invalid queue index */
1692 tempmap = map->rxq_map;
Wei Yongjun48366502013-09-24 05:17:36 +00001693 for_each_set_bit(vsi_queue_id, &tempmap, I40E_MAX_VSI_QP) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001694 if (!i40e_vc_isvalid_queue_id(vf, vsi_id,
1695 vsi_queue_id)) {
1696 aq_ret = I40E_ERR_PARAM;
1697 goto error_param;
1698 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001699 }
1700
1701 tempmap = map->txq_map;
Wei Yongjun48366502013-09-24 05:17:36 +00001702 for_each_set_bit(vsi_queue_id, &tempmap, I40E_MAX_VSI_QP) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001703 if (!i40e_vc_isvalid_queue_id(vf, vsi_id,
1704 vsi_queue_id)) {
1705 aq_ret = I40E_ERR_PARAM;
1706 goto error_param;
1707 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001708 }
1709
1710 i40e_config_irq_link_list(vf, vsi_id, map);
1711 }
1712error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001713 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001714 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_CONFIG_IRQ_MAP,
1715 aq_ret);
1716}
1717
1718/**
1719 * i40e_vc_enable_queues_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001720 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001721 * @msg: pointer to the msg buffer
1722 * @msglen: msg length
1723 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001724 * called from the VF to enable all or specific queue(s)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001725 **/
1726static int i40e_vc_enable_queues_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1727{
1728 struct i40e_virtchnl_queue_select *vqs =
1729 (struct i40e_virtchnl_queue_select *)msg;
1730 struct i40e_pf *pf = vf->pf;
1731 u16 vsi_id = vqs->vsi_id;
1732 i40e_status aq_ret = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001733
1734 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
1735 aq_ret = I40E_ERR_PARAM;
1736 goto error_param;
1737 }
1738
1739 if (!i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
1740 aq_ret = I40E_ERR_PARAM;
1741 goto error_param;
1742 }
1743
1744 if ((0 == vqs->rx_queues) && (0 == vqs->tx_queues)) {
1745 aq_ret = I40E_ERR_PARAM;
1746 goto error_param;
1747 }
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001748
1749 if (i40e_vsi_control_rings(pf->vsi[vf->lan_vsi_idx], true))
Mitch Williams88f65632013-11-28 06:39:28 +00001750 aq_ret = I40E_ERR_TIMEOUT;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001751error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001752 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001753 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_ENABLE_QUEUES,
1754 aq_ret);
1755}
1756
1757/**
1758 * i40e_vc_disable_queues_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001759 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001760 * @msg: pointer to the msg buffer
1761 * @msglen: msg length
1762 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001763 * called from the VF to disable all or specific
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001764 * queue(s)
1765 **/
1766static int i40e_vc_disable_queues_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1767{
1768 struct i40e_virtchnl_queue_select *vqs =
1769 (struct i40e_virtchnl_queue_select *)msg;
1770 struct i40e_pf *pf = vf->pf;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001771 i40e_status aq_ret = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001772
1773 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
1774 aq_ret = I40E_ERR_PARAM;
1775 goto error_param;
1776 }
1777
1778 if (!i40e_vc_isvalid_vsi_id(vf, vqs->vsi_id)) {
1779 aq_ret = I40E_ERR_PARAM;
1780 goto error_param;
1781 }
1782
1783 if ((0 == vqs->rx_queues) && (0 == vqs->tx_queues)) {
1784 aq_ret = I40E_ERR_PARAM;
1785 goto error_param;
1786 }
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001787
1788 if (i40e_vsi_control_rings(pf->vsi[vf->lan_vsi_idx], false))
Mitch Williams88f65632013-11-28 06:39:28 +00001789 aq_ret = I40E_ERR_TIMEOUT;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001790
1791error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001792 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001793 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_DISABLE_QUEUES,
1794 aq_ret);
1795}
1796
1797/**
1798 * i40e_vc_get_stats_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001799 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001800 * @msg: pointer to the msg buffer
1801 * @msglen: msg length
1802 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001803 * called from the VF to get vsi stats
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001804 **/
1805static int i40e_vc_get_stats_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1806{
1807 struct i40e_virtchnl_queue_select *vqs =
1808 (struct i40e_virtchnl_queue_select *)msg;
1809 struct i40e_pf *pf = vf->pf;
1810 struct i40e_eth_stats stats;
1811 i40e_status aq_ret = 0;
1812 struct i40e_vsi *vsi;
1813
1814 memset(&stats, 0, sizeof(struct i40e_eth_stats));
1815
1816 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
1817 aq_ret = I40E_ERR_PARAM;
1818 goto error_param;
1819 }
1820
1821 if (!i40e_vc_isvalid_vsi_id(vf, vqs->vsi_id)) {
1822 aq_ret = I40E_ERR_PARAM;
1823 goto error_param;
1824 }
1825
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001826 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001827 if (!vsi) {
1828 aq_ret = I40E_ERR_PARAM;
1829 goto error_param;
1830 }
1831 i40e_update_eth_stats(vsi);
Mitch Williams5a9769c2013-11-28 06:39:38 +00001832 stats = vsi->eth_stats;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001833
1834error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001835 /* send the response back to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001836 return i40e_vc_send_msg_to_vf(vf, I40E_VIRTCHNL_OP_GET_STATS, aq_ret,
1837 (u8 *)&stats, sizeof(stats));
1838}
1839
Anjali Singhai Jain5f527ba2016-04-13 03:08:22 -07001840/* If the VF is not trusted restrict the number of MAC/VLAN it can program */
1841#define I40E_VC_MAX_MAC_ADDR_PER_VF 8
1842#define I40E_VC_MAX_VLAN_PER_VF 8
1843
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001844/**
Greg Rosef657a6e2013-11-28 06:39:42 +00001845 * i40e_check_vf_permission
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001846 * @vf: pointer to the VF info
Greg Rosef657a6e2013-11-28 06:39:42 +00001847 * @macaddr: pointer to the MAC Address being checked
1848 *
1849 * Check if the VF has permission to add or delete unicast MAC address
1850 * filters and return error code -EPERM if not. Then check if the
1851 * address filter requested is broadcast or zero and if so return
1852 * an invalid MAC address error code.
1853 **/
1854static inline int i40e_check_vf_permission(struct i40e_vf *vf, u8 *macaddr)
1855{
1856 struct i40e_pf *pf = vf->pf;
1857 int ret = 0;
1858
1859 if (is_broadcast_ether_addr(macaddr) ||
1860 is_zero_ether_addr(macaddr)) {
1861 dev_err(&pf->pdev->dev, "invalid VF MAC addr %pM\n", macaddr);
1862 ret = I40E_ERR_INVALID_MAC_ADDR;
Greg Rose5017c2a2013-12-07 10:36:54 +00001863 } else if (vf->pf_set_mac && !is_multicast_ether_addr(macaddr) &&
Anjali Singhai Jain692fb0a2016-04-13 03:08:21 -07001864 !test_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps) &&
Greg Rose5017c2a2013-12-07 10:36:54 +00001865 !ether_addr_equal(macaddr, vf->default_lan_addr.addr)) {
Greg Rosef657a6e2013-11-28 06:39:42 +00001866 /* If the host VMM administrator has set the VF MAC address
1867 * administratively via the ndo_set_vf_mac command then deny
1868 * permission to the VF to add or delete unicast MAC addresses.
Anjali Singhai Jain692fb0a2016-04-13 03:08:21 -07001869 * Unless the VF is privileged and then it can do whatever.
Greg Rose5017c2a2013-12-07 10:36:54 +00001870 * The VF may request to set the MAC address filter already
1871 * assigned to it so do not return an error in that case.
Greg Rosef657a6e2013-11-28 06:39:42 +00001872 */
1873 dev_err(&pf->pdev->dev,
Anjali Singhai Jain692fb0a2016-04-13 03:08:21 -07001874 "VF attempting to override administratively set MAC address, reload the VF driver to resume normal operation\n");
Greg Rosef657a6e2013-11-28 06:39:42 +00001875 ret = -EPERM;
Anjali Singhai Jain5f527ba2016-04-13 03:08:22 -07001876 } else if ((vf->num_mac >= I40E_VC_MAX_MAC_ADDR_PER_VF) &&
1877 !test_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps)) {
1878 dev_err(&pf->pdev->dev,
1879 "VF is not trusted, switch the VF to trusted to add more functionality\n");
1880 ret = -EPERM;
Greg Rosef657a6e2013-11-28 06:39:42 +00001881 }
1882 return ret;
1883}
1884
1885/**
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001886 * i40e_vc_add_mac_addr_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001887 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001888 * @msg: pointer to the msg buffer
1889 * @msglen: msg length
1890 *
1891 * add guest mac address filter
1892 **/
1893static int i40e_vc_add_mac_addr_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1894{
1895 struct i40e_virtchnl_ether_addr_list *al =
1896 (struct i40e_virtchnl_ether_addr_list *)msg;
1897 struct i40e_pf *pf = vf->pf;
1898 struct i40e_vsi *vsi = NULL;
1899 u16 vsi_id = al->vsi_id;
Greg Rosef657a6e2013-11-28 06:39:42 +00001900 i40e_status ret = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001901 int i;
1902
1903 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001904 !i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
Greg Rosef657a6e2013-11-28 06:39:42 +00001905 ret = I40E_ERR_PARAM;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001906 goto error_param;
1907 }
1908
1909 for (i = 0; i < al->num_elements; i++) {
Greg Rosef657a6e2013-11-28 06:39:42 +00001910 ret = i40e_check_vf_permission(vf, al->list[i].addr);
1911 if (ret)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001912 goto error_param;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001913 }
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001914 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001915
Kiran Patil21659032015-09-30 14:09:03 -04001916 /* Lock once, because all function inside for loop accesses VSI's
1917 * MAC filter list which needs to be protected using same lock.
1918 */
1919 spin_lock_bh(&vsi->mac_filter_list_lock);
1920
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001921 /* add new addresses to the list */
1922 for (i = 0; i < al->num_elements; i++) {
1923 struct i40e_mac_filter *f;
1924
1925 f = i40e_find_mac(vsi, al->list[i].addr, true, false);
Mitch Williams7e68edf92013-11-16 10:00:41 +00001926 if (!f) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001927 if (i40e_is_vsi_in_vlan(vsi))
1928 f = i40e_put_mac_in_vlan(vsi, al->list[i].addr,
1929 true, false);
1930 else
1931 f = i40e_add_filter(vsi, al->list[i].addr, -1,
1932 true, false);
1933 }
1934
1935 if (!f) {
1936 dev_err(&pf->pdev->dev,
Mitch Williams8d8f2292015-10-21 19:47:11 -04001937 "Unable to add MAC filter %pM for VF %d\n",
1938 al->list[i].addr, vf->vf_id);
Greg Rosef657a6e2013-11-28 06:39:42 +00001939 ret = I40E_ERR_PARAM;
Kiran Patil21659032015-09-30 14:09:03 -04001940 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001941 goto error_param;
Anjali Singhai Jain5f527ba2016-04-13 03:08:22 -07001942 } else {
1943 vf->num_mac++;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001944 }
1945 }
Kiran Patil21659032015-09-30 14:09:03 -04001946 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001947
1948 /* program the updated filter list */
Mitch Williamsea02e902015-11-09 15:35:50 -08001949 ret = i40e_sync_vsi_filters(vsi);
1950 if (ret)
1951 dev_err(&pf->pdev->dev, "Unable to program VF %d MAC filters, error %d\n",
1952 vf->vf_id, ret);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001953
1954error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001955 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001956 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_ADD_ETHER_ADDRESS,
Greg Rosef657a6e2013-11-28 06:39:42 +00001957 ret);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001958}
1959
1960/**
1961 * i40e_vc_del_mac_addr_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001962 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001963 * @msg: pointer to the msg buffer
1964 * @msglen: msg length
1965 *
1966 * remove guest mac address filter
1967 **/
1968static int i40e_vc_del_mac_addr_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1969{
1970 struct i40e_virtchnl_ether_addr_list *al =
1971 (struct i40e_virtchnl_ether_addr_list *)msg;
1972 struct i40e_pf *pf = vf->pf;
1973 struct i40e_vsi *vsi = NULL;
1974 u16 vsi_id = al->vsi_id;
Greg Rosef657a6e2013-11-28 06:39:42 +00001975 i40e_status ret = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001976 int i;
1977
1978 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001979 !i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
Greg Rosef657a6e2013-11-28 06:39:42 +00001980 ret = I40E_ERR_PARAM;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001981 goto error_param;
1982 }
Greg Rosef657a6e2013-11-28 06:39:42 +00001983
1984 for (i = 0; i < al->num_elements; i++) {
Mitch Williams700bbf62013-12-21 05:44:45 +00001985 if (is_broadcast_ether_addr(al->list[i].addr) ||
1986 is_zero_ether_addr(al->list[i].addr)) {
Mitch Williams8d8f2292015-10-21 19:47:11 -04001987 dev_err(&pf->pdev->dev, "Invalid MAC addr %pM for VF %d\n",
1988 al->list[i].addr, vf->vf_id);
Mitch Williams700bbf62013-12-21 05:44:45 +00001989 ret = I40E_ERR_INVALID_MAC_ADDR;
Greg Rosef657a6e2013-11-28 06:39:42 +00001990 goto error_param;
Mitch Williams700bbf62013-12-21 05:44:45 +00001991 }
Greg Rosef657a6e2013-11-28 06:39:42 +00001992 }
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001993 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001994
Kiran Patil21659032015-09-30 14:09:03 -04001995 spin_lock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001996 /* delete addresses from the list */
1997 for (i = 0; i < al->num_elements; i++)
Mitch Williamsb36e9ab2015-11-19 11:34:16 -08001998 if (i40e_del_mac_all_vlan(vsi, al->list[i].addr, true, false)) {
1999 ret = I40E_ERR_INVALID_MAC_ADDR;
2000 spin_unlock_bh(&vsi->mac_filter_list_lock);
2001 goto error_param;
Anjali Singhai Jain5f527ba2016-04-13 03:08:22 -07002002 } else {
2003 vf->num_mac--;
Mitch Williamsb36e9ab2015-11-19 11:34:16 -08002004 }
2005
Kiran Patil21659032015-09-30 14:09:03 -04002006 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002007
2008 /* program the updated filter list */
Mitch Williamsea02e902015-11-09 15:35:50 -08002009 ret = i40e_sync_vsi_filters(vsi);
2010 if (ret)
2011 dev_err(&pf->pdev->dev, "Unable to program VF %d MAC filters, error %d\n",
2012 vf->vf_id, ret);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002013
2014error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002015 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002016 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_DEL_ETHER_ADDRESS,
Greg Rosef657a6e2013-11-28 06:39:42 +00002017 ret);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002018}
2019
2020/**
2021 * i40e_vc_add_vlan_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002022 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002023 * @msg: pointer to the msg buffer
2024 * @msglen: msg length
2025 *
2026 * program guest vlan id
2027 **/
2028static int i40e_vc_add_vlan_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
2029{
2030 struct i40e_virtchnl_vlan_filter_list *vfl =
2031 (struct i40e_virtchnl_vlan_filter_list *)msg;
2032 struct i40e_pf *pf = vf->pf;
2033 struct i40e_vsi *vsi = NULL;
2034 u16 vsi_id = vfl->vsi_id;
2035 i40e_status aq_ret = 0;
2036 int i;
2037
Anjali Singhai Jain5f527ba2016-04-13 03:08:22 -07002038 if ((vf->num_vlan >= I40E_VC_MAX_VLAN_PER_VF) &&
2039 !test_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps)) {
2040 dev_err(&pf->pdev->dev,
2041 "VF is not trusted, switch the VF to trusted to add more VLAN addresses\n");
2042 goto error_param;
2043 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002044 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002045 !i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
2046 aq_ret = I40E_ERR_PARAM;
2047 goto error_param;
2048 }
2049
2050 for (i = 0; i < vfl->num_elements; i++) {
2051 if (vfl->vlan_id[i] > I40E_MAX_VLANID) {
2052 aq_ret = I40E_ERR_PARAM;
2053 dev_err(&pf->pdev->dev,
2054 "invalid VF VLAN id %d\n", vfl->vlan_id[i]);
2055 goto error_param;
2056 }
2057 }
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07002058 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002059 if (vsi->info.pvid) {
2060 aq_ret = I40E_ERR_PARAM;
2061 goto error_param;
2062 }
2063
2064 i40e_vlan_stripping_enable(vsi);
2065 for (i = 0; i < vfl->num_elements; i++) {
2066 /* add new VLAN filter */
2067 int ret = i40e_vsi_add_vlan(vsi, vfl->vlan_id[i]);
Anjali Singhai Jain5f527ba2016-04-13 03:08:22 -07002068 if (!ret)
2069 vf->num_vlan++;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04002070
Anjali Singhai Jain5676a8b2016-04-12 08:30:51 -07002071 if (test_bit(I40E_VF_STAT_UC_PROMISC, &vf->vf_states))
2072 i40e_aq_set_vsi_uc_promisc_on_vlan(&pf->hw, vsi->seid,
2073 true,
2074 vfl->vlan_id[i],
2075 NULL);
2076 if (test_bit(I40E_VF_STAT_MC_PROMISC, &vf->vf_states))
2077 i40e_aq_set_vsi_mc_promisc_on_vlan(&pf->hw, vsi->seid,
2078 true,
2079 vfl->vlan_id[i],
2080 NULL);
2081
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002082 if (ret)
2083 dev_err(&pf->pdev->dev,
Mitch Williams8d8f2292015-10-21 19:47:11 -04002084 "Unable to add VLAN filter %d for VF %d, error %d\n",
2085 vfl->vlan_id[i], vf->vf_id, ret);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002086 }
2087
2088error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002089 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002090 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_ADD_VLAN, aq_ret);
2091}
2092
2093/**
2094 * i40e_vc_remove_vlan_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002095 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002096 * @msg: pointer to the msg buffer
2097 * @msglen: msg length
2098 *
2099 * remove programmed guest vlan id
2100 **/
2101static int i40e_vc_remove_vlan_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
2102{
2103 struct i40e_virtchnl_vlan_filter_list *vfl =
2104 (struct i40e_virtchnl_vlan_filter_list *)msg;
2105 struct i40e_pf *pf = vf->pf;
2106 struct i40e_vsi *vsi = NULL;
2107 u16 vsi_id = vfl->vsi_id;
2108 i40e_status aq_ret = 0;
2109 int i;
2110
2111 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002112 !i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
2113 aq_ret = I40E_ERR_PARAM;
2114 goto error_param;
2115 }
2116
2117 for (i = 0; i < vfl->num_elements; i++) {
2118 if (vfl->vlan_id[i] > I40E_MAX_VLANID) {
2119 aq_ret = I40E_ERR_PARAM;
2120 goto error_param;
2121 }
2122 }
2123
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07002124 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002125 if (vsi->info.pvid) {
2126 aq_ret = I40E_ERR_PARAM;
2127 goto error_param;
2128 }
2129
2130 for (i = 0; i < vfl->num_elements; i++) {
2131 int ret = i40e_vsi_kill_vlan(vsi, vfl->vlan_id[i]);
Anjali Singhai Jain5f527ba2016-04-13 03:08:22 -07002132 if (!ret)
2133 vf->num_vlan--;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04002134
Anjali Singhai Jain5676a8b2016-04-12 08:30:51 -07002135 if (test_bit(I40E_VF_STAT_UC_PROMISC, &vf->vf_states))
2136 i40e_aq_set_vsi_uc_promisc_on_vlan(&pf->hw, vsi->seid,
2137 false,
2138 vfl->vlan_id[i],
2139 NULL);
2140 if (test_bit(I40E_VF_STAT_MC_PROMISC, &vf->vf_states))
2141 i40e_aq_set_vsi_mc_promisc_on_vlan(&pf->hw, vsi->seid,
2142 false,
2143 vfl->vlan_id[i],
2144 NULL);
2145
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002146 if (ret)
2147 dev_err(&pf->pdev->dev,
Mitch Williams8d8f2292015-10-21 19:47:11 -04002148 "Unable to delete VLAN filter %d for VF %d, error %d\n",
2149 vfl->vlan_id[i], vf->vf_id, ret);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002150 }
2151
2152error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002153 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002154 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_DEL_VLAN, aq_ret);
2155}
2156
2157/**
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06002158 * i40e_vc_iwarp_msg
2159 * @vf: pointer to the VF info
2160 * @msg: pointer to the msg buffer
2161 * @msglen: msg length
2162 *
2163 * called from the VF for the iwarp msgs
2164 **/
2165static int i40e_vc_iwarp_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
2166{
2167 struct i40e_pf *pf = vf->pf;
2168 int abs_vf_id = vf->vf_id + pf->hw.func_caps.vf_base_id;
2169 i40e_status aq_ret = 0;
2170
2171 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
2172 !test_bit(I40E_VF_STAT_IWARPENA, &vf->vf_states)) {
2173 aq_ret = I40E_ERR_PARAM;
2174 goto error_param;
2175 }
2176
2177 i40e_notify_client_of_vf_msg(pf->vsi[pf->lan_vsi], abs_vf_id,
2178 msg, msglen);
2179
2180error_param:
2181 /* send the response to the VF */
2182 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_IWARP,
2183 aq_ret);
2184}
2185
2186/**
2187 * i40e_vc_iwarp_qvmap_msg
2188 * @vf: pointer to the VF info
2189 * @msg: pointer to the msg buffer
2190 * @msglen: msg length
2191 * @config: config qvmap or release it
2192 *
2193 * called from the VF for the iwarp msgs
2194 **/
2195static int i40e_vc_iwarp_qvmap_msg(struct i40e_vf *vf, u8 *msg, u16 msglen,
2196 bool config)
2197{
2198 struct i40e_virtchnl_iwarp_qvlist_info *qvlist_info =
2199 (struct i40e_virtchnl_iwarp_qvlist_info *)msg;
2200 i40e_status aq_ret = 0;
2201
2202 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
2203 !test_bit(I40E_VF_STAT_IWARPENA, &vf->vf_states)) {
2204 aq_ret = I40E_ERR_PARAM;
2205 goto error_param;
2206 }
2207
2208 if (config) {
2209 if (i40e_config_iwarp_qvlist(vf, qvlist_info))
2210 aq_ret = I40E_ERR_PARAM;
2211 } else {
2212 i40e_release_iwarp_qvlist(vf);
2213 }
2214
2215error_param:
2216 /* send the response to the VF */
2217 return i40e_vc_send_resp_to_vf(vf,
2218 config ? I40E_VIRTCHNL_OP_RELEASE_IWARP_IRQ_MAP :
2219 I40E_VIRTCHNL_OP_CONFIG_IWARP_IRQ_MAP,
2220 aq_ret);
2221}
2222
2223/**
Mitch Williamsc4e18682016-04-12 08:30:40 -07002224 * i40e_vc_config_rss_key
2225 * @vf: pointer to the VF info
2226 * @msg: pointer to the msg buffer
2227 * @msglen: msg length
2228 *
2229 * Configure the VF's RSS key
2230 **/
2231static int i40e_vc_config_rss_key(struct i40e_vf *vf, u8 *msg, u16 msglen)
2232{
2233 struct i40e_virtchnl_rss_key *vrk =
2234 (struct i40e_virtchnl_rss_key *)msg;
2235 struct i40e_pf *pf = vf->pf;
2236 struct i40e_vsi *vsi = NULL;
2237 u16 vsi_id = vrk->vsi_id;
2238 i40e_status aq_ret = 0;
2239
2240 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
Mitch Williamsc4e18682016-04-12 08:30:40 -07002241 !i40e_vc_isvalid_vsi_id(vf, vsi_id) ||
2242 (vrk->key_len != I40E_HKEY_ARRAY_SIZE)) {
2243 aq_ret = I40E_ERR_PARAM;
2244 goto err;
2245 }
2246
2247 vsi = pf->vsi[vf->lan_vsi_idx];
2248 aq_ret = i40e_config_rss(vsi, vrk->key, NULL, 0);
2249err:
2250 /* send the response to the VF */
2251 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_CONFIG_RSS_KEY,
2252 aq_ret);
2253}
2254
2255/**
2256 * i40e_vc_config_rss_lut
2257 * @vf: pointer to the VF info
2258 * @msg: pointer to the msg buffer
2259 * @msglen: msg length
2260 *
2261 * Configure the VF's RSS LUT
2262 **/
2263static int i40e_vc_config_rss_lut(struct i40e_vf *vf, u8 *msg, u16 msglen)
2264{
2265 struct i40e_virtchnl_rss_lut *vrl =
2266 (struct i40e_virtchnl_rss_lut *)msg;
2267 struct i40e_pf *pf = vf->pf;
2268 struct i40e_vsi *vsi = NULL;
2269 u16 vsi_id = vrl->vsi_id;
2270 i40e_status aq_ret = 0;
2271
2272 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
Mitch Williamsc4e18682016-04-12 08:30:40 -07002273 !i40e_vc_isvalid_vsi_id(vf, vsi_id) ||
2274 (vrl->lut_entries != I40E_VF_HLUT_ARRAY_SIZE)) {
2275 aq_ret = I40E_ERR_PARAM;
2276 goto err;
2277 }
2278
2279 vsi = pf->vsi[vf->lan_vsi_idx];
2280 aq_ret = i40e_config_rss(vsi, NULL, vrl->lut, I40E_VF_HLUT_ARRAY_SIZE);
2281 /* send the response to the VF */
2282err:
2283 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_CONFIG_RSS_LUT,
2284 aq_ret);
2285}
2286
2287/**
2288 * i40e_vc_get_rss_hena
2289 * @vf: pointer to the VF info
2290 * @msg: pointer to the msg buffer
2291 * @msglen: msg length
2292 *
2293 * Return the RSS HENA bits allowed by the hardware
2294 **/
2295static int i40e_vc_get_rss_hena(struct i40e_vf *vf, u8 *msg, u16 msglen)
2296{
2297 struct i40e_virtchnl_rss_hena *vrh = NULL;
2298 struct i40e_pf *pf = vf->pf;
2299 i40e_status aq_ret = 0;
2300 int len = 0;
2301
Anjali Singhai Jain692fb0a2016-04-13 03:08:21 -07002302 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
Mitch Williamsc4e18682016-04-12 08:30:40 -07002303 aq_ret = I40E_ERR_PARAM;
2304 goto err;
2305 }
2306 len = sizeof(struct i40e_virtchnl_rss_hena);
2307
2308 vrh = kzalloc(len, GFP_KERNEL);
2309 if (!vrh) {
2310 aq_ret = I40E_ERR_NO_MEMORY;
2311 len = 0;
2312 goto err;
2313 }
2314 vrh->hena = i40e_pf_get_default_rss_hena(pf);
2315err:
2316 /* send the response back to the VF */
2317 aq_ret = i40e_vc_send_msg_to_vf(vf, I40E_VIRTCHNL_OP_GET_RSS_HENA_CAPS,
2318 aq_ret, (u8 *)vrh, len);
2319 return aq_ret;
2320}
2321
2322/**
2323 * i40e_vc_set_rss_hena
2324 * @vf: pointer to the VF info
2325 * @msg: pointer to the msg buffer
2326 * @msglen: msg length
2327 *
2328 * Set the RSS HENA bits for the VF
2329 **/
2330static int i40e_vc_set_rss_hena(struct i40e_vf *vf, u8 *msg, u16 msglen)
2331{
2332 struct i40e_virtchnl_rss_hena *vrh =
2333 (struct i40e_virtchnl_rss_hena *)msg;
2334 struct i40e_pf *pf = vf->pf;
2335 struct i40e_hw *hw = &pf->hw;
2336 i40e_status aq_ret = 0;
2337
Anjali Singhai Jain692fb0a2016-04-13 03:08:21 -07002338 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
Mitch Williamsc4e18682016-04-12 08:30:40 -07002339 aq_ret = I40E_ERR_PARAM;
2340 goto err;
2341 }
2342 i40e_write_rx_ctl(hw, I40E_VFQF_HENA1(0, vf->vf_id), (u32)vrh->hena);
2343 i40e_write_rx_ctl(hw, I40E_VFQF_HENA1(1, vf->vf_id),
2344 (u32)(vrh->hena >> 32));
2345
2346 /* send the response to the VF */
2347err:
2348 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_SET_RSS_HENA,
2349 aq_ret);
2350}
2351
2352/**
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002353 * i40e_vc_validate_vf_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002354 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002355 * @msg: pointer to the msg buffer
2356 * @msglen: msg length
2357 * @msghndl: msg handle
2358 *
2359 * validate msg
2360 **/
2361static int i40e_vc_validate_vf_msg(struct i40e_vf *vf, u32 v_opcode,
2362 u32 v_retval, u8 *msg, u16 msglen)
2363{
2364 bool err_msg_format = false;
Catherine Sullivan3ed439c2016-04-13 03:08:27 -07002365 int valid_len = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002366
2367 /* Check if VF is disabled. */
2368 if (test_bit(I40E_VF_STAT_DISABLED, &vf->vf_states))
2369 return I40E_ERR_PARAM;
2370
2371 /* Validate message length. */
2372 switch (v_opcode) {
2373 case I40E_VIRTCHNL_OP_VERSION:
2374 valid_len = sizeof(struct i40e_virtchnl_version_info);
2375 break;
2376 case I40E_VIRTCHNL_OP_RESET_VF:
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002377 break;
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04002378 case I40E_VIRTCHNL_OP_GET_VF_RESOURCES:
2379 if (VF_IS_V11(vf))
2380 valid_len = sizeof(u32);
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04002381 break;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002382 case I40E_VIRTCHNL_OP_CONFIG_TX_QUEUE:
2383 valid_len = sizeof(struct i40e_virtchnl_txq_info);
2384 break;
2385 case I40E_VIRTCHNL_OP_CONFIG_RX_QUEUE:
2386 valid_len = sizeof(struct i40e_virtchnl_rxq_info);
2387 break;
2388 case I40E_VIRTCHNL_OP_CONFIG_VSI_QUEUES:
2389 valid_len = sizeof(struct i40e_virtchnl_vsi_queue_config_info);
2390 if (msglen >= valid_len) {
2391 struct i40e_virtchnl_vsi_queue_config_info *vqc =
2392 (struct i40e_virtchnl_vsi_queue_config_info *)msg;
2393 valid_len += (vqc->num_queue_pairs *
2394 sizeof(struct
2395 i40e_virtchnl_queue_pair_info));
2396 if (vqc->num_queue_pairs == 0)
2397 err_msg_format = true;
2398 }
2399 break;
2400 case I40E_VIRTCHNL_OP_CONFIG_IRQ_MAP:
2401 valid_len = sizeof(struct i40e_virtchnl_irq_map_info);
2402 if (msglen >= valid_len) {
2403 struct i40e_virtchnl_irq_map_info *vimi =
2404 (struct i40e_virtchnl_irq_map_info *)msg;
2405 valid_len += (vimi->num_vectors *
2406 sizeof(struct i40e_virtchnl_vector_map));
2407 if (vimi->num_vectors == 0)
2408 err_msg_format = true;
2409 }
2410 break;
2411 case I40E_VIRTCHNL_OP_ENABLE_QUEUES:
2412 case I40E_VIRTCHNL_OP_DISABLE_QUEUES:
2413 valid_len = sizeof(struct i40e_virtchnl_queue_select);
2414 break;
2415 case I40E_VIRTCHNL_OP_ADD_ETHER_ADDRESS:
2416 case I40E_VIRTCHNL_OP_DEL_ETHER_ADDRESS:
2417 valid_len = sizeof(struct i40e_virtchnl_ether_addr_list);
2418 if (msglen >= valid_len) {
2419 struct i40e_virtchnl_ether_addr_list *veal =
2420 (struct i40e_virtchnl_ether_addr_list *)msg;
2421 valid_len += veal->num_elements *
2422 sizeof(struct i40e_virtchnl_ether_addr);
2423 if (veal->num_elements == 0)
2424 err_msg_format = true;
2425 }
2426 break;
2427 case I40E_VIRTCHNL_OP_ADD_VLAN:
2428 case I40E_VIRTCHNL_OP_DEL_VLAN:
2429 valid_len = sizeof(struct i40e_virtchnl_vlan_filter_list);
2430 if (msglen >= valid_len) {
2431 struct i40e_virtchnl_vlan_filter_list *vfl =
2432 (struct i40e_virtchnl_vlan_filter_list *)msg;
2433 valid_len += vfl->num_elements * sizeof(u16);
2434 if (vfl->num_elements == 0)
2435 err_msg_format = true;
2436 }
2437 break;
2438 case I40E_VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE:
2439 valid_len = sizeof(struct i40e_virtchnl_promisc_info);
2440 break;
2441 case I40E_VIRTCHNL_OP_GET_STATS:
2442 valid_len = sizeof(struct i40e_virtchnl_queue_select);
2443 break;
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06002444 case I40E_VIRTCHNL_OP_IWARP:
2445 /* These messages are opaque to us and will be validated in
2446 * the RDMA client code. We just need to check for nonzero
2447 * length. The firmware will enforce max length restrictions.
2448 */
2449 if (msglen)
2450 valid_len = msglen;
2451 else
2452 err_msg_format = true;
2453 break;
2454 case I40E_VIRTCHNL_OP_RELEASE_IWARP_IRQ_MAP:
2455 valid_len = 0;
2456 break;
2457 case I40E_VIRTCHNL_OP_CONFIG_IWARP_IRQ_MAP:
2458 valid_len = sizeof(struct i40e_virtchnl_iwarp_qvlist_info);
2459 if (msglen >= valid_len) {
2460 struct i40e_virtchnl_iwarp_qvlist_info *qv =
2461 (struct i40e_virtchnl_iwarp_qvlist_info *)msg;
2462 if (qv->num_vectors == 0) {
2463 err_msg_format = true;
2464 break;
2465 }
2466 valid_len += ((qv->num_vectors - 1) *
2467 sizeof(struct i40e_virtchnl_iwarp_qv_info));
2468 }
2469 break;
Mitch Williamsc4e18682016-04-12 08:30:40 -07002470 case I40E_VIRTCHNL_OP_CONFIG_RSS_KEY:
2471 valid_len = sizeof(struct i40e_virtchnl_rss_key);
2472 if (msglen >= valid_len) {
2473 struct i40e_virtchnl_rss_key *vrk =
2474 (struct i40e_virtchnl_rss_key *)msg;
2475 if (vrk->key_len != I40E_HKEY_ARRAY_SIZE) {
2476 err_msg_format = true;
2477 break;
2478 }
2479 valid_len += vrk->key_len - 1;
2480 }
2481 break;
2482 case I40E_VIRTCHNL_OP_CONFIG_RSS_LUT:
2483 valid_len = sizeof(struct i40e_virtchnl_rss_lut);
2484 if (msglen >= valid_len) {
2485 struct i40e_virtchnl_rss_lut *vrl =
2486 (struct i40e_virtchnl_rss_lut *)msg;
2487 if (vrl->lut_entries != I40E_VF_HLUT_ARRAY_SIZE) {
2488 err_msg_format = true;
2489 break;
2490 }
2491 valid_len += vrl->lut_entries - 1;
2492 }
2493 break;
2494 case I40E_VIRTCHNL_OP_GET_RSS_HENA_CAPS:
Mitch Williamsc4e18682016-04-12 08:30:40 -07002495 break;
2496 case I40E_VIRTCHNL_OP_SET_RSS_HENA:
2497 valid_len = sizeof(struct i40e_virtchnl_rss_hena);
2498 break;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002499 /* These are always errors coming from the VF. */
2500 case I40E_VIRTCHNL_OP_EVENT:
2501 case I40E_VIRTCHNL_OP_UNKNOWN:
2502 default:
2503 return -EPERM;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002504 }
2505 /* few more checks */
2506 if ((valid_len != msglen) || (err_msg_format)) {
2507 i40e_vc_send_resp_to_vf(vf, v_opcode, I40E_ERR_PARAM);
2508 return -EINVAL;
2509 } else {
2510 return 0;
2511 }
2512}
2513
2514/**
2515 * i40e_vc_process_vf_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002516 * @pf: pointer to the PF structure
2517 * @vf_id: source VF id
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002518 * @msg: pointer to the msg buffer
2519 * @msglen: msg length
2520 * @msghndl: msg handle
2521 *
2522 * called from the common aeq/arq handler to
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002523 * process request from VF
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002524 **/
Jesse Brandeburga1b5a242016-04-13 03:08:29 -07002525int i40e_vc_process_vf_msg(struct i40e_pf *pf, s16 vf_id, u32 v_opcode,
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002526 u32 v_retval, u8 *msg, u16 msglen)
2527{
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002528 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburga1b5a242016-04-13 03:08:29 -07002529 int local_vf_id = vf_id - (s16)hw->func_caps.vf_base_id;
Mitch Williams6c1b5bf2013-11-28 06:39:30 +00002530 struct i40e_vf *vf;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002531 int ret;
2532
2533 pf->vf_aq_requests++;
Mitch Williams7efa84b2013-11-28 06:39:41 +00002534 if (local_vf_id >= pf->num_alloc_vfs)
Mitch Williams6c1b5bf2013-11-28 06:39:30 +00002535 return -EINVAL;
Mitch Williams7efa84b2013-11-28 06:39:41 +00002536 vf = &(pf->vf[local_vf_id]);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002537 /* perform basic checks on the msg */
2538 ret = i40e_vc_validate_vf_msg(vf, v_opcode, v_retval, msg, msglen);
2539
2540 if (ret) {
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002541 dev_err(&pf->pdev->dev, "Invalid message from VF %d, opcode %d, len %d\n",
Mitch Williams7efa84b2013-11-28 06:39:41 +00002542 local_vf_id, v_opcode, msglen);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002543 return ret;
2544 }
Mitch Williamsbae3cae2014-01-14 00:49:49 -08002545
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002546 switch (v_opcode) {
2547 case I40E_VIRTCHNL_OP_VERSION:
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04002548 ret = i40e_vc_get_version_msg(vf, msg);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002549 break;
2550 case I40E_VIRTCHNL_OP_GET_VF_RESOURCES:
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04002551 ret = i40e_vc_get_vf_resources_msg(vf, msg);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002552 break;
2553 case I40E_VIRTCHNL_OP_RESET_VF:
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00002554 i40e_vc_reset_vf_msg(vf);
2555 ret = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002556 break;
2557 case I40E_VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE:
2558 ret = i40e_vc_config_promiscuous_mode_msg(vf, msg, msglen);
2559 break;
2560 case I40E_VIRTCHNL_OP_CONFIG_VSI_QUEUES:
2561 ret = i40e_vc_config_queues_msg(vf, msg, msglen);
2562 break;
2563 case I40E_VIRTCHNL_OP_CONFIG_IRQ_MAP:
2564 ret = i40e_vc_config_irq_map_msg(vf, msg, msglen);
2565 break;
2566 case I40E_VIRTCHNL_OP_ENABLE_QUEUES:
2567 ret = i40e_vc_enable_queues_msg(vf, msg, msglen);
Mitch Williams055b2952015-04-07 19:45:33 -04002568 i40e_vc_notify_vf_link_state(vf);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002569 break;
2570 case I40E_VIRTCHNL_OP_DISABLE_QUEUES:
2571 ret = i40e_vc_disable_queues_msg(vf, msg, msglen);
2572 break;
2573 case I40E_VIRTCHNL_OP_ADD_ETHER_ADDRESS:
2574 ret = i40e_vc_add_mac_addr_msg(vf, msg, msglen);
2575 break;
2576 case I40E_VIRTCHNL_OP_DEL_ETHER_ADDRESS:
2577 ret = i40e_vc_del_mac_addr_msg(vf, msg, msglen);
2578 break;
2579 case I40E_VIRTCHNL_OP_ADD_VLAN:
2580 ret = i40e_vc_add_vlan_msg(vf, msg, msglen);
2581 break;
2582 case I40E_VIRTCHNL_OP_DEL_VLAN:
2583 ret = i40e_vc_remove_vlan_msg(vf, msg, msglen);
2584 break;
2585 case I40E_VIRTCHNL_OP_GET_STATS:
2586 ret = i40e_vc_get_stats_msg(vf, msg, msglen);
2587 break;
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06002588 case I40E_VIRTCHNL_OP_IWARP:
2589 ret = i40e_vc_iwarp_msg(vf, msg, msglen);
2590 break;
2591 case I40E_VIRTCHNL_OP_CONFIG_IWARP_IRQ_MAP:
2592 ret = i40e_vc_iwarp_qvmap_msg(vf, msg, msglen, true);
2593 break;
2594 case I40E_VIRTCHNL_OP_RELEASE_IWARP_IRQ_MAP:
2595 ret = i40e_vc_iwarp_qvmap_msg(vf, msg, msglen, false);
2596 break;
Mitch Williamsc4e18682016-04-12 08:30:40 -07002597 case I40E_VIRTCHNL_OP_CONFIG_RSS_KEY:
2598 ret = i40e_vc_config_rss_key(vf, msg, msglen);
2599 break;
2600 case I40E_VIRTCHNL_OP_CONFIG_RSS_LUT:
2601 ret = i40e_vc_config_rss_lut(vf, msg, msglen);
2602 break;
2603 case I40E_VIRTCHNL_OP_GET_RSS_HENA_CAPS:
2604 ret = i40e_vc_get_rss_hena(vf, msg, msglen);
2605 break;
2606 case I40E_VIRTCHNL_OP_SET_RSS_HENA:
2607 ret = i40e_vc_set_rss_hena(vf, msg, msglen);
2608 break;
2609
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002610 case I40E_VIRTCHNL_OP_UNKNOWN:
2611 default:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002612 dev_err(&pf->pdev->dev, "Unsupported opcode %d from VF %d\n",
Mitch Williams7efa84b2013-11-28 06:39:41 +00002613 v_opcode, local_vf_id);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002614 ret = i40e_vc_send_resp_to_vf(vf, v_opcode,
2615 I40E_ERR_NOT_IMPLEMENTED);
2616 break;
2617 }
2618
2619 return ret;
2620}
2621
2622/**
2623 * i40e_vc_process_vflr_event
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002624 * @pf: pointer to the PF structure
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002625 *
2626 * called from the vlfr irq handler to
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002627 * free up VF resources and state variables
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002628 **/
2629int i40e_vc_process_vflr_event(struct i40e_pf *pf)
2630{
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002631 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburga1b5a242016-04-13 03:08:29 -07002632 u32 reg, reg_idx, bit_idx;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002633 struct i40e_vf *vf;
Jesse Brandeburga1b5a242016-04-13 03:08:29 -07002634 int vf_id;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002635
2636 if (!test_bit(__I40E_VFLR_EVENT_PENDING, &pf->state))
2637 return 0;
2638
Mitch Williams0d790322016-01-15 14:33:17 -08002639 /* Re-enable the VFLR interrupt cause here, before looking for which
2640 * VF got reset. Otherwise, if another VF gets a reset while the
2641 * first one is being processed, that interrupt will be lost, and
2642 * that VF will be stuck in reset forever.
2643 */
Mitch Williamsc5c2f7c2014-11-11 03:15:04 +00002644 reg = rd32(hw, I40E_PFINT_ICR0_ENA);
2645 reg |= I40E_PFINT_ICR0_ENA_VFLR_MASK;
2646 wr32(hw, I40E_PFINT_ICR0_ENA, reg);
2647 i40e_flush(hw);
2648
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002649 clear_bit(__I40E_VFLR_EVENT_PENDING, &pf->state);
2650 for (vf_id = 0; vf_id < pf->num_alloc_vfs; vf_id++) {
2651 reg_idx = (hw->func_caps.vf_base_id + vf_id) / 32;
2652 bit_idx = (hw->func_caps.vf_base_id + vf_id) % 32;
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002653 /* read GLGEN_VFLRSTAT register to find out the flr VFs */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002654 vf = &pf->vf[vf_id];
2655 reg = rd32(hw, I40E_GLGEN_VFLRSTAT(reg_idx));
Mitch Williams7369ca82016-03-18 12:18:09 -07002656 if (reg & BIT(bit_idx))
Mitch Williams7e5a3132016-03-10 14:59:47 -08002657 /* i40e_reset_vf will clear the bit in GLGEN_VFLRSTAT */
Mitch Williams7369ca82016-03-18 12:18:09 -07002658 i40e_reset_vf(vf, true);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002659 }
2660
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002661 return 0;
2662}
2663
2664/**
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002665 * i40e_ndo_set_vf_mac
2666 * @netdev: network interface device structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002667 * @vf_id: VF identifier
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002668 * @mac: mac address
2669 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002670 * program VF mac address
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002671 **/
2672int i40e_ndo_set_vf_mac(struct net_device *netdev, int vf_id, u8 *mac)
2673{
2674 struct i40e_netdev_priv *np = netdev_priv(netdev);
2675 struct i40e_vsi *vsi = np->vsi;
2676 struct i40e_pf *pf = vsi->back;
2677 struct i40e_mac_filter *f;
2678 struct i40e_vf *vf;
2679 int ret = 0;
2680
2681 /* validate the request */
2682 if (vf_id >= pf->num_alloc_vfs) {
2683 dev_err(&pf->pdev->dev,
2684 "Invalid VF Identifier %d\n", vf_id);
2685 ret = -EINVAL;
2686 goto error_param;
2687 }
2688
2689 vf = &(pf->vf[vf_id]);
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07002690 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002691 if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
Mitch Williams2d166c32015-12-22 15:34:42 -08002692 dev_err(&pf->pdev->dev, "VF %d still in reset. Try again.\n",
2693 vf_id);
2694 ret = -EAGAIN;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002695 goto error_param;
2696 }
2697
Mitch Williamsefd8e392015-12-22 15:34:43 -08002698 if (is_multicast_ether_addr(mac)) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002699 dev_err(&pf->pdev->dev,
Mitch Williamsefd8e392015-12-22 15:34:43 -08002700 "Invalid Ethernet address %pM for VF %d\n", mac, vf_id);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002701 ret = -EINVAL;
2702 goto error_param;
2703 }
2704
Kiran Patil21659032015-09-30 14:09:03 -04002705 /* Lock once because below invoked function add/del_filter requires
2706 * mac_filter_list_lock to be held
2707 */
2708 spin_lock_bh(&vsi->mac_filter_list_lock);
2709
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002710 /* delete the temporary mac address */
Mitch Williamsefd8e392015-12-22 15:34:43 -08002711 if (!is_zero_ether_addr(vf->default_lan_addr.addr))
2712 i40e_del_filter(vsi, vf->default_lan_addr.addr,
2713 vf->port_vlan_id ? vf->port_vlan_id : -1,
2714 true, false);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002715
Greg Rose29f71bb2014-05-20 08:01:45 +00002716 /* Delete all the filters for this VSI - we're going to kill it
2717 * anyway.
2718 */
2719 list_for_each_entry(f, &vsi->mac_filter_list, list)
2720 i40e_del_filter(vsi, f->macaddr, f->vlan, true, false);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002721
Kiran Patil21659032015-09-30 14:09:03 -04002722 spin_unlock_bh(&vsi->mac_filter_list_lock);
2723
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002724 dev_info(&pf->pdev->dev, "Setting MAC %pM on VF %d\n", mac, vf_id);
2725 /* program mac filter */
Jesse Brandeburg17652c62015-11-05 17:01:02 -08002726 if (i40e_sync_vsi_filters(vsi)) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002727 dev_err(&pf->pdev->dev, "Unable to program ucast filters\n");
2728 ret = -EIO;
2729 goto error_param;
2730 }
Greg Rose9a173902014-05-22 06:32:02 +00002731 ether_addr_copy(vf->default_lan_addr.addr, mac);
Greg Rosef657a6e2013-11-28 06:39:42 +00002732 vf->pf_set_mac = true;
Greg Rose17413a82014-06-04 01:23:13 +00002733 /* Force the VF driver stop so it has to reload with new MAC address */
2734 i40e_vc_disable_vf(pf, vf);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002735 dev_info(&pf->pdev->dev, "Reload the VF driver to make this change effective.\n");
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002736
2737error_param:
2738 return ret;
2739}
2740
2741/**
2742 * i40e_ndo_set_vf_port_vlan
2743 * @netdev: network interface device structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002744 * @vf_id: VF identifier
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002745 * @vlan_id: mac address
2746 * @qos: priority setting
2747 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002748 * program VF vlan id and/or qos
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002749 **/
2750int i40e_ndo_set_vf_port_vlan(struct net_device *netdev,
2751 int vf_id, u16 vlan_id, u8 qos)
2752{
Mitch Williamsf7fc2f22015-07-23 16:54:36 -04002753 u16 vlanprio = vlan_id | (qos << I40E_VLAN_PRIORITY_SHIFT);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002754 struct i40e_netdev_priv *np = netdev_priv(netdev);
2755 struct i40e_pf *pf = np->vsi->back;
Kiran Patil21659032015-09-30 14:09:03 -04002756 bool is_vsi_in_vlan = false;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002757 struct i40e_vsi *vsi;
2758 struct i40e_vf *vf;
2759 int ret = 0;
2760
2761 /* validate the request */
2762 if (vf_id >= pf->num_alloc_vfs) {
2763 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d\n", vf_id);
2764 ret = -EINVAL;
2765 goto error_pvid;
2766 }
2767
2768 if ((vlan_id > I40E_MAX_VLANID) || (qos > 7)) {
2769 dev_err(&pf->pdev->dev, "Invalid VF Parameters\n");
2770 ret = -EINVAL;
2771 goto error_pvid;
2772 }
2773
2774 vf = &(pf->vf[vf_id]);
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07002775 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002776 if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
Mitch Williams2d166c32015-12-22 15:34:42 -08002777 dev_err(&pf->pdev->dev, "VF %d still in reset. Try again.\n",
2778 vf_id);
2779 ret = -EAGAIN;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002780 goto error_pvid;
2781 }
2782
Mitch Williamsf7fc2f22015-07-23 16:54:36 -04002783 if (le16_to_cpu(vsi->info.pvid) == vlanprio)
Mitch Williams85927ec2015-04-27 14:57:10 -04002784 /* duplicate request, so just return success */
2785 goto error_pvid;
2786
Kiran Patil21659032015-09-30 14:09:03 -04002787 spin_lock_bh(&vsi->mac_filter_list_lock);
2788 is_vsi_in_vlan = i40e_is_vsi_in_vlan(vsi);
2789 spin_unlock_bh(&vsi->mac_filter_list_lock);
2790
2791 if (le16_to_cpu(vsi->info.pvid) == 0 && is_vsi_in_vlan) {
Greg Rose99a49732014-01-13 16:13:03 -08002792 dev_err(&pf->pdev->dev,
2793 "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",
2794 vf_id);
Greg Rosef9b4b622014-03-06 09:02:28 +00002795 /* Administrator Error - knock the VF offline until he does
2796 * the right thing by reconfiguring his network correctly
2797 * and then reloading the VF driver.
2798 */
2799 i40e_vc_disable_vf(pf, vf);
Mitch Williams35f34722016-02-17 16:12:23 -08002800 /* During reset the VF got a new VSI, so refresh the pointer. */
2801 vsi = pf->vsi[vf->lan_vsi_idx];
Greg Rosef9b4b622014-03-06 09:02:28 +00002802 }
Greg Rose99a49732014-01-13 16:13:03 -08002803
Greg Rose8d82a7c2014-01-13 16:13:04 -08002804 /* Check for condition where there was already a port VLAN ID
2805 * filter set and now it is being deleted by setting it to zero.
Greg Rose1315f7c2014-03-14 07:32:20 +00002806 * Additionally check for the condition where there was a port
2807 * VLAN but now there is a new and different port VLAN being set.
Greg Rose8d82a7c2014-01-13 16:13:04 -08002808 * Before deleting all the old VLAN filters we must add new ones
2809 * with -1 (I40E_VLAN_ANY) or otherwise we're left with all our
2810 * MAC addresses deleted.
2811 */
Greg Rose1315f7c2014-03-14 07:32:20 +00002812 if ((!(vlan_id || qos) ||
Mitch Williamsf7fc2f22015-07-23 16:54:36 -04002813 vlanprio != le16_to_cpu(vsi->info.pvid)) &&
Greg Rose1315f7c2014-03-14 07:32:20 +00002814 vsi->info.pvid)
Greg Rose8d82a7c2014-01-13 16:13:04 -08002815 ret = i40e_vsi_add_vlan(vsi, I40E_VLAN_ANY);
2816
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002817 if (vsi->info.pvid) {
2818 /* kill old VLAN */
2819 ret = i40e_vsi_kill_vlan(vsi, (le16_to_cpu(vsi->info.pvid) &
2820 VLAN_VID_MASK));
2821 if (ret) {
2822 dev_info(&vsi->back->pdev->dev,
2823 "remove VLAN failed, ret=%d, aq_err=%d\n",
2824 ret, pf->hw.aq.asq_last_status);
2825 }
2826 }
2827 if (vlan_id || qos)
Mitch Williamsf7fc2f22015-07-23 16:54:36 -04002828 ret = i40e_vsi_add_pvid(vsi, vlanprio);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002829 else
Greg Rose6c12fcb2013-11-28 06:39:34 +00002830 i40e_vsi_remove_pvid(vsi);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002831
2832 if (vlan_id) {
2833 dev_info(&pf->pdev->dev, "Setting VLAN %d, QOS 0x%x on VF %d\n",
2834 vlan_id, qos, vf_id);
2835
2836 /* add new VLAN filter */
2837 ret = i40e_vsi_add_vlan(vsi, vlan_id);
2838 if (ret) {
2839 dev_info(&vsi->back->pdev->dev,
2840 "add VF VLAN failed, ret=%d aq_err=%d\n", ret,
2841 vsi->back->hw.aq.asq_last_status);
2842 goto error_pvid;
2843 }
Greg Rose8d82a7c2014-01-13 16:13:04 -08002844 /* Kill non-vlan MAC filters - ignore error return since
2845 * there might not be any non-vlan MAC filters.
2846 */
2847 i40e_vsi_kill_vlan(vsi, I40E_VLAN_ANY);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002848 }
2849
2850 if (ret) {
2851 dev_err(&pf->pdev->dev, "Unable to update VF vsi context\n");
2852 goto error_pvid;
2853 }
Greg Rose6c12fcb2013-11-28 06:39:34 +00002854 /* The Port VLAN needs to be saved across resets the same as the
2855 * default LAN MAC address.
2856 */
2857 vf->port_vlan_id = le16_to_cpu(vsi->info.pvid);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002858 ret = 0;
2859
2860error_pvid:
2861 return ret;
2862}
2863
Mitch Williams84590fd2014-04-09 05:58:57 +00002864#define I40E_BW_CREDIT_DIVISOR 50 /* 50Mbps per BW credit */
2865#define I40E_MAX_BW_INACTIVE_ACCUM 4 /* device can accumulate 4 credits max */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002866/**
2867 * i40e_ndo_set_vf_bw
2868 * @netdev: network interface device structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002869 * @vf_id: VF identifier
2870 * @tx_rate: Tx rate
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002871 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002872 * configure VF Tx rate
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002873 **/
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002874int i40e_ndo_set_vf_bw(struct net_device *netdev, int vf_id, int min_tx_rate,
2875 int max_tx_rate)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002876{
Mitch Williams6b192892014-03-06 09:02:29 +00002877 struct i40e_netdev_priv *np = netdev_priv(netdev);
2878 struct i40e_pf *pf = np->vsi->back;
2879 struct i40e_vsi *vsi;
2880 struct i40e_vf *vf;
2881 int speed = 0;
2882 int ret = 0;
2883
2884 /* validate the request */
2885 if (vf_id >= pf->num_alloc_vfs) {
2886 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d.\n", vf_id);
2887 ret = -EINVAL;
2888 goto error;
2889 }
2890
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002891 if (min_tx_rate) {
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002892 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 -04002893 min_tx_rate, vf_id);
2894 return -EINVAL;
2895 }
2896
Mitch Williams6b192892014-03-06 09:02:29 +00002897 vf = &(pf->vf[vf_id]);
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07002898 vsi = pf->vsi[vf->lan_vsi_idx];
Mitch Williams6b192892014-03-06 09:02:29 +00002899 if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
Mitch Williams2d166c32015-12-22 15:34:42 -08002900 dev_err(&pf->pdev->dev, "VF %d still in reset. Try again.\n",
2901 vf_id);
2902 ret = -EAGAIN;
Mitch Williams6b192892014-03-06 09:02:29 +00002903 goto error;
2904 }
2905
2906 switch (pf->hw.phy.link_info.link_speed) {
2907 case I40E_LINK_SPEED_40GB:
2908 speed = 40000;
2909 break;
Mitch Williams07f169c2015-12-23 12:05:49 -08002910 case I40E_LINK_SPEED_20GB:
2911 speed = 20000;
2912 break;
Mitch Williams6b192892014-03-06 09:02:29 +00002913 case I40E_LINK_SPEED_10GB:
2914 speed = 10000;
2915 break;
2916 case I40E_LINK_SPEED_1GB:
2917 speed = 1000;
2918 break;
2919 default:
2920 break;
2921 }
2922
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002923 if (max_tx_rate > speed) {
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002924 dev_err(&pf->pdev->dev, "Invalid max tx rate %d specified for VF %d.",
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002925 max_tx_rate, vf->vf_id);
Mitch Williams6b192892014-03-06 09:02:29 +00002926 ret = -EINVAL;
2927 goto error;
2928 }
2929
Mitch Williamsdac9b312014-04-09 05:58:56 +00002930 if ((max_tx_rate < 50) && (max_tx_rate > 0)) {
2931 dev_warn(&pf->pdev->dev, "Setting max Tx rate to minimum usable value of 50Mbps.\n");
2932 max_tx_rate = 50;
2933 }
2934
Mitch Williams6b192892014-03-06 09:02:29 +00002935 /* Tx rate credits are in values of 50Mbps, 0 is disabled*/
Mitch Williams84590fd2014-04-09 05:58:57 +00002936 ret = i40e_aq_config_vsi_bw_limit(&pf->hw, vsi->seid,
2937 max_tx_rate / I40E_BW_CREDIT_DIVISOR,
2938 I40E_MAX_BW_INACTIVE_ACCUM, NULL);
Mitch Williams6b192892014-03-06 09:02:29 +00002939 if (ret) {
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002940 dev_err(&pf->pdev->dev, "Unable to set max tx rate, error code %d.\n",
Mitch Williams6b192892014-03-06 09:02:29 +00002941 ret);
2942 ret = -EIO;
2943 goto error;
2944 }
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002945 vf->tx_rate = max_tx_rate;
Mitch Williams6b192892014-03-06 09:02:29 +00002946error:
2947 return ret;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002948}
2949
2950/**
2951 * i40e_ndo_get_vf_config
2952 * @netdev: network interface device structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002953 * @vf_id: VF identifier
2954 * @ivi: VF configuration structure
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002955 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002956 * return VF configuration
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002957 **/
2958int i40e_ndo_get_vf_config(struct net_device *netdev,
2959 int vf_id, struct ifla_vf_info *ivi)
2960{
2961 struct i40e_netdev_priv *np = netdev_priv(netdev);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002962 struct i40e_vsi *vsi = np->vsi;
2963 struct i40e_pf *pf = vsi->back;
2964 struct i40e_vf *vf;
2965 int ret = 0;
2966
2967 /* validate the request */
2968 if (vf_id >= pf->num_alloc_vfs) {
2969 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d\n", vf_id);
2970 ret = -EINVAL;
2971 goto error_param;
2972 }
2973
2974 vf = &(pf->vf[vf_id]);
2975 /* first vsi is always the LAN vsi */
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07002976 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002977 if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
Mitch Williams2d166c32015-12-22 15:34:42 -08002978 dev_err(&pf->pdev->dev, "VF %d still in reset. Try again.\n",
2979 vf_id);
2980 ret = -EAGAIN;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002981 goto error_param;
2982 }
2983
2984 ivi->vf = vf_id;
2985
Jesse Brandeburg6995b362015-08-28 17:55:54 -04002986 ether_addr_copy(ivi->mac, vf->default_lan_addr.addr);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002987
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002988 ivi->max_tx_rate = vf->tx_rate;
2989 ivi->min_tx_rate = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002990 ivi->vlan = le16_to_cpu(vsi->info.pvid) & I40E_VLAN_MASK;
2991 ivi->qos = (le16_to_cpu(vsi->info.pvid) & I40E_PRIORITY_MASK) >>
2992 I40E_VLAN_PRIORITY_SHIFT;
Mitch Williams84ca55a2014-03-14 07:32:24 +00002993 if (vf->link_forced == false)
2994 ivi->linkstate = IFLA_VF_LINK_STATE_AUTO;
2995 else if (vf->link_up == true)
2996 ivi->linkstate = IFLA_VF_LINK_STATE_ENABLE;
2997 else
2998 ivi->linkstate = IFLA_VF_LINK_STATE_DISABLE;
Mitch Williamsc674d122014-05-20 08:01:40 +00002999 ivi->spoofchk = vf->spoofchk;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00003000 ret = 0;
3001
3002error_param:
3003 return ret;
3004}
Mitch Williams588aefa2014-02-11 08:27:49 +00003005
3006/**
3007 * i40e_ndo_set_vf_link_state
3008 * @netdev: network interface device structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00003009 * @vf_id: VF identifier
Mitch Williams588aefa2014-02-11 08:27:49 +00003010 * @link: required link state
3011 *
3012 * Set the link state of a specified VF, regardless of physical link state
3013 **/
3014int i40e_ndo_set_vf_link_state(struct net_device *netdev, int vf_id, int link)
3015{
3016 struct i40e_netdev_priv *np = netdev_priv(netdev);
3017 struct i40e_pf *pf = np->vsi->back;
3018 struct i40e_virtchnl_pf_event pfe;
3019 struct i40e_hw *hw = &pf->hw;
3020 struct i40e_vf *vf;
Ashish Shahf19efbb2014-08-01 13:27:06 -07003021 int abs_vf_id;
Mitch Williams588aefa2014-02-11 08:27:49 +00003022 int ret = 0;
3023
3024 /* validate the request */
3025 if (vf_id >= pf->num_alloc_vfs) {
3026 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d\n", vf_id);
3027 ret = -EINVAL;
3028 goto error_out;
3029 }
3030
3031 vf = &pf->vf[vf_id];
Ashish Shahf19efbb2014-08-01 13:27:06 -07003032 abs_vf_id = vf->vf_id + hw->func_caps.vf_base_id;
Mitch Williams588aefa2014-02-11 08:27:49 +00003033
3034 pfe.event = I40E_VIRTCHNL_EVENT_LINK_CHANGE;
3035 pfe.severity = I40E_PF_EVENT_SEVERITY_INFO;
3036
3037 switch (link) {
3038 case IFLA_VF_LINK_STATE_AUTO:
3039 vf->link_forced = false;
3040 pfe.event_data.link_event.link_status =
3041 pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP;
3042 pfe.event_data.link_event.link_speed =
3043 pf->hw.phy.link_info.link_speed;
3044 break;
3045 case IFLA_VF_LINK_STATE_ENABLE:
3046 vf->link_forced = true;
3047 vf->link_up = true;
3048 pfe.event_data.link_event.link_status = true;
3049 pfe.event_data.link_event.link_speed = I40E_LINK_SPEED_40GB;
3050 break;
3051 case IFLA_VF_LINK_STATE_DISABLE:
3052 vf->link_forced = true;
3053 vf->link_up = false;
3054 pfe.event_data.link_event.link_status = false;
3055 pfe.event_data.link_event.link_speed = 0;
3056 break;
3057 default:
3058 ret = -EINVAL;
3059 goto error_out;
3060 }
3061 /* Notify the VF of its new link state */
Ashish Shahf19efbb2014-08-01 13:27:06 -07003062 i40e_aq_send_msg_to_vf(hw, abs_vf_id, I40E_VIRTCHNL_OP_EVENT,
Mitch Williams588aefa2014-02-11 08:27:49 +00003063 0, (u8 *)&pfe, sizeof(pfe), NULL);
3064
3065error_out:
3066 return ret;
3067}
Mitch Williamsc674d122014-05-20 08:01:40 +00003068
3069/**
3070 * i40e_ndo_set_vf_spoofchk
3071 * @netdev: network interface device structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00003072 * @vf_id: VF identifier
Mitch Williamsc674d122014-05-20 08:01:40 +00003073 * @enable: flag to enable or disable feature
3074 *
3075 * Enable or disable VF spoof checking
3076 **/
Serey Konge6d90042014-07-12 07:28:14 +00003077int i40e_ndo_set_vf_spoofchk(struct net_device *netdev, int vf_id, bool enable)
Mitch Williamsc674d122014-05-20 08:01:40 +00003078{
3079 struct i40e_netdev_priv *np = netdev_priv(netdev);
3080 struct i40e_vsi *vsi = np->vsi;
3081 struct i40e_pf *pf = vsi->back;
3082 struct i40e_vsi_context ctxt;
3083 struct i40e_hw *hw = &pf->hw;
3084 struct i40e_vf *vf;
3085 int ret = 0;
3086
3087 /* validate the request */
3088 if (vf_id >= pf->num_alloc_vfs) {
3089 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d\n", vf_id);
3090 ret = -EINVAL;
3091 goto out;
3092 }
3093
3094 vf = &(pf->vf[vf_id]);
Mitch Williams2d166c32015-12-22 15:34:42 -08003095 if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
3096 dev_err(&pf->pdev->dev, "VF %d still in reset. Try again.\n",
3097 vf_id);
3098 ret = -EAGAIN;
3099 goto out;
3100 }
Mitch Williamsc674d122014-05-20 08:01:40 +00003101
3102 if (enable == vf->spoofchk)
3103 goto out;
3104
3105 vf->spoofchk = enable;
3106 memset(&ctxt, 0, sizeof(ctxt));
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07003107 ctxt.seid = pf->vsi[vf->lan_vsi_idx]->seid;
Mitch Williamsc674d122014-05-20 08:01:40 +00003108 ctxt.pf_num = pf->hw.pf_id;
3109 ctxt.info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID);
3110 if (enable)
Greg Rose30d71af2015-01-29 07:17:17 +00003111 ctxt.info.sec_flags |= (I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK |
3112 I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK);
Mitch Williamsc674d122014-05-20 08:01:40 +00003113 ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL);
3114 if (ret) {
3115 dev_err(&pf->pdev->dev, "Error %d updating VSI parameters\n",
3116 ret);
3117 ret = -EIO;
3118 }
3119out:
3120 return ret;
3121}
Anjali Singhai Jainc3bbbd22016-04-01 03:56:07 -07003122
3123/**
3124 * i40e_ndo_set_vf_trust
3125 * @netdev: network interface device structure of the pf
3126 * @vf_id: VF identifier
3127 * @setting: trust setting
3128 *
3129 * Enable or disable VF trust setting
3130 **/
3131int i40e_ndo_set_vf_trust(struct net_device *netdev, int vf_id, bool setting)
3132{
3133 struct i40e_netdev_priv *np = netdev_priv(netdev);
3134 struct i40e_pf *pf = np->vsi->back;
3135 struct i40e_vf *vf;
3136 int ret = 0;
3137
3138 /* validate the request */
3139 if (vf_id >= pf->num_alloc_vfs) {
3140 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d\n", vf_id);
3141 return -EINVAL;
3142 }
3143
3144 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
3145 dev_err(&pf->pdev->dev, "Trusted VF not supported in MFP mode.\n");
3146 return -EINVAL;
3147 }
3148
3149 vf = &pf->vf[vf_id];
3150
3151 if (!vf)
3152 return -EINVAL;
3153 if (setting == vf->trusted)
3154 goto out;
3155
3156 vf->trusted = setting;
3157 i40e_vc_notify_vf_reset(vf);
3158 i40e_reset_vf(vf, false);
3159 dev_info(&pf->pdev->dev, "VF %u is now %strusted\n",
3160 vf_id, setting ? "" : "un");
3161out:
3162 return ret;
3163}