2016-05-11 13:36:12 +00:00
|
|
|
/* QLogic qed NIC Driver
|
|
|
|
* Copyright (c) 2015 QLogic Corporation
|
|
|
|
*
|
|
|
|
* This software is available under the terms of the GNU General Public License
|
|
|
|
* (GPL) Version 2, available from the file COPYING in the main directory of
|
|
|
|
* this source tree.
|
|
|
|
*/
|
|
|
|
|
2016-05-11 13:36:15 +00:00
|
|
|
#include <linux/qed/qed_iov_if.h>
|
2016-05-11 13:36:14 +00:00
|
|
|
#include "qed_cxt.h"
|
|
|
|
#include "qed_hsi.h"
|
2016-05-11 13:36:12 +00:00
|
|
|
#include "qed_hw.h"
|
2016-05-11 13:36:14 +00:00
|
|
|
#include "qed_init_ops.h"
|
2016-05-11 13:36:12 +00:00
|
|
|
#include "qed_int.h"
|
2016-05-11 13:36:14 +00:00
|
|
|
#include "qed_mcp.h"
|
2016-05-11 13:36:12 +00:00
|
|
|
#include "qed_reg_addr.h"
|
2016-05-11 13:36:14 +00:00
|
|
|
#include "qed_sp.h"
|
2016-05-11 13:36:12 +00:00
|
|
|
#include "qed_sriov.h"
|
|
|
|
#include "qed_vf.h"
|
|
|
|
|
2016-05-11 13:36:14 +00:00
|
|
|
/* IOV ramrods */
|
|
|
|
static int qed_sp_vf_start(struct qed_hwfn *p_hwfn,
|
|
|
|
u32 concrete_vfid, u16 opaque_vfid)
|
|
|
|
{
|
|
|
|
struct vf_start_ramrod_data *p_ramrod = NULL;
|
|
|
|
struct qed_spq_entry *p_ent = NULL;
|
|
|
|
struct qed_sp_init_data init_data;
|
|
|
|
int rc = -EINVAL;
|
|
|
|
|
|
|
|
/* Get SPQ entry */
|
|
|
|
memset(&init_data, 0, sizeof(init_data));
|
|
|
|
init_data.cid = qed_spq_get_cid(p_hwfn);
|
|
|
|
init_data.opaque_fid = opaque_vfid;
|
|
|
|
init_data.comp_mode = QED_SPQ_MODE_EBLOCK;
|
|
|
|
|
|
|
|
rc = qed_sp_init_request(p_hwfn, &p_ent,
|
|
|
|
COMMON_RAMROD_VF_START,
|
|
|
|
PROTOCOLID_COMMON, &init_data);
|
|
|
|
if (rc)
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
p_ramrod = &p_ent->ramrod.vf_start;
|
|
|
|
|
|
|
|
p_ramrod->vf_id = GET_FIELD(concrete_vfid, PXP_CONCRETE_FID_VFID);
|
|
|
|
p_ramrod->opaque_fid = cpu_to_le16(opaque_vfid);
|
|
|
|
|
|
|
|
p_ramrod->personality = PERSONALITY_ETH;
|
|
|
|
|
|
|
|
return qed_spq_post(p_hwfn, p_ent, NULL);
|
|
|
|
}
|
|
|
|
|
2016-05-11 13:36:15 +00:00
|
|
|
static int qed_sp_vf_stop(struct qed_hwfn *p_hwfn,
|
|
|
|
u32 concrete_vfid, u16 opaque_vfid)
|
|
|
|
{
|
|
|
|
struct vf_stop_ramrod_data *p_ramrod = NULL;
|
|
|
|
struct qed_spq_entry *p_ent = NULL;
|
|
|
|
struct qed_sp_init_data init_data;
|
|
|
|
int rc = -EINVAL;
|
|
|
|
|
|
|
|
/* Get SPQ entry */
|
|
|
|
memset(&init_data, 0, sizeof(init_data));
|
|
|
|
init_data.cid = qed_spq_get_cid(p_hwfn);
|
|
|
|
init_data.opaque_fid = opaque_vfid;
|
|
|
|
init_data.comp_mode = QED_SPQ_MODE_EBLOCK;
|
|
|
|
|
|
|
|
rc = qed_sp_init_request(p_hwfn, &p_ent,
|
|
|
|
COMMON_RAMROD_VF_STOP,
|
|
|
|
PROTOCOLID_COMMON, &init_data);
|
|
|
|
if (rc)
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
p_ramrod = &p_ent->ramrod.vf_stop;
|
|
|
|
|
|
|
|
p_ramrod->vf_id = GET_FIELD(concrete_vfid, PXP_CONCRETE_FID_VFID);
|
|
|
|
|
|
|
|
return qed_spq_post(p_hwfn, p_ent, NULL);
|
|
|
|
}
|
|
|
|
|
2016-05-11 13:36:12 +00:00
|
|
|
bool qed_iov_is_valid_vfid(struct qed_hwfn *p_hwfn,
|
|
|
|
int rel_vf_id, bool b_enabled_only)
|
|
|
|
{
|
|
|
|
if (!p_hwfn->pf_iov_info) {
|
|
|
|
DP_NOTICE(p_hwfn->cdev, "No iov info\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((rel_vf_id >= p_hwfn->cdev->p_iov_info->total_vfs) ||
|
|
|
|
(rel_vf_id < 0))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if ((!p_hwfn->pf_iov_info->vfs_array[rel_vf_id].b_init) &&
|
|
|
|
b_enabled_only)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-05-11 13:36:13 +00:00
|
|
|
static struct qed_vf_info *qed_iov_get_vf_info(struct qed_hwfn *p_hwfn,
|
|
|
|
u16 relative_vf_id,
|
|
|
|
bool b_enabled_only)
|
|
|
|
{
|
|
|
|
struct qed_vf_info *vf = NULL;
|
|
|
|
|
|
|
|
if (!p_hwfn->pf_iov_info) {
|
|
|
|
DP_NOTICE(p_hwfn->cdev, "No iov info\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (qed_iov_is_valid_vfid(p_hwfn, relative_vf_id, b_enabled_only))
|
|
|
|
vf = &p_hwfn->pf_iov_info->vfs_array[relative_vf_id];
|
|
|
|
else
|
|
|
|
DP_ERR(p_hwfn, "qed_iov_get_vf_info: VF[%d] is not enabled\n",
|
|
|
|
relative_vf_id);
|
|
|
|
|
|
|
|
return vf;
|
|
|
|
}
|
|
|
|
|
2016-05-11 13:36:12 +00:00
|
|
|
static int qed_iov_pci_cfg_info(struct qed_dev *cdev)
|
|
|
|
{
|
|
|
|
struct qed_hw_sriov_info *iov = cdev->p_iov_info;
|
|
|
|
int pos = iov->pos;
|
|
|
|
|
|
|
|
DP_VERBOSE(cdev, QED_MSG_IOV, "sriov ext pos %d\n", pos);
|
|
|
|
pci_read_config_word(cdev->pdev, pos + PCI_SRIOV_CTRL, &iov->ctrl);
|
|
|
|
|
|
|
|
pci_read_config_word(cdev->pdev,
|
|
|
|
pos + PCI_SRIOV_TOTAL_VF, &iov->total_vfs);
|
|
|
|
pci_read_config_word(cdev->pdev,
|
|
|
|
pos + PCI_SRIOV_INITIAL_VF, &iov->initial_vfs);
|
|
|
|
|
|
|
|
pci_read_config_word(cdev->pdev, pos + PCI_SRIOV_NUM_VF, &iov->num_vfs);
|
|
|
|
if (iov->num_vfs) {
|
|
|
|
DP_VERBOSE(cdev,
|
|
|
|
QED_MSG_IOV,
|
|
|
|
"Number of VFs are already set to non-zero value. Ignoring PCI configuration value\n");
|
|
|
|
iov->num_vfs = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
pci_read_config_word(cdev->pdev,
|
|
|
|
pos + PCI_SRIOV_VF_OFFSET, &iov->offset);
|
|
|
|
|
|
|
|
pci_read_config_word(cdev->pdev,
|
|
|
|
pos + PCI_SRIOV_VF_STRIDE, &iov->stride);
|
|
|
|
|
|
|
|
pci_read_config_word(cdev->pdev,
|
|
|
|
pos + PCI_SRIOV_VF_DID, &iov->vf_device_id);
|
|
|
|
|
|
|
|
pci_read_config_dword(cdev->pdev,
|
|
|
|
pos + PCI_SRIOV_SUP_PGSIZE, &iov->pgsz);
|
|
|
|
|
|
|
|
pci_read_config_dword(cdev->pdev, pos + PCI_SRIOV_CAP, &iov->cap);
|
|
|
|
|
|
|
|
pci_read_config_byte(cdev->pdev, pos + PCI_SRIOV_FUNC_LINK, &iov->link);
|
|
|
|
|
|
|
|
DP_VERBOSE(cdev,
|
|
|
|
QED_MSG_IOV,
|
|
|
|
"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",
|
|
|
|
iov->nres,
|
|
|
|
iov->cap,
|
|
|
|
iov->ctrl,
|
|
|
|
iov->total_vfs,
|
|
|
|
iov->initial_vfs,
|
|
|
|
iov->nr_virtfn, iov->offset, iov->stride, iov->pgsz);
|
|
|
|
|
|
|
|
/* Some sanity checks */
|
|
|
|
if (iov->num_vfs > NUM_OF_VFS(cdev) ||
|
|
|
|
iov->total_vfs > NUM_OF_VFS(cdev)) {
|
|
|
|
/* This can happen only due to a bug. In this case we set
|
|
|
|
* num_vfs to zero to avoid memory corruption in the code that
|
|
|
|
* assumes max number of vfs
|
|
|
|
*/
|
|
|
|
DP_NOTICE(cdev,
|
|
|
|
"IOV: Unexpected number of vfs set: %d setting num_vf to zero\n",
|
|
|
|
iov->num_vfs);
|
|
|
|
|
|
|
|
iov->num_vfs = 0;
|
|
|
|
iov->total_vfs = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void qed_iov_clear_vf_igu_blocks(struct qed_hwfn *p_hwfn,
|
|
|
|
struct qed_ptt *p_ptt)
|
|
|
|
{
|
|
|
|
struct qed_igu_block *p_sb;
|
|
|
|
u16 sb_id;
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
if (!p_hwfn->hw_info.p_igu_info) {
|
|
|
|
DP_ERR(p_hwfn,
|
|
|
|
"qed_iov_clear_vf_igu_blocks IGU Info not initialized\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (sb_id = 0; sb_id < QED_MAPPING_MEMORY_SIZE(p_hwfn->cdev);
|
|
|
|
sb_id++) {
|
|
|
|
p_sb = &p_hwfn->hw_info.p_igu_info->igu_map.igu_blocks[sb_id];
|
|
|
|
if ((p_sb->status & QED_IGU_STATUS_FREE) &&
|
|
|
|
!(p_sb->status & QED_IGU_STATUS_PF)) {
|
|
|
|
val = qed_rd(p_hwfn, p_ptt,
|
|
|
|
IGU_REG_MAPPING_MEMORY + sb_id * 4);
|
|
|
|
SET_FIELD(val, IGU_MAPPING_LINE_VALID, 0);
|
|
|
|
qed_wr(p_hwfn, p_ptt,
|
|
|
|
IGU_REG_MAPPING_MEMORY + 4 * sb_id, val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void qed_iov_setup_vfdb(struct qed_hwfn *p_hwfn)
|
|
|
|
{
|
|
|
|
struct qed_hw_sriov_info *p_iov = p_hwfn->cdev->p_iov_info;
|
|
|
|
struct qed_pf_iov *p_iov_info = p_hwfn->pf_iov_info;
|
|
|
|
struct qed_bulletin_content *p_bulletin_virt;
|
|
|
|
dma_addr_t req_p, rply_p, bulletin_p;
|
|
|
|
union pfvf_tlvs *p_reply_virt_addr;
|
|
|
|
union vfpf_tlvs *p_req_virt_addr;
|
|
|
|
u8 idx = 0;
|
|
|
|
|
|
|
|
memset(p_iov_info->vfs_array, 0, sizeof(p_iov_info->vfs_array));
|
|
|
|
|
|
|
|
p_req_virt_addr = p_iov_info->mbx_msg_virt_addr;
|
|
|
|
req_p = p_iov_info->mbx_msg_phys_addr;
|
|
|
|
p_reply_virt_addr = p_iov_info->mbx_reply_virt_addr;
|
|
|
|
rply_p = p_iov_info->mbx_reply_phys_addr;
|
|
|
|
p_bulletin_virt = p_iov_info->p_bulletins;
|
|
|
|
bulletin_p = p_iov_info->bulletins_phys;
|
|
|
|
if (!p_req_virt_addr || !p_reply_virt_addr || !p_bulletin_virt) {
|
|
|
|
DP_ERR(p_hwfn,
|
|
|
|
"qed_iov_setup_vfdb called without allocating mem first\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (idx = 0; idx < p_iov->total_vfs; idx++) {
|
|
|
|
struct qed_vf_info *vf = &p_iov_info->vfs_array[idx];
|
|
|
|
u32 concrete;
|
|
|
|
|
|
|
|
vf->vf_mbx.req_virt = p_req_virt_addr + idx;
|
|
|
|
vf->vf_mbx.req_phys = req_p + idx * sizeof(union vfpf_tlvs);
|
|
|
|
vf->vf_mbx.reply_virt = p_reply_virt_addr + idx;
|
|
|
|
vf->vf_mbx.reply_phys = rply_p + idx * sizeof(union pfvf_tlvs);
|
|
|
|
|
|
|
|
vf->state = VF_STOPPED;
|
|
|
|
vf->b_init = false;
|
|
|
|
|
|
|
|
vf->bulletin.phys = idx *
|
|
|
|
sizeof(struct qed_bulletin_content) +
|
|
|
|
bulletin_p;
|
|
|
|
vf->bulletin.p_virt = p_bulletin_virt + idx;
|
|
|
|
vf->bulletin.size = sizeof(struct qed_bulletin_content);
|
|
|
|
|
|
|
|
vf->relative_vf_id = idx;
|
|
|
|
vf->abs_vf_id = idx + p_iov->first_vf_in_pf;
|
|
|
|
concrete = qed_vfid_to_concrete(p_hwfn, vf->abs_vf_id);
|
|
|
|
vf->concrete_fid = concrete;
|
|
|
|
vf->opaque_fid = (p_hwfn->hw_info.opaque_fid & 0xff) |
|
|
|
|
(vf->abs_vf_id << 8);
|
|
|
|
vf->vport_id = idx + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int qed_iov_allocate_vfdb(struct qed_hwfn *p_hwfn)
|
|
|
|
{
|
|
|
|
struct qed_pf_iov *p_iov_info = p_hwfn->pf_iov_info;
|
|
|
|
void **p_v_addr;
|
|
|
|
u16 num_vfs = 0;
|
|
|
|
|
|
|
|
num_vfs = p_hwfn->cdev->p_iov_info->total_vfs;
|
|
|
|
|
|
|
|
DP_VERBOSE(p_hwfn, QED_MSG_IOV,
|
|
|
|
"qed_iov_allocate_vfdb for %d VFs\n", num_vfs);
|
|
|
|
|
|
|
|
/* Allocate PF Mailbox buffer (per-VF) */
|
|
|
|
p_iov_info->mbx_msg_size = sizeof(union vfpf_tlvs) * num_vfs;
|
|
|
|
p_v_addr = &p_iov_info->mbx_msg_virt_addr;
|
|
|
|
*p_v_addr = dma_alloc_coherent(&p_hwfn->cdev->pdev->dev,
|
|
|
|
p_iov_info->mbx_msg_size,
|
|
|
|
&p_iov_info->mbx_msg_phys_addr,
|
|
|
|
GFP_KERNEL);
|
|
|
|
if (!*p_v_addr)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
/* Allocate PF Mailbox Reply buffer (per-VF) */
|
|
|
|
p_iov_info->mbx_reply_size = sizeof(union pfvf_tlvs) * num_vfs;
|
|
|
|
p_v_addr = &p_iov_info->mbx_reply_virt_addr;
|
|
|
|
*p_v_addr = dma_alloc_coherent(&p_hwfn->cdev->pdev->dev,
|
|
|
|
p_iov_info->mbx_reply_size,
|
|
|
|
&p_iov_info->mbx_reply_phys_addr,
|
|
|
|
GFP_KERNEL);
|
|
|
|
if (!*p_v_addr)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
p_iov_info->bulletins_size = sizeof(struct qed_bulletin_content) *
|
|
|
|
num_vfs;
|
|
|
|
p_v_addr = &p_iov_info->p_bulletins;
|
|
|
|
*p_v_addr = dma_alloc_coherent(&p_hwfn->cdev->pdev->dev,
|
|
|
|
p_iov_info->bulletins_size,
|
|
|
|
&p_iov_info->bulletins_phys,
|
|
|
|
GFP_KERNEL);
|
|
|
|
if (!*p_v_addr)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
DP_VERBOSE(p_hwfn,
|
|
|
|
QED_MSG_IOV,
|
|
|
|
"PF's Requests mailbox [%p virt 0x%llx phys], Response mailbox [%p virt 0x%llx phys] Bulletins [%p virt 0x%llx phys]\n",
|
|
|
|
p_iov_info->mbx_msg_virt_addr,
|
|
|
|
(u64) p_iov_info->mbx_msg_phys_addr,
|
|
|
|
p_iov_info->mbx_reply_virt_addr,
|
|
|
|
(u64) p_iov_info->mbx_reply_phys_addr,
|
|
|
|
p_iov_info->p_bulletins, (u64) p_iov_info->bulletins_phys);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void qed_iov_free_vfdb(struct qed_hwfn *p_hwfn)
|
|
|
|
{
|
|
|
|
struct qed_pf_iov *p_iov_info = p_hwfn->pf_iov_info;
|
|
|
|
|
|
|
|
if (p_hwfn->pf_iov_info->mbx_msg_virt_addr)
|
|
|
|
dma_free_coherent(&p_hwfn->cdev->pdev->dev,
|
|
|
|
p_iov_info->mbx_msg_size,
|
|
|
|
p_iov_info->mbx_msg_virt_addr,
|
|
|
|
p_iov_info->mbx_msg_phys_addr);
|
|
|
|
|
|
|
|
if (p_hwfn->pf_iov_info->mbx_reply_virt_addr)
|
|
|
|
dma_free_coherent(&p_hwfn->cdev->pdev->dev,
|
|
|
|
p_iov_info->mbx_reply_size,
|
|
|
|
p_iov_info->mbx_reply_virt_addr,
|
|
|
|
p_iov_info->mbx_reply_phys_addr);
|
|
|
|
|
|
|
|
if (p_iov_info->p_bulletins)
|
|
|
|
dma_free_coherent(&p_hwfn->cdev->pdev->dev,
|
|
|
|
p_iov_info->bulletins_size,
|
|
|
|
p_iov_info->p_bulletins,
|
|
|
|
p_iov_info->bulletins_phys);
|
|
|
|
}
|
|
|
|
|
|
|
|
int qed_iov_alloc(struct qed_hwfn *p_hwfn)
|
|
|
|
{
|
|
|
|
struct qed_pf_iov *p_sriov;
|
|
|
|
|
|
|
|
if (!IS_PF_SRIOV(p_hwfn)) {
|
|
|
|
DP_VERBOSE(p_hwfn, QED_MSG_IOV,
|
|
|
|
"No SR-IOV - no need for IOV db\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
p_sriov = kzalloc(sizeof(*p_sriov), GFP_KERNEL);
|
|
|
|
if (!p_sriov) {
|
|
|
|
DP_NOTICE(p_hwfn, "Failed to allocate `struct qed_sriov'\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
p_hwfn->pf_iov_info = p_sriov;
|
|
|
|
|
|
|
|
return qed_iov_allocate_vfdb(p_hwfn);
|
|
|
|
}
|
|
|
|
|
|
|
|
void qed_iov_setup(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
|
|
|
|
{
|
|
|
|
if (!IS_PF_SRIOV(p_hwfn) || !IS_PF_SRIOV_ALLOC(p_hwfn))
|
|
|
|
return;
|
|
|
|
|
|
|
|
qed_iov_setup_vfdb(p_hwfn);
|
|
|
|
qed_iov_clear_vf_igu_blocks(p_hwfn, p_ptt);
|
|
|
|
}
|
|
|
|
|
|
|
|
void qed_iov_free(struct qed_hwfn *p_hwfn)
|
|
|
|
{
|
|
|
|
if (IS_PF_SRIOV_ALLOC(p_hwfn)) {
|
|
|
|
qed_iov_free_vfdb(p_hwfn);
|
|
|
|
kfree(p_hwfn->pf_iov_info);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void qed_iov_free_hw_info(struct qed_dev *cdev)
|
|
|
|
{
|
|
|
|
kfree(cdev->p_iov_info);
|
|
|
|
cdev->p_iov_info = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int qed_iov_hw_info(struct qed_hwfn *p_hwfn)
|
|
|
|
{
|
|
|
|
struct qed_dev *cdev = p_hwfn->cdev;
|
|
|
|
int pos;
|
|
|
|
int rc;
|
|
|
|
|
2016-05-11 13:36:14 +00:00
|
|
|
if (IS_VF(p_hwfn->cdev))
|
|
|
|
return 0;
|
|
|
|
|
2016-05-11 13:36:12 +00:00
|
|
|
/* Learn the PCI configuration */
|
|
|
|
pos = pci_find_ext_capability(p_hwfn->cdev->pdev,
|
|
|
|
PCI_EXT_CAP_ID_SRIOV);
|
|
|
|
if (!pos) {
|
|
|
|
DP_VERBOSE(p_hwfn, QED_MSG_IOV, "No PCIe IOV support\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Allocate a new struct for IOV information */
|
|
|
|
cdev->p_iov_info = kzalloc(sizeof(*cdev->p_iov_info), GFP_KERNEL);
|
|
|
|
if (!cdev->p_iov_info) {
|
|
|
|
DP_NOTICE(p_hwfn, "Can't support IOV due to lack of memory\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
cdev->p_iov_info->pos = pos;
|
|
|
|
|
|
|
|
rc = qed_iov_pci_cfg_info(cdev);
|
|
|
|
if (rc)
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
/* We want PF IOV to be synonemous with the existance of p_iov_info;
|
|
|
|
* In case the capability is published but there are no VFs, simply
|
|
|
|
* de-allocate the struct.
|
|
|
|
*/
|
|
|
|
if (!cdev->p_iov_info->total_vfs) {
|
|
|
|
DP_VERBOSE(p_hwfn, QED_MSG_IOV,
|
|
|
|
"IOV capabilities, but no VFs are published\n");
|
|
|
|
kfree(cdev->p_iov_info);
|
|
|
|
cdev->p_iov_info = NULL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Calculate the first VF index - this is a bit tricky; Basically,
|
|
|
|
* VFs start at offset 16 relative to PF0, and 2nd engine VFs begin
|
|
|
|
* after the first engine's VFs.
|
|
|
|
*/
|
|
|
|
cdev->p_iov_info->first_vf_in_pf = p_hwfn->cdev->p_iov_info->offset +
|
|
|
|
p_hwfn->abs_pf_id - 16;
|
|
|
|
if (QED_PATH_ID(p_hwfn))
|
|
|
|
cdev->p_iov_info->first_vf_in_pf -= MAX_NUM_VFS_BB;
|
|
|
|
|
|
|
|
DP_VERBOSE(p_hwfn, QED_MSG_IOV,
|
|
|
|
"First VF in hwfn 0x%08x\n",
|
|
|
|
cdev->p_iov_info->first_vf_in_pf);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-05-11 13:36:13 +00:00
|
|
|
static bool qed_iov_pf_sanity_check(struct qed_hwfn *p_hwfn, int vfid)
|
|
|
|
{
|
|
|
|
/* Check PF supports sriov */
|
|
|
|
if (!IS_QED_SRIOV(p_hwfn->cdev) || !IS_PF_SRIOV_ALLOC(p_hwfn))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* Check VF validity */
|
2016-05-11 13:36:14 +00:00
|
|
|
if (IS_VF(p_hwfn->cdev) || !IS_QED_SRIOV(p_hwfn->cdev) ||
|
|
|
|
!IS_PF_SRIOV_ALLOC(p_hwfn))
|
2016-05-11 13:36:13 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-05-11 13:36:15 +00:00
|
|
|
static void qed_iov_set_vf_to_disable(struct qed_dev *cdev,
|
|
|
|
u16 rel_vf_id, u8 to_disable)
|
|
|
|
{
|
|
|
|
struct qed_vf_info *vf;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for_each_hwfn(cdev, i) {
|
|
|
|
struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
|
|
|
|
|
|
|
|
vf = qed_iov_get_vf_info(p_hwfn, rel_vf_id, false);
|
|
|
|
if (!vf)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
vf->to_disable = to_disable;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void qed_iov_set_vfs_to_disable(struct qed_dev *cdev, u8 to_disable)
|
|
|
|
{
|
|
|
|
u16 i;
|
|
|
|
|
|
|
|
if (!IS_QED_SRIOV(cdev))
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = 0; i < cdev->p_iov_info->total_vfs; i++)
|
|
|
|
qed_iov_set_vf_to_disable(cdev, i, to_disable);
|
|
|
|
}
|
|
|
|
|
2016-05-11 13:36:14 +00:00
|
|
|
static void qed_iov_vf_pglue_clear_err(struct qed_hwfn *p_hwfn,
|
|
|
|
struct qed_ptt *p_ptt, u8 abs_vfid)
|
|
|
|
{
|
|
|
|
qed_wr(p_hwfn, p_ptt,
|
|
|
|
PGLUE_B_REG_WAS_ERROR_VF_31_0_CLR + (abs_vfid >> 5) * 4,
|
|
|
|
1 << (abs_vfid & 0x1f));
|
|
|
|
}
|
|
|
|
|
2016-05-11 13:36:15 +00:00
|
|
|
static void qed_iov_vf_igu_set_int(struct qed_hwfn *p_hwfn,
|
|
|
|
struct qed_ptt *p_ptt,
|
|
|
|
struct qed_vf_info *vf, bool enable)
|
|
|
|
{
|
|
|
|
u32 igu_vf_conf;
|
|
|
|
|
|
|
|
qed_fid_pretend(p_hwfn, p_ptt, (u16) vf->concrete_fid);
|
|
|
|
|
|
|
|
igu_vf_conf = qed_rd(p_hwfn, p_ptt, IGU_REG_VF_CONFIGURATION);
|
|
|
|
|
|
|
|
if (enable)
|
|
|
|
igu_vf_conf |= IGU_VF_CONF_MSI_MSIX_EN;
|
|
|
|
else
|
|
|
|
igu_vf_conf &= ~IGU_VF_CONF_MSI_MSIX_EN;
|
|
|
|
|
|
|
|
qed_wr(p_hwfn, p_ptt, IGU_REG_VF_CONFIGURATION, igu_vf_conf);
|
|
|
|
|
|
|
|
/* unpretend */
|
|
|
|
qed_fid_pretend(p_hwfn, p_ptt, (u16) p_hwfn->hw_info.concrete_fid);
|
|
|
|
}
|
|
|
|
|
2016-05-11 13:36:14 +00:00
|
|
|
static int qed_iov_enable_vf_access(struct qed_hwfn *p_hwfn,
|
|
|
|
struct qed_ptt *p_ptt,
|
|
|
|
struct qed_vf_info *vf)
|
|
|
|
{
|
|
|
|
u32 igu_vf_conf = IGU_VF_CONF_FUNC_EN;
|
|
|
|
int rc;
|
|
|
|
|
2016-05-11 13:36:15 +00:00
|
|
|
if (vf->to_disable)
|
|
|
|
return 0;
|
|
|
|
|
2016-05-11 13:36:14 +00:00
|
|
|
DP_VERBOSE(p_hwfn,
|
|
|
|
QED_MSG_IOV,
|
|
|
|
"Enable internal access for vf %x [abs %x]\n",
|
|
|
|
vf->abs_vf_id, QED_VF_ABS_ID(p_hwfn, vf));
|
|
|
|
|
|
|
|
qed_iov_vf_pglue_clear_err(p_hwfn, p_ptt, QED_VF_ABS_ID(p_hwfn, vf));
|
|
|
|
|
|
|
|
rc = qed_mcp_config_vf_msix(p_hwfn, p_ptt, vf->abs_vf_id, vf->num_sbs);
|
|
|
|
if (rc)
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
qed_fid_pretend(p_hwfn, p_ptt, (u16) vf->concrete_fid);
|
|
|
|
|
|
|
|
SET_FIELD(igu_vf_conf, IGU_VF_CONF_PARENT, p_hwfn->rel_pf_id);
|
|
|
|
STORE_RT_REG(p_hwfn, IGU_REG_VF_CONFIGURATION_RT_OFFSET, igu_vf_conf);
|
|
|
|
|
|
|
|
qed_init_run(p_hwfn, p_ptt, PHASE_VF, vf->abs_vf_id,
|
|
|
|
p_hwfn->hw_info.hw_mode);
|
|
|
|
|
|
|
|
/* unpretend */
|
|
|
|
qed_fid_pretend(p_hwfn, p_ptt, (u16) p_hwfn->hw_info.concrete_fid);
|
|
|
|
|
|
|
|
if (vf->state != VF_STOPPED) {
|
|
|
|
DP_NOTICE(p_hwfn, "VF[%02x] is already started\n",
|
|
|
|
vf->abs_vf_id);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Start VF */
|
|
|
|
rc = qed_sp_vf_start(p_hwfn, vf->concrete_fid, vf->opaque_fid);
|
|
|
|
if (rc)
|
|
|
|
DP_NOTICE(p_hwfn, "Failed to start VF[%02x]\n", vf->abs_vf_id);
|
|
|
|
|
|
|
|
vf->state = VF_FREE;
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2016-05-11 13:36:15 +00:00
|
|
|
/**
|
|
|
|
* @brief qed_iov_config_perm_table - configure the permission
|
|
|
|
* zone table.
|
|
|
|
* In E4, queue zone permission table size is 320x9. There
|
|
|
|
* are 320 VF queues for single engine device (256 for dual
|
|
|
|
* engine device), and each entry has the following format:
|
|
|
|
* {Valid, VF[7:0]}
|
|
|
|
* @param p_hwfn
|
|
|
|
* @param p_ptt
|
|
|
|
* @param vf
|
|
|
|
* @param enable
|
|
|
|
*/
|
|
|
|
static void qed_iov_config_perm_table(struct qed_hwfn *p_hwfn,
|
|
|
|
struct qed_ptt *p_ptt,
|
|
|
|
struct qed_vf_info *vf, u8 enable)
|
|
|
|
{
|
|
|
|
u32 reg_addr, val;
|
|
|
|
u16 qzone_id = 0;
|
|
|
|
int qid;
|
|
|
|
|
|
|
|
for (qid = 0; qid < vf->num_rxqs; qid++) {
|
|
|
|
qed_fw_l2_queue(p_hwfn, vf->vf_queues[qid].fw_rx_qid,
|
|
|
|
&qzone_id);
|
|
|
|
|
|
|
|
reg_addr = PSWHST_REG_ZONE_PERMISSION_TABLE + qzone_id * 4;
|
|
|
|
val = enable ? (vf->abs_vf_id | (1 << 8)) : 0;
|
|
|
|
qed_wr(p_hwfn, p_ptt, reg_addr, val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-11 13:36:14 +00:00
|
|
|
static u8 qed_iov_alloc_vf_igu_sbs(struct qed_hwfn *p_hwfn,
|
|
|
|
struct qed_ptt *p_ptt,
|
|
|
|
struct qed_vf_info *vf, u16 num_rx_queues)
|
|
|
|
{
|
|
|
|
struct qed_igu_block *igu_blocks;
|
|
|
|
int qid = 0, igu_id = 0;
|
|
|
|
u32 val = 0;
|
|
|
|
|
|
|
|
igu_blocks = p_hwfn->hw_info.p_igu_info->igu_map.igu_blocks;
|
|
|
|
|
|
|
|
if (num_rx_queues > p_hwfn->hw_info.p_igu_info->free_blks)
|
|
|
|
num_rx_queues = p_hwfn->hw_info.p_igu_info->free_blks;
|
|
|
|
p_hwfn->hw_info.p_igu_info->free_blks -= num_rx_queues;
|
|
|
|
|
|
|
|
SET_FIELD(val, IGU_MAPPING_LINE_FUNCTION_NUMBER, vf->abs_vf_id);
|
|
|
|
SET_FIELD(val, IGU_MAPPING_LINE_VALID, 1);
|
|
|
|
SET_FIELD(val, IGU_MAPPING_LINE_PF_VALID, 0);
|
|
|
|
|
|
|
|
while ((qid < num_rx_queues) &&
|
|
|
|
(igu_id < QED_MAPPING_MEMORY_SIZE(p_hwfn->cdev))) {
|
|
|
|
if (igu_blocks[igu_id].status & QED_IGU_STATUS_FREE) {
|
|
|
|
struct cau_sb_entry sb_entry;
|
|
|
|
|
|
|
|
vf->igu_sbs[qid] = (u16)igu_id;
|
|
|
|
igu_blocks[igu_id].status &= ~QED_IGU_STATUS_FREE;
|
|
|
|
|
|
|
|
SET_FIELD(val, IGU_MAPPING_LINE_VECTOR_NUMBER, qid);
|
|
|
|
|
|
|
|
qed_wr(p_hwfn, p_ptt,
|
|
|
|
IGU_REG_MAPPING_MEMORY + sizeof(u32) * igu_id,
|
|
|
|
val);
|
|
|
|
|
|
|
|
/* Configure igu sb in CAU which were marked valid */
|
|
|
|
qed_init_cau_sb_entry(p_hwfn, &sb_entry,
|
|
|
|
p_hwfn->rel_pf_id,
|
|
|
|
vf->abs_vf_id, 1);
|
|
|
|
qed_dmae_host2grc(p_hwfn, p_ptt,
|
|
|
|
(u64)(uintptr_t)&sb_entry,
|
|
|
|
CAU_REG_SB_VAR_MEMORY +
|
|
|
|
igu_id * sizeof(u64), 2, 0);
|
|
|
|
qid++;
|
|
|
|
}
|
|
|
|
igu_id++;
|
|
|
|
}
|
|
|
|
|
|
|
|
vf->num_sbs = (u8) num_rx_queues;
|
|
|
|
|
|
|
|
return vf->num_sbs;
|
|
|
|
}
|
|
|
|
|
2016-05-11 13:36:15 +00:00
|
|
|
static void qed_iov_free_vf_igu_sbs(struct qed_hwfn *p_hwfn,
|
|
|
|
struct qed_ptt *p_ptt,
|
|
|
|
struct qed_vf_info *vf)
|
|
|
|
{
|
|
|
|
struct qed_igu_info *p_info = p_hwfn->hw_info.p_igu_info;
|
|
|
|
int idx, igu_id;
|
|
|
|
u32 addr, val;
|
|
|
|
|
|
|
|
/* Invalidate igu CAM lines and mark them as free */
|
|
|
|
for (idx = 0; idx < vf->num_sbs; idx++) {
|
|
|
|
igu_id = vf->igu_sbs[idx];
|
|
|
|
addr = IGU_REG_MAPPING_MEMORY + sizeof(u32) * igu_id;
|
|
|
|
|
|
|
|
val = qed_rd(p_hwfn, p_ptt, addr);
|
|
|
|
SET_FIELD(val, IGU_MAPPING_LINE_VALID, 0);
|
|
|
|
qed_wr(p_hwfn, p_ptt, addr, val);
|
|
|
|
|
|
|
|
p_info->igu_map.igu_blocks[igu_id].status |=
|
|
|
|
QED_IGU_STATUS_FREE;
|
|
|
|
|
|
|
|
p_hwfn->hw_info.p_igu_info->free_blks++;
|
|
|
|
}
|
|
|
|
|
|
|
|
vf->num_sbs = 0;
|
|
|
|
}
|
|
|
|
|
2016-05-11 13:36:14 +00:00
|
|
|
static int qed_iov_init_hw_for_vf(struct qed_hwfn *p_hwfn,
|
|
|
|
struct qed_ptt *p_ptt,
|
|
|
|
u16 rel_vf_id, u16 num_rx_queues)
|
|
|
|
{
|
|
|
|
u8 num_of_vf_avaiable_chains = 0;
|
|
|
|
struct qed_vf_info *vf = NULL;
|
|
|
|
int rc = 0;
|
|
|
|
u32 cids;
|
|
|
|
u8 i;
|
|
|
|
|
|
|
|
vf = qed_iov_get_vf_info(p_hwfn, rel_vf_id, false);
|
|
|
|
if (!vf) {
|
|
|
|
DP_ERR(p_hwfn, "qed_iov_init_hw_for_vf : vf is NULL\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vf->b_init) {
|
|
|
|
DP_NOTICE(p_hwfn, "VF[%d] is already active.\n", rel_vf_id);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Limit number of queues according to number of CIDs */
|
|
|
|
qed_cxt_get_proto_cid_count(p_hwfn, PROTOCOLID_ETH, &cids);
|
|
|
|
DP_VERBOSE(p_hwfn,
|
|
|
|
QED_MSG_IOV,
|
|
|
|
"VF[%d] - requesting to initialize for 0x%04x queues [0x%04x CIDs available]\n",
|
|
|
|
vf->relative_vf_id, num_rx_queues, (u16) cids);
|
|
|
|
num_rx_queues = min_t(u16, num_rx_queues, ((u16) cids));
|
|
|
|
|
|
|
|
num_of_vf_avaiable_chains = qed_iov_alloc_vf_igu_sbs(p_hwfn,
|
|
|
|
p_ptt,
|
|
|
|
vf,
|
|
|
|
num_rx_queues);
|
|
|
|
if (!num_of_vf_avaiable_chains) {
|
|
|
|
DP_ERR(p_hwfn, "no available igu sbs\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Choose queue number and index ranges */
|
|
|
|
vf->num_rxqs = num_of_vf_avaiable_chains;
|
|
|
|
vf->num_txqs = num_of_vf_avaiable_chains;
|
|
|
|
|
|
|
|
for (i = 0; i < vf->num_rxqs; i++) {
|
|
|
|
u16 queue_id = qed_int_queue_id_from_sb_id(p_hwfn,
|
|
|
|
vf->igu_sbs[i]);
|
|
|
|
|
|
|
|
if (queue_id > RESC_NUM(p_hwfn, QED_L2_QUEUE)) {
|
|
|
|
DP_NOTICE(p_hwfn,
|
|
|
|
"VF[%d] will require utilizing of out-of-bounds queues - %04x\n",
|
|
|
|
vf->relative_vf_id, queue_id);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* CIDs are per-VF, so no problem having them 0-based. */
|
|
|
|
vf->vf_queues[i].fw_rx_qid = queue_id;
|
|
|
|
vf->vf_queues[i].fw_tx_qid = queue_id;
|
|
|
|
vf->vf_queues[i].fw_cid = i;
|
|
|
|
|
|
|
|
DP_VERBOSE(p_hwfn, QED_MSG_IOV,
|
|
|
|
"VF[%d] - [%d] SB %04x, Tx/Rx queue %04x CID %04x\n",
|
|
|
|
vf->relative_vf_id, i, vf->igu_sbs[i], queue_id, i);
|
|
|
|
}
|
|
|
|
rc = qed_iov_enable_vf_access(p_hwfn, p_ptt, vf);
|
|
|
|
if (!rc) {
|
|
|
|
vf->b_init = true;
|
|
|
|
|
|
|
|
if (IS_LEAD_HWFN(p_hwfn))
|
|
|
|
p_hwfn->cdev->p_iov_info->num_vfs++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2016-05-11 13:36:15 +00:00
|
|
|
static int qed_iov_release_hw_for_vf(struct qed_hwfn *p_hwfn,
|
|
|
|
struct qed_ptt *p_ptt, u16 rel_vf_id)
|
|
|
|
{
|
|
|
|
struct qed_vf_info *vf = NULL;
|
|
|
|
int rc = 0;
|
|
|
|
|
|
|
|
vf = qed_iov_get_vf_info(p_hwfn, rel_vf_id, true);
|
|
|
|
if (!vf) {
|
|
|
|
DP_ERR(p_hwfn, "qed_iov_release_hw_for_vf : vf is NULL\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vf->state != VF_STOPPED) {
|
|
|
|
/* Stopping the VF */
|
|
|
|
rc = qed_sp_vf_stop(p_hwfn, vf->concrete_fid, vf->opaque_fid);
|
|
|
|
|
|
|
|
if (rc != 0) {
|
|
|
|
DP_ERR(p_hwfn, "qed_sp_vf_stop returned error %d\n",
|
|
|
|
rc);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
vf->state = VF_STOPPED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* disablng interrupts and resetting permission table was done during
|
|
|
|
* vf-close, however, we could get here without going through vf_close
|
|
|
|
*/
|
|
|
|
/* Disable Interrupts for VF */
|
|
|
|
qed_iov_vf_igu_set_int(p_hwfn, p_ptt, vf, 0);
|
|
|
|
|
|
|
|
/* Reset Permission table */
|
|
|
|
qed_iov_config_perm_table(p_hwfn, p_ptt, vf, 0);
|
|
|
|
|
|
|
|
vf->num_rxqs = 0;
|
|
|
|
vf->num_txqs = 0;
|
|
|
|
qed_iov_free_vf_igu_sbs(p_hwfn, p_ptt, vf);
|
|
|
|
|
|
|
|
if (vf->b_init) {
|
|
|
|
vf->b_init = false;
|
|
|
|
|
|
|
|
if (IS_LEAD_HWFN(p_hwfn))
|
|
|
|
p_hwfn->cdev->p_iov_info->num_vfs--;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-05-11 13:36:13 +00:00
|
|
|
static bool qed_iov_tlv_supported(u16 tlvtype)
|
|
|
|
{
|
|
|
|
return CHANNEL_TLV_NONE < tlvtype && tlvtype < CHANNEL_TLV_MAX;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* place a given tlv on the tlv buffer, continuing current tlv list */
|
|
|
|
void *qed_add_tlv(struct qed_hwfn *p_hwfn, u8 **offset, u16 type, u16 length)
|
|
|
|
{
|
|
|
|
struct channel_tlv *tl = (struct channel_tlv *)*offset;
|
|
|
|
|
|
|
|
tl->type = type;
|
|
|
|
tl->length = length;
|
|
|
|
|
|
|
|
/* Offset should keep pointing to next TLV (the end of the last) */
|
|
|
|
*offset += length;
|
|
|
|
|
|
|
|
/* Return a pointer to the start of the added tlv */
|
|
|
|
return *offset - length;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* list the types and lengths of the tlvs on the buffer */
|
|
|
|
void qed_dp_tlv_list(struct qed_hwfn *p_hwfn, void *tlvs_list)
|
|
|
|
{
|
|
|
|
u16 i = 1, total_length = 0;
|
|
|
|
struct channel_tlv *tlv;
|
|
|
|
|
|
|
|
do {
|
|
|
|
tlv = (struct channel_tlv *)((u8 *)tlvs_list + total_length);
|
|
|
|
|
|
|
|
/* output tlv */
|
|
|
|
DP_VERBOSE(p_hwfn, QED_MSG_IOV,
|
|
|
|
"TLV number %d: type %d, length %d\n",
|
|
|
|
i, tlv->type, tlv->length);
|
|
|
|
|
|
|
|
if (tlv->type == CHANNEL_TLV_LIST_END)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Validate entry - protect against malicious VFs */
|
|
|
|
if (!tlv->length) {
|
|
|
|
DP_NOTICE(p_hwfn, "TLV of length 0 found\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
total_length += tlv->length;
|
|
|
|
|
|
|
|
if (total_length >= sizeof(struct tlv_buffer_size)) {
|
|
|
|
DP_NOTICE(p_hwfn, "TLV ==> Buffer overflow\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
i++;
|
|
|
|
} while (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void qed_iov_send_response(struct qed_hwfn *p_hwfn,
|
|
|
|
struct qed_ptt *p_ptt,
|
|
|
|
struct qed_vf_info *p_vf,
|
|
|
|
u16 length, u8 status)
|
|
|
|
{
|
|
|
|
struct qed_iov_vf_mbx *mbx = &p_vf->vf_mbx;
|
|
|
|
struct qed_dmae_params params;
|
|
|
|
u8 eng_vf_id;
|
|
|
|
|
|
|
|
mbx->reply_virt->default_resp.hdr.status = status;
|
|
|
|
|
|
|
|
qed_dp_tlv_list(p_hwfn, mbx->reply_virt);
|
|
|
|
|
|
|
|
eng_vf_id = p_vf->abs_vf_id;
|
|
|
|
|
|
|
|
memset(¶ms, 0, sizeof(struct qed_dmae_params));
|
|
|
|
params.flags = QED_DMAE_FLAG_VF_DST;
|
|
|
|
params.dst_vfid = eng_vf_id;
|
|
|
|
|
|
|
|
qed_dmae_host2host(p_hwfn, p_ptt, mbx->reply_phys + sizeof(u64),
|
|
|
|
mbx->req_virt->first_tlv.reply_address +
|
|
|
|
sizeof(u64),
|
|
|
|
(sizeof(union pfvf_tlvs) - sizeof(u64)) / 4,
|
|
|
|
¶ms);
|
|
|
|
|
|
|
|
qed_dmae_host2host(p_hwfn, p_ptt, mbx->reply_phys,
|
|
|
|
mbx->req_virt->first_tlv.reply_address,
|
|
|
|
sizeof(u64) / 4, ¶ms);
|
|
|
|
|
|
|
|
REG_WR(p_hwfn,
|
|
|
|
GTT_BAR0_MAP_REG_USDM_RAM +
|
|
|
|
USTORM_VF_PF_CHANNEL_READY_OFFSET(eng_vf_id), 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void qed_iov_prepare_resp(struct qed_hwfn *p_hwfn,
|
|
|
|
struct qed_ptt *p_ptt,
|
|
|
|
struct qed_vf_info *vf_info,
|
|
|
|
u16 type, u16 length, u8 status)
|
|
|
|
{
|
|
|
|
struct qed_iov_vf_mbx *mbx = &vf_info->vf_mbx;
|
|
|
|
|
|
|
|
mbx->offset = (u8 *)mbx->reply_virt;
|
|
|
|
|
|
|
|
qed_add_tlv(p_hwfn, &mbx->offset, type, length);
|
|
|
|
qed_add_tlv(p_hwfn, &mbx->offset, CHANNEL_TLV_LIST_END,
|
|
|
|
sizeof(struct channel_list_end_tlv));
|
|
|
|
|
|
|
|
qed_iov_send_response(p_hwfn, p_ptt, vf_info, length, status);
|
|
|
|
}
|
|
|
|
|
2016-05-11 13:36:15 +00:00
|
|
|
struct qed_public_vf_info *qed_iov_get_public_vf_info(struct qed_hwfn *p_hwfn,
|
|
|
|
u16 relative_vf_id,
|
|
|
|
bool b_enabled_only)
|
|
|
|
{
|
|
|
|
struct qed_vf_info *vf = NULL;
|
|
|
|
|
|
|
|
vf = qed_iov_get_vf_info(p_hwfn, relative_vf_id, b_enabled_only);
|
|
|
|
if (!vf)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return &vf->p_vf_info;
|
|
|
|
}
|
|
|
|
|
|
|
|
void qed_iov_clean_vf(struct qed_hwfn *p_hwfn, u8 vfid)
|
|
|
|
{
|
|
|
|
struct qed_public_vf_info *vf_info;
|
|
|
|
|
|
|
|
vf_info = qed_iov_get_public_vf_info(p_hwfn, vfid, false);
|
|
|
|
|
|
|
|
if (!vf_info)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Clear the VF mac */
|
|
|
|
memset(vf_info->mac, 0, ETH_ALEN);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void qed_iov_vf_cleanup(struct qed_hwfn *p_hwfn,
|
|
|
|
struct qed_vf_info *p_vf)
|
|
|
|
{
|
|
|
|
u32 i;
|
|
|
|
|
|
|
|
p_vf->vf_bulletin = 0;
|
|
|
|
p_vf->num_mac_filters = 0;
|
|
|
|
p_vf->num_vlan_filters = 0;
|
|
|
|
|
|
|
|
/* If VF previously requested less resources, go back to default */
|
|
|
|
p_vf->num_rxqs = p_vf->num_sbs;
|
|
|
|
p_vf->num_txqs = p_vf->num_sbs;
|
|
|
|
|
|
|
|
for (i = 0; i < QED_MAX_VF_CHAINS_PER_PF; i++)
|
|
|
|
p_vf->vf_queues[i].rxq_active = 0;
|
|
|
|
|
|
|
|
qed_iov_clean_vf(p_hwfn, p_vf->relative_vf_id);
|
|
|
|
}
|
|
|
|
|
2016-05-11 13:36:14 +00:00
|
|
|
static void qed_iov_vf_mbx_acquire(struct qed_hwfn *p_hwfn,
|
|
|
|
struct qed_ptt *p_ptt,
|
|
|
|
struct qed_vf_info *vf)
|
2016-05-11 13:36:13 +00:00
|
|
|
{
|
2016-05-11 13:36:14 +00:00
|
|
|
struct qed_iov_vf_mbx *mbx = &vf->vf_mbx;
|
|
|
|
struct pfvf_acquire_resp_tlv *resp = &mbx->reply_virt->acquire_resp;
|
|
|
|
struct pf_vf_pfdev_info *pfdev_info = &resp->pfdev_info;
|
|
|
|
struct vfpf_acquire_tlv *req = &mbx->req_virt->acquire;
|
|
|
|
u8 i, vfpf_status = PFVF_STATUS_SUCCESS;
|
|
|
|
struct pf_vf_resc *resc = &resp->resc;
|
|
|
|
|
|
|
|
/* Validate FW compatibility */
|
|
|
|
if (req->vfdev_info.fw_major != FW_MAJOR_VERSION ||
|
|
|
|
req->vfdev_info.fw_minor != FW_MINOR_VERSION ||
|
|
|
|
req->vfdev_info.fw_revision != FW_REVISION_VERSION ||
|
|
|
|
req->vfdev_info.fw_engineering != FW_ENGINEERING_VERSION) {
|
|
|
|
DP_INFO(p_hwfn,
|
|
|
|
"VF[%d] is running an incompatible driver [VF needs FW %02x:%02x:%02x:%02x but Hypervisor is using %02x:%02x:%02x:%02x]\n",
|
|
|
|
vf->abs_vf_id,
|
|
|
|
req->vfdev_info.fw_major,
|
|
|
|
req->vfdev_info.fw_minor,
|
|
|
|
req->vfdev_info.fw_revision,
|
|
|
|
req->vfdev_info.fw_engineering,
|
|
|
|
FW_MAJOR_VERSION,
|
|
|
|
FW_MINOR_VERSION,
|
|
|
|
FW_REVISION_VERSION, FW_ENGINEERING_VERSION);
|
|
|
|
vfpf_status = PFVF_STATUS_NOT_SUPPORTED;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* On 100g PFs, prevent old VFs from loading */
|
|
|
|
if ((p_hwfn->cdev->num_hwfns > 1) &&
|
|
|
|
!(req->vfdev_info.capabilities & VFPF_ACQUIRE_CAP_100G)) {
|
|
|
|
DP_INFO(p_hwfn,
|
|
|
|
"VF[%d] is running an old driver that doesn't support 100g\n",
|
|
|
|
vf->abs_vf_id);
|
|
|
|
vfpf_status = PFVF_STATUS_NOT_SUPPORTED;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(resp, 0, sizeof(*resp));
|
|
|
|
|
|
|
|
/* Fill in vf info stuff */
|
|
|
|
vf->opaque_fid = req->vfdev_info.opaque_fid;
|
|
|
|
vf->num_mac_filters = 1;
|
|
|
|
vf->num_vlan_filters = QED_ETH_VF_NUM_VLAN_FILTERS;
|
|
|
|
|
|
|
|
vf->vf_bulletin = req->bulletin_addr;
|
|
|
|
vf->bulletin.size = (vf->bulletin.size < req->bulletin_size) ?
|
|
|
|
vf->bulletin.size : req->bulletin_size;
|
|
|
|
|
|
|
|
/* fill in pfdev info */
|
|
|
|
pfdev_info->chip_num = p_hwfn->cdev->chip_num;
|
|
|
|
pfdev_info->db_size = 0;
|
|
|
|
pfdev_info->indices_per_sb = PIS_PER_SB;
|
|
|
|
|
|
|
|
pfdev_info->capabilities = PFVF_ACQUIRE_CAP_DEFAULT_UNTAGGED |
|
|
|
|
PFVF_ACQUIRE_CAP_POST_FW_OVERRIDE;
|
|
|
|
if (p_hwfn->cdev->num_hwfns > 1)
|
|
|
|
pfdev_info->capabilities |= PFVF_ACQUIRE_CAP_100G;
|
|
|
|
|
|
|
|
pfdev_info->stats_info.mstats.address =
|
|
|
|
PXP_VF_BAR0_START_MSDM_ZONE_B +
|
|
|
|
offsetof(struct mstorm_vf_zone, non_trigger.eth_queue_stat);
|
|
|
|
pfdev_info->stats_info.mstats.len =
|
|
|
|
sizeof(struct eth_mstorm_per_queue_stat);
|
|
|
|
|
|
|
|
pfdev_info->stats_info.ustats.address =
|
|
|
|
PXP_VF_BAR0_START_USDM_ZONE_B +
|
|
|
|
offsetof(struct ustorm_vf_zone, non_trigger.eth_queue_stat);
|
|
|
|
pfdev_info->stats_info.ustats.len =
|
|
|
|
sizeof(struct eth_ustorm_per_queue_stat);
|
|
|
|
|
|
|
|
pfdev_info->stats_info.pstats.address =
|
|
|
|
PXP_VF_BAR0_START_PSDM_ZONE_B +
|
|
|
|
offsetof(struct pstorm_vf_zone, non_trigger.eth_queue_stat);
|
|
|
|
pfdev_info->stats_info.pstats.len =
|
|
|
|
sizeof(struct eth_pstorm_per_queue_stat);
|
|
|
|
|
|
|
|
pfdev_info->stats_info.tstats.address = 0;
|
|
|
|
pfdev_info->stats_info.tstats.len = 0;
|
|
|
|
|
|
|
|
memcpy(pfdev_info->port_mac, p_hwfn->hw_info.hw_mac_addr, ETH_ALEN);
|
|
|
|
|
|
|
|
pfdev_info->fw_major = FW_MAJOR_VERSION;
|
|
|
|
pfdev_info->fw_minor = FW_MINOR_VERSION;
|
|
|
|
pfdev_info->fw_rev = FW_REVISION_VERSION;
|
|
|
|
pfdev_info->fw_eng = FW_ENGINEERING_VERSION;
|
|
|
|
pfdev_info->os_type = VFPF_ACQUIRE_OS_LINUX;
|
|
|
|
qed_mcp_get_mfw_ver(p_hwfn, p_ptt, &pfdev_info->mfw_ver, NULL);
|
|
|
|
|
|
|
|
pfdev_info->dev_type = p_hwfn->cdev->type;
|
|
|
|
pfdev_info->chip_rev = p_hwfn->cdev->chip_rev;
|
|
|
|
|
|
|
|
resc->num_rxqs = vf->num_rxqs;
|
|
|
|
resc->num_txqs = vf->num_txqs;
|
|
|
|
resc->num_sbs = vf->num_sbs;
|
|
|
|
for (i = 0; i < resc->num_sbs; i++) {
|
|
|
|
resc->hw_sbs[i].hw_sb_id = vf->igu_sbs[i];
|
|
|
|
resc->hw_sbs[i].sb_qid = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < resc->num_rxqs; i++) {
|
|
|
|
qed_fw_l2_queue(p_hwfn, vf->vf_queues[i].fw_rx_qid,
|
|
|
|
(u16 *)&resc->hw_qid[i]);
|
|
|
|
resc->cid[i] = vf->vf_queues[i].fw_cid;
|
|
|
|
}
|
|
|
|
|
|
|
|
resc->num_mac_filters = min_t(u8, vf->num_mac_filters,
|
|
|
|
req->resc_request.num_mac_filters);
|
|
|
|
resc->num_vlan_filters = min_t(u8, vf->num_vlan_filters,
|
|
|
|
req->resc_request.num_vlan_filters);
|
|
|
|
|
|
|
|
/* This isn't really required as VF isn't limited, but some VFs might
|
|
|
|
* actually test this value, so need to provide it.
|
|
|
|
*/
|
|
|
|
resc->num_mc_filters = req->resc_request.num_mc_filters;
|
|
|
|
|
|
|
|
/* Fill agreed size of bulletin board in response */
|
|
|
|
resp->bulletin_size = vf->bulletin.size;
|
|
|
|
|
|
|
|
DP_VERBOSE(p_hwfn,
|
|
|
|
QED_MSG_IOV,
|
|
|
|
"VF[%d] ACQUIRE_RESPONSE: pfdev_info- chip_num=0x%x, db_size=%d, idx_per_sb=%d, pf_cap=0x%llx\n"
|
|
|
|
"resources- n_rxq-%d, n_txq-%d, n_sbs-%d, n_macs-%d, n_vlans-%d\n",
|
|
|
|
vf->abs_vf_id,
|
|
|
|
resp->pfdev_info.chip_num,
|
|
|
|
resp->pfdev_info.db_size,
|
|
|
|
resp->pfdev_info.indices_per_sb,
|
|
|
|
resp->pfdev_info.capabilities,
|
|
|
|
resc->num_rxqs,
|
|
|
|
resc->num_txqs,
|
|
|
|
resc->num_sbs,
|
|
|
|
resc->num_mac_filters,
|
|
|
|
resc->num_vlan_filters);
|
|
|
|
vf->state = VF_ACQUIRED;
|
|
|
|
|
|
|
|
/* Prepare Response */
|
|
|
|
out:
|
|
|
|
qed_iov_prepare_resp(p_hwfn, p_ptt, vf, CHANNEL_TLV_ACQUIRE,
|
|
|
|
sizeof(struct pfvf_acquire_resp_tlv), vfpf_status);
|
2016-05-11 13:36:13 +00:00
|
|
|
}
|
|
|
|
|
2016-05-11 13:36:15 +00:00
|
|
|
static void qed_iov_vf_mbx_int_cleanup(struct qed_hwfn *p_hwfn,
|
|
|
|
struct qed_ptt *p_ptt,
|
|
|
|
struct qed_vf_info *vf)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Reset the SBs */
|
|
|
|
for (i = 0; i < vf->num_sbs; i++)
|
|
|
|
qed_int_igu_init_pure_rt_single(p_hwfn, p_ptt,
|
|
|
|
vf->igu_sbs[i],
|
|
|
|
vf->opaque_fid, false);
|
|
|
|
|
|
|
|
qed_iov_prepare_resp(p_hwfn, p_ptt, vf, CHANNEL_TLV_INT_CLEANUP,
|
|
|
|
sizeof(struct pfvf_def_resp_tlv),
|
|
|
|
PFVF_STATUS_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void qed_iov_vf_mbx_close(struct qed_hwfn *p_hwfn,
|
|
|
|
struct qed_ptt *p_ptt, struct qed_vf_info *vf)
|
|
|
|
{
|
|
|
|
u16 length = sizeof(struct pfvf_def_resp_tlv);
|
|
|
|
u8 status = PFVF_STATUS_SUCCESS;
|
|
|
|
|
|
|
|
/* Disable Interrupts for VF */
|
|
|
|
qed_iov_vf_igu_set_int(p_hwfn, p_ptt, vf, 0);
|
|
|
|
|
|
|
|
/* Reset Permission table */
|
|
|
|
qed_iov_config_perm_table(p_hwfn, p_ptt, vf, 0);
|
|
|
|
|
|
|
|
qed_iov_prepare_resp(p_hwfn, p_ptt, vf, CHANNEL_TLV_CLOSE,
|
|
|
|
length, status);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void qed_iov_vf_mbx_release(struct qed_hwfn *p_hwfn,
|
|
|
|
struct qed_ptt *p_ptt,
|
|
|
|
struct qed_vf_info *p_vf)
|
|
|
|
{
|
|
|
|
u16 length = sizeof(struct pfvf_def_resp_tlv);
|
|
|
|
|
|
|
|
qed_iov_vf_cleanup(p_hwfn, p_vf);
|
|
|
|
|
|
|
|
qed_iov_prepare_resp(p_hwfn, p_ptt, p_vf, CHANNEL_TLV_RELEASE,
|
|
|
|
length, PFVF_STATUS_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
qed_iov_vf_flr_poll_dorq(struct qed_hwfn *p_hwfn,
|
|
|
|
struct qed_vf_info *p_vf, struct qed_ptt *p_ptt)
|
|
|
|
{
|
|
|
|
int cnt;
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
qed_fid_pretend(p_hwfn, p_ptt, (u16) p_vf->concrete_fid);
|
|
|
|
|
|
|
|
for (cnt = 0; cnt < 50; cnt++) {
|
|
|
|
val = qed_rd(p_hwfn, p_ptt, DORQ_REG_VF_USAGE_CNT);
|
|
|
|
if (!val)
|
|
|
|
break;
|
|
|
|
msleep(20);
|
|
|
|
}
|
|
|
|
qed_fid_pretend(p_hwfn, p_ptt, (u16) p_hwfn->hw_info.concrete_fid);
|
|
|
|
|
|
|
|
if (cnt == 50) {
|
|
|
|
DP_ERR(p_hwfn,
|
|
|
|
"VF[%d] - dorq failed to cleanup [usage 0x%08x]\n",
|
|
|
|
p_vf->abs_vf_id, val);
|
|
|
|
return -EBUSY;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
qed_iov_vf_flr_poll_pbf(struct qed_hwfn *p_hwfn,
|
|
|
|
struct qed_vf_info *p_vf, struct qed_ptt *p_ptt)
|
|
|
|
{
|
|
|
|
u32 cons[MAX_NUM_VOQS], distance[MAX_NUM_VOQS];
|
|
|
|
int i, cnt;
|
|
|
|
|
|
|
|
/* Read initial consumers & producers */
|
|
|
|
for (i = 0; i < MAX_NUM_VOQS; i++) {
|
|
|
|
u32 prod;
|
|
|
|
|
|
|
|
cons[i] = qed_rd(p_hwfn, p_ptt,
|
|
|
|
PBF_REG_NUM_BLOCKS_ALLOCATED_CONS_VOQ0 +
|
|
|
|
i * 0x40);
|
|
|
|
prod = qed_rd(p_hwfn, p_ptt,
|
|
|
|
PBF_REG_NUM_BLOCKS_ALLOCATED_PROD_VOQ0 +
|
|
|
|
i * 0x40);
|
|
|
|
distance[i] = prod - cons[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Wait for consumers to pass the producers */
|
|
|
|
i = 0;
|
|
|
|
for (cnt = 0; cnt < 50; cnt++) {
|
|
|
|
for (; i < MAX_NUM_VOQS; i++) {
|
|
|
|
u32 tmp;
|
|
|
|
|
|
|
|
tmp = qed_rd(p_hwfn, p_ptt,
|
|
|
|
PBF_REG_NUM_BLOCKS_ALLOCATED_CONS_VOQ0 +
|
|
|
|
i * 0x40);
|
|
|
|
if (distance[i] > tmp - cons[i])
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i == MAX_NUM_VOQS)
|
|
|
|
break;
|
|
|
|
|
|
|
|
msleep(20);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cnt == 50) {
|
|
|
|
DP_ERR(p_hwfn, "VF[%d] - pbf polling failed on VOQ %d\n",
|
|
|
|
p_vf->abs_vf_id, i);
|
|
|
|
return -EBUSY;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int qed_iov_vf_flr_poll(struct qed_hwfn *p_hwfn,
|
|
|
|
struct qed_vf_info *p_vf, struct qed_ptt *p_ptt)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
rc = qed_iov_vf_flr_poll_dorq(p_hwfn, p_vf, p_ptt);
|
|
|
|
if (rc)
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
rc = qed_iov_vf_flr_poll_pbf(p_hwfn, p_vf, p_ptt);
|
|
|
|
if (rc)
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
qed_iov_execute_vf_flr_cleanup(struct qed_hwfn *p_hwfn,
|
|
|
|
struct qed_ptt *p_ptt,
|
|
|
|
u16 rel_vf_id, u32 *ack_vfs)
|
|
|
|
{
|
|
|
|
struct qed_vf_info *p_vf;
|
|
|
|
int rc = 0;
|
|
|
|
|
|
|
|
p_vf = qed_iov_get_vf_info(p_hwfn, rel_vf_id, false);
|
|
|
|
if (!p_vf)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (p_hwfn->pf_iov_info->pending_flr[rel_vf_id / 64] &
|
|
|
|
(1ULL << (rel_vf_id % 64))) {
|
|
|
|
u16 vfid = p_vf->abs_vf_id;
|
|
|
|
|
|
|
|
DP_VERBOSE(p_hwfn, QED_MSG_IOV,
|
|
|
|
"VF[%d] - Handling FLR\n", vfid);
|
|
|
|
|
|
|
|
qed_iov_vf_cleanup(p_hwfn, p_vf);
|
|
|
|
|
|
|
|
/* If VF isn't active, no need for anything but SW */
|
|
|
|
if (!p_vf->b_init)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
rc = qed_iov_vf_flr_poll(p_hwfn, p_vf, p_ptt);
|
|
|
|
if (rc)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
rc = qed_final_cleanup(p_hwfn, p_ptt, vfid, true);
|
|
|
|
if (rc) {
|
|
|
|
DP_ERR(p_hwfn, "Failed handle FLR of VF[%d]\n", vfid);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* VF_STOPPED has to be set only after final cleanup
|
|
|
|
* but prior to re-enabling the VF.
|
|
|
|
*/
|
|
|
|
p_vf->state = VF_STOPPED;
|
|
|
|
|
|
|
|
rc = qed_iov_enable_vf_access(p_hwfn, p_ptt, p_vf);
|
|
|
|
if (rc) {
|
|
|
|
DP_ERR(p_hwfn, "Failed to re-enable VF[%d] acces\n",
|
|
|
|
vfid);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
cleanup:
|
|
|
|
/* Mark VF for ack and clean pending state */
|
|
|
|
if (p_vf->state == VF_RESET)
|
|
|
|
p_vf->state = VF_STOPPED;
|
|
|
|
ack_vfs[vfid / 32] |= (1 << (vfid % 32));
|
|
|
|
p_hwfn->pf_iov_info->pending_flr[rel_vf_id / 64] &=
|
|
|
|
~(1ULL << (rel_vf_id % 64));
|
|
|
|
p_hwfn->pf_iov_info->pending_events[rel_vf_id / 64] &=
|
|
|
|
~(1ULL << (rel_vf_id % 64));
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
int qed_iov_vf_flr_cleanup(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
|
|
|
|
{
|
|
|
|
u32 ack_vfs[VF_MAX_STATIC / 32];
|
|
|
|
int rc = 0;
|
|
|
|
u16 i;
|
|
|
|
|
|
|
|
memset(ack_vfs, 0, sizeof(u32) * (VF_MAX_STATIC / 32));
|
|
|
|
|
|
|
|
/* Since BRB <-> PRS interface can't be tested as part of the flr
|
|
|
|
* polling due to HW limitations, simply sleep a bit. And since
|
|
|
|
* there's no need to wait per-vf, do it before looping.
|
|
|
|
*/
|
|
|
|
msleep(100);
|
|
|
|
|
|
|
|
for (i = 0; i < p_hwfn->cdev->p_iov_info->total_vfs; i++)
|
|
|
|
qed_iov_execute_vf_flr_cleanup(p_hwfn, p_ptt, i, ack_vfs);
|
|
|
|
|
|
|
|
rc = qed_mcp_ack_vf_flr(p_hwfn, p_ptt, ack_vfs);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
int qed_iov_mark_vf_flr(struct qed_hwfn *p_hwfn, u32 *p_disabled_vfs)
|
|
|
|
{
|
|
|
|
u16 i, found = 0;
|
|
|
|
|
|
|
|
DP_VERBOSE(p_hwfn, QED_MSG_IOV, "Marking FLR-ed VFs\n");
|
|
|
|
for (i = 0; i < (VF_MAX_STATIC / 32); i++)
|
|
|
|
DP_VERBOSE(p_hwfn, QED_MSG_IOV,
|
|
|
|
"[%08x,...,%08x]: %08x\n",
|
|
|
|
i * 32, (i + 1) * 32 - 1, p_disabled_vfs[i]);
|
|
|
|
|
|
|
|
if (!p_hwfn->cdev->p_iov_info) {
|
|
|
|
DP_NOTICE(p_hwfn, "VF flr but no IOV\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Mark VFs */
|
|
|
|
for (i = 0; i < p_hwfn->cdev->p_iov_info->total_vfs; i++) {
|
|
|
|
struct qed_vf_info *p_vf;
|
|
|
|
u8 vfid;
|
|
|
|
|
|
|
|
p_vf = qed_iov_get_vf_info(p_hwfn, i, false);
|
|
|
|
if (!p_vf)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
vfid = p_vf->abs_vf_id;
|
|
|
|
if ((1 << (vfid % 32)) & p_disabled_vfs[vfid / 32]) {
|
|
|
|
u64 *p_flr = p_hwfn->pf_iov_info->pending_flr;
|
|
|
|
u16 rel_vf_id = p_vf->relative_vf_id;
|
|
|
|
|
|
|
|
DP_VERBOSE(p_hwfn, QED_MSG_IOV,
|
|
|
|
"VF[%d] [rel %d] got FLR-ed\n",
|
|
|
|
vfid, rel_vf_id);
|
|
|
|
|
|
|
|
p_vf->state = VF_RESET;
|
|
|
|
|
|
|
|
/* No need to lock here, since pending_flr should
|
|
|
|
* only change here and before ACKing MFw. Since
|
|
|
|
* MFW will not trigger an additional attention for
|
|
|
|
* VF flr until ACKs, we're safe.
|
|
|
|
*/
|
|
|
|
p_flr[rel_vf_id / 64] |= 1ULL << (rel_vf_id % 64);
|
|
|
|
found = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return found;
|
|
|
|
}
|
|
|
|
|
2016-05-11 13:36:13 +00:00
|
|
|
static void qed_iov_process_mbx_req(struct qed_hwfn *p_hwfn,
|
|
|
|
struct qed_ptt *p_ptt, int vfid)
|
|
|
|
{
|
|
|
|
struct qed_iov_vf_mbx *mbx;
|
|
|
|
struct qed_vf_info *p_vf;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
p_vf = qed_iov_get_vf_info(p_hwfn, (u16) vfid, true);
|
|
|
|
if (!p_vf)
|
|
|
|
return;
|
|
|
|
|
|
|
|
mbx = &p_vf->vf_mbx;
|
|
|
|
|
|
|
|
/* qed_iov_process_mbx_request */
|
|
|
|
DP_VERBOSE(p_hwfn,
|
|
|
|
QED_MSG_IOV,
|
|
|
|
"qed_iov_process_mbx_req vfid %d\n", p_vf->abs_vf_id);
|
|
|
|
|
|
|
|
mbx->first_tlv = mbx->req_virt->first_tlv;
|
|
|
|
|
|
|
|
/* check if tlv type is known */
|
|
|
|
if (qed_iov_tlv_supported(mbx->first_tlv.tl.type)) {
|
2016-05-11 13:36:14 +00:00
|
|
|
switch (mbx->first_tlv.tl.type) {
|
|
|
|
case CHANNEL_TLV_ACQUIRE:
|
|
|
|
qed_iov_vf_mbx_acquire(p_hwfn, p_ptt, p_vf);
|
|
|
|
break;
|
2016-05-11 13:36:15 +00:00
|
|
|
case CHANNEL_TLV_CLOSE:
|
|
|
|
qed_iov_vf_mbx_close(p_hwfn, p_ptt, p_vf);
|
|
|
|
break;
|
|
|
|
case CHANNEL_TLV_INT_CLEANUP:
|
|
|
|
qed_iov_vf_mbx_int_cleanup(p_hwfn, p_ptt, p_vf);
|
|
|
|
break;
|
|
|
|
case CHANNEL_TLV_RELEASE:
|
|
|
|
qed_iov_vf_mbx_release(p_hwfn, p_ptt, p_vf);
|
|
|
|
break;
|
2016-05-11 13:36:14 +00:00
|
|
|
}
|
2016-05-11 13:36:13 +00:00
|
|
|
} else {
|
|
|
|
/* unknown TLV - this may belong to a VF driver from the future
|
|
|
|
* - a version written after this PF driver was written, which
|
|
|
|
* supports features unknown as of yet. Too bad since we don't
|
|
|
|
* support them. Or this may be because someone wrote a crappy
|
|
|
|
* VF driver and is sending garbage over the channel.
|
|
|
|
*/
|
|
|
|
DP_ERR(p_hwfn,
|
|
|
|
"unknown TLV. type %d length %d. first 20 bytes of mailbox buffer:\n",
|
|
|
|
mbx->first_tlv.tl.type, mbx->first_tlv.tl.length);
|
|
|
|
|
|
|
|
for (i = 0; i < 20; i++) {
|
|
|
|
DP_VERBOSE(p_hwfn,
|
|
|
|
QED_MSG_IOV,
|
|
|
|
"%x ",
|
|
|
|
mbx->req_virt->tlv_buf_size.tlv_buffer[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void qed_iov_pf_add_pending_events(struct qed_hwfn *p_hwfn, u8 vfid)
|
|
|
|
{
|
|
|
|
u64 add_bit = 1ULL << (vfid % 64);
|
|
|
|
|
|
|
|
p_hwfn->pf_iov_info->pending_events[vfid / 64] |= add_bit;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void qed_iov_pf_get_and_clear_pending_events(struct qed_hwfn *p_hwfn,
|
|
|
|
u64 *events)
|
|
|
|
{
|
|
|
|
u64 *p_pending_events = p_hwfn->pf_iov_info->pending_events;
|
|
|
|
|
|
|
|
memcpy(events, p_pending_events, sizeof(u64) * QED_VF_ARRAY_LENGTH);
|
|
|
|
memset(p_pending_events, 0, sizeof(u64) * QED_VF_ARRAY_LENGTH);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int qed_sriov_vfpf_msg(struct qed_hwfn *p_hwfn,
|
|
|
|
u16 abs_vfid, struct regpair *vf_msg)
|
|
|
|
{
|
|
|
|
u8 min = (u8)p_hwfn->cdev->p_iov_info->first_vf_in_pf;
|
|
|
|
struct qed_vf_info *p_vf;
|
|
|
|
|
|
|
|
if (!qed_iov_pf_sanity_check(p_hwfn, (int)abs_vfid - min)) {
|
|
|
|
DP_VERBOSE(p_hwfn,
|
|
|
|
QED_MSG_IOV,
|
|
|
|
"Got a message from VF [abs 0x%08x] that cannot be handled by PF\n",
|
|
|
|
abs_vfid);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
p_vf = &p_hwfn->pf_iov_info->vfs_array[(u8)abs_vfid - min];
|
|
|
|
|
|
|
|
/* List the physical address of the request so that handler
|
|
|
|
* could later on copy the message from it.
|
|
|
|
*/
|
|
|
|
p_vf->vf_mbx.pending_req = (((u64)vf_msg->hi) << 32) | vf_msg->lo;
|
|
|
|
|
|
|
|
/* Mark the event and schedule the workqueue */
|
|
|
|
qed_iov_pf_add_pending_events(p_hwfn, p_vf->relative_vf_id);
|
|
|
|
qed_schedule_iov(p_hwfn, QED_IOV_WQ_MSG_FLAG);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int qed_sriov_eqe_event(struct qed_hwfn *p_hwfn,
|
|
|
|
u8 opcode, __le16 echo, union event_ring_data *data)
|
|
|
|
{
|
|
|
|
switch (opcode) {
|
|
|
|
case COMMON_EVENT_VF_PF_CHANNEL:
|
|
|
|
return qed_sriov_vfpf_msg(p_hwfn, le16_to_cpu(echo),
|
|
|
|
&data->vf_pf_channel.msg_addr);
|
|
|
|
default:
|
|
|
|
DP_INFO(p_hwfn->cdev, "Unknown sriov eqe event 0x%02x\n",
|
|
|
|
opcode);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-11 13:36:12 +00:00
|
|
|
u16 qed_iov_get_next_active_vf(struct qed_hwfn *p_hwfn, u16 rel_vf_id)
|
|
|
|
{
|
|
|
|
struct qed_hw_sriov_info *p_iov = p_hwfn->cdev->p_iov_info;
|
|
|
|
u16 i;
|
|
|
|
|
|
|
|
if (!p_iov)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
for (i = rel_vf_id; i < p_iov->total_vfs; i++)
|
|
|
|
if (qed_iov_is_valid_vfid(p_hwfn, rel_vf_id, true))
|
|
|
|
return i;
|
|
|
|
|
|
|
|
out:
|
|
|
|
return MAX_NUM_VFS;
|
|
|
|
}
|
2016-05-11 13:36:13 +00:00
|
|
|
|
|
|
|
static int qed_iov_copy_vf_msg(struct qed_hwfn *p_hwfn, struct qed_ptt *ptt,
|
|
|
|
int vfid)
|
|
|
|
{
|
|
|
|
struct qed_dmae_params params;
|
|
|
|
struct qed_vf_info *vf_info;
|
|
|
|
|
|
|
|
vf_info = qed_iov_get_vf_info(p_hwfn, (u16) vfid, true);
|
|
|
|
if (!vf_info)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
memset(¶ms, 0, sizeof(struct qed_dmae_params));
|
|
|
|
params.flags = QED_DMAE_FLAG_VF_SRC | QED_DMAE_FLAG_COMPLETION_DST;
|
|
|
|
params.src_vfid = vf_info->abs_vf_id;
|
|
|
|
|
|
|
|
if (qed_dmae_host2host(p_hwfn, ptt,
|
|
|
|
vf_info->vf_mbx.pending_req,
|
|
|
|
vf_info->vf_mbx.req_phys,
|
|
|
|
sizeof(union vfpf_tlvs) / 4, ¶ms)) {
|
|
|
|
DP_VERBOSE(p_hwfn, QED_MSG_IOV,
|
|
|
|
"Failed to copy message from VF 0x%02x\n", vfid);
|
|
|
|
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-05-11 13:36:15 +00:00
|
|
|
bool qed_iov_is_vf_stopped(struct qed_hwfn *p_hwfn, int vfid)
|
|
|
|
{
|
|
|
|
struct qed_vf_info *p_vf_info;
|
|
|
|
|
|
|
|
p_vf_info = qed_iov_get_vf_info(p_hwfn, (u16) vfid, true);
|
|
|
|
if (!p_vf_info)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return p_vf_info->state == VF_STOPPED;
|
|
|
|
}
|
|
|
|
|
2016-05-11 13:36:13 +00:00
|
|
|
/**
|
|
|
|
* qed_schedule_iov - schedules IOV task for VF and PF
|
|
|
|
* @hwfn: hardware function pointer
|
|
|
|
* @flag: IOV flag for VF/PF
|
|
|
|
*/
|
|
|
|
void qed_schedule_iov(struct qed_hwfn *hwfn, enum qed_iov_wq_flag flag)
|
|
|
|
{
|
|
|
|
smp_mb__before_atomic();
|
|
|
|
set_bit(flag, &hwfn->iov_task_flags);
|
|
|
|
smp_mb__after_atomic();
|
|
|
|
DP_VERBOSE(hwfn, QED_MSG_IOV, "Scheduling iov task [Flag: %d]\n", flag);
|
|
|
|
queue_delayed_work(hwfn->iov_wq, &hwfn->iov_task, 0);
|
|
|
|
}
|
|
|
|
|
2016-05-11 13:36:14 +00:00
|
|
|
void qed_vf_start_iov_wq(struct qed_dev *cdev)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for_each_hwfn(cdev, i)
|
|
|
|
queue_delayed_work(cdev->hwfns[i].iov_wq,
|
|
|
|
&cdev->hwfns[i].iov_task, 0);
|
|
|
|
}
|
|
|
|
|
2016-05-11 13:36:15 +00:00
|
|
|
int qed_sriov_disable(struct qed_dev *cdev, bool pci_enabled)
|
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
for_each_hwfn(cdev, i)
|
|
|
|
if (cdev->hwfns[i].iov_wq)
|
|
|
|
flush_workqueue(cdev->hwfns[i].iov_wq);
|
|
|
|
|
|
|
|
/* Mark VFs for disablement */
|
|
|
|
qed_iov_set_vfs_to_disable(cdev, true);
|
|
|
|
|
|
|
|
if (cdev->p_iov_info && cdev->p_iov_info->num_vfs && pci_enabled)
|
|
|
|
pci_disable_sriov(cdev->pdev);
|
|
|
|
|
|
|
|
for_each_hwfn(cdev, i) {
|
|
|
|
struct qed_hwfn *hwfn = &cdev->hwfns[i];
|
|
|
|
struct qed_ptt *ptt = qed_ptt_acquire(hwfn);
|
|
|
|
|
|
|
|
/* Failure to acquire the ptt in 100g creates an odd error
|
|
|
|
* where the first engine has already relased IOV.
|
|
|
|
*/
|
|
|
|
if (!ptt) {
|
|
|
|
DP_ERR(hwfn, "Failed to acquire ptt\n");
|
|
|
|
return -EBUSY;
|
|
|
|
}
|
|
|
|
|
|
|
|
qed_for_each_vf(hwfn, j) {
|
|
|
|
int k;
|
|
|
|
|
|
|
|
if (!qed_iov_is_valid_vfid(hwfn, j, true))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Wait until VF is disabled before releasing */
|
|
|
|
for (k = 0; k < 100; k++) {
|
|
|
|
if (!qed_iov_is_vf_stopped(hwfn, j))
|
|
|
|
msleep(20);
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (k < 100)
|
|
|
|
qed_iov_release_hw_for_vf(&cdev->hwfns[i],
|
|
|
|
ptt, j);
|
|
|
|
else
|
|
|
|
DP_ERR(hwfn,
|
|
|
|
"Timeout waiting for VF's FLR to end\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
qed_ptt_release(hwfn, ptt);
|
|
|
|
}
|
|
|
|
|
|
|
|
qed_iov_set_vfs_to_disable(cdev, false);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int qed_sriov_enable(struct qed_dev *cdev, int num)
|
|
|
|
{
|
|
|
|
struct qed_sb_cnt_info sb_cnt_info;
|
|
|
|
int i, j, rc;
|
|
|
|
|
|
|
|
if (num >= RESC_NUM(&cdev->hwfns[0], QED_VPORT)) {
|
|
|
|
DP_NOTICE(cdev, "Can start at most %d VFs\n",
|
|
|
|
RESC_NUM(&cdev->hwfns[0], QED_VPORT) - 1);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialize HW for VF access */
|
|
|
|
for_each_hwfn(cdev, j) {
|
|
|
|
struct qed_hwfn *hwfn = &cdev->hwfns[j];
|
|
|
|
struct qed_ptt *ptt = qed_ptt_acquire(hwfn);
|
|
|
|
int num_sbs = 0, limit = 16;
|
|
|
|
|
|
|
|
if (!ptt) {
|
|
|
|
DP_ERR(hwfn, "Failed to acquire ptt\n");
|
|
|
|
rc = -EBUSY;
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(&sb_cnt_info, 0, sizeof(sb_cnt_info));
|
|
|
|
qed_int_get_num_sbs(hwfn, &sb_cnt_info);
|
|
|
|
num_sbs = min_t(int, sb_cnt_info.sb_free_blk, limit);
|
|
|
|
|
|
|
|
for (i = 0; i < num; i++) {
|
|
|
|
if (!qed_iov_is_valid_vfid(hwfn, i, false))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
rc = qed_iov_init_hw_for_vf(hwfn,
|
|
|
|
ptt, i, num_sbs / num);
|
|
|
|
if (rc) {
|
|
|
|
DP_ERR(cdev, "Failed to enable VF[%d]\n", i);
|
|
|
|
qed_ptt_release(hwfn, ptt);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
qed_ptt_release(hwfn, ptt);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Enable SRIOV PCIe functions */
|
|
|
|
rc = pci_enable_sriov(cdev->pdev, num);
|
|
|
|
if (rc) {
|
|
|
|
DP_ERR(cdev, "Failed to enable sriov [%d]\n", rc);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
return num;
|
|
|
|
|
|
|
|
err:
|
|
|
|
qed_sriov_disable(cdev, false);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int qed_sriov_configure(struct qed_dev *cdev, int num_vfs_param)
|
|
|
|
{
|
|
|
|
if (!IS_QED_SRIOV(cdev)) {
|
|
|
|
DP_VERBOSE(cdev, QED_MSG_IOV, "SR-IOV is not supported\n");
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (num_vfs_param)
|
|
|
|
return qed_sriov_enable(cdev, num_vfs_param);
|
|
|
|
else
|
|
|
|
return qed_sriov_disable(cdev, true);
|
|
|
|
}
|
|
|
|
|
2016-05-11 13:36:13 +00:00
|
|
|
static void qed_handle_vf_msg(struct qed_hwfn *hwfn)
|
|
|
|
{
|
|
|
|
u64 events[QED_VF_ARRAY_LENGTH];
|
|
|
|
struct qed_ptt *ptt;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
ptt = qed_ptt_acquire(hwfn);
|
|
|
|
if (!ptt) {
|
|
|
|
DP_VERBOSE(hwfn, QED_MSG_IOV,
|
|
|
|
"Can't acquire PTT; re-scheduling\n");
|
|
|
|
qed_schedule_iov(hwfn, QED_IOV_WQ_MSG_FLAG);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
qed_iov_pf_get_and_clear_pending_events(hwfn, events);
|
|
|
|
|
|
|
|
DP_VERBOSE(hwfn, QED_MSG_IOV,
|
|
|
|
"Event mask of VF events: 0x%llx 0x%llx 0x%llx\n",
|
|
|
|
events[0], events[1], events[2]);
|
|
|
|
|
|
|
|
qed_for_each_vf(hwfn, i) {
|
|
|
|
/* Skip VFs with no pending messages */
|
|
|
|
if (!(events[i / 64] & (1ULL << (i % 64))))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
DP_VERBOSE(hwfn, QED_MSG_IOV,
|
|
|
|
"Handling VF message from VF 0x%02x [Abs 0x%02x]\n",
|
|
|
|
i, hwfn->cdev->p_iov_info->first_vf_in_pf + i);
|
|
|
|
|
|
|
|
/* Copy VF's message to PF's request buffer for that VF */
|
|
|
|
if (qed_iov_copy_vf_msg(hwfn, ptt, i))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
qed_iov_process_mbx_req(hwfn, ptt, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
qed_ptt_release(hwfn, ptt);
|
|
|
|
}
|
|
|
|
|
|
|
|
void qed_iov_pf_task(struct work_struct *work)
|
|
|
|
{
|
|
|
|
struct qed_hwfn *hwfn = container_of(work, struct qed_hwfn,
|
|
|
|
iov_task.work);
|
2016-05-11 13:36:15 +00:00
|
|
|
int rc;
|
2016-05-11 13:36:13 +00:00
|
|
|
|
|
|
|
if (test_and_clear_bit(QED_IOV_WQ_STOP_WQ_FLAG, &hwfn->iov_task_flags))
|
|
|
|
return;
|
|
|
|
|
2016-05-11 13:36:15 +00:00
|
|
|
if (test_and_clear_bit(QED_IOV_WQ_FLR_FLAG, &hwfn->iov_task_flags)) {
|
|
|
|
struct qed_ptt *ptt = qed_ptt_acquire(hwfn);
|
|
|
|
|
|
|
|
if (!ptt) {
|
|
|
|
qed_schedule_iov(hwfn, QED_IOV_WQ_FLR_FLAG);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = qed_iov_vf_flr_cleanup(hwfn, ptt);
|
|
|
|
if (rc)
|
|
|
|
qed_schedule_iov(hwfn, QED_IOV_WQ_FLR_FLAG);
|
|
|
|
|
|
|
|
qed_ptt_release(hwfn, ptt);
|
|
|
|
}
|
|
|
|
|
2016-05-11 13:36:13 +00:00
|
|
|
if (test_and_clear_bit(QED_IOV_WQ_MSG_FLAG, &hwfn->iov_task_flags))
|
|
|
|
qed_handle_vf_msg(hwfn);
|
|
|
|
}
|
|
|
|
|
|
|
|
void qed_iov_wq_stop(struct qed_dev *cdev, bool schedule_first)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for_each_hwfn(cdev, i) {
|
|
|
|
if (!cdev->hwfns[i].iov_wq)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (schedule_first) {
|
|
|
|
qed_schedule_iov(&cdev->hwfns[i],
|
|
|
|
QED_IOV_WQ_STOP_WQ_FLAG);
|
|
|
|
cancel_delayed_work_sync(&cdev->hwfns[i].iov_task);
|
|
|
|
}
|
|
|
|
|
|
|
|
flush_workqueue(cdev->hwfns[i].iov_wq);
|
|
|
|
destroy_workqueue(cdev->hwfns[i].iov_wq);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int qed_iov_wq_start(struct qed_dev *cdev)
|
|
|
|
{
|
|
|
|
char name[NAME_SIZE];
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for_each_hwfn(cdev, i) {
|
|
|
|
struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
|
|
|
|
|
|
|
|
/* PFs needs a dedicated workqueue only if they support IOV. */
|
|
|
|
if (!IS_PF_SRIOV(p_hwfn))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
snprintf(name, NAME_SIZE, "iov-%02x:%02x.%02x",
|
|
|
|
cdev->pdev->bus->number,
|
|
|
|
PCI_SLOT(cdev->pdev->devfn), p_hwfn->abs_pf_id);
|
|
|
|
|
|
|
|
p_hwfn->iov_wq = create_singlethread_workqueue(name);
|
|
|
|
if (!p_hwfn->iov_wq) {
|
|
|
|
DP_NOTICE(p_hwfn, "Cannot create iov workqueue\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
INIT_DELAYED_WORK(&p_hwfn->iov_task, qed_iov_pf_task);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2016-05-11 13:36:15 +00:00
|
|
|
|
|
|
|
const struct qed_iov_hv_ops qed_iov_ops_pass = {
|
|
|
|
.configure = &qed_sriov_configure,
|
|
|
|
};
|