blob: 6fcbf764f32bc942866ba10740ccfbc0df92f6f9 [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) {
Mitch Williamsbb3607172016-05-16 10:26:33 -0700668 u64 hena = i40e_pf_get_default_rss_hena(pf);
669
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 }
Kiran Patil21659032015-09-30 14:09:03 -0400691 spin_unlock_bh(&vsi->mac_filter_list_lock);
Mitch Williamsbb3607172016-05-16 10:26:33 -0700692 i40e_write_rx_ctl(&pf->hw, I40E_VFQF_HENA1(0, vf->vf_id),
693 (u32)hena);
694 i40e_write_rx_ctl(&pf->hw, I40E_VFQF_HENA1(1, vf->vf_id),
695 (u32)(hena >> 32));
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000696 }
Neerav Parikh6dbbbfb2013-11-26 10:49:24 +0000697
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000698 /* program mac filter */
Jesse Brandeburg17652c62015-11-05 17:01:02 -0800699 ret = i40e_sync_vsi_filters(vsi);
Mitch Williamsfd1646e2014-02-13 03:48:44 -0800700 if (ret)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000701 dev_err(&pf->pdev->dev, "Unable to program ucast filters\n");
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000702
Mitch Williams6b192892014-03-06 09:02:29 +0000703 /* Set VF bandwidth if specified */
704 if (vf->tx_rate) {
705 ret = i40e_aq_config_vsi_bw_limit(&pf->hw, vsi->seid,
706 vf->tx_rate / 50, 0, NULL);
707 if (ret)
708 dev_err(&pf->pdev->dev, "Unable to set tx rate, VF %d, error code %d.\n",
709 vf->vf_id, ret);
710 }
711
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000712error_alloc_vsi_res:
713 return ret;
714}
715
716/**
Mitch Williams805bd5b2013-11-28 06:39:26 +0000717 * i40e_enable_vf_mappings
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000718 * @vf: pointer to the VF info
Mitch Williams805bd5b2013-11-28 06:39:26 +0000719 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000720 * enable VF mappings
Mitch Williams805bd5b2013-11-28 06:39:26 +0000721 **/
722static void i40e_enable_vf_mappings(struct i40e_vf *vf)
723{
724 struct i40e_pf *pf = vf->pf;
725 struct i40e_hw *hw = &pf->hw;
726 u32 reg, total_queue_pairs = 0;
727 int j;
728
729 /* Tell the hardware we're using noncontiguous mapping. HW requires
730 * that VF queues be mapped using this method, even when they are
731 * contiguous in real life
732 */
Shannon Nelson272cdaf22016-02-17 16:12:21 -0800733 i40e_write_rx_ctl(hw, I40E_VSILAN_QBASE(vf->lan_vsi_id),
734 I40E_VSILAN_QBASE_VSIQTABLE_ENA_MASK);
Mitch Williams805bd5b2013-11-28 06:39:26 +0000735
736 /* enable VF vplan_qtable mappings */
737 reg = I40E_VPLAN_MAPENA_TXRX_ENA_MASK;
738 wr32(hw, I40E_VPLAN_MAPENA(vf->vf_id), reg);
739
740 /* map PF queues to VF queues */
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700741 for (j = 0; j < pf->vsi[vf->lan_vsi_idx]->alloc_queue_pairs; j++) {
742 u16 qid = i40e_vc_get_pf_queue_id(vf, vf->lan_vsi_id, j);
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400743
Mitch Williams805bd5b2013-11-28 06:39:26 +0000744 reg = (qid & I40E_VPLAN_QTABLE_QINDEX_MASK);
745 wr32(hw, I40E_VPLAN_QTABLE(total_queue_pairs, vf->vf_id), reg);
746 total_queue_pairs++;
747 }
748
749 /* map PF queues to VSI */
750 for (j = 0; j < 7; j++) {
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700751 if (j * 2 >= pf->vsi[vf->lan_vsi_idx]->alloc_queue_pairs) {
Mitch Williams805bd5b2013-11-28 06:39:26 +0000752 reg = 0x07FF07FF; /* unused */
753 } else {
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700754 u16 qid = i40e_vc_get_pf_queue_id(vf, vf->lan_vsi_id,
Mitch Williams805bd5b2013-11-28 06:39:26 +0000755 j * 2);
756 reg = qid;
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700757 qid = i40e_vc_get_pf_queue_id(vf, vf->lan_vsi_id,
Mitch Williams805bd5b2013-11-28 06:39:26 +0000758 (j * 2) + 1);
759 reg |= qid << 16;
760 }
Shannon Nelson272cdaf22016-02-17 16:12:21 -0800761 i40e_write_rx_ctl(hw, I40E_VSILAN_QTABLE(j, vf->lan_vsi_id),
762 reg);
Mitch Williams805bd5b2013-11-28 06:39:26 +0000763 }
764
765 i40e_flush(hw);
766}
767
768/**
769 * i40e_disable_vf_mappings
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000770 * @vf: pointer to the VF info
Mitch Williams805bd5b2013-11-28 06:39:26 +0000771 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000772 * disable VF mappings
Mitch Williams805bd5b2013-11-28 06:39:26 +0000773 **/
774static void i40e_disable_vf_mappings(struct i40e_vf *vf)
775{
776 struct i40e_pf *pf = vf->pf;
777 struct i40e_hw *hw = &pf->hw;
778 int i;
779
780 /* disable qp mappings */
781 wr32(hw, I40E_VPLAN_MAPENA(vf->vf_id), 0);
782 for (i = 0; i < I40E_MAX_VSI_QP; i++)
783 wr32(hw, I40E_VPLAN_QTABLE(i, vf->vf_id),
784 I40E_QUEUE_END_OF_LIST);
785 i40e_flush(hw);
786}
787
788/**
789 * i40e_free_vf_res
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000790 * @vf: pointer to the VF info
Mitch Williams805bd5b2013-11-28 06:39:26 +0000791 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000792 * free VF resources
Mitch Williams805bd5b2013-11-28 06:39:26 +0000793 **/
794static void i40e_free_vf_res(struct i40e_vf *vf)
795{
796 struct i40e_pf *pf = vf->pf;
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000797 struct i40e_hw *hw = &pf->hw;
798 u32 reg_idx, reg;
799 int i, msix_vf;
Mitch Williams805bd5b2013-11-28 06:39:26 +0000800
801 /* free vsi & disconnect it from the parent uplink */
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700802 if (vf->lan_vsi_idx) {
803 i40e_vsi_release(pf->vsi[vf->lan_vsi_idx]);
804 vf->lan_vsi_idx = 0;
Mitch Williams805bd5b2013-11-28 06:39:26 +0000805 vf->lan_vsi_id = 0;
806 }
Mitch Williams9347eb72014-02-11 08:26:32 +0000807 msix_vf = pf->hw.func_caps.num_msix_vectors_vf;
808
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000809 /* disable interrupts so the VF starts in a known state */
810 for (i = 0; i < msix_vf; i++) {
811 /* format is same for both registers */
812 if (0 == i)
813 reg_idx = I40E_VFINT_DYN_CTL0(vf->vf_id);
814 else
815 reg_idx = I40E_VFINT_DYN_CTLN(((msix_vf - 1) *
816 (vf->vf_id))
817 + (i - 1));
818 wr32(hw, reg_idx, I40E_VFINT_DYN_CTLN_CLEARPBA_MASK);
819 i40e_flush(hw);
820 }
Mitch Williams805bd5b2013-11-28 06:39:26 +0000821
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000822 /* clear the irq settings */
823 for (i = 0; i < msix_vf; i++) {
824 /* format is same for both registers */
825 if (0 == i)
826 reg_idx = I40E_VPINT_LNKLST0(vf->vf_id);
827 else
828 reg_idx = I40E_VPINT_LNKLSTN(((msix_vf - 1) *
829 (vf->vf_id))
830 + (i - 1));
831 reg = (I40E_VPINT_LNKLSTN_FIRSTQ_TYPE_MASK |
832 I40E_VPINT_LNKLSTN_FIRSTQ_INDX_MASK);
833 wr32(hw, reg_idx, reg);
834 i40e_flush(hw);
835 }
Mitch Williams805bd5b2013-11-28 06:39:26 +0000836 /* reset some of the state varibles keeping
837 * track of the resources
838 */
839 vf->num_queue_pairs = 0;
840 vf->vf_states = 0;
Mitch Williams21be99e2015-08-31 19:54:48 -0400841 clear_bit(I40E_VF_STAT_INIT, &vf->vf_states);
Mitch Williams805bd5b2013-11-28 06:39:26 +0000842}
843
844/**
845 * i40e_alloc_vf_res
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000846 * @vf: pointer to the VF info
Mitch Williams805bd5b2013-11-28 06:39:26 +0000847 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000848 * allocate VF resources
Mitch Williams805bd5b2013-11-28 06:39:26 +0000849 **/
850static int i40e_alloc_vf_res(struct i40e_vf *vf)
851{
852 struct i40e_pf *pf = vf->pf;
853 int total_queue_pairs = 0;
854 int ret;
855
856 /* allocate hw vsi context & associated resources */
857 ret = i40e_alloc_vsi_res(vf, I40E_VSI_SRIOV);
858 if (ret)
859 goto error_alloc;
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700860 total_queue_pairs += pf->vsi[vf->lan_vsi_idx]->alloc_queue_pairs;
Anjali Singhai Jain692fb0a2016-04-13 03:08:21 -0700861
862 if (vf->trusted)
863 set_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps);
864 else
865 clear_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps);
Mitch Williams805bd5b2013-11-28 06:39:26 +0000866
867 /* store the total qps number for the runtime
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000868 * VF req validation
Mitch Williams805bd5b2013-11-28 06:39:26 +0000869 */
870 vf->num_queue_pairs = total_queue_pairs;
871
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000872 /* VF is now completely initialized */
Mitch Williams805bd5b2013-11-28 06:39:26 +0000873 set_bit(I40E_VF_STAT_INIT, &vf->vf_states);
874
875error_alloc:
876 if (ret)
877 i40e_free_vf_res(vf);
878
879 return ret;
880}
881
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000882#define VF_DEVICE_STATUS 0xAA
883#define VF_TRANS_PENDING_MASK 0x20
884/**
885 * i40e_quiesce_vf_pci
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000886 * @vf: pointer to the VF structure
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000887 *
888 * Wait for VF PCI transactions to be cleared after reset. Returns -EIO
889 * if the transactions never clear.
890 **/
891static int i40e_quiesce_vf_pci(struct i40e_vf *vf)
892{
893 struct i40e_pf *pf = vf->pf;
894 struct i40e_hw *hw = &pf->hw;
895 int vf_abs_id, i;
896 u32 reg;
897
Mitch Williamsb141d612013-11-28 06:39:36 +0000898 vf_abs_id = vf->vf_id + hw->func_caps.vf_base_id;
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000899
900 wr32(hw, I40E_PF_PCI_CIAA,
901 VF_DEVICE_STATUS | (vf_abs_id << I40E_PF_PCI_CIAA_VF_NUM_SHIFT));
902 for (i = 0; i < 100; i++) {
903 reg = rd32(hw, I40E_PF_PCI_CIAD);
904 if ((reg & VF_TRANS_PENDING_MASK) == 0)
905 return 0;
906 udelay(1);
907 }
908 return -EIO;
909}
910
Mitch Williams805bd5b2013-11-28 06:39:26 +0000911/**
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000912 * i40e_reset_vf
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000913 * @vf: pointer to the VF structure
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000914 * @flr: VFLR was issued or not
915 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000916 * reset the VF
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000917 **/
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000918void i40e_reset_vf(struct i40e_vf *vf, bool flr)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000919{
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000920 struct i40e_pf *pf = vf->pf;
921 struct i40e_hw *hw = &pf->hw;
Mitch Williams7e5a3132016-03-10 14:59:47 -0800922 u32 reg, reg_idx, bit_idx;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000923 bool rsd = false;
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000924 int i;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000925
Mitch Williams3ba9bcb2015-01-09 11:18:15 +0000926 if (test_and_set_bit(__I40E_VF_DISABLE, &pf->state))
927 return;
928
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000929 /* warn the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000930 clear_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states);
931
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000932 /* In the case of a VFLR, the HW has already reset the VF and we
933 * just need to clean up, so don't hit the VFRTRIG register.
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000934 */
935 if (!flr) {
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000936 /* reset VF using VPGEN_VFRTRIG reg */
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000937 reg = rd32(hw, I40E_VPGEN_VFRTRIG(vf->vf_id));
938 reg |= I40E_VPGEN_VFRTRIG_VFSWR_MASK;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000939 wr32(hw, I40E_VPGEN_VFRTRIG(vf->vf_id), reg);
940 i40e_flush(hw);
941 }
Mitch Williams7369ca82016-03-18 12:18:09 -0700942 /* clear the VFLR bit in GLGEN_VFLRSTAT */
943 reg_idx = (hw->func_caps.vf_base_id + vf->vf_id) / 32;
944 bit_idx = (hw->func_caps.vf_base_id + vf->vf_id) % 32;
945 wr32(hw, I40E_GLGEN_VFLRSTAT(reg_idx), BIT(bit_idx));
Akeem G Abodunrin30728c52016-04-01 03:56:03 -0700946 i40e_flush(hw);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000947
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000948 if (i40e_quiesce_vf_pci(vf))
949 dev_err(&pf->pdev->dev, "VF %d PCI transactions stuck\n",
950 vf->vf_id);
951
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000952 /* poll VPGEN_VFRSTAT reg to make sure
953 * that reset is complete
954 */
Mitch Williams1750a222015-01-09 11:18:13 +0000955 for (i = 0; i < 10; i++) {
956 /* VF reset requires driver to first reset the VF and then
957 * poll the status register to make sure that the reset
958 * completed successfully. Due to internal HW FIFO flushes,
959 * we must wait 10ms before the register will be valid.
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000960 */
Mitch Williams1750a222015-01-09 11:18:13 +0000961 usleep_range(10000, 20000);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000962 reg = rd32(hw, I40E_VPGEN_VFRSTAT(vf->vf_id));
963 if (reg & I40E_VPGEN_VFRSTAT_VFRD_MASK) {
964 rsd = true;
965 break;
966 }
967 }
968
Anjali Singhai Jain57175ac2015-04-07 19:45:35 -0400969 if (flr)
970 usleep_range(10000, 20000);
971
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000972 if (!rsd)
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000973 dev_err(&pf->pdev->dev, "VF reset check timeout on VF %d\n",
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000974 vf->vf_id);
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000975 wr32(hw, I40E_VFGEN_RSTAT1(vf->vf_id), I40E_VFR_COMPLETED);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000976 /* clear the reset bit in the VPGEN_VFRTRIG reg */
977 reg = rd32(hw, I40E_VPGEN_VFRTRIG(vf->vf_id));
978 reg &= ~I40E_VPGEN_VFRTRIG_VFSWR_MASK;
979 wr32(hw, I40E_VPGEN_VFRTRIG(vf->vf_id), reg);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +0000980
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000981 /* On initial reset, we won't have any queues */
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700982 if (vf->lan_vsi_idx == 0)
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000983 goto complete_reset;
984
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700985 i40e_vsi_control_rings(pf->vsi[vf->lan_vsi_idx], false);
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000986complete_reset:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000987 /* reallocate VF resources to reset the VSI state */
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000988 i40e_free_vf_res(vf);
Mitch Williams21be99e2015-08-31 19:54:48 -0400989 if (!i40e_alloc_vf_res(vf)) {
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -0600990 int abs_vf_id = vf->vf_id + hw->func_caps.vf_base_id;
Mitch Williams21be99e2015-08-31 19:54:48 -0400991 i40e_enable_vf_mappings(vf);
992 set_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states);
993 clear_bit(I40E_VF_STAT_DISABLED, &vf->vf_states);
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -0600994 i40e_notify_client_of_vf_reset(pf, abs_vf_id);
Mitch Williams21be99e2015-08-31 19:54:48 -0400995 }
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000996 /* tell the VF the reset is done */
997 wr32(hw, I40E_VFGEN_RSTAT1(vf->vf_id), I40E_VFR_VFACTIVE);
Mitch Williams7e5a3132016-03-10 14:59:47 -0800998
Mitch Williamsfc18eaa2013-11-28 06:39:27 +0000999 i40e_flush(hw);
Mitch Williams3ba9bcb2015-01-09 11:18:15 +00001000 clear_bit(__I40E_VF_DISABLE, &pf->state);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001001}
Greg Rosec3542292013-12-13 08:38:38 +00001002
1003/**
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001004 * i40e_free_vfs
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001005 * @pf: pointer to the PF structure
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001006 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001007 * free VF resources
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001008 **/
1009void i40e_free_vfs(struct i40e_pf *pf)
1010{
Mitch Williamsf7414532013-11-28 06:39:40 +00001011 struct i40e_hw *hw = &pf->hw;
1012 u32 reg_idx, bit_idx;
1013 int i, tmp, vf_id;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001014
1015 if (!pf->vf)
1016 return;
Mitch Williams3ba9bcb2015-01-09 11:18:15 +00001017 while (test_and_set_bit(__I40E_VF_DISABLE, &pf->state))
1018 usleep_range(1000, 2000);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001019
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06001020 i40e_notify_client_of_vf_enable(pf, 0);
Mitch Williams0325fca2015-08-26 15:14:09 -04001021 for (i = 0; i < pf->num_alloc_vfs; i++)
1022 if (test_bit(I40E_VF_STAT_INIT, &pf->vf[i].vf_states))
1023 i40e_vsi_control_rings(pf->vsi[pf->vf[i].lan_vsi_idx],
1024 false);
1025
Mitch A Williams6a9ddb32014-12-09 08:53:01 +00001026 /* Disable IOV before freeing resources. This lets any VF drivers
1027 * running in the host get themselves cleaned up before we yank
1028 * the carpet out from underneath their feet.
1029 */
1030 if (!pci_vfs_assigned(pf->pdev))
1031 pci_disable_sriov(pf->pdev);
Mitch Williams6d7b9672015-03-31 00:45:02 -07001032 else
1033 dev_warn(&pf->pdev->dev, "VFs are assigned - not disabling SR-IOV\n");
Mitch A Williams6a9ddb32014-12-09 08:53:01 +00001034
1035 msleep(20); /* let any messages in transit get finished up */
1036
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001037 /* free up VF resources */
Mitch Williams6c1b5bf2013-11-28 06:39:30 +00001038 tmp = pf->num_alloc_vfs;
1039 pf->num_alloc_vfs = 0;
1040 for (i = 0; i < tmp; i++) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001041 if (test_bit(I40E_VF_STAT_INIT, &pf->vf[i].vf_states))
1042 i40e_free_vf_res(&pf->vf[i]);
1043 /* disable qp mappings */
1044 i40e_disable_vf_mappings(&pf->vf[i]);
1045 }
1046
1047 kfree(pf->vf);
1048 pf->vf = NULL;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001049
Mitch Williams9e5634d2014-04-04 04:43:14 +00001050 /* This check is for when the driver is unloaded while VFs are
1051 * assigned. Setting the number of VFs to 0 through sysfs is caught
1052 * before this function ever gets called.
1053 */
Ethan Zhaoc24817b2014-07-22 18:36:43 +00001054 if (!pci_vfs_assigned(pf->pdev)) {
Mitch Williamsf7414532013-11-28 06:39:40 +00001055 /* Acknowledge VFLR for all VFS. Without this, VFs will fail to
1056 * work correctly when SR-IOV gets re-enabled.
1057 */
1058 for (vf_id = 0; vf_id < tmp; vf_id++) {
1059 reg_idx = (hw->func_caps.vf_base_id + vf_id) / 32;
1060 bit_idx = (hw->func_caps.vf_base_id + vf_id) % 32;
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001061 wr32(hw, I40E_GLGEN_VFLRSTAT(reg_idx), BIT(bit_idx));
Mitch Williamsf7414532013-11-28 06:39:40 +00001062 }
Greg Rosec3542292013-12-13 08:38:38 +00001063 }
Mitch Williams3ba9bcb2015-01-09 11:18:15 +00001064 clear_bit(__I40E_VF_DISABLE, &pf->state);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001065}
1066
1067#ifdef CONFIG_PCI_IOV
1068/**
1069 * i40e_alloc_vfs
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001070 * @pf: pointer to the PF structure
1071 * @num_alloc_vfs: number of VFs to allocate
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001072 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001073 * allocate VF resources
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001074 **/
Mitch Williams4aeec012014-02-13 03:48:47 -08001075int i40e_alloc_vfs(struct i40e_pf *pf, u16 num_alloc_vfs)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001076{
1077 struct i40e_vf *vfs;
1078 int i, ret = 0;
1079
Mitch Williams6c1b5bf2013-11-28 06:39:30 +00001080 /* Disable interrupt 0 so we don't try to handle the VFLR. */
Mitch Williams2ef28cf2013-11-28 06:39:32 +00001081 i40e_irq_dynamic_disable_icr0(pf);
1082
Mitch Williams4aeec012014-02-13 03:48:47 -08001083 /* Check to see if we're just allocating resources for extant VFs */
1084 if (pci_num_vf(pf->pdev) != num_alloc_vfs) {
1085 ret = pci_enable_sriov(pf->pdev, num_alloc_vfs);
1086 if (ret) {
Akeem G Abodunrinde445b32015-10-01 14:37:40 -04001087 pf->flags &= ~I40E_FLAG_VEB_MODE_ENABLED;
Mitch Williams4aeec012014-02-13 03:48:47 -08001088 pf->num_alloc_vfs = 0;
1089 goto err_iov;
1090 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001091 }
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06001092 i40e_notify_client_of_vf_enable(pf, num_alloc_vfs);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001093 /* allocate memory */
Akeem G Abodunrincc6456a2014-02-06 05:51:02 +00001094 vfs = kcalloc(num_alloc_vfs, sizeof(struct i40e_vf), GFP_KERNEL);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001095 if (!vfs) {
1096 ret = -ENOMEM;
1097 goto err_alloc;
1098 }
Mitch Williamsc674d122014-05-20 08:01:40 +00001099 pf->vf = vfs;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001100
1101 /* apply default profile */
1102 for (i = 0; i < num_alloc_vfs; i++) {
1103 vfs[i].pf = pf;
1104 vfs[i].parent_type = I40E_SWITCH_ELEMENT_TYPE_VEB;
1105 vfs[i].vf_id = i;
1106
1107 /* assign default capabilities */
1108 set_bit(I40E_VIRTCHNL_VF_CAP_L2, &vfs[i].vf_caps);
Mitch Williamsc674d122014-05-20 08:01:40 +00001109 vfs[i].spoofchk = true;
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001110 /* VF resources get allocated during reset */
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00001111 i40e_reset_vf(&vfs[i], false);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001112
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001113 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001114 pf->num_alloc_vfs = num_alloc_vfs;
1115
1116err_alloc:
1117 if (ret)
1118 i40e_free_vfs(pf);
1119err_iov:
Mitch Williams6c1b5bf2013-11-28 06:39:30 +00001120 /* Re-enable interrupt 0. */
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08001121 i40e_irq_dynamic_enable_icr0(pf, false);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001122 return ret;
1123}
1124
1125#endif
1126/**
1127 * i40e_pci_sriov_enable
1128 * @pdev: pointer to a pci_dev structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001129 * @num_vfs: number of VFs to allocate
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001130 *
1131 * Enable or change the number of VFs
1132 **/
1133static int i40e_pci_sriov_enable(struct pci_dev *pdev, int num_vfs)
1134{
1135#ifdef CONFIG_PCI_IOV
1136 struct i40e_pf *pf = pci_get_drvdata(pdev);
1137 int pre_existing_vfs = pci_num_vf(pdev);
1138 int err = 0;
1139
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001140 if (test_bit(__I40E_TESTING, &pf->state)) {
Greg Rosee17bc412015-04-16 20:05:59 -04001141 dev_warn(&pdev->dev,
1142 "Cannot enable SR-IOV virtual functions while the device is undergoing diagnostic testing\n");
1143 err = -EPERM;
1144 goto err_out;
1145 }
1146
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001147 if (pre_existing_vfs && pre_existing_vfs != num_vfs)
1148 i40e_free_vfs(pf);
1149 else if (pre_existing_vfs && pre_existing_vfs == num_vfs)
1150 goto out;
1151
1152 if (num_vfs > pf->num_req_vfs) {
Mitch Williams96c8d072015-08-27 11:42:35 -04001153 dev_warn(&pdev->dev, "Unable to enable %d VFs. Limited to %d VFs due to device resource constraints.\n",
1154 num_vfs, pf->num_req_vfs);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001155 err = -EPERM;
1156 goto err_out;
1157 }
1158
Mitch Williams96c8d072015-08-27 11:42:35 -04001159 dev_info(&pdev->dev, "Allocating %d VFs.\n", num_vfs);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001160 err = i40e_alloc_vfs(pf, num_vfs);
1161 if (err) {
1162 dev_warn(&pdev->dev, "Failed to enable SR-IOV: %d\n", err);
1163 goto err_out;
1164 }
1165
1166out:
1167 return num_vfs;
1168
1169err_out:
1170 return err;
1171#endif
1172 return 0;
1173}
1174
1175/**
1176 * i40e_pci_sriov_configure
1177 * @pdev: pointer to a pci_dev structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001178 * @num_vfs: number of VFs to allocate
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001179 *
1180 * Enable or change the number of VFs. Called when the user updates the number
1181 * of VFs in sysfs.
1182 **/
1183int i40e_pci_sriov_configure(struct pci_dev *pdev, int num_vfs)
1184{
1185 struct i40e_pf *pf = pci_get_drvdata(pdev);
1186
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07001187 if (num_vfs) {
1188 if (!(pf->flags & I40E_FLAG_VEB_MODE_ENABLED)) {
1189 pf->flags |= I40E_FLAG_VEB_MODE_ENABLED;
1190 i40e_do_reset_safe(pf,
1191 BIT_ULL(__I40E_PF_RESET_REQUESTED));
1192 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001193 return i40e_pci_sriov_enable(pdev, num_vfs);
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07001194 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001195
Ethan Zhaoc24817b2014-07-22 18:36:43 +00001196 if (!pci_vfs_assigned(pf->pdev)) {
Mitch Williams9e5634d2014-04-04 04:43:14 +00001197 i40e_free_vfs(pf);
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07001198 pf->flags &= ~I40E_FLAG_VEB_MODE_ENABLED;
1199 i40e_do_reset_safe(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED));
Mitch Williams9e5634d2014-04-04 04:43:14 +00001200 } else {
1201 dev_warn(&pdev->dev, "Unable to free VFs because some are assigned to VMs.\n");
1202 return -EINVAL;
1203 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001204 return 0;
1205}
1206
1207/***********************virtual channel routines******************/
1208
1209/**
1210 * i40e_vc_send_msg_to_vf
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001211 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001212 * @v_opcode: virtual channel opcode
1213 * @v_retval: virtual channel return value
1214 * @msg: pointer to the msg buffer
1215 * @msglen: msg length
1216 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001217 * send msg to VF
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001218 **/
1219static int i40e_vc_send_msg_to_vf(struct i40e_vf *vf, u32 v_opcode,
1220 u32 v_retval, u8 *msg, u16 msglen)
1221{
Anjali Singhai Jain6e7b5bd2014-07-10 07:58:21 +00001222 struct i40e_pf *pf;
1223 struct i40e_hw *hw;
1224 int abs_vf_id;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001225 i40e_status aq_ret;
1226
Anjali Singhai Jain6e7b5bd2014-07-10 07:58:21 +00001227 /* validate the request */
1228 if (!vf || vf->vf_id >= vf->pf->num_alloc_vfs)
1229 return -EINVAL;
1230
1231 pf = vf->pf;
1232 hw = &pf->hw;
1233 abs_vf_id = vf->vf_id + hw->func_caps.vf_base_id;
1234
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001235 /* single place to detect unsuccessful return values */
1236 if (v_retval) {
1237 vf->num_invalid_msgs++;
Mitch Williams18b7af52016-03-18 12:18:14 -07001238 dev_info(&pf->pdev->dev, "VF %d failed opcode %d, retval: %d\n",
1239 vf->vf_id, v_opcode, v_retval);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001240 if (vf->num_invalid_msgs >
1241 I40E_DEFAULT_NUM_INVALID_MSGS_ALLOWED) {
1242 dev_err(&pf->pdev->dev,
1243 "Number of invalid messages exceeded for VF %d\n",
1244 vf->vf_id);
1245 dev_err(&pf->pdev->dev, "Use PF Control I/F to enable the VF\n");
1246 set_bit(I40E_VF_STAT_DISABLED, &vf->vf_states);
1247 }
1248 } else {
1249 vf->num_valid_msgs++;
Jingjing Wu5d38c932015-09-28 14:12:39 -04001250 /* reset the invalid counter, if a valid message is received. */
1251 vf->num_invalid_msgs = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001252 }
1253
Ashish Shahf19efbb2014-08-01 13:27:06 -07001254 aq_ret = i40e_aq_send_msg_to_vf(hw, abs_vf_id, v_opcode, v_retval,
Mitch Williams7efa84b2013-11-28 06:39:41 +00001255 msg, msglen, NULL);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001256 if (aq_ret) {
Mitch Williams18b7af52016-03-18 12:18:14 -07001257 dev_info(&pf->pdev->dev,
1258 "Unable to send the message to VF %d aq_err %d\n",
1259 vf->vf_id, pf->hw.aq.asq_last_status);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001260 return -EIO;
1261 }
1262
1263 return 0;
1264}
1265
1266/**
1267 * i40e_vc_send_resp_to_vf
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001268 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001269 * @opcode: operation code
1270 * @retval: return value
1271 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001272 * send resp msg to VF
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001273 **/
1274static int i40e_vc_send_resp_to_vf(struct i40e_vf *vf,
1275 enum i40e_virtchnl_ops opcode,
1276 i40e_status retval)
1277{
1278 return i40e_vc_send_msg_to_vf(vf, opcode, retval, NULL, 0);
1279}
1280
1281/**
1282 * i40e_vc_get_version_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001283 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001284 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001285 * called from the VF to request the API version used by the PF
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001286 **/
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04001287static int i40e_vc_get_version_msg(struct i40e_vf *vf, u8 *msg)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001288{
1289 struct i40e_virtchnl_version_info info = {
1290 I40E_VIRTCHNL_VERSION_MAJOR, I40E_VIRTCHNL_VERSION_MINOR
1291 };
1292
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04001293 vf->vf_ver = *(struct i40e_virtchnl_version_info *)msg;
Mitch Williams606a5482015-06-04 16:24:00 -04001294 /* VFs running the 1.0 API expect to get 1.0 back or they will cry. */
1295 if (VF_IS_V10(vf))
1296 info.minor = I40E_VIRTCHNL_VERSION_MINOR_NO_VF_CAPS;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001297 return i40e_vc_send_msg_to_vf(vf, I40E_VIRTCHNL_OP_VERSION,
1298 I40E_SUCCESS, (u8 *)&info,
1299 sizeof(struct
1300 i40e_virtchnl_version_info));
1301}
1302
1303/**
1304 * i40e_vc_get_vf_resources_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001305 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001306 * @msg: pointer to the msg buffer
1307 * @msglen: msg length
1308 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001309 * called from the VF to request its resources
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001310 **/
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04001311static int i40e_vc_get_vf_resources_msg(struct i40e_vf *vf, u8 *msg)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001312{
1313 struct i40e_virtchnl_vf_resource *vfres = NULL;
1314 struct i40e_pf *pf = vf->pf;
1315 i40e_status aq_ret = 0;
1316 struct i40e_vsi *vsi;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001317 int num_vsis = 1;
Mitch Williams442b25e2016-03-18 12:18:06 -07001318 int len = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001319 int ret;
1320
1321 if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
1322 aq_ret = I40E_ERR_PARAM;
1323 goto err;
1324 }
1325
1326 len = (sizeof(struct i40e_virtchnl_vf_resource) +
1327 sizeof(struct i40e_virtchnl_vsi_resource) * num_vsis);
1328
1329 vfres = kzalloc(len, GFP_KERNEL);
1330 if (!vfres) {
1331 aq_ret = I40E_ERR_NO_MEMORY;
1332 len = 0;
1333 goto err;
1334 }
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04001335 if (VF_IS_V11(vf))
1336 vf->driver_caps = *(u32 *)msg;
1337 else
1338 vf->driver_caps = I40E_VIRTCHNL_VF_OFFLOAD_L2 |
1339 I40E_VIRTCHNL_VF_OFFLOAD_RSS_REG |
1340 I40E_VIRTCHNL_VF_OFFLOAD_VLAN;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001341
1342 vfres->vf_offload_flags = I40E_VIRTCHNL_VF_OFFLOAD_L2;
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001343 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001344 if (!vsi->info.pvid)
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04001345 vfres->vf_offload_flags |= I40E_VIRTCHNL_VF_OFFLOAD_VLAN;
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06001346
1347 if (i40e_vf_client_capable(pf, vf->vf_id, I40E_CLIENT_IWARP) &&
1348 (vf->driver_caps & I40E_VIRTCHNL_VF_OFFLOAD_IWARP)) {
1349 vfres->vf_offload_flags |= I40E_VIRTCHNL_VF_OFFLOAD_IWARP;
1350 set_bit(I40E_VF_STAT_IWARPENA, &vf->vf_states);
1351 }
1352
Mitch Williamsc4e18682016-04-12 08:30:40 -07001353 if (vf->driver_caps & I40E_VIRTCHNL_VF_OFFLOAD_RSS_PF) {
1354 vfres->vf_offload_flags |= I40E_VIRTCHNL_VF_OFFLOAD_RSS_PF;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04001355 } else {
Mitch Williamsc4e18682016-04-12 08:30:40 -07001356 if ((pf->flags & I40E_FLAG_RSS_AQ_CAPABLE) &&
1357 (vf->driver_caps & I40E_VIRTCHNL_VF_OFFLOAD_RSS_AQ))
1358 vfres->vf_offload_flags |=
1359 I40E_VIRTCHNL_VF_OFFLOAD_RSS_AQ;
1360 else
1361 vfres->vf_offload_flags |=
1362 I40E_VIRTCHNL_VF_OFFLOAD_RSS_REG;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04001363 }
Anjali Singhai Jain1f012272015-09-03 17:18:53 -04001364
Anjali Singhai Jain3d0da5b2015-12-22 14:25:05 -08001365 if (pf->flags & I40E_FLAG_MULTIPLE_TCP_UDP_RSS_PCTYPE) {
1366 if (vf->driver_caps & I40E_VIRTCHNL_VF_OFFLOAD_RSS_PCTYPE_V2)
1367 vfres->vf_offload_flags |=
1368 I40E_VIRTCHNL_VF_OFFLOAD_RSS_PCTYPE_V2;
1369 }
1370
Shannon Nelson14c5f5d2016-04-01 03:56:08 -07001371 if (vf->driver_caps & I40E_VIRTCHNL_VF_OFFLOAD_RX_POLLING) {
1372 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
1373 dev_err(&pf->pdev->dev,
1374 "VF %d requested polling mode: this feature is supported only when the device is running in single function per port (SFP) mode\n",
1375 vf->vf_id);
1376 ret = I40E_ERR_PARAM;
1377 goto err;
1378 }
Anjali Singhai Jain1f012272015-09-03 17:18:53 -04001379 vfres->vf_offload_flags |= I40E_VIRTCHNL_VF_OFFLOAD_RX_POLLING;
Shannon Nelson14c5f5d2016-04-01 03:56:08 -07001380 }
Anjali Singhai Jain1f012272015-09-03 17:18:53 -04001381
Anjali Singhai Jainf6d83d12015-12-22 14:25:07 -08001382 if (pf->flags & I40E_FLAG_WB_ON_ITR_CAPABLE) {
1383 if (vf->driver_caps & I40E_VIRTCHNL_VF_OFFLOAD_WB_ON_ITR)
1384 vfres->vf_offload_flags |=
1385 I40E_VIRTCHNL_VF_OFFLOAD_WB_ON_ITR;
1386 }
1387
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001388 vfres->num_vsis = num_vsis;
1389 vfres->num_queue_pairs = vf->num_queue_pairs;
1390 vfres->max_vectors = pf->hw.func_caps.num_msix_vectors_vf;
Mitch Williamsc4e18682016-04-12 08:30:40 -07001391 vfres->rss_key_size = I40E_HKEY_ARRAY_SIZE;
1392 vfres->rss_lut_size = I40E_VF_HLUT_ARRAY_SIZE;
1393
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001394 if (vf->lan_vsi_idx) {
Mitch Williams442b25e2016-03-18 12:18:06 -07001395 vfres->vsi_res[0].vsi_id = vf->lan_vsi_id;
1396 vfres->vsi_res[0].vsi_type = I40E_VSI_SRIOV;
1397 vfres->vsi_res[0].num_queue_pairs = vsi->alloc_queue_pairs;
Mitch Williamsf578f5f2015-08-28 17:55:58 -04001398 /* VFs only use TC 0 */
Mitch Williams442b25e2016-03-18 12:18:06 -07001399 vfres->vsi_res[0].qset_handle
Mitch Williamsf578f5f2015-08-28 17:55:58 -04001400 = le16_to_cpu(vsi->info.qs_handle[0]);
Mitch Williams442b25e2016-03-18 12:18:06 -07001401 ether_addr_copy(vfres->vsi_res[0].default_mac_addr,
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001402 vf->default_lan_addr.addr);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001403 }
1404 set_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states);
1405
1406err:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001407 /* send the response back to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001408 ret = i40e_vc_send_msg_to_vf(vf, I40E_VIRTCHNL_OP_GET_VF_RESOURCES,
1409 aq_ret, (u8 *)vfres, len);
1410
1411 kfree(vfres);
1412 return ret;
1413}
1414
1415/**
1416 * i40e_vc_reset_vf_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001417 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001418 * @msg: pointer to the msg buffer
1419 * @msglen: msg length
1420 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001421 * called from the VF to reset itself,
1422 * unlike other virtchnl messages, PF driver
1423 * doesn't send the response back to the VF
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001424 **/
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00001425static void i40e_vc_reset_vf_msg(struct i40e_vf *vf)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001426{
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00001427 if (test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states))
1428 i40e_reset_vf(vf, false);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001429}
1430
1431/**
Anjali Singhai Jain5676a8b2016-04-12 08:30:51 -07001432 * i40e_getnum_vf_vsi_vlan_filters
1433 * @vsi: pointer to the vsi
1434 *
1435 * called to get the number of VLANs offloaded on this VF
1436 **/
1437static inline int i40e_getnum_vf_vsi_vlan_filters(struct i40e_vsi *vsi)
1438{
1439 struct i40e_mac_filter *f;
1440 int num_vlans = 0;
1441
1442 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1443 if (f->vlan >= 0 && f->vlan <= I40E_MAX_VLANID)
1444 num_vlans++;
1445 }
1446
1447 return num_vlans;
1448}
1449
1450/**
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001451 * i40e_vc_config_promiscuous_mode_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001452 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001453 * @msg: pointer to the msg buffer
1454 * @msglen: msg length
1455 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001456 * called from the VF to configure the promiscuous mode of
1457 * VF vsis
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001458 **/
1459static int i40e_vc_config_promiscuous_mode_msg(struct i40e_vf *vf,
1460 u8 *msg, u16 msglen)
1461{
1462 struct i40e_virtchnl_promisc_info *info =
1463 (struct i40e_virtchnl_promisc_info *)msg;
1464 struct i40e_pf *pf = vf->pf;
1465 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jain5676a8b2016-04-12 08:30:51 -07001466 struct i40e_mac_filter *f;
1467 i40e_status aq_ret = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001468 bool allmulti = false;
Anjali Singhai Jain5676a8b2016-04-12 08:30:51 -07001469 struct i40e_vsi *vsi;
1470 bool alluni = false;
1471 int aq_err = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001472
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001473 vsi = i40e_find_vsi_from_id(pf, info->vsi_id);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001474 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
Anjali Singhai Jain5676a8b2016-04-12 08:30:51 -07001475 !i40e_vc_isvalid_vsi_id(vf, info->vsi_id)) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001476 aq_ret = I40E_ERR_PARAM;
1477 goto error_param;
1478 }
Mitch Williamseee41722016-05-03 15:13:13 -07001479 if (!test_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps)) {
1480 dev_err(&pf->pdev->dev,
1481 "Unprivileged VF %d is attempting to configure promiscuous mode\n",
1482 vf->vf_id);
1483 /* Lie to the VF on purpose. */
1484 aq_ret = 0;
1485 goto error_param;
1486 }
Anjali Singhai Jain5676a8b2016-04-12 08:30:51 -07001487 /* Multicast promiscuous handling*/
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001488 if (info->flags & I40E_FLAG_VF_MULTICAST_PROMISC)
1489 allmulti = true;
Anjali Singhai Jain5676a8b2016-04-12 08:30:51 -07001490
1491 if (vf->port_vlan_id) {
1492 aq_ret = i40e_aq_set_vsi_mc_promisc_on_vlan(hw, vsi->seid,
1493 allmulti,
1494 vf->port_vlan_id,
1495 NULL);
1496 } else if (i40e_getnum_vf_vsi_vlan_filters(vsi)) {
1497 list_for_each_entry(f, &vsi->mac_filter_list, list) {
Anjali Singhai Jain47d34832016-04-12 08:30:52 -07001498 if (f->vlan < 0 || f->vlan > I40E_MAX_VLANID)
1499 continue;
1500 aq_ret = i40e_aq_set_vsi_mc_promisc_on_vlan(hw,
1501 vsi->seid,
1502 allmulti,
1503 f->vlan,
1504 NULL);
Anjali Singhai Jain5676a8b2016-04-12 08:30:51 -07001505 aq_err = pf->hw.aq.asq_last_status;
1506 if (aq_ret) {
1507 dev_err(&pf->pdev->dev,
1508 "Could not add VLAN %d to multicast promiscuous domain err %s aq_err %s\n",
1509 f->vlan,
1510 i40e_stat_str(&pf->hw, aq_ret),
1511 i40e_aq_str(&pf->hw, aq_err));
1512 break;
1513 }
1514 }
1515 } else {
1516 aq_ret = i40e_aq_set_vsi_multicast_promiscuous(hw, vsi->seid,
1517 allmulti, NULL);
1518 aq_err = pf->hw.aq.asq_last_status;
1519 if (aq_ret) {
1520 dev_err(&pf->pdev->dev,
1521 "VF %d failed to set multicast promiscuous mode err %s aq_err %s\n",
1522 vf->vf_id,
1523 i40e_stat_str(&pf->hw, aq_ret),
1524 i40e_aq_str(&pf->hw, aq_err));
1525 goto error_param_int;
1526 }
1527 }
1528
1529 if (!aq_ret) {
1530 dev_info(&pf->pdev->dev,
1531 "VF %d successfully set multicast promiscuous mode\n",
1532 vf->vf_id);
1533 if (allmulti)
1534 set_bit(I40E_VF_STAT_MC_PROMISC, &vf->vf_states);
1535 else
1536 clear_bit(I40E_VF_STAT_MC_PROMISC, &vf->vf_states);
1537 }
1538
1539 if (info->flags & I40E_FLAG_VF_UNICAST_PROMISC)
1540 alluni = true;
1541 if (vf->port_vlan_id) {
1542 aq_ret = i40e_aq_set_vsi_uc_promisc_on_vlan(hw, vsi->seid,
1543 alluni,
1544 vf->port_vlan_id,
1545 NULL);
1546 } else if (i40e_getnum_vf_vsi_vlan_filters(vsi)) {
1547 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1548 aq_ret = 0;
Arnd Bergmannce927db2016-04-29 19:44:05 +02001549 if (f->vlan >= 0 && f->vlan <= I40E_MAX_VLANID) {
Anjali Singhai Jain5676a8b2016-04-12 08:30:51 -07001550 aq_ret =
1551 i40e_aq_set_vsi_uc_promisc_on_vlan(hw,
1552 vsi->seid,
1553 alluni,
1554 f->vlan,
1555 NULL);
1556 aq_err = pf->hw.aq.asq_last_status;
Arnd Bergmannce927db2016-04-29 19:44:05 +02001557 }
Anjali Singhai Jain5676a8b2016-04-12 08:30:51 -07001558 if (aq_ret)
1559 dev_err(&pf->pdev->dev,
1560 "Could not add VLAN %d to Unicast promiscuous domain err %s aq_err %s\n",
1561 f->vlan,
1562 i40e_stat_str(&pf->hw, aq_ret),
1563 i40e_aq_str(&pf->hw, aq_err));
1564 }
1565 } else {
1566 aq_ret = i40e_aq_set_vsi_unicast_promiscuous(hw, vsi->seid,
Anjali Singhai Jainb5569892016-05-03 15:13:12 -07001567 allmulti, NULL,
1568 true);
Anjali Singhai Jain5676a8b2016-04-12 08:30:51 -07001569 aq_err = pf->hw.aq.asq_last_status;
1570 if (aq_ret)
1571 dev_err(&pf->pdev->dev,
1572 "VF %d failed to set unicast promiscuous mode %8.8x err %s aq_err %s\n",
1573 vf->vf_id, info->flags,
1574 i40e_stat_str(&pf->hw, aq_ret),
1575 i40e_aq_str(&pf->hw, aq_err));
1576 }
1577
1578error_param_int:
1579 if (!aq_ret) {
1580 dev_info(&pf->pdev->dev,
1581 "VF %d successfully set unicast promiscuous mode\n",
1582 vf->vf_id);
1583 if (alluni)
1584 set_bit(I40E_VF_STAT_UC_PROMISC, &vf->vf_states);
1585 else
1586 clear_bit(I40E_VF_STAT_UC_PROMISC, &vf->vf_states);
1587 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001588
1589error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001590 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001591 return i40e_vc_send_resp_to_vf(vf,
1592 I40E_VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE,
1593 aq_ret);
1594}
1595
1596/**
1597 * i40e_vc_config_queues_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001598 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001599 * @msg: pointer to the msg buffer
1600 * @msglen: msg length
1601 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001602 * called from the VF to configure the rx/tx
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001603 * queues
1604 **/
1605static int i40e_vc_config_queues_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1606{
1607 struct i40e_virtchnl_vsi_queue_config_info *qci =
1608 (struct i40e_virtchnl_vsi_queue_config_info *)msg;
1609 struct i40e_virtchnl_queue_pair_info *qpi;
Ashish Shah5f5e33b2014-07-10 07:58:15 +00001610 struct i40e_pf *pf = vf->pf;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001611 u16 vsi_id, vsi_queue_id;
1612 i40e_status aq_ret = 0;
1613 int i;
1614
1615 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
1616 aq_ret = I40E_ERR_PARAM;
1617 goto error_param;
1618 }
1619
1620 vsi_id = qci->vsi_id;
1621 if (!i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
1622 aq_ret = I40E_ERR_PARAM;
1623 goto error_param;
1624 }
1625 for (i = 0; i < qci->num_queue_pairs; i++) {
1626 qpi = &qci->qpair[i];
1627 vsi_queue_id = qpi->txq.queue_id;
1628 if ((qpi->txq.vsi_id != vsi_id) ||
1629 (qpi->rxq.vsi_id != vsi_id) ||
1630 (qpi->rxq.queue_id != vsi_queue_id) ||
1631 !i40e_vc_isvalid_queue_id(vf, vsi_id, vsi_queue_id)) {
1632 aq_ret = I40E_ERR_PARAM;
1633 goto error_param;
1634 }
1635
1636 if (i40e_config_vsi_rx_queue(vf, vsi_id, vsi_queue_id,
1637 &qpi->rxq) ||
1638 i40e_config_vsi_tx_queue(vf, vsi_id, vsi_queue_id,
1639 &qpi->txq)) {
1640 aq_ret = I40E_ERR_PARAM;
1641 goto error_param;
1642 }
1643 }
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001644 /* set vsi num_queue_pairs in use to num configured by VF */
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001645 pf->vsi[vf->lan_vsi_idx]->num_queue_pairs = qci->num_queue_pairs;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001646
1647error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001648 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001649 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_CONFIG_VSI_QUEUES,
1650 aq_ret);
1651}
1652
1653/**
1654 * i40e_vc_config_irq_map_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001655 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001656 * @msg: pointer to the msg buffer
1657 * @msglen: msg length
1658 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001659 * called from the VF to configure the irq to
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001660 * queue map
1661 **/
1662static int i40e_vc_config_irq_map_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1663{
1664 struct i40e_virtchnl_irq_map_info *irqmap_info =
1665 (struct i40e_virtchnl_irq_map_info *)msg;
1666 struct i40e_virtchnl_vector_map *map;
1667 u16 vsi_id, vsi_queue_id, vector_id;
1668 i40e_status aq_ret = 0;
1669 unsigned long tempmap;
1670 int i;
1671
1672 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
1673 aq_ret = I40E_ERR_PARAM;
1674 goto error_param;
1675 }
1676
1677 for (i = 0; i < irqmap_info->num_vectors; i++) {
1678 map = &irqmap_info->vecmap[i];
1679
1680 vector_id = map->vector_id;
1681 vsi_id = map->vsi_id;
1682 /* validate msg params */
1683 if (!i40e_vc_isvalid_vector_id(vf, vector_id) ||
1684 !i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
1685 aq_ret = I40E_ERR_PARAM;
1686 goto error_param;
1687 }
1688
1689 /* lookout for the invalid queue index */
1690 tempmap = map->rxq_map;
Wei Yongjun48366502013-09-24 05:17:36 +00001691 for_each_set_bit(vsi_queue_id, &tempmap, I40E_MAX_VSI_QP) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001692 if (!i40e_vc_isvalid_queue_id(vf, vsi_id,
1693 vsi_queue_id)) {
1694 aq_ret = I40E_ERR_PARAM;
1695 goto error_param;
1696 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001697 }
1698
1699 tempmap = map->txq_map;
Wei Yongjun48366502013-09-24 05:17:36 +00001700 for_each_set_bit(vsi_queue_id, &tempmap, I40E_MAX_VSI_QP) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001701 if (!i40e_vc_isvalid_queue_id(vf, vsi_id,
1702 vsi_queue_id)) {
1703 aq_ret = I40E_ERR_PARAM;
1704 goto error_param;
1705 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001706 }
1707
1708 i40e_config_irq_link_list(vf, vsi_id, map);
1709 }
1710error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001711 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001712 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_CONFIG_IRQ_MAP,
1713 aq_ret);
1714}
1715
1716/**
1717 * i40e_vc_enable_queues_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001718 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001719 * @msg: pointer to the msg buffer
1720 * @msglen: msg length
1721 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001722 * called from the VF to enable all or specific queue(s)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001723 **/
1724static int i40e_vc_enable_queues_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1725{
1726 struct i40e_virtchnl_queue_select *vqs =
1727 (struct i40e_virtchnl_queue_select *)msg;
1728 struct i40e_pf *pf = vf->pf;
1729 u16 vsi_id = vqs->vsi_id;
1730 i40e_status aq_ret = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001731
1732 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
1733 aq_ret = I40E_ERR_PARAM;
1734 goto error_param;
1735 }
1736
1737 if (!i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
1738 aq_ret = I40E_ERR_PARAM;
1739 goto error_param;
1740 }
1741
1742 if ((0 == vqs->rx_queues) && (0 == vqs->tx_queues)) {
1743 aq_ret = I40E_ERR_PARAM;
1744 goto error_param;
1745 }
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001746
1747 if (i40e_vsi_control_rings(pf->vsi[vf->lan_vsi_idx], true))
Mitch Williams88f65632013-11-28 06:39:28 +00001748 aq_ret = I40E_ERR_TIMEOUT;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001749error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001750 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001751 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_ENABLE_QUEUES,
1752 aq_ret);
1753}
1754
1755/**
1756 * i40e_vc_disable_queues_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001757 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001758 * @msg: pointer to the msg buffer
1759 * @msglen: msg length
1760 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001761 * called from the VF to disable all or specific
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001762 * queue(s)
1763 **/
1764static int i40e_vc_disable_queues_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1765{
1766 struct i40e_virtchnl_queue_select *vqs =
1767 (struct i40e_virtchnl_queue_select *)msg;
1768 struct i40e_pf *pf = vf->pf;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001769 i40e_status aq_ret = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001770
1771 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
1772 aq_ret = I40E_ERR_PARAM;
1773 goto error_param;
1774 }
1775
1776 if (!i40e_vc_isvalid_vsi_id(vf, vqs->vsi_id)) {
1777 aq_ret = I40E_ERR_PARAM;
1778 goto error_param;
1779 }
1780
1781 if ((0 == vqs->rx_queues) && (0 == vqs->tx_queues)) {
1782 aq_ret = I40E_ERR_PARAM;
1783 goto error_param;
1784 }
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001785
1786 if (i40e_vsi_control_rings(pf->vsi[vf->lan_vsi_idx], false))
Mitch Williams88f65632013-11-28 06:39:28 +00001787 aq_ret = I40E_ERR_TIMEOUT;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001788
1789error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001790 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001791 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_DISABLE_QUEUES,
1792 aq_ret);
1793}
1794
1795/**
1796 * i40e_vc_get_stats_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001797 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001798 * @msg: pointer to the msg buffer
1799 * @msglen: msg length
1800 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001801 * called from the VF to get vsi stats
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001802 **/
1803static int i40e_vc_get_stats_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1804{
1805 struct i40e_virtchnl_queue_select *vqs =
1806 (struct i40e_virtchnl_queue_select *)msg;
1807 struct i40e_pf *pf = vf->pf;
1808 struct i40e_eth_stats stats;
1809 i40e_status aq_ret = 0;
1810 struct i40e_vsi *vsi;
1811
1812 memset(&stats, 0, sizeof(struct i40e_eth_stats));
1813
1814 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
1815 aq_ret = I40E_ERR_PARAM;
1816 goto error_param;
1817 }
1818
1819 if (!i40e_vc_isvalid_vsi_id(vf, vqs->vsi_id)) {
1820 aq_ret = I40E_ERR_PARAM;
1821 goto error_param;
1822 }
1823
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001824 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001825 if (!vsi) {
1826 aq_ret = I40E_ERR_PARAM;
1827 goto error_param;
1828 }
1829 i40e_update_eth_stats(vsi);
Mitch Williams5a9769c2013-11-28 06:39:38 +00001830 stats = vsi->eth_stats;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001831
1832error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001833 /* send the response back to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001834 return i40e_vc_send_msg_to_vf(vf, I40E_VIRTCHNL_OP_GET_STATS, aq_ret,
1835 (u8 *)&stats, sizeof(stats));
1836}
1837
Anjali Singhai Jain5f527ba2016-04-13 03:08:22 -07001838/* If the VF is not trusted restrict the number of MAC/VLAN it can program */
1839#define I40E_VC_MAX_MAC_ADDR_PER_VF 8
1840#define I40E_VC_MAX_VLAN_PER_VF 8
1841
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001842/**
Greg Rosef657a6e2013-11-28 06:39:42 +00001843 * i40e_check_vf_permission
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001844 * @vf: pointer to the VF info
Greg Rosef657a6e2013-11-28 06:39:42 +00001845 * @macaddr: pointer to the MAC Address being checked
1846 *
1847 * Check if the VF has permission to add or delete unicast MAC address
1848 * filters and return error code -EPERM if not. Then check if the
1849 * address filter requested is broadcast or zero and if so return
1850 * an invalid MAC address error code.
1851 **/
1852static inline int i40e_check_vf_permission(struct i40e_vf *vf, u8 *macaddr)
1853{
1854 struct i40e_pf *pf = vf->pf;
1855 int ret = 0;
1856
1857 if (is_broadcast_ether_addr(macaddr) ||
1858 is_zero_ether_addr(macaddr)) {
1859 dev_err(&pf->pdev->dev, "invalid VF MAC addr %pM\n", macaddr);
1860 ret = I40E_ERR_INVALID_MAC_ADDR;
Greg Rose5017c2a2013-12-07 10:36:54 +00001861 } else if (vf->pf_set_mac && !is_multicast_ether_addr(macaddr) &&
Anjali Singhai Jain692fb0a2016-04-13 03:08:21 -07001862 !test_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps) &&
Greg Rose5017c2a2013-12-07 10:36:54 +00001863 !ether_addr_equal(macaddr, vf->default_lan_addr.addr)) {
Greg Rosef657a6e2013-11-28 06:39:42 +00001864 /* If the host VMM administrator has set the VF MAC address
1865 * administratively via the ndo_set_vf_mac command then deny
1866 * permission to the VF to add or delete unicast MAC addresses.
Anjali Singhai Jain692fb0a2016-04-13 03:08:21 -07001867 * Unless the VF is privileged and then it can do whatever.
Greg Rose5017c2a2013-12-07 10:36:54 +00001868 * The VF may request to set the MAC address filter already
1869 * assigned to it so do not return an error in that case.
Greg Rosef657a6e2013-11-28 06:39:42 +00001870 */
1871 dev_err(&pf->pdev->dev,
Anjali Singhai Jain692fb0a2016-04-13 03:08:21 -07001872 "VF attempting to override administratively set MAC address, reload the VF driver to resume normal operation\n");
Greg Rosef657a6e2013-11-28 06:39:42 +00001873 ret = -EPERM;
Anjali Singhai Jain5f527ba2016-04-13 03:08:22 -07001874 } else if ((vf->num_mac >= I40E_VC_MAX_MAC_ADDR_PER_VF) &&
1875 !test_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps)) {
1876 dev_err(&pf->pdev->dev,
1877 "VF is not trusted, switch the VF to trusted to add more functionality\n");
1878 ret = -EPERM;
Greg Rosef657a6e2013-11-28 06:39:42 +00001879 }
1880 return ret;
1881}
1882
1883/**
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001884 * i40e_vc_add_mac_addr_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001885 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001886 * @msg: pointer to the msg buffer
1887 * @msglen: msg length
1888 *
1889 * add guest mac address filter
1890 **/
1891static int i40e_vc_add_mac_addr_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1892{
1893 struct i40e_virtchnl_ether_addr_list *al =
1894 (struct i40e_virtchnl_ether_addr_list *)msg;
1895 struct i40e_pf *pf = vf->pf;
1896 struct i40e_vsi *vsi = NULL;
1897 u16 vsi_id = al->vsi_id;
Greg Rosef657a6e2013-11-28 06:39:42 +00001898 i40e_status ret = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001899 int i;
1900
1901 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001902 !i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
Greg Rosef657a6e2013-11-28 06:39:42 +00001903 ret = I40E_ERR_PARAM;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001904 goto error_param;
1905 }
1906
1907 for (i = 0; i < al->num_elements; i++) {
Greg Rosef657a6e2013-11-28 06:39:42 +00001908 ret = i40e_check_vf_permission(vf, al->list[i].addr);
1909 if (ret)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001910 goto error_param;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001911 }
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001912 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001913
Kiran Patil21659032015-09-30 14:09:03 -04001914 /* Lock once, because all function inside for loop accesses VSI's
1915 * MAC filter list which needs to be protected using same lock.
1916 */
1917 spin_lock_bh(&vsi->mac_filter_list_lock);
1918
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001919 /* add new addresses to the list */
1920 for (i = 0; i < al->num_elements; i++) {
1921 struct i40e_mac_filter *f;
1922
1923 f = i40e_find_mac(vsi, al->list[i].addr, true, false);
Mitch Williams7e68edf92013-11-16 10:00:41 +00001924 if (!f) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001925 if (i40e_is_vsi_in_vlan(vsi))
1926 f = i40e_put_mac_in_vlan(vsi, al->list[i].addr,
1927 true, false);
1928 else
1929 f = i40e_add_filter(vsi, al->list[i].addr, -1,
1930 true, false);
1931 }
1932
1933 if (!f) {
1934 dev_err(&pf->pdev->dev,
Mitch Williams8d8f2292015-10-21 19:47:11 -04001935 "Unable to add MAC filter %pM for VF %d\n",
1936 al->list[i].addr, vf->vf_id);
Greg Rosef657a6e2013-11-28 06:39:42 +00001937 ret = I40E_ERR_PARAM;
Kiran Patil21659032015-09-30 14:09:03 -04001938 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001939 goto error_param;
Anjali Singhai Jain5f527ba2016-04-13 03:08:22 -07001940 } else {
1941 vf->num_mac++;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001942 }
1943 }
Kiran Patil21659032015-09-30 14:09:03 -04001944 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001945
1946 /* program the updated filter list */
Mitch Williamsea02e902015-11-09 15:35:50 -08001947 ret = i40e_sync_vsi_filters(vsi);
1948 if (ret)
1949 dev_err(&pf->pdev->dev, "Unable to program VF %d MAC filters, error %d\n",
1950 vf->vf_id, ret);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001951
1952error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001953 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001954 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_ADD_ETHER_ADDRESS,
Greg Rosef657a6e2013-11-28 06:39:42 +00001955 ret);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001956}
1957
1958/**
1959 * i40e_vc_del_mac_addr_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001960 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001961 * @msg: pointer to the msg buffer
1962 * @msglen: msg length
1963 *
1964 * remove guest mac address filter
1965 **/
1966static int i40e_vc_del_mac_addr_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
1967{
1968 struct i40e_virtchnl_ether_addr_list *al =
1969 (struct i40e_virtchnl_ether_addr_list *)msg;
1970 struct i40e_pf *pf = vf->pf;
1971 struct i40e_vsi *vsi = NULL;
1972 u16 vsi_id = al->vsi_id;
Greg Rosef657a6e2013-11-28 06:39:42 +00001973 i40e_status ret = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001974 int i;
1975
1976 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001977 !i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
Greg Rosef657a6e2013-11-28 06:39:42 +00001978 ret = I40E_ERR_PARAM;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001979 goto error_param;
1980 }
Greg Rosef657a6e2013-11-28 06:39:42 +00001981
1982 for (i = 0; i < al->num_elements; i++) {
Mitch Williams700bbf62013-12-21 05:44:45 +00001983 if (is_broadcast_ether_addr(al->list[i].addr) ||
1984 is_zero_ether_addr(al->list[i].addr)) {
Mitch Williams8d8f2292015-10-21 19:47:11 -04001985 dev_err(&pf->pdev->dev, "Invalid MAC addr %pM for VF %d\n",
1986 al->list[i].addr, vf->vf_id);
Mitch Williams700bbf62013-12-21 05:44:45 +00001987 ret = I40E_ERR_INVALID_MAC_ADDR;
Greg Rosef657a6e2013-11-28 06:39:42 +00001988 goto error_param;
Mitch Williams700bbf62013-12-21 05:44:45 +00001989 }
Greg Rosef657a6e2013-11-28 06:39:42 +00001990 }
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07001991 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001992
Kiran Patil21659032015-09-30 14:09:03 -04001993 spin_lock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00001994 /* delete addresses from the list */
1995 for (i = 0; i < al->num_elements; i++)
Mitch Williamsb36e9ab2015-11-19 11:34:16 -08001996 if (i40e_del_mac_all_vlan(vsi, al->list[i].addr, true, false)) {
1997 ret = I40E_ERR_INVALID_MAC_ADDR;
1998 spin_unlock_bh(&vsi->mac_filter_list_lock);
1999 goto error_param;
Anjali Singhai Jain5f527ba2016-04-13 03:08:22 -07002000 } else {
2001 vf->num_mac--;
Mitch Williamsb36e9ab2015-11-19 11:34:16 -08002002 }
2003
Kiran Patil21659032015-09-30 14:09:03 -04002004 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002005
2006 /* program the updated filter list */
Mitch Williamsea02e902015-11-09 15:35:50 -08002007 ret = i40e_sync_vsi_filters(vsi);
2008 if (ret)
2009 dev_err(&pf->pdev->dev, "Unable to program VF %d MAC filters, error %d\n",
2010 vf->vf_id, ret);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002011
2012error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002013 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002014 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_DEL_ETHER_ADDRESS,
Greg Rosef657a6e2013-11-28 06:39:42 +00002015 ret);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002016}
2017
2018/**
2019 * i40e_vc_add_vlan_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002020 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002021 * @msg: pointer to the msg buffer
2022 * @msglen: msg length
2023 *
2024 * program guest vlan id
2025 **/
2026static int i40e_vc_add_vlan_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
2027{
2028 struct i40e_virtchnl_vlan_filter_list *vfl =
2029 (struct i40e_virtchnl_vlan_filter_list *)msg;
2030 struct i40e_pf *pf = vf->pf;
2031 struct i40e_vsi *vsi = NULL;
2032 u16 vsi_id = vfl->vsi_id;
2033 i40e_status aq_ret = 0;
2034 int i;
2035
Anjali Singhai Jain5f527ba2016-04-13 03:08:22 -07002036 if ((vf->num_vlan >= I40E_VC_MAX_VLAN_PER_VF) &&
2037 !test_bit(I40E_VIRTCHNL_VF_CAP_PRIVILEGE, &vf->vf_caps)) {
2038 dev_err(&pf->pdev->dev,
2039 "VF is not trusted, switch the VF to trusted to add more VLAN addresses\n");
2040 goto error_param;
2041 }
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002042 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002043 !i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
2044 aq_ret = I40E_ERR_PARAM;
2045 goto error_param;
2046 }
2047
2048 for (i = 0; i < vfl->num_elements; i++) {
2049 if (vfl->vlan_id[i] > I40E_MAX_VLANID) {
2050 aq_ret = I40E_ERR_PARAM;
2051 dev_err(&pf->pdev->dev,
2052 "invalid VF VLAN id %d\n", vfl->vlan_id[i]);
2053 goto error_param;
2054 }
2055 }
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07002056 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002057 if (vsi->info.pvid) {
2058 aq_ret = I40E_ERR_PARAM;
2059 goto error_param;
2060 }
2061
2062 i40e_vlan_stripping_enable(vsi);
2063 for (i = 0; i < vfl->num_elements; i++) {
2064 /* add new VLAN filter */
2065 int ret = i40e_vsi_add_vlan(vsi, vfl->vlan_id[i]);
Anjali Singhai Jain5f527ba2016-04-13 03:08:22 -07002066 if (!ret)
2067 vf->num_vlan++;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04002068
Anjali Singhai Jain5676a8b2016-04-12 08:30:51 -07002069 if (test_bit(I40E_VF_STAT_UC_PROMISC, &vf->vf_states))
2070 i40e_aq_set_vsi_uc_promisc_on_vlan(&pf->hw, vsi->seid,
2071 true,
2072 vfl->vlan_id[i],
2073 NULL);
2074 if (test_bit(I40E_VF_STAT_MC_PROMISC, &vf->vf_states))
2075 i40e_aq_set_vsi_mc_promisc_on_vlan(&pf->hw, vsi->seid,
2076 true,
2077 vfl->vlan_id[i],
2078 NULL);
2079
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002080 if (ret)
2081 dev_err(&pf->pdev->dev,
Mitch Williams8d8f2292015-10-21 19:47:11 -04002082 "Unable to add VLAN filter %d for VF %d, error %d\n",
2083 vfl->vlan_id[i], vf->vf_id, ret);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002084 }
2085
2086error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002087 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002088 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_ADD_VLAN, aq_ret);
2089}
2090
2091/**
2092 * i40e_vc_remove_vlan_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002093 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002094 * @msg: pointer to the msg buffer
2095 * @msglen: msg length
2096 *
2097 * remove programmed guest vlan id
2098 **/
2099static int i40e_vc_remove_vlan_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
2100{
2101 struct i40e_virtchnl_vlan_filter_list *vfl =
2102 (struct i40e_virtchnl_vlan_filter_list *)msg;
2103 struct i40e_pf *pf = vf->pf;
2104 struct i40e_vsi *vsi = NULL;
2105 u16 vsi_id = vfl->vsi_id;
2106 i40e_status aq_ret = 0;
2107 int i;
2108
2109 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002110 !i40e_vc_isvalid_vsi_id(vf, vsi_id)) {
2111 aq_ret = I40E_ERR_PARAM;
2112 goto error_param;
2113 }
2114
2115 for (i = 0; i < vfl->num_elements; i++) {
2116 if (vfl->vlan_id[i] > I40E_MAX_VLANID) {
2117 aq_ret = I40E_ERR_PARAM;
2118 goto error_param;
2119 }
2120 }
2121
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07002122 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002123 if (vsi->info.pvid) {
2124 aq_ret = I40E_ERR_PARAM;
2125 goto error_param;
2126 }
2127
2128 for (i = 0; i < vfl->num_elements; i++) {
2129 int ret = i40e_vsi_kill_vlan(vsi, vfl->vlan_id[i]);
Anjali Singhai Jain5f527ba2016-04-13 03:08:22 -07002130 if (!ret)
2131 vf->num_vlan--;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04002132
Anjali Singhai Jain5676a8b2016-04-12 08:30:51 -07002133 if (test_bit(I40E_VF_STAT_UC_PROMISC, &vf->vf_states))
2134 i40e_aq_set_vsi_uc_promisc_on_vlan(&pf->hw, vsi->seid,
2135 false,
2136 vfl->vlan_id[i],
2137 NULL);
2138 if (test_bit(I40E_VF_STAT_MC_PROMISC, &vf->vf_states))
2139 i40e_aq_set_vsi_mc_promisc_on_vlan(&pf->hw, vsi->seid,
2140 false,
2141 vfl->vlan_id[i],
2142 NULL);
2143
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002144 if (ret)
2145 dev_err(&pf->pdev->dev,
Mitch Williams8d8f2292015-10-21 19:47:11 -04002146 "Unable to delete VLAN filter %d for VF %d, error %d\n",
2147 vfl->vlan_id[i], vf->vf_id, ret);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002148 }
2149
2150error_param:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002151 /* send the response to the VF */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002152 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_DEL_VLAN, aq_ret);
2153}
2154
2155/**
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06002156 * i40e_vc_iwarp_msg
2157 * @vf: pointer to the VF info
2158 * @msg: pointer to the msg buffer
2159 * @msglen: msg length
2160 *
2161 * called from the VF for the iwarp msgs
2162 **/
2163static int i40e_vc_iwarp_msg(struct i40e_vf *vf, u8 *msg, u16 msglen)
2164{
2165 struct i40e_pf *pf = vf->pf;
2166 int abs_vf_id = vf->vf_id + pf->hw.func_caps.vf_base_id;
2167 i40e_status aq_ret = 0;
2168
2169 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
2170 !test_bit(I40E_VF_STAT_IWARPENA, &vf->vf_states)) {
2171 aq_ret = I40E_ERR_PARAM;
2172 goto error_param;
2173 }
2174
2175 i40e_notify_client_of_vf_msg(pf->vsi[pf->lan_vsi], abs_vf_id,
2176 msg, msglen);
2177
2178error_param:
2179 /* send the response to the VF */
2180 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_IWARP,
2181 aq_ret);
2182}
2183
2184/**
2185 * i40e_vc_iwarp_qvmap_msg
2186 * @vf: pointer to the VF info
2187 * @msg: pointer to the msg buffer
2188 * @msglen: msg length
2189 * @config: config qvmap or release it
2190 *
2191 * called from the VF for the iwarp msgs
2192 **/
2193static int i40e_vc_iwarp_qvmap_msg(struct i40e_vf *vf, u8 *msg, u16 msglen,
2194 bool config)
2195{
2196 struct i40e_virtchnl_iwarp_qvlist_info *qvlist_info =
2197 (struct i40e_virtchnl_iwarp_qvlist_info *)msg;
2198 i40e_status aq_ret = 0;
2199
2200 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
2201 !test_bit(I40E_VF_STAT_IWARPENA, &vf->vf_states)) {
2202 aq_ret = I40E_ERR_PARAM;
2203 goto error_param;
2204 }
2205
2206 if (config) {
2207 if (i40e_config_iwarp_qvlist(vf, qvlist_info))
2208 aq_ret = I40E_ERR_PARAM;
2209 } else {
2210 i40e_release_iwarp_qvlist(vf);
2211 }
2212
2213error_param:
2214 /* send the response to the VF */
2215 return i40e_vc_send_resp_to_vf(vf,
2216 config ? I40E_VIRTCHNL_OP_RELEASE_IWARP_IRQ_MAP :
2217 I40E_VIRTCHNL_OP_CONFIG_IWARP_IRQ_MAP,
2218 aq_ret);
2219}
2220
2221/**
Mitch Williamsc4e18682016-04-12 08:30:40 -07002222 * i40e_vc_config_rss_key
2223 * @vf: pointer to the VF info
2224 * @msg: pointer to the msg buffer
2225 * @msglen: msg length
2226 *
2227 * Configure the VF's RSS key
2228 **/
2229static int i40e_vc_config_rss_key(struct i40e_vf *vf, u8 *msg, u16 msglen)
2230{
2231 struct i40e_virtchnl_rss_key *vrk =
2232 (struct i40e_virtchnl_rss_key *)msg;
2233 struct i40e_pf *pf = vf->pf;
2234 struct i40e_vsi *vsi = NULL;
2235 u16 vsi_id = vrk->vsi_id;
2236 i40e_status aq_ret = 0;
2237
2238 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
Mitch Williamsc4e18682016-04-12 08:30:40 -07002239 !i40e_vc_isvalid_vsi_id(vf, vsi_id) ||
2240 (vrk->key_len != I40E_HKEY_ARRAY_SIZE)) {
2241 aq_ret = I40E_ERR_PARAM;
2242 goto err;
2243 }
2244
2245 vsi = pf->vsi[vf->lan_vsi_idx];
2246 aq_ret = i40e_config_rss(vsi, vrk->key, NULL, 0);
2247err:
2248 /* send the response to the VF */
2249 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_CONFIG_RSS_KEY,
2250 aq_ret);
2251}
2252
2253/**
2254 * i40e_vc_config_rss_lut
2255 * @vf: pointer to the VF info
2256 * @msg: pointer to the msg buffer
2257 * @msglen: msg length
2258 *
2259 * Configure the VF's RSS LUT
2260 **/
2261static int i40e_vc_config_rss_lut(struct i40e_vf *vf, u8 *msg, u16 msglen)
2262{
2263 struct i40e_virtchnl_rss_lut *vrl =
2264 (struct i40e_virtchnl_rss_lut *)msg;
2265 struct i40e_pf *pf = vf->pf;
2266 struct i40e_vsi *vsi = NULL;
2267 u16 vsi_id = vrl->vsi_id;
2268 i40e_status aq_ret = 0;
2269
2270 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states) ||
Mitch Williamsc4e18682016-04-12 08:30:40 -07002271 !i40e_vc_isvalid_vsi_id(vf, vsi_id) ||
2272 (vrl->lut_entries != I40E_VF_HLUT_ARRAY_SIZE)) {
2273 aq_ret = I40E_ERR_PARAM;
2274 goto err;
2275 }
2276
2277 vsi = pf->vsi[vf->lan_vsi_idx];
2278 aq_ret = i40e_config_rss(vsi, NULL, vrl->lut, I40E_VF_HLUT_ARRAY_SIZE);
2279 /* send the response to the VF */
2280err:
2281 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_CONFIG_RSS_LUT,
2282 aq_ret);
2283}
2284
2285/**
2286 * i40e_vc_get_rss_hena
2287 * @vf: pointer to the VF info
2288 * @msg: pointer to the msg buffer
2289 * @msglen: msg length
2290 *
2291 * Return the RSS HENA bits allowed by the hardware
2292 **/
2293static int i40e_vc_get_rss_hena(struct i40e_vf *vf, u8 *msg, u16 msglen)
2294{
2295 struct i40e_virtchnl_rss_hena *vrh = NULL;
2296 struct i40e_pf *pf = vf->pf;
2297 i40e_status aq_ret = 0;
2298 int len = 0;
2299
Anjali Singhai Jain692fb0a2016-04-13 03:08:21 -07002300 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
Mitch Williamsc4e18682016-04-12 08:30:40 -07002301 aq_ret = I40E_ERR_PARAM;
2302 goto err;
2303 }
2304 len = sizeof(struct i40e_virtchnl_rss_hena);
2305
2306 vrh = kzalloc(len, GFP_KERNEL);
2307 if (!vrh) {
2308 aq_ret = I40E_ERR_NO_MEMORY;
2309 len = 0;
2310 goto err;
2311 }
2312 vrh->hena = i40e_pf_get_default_rss_hena(pf);
2313err:
2314 /* send the response back to the VF */
2315 aq_ret = i40e_vc_send_msg_to_vf(vf, I40E_VIRTCHNL_OP_GET_RSS_HENA_CAPS,
2316 aq_ret, (u8 *)vrh, len);
2317 return aq_ret;
2318}
2319
2320/**
2321 * i40e_vc_set_rss_hena
2322 * @vf: pointer to the VF info
2323 * @msg: pointer to the msg buffer
2324 * @msglen: msg length
2325 *
2326 * Set the RSS HENA bits for the VF
2327 **/
2328static int i40e_vc_set_rss_hena(struct i40e_vf *vf, u8 *msg, u16 msglen)
2329{
2330 struct i40e_virtchnl_rss_hena *vrh =
2331 (struct i40e_virtchnl_rss_hena *)msg;
2332 struct i40e_pf *pf = vf->pf;
2333 struct i40e_hw *hw = &pf->hw;
2334 i40e_status aq_ret = 0;
2335
Anjali Singhai Jain692fb0a2016-04-13 03:08:21 -07002336 if (!test_bit(I40E_VF_STAT_ACTIVE, &vf->vf_states)) {
Mitch Williamsc4e18682016-04-12 08:30:40 -07002337 aq_ret = I40E_ERR_PARAM;
2338 goto err;
2339 }
2340 i40e_write_rx_ctl(hw, I40E_VFQF_HENA1(0, vf->vf_id), (u32)vrh->hena);
2341 i40e_write_rx_ctl(hw, I40E_VFQF_HENA1(1, vf->vf_id),
2342 (u32)(vrh->hena >> 32));
2343
2344 /* send the response to the VF */
2345err:
2346 return i40e_vc_send_resp_to_vf(vf, I40E_VIRTCHNL_OP_SET_RSS_HENA,
2347 aq_ret);
2348}
2349
2350/**
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002351 * i40e_vc_validate_vf_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002352 * @vf: pointer to the VF info
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002353 * @msg: pointer to the msg buffer
2354 * @msglen: msg length
2355 * @msghndl: msg handle
2356 *
2357 * validate msg
2358 **/
2359static int i40e_vc_validate_vf_msg(struct i40e_vf *vf, u32 v_opcode,
2360 u32 v_retval, u8 *msg, u16 msglen)
2361{
2362 bool err_msg_format = false;
Catherine Sullivan3ed439c2016-04-13 03:08:27 -07002363 int valid_len = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002364
2365 /* Check if VF is disabled. */
2366 if (test_bit(I40E_VF_STAT_DISABLED, &vf->vf_states))
2367 return I40E_ERR_PARAM;
2368
2369 /* Validate message length. */
2370 switch (v_opcode) {
2371 case I40E_VIRTCHNL_OP_VERSION:
2372 valid_len = sizeof(struct i40e_virtchnl_version_info);
2373 break;
2374 case I40E_VIRTCHNL_OP_RESET_VF:
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002375 break;
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04002376 case I40E_VIRTCHNL_OP_GET_VF_RESOURCES:
2377 if (VF_IS_V11(vf))
2378 valid_len = sizeof(u32);
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04002379 break;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002380 case I40E_VIRTCHNL_OP_CONFIG_TX_QUEUE:
2381 valid_len = sizeof(struct i40e_virtchnl_txq_info);
2382 break;
2383 case I40E_VIRTCHNL_OP_CONFIG_RX_QUEUE:
2384 valid_len = sizeof(struct i40e_virtchnl_rxq_info);
2385 break;
2386 case I40E_VIRTCHNL_OP_CONFIG_VSI_QUEUES:
2387 valid_len = sizeof(struct i40e_virtchnl_vsi_queue_config_info);
2388 if (msglen >= valid_len) {
2389 struct i40e_virtchnl_vsi_queue_config_info *vqc =
2390 (struct i40e_virtchnl_vsi_queue_config_info *)msg;
2391 valid_len += (vqc->num_queue_pairs *
2392 sizeof(struct
2393 i40e_virtchnl_queue_pair_info));
2394 if (vqc->num_queue_pairs == 0)
2395 err_msg_format = true;
2396 }
2397 break;
2398 case I40E_VIRTCHNL_OP_CONFIG_IRQ_MAP:
2399 valid_len = sizeof(struct i40e_virtchnl_irq_map_info);
2400 if (msglen >= valid_len) {
2401 struct i40e_virtchnl_irq_map_info *vimi =
2402 (struct i40e_virtchnl_irq_map_info *)msg;
2403 valid_len += (vimi->num_vectors *
2404 sizeof(struct i40e_virtchnl_vector_map));
2405 if (vimi->num_vectors == 0)
2406 err_msg_format = true;
2407 }
2408 break;
2409 case I40E_VIRTCHNL_OP_ENABLE_QUEUES:
2410 case I40E_VIRTCHNL_OP_DISABLE_QUEUES:
2411 valid_len = sizeof(struct i40e_virtchnl_queue_select);
2412 break;
2413 case I40E_VIRTCHNL_OP_ADD_ETHER_ADDRESS:
2414 case I40E_VIRTCHNL_OP_DEL_ETHER_ADDRESS:
2415 valid_len = sizeof(struct i40e_virtchnl_ether_addr_list);
2416 if (msglen >= valid_len) {
2417 struct i40e_virtchnl_ether_addr_list *veal =
2418 (struct i40e_virtchnl_ether_addr_list *)msg;
2419 valid_len += veal->num_elements *
2420 sizeof(struct i40e_virtchnl_ether_addr);
2421 if (veal->num_elements == 0)
2422 err_msg_format = true;
2423 }
2424 break;
2425 case I40E_VIRTCHNL_OP_ADD_VLAN:
2426 case I40E_VIRTCHNL_OP_DEL_VLAN:
2427 valid_len = sizeof(struct i40e_virtchnl_vlan_filter_list);
2428 if (msglen >= valid_len) {
2429 struct i40e_virtchnl_vlan_filter_list *vfl =
2430 (struct i40e_virtchnl_vlan_filter_list *)msg;
2431 valid_len += vfl->num_elements * sizeof(u16);
2432 if (vfl->num_elements == 0)
2433 err_msg_format = true;
2434 }
2435 break;
2436 case I40E_VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE:
2437 valid_len = sizeof(struct i40e_virtchnl_promisc_info);
2438 break;
2439 case I40E_VIRTCHNL_OP_GET_STATS:
2440 valid_len = sizeof(struct i40e_virtchnl_queue_select);
2441 break;
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06002442 case I40E_VIRTCHNL_OP_IWARP:
2443 /* These messages are opaque to us and will be validated in
2444 * the RDMA client code. We just need to check for nonzero
2445 * length. The firmware will enforce max length restrictions.
2446 */
2447 if (msglen)
2448 valid_len = msglen;
2449 else
2450 err_msg_format = true;
2451 break;
2452 case I40E_VIRTCHNL_OP_RELEASE_IWARP_IRQ_MAP:
2453 valid_len = 0;
2454 break;
2455 case I40E_VIRTCHNL_OP_CONFIG_IWARP_IRQ_MAP:
2456 valid_len = sizeof(struct i40e_virtchnl_iwarp_qvlist_info);
2457 if (msglen >= valid_len) {
2458 struct i40e_virtchnl_iwarp_qvlist_info *qv =
2459 (struct i40e_virtchnl_iwarp_qvlist_info *)msg;
2460 if (qv->num_vectors == 0) {
2461 err_msg_format = true;
2462 break;
2463 }
2464 valid_len += ((qv->num_vectors - 1) *
2465 sizeof(struct i40e_virtchnl_iwarp_qv_info));
2466 }
2467 break;
Mitch Williamsc4e18682016-04-12 08:30:40 -07002468 case I40E_VIRTCHNL_OP_CONFIG_RSS_KEY:
2469 valid_len = sizeof(struct i40e_virtchnl_rss_key);
2470 if (msglen >= valid_len) {
2471 struct i40e_virtchnl_rss_key *vrk =
2472 (struct i40e_virtchnl_rss_key *)msg;
2473 if (vrk->key_len != I40E_HKEY_ARRAY_SIZE) {
2474 err_msg_format = true;
2475 break;
2476 }
2477 valid_len += vrk->key_len - 1;
2478 }
2479 break;
2480 case I40E_VIRTCHNL_OP_CONFIG_RSS_LUT:
2481 valid_len = sizeof(struct i40e_virtchnl_rss_lut);
2482 if (msglen >= valid_len) {
2483 struct i40e_virtchnl_rss_lut *vrl =
2484 (struct i40e_virtchnl_rss_lut *)msg;
2485 if (vrl->lut_entries != I40E_VF_HLUT_ARRAY_SIZE) {
2486 err_msg_format = true;
2487 break;
2488 }
2489 valid_len += vrl->lut_entries - 1;
2490 }
2491 break;
2492 case I40E_VIRTCHNL_OP_GET_RSS_HENA_CAPS:
Mitch Williamsc4e18682016-04-12 08:30:40 -07002493 break;
2494 case I40E_VIRTCHNL_OP_SET_RSS_HENA:
2495 valid_len = sizeof(struct i40e_virtchnl_rss_hena);
2496 break;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002497 /* These are always errors coming from the VF. */
2498 case I40E_VIRTCHNL_OP_EVENT:
2499 case I40E_VIRTCHNL_OP_UNKNOWN:
2500 default:
2501 return -EPERM;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002502 }
2503 /* few more checks */
2504 if ((valid_len != msglen) || (err_msg_format)) {
2505 i40e_vc_send_resp_to_vf(vf, v_opcode, I40E_ERR_PARAM);
2506 return -EINVAL;
2507 } else {
2508 return 0;
2509 }
2510}
2511
2512/**
2513 * i40e_vc_process_vf_msg
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002514 * @pf: pointer to the PF structure
2515 * @vf_id: source VF id
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002516 * @msg: pointer to the msg buffer
2517 * @msglen: msg length
2518 * @msghndl: msg handle
2519 *
2520 * called from the common aeq/arq handler to
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002521 * process request from VF
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002522 **/
Jesse Brandeburga1b5a242016-04-13 03:08:29 -07002523int i40e_vc_process_vf_msg(struct i40e_pf *pf, s16 vf_id, u32 v_opcode,
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002524 u32 v_retval, u8 *msg, u16 msglen)
2525{
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002526 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburga1b5a242016-04-13 03:08:29 -07002527 int local_vf_id = vf_id - (s16)hw->func_caps.vf_base_id;
Mitch Williams6c1b5bf2013-11-28 06:39:30 +00002528 struct i40e_vf *vf;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002529 int ret;
2530
2531 pf->vf_aq_requests++;
Mitch Williams7efa84b2013-11-28 06:39:41 +00002532 if (local_vf_id >= pf->num_alloc_vfs)
Mitch Williams6c1b5bf2013-11-28 06:39:30 +00002533 return -EINVAL;
Mitch Williams7efa84b2013-11-28 06:39:41 +00002534 vf = &(pf->vf[local_vf_id]);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002535 /* perform basic checks on the msg */
2536 ret = i40e_vc_validate_vf_msg(vf, v_opcode, v_retval, msg, msglen);
2537
2538 if (ret) {
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002539 dev_err(&pf->pdev->dev, "Invalid message from VF %d, opcode %d, len %d\n",
Mitch Williams7efa84b2013-11-28 06:39:41 +00002540 local_vf_id, v_opcode, msglen);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002541 return ret;
2542 }
Mitch Williamsbae3cae2014-01-14 00:49:49 -08002543
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002544 switch (v_opcode) {
2545 case I40E_VIRTCHNL_OP_VERSION:
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04002546 ret = i40e_vc_get_version_msg(vf, msg);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002547 break;
2548 case I40E_VIRTCHNL_OP_GET_VF_RESOURCES:
Mitch Williamsf4ca1a22015-06-04 16:23:57 -04002549 ret = i40e_vc_get_vf_resources_msg(vf, msg);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002550 break;
2551 case I40E_VIRTCHNL_OP_RESET_VF:
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00002552 i40e_vc_reset_vf_msg(vf);
2553 ret = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002554 break;
2555 case I40E_VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE:
2556 ret = i40e_vc_config_promiscuous_mode_msg(vf, msg, msglen);
2557 break;
2558 case I40E_VIRTCHNL_OP_CONFIG_VSI_QUEUES:
2559 ret = i40e_vc_config_queues_msg(vf, msg, msglen);
2560 break;
2561 case I40E_VIRTCHNL_OP_CONFIG_IRQ_MAP:
2562 ret = i40e_vc_config_irq_map_msg(vf, msg, msglen);
2563 break;
2564 case I40E_VIRTCHNL_OP_ENABLE_QUEUES:
2565 ret = i40e_vc_enable_queues_msg(vf, msg, msglen);
Mitch Williams055b2952015-04-07 19:45:33 -04002566 i40e_vc_notify_vf_link_state(vf);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002567 break;
2568 case I40E_VIRTCHNL_OP_DISABLE_QUEUES:
2569 ret = i40e_vc_disable_queues_msg(vf, msg, msglen);
2570 break;
2571 case I40E_VIRTCHNL_OP_ADD_ETHER_ADDRESS:
2572 ret = i40e_vc_add_mac_addr_msg(vf, msg, msglen);
2573 break;
2574 case I40E_VIRTCHNL_OP_DEL_ETHER_ADDRESS:
2575 ret = i40e_vc_del_mac_addr_msg(vf, msg, msglen);
2576 break;
2577 case I40E_VIRTCHNL_OP_ADD_VLAN:
2578 ret = i40e_vc_add_vlan_msg(vf, msg, msglen);
2579 break;
2580 case I40E_VIRTCHNL_OP_DEL_VLAN:
2581 ret = i40e_vc_remove_vlan_msg(vf, msg, msglen);
2582 break;
2583 case I40E_VIRTCHNL_OP_GET_STATS:
2584 ret = i40e_vc_get_stats_msg(vf, msg, msglen);
2585 break;
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06002586 case I40E_VIRTCHNL_OP_IWARP:
2587 ret = i40e_vc_iwarp_msg(vf, msg, msglen);
2588 break;
2589 case I40E_VIRTCHNL_OP_CONFIG_IWARP_IRQ_MAP:
2590 ret = i40e_vc_iwarp_qvmap_msg(vf, msg, msglen, true);
2591 break;
2592 case I40E_VIRTCHNL_OP_RELEASE_IWARP_IRQ_MAP:
2593 ret = i40e_vc_iwarp_qvmap_msg(vf, msg, msglen, false);
2594 break;
Mitch Williamsc4e18682016-04-12 08:30:40 -07002595 case I40E_VIRTCHNL_OP_CONFIG_RSS_KEY:
2596 ret = i40e_vc_config_rss_key(vf, msg, msglen);
2597 break;
2598 case I40E_VIRTCHNL_OP_CONFIG_RSS_LUT:
2599 ret = i40e_vc_config_rss_lut(vf, msg, msglen);
2600 break;
2601 case I40E_VIRTCHNL_OP_GET_RSS_HENA_CAPS:
2602 ret = i40e_vc_get_rss_hena(vf, msg, msglen);
2603 break;
2604 case I40E_VIRTCHNL_OP_SET_RSS_HENA:
2605 ret = i40e_vc_set_rss_hena(vf, msg, msglen);
2606 break;
2607
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002608 case I40E_VIRTCHNL_OP_UNKNOWN:
2609 default:
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002610 dev_err(&pf->pdev->dev, "Unsupported opcode %d from VF %d\n",
Mitch Williams7efa84b2013-11-28 06:39:41 +00002611 v_opcode, local_vf_id);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002612 ret = i40e_vc_send_resp_to_vf(vf, v_opcode,
2613 I40E_ERR_NOT_IMPLEMENTED);
2614 break;
2615 }
2616
2617 return ret;
2618}
2619
2620/**
2621 * i40e_vc_process_vflr_event
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002622 * @pf: pointer to the PF structure
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002623 *
2624 * called from the vlfr irq handler to
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002625 * free up VF resources and state variables
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002626 **/
2627int i40e_vc_process_vflr_event(struct i40e_pf *pf)
2628{
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002629 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburga1b5a242016-04-13 03:08:29 -07002630 u32 reg, reg_idx, bit_idx;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002631 struct i40e_vf *vf;
Jesse Brandeburga1b5a242016-04-13 03:08:29 -07002632 int vf_id;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002633
2634 if (!test_bit(__I40E_VFLR_EVENT_PENDING, &pf->state))
2635 return 0;
2636
Mitch Williams0d790322016-01-15 14:33:17 -08002637 /* Re-enable the VFLR interrupt cause here, before looking for which
2638 * VF got reset. Otherwise, if another VF gets a reset while the
2639 * first one is being processed, that interrupt will be lost, and
2640 * that VF will be stuck in reset forever.
2641 */
Mitch Williamsc5c2f7c2014-11-11 03:15:04 +00002642 reg = rd32(hw, I40E_PFINT_ICR0_ENA);
2643 reg |= I40E_PFINT_ICR0_ENA_VFLR_MASK;
2644 wr32(hw, I40E_PFINT_ICR0_ENA, reg);
2645 i40e_flush(hw);
2646
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002647 clear_bit(__I40E_VFLR_EVENT_PENDING, &pf->state);
2648 for (vf_id = 0; vf_id < pf->num_alloc_vfs; vf_id++) {
2649 reg_idx = (hw->func_caps.vf_base_id + vf_id) / 32;
2650 bit_idx = (hw->func_caps.vf_base_id + vf_id) % 32;
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002651 /* read GLGEN_VFLRSTAT register to find out the flr VFs */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002652 vf = &pf->vf[vf_id];
2653 reg = rd32(hw, I40E_GLGEN_VFLRSTAT(reg_idx));
Mitch Williams7369ca82016-03-18 12:18:09 -07002654 if (reg & BIT(bit_idx))
Mitch Williams7e5a3132016-03-10 14:59:47 -08002655 /* i40e_reset_vf will clear the bit in GLGEN_VFLRSTAT */
Mitch Williams7369ca82016-03-18 12:18:09 -07002656 i40e_reset_vf(vf, true);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002657 }
2658
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002659 return 0;
2660}
2661
2662/**
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002663 * i40e_ndo_set_vf_mac
2664 * @netdev: network interface device structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002665 * @vf_id: VF identifier
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002666 * @mac: mac address
2667 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002668 * program VF mac address
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002669 **/
2670int i40e_ndo_set_vf_mac(struct net_device *netdev, int vf_id, u8 *mac)
2671{
2672 struct i40e_netdev_priv *np = netdev_priv(netdev);
2673 struct i40e_vsi *vsi = np->vsi;
2674 struct i40e_pf *pf = vsi->back;
2675 struct i40e_mac_filter *f;
2676 struct i40e_vf *vf;
2677 int ret = 0;
2678
2679 /* validate the request */
2680 if (vf_id >= pf->num_alloc_vfs) {
2681 dev_err(&pf->pdev->dev,
2682 "Invalid VF Identifier %d\n", vf_id);
2683 ret = -EINVAL;
2684 goto error_param;
2685 }
2686
2687 vf = &(pf->vf[vf_id]);
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07002688 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002689 if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
Mitch Williams2d166c32015-12-22 15:34:42 -08002690 dev_err(&pf->pdev->dev, "VF %d still in reset. Try again.\n",
2691 vf_id);
2692 ret = -EAGAIN;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002693 goto error_param;
2694 }
2695
Mitch Williamsefd8e392015-12-22 15:34:43 -08002696 if (is_multicast_ether_addr(mac)) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002697 dev_err(&pf->pdev->dev,
Mitch Williamsefd8e392015-12-22 15:34:43 -08002698 "Invalid Ethernet address %pM for VF %d\n", mac, vf_id);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002699 ret = -EINVAL;
2700 goto error_param;
2701 }
2702
Kiran Patil21659032015-09-30 14:09:03 -04002703 /* Lock once because below invoked function add/del_filter requires
2704 * mac_filter_list_lock to be held
2705 */
2706 spin_lock_bh(&vsi->mac_filter_list_lock);
2707
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002708 /* delete the temporary mac address */
Mitch Williamsefd8e392015-12-22 15:34:43 -08002709 if (!is_zero_ether_addr(vf->default_lan_addr.addr))
2710 i40e_del_filter(vsi, vf->default_lan_addr.addr,
2711 vf->port_vlan_id ? vf->port_vlan_id : -1,
2712 true, false);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002713
Greg Rose29f71bb2014-05-20 08:01:45 +00002714 /* Delete all the filters for this VSI - we're going to kill it
2715 * anyway.
2716 */
2717 list_for_each_entry(f, &vsi->mac_filter_list, list)
2718 i40e_del_filter(vsi, f->macaddr, f->vlan, true, false);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002719
Kiran Patil21659032015-09-30 14:09:03 -04002720 spin_unlock_bh(&vsi->mac_filter_list_lock);
2721
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002722 dev_info(&pf->pdev->dev, "Setting MAC %pM on VF %d\n", mac, vf_id);
2723 /* program mac filter */
Jesse Brandeburg17652c62015-11-05 17:01:02 -08002724 if (i40e_sync_vsi_filters(vsi)) {
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002725 dev_err(&pf->pdev->dev, "Unable to program ucast filters\n");
2726 ret = -EIO;
2727 goto error_param;
2728 }
Greg Rose9a173902014-05-22 06:32:02 +00002729 ether_addr_copy(vf->default_lan_addr.addr, mac);
Greg Rosef657a6e2013-11-28 06:39:42 +00002730 vf->pf_set_mac = true;
Greg Rose17413a82014-06-04 01:23:13 +00002731 /* Force the VF driver stop so it has to reload with new MAC address */
2732 i40e_vc_disable_vf(pf, vf);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002733 dev_info(&pf->pdev->dev, "Reload the VF driver to make this change effective.\n");
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002734
2735error_param:
2736 return ret;
2737}
2738
2739/**
2740 * i40e_ndo_set_vf_port_vlan
2741 * @netdev: network interface device structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002742 * @vf_id: VF identifier
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002743 * @vlan_id: mac address
2744 * @qos: priority setting
2745 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002746 * program VF vlan id and/or qos
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002747 **/
2748int i40e_ndo_set_vf_port_vlan(struct net_device *netdev,
2749 int vf_id, u16 vlan_id, u8 qos)
2750{
Mitch Williamsf7fc2f22015-07-23 16:54:36 -04002751 u16 vlanprio = vlan_id | (qos << I40E_VLAN_PRIORITY_SHIFT);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002752 struct i40e_netdev_priv *np = netdev_priv(netdev);
2753 struct i40e_pf *pf = np->vsi->back;
Kiran Patil21659032015-09-30 14:09:03 -04002754 bool is_vsi_in_vlan = false;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002755 struct i40e_vsi *vsi;
2756 struct i40e_vf *vf;
2757 int ret = 0;
2758
2759 /* validate the request */
2760 if (vf_id >= pf->num_alloc_vfs) {
2761 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d\n", vf_id);
2762 ret = -EINVAL;
2763 goto error_pvid;
2764 }
2765
2766 if ((vlan_id > I40E_MAX_VLANID) || (qos > 7)) {
2767 dev_err(&pf->pdev->dev, "Invalid VF Parameters\n");
2768 ret = -EINVAL;
2769 goto error_pvid;
2770 }
2771
2772 vf = &(pf->vf[vf_id]);
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07002773 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002774 if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
Mitch Williams2d166c32015-12-22 15:34:42 -08002775 dev_err(&pf->pdev->dev, "VF %d still in reset. Try again.\n",
2776 vf_id);
2777 ret = -EAGAIN;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002778 goto error_pvid;
2779 }
2780
Mitch Williamsf7fc2f22015-07-23 16:54:36 -04002781 if (le16_to_cpu(vsi->info.pvid) == vlanprio)
Mitch Williams85927ec2015-04-27 14:57:10 -04002782 /* duplicate request, so just return success */
2783 goto error_pvid;
2784
Kiran Patil21659032015-09-30 14:09:03 -04002785 spin_lock_bh(&vsi->mac_filter_list_lock);
2786 is_vsi_in_vlan = i40e_is_vsi_in_vlan(vsi);
2787 spin_unlock_bh(&vsi->mac_filter_list_lock);
2788
2789 if (le16_to_cpu(vsi->info.pvid) == 0 && is_vsi_in_vlan) {
Greg Rose99a49732014-01-13 16:13:03 -08002790 dev_err(&pf->pdev->dev,
2791 "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",
2792 vf_id);
Greg Rosef9b4b622014-03-06 09:02:28 +00002793 /* Administrator Error - knock the VF offline until he does
2794 * the right thing by reconfiguring his network correctly
2795 * and then reloading the VF driver.
2796 */
2797 i40e_vc_disable_vf(pf, vf);
Mitch Williams35f34722016-02-17 16:12:23 -08002798 /* During reset the VF got a new VSI, so refresh the pointer. */
2799 vsi = pf->vsi[vf->lan_vsi_idx];
Greg Rosef9b4b622014-03-06 09:02:28 +00002800 }
Greg Rose99a49732014-01-13 16:13:03 -08002801
Greg Rose8d82a7c2014-01-13 16:13:04 -08002802 /* Check for condition where there was already a port VLAN ID
2803 * filter set and now it is being deleted by setting it to zero.
Greg Rose1315f7c2014-03-14 07:32:20 +00002804 * Additionally check for the condition where there was a port
2805 * VLAN but now there is a new and different port VLAN being set.
Greg Rose8d82a7c2014-01-13 16:13:04 -08002806 * Before deleting all the old VLAN filters we must add new ones
2807 * with -1 (I40E_VLAN_ANY) or otherwise we're left with all our
2808 * MAC addresses deleted.
2809 */
Greg Rose1315f7c2014-03-14 07:32:20 +00002810 if ((!(vlan_id || qos) ||
Mitch Williamsf7fc2f22015-07-23 16:54:36 -04002811 vlanprio != le16_to_cpu(vsi->info.pvid)) &&
Greg Rose1315f7c2014-03-14 07:32:20 +00002812 vsi->info.pvid)
Greg Rose8d82a7c2014-01-13 16:13:04 -08002813 ret = i40e_vsi_add_vlan(vsi, I40E_VLAN_ANY);
2814
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002815 if (vsi->info.pvid) {
2816 /* kill old VLAN */
2817 ret = i40e_vsi_kill_vlan(vsi, (le16_to_cpu(vsi->info.pvid) &
2818 VLAN_VID_MASK));
2819 if (ret) {
2820 dev_info(&vsi->back->pdev->dev,
2821 "remove VLAN failed, ret=%d, aq_err=%d\n",
2822 ret, pf->hw.aq.asq_last_status);
2823 }
2824 }
2825 if (vlan_id || qos)
Mitch Williamsf7fc2f22015-07-23 16:54:36 -04002826 ret = i40e_vsi_add_pvid(vsi, vlanprio);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002827 else
Greg Rose6c12fcb2013-11-28 06:39:34 +00002828 i40e_vsi_remove_pvid(vsi);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002829
2830 if (vlan_id) {
2831 dev_info(&pf->pdev->dev, "Setting VLAN %d, QOS 0x%x on VF %d\n",
2832 vlan_id, qos, vf_id);
2833
2834 /* add new VLAN filter */
2835 ret = i40e_vsi_add_vlan(vsi, vlan_id);
2836 if (ret) {
2837 dev_info(&vsi->back->pdev->dev,
2838 "add VF VLAN failed, ret=%d aq_err=%d\n", ret,
2839 vsi->back->hw.aq.asq_last_status);
2840 goto error_pvid;
2841 }
Greg Rose8d82a7c2014-01-13 16:13:04 -08002842 /* Kill non-vlan MAC filters - ignore error return since
2843 * there might not be any non-vlan MAC filters.
2844 */
2845 i40e_vsi_kill_vlan(vsi, I40E_VLAN_ANY);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002846 }
2847
2848 if (ret) {
2849 dev_err(&pf->pdev->dev, "Unable to update VF vsi context\n");
2850 goto error_pvid;
2851 }
Greg Rose6c12fcb2013-11-28 06:39:34 +00002852 /* The Port VLAN needs to be saved across resets the same as the
2853 * default LAN MAC address.
2854 */
2855 vf->port_vlan_id = le16_to_cpu(vsi->info.pvid);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002856 ret = 0;
2857
2858error_pvid:
2859 return ret;
2860}
2861
Mitch Williams84590fd2014-04-09 05:58:57 +00002862#define I40E_BW_CREDIT_DIVISOR 50 /* 50Mbps per BW credit */
2863#define I40E_MAX_BW_INACTIVE_ACCUM 4 /* device can accumulate 4 credits max */
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002864/**
2865 * i40e_ndo_set_vf_bw
2866 * @netdev: network interface device structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002867 * @vf_id: VF identifier
2868 * @tx_rate: Tx rate
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002869 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002870 * configure VF Tx rate
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002871 **/
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002872int i40e_ndo_set_vf_bw(struct net_device *netdev, int vf_id, int min_tx_rate,
2873 int max_tx_rate)
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002874{
Mitch Williams6b192892014-03-06 09:02:29 +00002875 struct i40e_netdev_priv *np = netdev_priv(netdev);
2876 struct i40e_pf *pf = np->vsi->back;
2877 struct i40e_vsi *vsi;
2878 struct i40e_vf *vf;
2879 int speed = 0;
2880 int ret = 0;
2881
2882 /* validate the request */
2883 if (vf_id >= pf->num_alloc_vfs) {
2884 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d.\n", vf_id);
2885 ret = -EINVAL;
2886 goto error;
2887 }
2888
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002889 if (min_tx_rate) {
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002890 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 -04002891 min_tx_rate, vf_id);
2892 return -EINVAL;
2893 }
2894
Mitch Williams6b192892014-03-06 09:02:29 +00002895 vf = &(pf->vf[vf_id]);
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07002896 vsi = pf->vsi[vf->lan_vsi_idx];
Mitch Williams6b192892014-03-06 09:02:29 +00002897 if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
Mitch Williams2d166c32015-12-22 15:34:42 -08002898 dev_err(&pf->pdev->dev, "VF %d still in reset. Try again.\n",
2899 vf_id);
2900 ret = -EAGAIN;
Mitch Williams6b192892014-03-06 09:02:29 +00002901 goto error;
2902 }
2903
2904 switch (pf->hw.phy.link_info.link_speed) {
2905 case I40E_LINK_SPEED_40GB:
2906 speed = 40000;
2907 break;
Mitch Williams07f169c2015-12-23 12:05:49 -08002908 case I40E_LINK_SPEED_20GB:
2909 speed = 20000;
2910 break;
Mitch Williams6b192892014-03-06 09:02:29 +00002911 case I40E_LINK_SPEED_10GB:
2912 speed = 10000;
2913 break;
2914 case I40E_LINK_SPEED_1GB:
2915 speed = 1000;
2916 break;
2917 default:
2918 break;
2919 }
2920
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002921 if (max_tx_rate > speed) {
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002922 dev_err(&pf->pdev->dev, "Invalid max tx rate %d specified for VF %d.",
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002923 max_tx_rate, vf->vf_id);
Mitch Williams6b192892014-03-06 09:02:29 +00002924 ret = -EINVAL;
2925 goto error;
2926 }
2927
Mitch Williamsdac9b312014-04-09 05:58:56 +00002928 if ((max_tx_rate < 50) && (max_tx_rate > 0)) {
2929 dev_warn(&pf->pdev->dev, "Setting max Tx rate to minimum usable value of 50Mbps.\n");
2930 max_tx_rate = 50;
2931 }
2932
Mitch Williams6b192892014-03-06 09:02:29 +00002933 /* Tx rate credits are in values of 50Mbps, 0 is disabled*/
Mitch Williams84590fd2014-04-09 05:58:57 +00002934 ret = i40e_aq_config_vsi_bw_limit(&pf->hw, vsi->seid,
2935 max_tx_rate / I40E_BW_CREDIT_DIVISOR,
2936 I40E_MAX_BW_INACTIVE_ACCUM, NULL);
Mitch Williams6b192892014-03-06 09:02:29 +00002937 if (ret) {
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002938 dev_err(&pf->pdev->dev, "Unable to set max tx rate, error code %d.\n",
Mitch Williams6b192892014-03-06 09:02:29 +00002939 ret);
2940 ret = -EIO;
2941 goto error;
2942 }
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002943 vf->tx_rate = max_tx_rate;
Mitch Williams6b192892014-03-06 09:02:29 +00002944error:
2945 return ret;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002946}
2947
2948/**
2949 * i40e_ndo_get_vf_config
2950 * @netdev: network interface device structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002951 * @vf_id: VF identifier
2952 * @ivi: VF configuration structure
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002953 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00002954 * return VF configuration
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002955 **/
2956int i40e_ndo_get_vf_config(struct net_device *netdev,
2957 int vf_id, struct ifla_vf_info *ivi)
2958{
2959 struct i40e_netdev_priv *np = netdev_priv(netdev);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002960 struct i40e_vsi *vsi = np->vsi;
2961 struct i40e_pf *pf = vsi->back;
2962 struct i40e_vf *vf;
2963 int ret = 0;
2964
2965 /* validate the request */
2966 if (vf_id >= pf->num_alloc_vfs) {
2967 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d\n", vf_id);
2968 ret = -EINVAL;
2969 goto error_param;
2970 }
2971
2972 vf = &(pf->vf[vf_id]);
2973 /* first vsi is always the LAN vsi */
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07002974 vsi = pf->vsi[vf->lan_vsi_idx];
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002975 if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
Mitch Williams2d166c32015-12-22 15:34:42 -08002976 dev_err(&pf->pdev->dev, "VF %d still in reset. Try again.\n",
2977 vf_id);
2978 ret = -EAGAIN;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002979 goto error_param;
2980 }
2981
2982 ivi->vf = vf_id;
2983
Jesse Brandeburg6995b362015-08-28 17:55:54 -04002984 ether_addr_copy(ivi->mac, vf->default_lan_addr.addr);
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002985
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002986 ivi->max_tx_rate = vf->tx_rate;
2987 ivi->min_tx_rate = 0;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002988 ivi->vlan = le16_to_cpu(vsi->info.pvid) & I40E_VLAN_MASK;
2989 ivi->qos = (le16_to_cpu(vsi->info.pvid) & I40E_PRIORITY_MASK) >>
2990 I40E_VLAN_PRIORITY_SHIFT;
Mitch Williams84ca55a2014-03-14 07:32:24 +00002991 if (vf->link_forced == false)
2992 ivi->linkstate = IFLA_VF_LINK_STATE_AUTO;
2993 else if (vf->link_up == true)
2994 ivi->linkstate = IFLA_VF_LINK_STATE_ENABLE;
2995 else
2996 ivi->linkstate = IFLA_VF_LINK_STATE_DISABLE;
Mitch Williamsc674d122014-05-20 08:01:40 +00002997 ivi->spoofchk = vf->spoofchk;
Jesse Brandeburg5c3c48a2013-09-11 08:40:07 +00002998 ret = 0;
2999
3000error_param:
3001 return ret;
3002}
Mitch Williams588aefa2014-02-11 08:27:49 +00003003
3004/**
3005 * i40e_ndo_set_vf_link_state
3006 * @netdev: network interface device structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00003007 * @vf_id: VF identifier
Mitch Williams588aefa2014-02-11 08:27:49 +00003008 * @link: required link state
3009 *
3010 * Set the link state of a specified VF, regardless of physical link state
3011 **/
3012int i40e_ndo_set_vf_link_state(struct net_device *netdev, int vf_id, int link)
3013{
3014 struct i40e_netdev_priv *np = netdev_priv(netdev);
3015 struct i40e_pf *pf = np->vsi->back;
3016 struct i40e_virtchnl_pf_event pfe;
3017 struct i40e_hw *hw = &pf->hw;
3018 struct i40e_vf *vf;
Ashish Shahf19efbb2014-08-01 13:27:06 -07003019 int abs_vf_id;
Mitch Williams588aefa2014-02-11 08:27:49 +00003020 int ret = 0;
3021
3022 /* validate the request */
3023 if (vf_id >= pf->num_alloc_vfs) {
3024 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d\n", vf_id);
3025 ret = -EINVAL;
3026 goto error_out;
3027 }
3028
3029 vf = &pf->vf[vf_id];
Ashish Shahf19efbb2014-08-01 13:27:06 -07003030 abs_vf_id = vf->vf_id + hw->func_caps.vf_base_id;
Mitch Williams588aefa2014-02-11 08:27:49 +00003031
3032 pfe.event = I40E_VIRTCHNL_EVENT_LINK_CHANGE;
3033 pfe.severity = I40E_PF_EVENT_SEVERITY_INFO;
3034
3035 switch (link) {
3036 case IFLA_VF_LINK_STATE_AUTO:
3037 vf->link_forced = false;
3038 pfe.event_data.link_event.link_status =
3039 pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP;
3040 pfe.event_data.link_event.link_speed =
3041 pf->hw.phy.link_info.link_speed;
3042 break;
3043 case IFLA_VF_LINK_STATE_ENABLE:
3044 vf->link_forced = true;
3045 vf->link_up = true;
3046 pfe.event_data.link_event.link_status = true;
3047 pfe.event_data.link_event.link_speed = I40E_LINK_SPEED_40GB;
3048 break;
3049 case IFLA_VF_LINK_STATE_DISABLE:
3050 vf->link_forced = true;
3051 vf->link_up = false;
3052 pfe.event_data.link_event.link_status = false;
3053 pfe.event_data.link_event.link_speed = 0;
3054 break;
3055 default:
3056 ret = -EINVAL;
3057 goto error_out;
3058 }
3059 /* Notify the VF of its new link state */
Ashish Shahf19efbb2014-08-01 13:27:06 -07003060 i40e_aq_send_msg_to_vf(hw, abs_vf_id, I40E_VIRTCHNL_OP_EVENT,
Mitch Williams588aefa2014-02-11 08:27:49 +00003061 0, (u8 *)&pfe, sizeof(pfe), NULL);
3062
3063error_out:
3064 return ret;
3065}
Mitch Williamsc674d122014-05-20 08:01:40 +00003066
3067/**
3068 * i40e_ndo_set_vf_spoofchk
3069 * @netdev: network interface device structure
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00003070 * @vf_id: VF identifier
Mitch Williamsc674d122014-05-20 08:01:40 +00003071 * @enable: flag to enable or disable feature
3072 *
3073 * Enable or disable VF spoof checking
3074 **/
Serey Konge6d90042014-07-12 07:28:14 +00003075int i40e_ndo_set_vf_spoofchk(struct net_device *netdev, int vf_id, bool enable)
Mitch Williamsc674d122014-05-20 08:01:40 +00003076{
3077 struct i40e_netdev_priv *np = netdev_priv(netdev);
3078 struct i40e_vsi *vsi = np->vsi;
3079 struct i40e_pf *pf = vsi->back;
3080 struct i40e_vsi_context ctxt;
3081 struct i40e_hw *hw = &pf->hw;
3082 struct i40e_vf *vf;
3083 int ret = 0;
3084
3085 /* validate the request */
3086 if (vf_id >= pf->num_alloc_vfs) {
3087 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d\n", vf_id);
3088 ret = -EINVAL;
3089 goto out;
3090 }
3091
3092 vf = &(pf->vf[vf_id]);
Mitch Williams2d166c32015-12-22 15:34:42 -08003093 if (!test_bit(I40E_VF_STAT_INIT, &vf->vf_states)) {
3094 dev_err(&pf->pdev->dev, "VF %d still in reset. Try again.\n",
3095 vf_id);
3096 ret = -EAGAIN;
3097 goto out;
3098 }
Mitch Williamsc674d122014-05-20 08:01:40 +00003099
3100 if (enable == vf->spoofchk)
3101 goto out;
3102
3103 vf->spoofchk = enable;
3104 memset(&ctxt, 0, sizeof(ctxt));
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -07003105 ctxt.seid = pf->vsi[vf->lan_vsi_idx]->seid;
Mitch Williamsc674d122014-05-20 08:01:40 +00003106 ctxt.pf_num = pf->hw.pf_id;
3107 ctxt.info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID);
3108 if (enable)
Greg Rose30d71af2015-01-29 07:17:17 +00003109 ctxt.info.sec_flags |= (I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK |
3110 I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK);
Mitch Williamsc674d122014-05-20 08:01:40 +00003111 ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL);
3112 if (ret) {
3113 dev_err(&pf->pdev->dev, "Error %d updating VSI parameters\n",
3114 ret);
3115 ret = -EIO;
3116 }
3117out:
3118 return ret;
3119}
Anjali Singhai Jainc3bbbd22016-04-01 03:56:07 -07003120
3121/**
3122 * i40e_ndo_set_vf_trust
3123 * @netdev: network interface device structure of the pf
3124 * @vf_id: VF identifier
3125 * @setting: trust setting
3126 *
3127 * Enable or disable VF trust setting
3128 **/
3129int i40e_ndo_set_vf_trust(struct net_device *netdev, int vf_id, bool setting)
3130{
3131 struct i40e_netdev_priv *np = netdev_priv(netdev);
3132 struct i40e_pf *pf = np->vsi->back;
3133 struct i40e_vf *vf;
3134 int ret = 0;
3135
3136 /* validate the request */
3137 if (vf_id >= pf->num_alloc_vfs) {
3138 dev_err(&pf->pdev->dev, "Invalid VF Identifier %d\n", vf_id);
3139 return -EINVAL;
3140 }
3141
3142 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
3143 dev_err(&pf->pdev->dev, "Trusted VF not supported in MFP mode.\n");
3144 return -EINVAL;
3145 }
3146
3147 vf = &pf->vf[vf_id];
3148
3149 if (!vf)
3150 return -EINVAL;
3151 if (setting == vf->trusted)
3152 goto out;
3153
3154 vf->trusted = setting;
3155 i40e_vc_notify_vf_reset(vf);
3156 i40e_reset_vf(vf, false);
3157 dev_info(&pf->pdev->dev, "VF %u is now %strusted\n",
3158 vf_id, setting ? "" : "un");
3159out:
3160 return ret;
3161}