You've already forked linux-rockchip
mirror of
https://github.com/armbian/linux-rockchip.git
synced 2026-01-06 11:08:10 -08:00
RDMA/bnxt_re: Add SRQ support for Broadcom adapters
Shared receive queue (SRQ) is defined as a pool of receive buffers shared among multiple QPs which belong to same protection domain in a given process context. Use of SRQ reduces the memory foot print of IB applications. Broadcom adapters support SRQ, adding code-changes to enable shared receive queue. Signed-off-by: Devesh Sharma <devesh.sharma@broadcom.com> Signed-off-by: Doug Ledford <dledford@redhat.com>
This commit is contained in:
committed by
Doug Ledford
parent
89f81008ba
commit
37cb11acf1
@@ -1027,6 +1027,7 @@ struct ib_qp *bnxt_re_create_qp(struct ib_pd *ib_pd,
|
||||
struct bnxt_qplib_dev_attr *dev_attr = &rdev->dev_attr;
|
||||
struct bnxt_re_qp *qp;
|
||||
struct bnxt_re_cq *cq;
|
||||
struct bnxt_re_srq *srq;
|
||||
int rc, entries;
|
||||
|
||||
if ((qp_init_attr->cap.max_send_wr > dev_attr->max_qp_wqes) ||
|
||||
@@ -1082,9 +1083,15 @@ struct ib_qp *bnxt_re_create_qp(struct ib_pd *ib_pd,
|
||||
}
|
||||
|
||||
if (qp_init_attr->srq) {
|
||||
dev_err(rdev_to_dev(rdev), "SRQ not supported");
|
||||
rc = -ENOTSUPP;
|
||||
goto fail;
|
||||
srq = container_of(qp_init_attr->srq, struct bnxt_re_srq,
|
||||
ib_srq);
|
||||
if (!srq) {
|
||||
dev_err(rdev_to_dev(rdev), "SRQ not found");
|
||||
rc = -EINVAL;
|
||||
goto fail;
|
||||
}
|
||||
qp->qplib_qp.srq = &srq->qplib_srq;
|
||||
qp->qplib_qp.rq.max_wqe = 0;
|
||||
} else {
|
||||
/* Allocate 1 more than what's provided so posting max doesn't
|
||||
* mean empty
|
||||
@@ -1289,6 +1296,237 @@ static enum ib_mtu __to_ib_mtu(u32 mtu)
|
||||
}
|
||||
}
|
||||
|
||||
/* Shared Receive Queues */
|
||||
int bnxt_re_destroy_srq(struct ib_srq *ib_srq)
|
||||
{
|
||||
struct bnxt_re_srq *srq = container_of(ib_srq, struct bnxt_re_srq,
|
||||
ib_srq);
|
||||
struct bnxt_re_dev *rdev = srq->rdev;
|
||||
struct bnxt_qplib_srq *qplib_srq = &srq->qplib_srq;
|
||||
struct bnxt_qplib_nq *nq = NULL;
|
||||
int rc;
|
||||
|
||||
if (qplib_srq->cq)
|
||||
nq = qplib_srq->cq->nq;
|
||||
rc = bnxt_qplib_destroy_srq(&rdev->qplib_res, qplib_srq);
|
||||
if (rc) {
|
||||
dev_err(rdev_to_dev(rdev), "Destroy HW SRQ failed!");
|
||||
return rc;
|
||||
}
|
||||
|
||||
if (srq->umem && !IS_ERR(srq->umem))
|
||||
ib_umem_release(srq->umem);
|
||||
kfree(srq);
|
||||
atomic_dec(&rdev->srq_count);
|
||||
if (nq)
|
||||
nq->budget--;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int bnxt_re_init_user_srq(struct bnxt_re_dev *rdev,
|
||||
struct bnxt_re_pd *pd,
|
||||
struct bnxt_re_srq *srq,
|
||||
struct ib_udata *udata)
|
||||
{
|
||||
struct bnxt_re_srq_req ureq;
|
||||
struct bnxt_qplib_srq *qplib_srq = &srq->qplib_srq;
|
||||
struct ib_umem *umem;
|
||||
int bytes = 0;
|
||||
struct ib_ucontext *context = pd->ib_pd.uobject->context;
|
||||
struct bnxt_re_ucontext *cntx = container_of(context,
|
||||
struct bnxt_re_ucontext,
|
||||
ib_uctx);
|
||||
if (ib_copy_from_udata(&ureq, udata, sizeof(ureq)))
|
||||
return -EFAULT;
|
||||
|
||||
bytes = (qplib_srq->max_wqe * BNXT_QPLIB_MAX_RQE_ENTRY_SIZE);
|
||||
bytes = PAGE_ALIGN(bytes);
|
||||
umem = ib_umem_get(context, ureq.srqva, bytes,
|
||||
IB_ACCESS_LOCAL_WRITE, 1);
|
||||
if (IS_ERR(umem))
|
||||
return PTR_ERR(umem);
|
||||
|
||||
srq->umem = umem;
|
||||
qplib_srq->nmap = umem->nmap;
|
||||
qplib_srq->sglist = umem->sg_head.sgl;
|
||||
qplib_srq->srq_handle = ureq.srq_handle;
|
||||
qplib_srq->dpi = &cntx->dpi;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
struct ib_srq *bnxt_re_create_srq(struct ib_pd *ib_pd,
|
||||
struct ib_srq_init_attr *srq_init_attr,
|
||||
struct ib_udata *udata)
|
||||
{
|
||||
struct bnxt_re_pd *pd = container_of(ib_pd, struct bnxt_re_pd, ib_pd);
|
||||
struct bnxt_re_dev *rdev = pd->rdev;
|
||||
struct bnxt_qplib_dev_attr *dev_attr = &rdev->dev_attr;
|
||||
struct bnxt_re_srq *srq;
|
||||
struct bnxt_qplib_nq *nq = NULL;
|
||||
int rc, entries;
|
||||
|
||||
if (srq_init_attr->attr.max_wr >= dev_attr->max_srq_wqes) {
|
||||
dev_err(rdev_to_dev(rdev), "Create CQ failed - max exceeded");
|
||||
rc = -EINVAL;
|
||||
goto exit;
|
||||
}
|
||||
|
||||
if (srq_init_attr->srq_type != IB_SRQT_BASIC) {
|
||||
rc = -ENOTSUPP;
|
||||
goto exit;
|
||||
}
|
||||
|
||||
srq = kzalloc(sizeof(*srq), GFP_KERNEL);
|
||||
if (!srq) {
|
||||
rc = -ENOMEM;
|
||||
goto exit;
|
||||
}
|
||||
srq->rdev = rdev;
|
||||
srq->qplib_srq.pd = &pd->qplib_pd;
|
||||
srq->qplib_srq.dpi = &rdev->dpi_privileged;
|
||||
/* Allocate 1 more than what's provided so posting max doesn't
|
||||
* mean empty
|
||||
*/
|
||||
entries = roundup_pow_of_two(srq_init_attr->attr.max_wr + 1);
|
||||
if (entries > dev_attr->max_srq_wqes + 1)
|
||||
entries = dev_attr->max_srq_wqes + 1;
|
||||
|
||||
srq->qplib_srq.max_wqe = entries;
|
||||
srq->qplib_srq.max_sge = srq_init_attr->attr.max_sge;
|
||||
srq->qplib_srq.threshold = srq_init_attr->attr.srq_limit;
|
||||
srq->srq_limit = srq_init_attr->attr.srq_limit;
|
||||
srq->qplib_srq.eventq_hw_ring_id = rdev->nq[0].ring_id;
|
||||
nq = &rdev->nq[0];
|
||||
|
||||
if (udata) {
|
||||
rc = bnxt_re_init_user_srq(rdev, pd, srq, udata);
|
||||
if (rc)
|
||||
goto fail;
|
||||
}
|
||||
|
||||
rc = bnxt_qplib_create_srq(&rdev->qplib_res, &srq->qplib_srq);
|
||||
if (rc) {
|
||||
dev_err(rdev_to_dev(rdev), "Create HW SRQ failed!");
|
||||
goto fail;
|
||||
}
|
||||
|
||||
if (udata) {
|
||||
struct bnxt_re_srq_resp resp;
|
||||
|
||||
resp.srqid = srq->qplib_srq.id;
|
||||
rc = ib_copy_to_udata(udata, &resp, sizeof(resp));
|
||||
if (rc) {
|
||||
dev_err(rdev_to_dev(rdev), "SRQ copy to udata failed!");
|
||||
bnxt_qplib_destroy_srq(&rdev->qplib_res,
|
||||
&srq->qplib_srq);
|
||||
goto exit;
|
||||
}
|
||||
}
|
||||
if (nq)
|
||||
nq->budget++;
|
||||
atomic_inc(&rdev->srq_count);
|
||||
|
||||
return &srq->ib_srq;
|
||||
|
||||
fail:
|
||||
if (udata && srq->umem && !IS_ERR(srq->umem)) {
|
||||
ib_umem_release(srq->umem);
|
||||
srq->umem = NULL;
|
||||
}
|
||||
|
||||
kfree(srq);
|
||||
exit:
|
||||
return ERR_PTR(rc);
|
||||
}
|
||||
|
||||
int bnxt_re_modify_srq(struct ib_srq *ib_srq, struct ib_srq_attr *srq_attr,
|
||||
enum ib_srq_attr_mask srq_attr_mask,
|
||||
struct ib_udata *udata)
|
||||
{
|
||||
struct bnxt_re_srq *srq = container_of(ib_srq, struct bnxt_re_srq,
|
||||
ib_srq);
|
||||
struct bnxt_re_dev *rdev = srq->rdev;
|
||||
int rc;
|
||||
|
||||
switch (srq_attr_mask) {
|
||||
case IB_SRQ_MAX_WR:
|
||||
/* SRQ resize is not supported */
|
||||
break;
|
||||
case IB_SRQ_LIMIT:
|
||||
/* Change the SRQ threshold */
|
||||
if (srq_attr->srq_limit > srq->qplib_srq.max_wqe)
|
||||
return -EINVAL;
|
||||
|
||||
srq->qplib_srq.threshold = srq_attr->srq_limit;
|
||||
rc = bnxt_qplib_modify_srq(&rdev->qplib_res, &srq->qplib_srq);
|
||||
if (rc) {
|
||||
dev_err(rdev_to_dev(rdev), "Modify HW SRQ failed!");
|
||||
return rc;
|
||||
}
|
||||
/* On success, update the shadow */
|
||||
srq->srq_limit = srq_attr->srq_limit;
|
||||
/* No need to Build and send response back to udata */
|
||||
break;
|
||||
default:
|
||||
dev_err(rdev_to_dev(rdev),
|
||||
"Unsupported srq_attr_mask 0x%x", srq_attr_mask);
|
||||
return -EINVAL;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
int bnxt_re_query_srq(struct ib_srq *ib_srq, struct ib_srq_attr *srq_attr)
|
||||
{
|
||||
struct bnxt_re_srq *srq = container_of(ib_srq, struct bnxt_re_srq,
|
||||
ib_srq);
|
||||
struct bnxt_re_srq tsrq;
|
||||
struct bnxt_re_dev *rdev = srq->rdev;
|
||||
int rc;
|
||||
|
||||
/* Get live SRQ attr */
|
||||
tsrq.qplib_srq.id = srq->qplib_srq.id;
|
||||
rc = bnxt_qplib_query_srq(&rdev->qplib_res, &tsrq.qplib_srq);
|
||||
if (rc) {
|
||||
dev_err(rdev_to_dev(rdev), "Query HW SRQ failed!");
|
||||
return rc;
|
||||
}
|
||||
srq_attr->max_wr = srq->qplib_srq.max_wqe;
|
||||
srq_attr->max_sge = srq->qplib_srq.max_sge;
|
||||
srq_attr->srq_limit = tsrq.qplib_srq.threshold;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int bnxt_re_post_srq_recv(struct ib_srq *ib_srq, struct ib_recv_wr *wr,
|
||||
struct ib_recv_wr **bad_wr)
|
||||
{
|
||||
struct bnxt_re_srq *srq = container_of(ib_srq, struct bnxt_re_srq,
|
||||
ib_srq);
|
||||
struct bnxt_qplib_swqe wqe;
|
||||
unsigned long flags;
|
||||
int rc = 0, payload_sz = 0;
|
||||
|
||||
spin_lock_irqsave(&srq->lock, flags);
|
||||
while (wr) {
|
||||
/* Transcribe each ib_recv_wr to qplib_swqe */
|
||||
wqe.num_sge = wr->num_sge;
|
||||
payload_sz = bnxt_re_build_sgl(wr->sg_list, wqe.sg_list,
|
||||
wr->num_sge);
|
||||
wqe.wr_id = wr->wr_id;
|
||||
wqe.type = BNXT_QPLIB_SWQE_TYPE_RECV;
|
||||
|
||||
rc = bnxt_qplib_post_srq_recv(&srq->qplib_srq, &wqe);
|
||||
if (rc) {
|
||||
*bad_wr = wr;
|
||||
break;
|
||||
}
|
||||
wr = wr->next;
|
||||
}
|
||||
spin_unlock_irqrestore(&srq->lock, flags);
|
||||
|
||||
return rc;
|
||||
}
|
||||
static int bnxt_re_modify_shadow_qp(struct bnxt_re_dev *rdev,
|
||||
struct bnxt_re_qp *qp1_qp,
|
||||
int qp_attr_mask)
|
||||
|
||||
@@ -68,6 +68,15 @@ struct bnxt_re_ah {
|
||||
struct bnxt_qplib_ah qplib_ah;
|
||||
};
|
||||
|
||||
struct bnxt_re_srq {
|
||||
struct bnxt_re_dev *rdev;
|
||||
u32 srq_limit;
|
||||
struct ib_srq ib_srq;
|
||||
struct bnxt_qplib_srq qplib_srq;
|
||||
struct ib_umem *umem;
|
||||
spinlock_t lock; /* protect srq */
|
||||
};
|
||||
|
||||
struct bnxt_re_qp {
|
||||
struct list_head list;
|
||||
struct bnxt_re_dev *rdev;
|
||||
@@ -165,6 +174,16 @@ struct ib_ah *bnxt_re_create_ah(struct ib_pd *pd,
|
||||
int bnxt_re_modify_ah(struct ib_ah *ah, struct rdma_ah_attr *ah_attr);
|
||||
int bnxt_re_query_ah(struct ib_ah *ah, struct rdma_ah_attr *ah_attr);
|
||||
int bnxt_re_destroy_ah(struct ib_ah *ah);
|
||||
struct ib_srq *bnxt_re_create_srq(struct ib_pd *pd,
|
||||
struct ib_srq_init_attr *srq_init_attr,
|
||||
struct ib_udata *udata);
|
||||
int bnxt_re_modify_srq(struct ib_srq *srq, struct ib_srq_attr *srq_attr,
|
||||
enum ib_srq_attr_mask srq_attr_mask,
|
||||
struct ib_udata *udata);
|
||||
int bnxt_re_query_srq(struct ib_srq *srq, struct ib_srq_attr *srq_attr);
|
||||
int bnxt_re_destroy_srq(struct ib_srq *srq);
|
||||
int bnxt_re_post_srq_recv(struct ib_srq *srq, struct ib_recv_wr *recv_wr,
|
||||
struct ib_recv_wr **bad_recv_wr);
|
||||
struct ib_qp *bnxt_re_create_qp(struct ib_pd *pd,
|
||||
struct ib_qp_init_attr *qp_init_attr,
|
||||
struct ib_udata *udata);
|
||||
|
||||
@@ -588,6 +588,12 @@ static int bnxt_re_register_ib(struct bnxt_re_dev *rdev)
|
||||
ibdev->query_ah = bnxt_re_query_ah;
|
||||
ibdev->destroy_ah = bnxt_re_destroy_ah;
|
||||
|
||||
ibdev->create_srq = bnxt_re_create_srq;
|
||||
ibdev->modify_srq = bnxt_re_modify_srq;
|
||||
ibdev->query_srq = bnxt_re_query_srq;
|
||||
ibdev->destroy_srq = bnxt_re_destroy_srq;
|
||||
ibdev->post_srq_recv = bnxt_re_post_srq_recv;
|
||||
|
||||
ibdev->create_qp = bnxt_re_create_qp;
|
||||
ibdev->modify_qp = bnxt_re_modify_qp;
|
||||
ibdev->query_qp = bnxt_re_query_qp;
|
||||
@@ -689,10 +695,10 @@ static struct bnxt_re_dev *bnxt_re_dev_add(struct net_device *netdev,
|
||||
return rdev;
|
||||
}
|
||||
|
||||
static int bnxt_re_aeq_handler(struct bnxt_qplib_rcfw *rcfw,
|
||||
struct creq_func_event *aeqe)
|
||||
static int bnxt_re_handle_unaffi_async_event(struct creq_func_event
|
||||
*unaffi_async)
|
||||
{
|
||||
switch (aeqe->event) {
|
||||
switch (unaffi_async->event) {
|
||||
case CREQ_FUNC_EVENT_EVENT_TX_WQE_ERROR:
|
||||
break;
|
||||
case CREQ_FUNC_EVENT_EVENT_TX_DATA_ERROR:
|
||||
@@ -721,6 +727,93 @@ static int bnxt_re_aeq_handler(struct bnxt_qplib_rcfw *rcfw,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int bnxt_re_handle_qp_async_event(struct creq_qp_event *qp_event,
|
||||
struct bnxt_re_qp *qp)
|
||||
{
|
||||
struct ib_event event;
|
||||
|
||||
memset(&event, 0, sizeof(event));
|
||||
if (qp->qplib_qp.srq) {
|
||||
event.device = &qp->rdev->ibdev;
|
||||
event.element.qp = &qp->ib_qp;
|
||||
event.event = IB_EVENT_QP_LAST_WQE_REACHED;
|
||||
}
|
||||
|
||||
if (event.device && qp->ib_qp.event_handler)
|
||||
qp->ib_qp.event_handler(&event, qp->ib_qp.qp_context);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int bnxt_re_handle_affi_async_event(struct creq_qp_event *affi_async,
|
||||
void *obj)
|
||||
{
|
||||
int rc = 0;
|
||||
u8 event;
|
||||
|
||||
if (!obj)
|
||||
return rc; /* QP was already dead, still return success */
|
||||
|
||||
event = affi_async->event;
|
||||
if (event == CREQ_QP_EVENT_EVENT_QP_ERROR_NOTIFICATION) {
|
||||
struct bnxt_qplib_qp *lib_qp = obj;
|
||||
struct bnxt_re_qp *qp = container_of(lib_qp, struct bnxt_re_qp,
|
||||
qplib_qp);
|
||||
rc = bnxt_re_handle_qp_async_event(affi_async, qp);
|
||||
}
|
||||
return rc;
|
||||
}
|
||||
|
||||
static int bnxt_re_aeq_handler(struct bnxt_qplib_rcfw *rcfw,
|
||||
void *aeqe, void *obj)
|
||||
{
|
||||
struct creq_qp_event *affi_async;
|
||||
struct creq_func_event *unaffi_async;
|
||||
u8 type;
|
||||
int rc;
|
||||
|
||||
type = ((struct creq_base *)aeqe)->type;
|
||||
if (type == CREQ_BASE_TYPE_FUNC_EVENT) {
|
||||
unaffi_async = aeqe;
|
||||
rc = bnxt_re_handle_unaffi_async_event(unaffi_async);
|
||||
} else {
|
||||
affi_async = aeqe;
|
||||
rc = bnxt_re_handle_affi_async_event(affi_async, obj);
|
||||
}
|
||||
|
||||
return rc;
|
||||
}
|
||||
|
||||
static int bnxt_re_srqn_handler(struct bnxt_qplib_nq *nq,
|
||||
struct bnxt_qplib_srq *handle, u8 event)
|
||||
{
|
||||
struct bnxt_re_srq *srq = container_of(handle, struct bnxt_re_srq,
|
||||
qplib_srq);
|
||||
struct ib_event ib_event;
|
||||
int rc = 0;
|
||||
|
||||
if (!srq) {
|
||||
dev_err(NULL, "%s: SRQ is NULL, SRQN not handled",
|
||||
ROCE_DRV_MODULE_NAME);
|
||||
rc = -EINVAL;
|
||||
goto done;
|
||||
}
|
||||
ib_event.device = &srq->rdev->ibdev;
|
||||
ib_event.element.srq = &srq->ib_srq;
|
||||
if (event == NQ_SRQ_EVENT_EVENT_SRQ_THRESHOLD_EVENT)
|
||||
ib_event.event = IB_EVENT_SRQ_LIMIT_REACHED;
|
||||
else
|
||||
ib_event.event = IB_EVENT_SRQ_ERR;
|
||||
|
||||
if (srq->ib_srq.event_handler) {
|
||||
/* Lock event_handler? */
|
||||
(*srq->ib_srq.event_handler)(&ib_event,
|
||||
srq->ib_srq.srq_context);
|
||||
}
|
||||
done:
|
||||
return rc;
|
||||
}
|
||||
|
||||
static int bnxt_re_cqn_handler(struct bnxt_qplib_nq *nq,
|
||||
struct bnxt_qplib_cq *handle)
|
||||
{
|
||||
@@ -763,7 +856,8 @@ static int bnxt_re_init_res(struct bnxt_re_dev *rdev)
|
||||
rc = bnxt_qplib_enable_nq(rdev->en_dev->pdev, &rdev->nq[i - 1],
|
||||
i - 1, rdev->msix_entries[i].vector,
|
||||
rdev->msix_entries[i].db_offset,
|
||||
&bnxt_re_cqn_handler, NULL);
|
||||
&bnxt_re_cqn_handler,
|
||||
&bnxt_re_srqn_handler);
|
||||
|
||||
if (rc) {
|
||||
dev_err(rdev_to_dev(rdev),
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -39,6 +39,27 @@
|
||||
#ifndef __BNXT_QPLIB_FP_H__
|
||||
#define __BNXT_QPLIB_FP_H__
|
||||
|
||||
struct bnxt_qplib_srq {
|
||||
struct bnxt_qplib_pd *pd;
|
||||
struct bnxt_qplib_dpi *dpi;
|
||||
void __iomem *dbr_base;
|
||||
u64 srq_handle;
|
||||
u32 id;
|
||||
u32 max_wqe;
|
||||
u32 max_sge;
|
||||
u32 threshold;
|
||||
bool arm_req;
|
||||
struct bnxt_qplib_cq *cq;
|
||||
struct bnxt_qplib_hwq hwq;
|
||||
struct bnxt_qplib_swq *swq;
|
||||
struct scatterlist *sglist;
|
||||
int start_idx;
|
||||
int last_idx;
|
||||
u32 nmap;
|
||||
u16 eventq_hw_ring_id;
|
||||
spinlock_t lock; /* protect SRQE link list */
|
||||
};
|
||||
|
||||
struct bnxt_qplib_sge {
|
||||
u64 addr;
|
||||
u32 lkey;
|
||||
@@ -79,6 +100,7 @@ static inline u32 get_psne_idx(u32 val)
|
||||
|
||||
struct bnxt_qplib_swq {
|
||||
u64 wr_id;
|
||||
int next_idx;
|
||||
u8 type;
|
||||
u8 flags;
|
||||
u32 start_psn;
|
||||
@@ -404,29 +426,27 @@ struct bnxt_qplib_cq {
|
||||
writel(NQ_DB_CP_FLAGS | ((raw_cons) & ((cp_bit) - 1)), db)
|
||||
|
||||
struct bnxt_qplib_nq {
|
||||
struct pci_dev *pdev;
|
||||
struct pci_dev *pdev;
|
||||
|
||||
int vector;
|
||||
cpumask_t mask;
|
||||
int budget;
|
||||
bool requested;
|
||||
struct tasklet_struct worker;
|
||||
struct bnxt_qplib_hwq hwq;
|
||||
int vector;
|
||||
cpumask_t mask;
|
||||
int budget;
|
||||
bool requested;
|
||||
struct tasklet_struct worker;
|
||||
struct bnxt_qplib_hwq hwq;
|
||||
|
||||
u16 bar_reg;
|
||||
u16 bar_reg_off;
|
||||
u16 ring_id;
|
||||
void __iomem *bar_reg_iomem;
|
||||
u16 bar_reg;
|
||||
u16 bar_reg_off;
|
||||
u16 ring_id;
|
||||
void __iomem *bar_reg_iomem;
|
||||
|
||||
int (*cqn_handler)
|
||||
(struct bnxt_qplib_nq *nq,
|
||||
struct bnxt_qplib_cq *cq);
|
||||
int (*srqn_handler)
|
||||
(struct bnxt_qplib_nq *nq,
|
||||
void *srq,
|
||||
u8 event);
|
||||
struct workqueue_struct *cqn_wq;
|
||||
char name[32];
|
||||
int (*cqn_handler)(struct bnxt_qplib_nq *nq,
|
||||
struct bnxt_qplib_cq *cq);
|
||||
int (*srqn_handler)(struct bnxt_qplib_nq *nq,
|
||||
struct bnxt_qplib_srq *srq,
|
||||
u8 event);
|
||||
struct workqueue_struct *cqn_wq;
|
||||
char name[32];
|
||||
};
|
||||
|
||||
struct bnxt_qplib_nq_work {
|
||||
@@ -441,8 +461,18 @@ int bnxt_qplib_enable_nq(struct pci_dev *pdev, struct bnxt_qplib_nq *nq,
|
||||
int (*cqn_handler)(struct bnxt_qplib_nq *nq,
|
||||
struct bnxt_qplib_cq *cq),
|
||||
int (*srqn_handler)(struct bnxt_qplib_nq *nq,
|
||||
void *srq,
|
||||
struct bnxt_qplib_srq *srq,
|
||||
u8 event));
|
||||
int bnxt_qplib_create_srq(struct bnxt_qplib_res *res,
|
||||
struct bnxt_qplib_srq *srq);
|
||||
int bnxt_qplib_modify_srq(struct bnxt_qplib_res *res,
|
||||
struct bnxt_qplib_srq *srq);
|
||||
int bnxt_qplib_query_srq(struct bnxt_qplib_res *res,
|
||||
struct bnxt_qplib_srq *srq);
|
||||
int bnxt_qplib_destroy_srq(struct bnxt_qplib_res *res,
|
||||
struct bnxt_qplib_srq *srq);
|
||||
int bnxt_qplib_post_srq_recv(struct bnxt_qplib_srq *srq,
|
||||
struct bnxt_qplib_swqe *wqe);
|
||||
int bnxt_qplib_create_qp1(struct bnxt_qplib_res *res, struct bnxt_qplib_qp *qp);
|
||||
int bnxt_qplib_create_qp(struct bnxt_qplib_res *res, struct bnxt_qplib_qp *qp);
|
||||
int bnxt_qplib_modify_qp(struct bnxt_qplib_res *res, struct bnxt_qplib_qp *qp);
|
||||
|
||||
@@ -616,7 +616,7 @@ int bnxt_qplib_enable_rcfw_channel(struct pci_dev *pdev,
|
||||
int msix_vector,
|
||||
int cp_bar_reg_off, int virt_fn,
|
||||
int (*aeq_handler)(struct bnxt_qplib_rcfw *,
|
||||
struct creq_func_event *))
|
||||
void *, void *))
|
||||
{
|
||||
resource_size_t res_base;
|
||||
struct cmdq_init init;
|
||||
|
||||
@@ -167,7 +167,7 @@ struct bnxt_qplib_rcfw {
|
||||
#define FIRMWARE_TIMED_OUT 3
|
||||
wait_queue_head_t waitq;
|
||||
int (*aeq_handler)(struct bnxt_qplib_rcfw *,
|
||||
struct creq_func_event *);
|
||||
void *, void *);
|
||||
u32 seq_num;
|
||||
|
||||
/* Bar region info */
|
||||
@@ -199,9 +199,8 @@ int bnxt_qplib_enable_rcfw_channel(struct pci_dev *pdev,
|
||||
struct bnxt_qplib_rcfw *rcfw,
|
||||
int msix_vector,
|
||||
int cp_bar_reg_off, int virt_fn,
|
||||
int (*aeq_handler)
|
||||
(struct bnxt_qplib_rcfw *,
|
||||
struct creq_func_event *));
|
||||
int (*aeq_handler)(struct bnxt_qplib_rcfw *,
|
||||
void *aeqe, void *obj));
|
||||
|
||||
struct bnxt_qplib_rcfw_sbuf *bnxt_qplib_rcfw_alloc_sbuf(
|
||||
struct bnxt_qplib_rcfw *rcfw,
|
||||
|
||||
@@ -82,6 +82,15 @@ struct bnxt_re_qp_resp {
|
||||
__u32 rsvd;
|
||||
};
|
||||
|
||||
struct bnxt_re_srq_req {
|
||||
__u64 srqva;
|
||||
__u64 srq_handle;
|
||||
};
|
||||
|
||||
struct bnxt_re_srq_resp {
|
||||
__u32 srqid;
|
||||
};
|
||||
|
||||
enum bnxt_re_shpg_offt {
|
||||
BNXT_RE_BEG_RESV_OFFT = 0x00,
|
||||
BNXT_RE_AVID_OFFT = 0x10,
|
||||
|
||||
Reference in New Issue
Block a user