]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blob - drivers/net/ethernet/qlogic/qed/qed_sriov.c
dce81f5eefec356ed6c23af4f550cb6c367f6de1
[mirror_ubuntu-zesty-kernel.git] / drivers / net / ethernet / qlogic / qed / qed_sriov.c
1 /* QLogic qed NIC Driver
2 * Copyright (c) 2015 QLogic Corporation
3 *
4 * This software is available under the terms of the GNU General Public License
5 * (GPL) Version 2, available from the file COPYING in the main directory of
6 * this source tree.
7 */
8
9 #include <linux/etherdevice.h>
10 #include <linux/crc32.h>
11 #include <linux/qed/qed_iov_if.h>
12 #include "qed_cxt.h"
13 #include "qed_hsi.h"
14 #include "qed_hw.h"
15 #include "qed_init_ops.h"
16 #include "qed_int.h"
17 #include "qed_mcp.h"
18 #include "qed_reg_addr.h"
19 #include "qed_sp.h"
20 #include "qed_sriov.h"
21 #include "qed_vf.h"
22
23 /* IOV ramrods */
24 static int qed_sp_vf_start(struct qed_hwfn *p_hwfn, struct qed_vf_info *p_vf)
25 {
26 struct vf_start_ramrod_data *p_ramrod = NULL;
27 struct qed_spq_entry *p_ent = NULL;
28 struct qed_sp_init_data init_data;
29 int rc = -EINVAL;
30 u8 fp_minor;
31
32 /* Get SPQ entry */
33 memset(&init_data, 0, sizeof(init_data));
34 init_data.cid = qed_spq_get_cid(p_hwfn);
35 init_data.opaque_fid = p_vf->opaque_fid;
36 init_data.comp_mode = QED_SPQ_MODE_EBLOCK;
37
38 rc = qed_sp_init_request(p_hwfn, &p_ent,
39 COMMON_RAMROD_VF_START,
40 PROTOCOLID_COMMON, &init_data);
41 if (rc)
42 return rc;
43
44 p_ramrod = &p_ent->ramrod.vf_start;
45
46 p_ramrod->vf_id = GET_FIELD(p_vf->concrete_fid, PXP_CONCRETE_FID_VFID);
47 p_ramrod->opaque_fid = cpu_to_le16(p_vf->opaque_fid);
48
49 switch (p_hwfn->hw_info.personality) {
50 case QED_PCI_ETH:
51 p_ramrod->personality = PERSONALITY_ETH;
52 break;
53 case QED_PCI_ETH_ROCE:
54 p_ramrod->personality = PERSONALITY_RDMA_AND_ETH;
55 break;
56 default:
57 DP_NOTICE(p_hwfn, "Unknown VF personality %d\n",
58 p_hwfn->hw_info.personality);
59 return -EINVAL;
60 }
61
62 fp_minor = p_vf->acquire.vfdev_info.eth_fp_hsi_minor;
63 if (fp_minor > ETH_HSI_VER_MINOR) {
64 DP_VERBOSE(p_hwfn,
65 QED_MSG_IOV,
66 "VF [%d] - Requested fp hsi %02x.%02x which is slightly newer than PF's %02x.%02x; Configuring PFs version\n",
67 p_vf->abs_vf_id,
68 ETH_HSI_VER_MAJOR,
69 fp_minor, ETH_HSI_VER_MAJOR, ETH_HSI_VER_MINOR);
70 fp_minor = ETH_HSI_VER_MINOR;
71 }
72
73 p_ramrod->hsi_fp_ver.major_ver_arr[ETH_VER_KEY] = ETH_HSI_VER_MAJOR;
74 p_ramrod->hsi_fp_ver.minor_ver_arr[ETH_VER_KEY] = fp_minor;
75
76 DP_VERBOSE(p_hwfn, QED_MSG_IOV,
77 "VF[%d] - Starting using HSI %02x.%02x\n",
78 p_vf->abs_vf_id, ETH_HSI_VER_MAJOR, fp_minor);
79
80 return qed_spq_post(p_hwfn, p_ent, NULL);
81 }
82
83 static int qed_sp_vf_stop(struct qed_hwfn *p_hwfn,
84 u32 concrete_vfid, u16 opaque_vfid)
85 {
86 struct vf_stop_ramrod_data *p_ramrod = NULL;
87 struct qed_spq_entry *p_ent = NULL;
88 struct qed_sp_init_data init_data;
89 int rc = -EINVAL;
90
91 /* Get SPQ entry */
92 memset(&init_data, 0, sizeof(init_data));
93 init_data.cid = qed_spq_get_cid(p_hwfn);
94 init_data.opaque_fid = opaque_vfid;
95 init_data.comp_mode = QED_SPQ_MODE_EBLOCK;
96
97 rc = qed_sp_init_request(p_hwfn, &p_ent,
98 COMMON_RAMROD_VF_STOP,
99 PROTOCOLID_COMMON, &init_data);
100 if (rc)
101 return rc;
102
103 p_ramrod = &p_ent->ramrod.vf_stop;
104
105 p_ramrod->vf_id = GET_FIELD(concrete_vfid, PXP_CONCRETE_FID_VFID);
106
107 return qed_spq_post(p_hwfn, p_ent, NULL);
108 }
109
110 bool qed_iov_is_valid_vfid(struct qed_hwfn *p_hwfn,
111 int rel_vf_id, bool b_enabled_only)
112 {
113 if (!p_hwfn->pf_iov_info) {
114 DP_NOTICE(p_hwfn->cdev, "No iov info\n");
115 return false;
116 }
117
118 if ((rel_vf_id >= p_hwfn->cdev->p_iov_info->total_vfs) ||
119 (rel_vf_id < 0))
120 return false;
121
122 if ((!p_hwfn->pf_iov_info->vfs_array[rel_vf_id].b_init) &&
123 b_enabled_only)
124 return false;
125
126 return true;
127 }
128
129 static struct qed_vf_info *qed_iov_get_vf_info(struct qed_hwfn *p_hwfn,
130 u16 relative_vf_id,
131 bool b_enabled_only)
132 {
133 struct qed_vf_info *vf = NULL;
134
135 if (!p_hwfn->pf_iov_info) {
136 DP_NOTICE(p_hwfn->cdev, "No iov info\n");
137 return NULL;
138 }
139
140 if (qed_iov_is_valid_vfid(p_hwfn, relative_vf_id, b_enabled_only))
141 vf = &p_hwfn->pf_iov_info->vfs_array[relative_vf_id];
142 else
143 DP_ERR(p_hwfn, "qed_iov_get_vf_info: VF[%d] is not enabled\n",
144 relative_vf_id);
145
146 return vf;
147 }
148
149 static bool qed_iov_validate_rxq(struct qed_hwfn *p_hwfn,
150 struct qed_vf_info *p_vf, u16 rx_qid)
151 {
152 if (rx_qid >= p_vf->num_rxqs)
153 DP_VERBOSE(p_hwfn,
154 QED_MSG_IOV,
155 "VF[0x%02x] - can't touch Rx queue[%04x]; Only 0x%04x are allocated\n",
156 p_vf->abs_vf_id, rx_qid, p_vf->num_rxqs);
157 return rx_qid < p_vf->num_rxqs;
158 }
159
160 static bool qed_iov_validate_txq(struct qed_hwfn *p_hwfn,
161 struct qed_vf_info *p_vf, u16 tx_qid)
162 {
163 if (tx_qid >= p_vf->num_txqs)
164 DP_VERBOSE(p_hwfn,
165 QED_MSG_IOV,
166 "VF[0x%02x] - can't touch Tx queue[%04x]; Only 0x%04x are allocated\n",
167 p_vf->abs_vf_id, tx_qid, p_vf->num_txqs);
168 return tx_qid < p_vf->num_txqs;
169 }
170
171 static bool qed_iov_validate_sb(struct qed_hwfn *p_hwfn,
172 struct qed_vf_info *p_vf, u16 sb_idx)
173 {
174 int i;
175
176 for (i = 0; i < p_vf->num_sbs; i++)
177 if (p_vf->igu_sbs[i] == sb_idx)
178 return true;
179
180 DP_VERBOSE(p_hwfn,
181 QED_MSG_IOV,
182 "VF[0%02x] - tried using sb_idx %04x which doesn't exist as one of its 0x%02x SBs\n",
183 p_vf->abs_vf_id, sb_idx, p_vf->num_sbs);
184
185 return false;
186 }
187
188 int qed_iov_post_vf_bulletin(struct qed_hwfn *p_hwfn,
189 int vfid, struct qed_ptt *p_ptt)
190 {
191 struct qed_bulletin_content *p_bulletin;
192 int crc_size = sizeof(p_bulletin->crc);
193 struct qed_dmae_params params;
194 struct qed_vf_info *p_vf;
195
196 p_vf = qed_iov_get_vf_info(p_hwfn, (u16) vfid, true);
197 if (!p_vf)
198 return -EINVAL;
199
200 if (!p_vf->vf_bulletin)
201 return -EINVAL;
202
203 p_bulletin = p_vf->bulletin.p_virt;
204
205 /* Increment bulletin board version and compute crc */
206 p_bulletin->version++;
207 p_bulletin->crc = crc32(0, (u8 *)p_bulletin + crc_size,
208 p_vf->bulletin.size - crc_size);
209
210 DP_VERBOSE(p_hwfn, QED_MSG_IOV,
211 "Posting Bulletin 0x%08x to VF[%d] (CRC 0x%08x)\n",
212 p_bulletin->version, p_vf->relative_vf_id, p_bulletin->crc);
213
214 /* propagate bulletin board via dmae to vm memory */
215 memset(&params, 0, sizeof(params));
216 params.flags = QED_DMAE_FLAG_VF_DST;
217 params.dst_vfid = p_vf->abs_vf_id;
218 return qed_dmae_host2host(p_hwfn, p_ptt, p_vf->bulletin.phys,
219 p_vf->vf_bulletin, p_vf->bulletin.size / 4,
220 &params);
221 }
222
223 static int qed_iov_pci_cfg_info(struct qed_dev *cdev)
224 {
225 struct qed_hw_sriov_info *iov = cdev->p_iov_info;
226 int pos = iov->pos;
227
228 DP_VERBOSE(cdev, QED_MSG_IOV, "sriov ext pos %d\n", pos);
229 pci_read_config_word(cdev->pdev, pos + PCI_SRIOV_CTRL, &iov->ctrl);
230
231 pci_read_config_word(cdev->pdev,
232 pos + PCI_SRIOV_TOTAL_VF, &iov->total_vfs);
233 pci_read_config_word(cdev->pdev,
234 pos + PCI_SRIOV_INITIAL_VF, &iov->initial_vfs);
235
236 pci_read_config_word(cdev->pdev, pos + PCI_SRIOV_NUM_VF, &iov->num_vfs);
237 if (iov->num_vfs) {
238 DP_VERBOSE(cdev,
239 QED_MSG_IOV,
240 "Number of VFs are already set to non-zero value. Ignoring PCI configuration value\n");
241 iov->num_vfs = 0;
242 }
243
244 pci_read_config_word(cdev->pdev,
245 pos + PCI_SRIOV_VF_OFFSET, &iov->offset);
246
247 pci_read_config_word(cdev->pdev,
248 pos + PCI_SRIOV_VF_STRIDE, &iov->stride);
249
250 pci_read_config_word(cdev->pdev,
251 pos + PCI_SRIOV_VF_DID, &iov->vf_device_id);
252
253 pci_read_config_dword(cdev->pdev,
254 pos + PCI_SRIOV_SUP_PGSIZE, &iov->pgsz);
255
256 pci_read_config_dword(cdev->pdev, pos + PCI_SRIOV_CAP, &iov->cap);
257
258 pci_read_config_byte(cdev->pdev, pos + PCI_SRIOV_FUNC_LINK, &iov->link);
259
260 DP_VERBOSE(cdev,
261 QED_MSG_IOV,
262 "IOV info: nres %d, cap 0x%x, ctrl 0x%x, total %d, initial %d, num vfs %d, offset %d, stride %d, page size 0x%x\n",
263 iov->nres,
264 iov->cap,
265 iov->ctrl,
266 iov->total_vfs,
267 iov->initial_vfs,
268 iov->nr_virtfn, iov->offset, iov->stride, iov->pgsz);
269
270 /* Some sanity checks */
271 if (iov->num_vfs > NUM_OF_VFS(cdev) ||
272 iov->total_vfs > NUM_OF_VFS(cdev)) {
273 /* This can happen only due to a bug. In this case we set
274 * num_vfs to zero to avoid memory corruption in the code that
275 * assumes max number of vfs
276 */
277 DP_NOTICE(cdev,
278 "IOV: Unexpected number of vfs set: %d setting num_vf to zero\n",
279 iov->num_vfs);
280
281 iov->num_vfs = 0;
282 iov->total_vfs = 0;
283 }
284
285 return 0;
286 }
287
288 static void qed_iov_clear_vf_igu_blocks(struct qed_hwfn *p_hwfn,
289 struct qed_ptt *p_ptt)
290 {
291 struct qed_igu_block *p_sb;
292 u16 sb_id;
293 u32 val;
294
295 if (!p_hwfn->hw_info.p_igu_info) {
296 DP_ERR(p_hwfn,
297 "qed_iov_clear_vf_igu_blocks IGU Info not initialized\n");
298 return;
299 }
300
301 for (sb_id = 0; sb_id < QED_MAPPING_MEMORY_SIZE(p_hwfn->cdev);
302 sb_id++) {
303 p_sb = &p_hwfn->hw_info.p_igu_info->igu_map.igu_blocks[sb_id];
304 if ((p_sb->status & QED_IGU_STATUS_FREE) &&
305 !(p_sb->status & QED_IGU_STATUS_PF)) {
306 val = qed_rd(p_hwfn, p_ptt,
307 IGU_REG_MAPPING_MEMORY + sb_id * 4);
308 SET_FIELD(val, IGU_MAPPING_LINE_VALID, 0);
309 qed_wr(p_hwfn, p_ptt,
310 IGU_REG_MAPPING_MEMORY + 4 * sb_id, val);
311 }
312 }
313 }
314
315 static void qed_iov_setup_vfdb(struct qed_hwfn *p_hwfn)
316 {
317 struct qed_hw_sriov_info *p_iov = p_hwfn->cdev->p_iov_info;
318 struct qed_pf_iov *p_iov_info = p_hwfn->pf_iov_info;
319 struct qed_bulletin_content *p_bulletin_virt;
320 dma_addr_t req_p, rply_p, bulletin_p;
321 union pfvf_tlvs *p_reply_virt_addr;
322 union vfpf_tlvs *p_req_virt_addr;
323 u8 idx = 0;
324
325 memset(p_iov_info->vfs_array, 0, sizeof(p_iov_info->vfs_array));
326
327 p_req_virt_addr = p_iov_info->mbx_msg_virt_addr;
328 req_p = p_iov_info->mbx_msg_phys_addr;
329 p_reply_virt_addr = p_iov_info->mbx_reply_virt_addr;
330 rply_p = p_iov_info->mbx_reply_phys_addr;
331 p_bulletin_virt = p_iov_info->p_bulletins;
332 bulletin_p = p_iov_info->bulletins_phys;
333 if (!p_req_virt_addr || !p_reply_virt_addr || !p_bulletin_virt) {
334 DP_ERR(p_hwfn,
335 "qed_iov_setup_vfdb called without allocating mem first\n");
336 return;
337 }
338
339 for (idx = 0; idx < p_iov->total_vfs; idx++) {
340 struct qed_vf_info *vf = &p_iov_info->vfs_array[idx];
341 u32 concrete;
342
343 vf->vf_mbx.req_virt = p_req_virt_addr + idx;
344 vf->vf_mbx.req_phys = req_p + idx * sizeof(union vfpf_tlvs);
345 vf->vf_mbx.reply_virt = p_reply_virt_addr + idx;
346 vf->vf_mbx.reply_phys = rply_p + idx * sizeof(union pfvf_tlvs);
347
348 vf->state = VF_STOPPED;
349 vf->b_init = false;
350
351 vf->bulletin.phys = idx *
352 sizeof(struct qed_bulletin_content) +
353 bulletin_p;
354 vf->bulletin.p_virt = p_bulletin_virt + idx;
355 vf->bulletin.size = sizeof(struct qed_bulletin_content);
356
357 vf->relative_vf_id = idx;
358 vf->abs_vf_id = idx + p_iov->first_vf_in_pf;
359 concrete = qed_vfid_to_concrete(p_hwfn, vf->abs_vf_id);
360 vf->concrete_fid = concrete;
361 vf->opaque_fid = (p_hwfn->hw_info.opaque_fid & 0xff) |
362 (vf->abs_vf_id << 8);
363 vf->vport_id = idx + 1;
364
365 vf->num_mac_filters = QED_ETH_VF_NUM_MAC_FILTERS;
366 vf->num_vlan_filters = QED_ETH_VF_NUM_VLAN_FILTERS;
367 }
368 }
369
370 static int qed_iov_allocate_vfdb(struct qed_hwfn *p_hwfn)
371 {
372 struct qed_pf_iov *p_iov_info = p_hwfn->pf_iov_info;
373 void **p_v_addr;
374 u16 num_vfs = 0;
375
376 num_vfs = p_hwfn->cdev->p_iov_info->total_vfs;
377
378 DP_VERBOSE(p_hwfn, QED_MSG_IOV,
379 "qed_iov_allocate_vfdb for %d VFs\n", num_vfs);
380
381 /* Allocate PF Mailbox buffer (per-VF) */
382 p_iov_info->mbx_msg_size = sizeof(union vfpf_tlvs) * num_vfs;
383 p_v_addr = &p_iov_info->mbx_msg_virt_addr;
384 *p_v_addr = dma_alloc_coherent(&p_hwfn->cdev->pdev->dev,
385 p_iov_info->mbx_msg_size,
386 &p_iov_info->mbx_msg_phys_addr,
387 GFP_KERNEL);
388 if (!*p_v_addr)
389 return -ENOMEM;
390
391 /* Allocate PF Mailbox Reply buffer (per-VF) */
392 p_iov_info->mbx_reply_size = sizeof(union pfvf_tlvs) * num_vfs;
393 p_v_addr = &p_iov_info->mbx_reply_virt_addr;
394 *p_v_addr = dma_alloc_coherent(&p_hwfn->cdev->pdev->dev,
395 p_iov_info->mbx_reply_size,
396 &p_iov_info->mbx_reply_phys_addr,
397 GFP_KERNEL);
398 if (!*p_v_addr)
399 return -ENOMEM;
400
401 p_iov_info->bulletins_size = sizeof(struct qed_bulletin_content) *
402 num_vfs;
403 p_v_addr = &p_iov_info->p_bulletins;
404 *p_v_addr = dma_alloc_coherent(&p_hwfn->cdev->pdev->dev,
405 p_iov_info->bulletins_size,
406 &p_iov_info->bulletins_phys,
407 GFP_KERNEL);
408 if (!*p_v_addr)
409 return -ENOMEM;
410
411 DP_VERBOSE(p_hwfn,
412 QED_MSG_IOV,
413 "PF's Requests mailbox [%p virt 0x%llx phys], Response mailbox [%p virt 0x%llx phys] Bulletins [%p virt 0x%llx phys]\n",
414 p_iov_info->mbx_msg_virt_addr,
415 (u64) p_iov_info->mbx_msg_phys_addr,
416 p_iov_info->mbx_reply_virt_addr,
417 (u64) p_iov_info->mbx_reply_phys_addr,
418 p_iov_info->p_bulletins, (u64) p_iov_info->bulletins_phys);
419
420 return 0;
421 }
422
423 static void qed_iov_free_vfdb(struct qed_hwfn *p_hwfn)
424 {
425 struct qed_pf_iov *p_iov_info = p_hwfn->pf_iov_info;
426
427 if (p_hwfn->pf_iov_info->mbx_msg_virt_addr)
428 dma_free_coherent(&p_hwfn->cdev->pdev->dev,
429 p_iov_info->mbx_msg_size,
430 p_iov_info->mbx_msg_virt_addr,
431 p_iov_info->mbx_msg_phys_addr);
432
433 if (p_hwfn->pf_iov_info->mbx_reply_virt_addr)
434 dma_free_coherent(&p_hwfn->cdev->pdev->dev,
435 p_iov_info->mbx_reply_size,
436 p_iov_info->mbx_reply_virt_addr,
437 p_iov_info->mbx_reply_phys_addr);
438
439 if (p_iov_info->p_bulletins)
440 dma_free_coherent(&p_hwfn->cdev->pdev->dev,
441 p_iov_info->bulletins_size,
442 p_iov_info->p_bulletins,
443 p_iov_info->bulletins_phys);
444 }
445
446 int qed_iov_alloc(struct qed_hwfn *p_hwfn)
447 {
448 struct qed_pf_iov *p_sriov;
449
450 if (!IS_PF_SRIOV(p_hwfn)) {
451 DP_VERBOSE(p_hwfn, QED_MSG_IOV,
452 "No SR-IOV - no need for IOV db\n");
453 return 0;
454 }
455
456 p_sriov = kzalloc(sizeof(*p_sriov), GFP_KERNEL);
457 if (!p_sriov) {
458 DP_NOTICE(p_hwfn, "Failed to allocate `struct qed_sriov'\n");
459 return -ENOMEM;
460 }
461
462 p_hwfn->pf_iov_info = p_sriov;
463
464 return qed_iov_allocate_vfdb(p_hwfn);
465 }
466
467 void qed_iov_setup(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
468 {
469 if (!IS_PF_SRIOV(p_hwfn) || !IS_PF_SRIOV_ALLOC(p_hwfn))
470 return;
471
472 qed_iov_setup_vfdb(p_hwfn);
473 qed_iov_clear_vf_igu_blocks(p_hwfn, p_ptt);
474 }
475
476 void qed_iov_free(struct qed_hwfn *p_hwfn)
477 {
478 if (IS_PF_SRIOV_ALLOC(p_hwfn)) {
479 qed_iov_free_vfdb(p_hwfn);
480 kfree(p_hwfn->pf_iov_info);
481 }
482 }
483
484 void qed_iov_free_hw_info(struct qed_dev *cdev)
485 {
486 kfree(cdev->p_iov_info);
487 cdev->p_iov_info = NULL;
488 }
489
490 int qed_iov_hw_info(struct qed_hwfn *p_hwfn)
491 {
492 struct qed_dev *cdev = p_hwfn->cdev;
493 int pos;
494 int rc;
495
496 if (IS_VF(p_hwfn->cdev))
497 return 0;
498
499 /* Learn the PCI configuration */
500 pos = pci_find_ext_capability(p_hwfn->cdev->pdev,
501 PCI_EXT_CAP_ID_SRIOV);
502 if (!pos) {
503 DP_VERBOSE(p_hwfn, QED_MSG_IOV, "No PCIe IOV support\n");
504 return 0;
505 }
506
507 /* Allocate a new struct for IOV information */
508 cdev->p_iov_info = kzalloc(sizeof(*cdev->p_iov_info), GFP_KERNEL);
509 if (!cdev->p_iov_info) {
510 DP_NOTICE(p_hwfn, "Can't support IOV due to lack of memory\n");
511 return -ENOMEM;
512 }
513 cdev->p_iov_info->pos = pos;
514
515 rc = qed_iov_pci_cfg_info(cdev);
516 if (rc)
517 return rc;
518
519 /* We want PF IOV to be synonemous with the existance of p_iov_info;
520 * In case the capability is published but there are no VFs, simply
521 * de-allocate the struct.
522 */
523 if (!cdev->p_iov_info->total_vfs) {
524 DP_VERBOSE(p_hwfn, QED_MSG_IOV,
525 "IOV capabilities, but no VFs are published\n");
526 kfree(cdev->p_iov_info);
527 cdev->p_iov_info = NULL;
528 return 0;
529 }
530
531 /* Calculate the first VF index - this is a bit tricky; Basically,
532 * VFs start at offset 16 relative to PF0, and 2nd engine VFs begin
533 * after the first engine's VFs.
534 */
535 cdev->p_iov_info->first_vf_in_pf = p_hwfn->cdev->p_iov_info->offset +
536 p_hwfn->abs_pf_id - 16;
537 if (QED_PATH_ID(p_hwfn))
538 cdev->p_iov_info->first_vf_in_pf -= MAX_NUM_VFS_BB;
539
540 DP_VERBOSE(p_hwfn, QED_MSG_IOV,
541 "First VF in hwfn 0x%08x\n",
542 cdev->p_iov_info->first_vf_in_pf);
543
544 return 0;
545 }
546
547 static bool qed_iov_pf_sanity_check(struct qed_hwfn *p_hwfn, int vfid)
548 {
549 /* Check PF supports sriov */
550 if (IS_VF(p_hwfn->cdev) || !IS_QED_SRIOV(p_hwfn->cdev) ||
551 !IS_PF_SRIOV_ALLOC(p_hwfn))
552 return false;
553
554 /* Check VF validity */
555 if (!qed_iov_is_valid_vfid(p_hwfn, vfid, true))
556 return false;
557
558 return true;
559 }
560
561 static void qed_iov_set_vf_to_disable(struct qed_dev *cdev,
562 u16 rel_vf_id, u8 to_disable)
563 {
564 struct qed_vf_info *vf;
565 int i;
566
567 for_each_hwfn(cdev, i) {
568 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
569
570 vf = qed_iov_get_vf_info(p_hwfn, rel_vf_id, false);
571 if (!vf)
572 continue;
573
574 vf->to_disable = to_disable;
575 }
576 }
577
578 void qed_iov_set_vfs_to_disable(struct qed_dev *cdev, u8 to_disable)
579 {
580 u16 i;
581
582 if (!IS_QED_SRIOV(cdev))
583 return;
584
585 for (i = 0; i < cdev->p_iov_info->total_vfs; i++)
586 qed_iov_set_vf_to_disable(cdev, i, to_disable);
587 }
588
589 static void qed_iov_vf_pglue_clear_err(struct qed_hwfn *p_hwfn,
590 struct qed_ptt *p_ptt, u8 abs_vfid)
591 {
592 qed_wr(p_hwfn, p_ptt,
593 PGLUE_B_REG_WAS_ERROR_VF_31_0_CLR + (abs_vfid >> 5) * 4,
594 1 << (abs_vfid & 0x1f));
595 }
596
597 static void qed_iov_vf_igu_reset(struct qed_hwfn *p_hwfn,
598 struct qed_ptt *p_ptt, struct qed_vf_info *vf)
599 {
600 int i;
601
602 /* Set VF masks and configuration - pretend */
603 qed_fid_pretend(p_hwfn, p_ptt, (u16) vf->concrete_fid);
604
605 qed_wr(p_hwfn, p_ptt, IGU_REG_STATISTIC_NUM_VF_MSG_SENT, 0);
606
607 /* unpretend */
608 qed_fid_pretend(p_hwfn, p_ptt, (u16) p_hwfn->hw_info.concrete_fid);
609
610 /* iterate over all queues, clear sb consumer */
611 for (i = 0; i < vf->num_sbs; i++)
612 qed_int_igu_init_pure_rt_single(p_hwfn, p_ptt,
613 vf->igu_sbs[i],
614 vf->opaque_fid, true);
615 }
616
617 static void qed_iov_vf_igu_set_int(struct qed_hwfn *p_hwfn,
618 struct qed_ptt *p_ptt,
619 struct qed_vf_info *vf, bool enable)
620 {
621 u32 igu_vf_conf;
622
623 qed_fid_pretend(p_hwfn, p_ptt, (u16) vf->concrete_fid);
624
625 igu_vf_conf = qed_rd(p_hwfn, p_ptt, IGU_REG_VF_CONFIGURATION);
626
627 if (enable)
628 igu_vf_conf |= IGU_VF_CONF_MSI_MSIX_EN;
629 else
630 igu_vf_conf &= ~IGU_VF_CONF_MSI_MSIX_EN;
631
632 qed_wr(p_hwfn, p_ptt, IGU_REG_VF_CONFIGURATION, igu_vf_conf);
633
634 /* unpretend */
635 qed_fid_pretend(p_hwfn, p_ptt, (u16) p_hwfn->hw_info.concrete_fid);
636 }
637
638 static int qed_iov_enable_vf_access(struct qed_hwfn *p_hwfn,
639 struct qed_ptt *p_ptt,
640 struct qed_vf_info *vf)
641 {
642 u32 igu_vf_conf = IGU_VF_CONF_FUNC_EN;
643 int rc;
644
645 if (vf->to_disable)
646 return 0;
647
648 DP_VERBOSE(p_hwfn,
649 QED_MSG_IOV,
650 "Enable internal access for vf %x [abs %x]\n",
651 vf->abs_vf_id, QED_VF_ABS_ID(p_hwfn, vf));
652
653 qed_iov_vf_pglue_clear_err(p_hwfn, p_ptt, QED_VF_ABS_ID(p_hwfn, vf));
654
655 qed_iov_vf_igu_reset(p_hwfn, p_ptt, vf);
656
657 rc = qed_mcp_config_vf_msix(p_hwfn, p_ptt, vf->abs_vf_id, vf->num_sbs);
658 if (rc)
659 return rc;
660
661 qed_fid_pretend(p_hwfn, p_ptt, (u16) vf->concrete_fid);
662
663 SET_FIELD(igu_vf_conf, IGU_VF_CONF_PARENT, p_hwfn->rel_pf_id);
664 STORE_RT_REG(p_hwfn, IGU_REG_VF_CONFIGURATION_RT_OFFSET, igu_vf_conf);
665
666 qed_init_run(p_hwfn, p_ptt, PHASE_VF, vf->abs_vf_id,
667 p_hwfn->hw_info.hw_mode);
668
669 /* unpretend */
670 qed_fid_pretend(p_hwfn, p_ptt, (u16) p_hwfn->hw_info.concrete_fid);
671
672 vf->state = VF_FREE;
673
674 return rc;
675 }
676
677 /**
678 * @brief qed_iov_config_perm_table - configure the permission
679 * zone table.
680 * In E4, queue zone permission table size is 320x9. There
681 * are 320 VF queues for single engine device (256 for dual
682 * engine device), and each entry has the following format:
683 * {Valid, VF[7:0]}
684 * @param p_hwfn
685 * @param p_ptt
686 * @param vf
687 * @param enable
688 */
689 static void qed_iov_config_perm_table(struct qed_hwfn *p_hwfn,
690 struct qed_ptt *p_ptt,
691 struct qed_vf_info *vf, u8 enable)
692 {
693 u32 reg_addr, val;
694 u16 qzone_id = 0;
695 int qid;
696
697 for (qid = 0; qid < vf->num_rxqs; qid++) {
698 qed_fw_l2_queue(p_hwfn, vf->vf_queues[qid].fw_rx_qid,
699 &qzone_id);
700
701 reg_addr = PSWHST_REG_ZONE_PERMISSION_TABLE + qzone_id * 4;
702 val = enable ? (vf->abs_vf_id | (1 << 8)) : 0;
703 qed_wr(p_hwfn, p_ptt, reg_addr, val);
704 }
705 }
706
707 static void qed_iov_enable_vf_traffic(struct qed_hwfn *p_hwfn,
708 struct qed_ptt *p_ptt,
709 struct qed_vf_info *vf)
710 {
711 /* Reset vf in IGU - interrupts are still disabled */
712 qed_iov_vf_igu_reset(p_hwfn, p_ptt, vf);
713
714 qed_iov_vf_igu_set_int(p_hwfn, p_ptt, vf, 1);
715
716 /* Permission Table */
717 qed_iov_config_perm_table(p_hwfn, p_ptt, vf, true);
718 }
719
720 static u8 qed_iov_alloc_vf_igu_sbs(struct qed_hwfn *p_hwfn,
721 struct qed_ptt *p_ptt,
722 struct qed_vf_info *vf, u16 num_rx_queues)
723 {
724 struct qed_igu_block *igu_blocks;
725 int qid = 0, igu_id = 0;
726 u32 val = 0;
727
728 igu_blocks = p_hwfn->hw_info.p_igu_info->igu_map.igu_blocks;
729
730 if (num_rx_queues > p_hwfn->hw_info.p_igu_info->free_blks)
731 num_rx_queues = p_hwfn->hw_info.p_igu_info->free_blks;
732 p_hwfn->hw_info.p_igu_info->free_blks -= num_rx_queues;
733
734 SET_FIELD(val, IGU_MAPPING_LINE_FUNCTION_NUMBER, vf->abs_vf_id);
735 SET_FIELD(val, IGU_MAPPING_LINE_VALID, 1);
736 SET_FIELD(val, IGU_MAPPING_LINE_PF_VALID, 0);
737
738 while ((qid < num_rx_queues) &&
739 (igu_id < QED_MAPPING_MEMORY_SIZE(p_hwfn->cdev))) {
740 if (igu_blocks[igu_id].status & QED_IGU_STATUS_FREE) {
741 struct cau_sb_entry sb_entry;
742
743 vf->igu_sbs[qid] = (u16)igu_id;
744 igu_blocks[igu_id].status &= ~QED_IGU_STATUS_FREE;
745
746 SET_FIELD(val, IGU_MAPPING_LINE_VECTOR_NUMBER, qid);
747
748 qed_wr(p_hwfn, p_ptt,
749 IGU_REG_MAPPING_MEMORY + sizeof(u32) * igu_id,
750 val);
751
752 /* Configure igu sb in CAU which were marked valid */
753 qed_init_cau_sb_entry(p_hwfn, &sb_entry,
754 p_hwfn->rel_pf_id,
755 vf->abs_vf_id, 1);
756 qed_dmae_host2grc(p_hwfn, p_ptt,
757 (u64)(uintptr_t)&sb_entry,
758 CAU_REG_SB_VAR_MEMORY +
759 igu_id * sizeof(u64), 2, 0);
760 qid++;
761 }
762 igu_id++;
763 }
764
765 vf->num_sbs = (u8) num_rx_queues;
766
767 return vf->num_sbs;
768 }
769
770 static void qed_iov_free_vf_igu_sbs(struct qed_hwfn *p_hwfn,
771 struct qed_ptt *p_ptt,
772 struct qed_vf_info *vf)
773 {
774 struct qed_igu_info *p_info = p_hwfn->hw_info.p_igu_info;
775 int idx, igu_id;
776 u32 addr, val;
777
778 /* Invalidate igu CAM lines and mark them as free */
779 for (idx = 0; idx < vf->num_sbs; idx++) {
780 igu_id = vf->igu_sbs[idx];
781 addr = IGU_REG_MAPPING_MEMORY + sizeof(u32) * igu_id;
782
783 val = qed_rd(p_hwfn, p_ptt, addr);
784 SET_FIELD(val, IGU_MAPPING_LINE_VALID, 0);
785 qed_wr(p_hwfn, p_ptt, addr, val);
786
787 p_info->igu_map.igu_blocks[igu_id].status |=
788 QED_IGU_STATUS_FREE;
789
790 p_hwfn->hw_info.p_igu_info->free_blks++;
791 }
792
793 vf->num_sbs = 0;
794 }
795
796 static int qed_iov_init_hw_for_vf(struct qed_hwfn *p_hwfn,
797 struct qed_ptt *p_ptt,
798 u16 rel_vf_id, u16 num_rx_queues)
799 {
800 u8 num_of_vf_avaiable_chains = 0;
801 struct qed_vf_info *vf = NULL;
802 int rc = 0;
803 u32 cids;
804 u8 i;
805
806 vf = qed_iov_get_vf_info(p_hwfn, rel_vf_id, false);
807 if (!vf) {
808 DP_ERR(p_hwfn, "qed_iov_init_hw_for_vf : vf is NULL\n");
809 return -EINVAL;
810 }
811
812 if (vf->b_init) {
813 DP_NOTICE(p_hwfn, "VF[%d] is already active.\n", rel_vf_id);
814 return -EINVAL;
815 }
816
817 /* Limit number of queues according to number of CIDs */
818 qed_cxt_get_proto_cid_count(p_hwfn, PROTOCOLID_ETH, &cids);
819 DP_VERBOSE(p_hwfn,
820 QED_MSG_IOV,
821 "VF[%d] - requesting to initialize for 0x%04x queues [0x%04x CIDs available]\n",
822 vf->relative_vf_id, num_rx_queues, (u16) cids);
823 num_rx_queues = min_t(u16, num_rx_queues, ((u16) cids));
824
825 num_of_vf_avaiable_chains = qed_iov_alloc_vf_igu_sbs(p_hwfn,
826 p_ptt,
827 vf,
828 num_rx_queues);
829 if (!num_of_vf_avaiable_chains) {
830 DP_ERR(p_hwfn, "no available igu sbs\n");
831 return -ENOMEM;
832 }
833
834 /* Choose queue number and index ranges */
835 vf->num_rxqs = num_of_vf_avaiable_chains;
836 vf->num_txqs = num_of_vf_avaiable_chains;
837
838 for (i = 0; i < vf->num_rxqs; i++) {
839 u16 queue_id = qed_int_queue_id_from_sb_id(p_hwfn,
840 vf->igu_sbs[i]);
841
842 if (queue_id > RESC_NUM(p_hwfn, QED_L2_QUEUE)) {
843 DP_NOTICE(p_hwfn,
844 "VF[%d] will require utilizing of out-of-bounds queues - %04x\n",
845 vf->relative_vf_id, queue_id);
846 return -EINVAL;
847 }
848
849 /* CIDs are per-VF, so no problem having them 0-based. */
850 vf->vf_queues[i].fw_rx_qid = queue_id;
851 vf->vf_queues[i].fw_tx_qid = queue_id;
852 vf->vf_queues[i].fw_cid = i;
853
854 DP_VERBOSE(p_hwfn, QED_MSG_IOV,
855 "VF[%d] - [%d] SB %04x, Tx/Rx queue %04x CID %04x\n",
856 vf->relative_vf_id, i, vf->igu_sbs[i], queue_id, i);
857 }
858 rc = qed_iov_enable_vf_access(p_hwfn, p_ptt, vf);
859 if (!rc) {
860 vf->b_init = true;
861
862 if (IS_LEAD_HWFN(p_hwfn))
863 p_hwfn->cdev->p_iov_info->num_vfs++;
864 }
865
866 return rc;
867 }
868
869 static void qed_iov_set_link(struct qed_hwfn *p_hwfn,
870 u16 vfid,
871 struct qed_mcp_link_params *params,
872 struct qed_mcp_link_state *link,
873 struct qed_mcp_link_capabilities *p_caps)
874 {
875 struct qed_vf_info *p_vf = qed_iov_get_vf_info(p_hwfn,
876 vfid,
877 false);
878 struct qed_bulletin_content *p_bulletin;
879
880 if (!p_vf)
881 return;
882
883 p_bulletin = p_vf->bulletin.p_virt;
884 p_bulletin->req_autoneg = params->speed.autoneg;
885 p_bulletin->req_adv_speed = params->speed.advertised_speeds;
886 p_bulletin->req_forced_speed = params->speed.forced_speed;
887 p_bulletin->req_autoneg_pause = params->pause.autoneg;
888 p_bulletin->req_forced_rx = params->pause.forced_rx;
889 p_bulletin->req_forced_tx = params->pause.forced_tx;
890 p_bulletin->req_loopback = params->loopback_mode;
891
892 p_bulletin->link_up = link->link_up;
893 p_bulletin->speed = link->speed;
894 p_bulletin->full_duplex = link->full_duplex;
895 p_bulletin->autoneg = link->an;
896 p_bulletin->autoneg_complete = link->an_complete;
897 p_bulletin->parallel_detection = link->parallel_detection;
898 p_bulletin->pfc_enabled = link->pfc_enabled;
899 p_bulletin->partner_adv_speed = link->partner_adv_speed;
900 p_bulletin->partner_tx_flow_ctrl_en = link->partner_tx_flow_ctrl_en;
901 p_bulletin->partner_rx_flow_ctrl_en = link->partner_rx_flow_ctrl_en;
902 p_bulletin->partner_adv_pause = link->partner_adv_pause;
903 p_bulletin->sfp_tx_fault = link->sfp_tx_fault;
904
905 p_bulletin->capability_speed = p_caps->speed_capabilities;
906 }
907
908 static int qed_iov_release_hw_for_vf(struct qed_hwfn *p_hwfn,
909 struct qed_ptt *p_ptt, u16 rel_vf_id)
910 {
911 struct qed_mcp_link_capabilities caps;
912 struct qed_mcp_link_params params;
913 struct qed_mcp_link_state link;
914 struct qed_vf_info *vf = NULL;
915
916 vf = qed_iov_get_vf_info(p_hwfn, rel_vf_id, true);
917 if (!vf) {
918 DP_ERR(p_hwfn, "qed_iov_release_hw_for_vf : vf is NULL\n");
919 return -EINVAL;
920 }
921
922 if (vf->bulletin.p_virt)
923 memset(vf->bulletin.p_virt, 0, sizeof(*vf->bulletin.p_virt));
924
925 memset(&vf->p_vf_info, 0, sizeof(vf->p_vf_info));
926
927 /* Get the link configuration back in bulletin so
928 * that when VFs are re-enabled they get the actual
929 * link configuration.
930 */
931 memcpy(&params, qed_mcp_get_link_params(p_hwfn), sizeof(params));
932 memcpy(&link, qed_mcp_get_link_state(p_hwfn), sizeof(link));
933 memcpy(&caps, qed_mcp_get_link_capabilities(p_hwfn), sizeof(caps));
934 qed_iov_set_link(p_hwfn, rel_vf_id, &params, &link, &caps);
935
936 /* Forget the VF's acquisition message */
937 memset(&vf->acquire, 0, sizeof(vf->acquire));
938
939 /* disablng interrupts and resetting permission table was done during
940 * vf-close, however, we could get here without going through vf_close
941 */
942 /* Disable Interrupts for VF */
943 qed_iov_vf_igu_set_int(p_hwfn, p_ptt, vf, 0);
944
945 /* Reset Permission table */
946 qed_iov_config_perm_table(p_hwfn, p_ptt, vf, 0);
947
948 vf->num_rxqs = 0;
949 vf->num_txqs = 0;
950 qed_iov_free_vf_igu_sbs(p_hwfn, p_ptt, vf);
951
952 if (vf->b_init) {
953 vf->b_init = false;
954
955 if (IS_LEAD_HWFN(p_hwfn))
956 p_hwfn->cdev->p_iov_info->num_vfs--;
957 }
958
959 return 0;
960 }
961
962 static bool qed_iov_tlv_supported(u16 tlvtype)
963 {
964 return CHANNEL_TLV_NONE < tlvtype && tlvtype < CHANNEL_TLV_MAX;
965 }
966
967 /* place a given tlv on the tlv buffer, continuing current tlv list */
968 void *qed_add_tlv(struct qed_hwfn *p_hwfn, u8 **offset, u16 type, u16 length)
969 {
970 struct channel_tlv *tl = (struct channel_tlv *)*offset;
971
972 tl->type = type;
973 tl->length = length;
974
975 /* Offset should keep pointing to next TLV (the end of the last) */
976 *offset += length;
977
978 /* Return a pointer to the start of the added tlv */
979 return *offset - length;
980 }
981
982 /* list the types and lengths of the tlvs on the buffer */
983 void qed_dp_tlv_list(struct qed_hwfn *p_hwfn, void *tlvs_list)
984 {
985 u16 i = 1, total_length = 0;
986 struct channel_tlv *tlv;
987
988 do {
989 tlv = (struct channel_tlv *)((u8 *)tlvs_list + total_length);
990
991 /* output tlv */
992 DP_VERBOSE(p_hwfn, QED_MSG_IOV,
993 "TLV number %d: type %d, length %d\n",
994 i, tlv->type, tlv->length);
995
996 if (tlv->type == CHANNEL_TLV_LIST_END)
997 return;
998
999 /* Validate entry - protect against malicious VFs */
1000 if (!tlv->length) {
1001 DP_NOTICE(p_hwfn, "TLV of length 0 found\n");
1002 return;
1003 }
1004
1005 total_length += tlv->length;
1006
1007 if (total_length >= sizeof(struct tlv_buffer_size)) {
1008 DP_NOTICE(p_hwfn, "TLV ==> Buffer overflow\n");
1009 return;
1010 }
1011
1012 i++;
1013 } while (1);
1014 }
1015
1016 static void qed_iov_send_response(struct qed_hwfn *p_hwfn,
1017 struct qed_ptt *p_ptt,
1018 struct qed_vf_info *p_vf,
1019 u16 length, u8 status)
1020 {
1021 struct qed_iov_vf_mbx *mbx = &p_vf->vf_mbx;
1022 struct qed_dmae_params params;
1023 u8 eng_vf_id;
1024
1025 mbx->reply_virt->default_resp.hdr.status = status;
1026
1027 qed_dp_tlv_list(p_hwfn, mbx->reply_virt);
1028
1029 eng_vf_id = p_vf->abs_vf_id;
1030
1031 memset(&params, 0, sizeof(struct qed_dmae_params));
1032 params.flags = QED_DMAE_FLAG_VF_DST;
1033 params.dst_vfid = eng_vf_id;
1034
1035 qed_dmae_host2host(p_hwfn, p_ptt, mbx->reply_phys + sizeof(u64),
1036 mbx->req_virt->first_tlv.reply_address +
1037 sizeof(u64),
1038 (sizeof(union pfvf_tlvs) - sizeof(u64)) / 4,
1039 &params);
1040
1041 qed_dmae_host2host(p_hwfn, p_ptt, mbx->reply_phys,
1042 mbx->req_virt->first_tlv.reply_address,
1043 sizeof(u64) / 4, &params);
1044
1045 REG_WR(p_hwfn,
1046 GTT_BAR0_MAP_REG_USDM_RAM +
1047 USTORM_VF_PF_CHANNEL_READY_OFFSET(eng_vf_id), 1);
1048 }
1049
1050 static u16 qed_iov_vport_to_tlv(struct qed_hwfn *p_hwfn,
1051 enum qed_iov_vport_update_flag flag)
1052 {
1053 switch (flag) {
1054 case QED_IOV_VP_UPDATE_ACTIVATE:
1055 return CHANNEL_TLV_VPORT_UPDATE_ACTIVATE;
1056 case QED_IOV_VP_UPDATE_VLAN_STRIP:
1057 return CHANNEL_TLV_VPORT_UPDATE_VLAN_STRIP;
1058 case QED_IOV_VP_UPDATE_TX_SWITCH:
1059 return CHANNEL_TLV_VPORT_UPDATE_TX_SWITCH;
1060 case QED_IOV_VP_UPDATE_MCAST:
1061 return CHANNEL_TLV_VPORT_UPDATE_MCAST;
1062 case QED_IOV_VP_UPDATE_ACCEPT_PARAM:
1063 return CHANNEL_TLV_VPORT_UPDATE_ACCEPT_PARAM;
1064 case QED_IOV_VP_UPDATE_RSS:
1065 return CHANNEL_TLV_VPORT_UPDATE_RSS;
1066 case QED_IOV_VP_UPDATE_ACCEPT_ANY_VLAN:
1067 return CHANNEL_TLV_VPORT_UPDATE_ACCEPT_ANY_VLAN;
1068 case QED_IOV_VP_UPDATE_SGE_TPA:
1069 return CHANNEL_TLV_VPORT_UPDATE_SGE_TPA;
1070 default:
1071 return 0;
1072 }
1073 }
1074
1075 static u16 qed_iov_prep_vp_update_resp_tlvs(struct qed_hwfn *p_hwfn,
1076 struct qed_vf_info *p_vf,
1077 struct qed_iov_vf_mbx *p_mbx,
1078 u8 status,
1079 u16 tlvs_mask, u16 tlvs_accepted)
1080 {
1081 struct pfvf_def_resp_tlv *resp;
1082 u16 size, total_len, i;
1083
1084 memset(p_mbx->reply_virt, 0, sizeof(union pfvf_tlvs));
1085 p_mbx->offset = (u8 *)p_mbx->reply_virt;
1086 size = sizeof(struct pfvf_def_resp_tlv);
1087 total_len = size;
1088
1089 qed_add_tlv(p_hwfn, &p_mbx->offset, CHANNEL_TLV_VPORT_UPDATE, size);
1090
1091 /* Prepare response for all extended tlvs if they are found by PF */
1092 for (i = 0; i < QED_IOV_VP_UPDATE_MAX; i++) {
1093 if (!(tlvs_mask & (1 << i)))
1094 continue;
1095
1096 resp = qed_add_tlv(p_hwfn, &p_mbx->offset,
1097 qed_iov_vport_to_tlv(p_hwfn, i), size);
1098
1099 if (tlvs_accepted & (1 << i))
1100 resp->hdr.status = status;
1101 else
1102 resp->hdr.status = PFVF_STATUS_NOT_SUPPORTED;
1103
1104 DP_VERBOSE(p_hwfn,
1105 QED_MSG_IOV,
1106 "VF[%d] - vport_update response: TLV %d, status %02x\n",
1107 p_vf->relative_vf_id,
1108 qed_iov_vport_to_tlv(p_hwfn, i), resp->hdr.status);
1109
1110 total_len += size;
1111 }
1112
1113 qed_add_tlv(p_hwfn, &p_mbx->offset, CHANNEL_TLV_LIST_END,
1114 sizeof(struct channel_list_end_tlv));
1115
1116 return total_len;
1117 }
1118
1119 static void qed_iov_prepare_resp(struct qed_hwfn *p_hwfn,
1120 struct qed_ptt *p_ptt,
1121 struct qed_vf_info *vf_info,
1122 u16 type, u16 length, u8 status)
1123 {
1124 struct qed_iov_vf_mbx *mbx = &vf_info->vf_mbx;
1125
1126 mbx->offset = (u8 *)mbx->reply_virt;
1127
1128 qed_add_tlv(p_hwfn, &mbx->offset, type, length);
1129 qed_add_tlv(p_hwfn, &mbx->offset, CHANNEL_TLV_LIST_END,
1130 sizeof(struct channel_list_end_tlv));
1131
1132 qed_iov_send_response(p_hwfn, p_ptt, vf_info, length, status);
1133 }
1134
1135 struct qed_public_vf_info *qed_iov_get_public_vf_info(struct qed_hwfn *p_hwfn,
1136 u16 relative_vf_id,
1137 bool b_enabled_only)
1138 {
1139 struct qed_vf_info *vf = NULL;
1140
1141 vf = qed_iov_get_vf_info(p_hwfn, relative_vf_id, b_enabled_only);
1142 if (!vf)
1143 return NULL;
1144
1145 return &vf->p_vf_info;
1146 }
1147
1148 void qed_iov_clean_vf(struct qed_hwfn *p_hwfn, u8 vfid)
1149 {
1150 struct qed_public_vf_info *vf_info;
1151
1152 vf_info = qed_iov_get_public_vf_info(p_hwfn, vfid, false);
1153
1154 if (!vf_info)
1155 return;
1156
1157 /* Clear the VF mac */
1158 memset(vf_info->mac, 0, ETH_ALEN);
1159 }
1160
1161 static void qed_iov_vf_cleanup(struct qed_hwfn *p_hwfn,
1162 struct qed_vf_info *p_vf)
1163 {
1164 u32 i;
1165
1166 p_vf->vf_bulletin = 0;
1167 p_vf->vport_instance = 0;
1168 p_vf->configured_features = 0;
1169
1170 /* If VF previously requested less resources, go back to default */
1171 p_vf->num_rxqs = p_vf->num_sbs;
1172 p_vf->num_txqs = p_vf->num_sbs;
1173
1174 p_vf->num_active_rxqs = 0;
1175
1176 for (i = 0; i < QED_MAX_VF_CHAINS_PER_PF; i++)
1177 p_vf->vf_queues[i].rxq_active = 0;
1178
1179 memset(&p_vf->shadow_config, 0, sizeof(p_vf->shadow_config));
1180 memset(&p_vf->acquire, 0, sizeof(p_vf->acquire));
1181 qed_iov_clean_vf(p_hwfn, p_vf->relative_vf_id);
1182 }
1183
1184 static u8 qed_iov_vf_mbx_acquire_resc(struct qed_hwfn *p_hwfn,
1185 struct qed_ptt *p_ptt,
1186 struct qed_vf_info *p_vf,
1187 struct vf_pf_resc_request *p_req,
1188 struct pf_vf_resc *p_resp)
1189 {
1190 int i;
1191
1192 /* Queue related information */
1193 p_resp->num_rxqs = p_vf->num_rxqs;
1194 p_resp->num_txqs = p_vf->num_txqs;
1195 p_resp->num_sbs = p_vf->num_sbs;
1196
1197 for (i = 0; i < p_resp->num_sbs; i++) {
1198 p_resp->hw_sbs[i].hw_sb_id = p_vf->igu_sbs[i];
1199 p_resp->hw_sbs[i].sb_qid = 0;
1200 }
1201
1202 /* These fields are filled for backward compatibility.
1203 * Unused by modern vfs.
1204 */
1205 for (i = 0; i < p_resp->num_rxqs; i++) {
1206 qed_fw_l2_queue(p_hwfn, p_vf->vf_queues[i].fw_rx_qid,
1207 (u16 *)&p_resp->hw_qid[i]);
1208 p_resp->cid[i] = p_vf->vf_queues[i].fw_cid;
1209 }
1210
1211 /* Filter related information */
1212 p_resp->num_mac_filters = min_t(u8, p_vf->num_mac_filters,
1213 p_req->num_mac_filters);
1214 p_resp->num_vlan_filters = min_t(u8, p_vf->num_vlan_filters,
1215 p_req->num_vlan_filters);
1216
1217 /* This isn't really needed/enforced, but some legacy VFs might depend
1218 * on the correct filling of this field.
1219 */
1220 p_resp->num_mc_filters = QED_MAX_MC_ADDRS;
1221
1222 /* Validate sufficient resources for VF */
1223 if (p_resp->num_rxqs < p_req->num_rxqs ||
1224 p_resp->num_txqs < p_req->num_txqs ||
1225 p_resp->num_sbs < p_req->num_sbs ||
1226 p_resp->num_mac_filters < p_req->num_mac_filters ||
1227 p_resp->num_vlan_filters < p_req->num_vlan_filters ||
1228 p_resp->num_mc_filters < p_req->num_mc_filters) {
1229 DP_VERBOSE(p_hwfn,
1230 QED_MSG_IOV,
1231 "VF[%d] - Insufficient resources: rxq [%02x/%02x] txq [%02x/%02x] sbs [%02x/%02x] mac [%02x/%02x] vlan [%02x/%02x] mc [%02x/%02x]\n",
1232 p_vf->abs_vf_id,
1233 p_req->num_rxqs,
1234 p_resp->num_rxqs,
1235 p_req->num_rxqs,
1236 p_resp->num_txqs,
1237 p_req->num_sbs,
1238 p_resp->num_sbs,
1239 p_req->num_mac_filters,
1240 p_resp->num_mac_filters,
1241 p_req->num_vlan_filters,
1242 p_resp->num_vlan_filters,
1243 p_req->num_mc_filters, p_resp->num_mc_filters);
1244 return PFVF_STATUS_NO_RESOURCE;
1245 }
1246
1247 return PFVF_STATUS_SUCCESS;
1248 }
1249
1250 static void qed_iov_vf_mbx_acquire_stats(struct qed_hwfn *p_hwfn,
1251 struct pfvf_stats_info *p_stats)
1252 {
1253 p_stats->mstats.address = PXP_VF_BAR0_START_MSDM_ZONE_B +
1254 offsetof(struct mstorm_vf_zone,
1255 non_trigger.eth_queue_stat);
1256 p_stats->mstats.len = sizeof(struct eth_mstorm_per_queue_stat);
1257 p_stats->ustats.address = PXP_VF_BAR0_START_USDM_ZONE_B +
1258 offsetof(struct ustorm_vf_zone,
1259 non_trigger.eth_queue_stat);
1260 p_stats->ustats.len = sizeof(struct eth_ustorm_per_queue_stat);
1261 p_stats->pstats.address = PXP_VF_BAR0_START_PSDM_ZONE_B +
1262 offsetof(struct pstorm_vf_zone,
1263 non_trigger.eth_queue_stat);
1264 p_stats->pstats.len = sizeof(struct eth_pstorm_per_queue_stat);
1265 p_stats->tstats.address = 0;
1266 p_stats->tstats.len = 0;
1267 }
1268
1269 static void qed_iov_vf_mbx_acquire(struct qed_hwfn *p_hwfn,
1270 struct qed_ptt *p_ptt,
1271 struct qed_vf_info *vf)
1272 {
1273 struct qed_iov_vf_mbx *mbx = &vf->vf_mbx;
1274 struct pfvf_acquire_resp_tlv *resp = &mbx->reply_virt->acquire_resp;
1275 struct pf_vf_pfdev_info *pfdev_info = &resp->pfdev_info;
1276 struct vfpf_acquire_tlv *req = &mbx->req_virt->acquire;
1277 u8 vfpf_status = PFVF_STATUS_NOT_SUPPORTED;
1278 struct pf_vf_resc *resc = &resp->resc;
1279 int rc;
1280
1281 memset(resp, 0, sizeof(*resp));
1282
1283 /* Validate FW compatibility */
1284 if (req->vfdev_info.eth_fp_hsi_major != ETH_HSI_VER_MAJOR) {
1285 DP_INFO(p_hwfn,
1286 "VF[%d] needs fastpath HSI %02x.%02x, which is incompatible with loaded FW's faspath HSI %02x.%02x\n",
1287 vf->abs_vf_id,
1288 req->vfdev_info.eth_fp_hsi_major,
1289 req->vfdev_info.eth_fp_hsi_minor,
1290 ETH_HSI_VER_MAJOR, ETH_HSI_VER_MINOR);
1291
1292 /* Write the PF version so that VF would know which version
1293 * is supported.
1294 */
1295 pfdev_info->major_fp_hsi = ETH_HSI_VER_MAJOR;
1296 pfdev_info->minor_fp_hsi = ETH_HSI_VER_MINOR;
1297
1298 goto out;
1299 }
1300
1301 /* On 100g PFs, prevent old VFs from loading */
1302 if ((p_hwfn->cdev->num_hwfns > 1) &&
1303 !(req->vfdev_info.capabilities & VFPF_ACQUIRE_CAP_100G)) {
1304 DP_INFO(p_hwfn,
1305 "VF[%d] is running an old driver that doesn't support 100g\n",
1306 vf->abs_vf_id);
1307 goto out;
1308 }
1309
1310 /* Store the acquire message */
1311 memcpy(&vf->acquire, req, sizeof(vf->acquire));
1312
1313 vf->opaque_fid = req->vfdev_info.opaque_fid;
1314
1315 vf->vf_bulletin = req->bulletin_addr;
1316 vf->bulletin.size = (vf->bulletin.size < req->bulletin_size) ?
1317 vf->bulletin.size : req->bulletin_size;
1318
1319 /* fill in pfdev info */
1320 pfdev_info->chip_num = p_hwfn->cdev->chip_num;
1321 pfdev_info->db_size = 0;
1322 pfdev_info->indices_per_sb = PIS_PER_SB;
1323
1324 pfdev_info->capabilities = PFVF_ACQUIRE_CAP_DEFAULT_UNTAGGED |
1325 PFVF_ACQUIRE_CAP_POST_FW_OVERRIDE;
1326 if (p_hwfn->cdev->num_hwfns > 1)
1327 pfdev_info->capabilities |= PFVF_ACQUIRE_CAP_100G;
1328
1329 qed_iov_vf_mbx_acquire_stats(p_hwfn, &pfdev_info->stats_info);
1330
1331 memcpy(pfdev_info->port_mac, p_hwfn->hw_info.hw_mac_addr, ETH_ALEN);
1332
1333 pfdev_info->fw_major = FW_MAJOR_VERSION;
1334 pfdev_info->fw_minor = FW_MINOR_VERSION;
1335 pfdev_info->fw_rev = FW_REVISION_VERSION;
1336 pfdev_info->fw_eng = FW_ENGINEERING_VERSION;
1337 pfdev_info->minor_fp_hsi = min_t(u8,
1338 ETH_HSI_VER_MINOR,
1339 req->vfdev_info.eth_fp_hsi_minor);
1340 pfdev_info->os_type = VFPF_ACQUIRE_OS_LINUX;
1341 qed_mcp_get_mfw_ver(p_hwfn, p_ptt, &pfdev_info->mfw_ver, NULL);
1342
1343 pfdev_info->dev_type = p_hwfn->cdev->type;
1344 pfdev_info->chip_rev = p_hwfn->cdev->chip_rev;
1345
1346 /* Fill resources available to VF; Make sure there are enough to
1347 * satisfy the VF's request.
1348 */
1349 vfpf_status = qed_iov_vf_mbx_acquire_resc(p_hwfn, p_ptt, vf,
1350 &req->resc_request, resc);
1351 if (vfpf_status != PFVF_STATUS_SUCCESS)
1352 goto out;
1353
1354 /* Start the VF in FW */
1355 rc = qed_sp_vf_start(p_hwfn, vf);
1356 if (rc) {
1357 DP_NOTICE(p_hwfn, "Failed to start VF[%02x]\n", vf->abs_vf_id);
1358 vfpf_status = PFVF_STATUS_FAILURE;
1359 goto out;
1360 }
1361
1362 /* Fill agreed size of bulletin board in response */
1363 resp->bulletin_size = vf->bulletin.size;
1364 qed_iov_post_vf_bulletin(p_hwfn, vf->relative_vf_id, p_ptt);
1365
1366 DP_VERBOSE(p_hwfn,
1367 QED_MSG_IOV,
1368 "VF[%d] ACQUIRE_RESPONSE: pfdev_info- chip_num=0x%x, db_size=%d, idx_per_sb=%d, pf_cap=0x%llx\n"
1369 "resources- n_rxq-%d, n_txq-%d, n_sbs-%d, n_macs-%d, n_vlans-%d\n",
1370 vf->abs_vf_id,
1371 resp->pfdev_info.chip_num,
1372 resp->pfdev_info.db_size,
1373 resp->pfdev_info.indices_per_sb,
1374 resp->pfdev_info.capabilities,
1375 resc->num_rxqs,
1376 resc->num_txqs,
1377 resc->num_sbs,
1378 resc->num_mac_filters,
1379 resc->num_vlan_filters);
1380 vf->state = VF_ACQUIRED;
1381
1382 /* Prepare Response */
1383 out:
1384 qed_iov_prepare_resp(p_hwfn, p_ptt, vf, CHANNEL_TLV_ACQUIRE,
1385 sizeof(struct pfvf_acquire_resp_tlv), vfpf_status);
1386 }
1387
1388 static int __qed_iov_spoofchk_set(struct qed_hwfn *p_hwfn,
1389 struct qed_vf_info *p_vf, bool val)
1390 {
1391 struct qed_sp_vport_update_params params;
1392 int rc;
1393
1394 if (val == p_vf->spoof_chk) {
1395 DP_VERBOSE(p_hwfn, QED_MSG_IOV,
1396 "Spoofchk value[%d] is already configured\n", val);
1397 return 0;
1398 }
1399
1400 memset(&params, 0, sizeof(struct qed_sp_vport_update_params));
1401 params.opaque_fid = p_vf->opaque_fid;
1402 params.vport_id = p_vf->vport_id;
1403 params.update_anti_spoofing_en_flg = 1;
1404 params.anti_spoofing_en = val;
1405
1406 rc = qed_sp_vport_update(p_hwfn, &params, QED_SPQ_MODE_EBLOCK, NULL);
1407 if (rc) {
1408 p_vf->spoof_chk = val;
1409 p_vf->req_spoofchk_val = p_vf->spoof_chk;
1410 DP_VERBOSE(p_hwfn, QED_MSG_IOV,
1411 "Spoofchk val[%d] configured\n", val);
1412 } else {
1413 DP_VERBOSE(p_hwfn, QED_MSG_IOV,
1414 "Spoofchk configuration[val:%d] failed for VF[%d]\n",
1415 val, p_vf->relative_vf_id);
1416 }
1417
1418 return rc;
1419 }
1420
1421 static int qed_iov_reconfigure_unicast_vlan(struct qed_hwfn *p_hwfn,
1422 struct qed_vf_info *p_vf)
1423 {
1424 struct qed_filter_ucast filter;
1425 int rc = 0;
1426 int i;
1427
1428 memset(&filter, 0, sizeof(filter));
1429 filter.is_rx_filter = 1;
1430 filter.is_tx_filter = 1;
1431 filter.vport_to_add_to = p_vf->vport_id;
1432 filter.opcode = QED_FILTER_ADD;
1433
1434 /* Reconfigure vlans */
1435 for (i = 0; i < QED_ETH_VF_NUM_VLAN_FILTERS + 1; i++) {
1436 if (!p_vf->shadow_config.vlans[i].used)
1437 continue;
1438
1439 filter.type = QED_FILTER_VLAN;
1440 filter.vlan = p_vf->shadow_config.vlans[i].vid;
1441 DP_VERBOSE(p_hwfn,
1442 QED_MSG_IOV,
1443 "Reconfiguring VLAN [0x%04x] for VF [%04x]\n",
1444 filter.vlan, p_vf->relative_vf_id);
1445 rc = qed_sp_eth_filter_ucast(p_hwfn,
1446 p_vf->opaque_fid,
1447 &filter,
1448 QED_SPQ_MODE_CB, NULL);
1449 if (rc) {
1450 DP_NOTICE(p_hwfn,
1451 "Failed to configure VLAN [%04x] to VF [%04x]\n",
1452 filter.vlan, p_vf->relative_vf_id);
1453 break;
1454 }
1455 }
1456
1457 return rc;
1458 }
1459
1460 static int
1461 qed_iov_reconfigure_unicast_shadow(struct qed_hwfn *p_hwfn,
1462 struct qed_vf_info *p_vf, u64 events)
1463 {
1464 int rc = 0;
1465
1466 if ((events & (1 << VLAN_ADDR_FORCED)) &&
1467 !(p_vf->configured_features & (1 << VLAN_ADDR_FORCED)))
1468 rc = qed_iov_reconfigure_unicast_vlan(p_hwfn, p_vf);
1469
1470 return rc;
1471 }
1472
1473 static int qed_iov_configure_vport_forced(struct qed_hwfn *p_hwfn,
1474 struct qed_vf_info *p_vf, u64 events)
1475 {
1476 int rc = 0;
1477 struct qed_filter_ucast filter;
1478
1479 if (!p_vf->vport_instance)
1480 return -EINVAL;
1481
1482 if (events & (1 << MAC_ADDR_FORCED)) {
1483 /* Since there's no way [currently] of removing the MAC,
1484 * we can always assume this means we need to force it.
1485 */
1486 memset(&filter, 0, sizeof(filter));
1487 filter.type = QED_FILTER_MAC;
1488 filter.opcode = QED_FILTER_REPLACE;
1489 filter.is_rx_filter = 1;
1490 filter.is_tx_filter = 1;
1491 filter.vport_to_add_to = p_vf->vport_id;
1492 ether_addr_copy(filter.mac, p_vf->bulletin.p_virt->mac);
1493
1494 rc = qed_sp_eth_filter_ucast(p_hwfn, p_vf->opaque_fid,
1495 &filter, QED_SPQ_MODE_CB, NULL);
1496 if (rc) {
1497 DP_NOTICE(p_hwfn,
1498 "PF failed to configure MAC for VF\n");
1499 return rc;
1500 }
1501
1502 p_vf->configured_features |= 1 << MAC_ADDR_FORCED;
1503 }
1504
1505 if (events & (1 << VLAN_ADDR_FORCED)) {
1506 struct qed_sp_vport_update_params vport_update;
1507 u8 removal;
1508 int i;
1509
1510 memset(&filter, 0, sizeof(filter));
1511 filter.type = QED_FILTER_VLAN;
1512 filter.is_rx_filter = 1;
1513 filter.is_tx_filter = 1;
1514 filter.vport_to_add_to = p_vf->vport_id;
1515 filter.vlan = p_vf->bulletin.p_virt->pvid;
1516 filter.opcode = filter.vlan ? QED_FILTER_REPLACE :
1517 QED_FILTER_FLUSH;
1518
1519 /* Send the ramrod */
1520 rc = qed_sp_eth_filter_ucast(p_hwfn, p_vf->opaque_fid,
1521 &filter, QED_SPQ_MODE_CB, NULL);
1522 if (rc) {
1523 DP_NOTICE(p_hwfn,
1524 "PF failed to configure VLAN for VF\n");
1525 return rc;
1526 }
1527
1528 /* Update the default-vlan & silent vlan stripping */
1529 memset(&vport_update, 0, sizeof(vport_update));
1530 vport_update.opaque_fid = p_vf->opaque_fid;
1531 vport_update.vport_id = p_vf->vport_id;
1532 vport_update.update_default_vlan_enable_flg = 1;
1533 vport_update.default_vlan_enable_flg = filter.vlan ? 1 : 0;
1534 vport_update.update_default_vlan_flg = 1;
1535 vport_update.default_vlan = filter.vlan;
1536
1537 vport_update.update_inner_vlan_removal_flg = 1;
1538 removal = filter.vlan ? 1
1539 : p_vf->shadow_config.inner_vlan_removal;
1540 vport_update.inner_vlan_removal_flg = removal;
1541 vport_update.silent_vlan_removal_flg = filter.vlan ? 1 : 0;
1542 rc = qed_sp_vport_update(p_hwfn,
1543 &vport_update,
1544 QED_SPQ_MODE_EBLOCK, NULL);
1545 if (rc) {
1546 DP_NOTICE(p_hwfn,
1547 "PF failed to configure VF vport for vlan\n");
1548 return rc;
1549 }
1550
1551 /* Update all the Rx queues */
1552 for (i = 0; i < QED_MAX_VF_CHAINS_PER_PF; i++) {
1553 u16 qid;
1554
1555 if (!p_vf->vf_queues[i].rxq_active)
1556 continue;
1557
1558 qid = p_vf->vf_queues[i].fw_rx_qid;
1559
1560 rc = qed_sp_eth_rx_queues_update(p_hwfn, qid,
1561 1, 0, 1,
1562 QED_SPQ_MODE_EBLOCK,
1563 NULL);
1564 if (rc) {
1565 DP_NOTICE(p_hwfn,
1566 "Failed to send Rx update fo queue[0x%04x]\n",
1567 qid);
1568 return rc;
1569 }
1570 }
1571
1572 if (filter.vlan)
1573 p_vf->configured_features |= 1 << VLAN_ADDR_FORCED;
1574 else
1575 p_vf->configured_features &= ~(1 << VLAN_ADDR_FORCED);
1576 }
1577
1578 /* If forced features are terminated, we need to configure the shadow
1579 * configuration back again.
1580 */
1581 if (events)
1582 qed_iov_reconfigure_unicast_shadow(p_hwfn, p_vf, events);
1583
1584 return rc;
1585 }
1586
1587 static void qed_iov_vf_mbx_start_vport(struct qed_hwfn *p_hwfn,
1588 struct qed_ptt *p_ptt,
1589 struct qed_vf_info *vf)
1590 {
1591 struct qed_sp_vport_start_params params = { 0 };
1592 struct qed_iov_vf_mbx *mbx = &vf->vf_mbx;
1593 struct vfpf_vport_start_tlv *start;
1594 u8 status = PFVF_STATUS_SUCCESS;
1595 struct qed_vf_info *vf_info;
1596 u64 *p_bitmap;
1597 int sb_id;
1598 int rc;
1599
1600 vf_info = qed_iov_get_vf_info(p_hwfn, (u16) vf->relative_vf_id, true);
1601 if (!vf_info) {
1602 DP_NOTICE(p_hwfn->cdev,
1603 "Failed to get VF info, invalid vfid [%d]\n",
1604 vf->relative_vf_id);
1605 return;
1606 }
1607
1608 vf->state = VF_ENABLED;
1609 start = &mbx->req_virt->start_vport;
1610
1611 /* Initialize Status block in CAU */
1612 for (sb_id = 0; sb_id < vf->num_sbs; sb_id++) {
1613 if (!start->sb_addr[sb_id]) {
1614 DP_VERBOSE(p_hwfn, QED_MSG_IOV,
1615 "VF[%d] did not fill the address of SB %d\n",
1616 vf->relative_vf_id, sb_id);
1617 break;
1618 }
1619
1620 qed_int_cau_conf_sb(p_hwfn, p_ptt,
1621 start->sb_addr[sb_id],
1622 vf->igu_sbs[sb_id],
1623 vf->abs_vf_id, 1);
1624 }
1625 qed_iov_enable_vf_traffic(p_hwfn, p_ptt, vf);
1626
1627 vf->mtu = start->mtu;
1628 vf->shadow_config.inner_vlan_removal = start->inner_vlan_removal;
1629
1630 /* Take into consideration configuration forced by hypervisor;
1631 * If none is configured, use the supplied VF values [for old
1632 * vfs that would still be fine, since they passed '0' as padding].
1633 */
1634 p_bitmap = &vf_info->bulletin.p_virt->valid_bitmap;
1635 if (!(*p_bitmap & (1 << VFPF_BULLETIN_UNTAGGED_DEFAULT_FORCED))) {
1636 u8 vf_req = start->only_untagged;
1637
1638 vf_info->bulletin.p_virt->default_only_untagged = vf_req;
1639 *p_bitmap |= 1 << VFPF_BULLETIN_UNTAGGED_DEFAULT;
1640 }
1641
1642 params.tpa_mode = start->tpa_mode;
1643 params.remove_inner_vlan = start->inner_vlan_removal;
1644 params.tx_switching = true;
1645
1646 params.only_untagged = vf_info->bulletin.p_virt->default_only_untagged;
1647 params.drop_ttl0 = false;
1648 params.concrete_fid = vf->concrete_fid;
1649 params.opaque_fid = vf->opaque_fid;
1650 params.vport_id = vf->vport_id;
1651 params.max_buffers_per_cqe = start->max_buffers_per_cqe;
1652 params.mtu = vf->mtu;
1653
1654 rc = qed_sp_eth_vport_start(p_hwfn, &params);
1655 if (rc != 0) {
1656 DP_ERR(p_hwfn,
1657 "qed_iov_vf_mbx_start_vport returned error %d\n", rc);
1658 status = PFVF_STATUS_FAILURE;
1659 } else {
1660 vf->vport_instance++;
1661
1662 /* Force configuration if needed on the newly opened vport */
1663 qed_iov_configure_vport_forced(p_hwfn, vf, *p_bitmap);
1664
1665 __qed_iov_spoofchk_set(p_hwfn, vf, vf->req_spoofchk_val);
1666 }
1667 qed_iov_prepare_resp(p_hwfn, p_ptt, vf, CHANNEL_TLV_VPORT_START,
1668 sizeof(struct pfvf_def_resp_tlv), status);
1669 }
1670
1671 static void qed_iov_vf_mbx_stop_vport(struct qed_hwfn *p_hwfn,
1672 struct qed_ptt *p_ptt,
1673 struct qed_vf_info *vf)
1674 {
1675 u8 status = PFVF_STATUS_SUCCESS;
1676 int rc;
1677
1678 vf->vport_instance--;
1679 vf->spoof_chk = false;
1680
1681 rc = qed_sp_vport_stop(p_hwfn, vf->opaque_fid, vf->vport_id);
1682 if (rc != 0) {
1683 DP_ERR(p_hwfn, "qed_iov_vf_mbx_stop_vport returned error %d\n",
1684 rc);
1685 status = PFVF_STATUS_FAILURE;
1686 }
1687
1688 /* Forget the configuration on the vport */
1689 vf->configured_features = 0;
1690 memset(&vf->shadow_config, 0, sizeof(vf->shadow_config));
1691
1692 qed_iov_prepare_resp(p_hwfn, p_ptt, vf, CHANNEL_TLV_VPORT_TEARDOWN,
1693 sizeof(struct pfvf_def_resp_tlv), status);
1694 }
1695
1696 static void qed_iov_vf_mbx_start_rxq_resp(struct qed_hwfn *p_hwfn,
1697 struct qed_ptt *p_ptt,
1698 struct qed_vf_info *vf, u8 status)
1699 {
1700 struct qed_iov_vf_mbx *mbx = &vf->vf_mbx;
1701 struct pfvf_start_queue_resp_tlv *p_tlv;
1702 struct vfpf_start_rxq_tlv *req;
1703
1704 mbx->offset = (u8 *)mbx->reply_virt;
1705
1706 p_tlv = qed_add_tlv(p_hwfn, &mbx->offset, CHANNEL_TLV_START_RXQ,
1707 sizeof(*p_tlv));
1708 qed_add_tlv(p_hwfn, &mbx->offset, CHANNEL_TLV_LIST_END,
1709 sizeof(struct channel_list_end_tlv));
1710
1711 /* Update the TLV with the response */
1712 if (status == PFVF_STATUS_SUCCESS) {
1713 req = &mbx->req_virt->start_rxq;
1714 p_tlv->offset = PXP_VF_BAR0_START_MSDM_ZONE_B +
1715 offsetof(struct mstorm_vf_zone,
1716 non_trigger.eth_rx_queue_producers) +
1717 sizeof(struct eth_rx_prod_data) * req->rx_qid;
1718 }
1719
1720 qed_iov_send_response(p_hwfn, p_ptt, vf, sizeof(*p_tlv), status);
1721 }
1722
1723 static void qed_iov_vf_mbx_start_rxq(struct qed_hwfn *p_hwfn,
1724 struct qed_ptt *p_ptt,
1725 struct qed_vf_info *vf)
1726 {
1727 struct qed_queue_start_common_params params;
1728 struct qed_iov_vf_mbx *mbx = &vf->vf_mbx;
1729 u8 status = PFVF_STATUS_NO_RESOURCE;
1730 struct vfpf_start_rxq_tlv *req;
1731 int rc;
1732
1733 memset(&params, 0, sizeof(params));
1734 req = &mbx->req_virt->start_rxq;
1735
1736 if (!qed_iov_validate_rxq(p_hwfn, vf, req->rx_qid) ||
1737 !qed_iov_validate_sb(p_hwfn, vf, req->hw_sb))
1738 goto out;
1739
1740 params.queue_id = vf->vf_queues[req->rx_qid].fw_rx_qid;
1741 params.vf_qid = req->rx_qid;
1742 params.vport_id = vf->vport_id;
1743 params.sb = req->hw_sb;
1744 params.sb_idx = req->sb_index;
1745
1746 rc = qed_sp_eth_rxq_start_ramrod(p_hwfn, vf->opaque_fid,
1747 vf->vf_queues[req->rx_qid].fw_cid,
1748 &params,
1749 vf->abs_vf_id + 0x10,
1750 req->bd_max_bytes,
1751 req->rxq_addr,
1752 req->cqe_pbl_addr, req->cqe_pbl_size);
1753
1754 if (rc) {
1755 status = PFVF_STATUS_FAILURE;
1756 } else {
1757 status = PFVF_STATUS_SUCCESS;
1758 vf->vf_queues[req->rx_qid].rxq_active = true;
1759 vf->num_active_rxqs++;
1760 }
1761
1762 out:
1763 qed_iov_vf_mbx_start_rxq_resp(p_hwfn, p_ptt, vf, status);
1764 }
1765
1766 static void qed_iov_vf_mbx_start_txq(struct qed_hwfn *p_hwfn,
1767 struct qed_ptt *p_ptt,
1768 struct qed_vf_info *vf)
1769 {
1770 u16 length = sizeof(struct pfvf_def_resp_tlv);
1771 struct qed_queue_start_common_params params;
1772 struct qed_iov_vf_mbx *mbx = &vf->vf_mbx;
1773 u8 status = PFVF_STATUS_NO_RESOURCE;
1774 union qed_qm_pq_params pq_params;
1775 struct vfpf_start_txq_tlv *req;
1776 int rc;
1777
1778 /* Prepare the parameters which would choose the right PQ */
1779 memset(&pq_params, 0, sizeof(pq_params));
1780 pq_params.eth.is_vf = 1;
1781 pq_params.eth.vf_id = vf->relative_vf_id;
1782
1783 memset(&params, 0, sizeof(params));
1784 req = &mbx->req_virt->start_txq;
1785
1786 if (!qed_iov_validate_txq(p_hwfn, vf, req->tx_qid) ||
1787 !qed_iov_validate_sb(p_hwfn, vf, req->hw_sb))
1788 goto out;
1789
1790 params.queue_id = vf->vf_queues[req->tx_qid].fw_tx_qid;
1791 params.vport_id = vf->vport_id;
1792 params.sb = req->hw_sb;
1793 params.sb_idx = req->sb_index;
1794
1795 rc = qed_sp_eth_txq_start_ramrod(p_hwfn,
1796 vf->opaque_fid,
1797 vf->vf_queues[req->tx_qid].fw_cid,
1798 &params,
1799 vf->abs_vf_id + 0x10,
1800 req->pbl_addr,
1801 req->pbl_size, &pq_params);
1802
1803 if (rc) {
1804 status = PFVF_STATUS_FAILURE;
1805 } else {
1806 status = PFVF_STATUS_SUCCESS;
1807 vf->vf_queues[req->tx_qid].txq_active = true;
1808 }
1809
1810 out:
1811 qed_iov_prepare_resp(p_hwfn, p_ptt, vf, CHANNEL_TLV_START_TXQ,
1812 length, status);
1813 }
1814
1815 static int qed_iov_vf_stop_rxqs(struct qed_hwfn *p_hwfn,
1816 struct qed_vf_info *vf,
1817 u16 rxq_id, u8 num_rxqs, bool cqe_completion)
1818 {
1819 int rc = 0;
1820 int qid;
1821
1822 if (rxq_id + num_rxqs > ARRAY_SIZE(vf->vf_queues))
1823 return -EINVAL;
1824
1825 for (qid = rxq_id; qid < rxq_id + num_rxqs; qid++) {
1826 if (vf->vf_queues[qid].rxq_active) {
1827 rc = qed_sp_eth_rx_queue_stop(p_hwfn,
1828 vf->vf_queues[qid].
1829 fw_rx_qid, false,
1830 cqe_completion);
1831
1832 if (rc)
1833 return rc;
1834 }
1835 vf->vf_queues[qid].rxq_active = false;
1836 vf->num_active_rxqs--;
1837 }
1838
1839 return rc;
1840 }
1841
1842 static int qed_iov_vf_stop_txqs(struct qed_hwfn *p_hwfn,
1843 struct qed_vf_info *vf, u16 txq_id, u8 num_txqs)
1844 {
1845 int rc = 0;
1846 int qid;
1847
1848 if (txq_id + num_txqs > ARRAY_SIZE(vf->vf_queues))
1849 return -EINVAL;
1850
1851 for (qid = txq_id; qid < txq_id + num_txqs; qid++) {
1852 if (vf->vf_queues[qid].txq_active) {
1853 rc = qed_sp_eth_tx_queue_stop(p_hwfn,
1854 vf->vf_queues[qid].
1855 fw_tx_qid);
1856
1857 if (rc)
1858 return rc;
1859 }
1860 vf->vf_queues[qid].txq_active = false;
1861 }
1862 return rc;
1863 }
1864
1865 static void qed_iov_vf_mbx_stop_rxqs(struct qed_hwfn *p_hwfn,
1866 struct qed_ptt *p_ptt,
1867 struct qed_vf_info *vf)
1868 {
1869 u16 length = sizeof(struct pfvf_def_resp_tlv);
1870 struct qed_iov_vf_mbx *mbx = &vf->vf_mbx;
1871 u8 status = PFVF_STATUS_SUCCESS;
1872 struct vfpf_stop_rxqs_tlv *req;
1873 int rc;
1874
1875 /* We give the option of starting from qid != 0, in this case we
1876 * need to make sure that qid + num_qs doesn't exceed the actual
1877 * amount of queues that exist.
1878 */
1879 req = &mbx->req_virt->stop_rxqs;
1880 rc = qed_iov_vf_stop_rxqs(p_hwfn, vf, req->rx_qid,
1881 req->num_rxqs, req->cqe_completion);
1882 if (rc)
1883 status = PFVF_STATUS_FAILURE;
1884
1885 qed_iov_prepare_resp(p_hwfn, p_ptt, vf, CHANNEL_TLV_STOP_RXQS,
1886 length, status);
1887 }
1888
1889 static void qed_iov_vf_mbx_stop_txqs(struct qed_hwfn *p_hwfn,
1890 struct qed_ptt *p_ptt,
1891 struct qed_vf_info *vf)
1892 {
1893 u16 length = sizeof(struct pfvf_def_resp_tlv);
1894 struct qed_iov_vf_mbx *mbx = &vf->vf_mbx;
1895 u8 status = PFVF_STATUS_SUCCESS;
1896 struct vfpf_stop_txqs_tlv *req;
1897 int rc;
1898
1899 /* We give the option of starting from qid != 0, in this case we
1900 * need to make sure that qid + num_qs doesn't exceed the actual
1901 * amount of queues that exist.
1902 */
1903 req = &mbx->req_virt->stop_txqs;
1904 rc = qed_iov_vf_stop_txqs(p_hwfn, vf, req->tx_qid, req->num_txqs);
1905 if (rc)
1906 status = PFVF_STATUS_FAILURE;
1907
1908 qed_iov_prepare_resp(p_hwfn, p_ptt, vf, CHANNEL_TLV_STOP_TXQS,
1909 length, status);
1910 }
1911
1912 static void qed_iov_vf_mbx_update_rxqs(struct qed_hwfn *p_hwfn,
1913 struct qed_ptt *p_ptt,
1914 struct qed_vf_info *vf)
1915 {
1916 u16 length = sizeof(struct pfvf_def_resp_tlv);
1917 struct qed_iov_vf_mbx *mbx = &vf->vf_mbx;
1918 struct vfpf_update_rxq_tlv *req;
1919 u8 status = PFVF_STATUS_SUCCESS;
1920 u8 complete_event_flg;
1921 u8 complete_cqe_flg;
1922 u16 qid;
1923 int rc;
1924 u8 i;
1925
1926 req = &mbx->req_virt->update_rxq;
1927 complete_cqe_flg = !!(req->flags & VFPF_RXQ_UPD_COMPLETE_CQE_FLAG);
1928 complete_event_flg = !!(req->flags & VFPF_RXQ_UPD_COMPLETE_EVENT_FLAG);
1929
1930 for (i = 0; i < req->num_rxqs; i++) {
1931 qid = req->rx_qid + i;
1932
1933 if (!vf->vf_queues[qid].rxq_active) {
1934 DP_NOTICE(p_hwfn, "VF rx_qid = %d isn`t active!\n",
1935 qid);
1936 status = PFVF_STATUS_FAILURE;
1937 break;
1938 }
1939
1940 rc = qed_sp_eth_rx_queues_update(p_hwfn,
1941 vf->vf_queues[qid].fw_rx_qid,
1942 1,
1943 complete_cqe_flg,
1944 complete_event_flg,
1945 QED_SPQ_MODE_EBLOCK, NULL);
1946
1947 if (rc) {
1948 status = PFVF_STATUS_FAILURE;
1949 break;
1950 }
1951 }
1952
1953 qed_iov_prepare_resp(p_hwfn, p_ptt, vf, CHANNEL_TLV_UPDATE_RXQ,
1954 length, status);
1955 }
1956
1957 void *qed_iov_search_list_tlvs(struct qed_hwfn *p_hwfn,
1958 void *p_tlvs_list, u16 req_type)
1959 {
1960 struct channel_tlv *p_tlv = (struct channel_tlv *)p_tlvs_list;
1961 int len = 0;
1962
1963 do {
1964 if (!p_tlv->length) {
1965 DP_NOTICE(p_hwfn, "Zero length TLV found\n");
1966 return NULL;
1967 }
1968
1969 if (p_tlv->type == req_type) {
1970 DP_VERBOSE(p_hwfn, QED_MSG_IOV,
1971 "Extended tlv type %d, length %d found\n",
1972 p_tlv->type, p_tlv->length);
1973 return p_tlv;
1974 }
1975
1976 len += p_tlv->length;
1977 p_tlv = (struct channel_tlv *)((u8 *)p_tlv + p_tlv->length);
1978
1979 if ((len + p_tlv->length) > TLV_BUFFER_SIZE) {
1980 DP_NOTICE(p_hwfn, "TLVs has overrun the buffer size\n");
1981 return NULL;
1982 }
1983 } while (p_tlv->type != CHANNEL_TLV_LIST_END);
1984
1985 return NULL;
1986 }
1987
1988 static void
1989 qed_iov_vp_update_act_param(struct qed_hwfn *p_hwfn,
1990 struct qed_sp_vport_update_params *p_data,
1991 struct qed_iov_vf_mbx *p_mbx, u16 *tlvs_mask)
1992 {
1993 struct vfpf_vport_update_activate_tlv *p_act_tlv;
1994 u16 tlv = CHANNEL_TLV_VPORT_UPDATE_ACTIVATE;
1995
1996 p_act_tlv = (struct vfpf_vport_update_activate_tlv *)
1997 qed_iov_search_list_tlvs(p_hwfn, p_mbx->req_virt, tlv);
1998 if (!p_act_tlv)
1999 return;
2000
2001 p_data->update_vport_active_rx_flg = p_act_tlv->update_rx;
2002 p_data->vport_active_rx_flg = p_act_tlv->active_rx;
2003 p_data->update_vport_active_tx_flg = p_act_tlv->update_tx;
2004 p_data->vport_active_tx_flg = p_act_tlv->active_tx;
2005 *tlvs_mask |= 1 << QED_IOV_VP_UPDATE_ACTIVATE;
2006 }
2007
2008 static void
2009 qed_iov_vp_update_vlan_param(struct qed_hwfn *p_hwfn,
2010 struct qed_sp_vport_update_params *p_data,
2011 struct qed_vf_info *p_vf,
2012 struct qed_iov_vf_mbx *p_mbx, u16 *tlvs_mask)
2013 {
2014 struct vfpf_vport_update_vlan_strip_tlv *p_vlan_tlv;
2015 u16 tlv = CHANNEL_TLV_VPORT_UPDATE_VLAN_STRIP;
2016
2017 p_vlan_tlv = (struct vfpf_vport_update_vlan_strip_tlv *)
2018 qed_iov_search_list_tlvs(p_hwfn, p_mbx->req_virt, tlv);
2019 if (!p_vlan_tlv)
2020 return;
2021
2022 p_vf->shadow_config.inner_vlan_removal = p_vlan_tlv->remove_vlan;
2023
2024 /* Ignore the VF request if we're forcing a vlan */
2025 if (!(p_vf->configured_features & (1 << VLAN_ADDR_FORCED))) {
2026 p_data->update_inner_vlan_removal_flg = 1;
2027 p_data->inner_vlan_removal_flg = p_vlan_tlv->remove_vlan;
2028 }
2029
2030 *tlvs_mask |= 1 << QED_IOV_VP_UPDATE_VLAN_STRIP;
2031 }
2032
2033 static void
2034 qed_iov_vp_update_tx_switch(struct qed_hwfn *p_hwfn,
2035 struct qed_sp_vport_update_params *p_data,
2036 struct qed_iov_vf_mbx *p_mbx, u16 *tlvs_mask)
2037 {
2038 struct vfpf_vport_update_tx_switch_tlv *p_tx_switch_tlv;
2039 u16 tlv = CHANNEL_TLV_VPORT_UPDATE_TX_SWITCH;
2040
2041 p_tx_switch_tlv = (struct vfpf_vport_update_tx_switch_tlv *)
2042 qed_iov_search_list_tlvs(p_hwfn, p_mbx->req_virt,
2043 tlv);
2044 if (!p_tx_switch_tlv)
2045 return;
2046
2047 p_data->update_tx_switching_flg = 1;
2048 p_data->tx_switching_flg = p_tx_switch_tlv->tx_switching;
2049 *tlvs_mask |= 1 << QED_IOV_VP_UPDATE_TX_SWITCH;
2050 }
2051
2052 static void
2053 qed_iov_vp_update_mcast_bin_param(struct qed_hwfn *p_hwfn,
2054 struct qed_sp_vport_update_params *p_data,
2055 struct qed_iov_vf_mbx *p_mbx, u16 *tlvs_mask)
2056 {
2057 struct vfpf_vport_update_mcast_bin_tlv *p_mcast_tlv;
2058 u16 tlv = CHANNEL_TLV_VPORT_UPDATE_MCAST;
2059
2060 p_mcast_tlv = (struct vfpf_vport_update_mcast_bin_tlv *)
2061 qed_iov_search_list_tlvs(p_hwfn, p_mbx->req_virt, tlv);
2062 if (!p_mcast_tlv)
2063 return;
2064
2065 p_data->update_approx_mcast_flg = 1;
2066 memcpy(p_data->bins, p_mcast_tlv->bins,
2067 sizeof(unsigned long) * ETH_MULTICAST_MAC_BINS_IN_REGS);
2068 *tlvs_mask |= 1 << QED_IOV_VP_UPDATE_MCAST;
2069 }
2070
2071 static void
2072 qed_iov_vp_update_accept_flag(struct qed_hwfn *p_hwfn,
2073 struct qed_sp_vport_update_params *p_data,
2074 struct qed_iov_vf_mbx *p_mbx, u16 *tlvs_mask)
2075 {
2076 struct qed_filter_accept_flags *p_flags = &p_data->accept_flags;
2077 struct vfpf_vport_update_accept_param_tlv *p_accept_tlv;
2078 u16 tlv = CHANNEL_TLV_VPORT_UPDATE_ACCEPT_PARAM;
2079
2080 p_accept_tlv = (struct vfpf_vport_update_accept_param_tlv *)
2081 qed_iov_search_list_tlvs(p_hwfn, p_mbx->req_virt, tlv);
2082 if (!p_accept_tlv)
2083 return;
2084
2085 p_flags->update_rx_mode_config = p_accept_tlv->update_rx_mode;
2086 p_flags->rx_accept_filter = p_accept_tlv->rx_accept_filter;
2087 p_flags->update_tx_mode_config = p_accept_tlv->update_tx_mode;
2088 p_flags->tx_accept_filter = p_accept_tlv->tx_accept_filter;
2089 *tlvs_mask |= 1 << QED_IOV_VP_UPDATE_ACCEPT_PARAM;
2090 }
2091
2092 static void
2093 qed_iov_vp_update_accept_any_vlan(struct qed_hwfn *p_hwfn,
2094 struct qed_sp_vport_update_params *p_data,
2095 struct qed_iov_vf_mbx *p_mbx, u16 *tlvs_mask)
2096 {
2097 struct vfpf_vport_update_accept_any_vlan_tlv *p_accept_any_vlan;
2098 u16 tlv = CHANNEL_TLV_VPORT_UPDATE_ACCEPT_ANY_VLAN;
2099
2100 p_accept_any_vlan = (struct vfpf_vport_update_accept_any_vlan_tlv *)
2101 qed_iov_search_list_tlvs(p_hwfn, p_mbx->req_virt,
2102 tlv);
2103 if (!p_accept_any_vlan)
2104 return;
2105
2106 p_data->accept_any_vlan = p_accept_any_vlan->accept_any_vlan;
2107 p_data->update_accept_any_vlan_flg =
2108 p_accept_any_vlan->update_accept_any_vlan_flg;
2109 *tlvs_mask |= 1 << QED_IOV_VP_UPDATE_ACCEPT_ANY_VLAN;
2110 }
2111
2112 static void
2113 qed_iov_vp_update_rss_param(struct qed_hwfn *p_hwfn,
2114 struct qed_vf_info *vf,
2115 struct qed_sp_vport_update_params *p_data,
2116 struct qed_rss_params *p_rss,
2117 struct qed_iov_vf_mbx *p_mbx, u16 *tlvs_mask)
2118 {
2119 struct vfpf_vport_update_rss_tlv *p_rss_tlv;
2120 u16 tlv = CHANNEL_TLV_VPORT_UPDATE_RSS;
2121 u16 i, q_idx, max_q_idx;
2122 u16 table_size;
2123
2124 p_rss_tlv = (struct vfpf_vport_update_rss_tlv *)
2125 qed_iov_search_list_tlvs(p_hwfn, p_mbx->req_virt, tlv);
2126 if (!p_rss_tlv) {
2127 p_data->rss_params = NULL;
2128 return;
2129 }
2130
2131 memset(p_rss, 0, sizeof(struct qed_rss_params));
2132
2133 p_rss->update_rss_config = !!(p_rss_tlv->update_rss_flags &
2134 VFPF_UPDATE_RSS_CONFIG_FLAG);
2135 p_rss->update_rss_capabilities = !!(p_rss_tlv->update_rss_flags &
2136 VFPF_UPDATE_RSS_CAPS_FLAG);
2137 p_rss->update_rss_ind_table = !!(p_rss_tlv->update_rss_flags &
2138 VFPF_UPDATE_RSS_IND_TABLE_FLAG);
2139 p_rss->update_rss_key = !!(p_rss_tlv->update_rss_flags &
2140 VFPF_UPDATE_RSS_KEY_FLAG);
2141
2142 p_rss->rss_enable = p_rss_tlv->rss_enable;
2143 p_rss->rss_eng_id = vf->relative_vf_id + 1;
2144 p_rss->rss_caps = p_rss_tlv->rss_caps;
2145 p_rss->rss_table_size_log = p_rss_tlv->rss_table_size_log;
2146 memcpy(p_rss->rss_ind_table, p_rss_tlv->rss_ind_table,
2147 sizeof(p_rss->rss_ind_table));
2148 memcpy(p_rss->rss_key, p_rss_tlv->rss_key, sizeof(p_rss->rss_key));
2149
2150 table_size = min_t(u16, ARRAY_SIZE(p_rss->rss_ind_table),
2151 (1 << p_rss_tlv->rss_table_size_log));
2152
2153 max_q_idx = ARRAY_SIZE(vf->vf_queues);
2154
2155 for (i = 0; i < table_size; i++) {
2156 u16 index = vf->vf_queues[0].fw_rx_qid;
2157
2158 q_idx = p_rss->rss_ind_table[i];
2159 if (q_idx >= max_q_idx)
2160 DP_NOTICE(p_hwfn,
2161 "rss_ind_table[%d] = %d, rxq is out of range\n",
2162 i, q_idx);
2163 else if (!vf->vf_queues[q_idx].rxq_active)
2164 DP_NOTICE(p_hwfn,
2165 "rss_ind_table[%d] = %d, rxq is not active\n",
2166 i, q_idx);
2167 else
2168 index = vf->vf_queues[q_idx].fw_rx_qid;
2169 p_rss->rss_ind_table[i] = index;
2170 }
2171
2172 p_data->rss_params = p_rss;
2173 *tlvs_mask |= 1 << QED_IOV_VP_UPDATE_RSS;
2174 }
2175
2176 static void
2177 qed_iov_vp_update_sge_tpa_param(struct qed_hwfn *p_hwfn,
2178 struct qed_vf_info *vf,
2179 struct qed_sp_vport_update_params *p_data,
2180 struct qed_sge_tpa_params *p_sge_tpa,
2181 struct qed_iov_vf_mbx *p_mbx, u16 *tlvs_mask)
2182 {
2183 struct vfpf_vport_update_sge_tpa_tlv *p_sge_tpa_tlv;
2184 u16 tlv = CHANNEL_TLV_VPORT_UPDATE_SGE_TPA;
2185
2186 p_sge_tpa_tlv = (struct vfpf_vport_update_sge_tpa_tlv *)
2187 qed_iov_search_list_tlvs(p_hwfn, p_mbx->req_virt, tlv);
2188
2189 if (!p_sge_tpa_tlv) {
2190 p_data->sge_tpa_params = NULL;
2191 return;
2192 }
2193
2194 memset(p_sge_tpa, 0, sizeof(struct qed_sge_tpa_params));
2195
2196 p_sge_tpa->update_tpa_en_flg =
2197 !!(p_sge_tpa_tlv->update_sge_tpa_flags & VFPF_UPDATE_TPA_EN_FLAG);
2198 p_sge_tpa->update_tpa_param_flg =
2199 !!(p_sge_tpa_tlv->update_sge_tpa_flags &
2200 VFPF_UPDATE_TPA_PARAM_FLAG);
2201
2202 p_sge_tpa->tpa_ipv4_en_flg =
2203 !!(p_sge_tpa_tlv->sge_tpa_flags & VFPF_TPA_IPV4_EN_FLAG);
2204 p_sge_tpa->tpa_ipv6_en_flg =
2205 !!(p_sge_tpa_tlv->sge_tpa_flags & VFPF_TPA_IPV6_EN_FLAG);
2206 p_sge_tpa->tpa_pkt_split_flg =
2207 !!(p_sge_tpa_tlv->sge_tpa_flags & VFPF_TPA_PKT_SPLIT_FLAG);
2208 p_sge_tpa->tpa_hdr_data_split_flg =
2209 !!(p_sge_tpa_tlv->sge_tpa_flags & VFPF_TPA_HDR_DATA_SPLIT_FLAG);
2210 p_sge_tpa->tpa_gro_consistent_flg =
2211 !!(p_sge_tpa_tlv->sge_tpa_flags & VFPF_TPA_GRO_CONSIST_FLAG);
2212
2213 p_sge_tpa->tpa_max_aggs_num = p_sge_tpa_tlv->tpa_max_aggs_num;
2214 p_sge_tpa->tpa_max_size = p_sge_tpa_tlv->tpa_max_size;
2215 p_sge_tpa->tpa_min_size_to_start = p_sge_tpa_tlv->tpa_min_size_to_start;
2216 p_sge_tpa->tpa_min_size_to_cont = p_sge_tpa_tlv->tpa_min_size_to_cont;
2217 p_sge_tpa->max_buffers_per_cqe = p_sge_tpa_tlv->max_buffers_per_cqe;
2218
2219 p_data->sge_tpa_params = p_sge_tpa;
2220
2221 *tlvs_mask |= 1 << QED_IOV_VP_UPDATE_SGE_TPA;
2222 }
2223
2224 static void qed_iov_vf_mbx_vport_update(struct qed_hwfn *p_hwfn,
2225 struct qed_ptt *p_ptt,
2226 struct qed_vf_info *vf)
2227 {
2228 struct qed_sp_vport_update_params params;
2229 struct qed_iov_vf_mbx *mbx = &vf->vf_mbx;
2230 struct qed_sge_tpa_params sge_tpa_params;
2231 struct qed_rss_params rss_params;
2232 u8 status = PFVF_STATUS_SUCCESS;
2233 u16 tlvs_mask = 0;
2234 u16 length;
2235 int rc;
2236
2237 /* Valiate PF can send such a request */
2238 if (!vf->vport_instance) {
2239 DP_VERBOSE(p_hwfn,
2240 QED_MSG_IOV,
2241 "No VPORT instance available for VF[%d], failing vport update\n",
2242 vf->abs_vf_id);
2243 status = PFVF_STATUS_FAILURE;
2244 goto out;
2245 }
2246
2247 memset(&params, 0, sizeof(params));
2248 params.opaque_fid = vf->opaque_fid;
2249 params.vport_id = vf->vport_id;
2250 params.rss_params = NULL;
2251
2252 /* Search for extended tlvs list and update values
2253 * from VF in struct qed_sp_vport_update_params.
2254 */
2255 qed_iov_vp_update_act_param(p_hwfn, &params, mbx, &tlvs_mask);
2256 qed_iov_vp_update_vlan_param(p_hwfn, &params, vf, mbx, &tlvs_mask);
2257 qed_iov_vp_update_tx_switch(p_hwfn, &params, mbx, &tlvs_mask);
2258 qed_iov_vp_update_mcast_bin_param(p_hwfn, &params, mbx, &tlvs_mask);
2259 qed_iov_vp_update_accept_flag(p_hwfn, &params, mbx, &tlvs_mask);
2260 qed_iov_vp_update_rss_param(p_hwfn, vf, &params, &rss_params,
2261 mbx, &tlvs_mask);
2262 qed_iov_vp_update_accept_any_vlan(p_hwfn, &params, mbx, &tlvs_mask);
2263 qed_iov_vp_update_sge_tpa_param(p_hwfn, vf, &params,
2264 &sge_tpa_params, mbx, &tlvs_mask);
2265
2266 /* Just log a message if there is no single extended tlv in buffer.
2267 * When all features of vport update ramrod would be requested by VF
2268 * as extended TLVs in buffer then an error can be returned in response
2269 * if there is no extended TLV present in buffer.
2270 */
2271 if (!tlvs_mask) {
2272 DP_NOTICE(p_hwfn,
2273 "No feature tlvs found for vport update\n");
2274 status = PFVF_STATUS_NOT_SUPPORTED;
2275 goto out;
2276 }
2277
2278 rc = qed_sp_vport_update(p_hwfn, &params, QED_SPQ_MODE_EBLOCK, NULL);
2279
2280 if (rc)
2281 status = PFVF_STATUS_FAILURE;
2282
2283 out:
2284 length = qed_iov_prep_vp_update_resp_tlvs(p_hwfn, vf, mbx, status,
2285 tlvs_mask, tlvs_mask);
2286 qed_iov_send_response(p_hwfn, p_ptt, vf, length, status);
2287 }
2288
2289 static int qed_iov_vf_update_unicast_shadow(struct qed_hwfn *p_hwfn,
2290 struct qed_vf_info *p_vf,
2291 struct qed_filter_ucast *p_params)
2292 {
2293 int i;
2294
2295 if (p_params->type == QED_FILTER_MAC)
2296 return 0;
2297
2298 /* First remove entries and then add new ones */
2299 if (p_params->opcode == QED_FILTER_REMOVE) {
2300 for (i = 0; i < QED_ETH_VF_NUM_VLAN_FILTERS + 1; i++)
2301 if (p_vf->shadow_config.vlans[i].used &&
2302 p_vf->shadow_config.vlans[i].vid ==
2303 p_params->vlan) {
2304 p_vf->shadow_config.vlans[i].used = false;
2305 break;
2306 }
2307 if (i == QED_ETH_VF_NUM_VLAN_FILTERS + 1) {
2308 DP_VERBOSE(p_hwfn,
2309 QED_MSG_IOV,
2310 "VF [%d] - Tries to remove a non-existing vlan\n",
2311 p_vf->relative_vf_id);
2312 return -EINVAL;
2313 }
2314 } else if (p_params->opcode == QED_FILTER_REPLACE ||
2315 p_params->opcode == QED_FILTER_FLUSH) {
2316 for (i = 0; i < QED_ETH_VF_NUM_VLAN_FILTERS + 1; i++)
2317 p_vf->shadow_config.vlans[i].used = false;
2318 }
2319
2320 /* In forced mode, we're willing to remove entries - but we don't add
2321 * new ones.
2322 */
2323 if (p_vf->bulletin.p_virt->valid_bitmap & (1 << VLAN_ADDR_FORCED))
2324 return 0;
2325
2326 if (p_params->opcode == QED_FILTER_ADD ||
2327 p_params->opcode == QED_FILTER_REPLACE) {
2328 for (i = 0; i < QED_ETH_VF_NUM_VLAN_FILTERS + 1; i++) {
2329 if (p_vf->shadow_config.vlans[i].used)
2330 continue;
2331
2332 p_vf->shadow_config.vlans[i].used = true;
2333 p_vf->shadow_config.vlans[i].vid = p_params->vlan;
2334 break;
2335 }
2336
2337 if (i == QED_ETH_VF_NUM_VLAN_FILTERS + 1) {
2338 DP_VERBOSE(p_hwfn,
2339 QED_MSG_IOV,
2340 "VF [%d] - Tries to configure more than %d vlan filters\n",
2341 p_vf->relative_vf_id,
2342 QED_ETH_VF_NUM_VLAN_FILTERS + 1);
2343 return -EINVAL;
2344 }
2345 }
2346
2347 return 0;
2348 }
2349
2350 int qed_iov_chk_ucast(struct qed_hwfn *hwfn,
2351 int vfid, struct qed_filter_ucast *params)
2352 {
2353 struct qed_public_vf_info *vf;
2354
2355 vf = qed_iov_get_public_vf_info(hwfn, vfid, true);
2356 if (!vf)
2357 return -EINVAL;
2358
2359 /* No real decision to make; Store the configured MAC */
2360 if (params->type == QED_FILTER_MAC ||
2361 params->type == QED_FILTER_MAC_VLAN)
2362 ether_addr_copy(vf->mac, params->mac);
2363
2364 return 0;
2365 }
2366
2367 static void qed_iov_vf_mbx_ucast_filter(struct qed_hwfn *p_hwfn,
2368 struct qed_ptt *p_ptt,
2369 struct qed_vf_info *vf)
2370 {
2371 struct qed_bulletin_content *p_bulletin = vf->bulletin.p_virt;
2372 struct qed_iov_vf_mbx *mbx = &vf->vf_mbx;
2373 struct vfpf_ucast_filter_tlv *req;
2374 u8 status = PFVF_STATUS_SUCCESS;
2375 struct qed_filter_ucast params;
2376 int rc;
2377
2378 /* Prepare the unicast filter params */
2379 memset(&params, 0, sizeof(struct qed_filter_ucast));
2380 req = &mbx->req_virt->ucast_filter;
2381 params.opcode = (enum qed_filter_opcode)req->opcode;
2382 params.type = (enum qed_filter_ucast_type)req->type;
2383
2384 params.is_rx_filter = 1;
2385 params.is_tx_filter = 1;
2386 params.vport_to_remove_from = vf->vport_id;
2387 params.vport_to_add_to = vf->vport_id;
2388 memcpy(params.mac, req->mac, ETH_ALEN);
2389 params.vlan = req->vlan;
2390
2391 DP_VERBOSE(p_hwfn,
2392 QED_MSG_IOV,
2393 "VF[%d]: opcode 0x%02x type 0x%02x [%s %s] [vport 0x%02x] MAC %02x:%02x:%02x:%02x:%02x:%02x, vlan 0x%04x\n",
2394 vf->abs_vf_id, params.opcode, params.type,
2395 params.is_rx_filter ? "RX" : "",
2396 params.is_tx_filter ? "TX" : "",
2397 params.vport_to_add_to,
2398 params.mac[0], params.mac[1],
2399 params.mac[2], params.mac[3],
2400 params.mac[4], params.mac[5], params.vlan);
2401
2402 if (!vf->vport_instance) {
2403 DP_VERBOSE(p_hwfn,
2404 QED_MSG_IOV,
2405 "No VPORT instance available for VF[%d], failing ucast MAC configuration\n",
2406 vf->abs_vf_id);
2407 status = PFVF_STATUS_FAILURE;
2408 goto out;
2409 }
2410
2411 /* Update shadow copy of the VF configuration */
2412 if (qed_iov_vf_update_unicast_shadow(p_hwfn, vf, &params)) {
2413 status = PFVF_STATUS_FAILURE;
2414 goto out;
2415 }
2416
2417 /* Determine if the unicast filtering is acceptible by PF */
2418 if ((p_bulletin->valid_bitmap & (1 << VLAN_ADDR_FORCED)) &&
2419 (params.type == QED_FILTER_VLAN ||
2420 params.type == QED_FILTER_MAC_VLAN)) {
2421 /* Once VLAN is forced or PVID is set, do not allow
2422 * to add/replace any further VLANs.
2423 */
2424 if (params.opcode == QED_FILTER_ADD ||
2425 params.opcode == QED_FILTER_REPLACE)
2426 status = PFVF_STATUS_FORCED;
2427 goto out;
2428 }
2429
2430 if ((p_bulletin->valid_bitmap & (1 << MAC_ADDR_FORCED)) &&
2431 (params.type == QED_FILTER_MAC ||
2432 params.type == QED_FILTER_MAC_VLAN)) {
2433 if (!ether_addr_equal(p_bulletin->mac, params.mac) ||
2434 (params.opcode != QED_FILTER_ADD &&
2435 params.opcode != QED_FILTER_REPLACE))
2436 status = PFVF_STATUS_FORCED;
2437 goto out;
2438 }
2439
2440 rc = qed_iov_chk_ucast(p_hwfn, vf->relative_vf_id, &params);
2441 if (rc) {
2442 status = PFVF_STATUS_FAILURE;
2443 goto out;
2444 }
2445
2446 rc = qed_sp_eth_filter_ucast(p_hwfn, vf->opaque_fid, &params,
2447 QED_SPQ_MODE_CB, NULL);
2448 if (rc)
2449 status = PFVF_STATUS_FAILURE;
2450
2451 out:
2452 qed_iov_prepare_resp(p_hwfn, p_ptt, vf, CHANNEL_TLV_UCAST_FILTER,
2453 sizeof(struct pfvf_def_resp_tlv), status);
2454 }
2455
2456 static void qed_iov_vf_mbx_int_cleanup(struct qed_hwfn *p_hwfn,
2457 struct qed_ptt *p_ptt,
2458 struct qed_vf_info *vf)
2459 {
2460 int i;
2461
2462 /* Reset the SBs */
2463 for (i = 0; i < vf->num_sbs; i++)
2464 qed_int_igu_init_pure_rt_single(p_hwfn, p_ptt,
2465 vf->igu_sbs[i],
2466 vf->opaque_fid, false);
2467
2468 qed_iov_prepare_resp(p_hwfn, p_ptt, vf, CHANNEL_TLV_INT_CLEANUP,
2469 sizeof(struct pfvf_def_resp_tlv),
2470 PFVF_STATUS_SUCCESS);
2471 }
2472
2473 static void qed_iov_vf_mbx_close(struct qed_hwfn *p_hwfn,
2474 struct qed_ptt *p_ptt, struct qed_vf_info *vf)
2475 {
2476 u16 length = sizeof(struct pfvf_def_resp_tlv);
2477 u8 status = PFVF_STATUS_SUCCESS;
2478
2479 /* Disable Interrupts for VF */
2480 qed_iov_vf_igu_set_int(p_hwfn, p_ptt, vf, 0);
2481
2482 /* Reset Permission table */
2483 qed_iov_config_perm_table(p_hwfn, p_ptt, vf, 0);
2484
2485 qed_iov_prepare_resp(p_hwfn, p_ptt, vf, CHANNEL_TLV_CLOSE,
2486 length, status);
2487 }
2488
2489 static void qed_iov_vf_mbx_release(struct qed_hwfn *p_hwfn,
2490 struct qed_ptt *p_ptt,
2491 struct qed_vf_info *p_vf)
2492 {
2493 u16 length = sizeof(struct pfvf_def_resp_tlv);
2494 u8 status = PFVF_STATUS_SUCCESS;
2495 int rc = 0;
2496
2497 qed_iov_vf_cleanup(p_hwfn, p_vf);
2498
2499 if (p_vf->state != VF_STOPPED && p_vf->state != VF_FREE) {
2500 /* Stopping the VF */
2501 rc = qed_sp_vf_stop(p_hwfn, p_vf->concrete_fid,
2502 p_vf->opaque_fid);
2503
2504 if (rc) {
2505 DP_ERR(p_hwfn, "qed_sp_vf_stop returned error %d\n",
2506 rc);
2507 status = PFVF_STATUS_FAILURE;
2508 }
2509
2510 p_vf->state = VF_STOPPED;
2511 }
2512
2513 qed_iov_prepare_resp(p_hwfn, p_ptt, p_vf, CHANNEL_TLV_RELEASE,
2514 length, status);
2515 }
2516
2517 static int
2518 qed_iov_vf_flr_poll_dorq(struct qed_hwfn *p_hwfn,
2519 struct qed_vf_info *p_vf, struct qed_ptt *p_ptt)
2520 {
2521 int cnt;
2522 u32 val;
2523
2524 qed_fid_pretend(p_hwfn, p_ptt, (u16) p_vf->concrete_fid);
2525
2526 for (cnt = 0; cnt < 50; cnt++) {
2527 val = qed_rd(p_hwfn, p_ptt, DORQ_REG_VF_USAGE_CNT);
2528 if (!val)
2529 break;
2530 msleep(20);
2531 }
2532 qed_fid_pretend(p_hwfn, p_ptt, (u16) p_hwfn->hw_info.concrete_fid);
2533
2534 if (cnt == 50) {
2535 DP_ERR(p_hwfn,
2536 "VF[%d] - dorq failed to cleanup [usage 0x%08x]\n",
2537 p_vf->abs_vf_id, val);
2538 return -EBUSY;
2539 }
2540
2541 return 0;
2542 }
2543
2544 static int
2545 qed_iov_vf_flr_poll_pbf(struct qed_hwfn *p_hwfn,
2546 struct qed_vf_info *p_vf, struct qed_ptt *p_ptt)
2547 {
2548 u32 cons[MAX_NUM_VOQS], distance[MAX_NUM_VOQS];
2549 int i, cnt;
2550
2551 /* Read initial consumers & producers */
2552 for (i = 0; i < MAX_NUM_VOQS; i++) {
2553 u32 prod;
2554
2555 cons[i] = qed_rd(p_hwfn, p_ptt,
2556 PBF_REG_NUM_BLOCKS_ALLOCATED_CONS_VOQ0 +
2557 i * 0x40);
2558 prod = qed_rd(p_hwfn, p_ptt,
2559 PBF_REG_NUM_BLOCKS_ALLOCATED_PROD_VOQ0 +
2560 i * 0x40);
2561 distance[i] = prod - cons[i];
2562 }
2563
2564 /* Wait for consumers to pass the producers */
2565 i = 0;
2566 for (cnt = 0; cnt < 50; cnt++) {
2567 for (; i < MAX_NUM_VOQS; i++) {
2568 u32 tmp;
2569
2570 tmp = qed_rd(p_hwfn, p_ptt,
2571 PBF_REG_NUM_BLOCKS_ALLOCATED_CONS_VOQ0 +
2572 i * 0x40);
2573 if (distance[i] > tmp - cons[i])
2574 break;
2575 }
2576
2577 if (i == MAX_NUM_VOQS)
2578 break;
2579
2580 msleep(20);
2581 }
2582
2583 if (cnt == 50) {
2584 DP_ERR(p_hwfn, "VF[%d] - pbf polling failed on VOQ %d\n",
2585 p_vf->abs_vf_id, i);
2586 return -EBUSY;
2587 }
2588
2589 return 0;
2590 }
2591
2592 static int qed_iov_vf_flr_poll(struct qed_hwfn *p_hwfn,
2593 struct qed_vf_info *p_vf, struct qed_ptt *p_ptt)
2594 {
2595 int rc;
2596
2597 rc = qed_iov_vf_flr_poll_dorq(p_hwfn, p_vf, p_ptt);
2598 if (rc)
2599 return rc;
2600
2601 rc = qed_iov_vf_flr_poll_pbf(p_hwfn, p_vf, p_ptt);
2602 if (rc)
2603 return rc;
2604
2605 return 0;
2606 }
2607
2608 static int
2609 qed_iov_execute_vf_flr_cleanup(struct qed_hwfn *p_hwfn,
2610 struct qed_ptt *p_ptt,
2611 u16 rel_vf_id, u32 *ack_vfs)
2612 {
2613 struct qed_vf_info *p_vf;
2614 int rc = 0;
2615
2616 p_vf = qed_iov_get_vf_info(p_hwfn, rel_vf_id, false);
2617 if (!p_vf)
2618 return 0;
2619
2620 if (p_hwfn->pf_iov_info->pending_flr[rel_vf_id / 64] &
2621 (1ULL << (rel_vf_id % 64))) {
2622 u16 vfid = p_vf->abs_vf_id;
2623
2624 DP_VERBOSE(p_hwfn, QED_MSG_IOV,
2625 "VF[%d] - Handling FLR\n", vfid);
2626
2627 qed_iov_vf_cleanup(p_hwfn, p_vf);
2628
2629 /* If VF isn't active, no need for anything but SW */
2630 if (!p_vf->b_init)
2631 goto cleanup;
2632
2633 rc = qed_iov_vf_flr_poll(p_hwfn, p_vf, p_ptt);
2634 if (rc)
2635 goto cleanup;
2636
2637 rc = qed_final_cleanup(p_hwfn, p_ptt, vfid, true);
2638 if (rc) {
2639 DP_ERR(p_hwfn, "Failed handle FLR of VF[%d]\n", vfid);
2640 return rc;
2641 }
2642
2643 /* VF_STOPPED has to be set only after final cleanup
2644 * but prior to re-enabling the VF.
2645 */
2646 p_vf->state = VF_STOPPED;
2647
2648 rc = qed_iov_enable_vf_access(p_hwfn, p_ptt, p_vf);
2649 if (rc) {
2650 DP_ERR(p_hwfn, "Failed to re-enable VF[%d] acces\n",
2651 vfid);
2652 return rc;
2653 }
2654 cleanup:
2655 /* Mark VF for ack and clean pending state */
2656 if (p_vf->state == VF_RESET)
2657 p_vf->state = VF_STOPPED;
2658 ack_vfs[vfid / 32] |= (1 << (vfid % 32));
2659 p_hwfn->pf_iov_info->pending_flr[rel_vf_id / 64] &=
2660 ~(1ULL << (rel_vf_id % 64));
2661 p_hwfn->pf_iov_info->pending_events[rel_vf_id / 64] &=
2662 ~(1ULL << (rel_vf_id % 64));
2663 }
2664
2665 return rc;
2666 }
2667
2668 int qed_iov_vf_flr_cleanup(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
2669 {
2670 u32 ack_vfs[VF_MAX_STATIC / 32];
2671 int rc = 0;
2672 u16 i;
2673
2674 memset(ack_vfs, 0, sizeof(u32) * (VF_MAX_STATIC / 32));
2675
2676 /* Since BRB <-> PRS interface can't be tested as part of the flr
2677 * polling due to HW limitations, simply sleep a bit. And since
2678 * there's no need to wait per-vf, do it before looping.
2679 */
2680 msleep(100);
2681
2682 for (i = 0; i < p_hwfn->cdev->p_iov_info->total_vfs; i++)
2683 qed_iov_execute_vf_flr_cleanup(p_hwfn, p_ptt, i, ack_vfs);
2684
2685 rc = qed_mcp_ack_vf_flr(p_hwfn, p_ptt, ack_vfs);
2686 return rc;
2687 }
2688
2689 int qed_iov_mark_vf_flr(struct qed_hwfn *p_hwfn, u32 *p_disabled_vfs)
2690 {
2691 u16 i, found = 0;
2692
2693 DP_VERBOSE(p_hwfn, QED_MSG_IOV, "Marking FLR-ed VFs\n");
2694 for (i = 0; i < (VF_MAX_STATIC / 32); i++)
2695 DP_VERBOSE(p_hwfn, QED_MSG_IOV,
2696 "[%08x,...,%08x]: %08x\n",
2697 i * 32, (i + 1) * 32 - 1, p_disabled_vfs[i]);
2698
2699 if (!p_hwfn->cdev->p_iov_info) {
2700 DP_NOTICE(p_hwfn, "VF flr but no IOV\n");
2701 return 0;
2702 }
2703
2704 /* Mark VFs */
2705 for (i = 0; i < p_hwfn->cdev->p_iov_info->total_vfs; i++) {
2706 struct qed_vf_info *p_vf;
2707 u8 vfid;
2708
2709 p_vf = qed_iov_get_vf_info(p_hwfn, i, false);
2710 if (!p_vf)
2711 continue;
2712
2713 vfid = p_vf->abs_vf_id;
2714 if ((1 << (vfid % 32)) & p_disabled_vfs[vfid / 32]) {
2715 u64 *p_flr = p_hwfn->pf_iov_info->pending_flr;
2716 u16 rel_vf_id = p_vf->relative_vf_id;
2717
2718 DP_VERBOSE(p_hwfn, QED_MSG_IOV,
2719 "VF[%d] [rel %d] got FLR-ed\n",
2720 vfid, rel_vf_id);
2721
2722 p_vf->state = VF_RESET;
2723
2724 /* No need to lock here, since pending_flr should
2725 * only change here and before ACKing MFw. Since
2726 * MFW will not trigger an additional attention for
2727 * VF flr until ACKs, we're safe.
2728 */
2729 p_flr[rel_vf_id / 64] |= 1ULL << (rel_vf_id % 64);
2730 found = 1;
2731 }
2732 }
2733
2734 return found;
2735 }
2736
2737 static void qed_iov_get_link(struct qed_hwfn *p_hwfn,
2738 u16 vfid,
2739 struct qed_mcp_link_params *p_params,
2740 struct qed_mcp_link_state *p_link,
2741 struct qed_mcp_link_capabilities *p_caps)
2742 {
2743 struct qed_vf_info *p_vf = qed_iov_get_vf_info(p_hwfn,
2744 vfid,
2745 false);
2746 struct qed_bulletin_content *p_bulletin;
2747
2748 if (!p_vf)
2749 return;
2750
2751 p_bulletin = p_vf->bulletin.p_virt;
2752
2753 if (p_params)
2754 __qed_vf_get_link_params(p_hwfn, p_params, p_bulletin);
2755 if (p_link)
2756 __qed_vf_get_link_state(p_hwfn, p_link, p_bulletin);
2757 if (p_caps)
2758 __qed_vf_get_link_caps(p_hwfn, p_caps, p_bulletin);
2759 }
2760
2761 static void qed_iov_process_mbx_req(struct qed_hwfn *p_hwfn,
2762 struct qed_ptt *p_ptt, int vfid)
2763 {
2764 struct qed_iov_vf_mbx *mbx;
2765 struct qed_vf_info *p_vf;
2766 int i;
2767
2768 p_vf = qed_iov_get_vf_info(p_hwfn, (u16) vfid, true);
2769 if (!p_vf)
2770 return;
2771
2772 mbx = &p_vf->vf_mbx;
2773
2774 /* qed_iov_process_mbx_request */
2775 DP_VERBOSE(p_hwfn,
2776 QED_MSG_IOV,
2777 "qed_iov_process_mbx_req vfid %d\n", p_vf->abs_vf_id);
2778
2779 mbx->first_tlv = mbx->req_virt->first_tlv;
2780
2781 /* check if tlv type is known */
2782 if (qed_iov_tlv_supported(mbx->first_tlv.tl.type)) {
2783 switch (mbx->first_tlv.tl.type) {
2784 case CHANNEL_TLV_ACQUIRE:
2785 qed_iov_vf_mbx_acquire(p_hwfn, p_ptt, p_vf);
2786 break;
2787 case CHANNEL_TLV_VPORT_START:
2788 qed_iov_vf_mbx_start_vport(p_hwfn, p_ptt, p_vf);
2789 break;
2790 case CHANNEL_TLV_VPORT_TEARDOWN:
2791 qed_iov_vf_mbx_stop_vport(p_hwfn, p_ptt, p_vf);
2792 break;
2793 case CHANNEL_TLV_START_RXQ:
2794 qed_iov_vf_mbx_start_rxq(p_hwfn, p_ptt, p_vf);
2795 break;
2796 case CHANNEL_TLV_START_TXQ:
2797 qed_iov_vf_mbx_start_txq(p_hwfn, p_ptt, p_vf);
2798 break;
2799 case CHANNEL_TLV_STOP_RXQS:
2800 qed_iov_vf_mbx_stop_rxqs(p_hwfn, p_ptt, p_vf);
2801 break;
2802 case CHANNEL_TLV_STOP_TXQS:
2803 qed_iov_vf_mbx_stop_txqs(p_hwfn, p_ptt, p_vf);
2804 break;
2805 case CHANNEL_TLV_UPDATE_RXQ:
2806 qed_iov_vf_mbx_update_rxqs(p_hwfn, p_ptt, p_vf);
2807 break;
2808 case CHANNEL_TLV_VPORT_UPDATE:
2809 qed_iov_vf_mbx_vport_update(p_hwfn, p_ptt, p_vf);
2810 break;
2811 case CHANNEL_TLV_UCAST_FILTER:
2812 qed_iov_vf_mbx_ucast_filter(p_hwfn, p_ptt, p_vf);
2813 break;
2814 case CHANNEL_TLV_CLOSE:
2815 qed_iov_vf_mbx_close(p_hwfn, p_ptt, p_vf);
2816 break;
2817 case CHANNEL_TLV_INT_CLEANUP:
2818 qed_iov_vf_mbx_int_cleanup(p_hwfn, p_ptt, p_vf);
2819 break;
2820 case CHANNEL_TLV_RELEASE:
2821 qed_iov_vf_mbx_release(p_hwfn, p_ptt, p_vf);
2822 break;
2823 }
2824 } else {
2825 /* unknown TLV - this may belong to a VF driver from the future
2826 * - a version written after this PF driver was written, which
2827 * supports features unknown as of yet. Too bad since we don't
2828 * support them. Or this may be because someone wrote a crappy
2829 * VF driver and is sending garbage over the channel.
2830 */
2831 DP_ERR(p_hwfn,
2832 "unknown TLV. type %d length %d. first 20 bytes of mailbox buffer:\n",
2833 mbx->first_tlv.tl.type, mbx->first_tlv.tl.length);
2834
2835 for (i = 0; i < 20; i++) {
2836 DP_VERBOSE(p_hwfn,
2837 QED_MSG_IOV,
2838 "%x ",
2839 mbx->req_virt->tlv_buf_size.tlv_buffer[i]);
2840 }
2841 }
2842 }
2843
2844 void qed_iov_pf_add_pending_events(struct qed_hwfn *p_hwfn, u8 vfid)
2845 {
2846 u64 add_bit = 1ULL << (vfid % 64);
2847
2848 p_hwfn->pf_iov_info->pending_events[vfid / 64] |= add_bit;
2849 }
2850
2851 static void qed_iov_pf_get_and_clear_pending_events(struct qed_hwfn *p_hwfn,
2852 u64 *events)
2853 {
2854 u64 *p_pending_events = p_hwfn->pf_iov_info->pending_events;
2855
2856 memcpy(events, p_pending_events, sizeof(u64) * QED_VF_ARRAY_LENGTH);
2857 memset(p_pending_events, 0, sizeof(u64) * QED_VF_ARRAY_LENGTH);
2858 }
2859
2860 static int qed_sriov_vfpf_msg(struct qed_hwfn *p_hwfn,
2861 u16 abs_vfid, struct regpair *vf_msg)
2862 {
2863 u8 min = (u8)p_hwfn->cdev->p_iov_info->first_vf_in_pf;
2864 struct qed_vf_info *p_vf;
2865
2866 if (!qed_iov_pf_sanity_check(p_hwfn, (int)abs_vfid - min)) {
2867 DP_VERBOSE(p_hwfn,
2868 QED_MSG_IOV,
2869 "Got a message from VF [abs 0x%08x] that cannot be handled by PF\n",
2870 abs_vfid);
2871 return 0;
2872 }
2873 p_vf = &p_hwfn->pf_iov_info->vfs_array[(u8)abs_vfid - min];
2874
2875 /* List the physical address of the request so that handler
2876 * could later on copy the message from it.
2877 */
2878 p_vf->vf_mbx.pending_req = (((u64)vf_msg->hi) << 32) | vf_msg->lo;
2879
2880 /* Mark the event and schedule the workqueue */
2881 qed_iov_pf_add_pending_events(p_hwfn, p_vf->relative_vf_id);
2882 qed_schedule_iov(p_hwfn, QED_IOV_WQ_MSG_FLAG);
2883
2884 return 0;
2885 }
2886
2887 int qed_sriov_eqe_event(struct qed_hwfn *p_hwfn,
2888 u8 opcode, __le16 echo, union event_ring_data *data)
2889 {
2890 switch (opcode) {
2891 case COMMON_EVENT_VF_PF_CHANNEL:
2892 return qed_sriov_vfpf_msg(p_hwfn, le16_to_cpu(echo),
2893 &data->vf_pf_channel.msg_addr);
2894 default:
2895 DP_INFO(p_hwfn->cdev, "Unknown sriov eqe event 0x%02x\n",
2896 opcode);
2897 return -EINVAL;
2898 }
2899 }
2900
2901 u16 qed_iov_get_next_active_vf(struct qed_hwfn *p_hwfn, u16 rel_vf_id)
2902 {
2903 struct qed_hw_sriov_info *p_iov = p_hwfn->cdev->p_iov_info;
2904 u16 i;
2905
2906 if (!p_iov)
2907 goto out;
2908
2909 for (i = rel_vf_id; i < p_iov->total_vfs; i++)
2910 if (qed_iov_is_valid_vfid(p_hwfn, rel_vf_id, true))
2911 return i;
2912
2913 out:
2914 return MAX_NUM_VFS;
2915 }
2916
2917 static int qed_iov_copy_vf_msg(struct qed_hwfn *p_hwfn, struct qed_ptt *ptt,
2918 int vfid)
2919 {
2920 struct qed_dmae_params params;
2921 struct qed_vf_info *vf_info;
2922
2923 vf_info = qed_iov_get_vf_info(p_hwfn, (u16) vfid, true);
2924 if (!vf_info)
2925 return -EINVAL;
2926
2927 memset(&params, 0, sizeof(struct qed_dmae_params));
2928 params.flags = QED_DMAE_FLAG_VF_SRC | QED_DMAE_FLAG_COMPLETION_DST;
2929 params.src_vfid = vf_info->abs_vf_id;
2930
2931 if (qed_dmae_host2host(p_hwfn, ptt,
2932 vf_info->vf_mbx.pending_req,
2933 vf_info->vf_mbx.req_phys,
2934 sizeof(union vfpf_tlvs) / 4, &params)) {
2935 DP_VERBOSE(p_hwfn, QED_MSG_IOV,
2936 "Failed to copy message from VF 0x%02x\n", vfid);
2937
2938 return -EIO;
2939 }
2940
2941 return 0;
2942 }
2943
2944 static void qed_iov_bulletin_set_forced_mac(struct qed_hwfn *p_hwfn,
2945 u8 *mac, int vfid)
2946 {
2947 struct qed_vf_info *vf_info;
2948 u64 feature;
2949
2950 vf_info = qed_iov_get_vf_info(p_hwfn, (u16)vfid, true);
2951 if (!vf_info) {
2952 DP_NOTICE(p_hwfn->cdev,
2953 "Can not set forced MAC, invalid vfid [%d]\n", vfid);
2954 return;
2955 }
2956
2957 feature = 1 << MAC_ADDR_FORCED;
2958 memcpy(vf_info->bulletin.p_virt->mac, mac, ETH_ALEN);
2959
2960 vf_info->bulletin.p_virt->valid_bitmap |= feature;
2961 /* Forced MAC will disable MAC_ADDR */
2962 vf_info->bulletin.p_virt->valid_bitmap &=
2963 ~(1 << VFPF_BULLETIN_MAC_ADDR);
2964
2965 qed_iov_configure_vport_forced(p_hwfn, vf_info, feature);
2966 }
2967
2968 void qed_iov_bulletin_set_forced_vlan(struct qed_hwfn *p_hwfn,
2969 u16 pvid, int vfid)
2970 {
2971 struct qed_vf_info *vf_info;
2972 u64 feature;
2973
2974 vf_info = qed_iov_get_vf_info(p_hwfn, (u16) vfid, true);
2975 if (!vf_info) {
2976 DP_NOTICE(p_hwfn->cdev,
2977 "Can not set forced MAC, invalid vfid [%d]\n", vfid);
2978 return;
2979 }
2980
2981 feature = 1 << VLAN_ADDR_FORCED;
2982 vf_info->bulletin.p_virt->pvid = pvid;
2983 if (pvid)
2984 vf_info->bulletin.p_virt->valid_bitmap |= feature;
2985 else
2986 vf_info->bulletin.p_virt->valid_bitmap &= ~feature;
2987
2988 qed_iov_configure_vport_forced(p_hwfn, vf_info, feature);
2989 }
2990
2991 static bool qed_iov_vf_has_vport_instance(struct qed_hwfn *p_hwfn, int vfid)
2992 {
2993 struct qed_vf_info *p_vf_info;
2994
2995 p_vf_info = qed_iov_get_vf_info(p_hwfn, (u16) vfid, true);
2996 if (!p_vf_info)
2997 return false;
2998
2999 return !!p_vf_info->vport_instance;
3000 }
3001
3002 bool qed_iov_is_vf_stopped(struct qed_hwfn *p_hwfn, int vfid)
3003 {
3004 struct qed_vf_info *p_vf_info;
3005
3006 p_vf_info = qed_iov_get_vf_info(p_hwfn, (u16) vfid, true);
3007 if (!p_vf_info)
3008 return true;
3009
3010 return p_vf_info->state == VF_STOPPED;
3011 }
3012
3013 static bool qed_iov_spoofchk_get(struct qed_hwfn *p_hwfn, int vfid)
3014 {
3015 struct qed_vf_info *vf_info;
3016
3017 vf_info = qed_iov_get_vf_info(p_hwfn, (u16) vfid, true);
3018 if (!vf_info)
3019 return false;
3020
3021 return vf_info->spoof_chk;
3022 }
3023
3024 int qed_iov_spoofchk_set(struct qed_hwfn *p_hwfn, int vfid, bool val)
3025 {
3026 struct qed_vf_info *vf;
3027 int rc = -EINVAL;
3028
3029 if (!qed_iov_pf_sanity_check(p_hwfn, vfid)) {
3030 DP_NOTICE(p_hwfn,
3031 "SR-IOV sanity check failed, can't set spoofchk\n");
3032 goto out;
3033 }
3034
3035 vf = qed_iov_get_vf_info(p_hwfn, (u16) vfid, true);
3036 if (!vf)
3037 goto out;
3038
3039 if (!qed_iov_vf_has_vport_instance(p_hwfn, vfid)) {
3040 /* After VF VPORT start PF will configure spoof check */
3041 vf->req_spoofchk_val = val;
3042 rc = 0;
3043 goto out;
3044 }
3045
3046 rc = __qed_iov_spoofchk_set(p_hwfn, vf, val);
3047
3048 out:
3049 return rc;
3050 }
3051
3052 static u8 *qed_iov_bulletin_get_forced_mac(struct qed_hwfn *p_hwfn,
3053 u16 rel_vf_id)
3054 {
3055 struct qed_vf_info *p_vf;
3056
3057 p_vf = qed_iov_get_vf_info(p_hwfn, rel_vf_id, true);
3058 if (!p_vf || !p_vf->bulletin.p_virt)
3059 return NULL;
3060
3061 if (!(p_vf->bulletin.p_virt->valid_bitmap & (1 << MAC_ADDR_FORCED)))
3062 return NULL;
3063
3064 return p_vf->bulletin.p_virt->mac;
3065 }
3066
3067 u16 qed_iov_bulletin_get_forced_vlan(struct qed_hwfn *p_hwfn, u16 rel_vf_id)
3068 {
3069 struct qed_vf_info *p_vf;
3070
3071 p_vf = qed_iov_get_vf_info(p_hwfn, rel_vf_id, true);
3072 if (!p_vf || !p_vf->bulletin.p_virt)
3073 return 0;
3074
3075 if (!(p_vf->bulletin.p_virt->valid_bitmap & (1 << VLAN_ADDR_FORCED)))
3076 return 0;
3077
3078 return p_vf->bulletin.p_virt->pvid;
3079 }
3080
3081 static int qed_iov_configure_tx_rate(struct qed_hwfn *p_hwfn,
3082 struct qed_ptt *p_ptt, int vfid, int val)
3083 {
3084 struct qed_vf_info *vf;
3085 u8 abs_vp_id = 0;
3086 int rc;
3087
3088 vf = qed_iov_get_vf_info(p_hwfn, (u16)vfid, true);
3089 if (!vf)
3090 return -EINVAL;
3091
3092 rc = qed_fw_vport(p_hwfn, vf->vport_id, &abs_vp_id);
3093 if (rc)
3094 return rc;
3095
3096 return qed_init_vport_rl(p_hwfn, p_ptt, abs_vp_id, (u32)val);
3097 }
3098
3099 int qed_iov_configure_min_tx_rate(struct qed_dev *cdev, int vfid, u32 rate)
3100 {
3101 struct qed_vf_info *vf;
3102 u8 vport_id;
3103 int i;
3104
3105 for_each_hwfn(cdev, i) {
3106 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
3107
3108 if (!qed_iov_pf_sanity_check(p_hwfn, vfid)) {
3109 DP_NOTICE(p_hwfn,
3110 "SR-IOV sanity check failed, can't set min rate\n");
3111 return -EINVAL;
3112 }
3113 }
3114
3115 vf = qed_iov_get_vf_info(QED_LEADING_HWFN(cdev), (u16)vfid, true);
3116 vport_id = vf->vport_id;
3117
3118 return qed_configure_vport_wfq(cdev, vport_id, rate);
3119 }
3120
3121 static int qed_iov_get_vf_min_rate(struct qed_hwfn *p_hwfn, int vfid)
3122 {
3123 struct qed_wfq_data *vf_vp_wfq;
3124 struct qed_vf_info *vf_info;
3125
3126 vf_info = qed_iov_get_vf_info(p_hwfn, (u16) vfid, true);
3127 if (!vf_info)
3128 return 0;
3129
3130 vf_vp_wfq = &p_hwfn->qm_info.wfq_data[vf_info->vport_id];
3131
3132 if (vf_vp_wfq->configured)
3133 return vf_vp_wfq->min_speed;
3134 else
3135 return 0;
3136 }
3137
3138 /**
3139 * qed_schedule_iov - schedules IOV task for VF and PF
3140 * @hwfn: hardware function pointer
3141 * @flag: IOV flag for VF/PF
3142 */
3143 void qed_schedule_iov(struct qed_hwfn *hwfn, enum qed_iov_wq_flag flag)
3144 {
3145 smp_mb__before_atomic();
3146 set_bit(flag, &hwfn->iov_task_flags);
3147 smp_mb__after_atomic();
3148 DP_VERBOSE(hwfn, QED_MSG_IOV, "Scheduling iov task [Flag: %d]\n", flag);
3149 queue_delayed_work(hwfn->iov_wq, &hwfn->iov_task, 0);
3150 }
3151
3152 void qed_vf_start_iov_wq(struct qed_dev *cdev)
3153 {
3154 int i;
3155
3156 for_each_hwfn(cdev, i)
3157 queue_delayed_work(cdev->hwfns[i].iov_wq,
3158 &cdev->hwfns[i].iov_task, 0);
3159 }
3160
3161 int qed_sriov_disable(struct qed_dev *cdev, bool pci_enabled)
3162 {
3163 int i, j;
3164
3165 for_each_hwfn(cdev, i)
3166 if (cdev->hwfns[i].iov_wq)
3167 flush_workqueue(cdev->hwfns[i].iov_wq);
3168
3169 /* Mark VFs for disablement */
3170 qed_iov_set_vfs_to_disable(cdev, true);
3171
3172 if (cdev->p_iov_info && cdev->p_iov_info->num_vfs && pci_enabled)
3173 pci_disable_sriov(cdev->pdev);
3174
3175 for_each_hwfn(cdev, i) {
3176 struct qed_hwfn *hwfn = &cdev->hwfns[i];
3177 struct qed_ptt *ptt = qed_ptt_acquire(hwfn);
3178
3179 /* Failure to acquire the ptt in 100g creates an odd error
3180 * where the first engine has already relased IOV.
3181 */
3182 if (!ptt) {
3183 DP_ERR(hwfn, "Failed to acquire ptt\n");
3184 return -EBUSY;
3185 }
3186
3187 /* Clean WFQ db and configure equal weight for all vports */
3188 qed_clean_wfq_db(hwfn, ptt);
3189
3190 qed_for_each_vf(hwfn, j) {
3191 int k;
3192
3193 if (!qed_iov_is_valid_vfid(hwfn, j, true))
3194 continue;
3195
3196 /* Wait until VF is disabled before releasing */
3197 for (k = 0; k < 100; k++) {
3198 if (!qed_iov_is_vf_stopped(hwfn, j))
3199 msleep(20);
3200 else
3201 break;
3202 }
3203
3204 if (k < 100)
3205 qed_iov_release_hw_for_vf(&cdev->hwfns[i],
3206 ptt, j);
3207 else
3208 DP_ERR(hwfn,
3209 "Timeout waiting for VF's FLR to end\n");
3210 }
3211
3212 qed_ptt_release(hwfn, ptt);
3213 }
3214
3215 qed_iov_set_vfs_to_disable(cdev, false);
3216
3217 return 0;
3218 }
3219
3220 static int qed_sriov_enable(struct qed_dev *cdev, int num)
3221 {
3222 struct qed_sb_cnt_info sb_cnt_info;
3223 int i, j, rc;
3224
3225 if (num >= RESC_NUM(&cdev->hwfns[0], QED_VPORT)) {
3226 DP_NOTICE(cdev, "Can start at most %d VFs\n",
3227 RESC_NUM(&cdev->hwfns[0], QED_VPORT) - 1);
3228 return -EINVAL;
3229 }
3230
3231 /* Initialize HW for VF access */
3232 for_each_hwfn(cdev, j) {
3233 struct qed_hwfn *hwfn = &cdev->hwfns[j];
3234 struct qed_ptt *ptt = qed_ptt_acquire(hwfn);
3235 int num_sbs = 0, limit = 16;
3236
3237 if (!ptt) {
3238 DP_ERR(hwfn, "Failed to acquire ptt\n");
3239 rc = -EBUSY;
3240 goto err;
3241 }
3242
3243 if (IS_MF_DEFAULT(hwfn))
3244 limit = MAX_NUM_VFS_BB / hwfn->num_funcs_on_engine;
3245
3246 memset(&sb_cnt_info, 0, sizeof(sb_cnt_info));
3247 qed_int_get_num_sbs(hwfn, &sb_cnt_info);
3248 num_sbs = min_t(int, sb_cnt_info.sb_free_blk, limit);
3249
3250 for (i = 0; i < num; i++) {
3251 if (!qed_iov_is_valid_vfid(hwfn, i, false))
3252 continue;
3253
3254 rc = qed_iov_init_hw_for_vf(hwfn,
3255 ptt, i, num_sbs / num);
3256 if (rc) {
3257 DP_ERR(cdev, "Failed to enable VF[%d]\n", i);
3258 qed_ptt_release(hwfn, ptt);
3259 goto err;
3260 }
3261 }
3262
3263 qed_ptt_release(hwfn, ptt);
3264 }
3265
3266 /* Enable SRIOV PCIe functions */
3267 rc = pci_enable_sriov(cdev->pdev, num);
3268 if (rc) {
3269 DP_ERR(cdev, "Failed to enable sriov [%d]\n", rc);
3270 goto err;
3271 }
3272
3273 return num;
3274
3275 err:
3276 qed_sriov_disable(cdev, false);
3277 return rc;
3278 }
3279
3280 static int qed_sriov_configure(struct qed_dev *cdev, int num_vfs_param)
3281 {
3282 if (!IS_QED_SRIOV(cdev)) {
3283 DP_VERBOSE(cdev, QED_MSG_IOV, "SR-IOV is not supported\n");
3284 return -EOPNOTSUPP;
3285 }
3286
3287 if (num_vfs_param)
3288 return qed_sriov_enable(cdev, num_vfs_param);
3289 else
3290 return qed_sriov_disable(cdev, true);
3291 }
3292
3293 static int qed_sriov_pf_set_mac(struct qed_dev *cdev, u8 *mac, int vfid)
3294 {
3295 int i;
3296
3297 if (!IS_QED_SRIOV(cdev) || !IS_PF_SRIOV_ALLOC(&cdev->hwfns[0])) {
3298 DP_VERBOSE(cdev, QED_MSG_IOV,
3299 "Cannot set a VF MAC; Sriov is not enabled\n");
3300 return -EINVAL;
3301 }
3302
3303 if (!qed_iov_is_valid_vfid(&cdev->hwfns[0], vfid, true)) {
3304 DP_VERBOSE(cdev, QED_MSG_IOV,
3305 "Cannot set VF[%d] MAC (VF is not active)\n", vfid);
3306 return -EINVAL;
3307 }
3308
3309 for_each_hwfn(cdev, i) {
3310 struct qed_hwfn *hwfn = &cdev->hwfns[i];
3311 struct qed_public_vf_info *vf_info;
3312
3313 vf_info = qed_iov_get_public_vf_info(hwfn, vfid, true);
3314 if (!vf_info)
3315 continue;
3316
3317 /* Set the forced MAC, and schedule the IOV task */
3318 ether_addr_copy(vf_info->forced_mac, mac);
3319 qed_schedule_iov(hwfn, QED_IOV_WQ_SET_UNICAST_FILTER_FLAG);
3320 }
3321
3322 return 0;
3323 }
3324
3325 static int qed_sriov_pf_set_vlan(struct qed_dev *cdev, u16 vid, int vfid)
3326 {
3327 int i;
3328
3329 if (!IS_QED_SRIOV(cdev) || !IS_PF_SRIOV_ALLOC(&cdev->hwfns[0])) {
3330 DP_VERBOSE(cdev, QED_MSG_IOV,
3331 "Cannot set a VF MAC; Sriov is not enabled\n");
3332 return -EINVAL;
3333 }
3334
3335 if (!qed_iov_is_valid_vfid(&cdev->hwfns[0], vfid, true)) {
3336 DP_VERBOSE(cdev, QED_MSG_IOV,
3337 "Cannot set VF[%d] MAC (VF is not active)\n", vfid);
3338 return -EINVAL;
3339 }
3340
3341 for_each_hwfn(cdev, i) {
3342 struct qed_hwfn *hwfn = &cdev->hwfns[i];
3343 struct qed_public_vf_info *vf_info;
3344
3345 vf_info = qed_iov_get_public_vf_info(hwfn, vfid, true);
3346 if (!vf_info)
3347 continue;
3348
3349 /* Set the forced vlan, and schedule the IOV task */
3350 vf_info->forced_vlan = vid;
3351 qed_schedule_iov(hwfn, QED_IOV_WQ_SET_UNICAST_FILTER_FLAG);
3352 }
3353
3354 return 0;
3355 }
3356
3357 static int qed_get_vf_config(struct qed_dev *cdev,
3358 int vf_id, struct ifla_vf_info *ivi)
3359 {
3360 struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev);
3361 struct qed_public_vf_info *vf_info;
3362 struct qed_mcp_link_state link;
3363 u32 tx_rate;
3364
3365 /* Sanitize request */
3366 if (IS_VF(cdev))
3367 return -EINVAL;
3368
3369 if (!qed_iov_is_valid_vfid(&cdev->hwfns[0], vf_id, true)) {
3370 DP_VERBOSE(cdev, QED_MSG_IOV,
3371 "VF index [%d] isn't active\n", vf_id);
3372 return -EINVAL;
3373 }
3374
3375 vf_info = qed_iov_get_public_vf_info(hwfn, vf_id, true);
3376
3377 qed_iov_get_link(hwfn, vf_id, NULL, &link, NULL);
3378
3379 /* Fill information about VF */
3380 ivi->vf = vf_id;
3381
3382 if (is_valid_ether_addr(vf_info->forced_mac))
3383 ether_addr_copy(ivi->mac, vf_info->forced_mac);
3384 else
3385 ether_addr_copy(ivi->mac, vf_info->mac);
3386
3387 ivi->vlan = vf_info->forced_vlan;
3388 ivi->spoofchk = qed_iov_spoofchk_get(hwfn, vf_id);
3389 ivi->linkstate = vf_info->link_state;
3390 tx_rate = vf_info->tx_rate;
3391 ivi->max_tx_rate = tx_rate ? tx_rate : link.speed;
3392 ivi->min_tx_rate = qed_iov_get_vf_min_rate(hwfn, vf_id);
3393
3394 return 0;
3395 }
3396
3397 void qed_inform_vf_link_state(struct qed_hwfn *hwfn)
3398 {
3399 struct qed_mcp_link_capabilities caps;
3400 struct qed_mcp_link_params params;
3401 struct qed_mcp_link_state link;
3402 int i;
3403
3404 if (!hwfn->pf_iov_info)
3405 return;
3406
3407 /* Update bulletin of all future possible VFs with link configuration */
3408 for (i = 0; i < hwfn->cdev->p_iov_info->total_vfs; i++) {
3409 struct qed_public_vf_info *vf_info;
3410
3411 vf_info = qed_iov_get_public_vf_info(hwfn, i, false);
3412 if (!vf_info)
3413 continue;
3414
3415 memcpy(&params, qed_mcp_get_link_params(hwfn), sizeof(params));
3416 memcpy(&link, qed_mcp_get_link_state(hwfn), sizeof(link));
3417 memcpy(&caps, qed_mcp_get_link_capabilities(hwfn),
3418 sizeof(caps));
3419
3420 /* Modify link according to the VF's configured link state */
3421 switch (vf_info->link_state) {
3422 case IFLA_VF_LINK_STATE_DISABLE:
3423 link.link_up = false;
3424 break;
3425 case IFLA_VF_LINK_STATE_ENABLE:
3426 link.link_up = true;
3427 /* Set speed according to maximum supported by HW.
3428 * that is 40G for regular devices and 100G for CMT
3429 * mode devices.
3430 */
3431 link.speed = (hwfn->cdev->num_hwfns > 1) ?
3432 100000 : 40000;
3433 default:
3434 /* In auto mode pass PF link image to VF */
3435 break;
3436 }
3437
3438 if (link.link_up && vf_info->tx_rate) {
3439 struct qed_ptt *ptt;
3440 int rate;
3441
3442 rate = min_t(int, vf_info->tx_rate, link.speed);
3443
3444 ptt = qed_ptt_acquire(hwfn);
3445 if (!ptt) {
3446 DP_NOTICE(hwfn, "Failed to acquire PTT\n");
3447 return;
3448 }
3449
3450 if (!qed_iov_configure_tx_rate(hwfn, ptt, i, rate)) {
3451 vf_info->tx_rate = rate;
3452 link.speed = rate;
3453 }
3454
3455 qed_ptt_release(hwfn, ptt);
3456 }
3457
3458 qed_iov_set_link(hwfn, i, &params, &link, &caps);
3459 }
3460
3461 qed_schedule_iov(hwfn, QED_IOV_WQ_BULLETIN_UPDATE_FLAG);
3462 }
3463
3464 static int qed_set_vf_link_state(struct qed_dev *cdev,
3465 int vf_id, int link_state)
3466 {
3467 int i;
3468
3469 /* Sanitize request */
3470 if (IS_VF(cdev))
3471 return -EINVAL;
3472
3473 if (!qed_iov_is_valid_vfid(&cdev->hwfns[0], vf_id, true)) {
3474 DP_VERBOSE(cdev, QED_MSG_IOV,
3475 "VF index [%d] isn't active\n", vf_id);
3476 return -EINVAL;
3477 }
3478
3479 /* Handle configuration of link state */
3480 for_each_hwfn(cdev, i) {
3481 struct qed_hwfn *hwfn = &cdev->hwfns[i];
3482 struct qed_public_vf_info *vf;
3483
3484 vf = qed_iov_get_public_vf_info(hwfn, vf_id, true);
3485 if (!vf)
3486 continue;
3487
3488 if (vf->link_state == link_state)
3489 continue;
3490
3491 vf->link_state = link_state;
3492 qed_inform_vf_link_state(&cdev->hwfns[i]);
3493 }
3494
3495 return 0;
3496 }
3497
3498 static int qed_spoof_configure(struct qed_dev *cdev, int vfid, bool val)
3499 {
3500 int i, rc = -EINVAL;
3501
3502 for_each_hwfn(cdev, i) {
3503 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
3504
3505 rc = qed_iov_spoofchk_set(p_hwfn, vfid, val);
3506 if (rc)
3507 break;
3508 }
3509
3510 return rc;
3511 }
3512
3513 static int qed_configure_max_vf_rate(struct qed_dev *cdev, int vfid, int rate)
3514 {
3515 int i;
3516
3517 for_each_hwfn(cdev, i) {
3518 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
3519 struct qed_public_vf_info *vf;
3520
3521 if (!qed_iov_pf_sanity_check(p_hwfn, vfid)) {
3522 DP_NOTICE(p_hwfn,
3523 "SR-IOV sanity check failed, can't set tx rate\n");
3524 return -EINVAL;
3525 }
3526
3527 vf = qed_iov_get_public_vf_info(p_hwfn, vfid, true);
3528
3529 vf->tx_rate = rate;
3530
3531 qed_inform_vf_link_state(p_hwfn);
3532 }
3533
3534 return 0;
3535 }
3536
3537 static int qed_set_vf_rate(struct qed_dev *cdev,
3538 int vfid, u32 min_rate, u32 max_rate)
3539 {
3540 int rc_min = 0, rc_max = 0;
3541
3542 if (max_rate)
3543 rc_max = qed_configure_max_vf_rate(cdev, vfid, max_rate);
3544
3545 if (min_rate)
3546 rc_min = qed_iov_configure_min_tx_rate(cdev, vfid, min_rate);
3547
3548 if (rc_max | rc_min)
3549 return -EINVAL;
3550
3551 return 0;
3552 }
3553
3554 static void qed_handle_vf_msg(struct qed_hwfn *hwfn)
3555 {
3556 u64 events[QED_VF_ARRAY_LENGTH];
3557 struct qed_ptt *ptt;
3558 int i;
3559
3560 ptt = qed_ptt_acquire(hwfn);
3561 if (!ptt) {
3562 DP_VERBOSE(hwfn, QED_MSG_IOV,
3563 "Can't acquire PTT; re-scheduling\n");
3564 qed_schedule_iov(hwfn, QED_IOV_WQ_MSG_FLAG);
3565 return;
3566 }
3567
3568 qed_iov_pf_get_and_clear_pending_events(hwfn, events);
3569
3570 DP_VERBOSE(hwfn, QED_MSG_IOV,
3571 "Event mask of VF events: 0x%llx 0x%llx 0x%llx\n",
3572 events[0], events[1], events[2]);
3573
3574 qed_for_each_vf(hwfn, i) {
3575 /* Skip VFs with no pending messages */
3576 if (!(events[i / 64] & (1ULL << (i % 64))))
3577 continue;
3578
3579 DP_VERBOSE(hwfn, QED_MSG_IOV,
3580 "Handling VF message from VF 0x%02x [Abs 0x%02x]\n",
3581 i, hwfn->cdev->p_iov_info->first_vf_in_pf + i);
3582
3583 /* Copy VF's message to PF's request buffer for that VF */
3584 if (qed_iov_copy_vf_msg(hwfn, ptt, i))
3585 continue;
3586
3587 qed_iov_process_mbx_req(hwfn, ptt, i);
3588 }
3589
3590 qed_ptt_release(hwfn, ptt);
3591 }
3592
3593 static void qed_handle_pf_set_vf_unicast(struct qed_hwfn *hwfn)
3594 {
3595 int i;
3596
3597 qed_for_each_vf(hwfn, i) {
3598 struct qed_public_vf_info *info;
3599 bool update = false;
3600 u8 *mac;
3601
3602 info = qed_iov_get_public_vf_info(hwfn, i, true);
3603 if (!info)
3604 continue;
3605
3606 /* Update data on bulletin board */
3607 mac = qed_iov_bulletin_get_forced_mac(hwfn, i);
3608 if (is_valid_ether_addr(info->forced_mac) &&
3609 (!mac || !ether_addr_equal(mac, info->forced_mac))) {
3610 DP_VERBOSE(hwfn,
3611 QED_MSG_IOV,
3612 "Handling PF setting of VF MAC to VF 0x%02x [Abs 0x%02x]\n",
3613 i,
3614 hwfn->cdev->p_iov_info->first_vf_in_pf + i);
3615
3616 /* Update bulletin board with forced MAC */
3617 qed_iov_bulletin_set_forced_mac(hwfn,
3618 info->forced_mac, i);
3619 update = true;
3620 }
3621
3622 if (qed_iov_bulletin_get_forced_vlan(hwfn, i) ^
3623 info->forced_vlan) {
3624 DP_VERBOSE(hwfn,
3625 QED_MSG_IOV,
3626 "Handling PF setting of pvid [0x%04x] to VF 0x%02x [Abs 0x%02x]\n",
3627 info->forced_vlan,
3628 i,
3629 hwfn->cdev->p_iov_info->first_vf_in_pf + i);
3630 qed_iov_bulletin_set_forced_vlan(hwfn,
3631 info->forced_vlan, i);
3632 update = true;
3633 }
3634
3635 if (update)
3636 qed_schedule_iov(hwfn, QED_IOV_WQ_BULLETIN_UPDATE_FLAG);
3637 }
3638 }
3639
3640 static void qed_handle_bulletin_post(struct qed_hwfn *hwfn)
3641 {
3642 struct qed_ptt *ptt;
3643 int i;
3644
3645 ptt = qed_ptt_acquire(hwfn);
3646 if (!ptt) {
3647 DP_NOTICE(hwfn, "Failed allocating a ptt entry\n");
3648 qed_schedule_iov(hwfn, QED_IOV_WQ_BULLETIN_UPDATE_FLAG);
3649 return;
3650 }
3651
3652 qed_for_each_vf(hwfn, i)
3653 qed_iov_post_vf_bulletin(hwfn, i, ptt);
3654
3655 qed_ptt_release(hwfn, ptt);
3656 }
3657
3658 void qed_iov_pf_task(struct work_struct *work)
3659 {
3660 struct qed_hwfn *hwfn = container_of(work, struct qed_hwfn,
3661 iov_task.work);
3662 int rc;
3663
3664 if (test_and_clear_bit(QED_IOV_WQ_STOP_WQ_FLAG, &hwfn->iov_task_flags))
3665 return;
3666
3667 if (test_and_clear_bit(QED_IOV_WQ_FLR_FLAG, &hwfn->iov_task_flags)) {
3668 struct qed_ptt *ptt = qed_ptt_acquire(hwfn);
3669
3670 if (!ptt) {
3671 qed_schedule_iov(hwfn, QED_IOV_WQ_FLR_FLAG);
3672 return;
3673 }
3674
3675 rc = qed_iov_vf_flr_cleanup(hwfn, ptt);
3676 if (rc)
3677 qed_schedule_iov(hwfn, QED_IOV_WQ_FLR_FLAG);
3678
3679 qed_ptt_release(hwfn, ptt);
3680 }
3681
3682 if (test_and_clear_bit(QED_IOV_WQ_MSG_FLAG, &hwfn->iov_task_flags))
3683 qed_handle_vf_msg(hwfn);
3684
3685 if (test_and_clear_bit(QED_IOV_WQ_SET_UNICAST_FILTER_FLAG,
3686 &hwfn->iov_task_flags))
3687 qed_handle_pf_set_vf_unicast(hwfn);
3688
3689 if (test_and_clear_bit(QED_IOV_WQ_BULLETIN_UPDATE_FLAG,
3690 &hwfn->iov_task_flags))
3691 qed_handle_bulletin_post(hwfn);
3692 }
3693
3694 void qed_iov_wq_stop(struct qed_dev *cdev, bool schedule_first)
3695 {
3696 int i;
3697
3698 for_each_hwfn(cdev, i) {
3699 if (!cdev->hwfns[i].iov_wq)
3700 continue;
3701
3702 if (schedule_first) {
3703 qed_schedule_iov(&cdev->hwfns[i],
3704 QED_IOV_WQ_STOP_WQ_FLAG);
3705 cancel_delayed_work_sync(&cdev->hwfns[i].iov_task);
3706 }
3707
3708 flush_workqueue(cdev->hwfns[i].iov_wq);
3709 destroy_workqueue(cdev->hwfns[i].iov_wq);
3710 }
3711 }
3712
3713 int qed_iov_wq_start(struct qed_dev *cdev)
3714 {
3715 char name[NAME_SIZE];
3716 int i;
3717
3718 for_each_hwfn(cdev, i) {
3719 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
3720
3721 /* PFs needs a dedicated workqueue only if they support IOV.
3722 * VFs always require one.
3723 */
3724 if (IS_PF(p_hwfn->cdev) && !IS_PF_SRIOV(p_hwfn))
3725 continue;
3726
3727 snprintf(name, NAME_SIZE, "iov-%02x:%02x.%02x",
3728 cdev->pdev->bus->number,
3729 PCI_SLOT(cdev->pdev->devfn), p_hwfn->abs_pf_id);
3730
3731 p_hwfn->iov_wq = create_singlethread_workqueue(name);
3732 if (!p_hwfn->iov_wq) {
3733 DP_NOTICE(p_hwfn, "Cannot create iov workqueue\n");
3734 return -ENOMEM;
3735 }
3736
3737 if (IS_PF(cdev))
3738 INIT_DELAYED_WORK(&p_hwfn->iov_task, qed_iov_pf_task);
3739 else
3740 INIT_DELAYED_WORK(&p_hwfn->iov_task, qed_iov_vf_task);
3741 }
3742
3743 return 0;
3744 }
3745
3746 const struct qed_iov_hv_ops qed_iov_ops_pass = {
3747 .configure = &qed_sriov_configure,
3748 .set_mac = &qed_sriov_pf_set_mac,
3749 .set_vlan = &qed_sriov_pf_set_vlan,
3750 .get_config = &qed_get_vf_config,
3751 .set_link_state = &qed_set_vf_link_state,
3752 .set_spoof = &qed_spoof_configure,
3753 .set_rate = &qed_set_vf_rate,
3754 };