OSDN Git Service

octeontx2-af: Support for disabling NIX RQ/SQ/CQ contexts
authorGeetha sowjanya <gakula@marvell.com>
Tue, 16 Oct 2018 11:27:20 +0000 (16:57 +0530)
committerDavid S. Miller <davem@davemloft.net>
Thu, 18 Oct 2018 04:33:43 +0000 (21:33 -0700)
This patch adds support for a RVU PF/VF to disable all RQ/SQ/CQ
contexts of a NIX LF via mbox. This will be used by PF/VF drivers
upon teardown or while freeing up HW resources.

A HW context which is not INIT'ed cannot be modified and a
RVU PF/VF driver may or may not INIT all the RQ/SQ/CQ contexts.
So a bitmap is introduced to keep track of enabled NIX RQ/SQ/CQ
contexts, so that only enabled hw contexts are disabled upon LF
teardown.

Signed-off-by: Geetha sowjanya <gakula@marvell.com>
Signed-off-by: Stanislaw Kardach <skardach@marvell.com>
Signed-off-by: Sunil Goutham <sgoutham@marvell.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/marvell/octeontx2/af/mbox.h
drivers/net/ethernet/marvell/octeontx2/af/rvu.h
drivers/net/ethernet/marvell/octeontx2/af/rvu_nix.c

index 3b44693..c339024 100644 (file)
@@ -150,7 +150,8 @@ M(NPA_HWCTX_DISABLE,        0x403, hwctx_disable_req, msg_rsp)              \
 /* NIX mbox IDs (range 0x8000 - 0xFFFF) */                             \
 M(NIX_LF_ALLOC,                0x8000, nix_lf_alloc_req, nix_lf_alloc_rsp)     \
 M(NIX_LF_FREE,         0x8001, msg_req, msg_rsp)                       \
-M(NIX_AQ_ENQ,          0x8002, nix_aq_enq_req, nix_aq_enq_rsp)
+M(NIX_AQ_ENQ,          0x8002, nix_aq_enq_req, nix_aq_enq_rsp)         \
+M(NIX_HWCTX_DISABLE,   0x8003, hwctx_disable_req, msg_rsp)
 
 /* Messages initiated by AF (range 0xC00 - 0xDFF) */
 #define MBOX_UP_CGX_MESSAGES                                           \
index caf652d..b48b5af 100644 (file)
@@ -87,6 +87,9 @@ struct rvu_pfvf {
        struct qmem     *rss_ctx;
        struct qmem     *cq_ints_ctx;
        struct qmem     *nix_qints_ctx;
+       unsigned long   *sq_bmap;
+       unsigned long   *rq_bmap;
+       unsigned long   *cq_bmap;
 
        u8              mac_addr[ETH_ALEN]; /* MAC address of this PF/VF */
 };
@@ -264,4 +267,7 @@ int rvu_mbox_handler_NIX_LF_FREE(struct rvu *rvu, struct msg_req *req,
 int rvu_mbox_handler_NIX_AQ_ENQ(struct rvu *rvu,
                                struct nix_aq_enq_req *req,
                                struct nix_aq_enq_rsp *rsp);
+int rvu_mbox_handler_NIX_HWCTX_DISABLE(struct rvu *rvu,
+                                      struct hwctx_disable_req *req,
+                                      struct msg_rsp *rsp);
 #endif /* RVU_H */
index fdc4d7b..214ca2c 100644 (file)
@@ -140,6 +140,9 @@ static void nix_setup_lso(struct rvu *rvu, int blkaddr)
 
 static void nix_ctx_free(struct rvu *rvu, struct rvu_pfvf *pfvf)
 {
+       kfree(pfvf->rq_bmap);
+       kfree(pfvf->sq_bmap);
+       kfree(pfvf->cq_bmap);
        if (pfvf->rq_ctx)
                qmem_free(rvu->dev, pfvf->rq_ctx);
        if (pfvf->sq_ctx)
@@ -153,6 +156,9 @@ static void nix_ctx_free(struct rvu *rvu, struct rvu_pfvf *pfvf)
        if (pfvf->cq_ints_ctx)
                qmem_free(rvu->dev, pfvf->cq_ints_ctx);
 
+       pfvf->rq_bmap = NULL;
+       pfvf->cq_bmap = NULL;
+       pfvf->sq_bmap = NULL;
        pfvf->rq_ctx = NULL;
        pfvf->sq_ctx = NULL;
        pfvf->cq_ctx = NULL;
@@ -239,6 +245,7 @@ static int rvu_nix_aq_enq_inst(struct rvu *rvu, struct nix_aq_enq_req *req,
        struct admin_queue *aq;
        struct rvu_pfvf *pfvf;
        void *ctx, *mask;
+       bool ena;
        u64 cfg;
 
        pfvf = rvu_get_pfvf(rvu, pcifunc);
@@ -354,9 +361,49 @@ static int rvu_nix_aq_enq_inst(struct rvu *rvu, struct nix_aq_enq_req *req,
                return rc;
        }
 
+       /* Set RQ/SQ/CQ bitmap if respective queue hw context is enabled */
+       if (req->op == NIX_AQ_INSTOP_INIT) {
+               if (req->ctype == NIX_AQ_CTYPE_RQ && req->rq.ena)
+                       __set_bit(req->qidx, pfvf->rq_bmap);
+               if (req->ctype == NIX_AQ_CTYPE_SQ && req->sq.ena)
+                       __set_bit(req->qidx, pfvf->sq_bmap);
+               if (req->ctype == NIX_AQ_CTYPE_CQ && req->cq.ena)
+                       __set_bit(req->qidx, pfvf->cq_bmap);
+       }
+
+       if (req->op == NIX_AQ_INSTOP_WRITE) {
+               if (req->ctype == NIX_AQ_CTYPE_RQ) {
+                       ena = (req->rq.ena & req->rq_mask.ena) |
+                               (test_bit(req->qidx, pfvf->rq_bmap) &
+                               ~req->rq_mask.ena);
+                       if (ena)
+                               __set_bit(req->qidx, pfvf->rq_bmap);
+                       else
+                               __clear_bit(req->qidx, pfvf->rq_bmap);
+               }
+               if (req->ctype == NIX_AQ_CTYPE_SQ) {
+                       ena = (req->rq.ena & req->sq_mask.ena) |
+                               (test_bit(req->qidx, pfvf->sq_bmap) &
+                               ~req->sq_mask.ena);
+                       if (ena)
+                               __set_bit(req->qidx, pfvf->sq_bmap);
+                       else
+                               __clear_bit(req->qidx, pfvf->sq_bmap);
+               }
+               if (req->ctype == NIX_AQ_CTYPE_CQ) {
+                       ena = (req->rq.ena & req->cq_mask.ena) |
+                               (test_bit(req->qidx, pfvf->cq_bmap) &
+                               ~req->cq_mask.ena);
+                       if (ena)
+                               __set_bit(req->qidx, pfvf->cq_bmap);
+                       else
+                               __clear_bit(req->qidx, pfvf->cq_bmap);
+               }
+       }
+
        if (rsp) {
                /* Copy read context into mailbox */
-               if (req->op == NIX_AQ_INSTOP_READ && !rc) {
+               if (req->op == NIX_AQ_INSTOP_READ) {
                        if (req->ctype == NIX_AQ_CTYPE_RQ)
                                memcpy(&rsp->rq, ctx,
                                       sizeof(struct nix_rq_ctx_s));
@@ -373,7 +420,60 @@ static int rvu_nix_aq_enq_inst(struct rvu *rvu, struct nix_aq_enq_req *req,
        }
 
        spin_unlock(&aq->lock);
-       return rc;
+       return 0;
+}
+
+static int nix_lf_hwctx_disable(struct rvu *rvu, struct hwctx_disable_req *req)
+{
+       struct rvu_pfvf *pfvf = rvu_get_pfvf(rvu, req->hdr.pcifunc);
+       struct nix_aq_enq_req aq_req;
+       unsigned long *bmap;
+       int qidx, q_cnt = 0;
+       int err = 0, rc;
+
+       if (!pfvf->cq_ctx || !pfvf->sq_ctx || !pfvf->rq_ctx)
+               return NIX_AF_ERR_AQ_ENQUEUE;
+
+       memset(&aq_req, 0, sizeof(struct nix_aq_enq_req));
+       aq_req.hdr.pcifunc = req->hdr.pcifunc;
+
+       if (req->ctype == NIX_AQ_CTYPE_CQ) {
+               aq_req.cq.ena = 0;
+               aq_req.cq_mask.ena = 1;
+               q_cnt = pfvf->cq_ctx->qsize;
+               bmap = pfvf->cq_bmap;
+       }
+       if (req->ctype == NIX_AQ_CTYPE_SQ) {
+               aq_req.sq.ena = 0;
+               aq_req.sq_mask.ena = 1;
+               q_cnt = pfvf->sq_ctx->qsize;
+               bmap = pfvf->sq_bmap;
+       }
+       if (req->ctype == NIX_AQ_CTYPE_RQ) {
+               aq_req.rq.ena = 0;
+               aq_req.rq_mask.ena = 1;
+               q_cnt = pfvf->rq_ctx->qsize;
+               bmap = pfvf->rq_bmap;
+       }
+
+       aq_req.ctype = req->ctype;
+       aq_req.op = NIX_AQ_INSTOP_WRITE;
+
+       for (qidx = 0; qidx < q_cnt; qidx++) {
+               if (!test_bit(qidx, bmap))
+                       continue;
+               aq_req.qidx = qidx;
+               rc = rvu_nix_aq_enq_inst(rvu, &aq_req, NULL);
+               if (rc) {
+                       err = rc;
+                       dev_err(rvu->dev, "Failed to disable %s:%d context\n",
+                               (req->ctype == NIX_AQ_CTYPE_CQ) ?
+                               "CQ" : ((req->ctype == NIX_AQ_CTYPE_RQ) ?
+                               "RQ" : "SQ"), qidx);
+               }
+       }
+
+       return err;
 }
 
 int rvu_mbox_handler_NIX_AQ_ENQ(struct rvu *rvu,
@@ -383,6 +483,13 @@ int rvu_mbox_handler_NIX_AQ_ENQ(struct rvu *rvu,
        return rvu_nix_aq_enq_inst(rvu, req, rsp);
 }
 
+int rvu_mbox_handler_NIX_HWCTX_DISABLE(struct rvu *rvu,
+                                      struct hwctx_disable_req *req,
+                                      struct msg_rsp *rsp)
+{
+       return nix_lf_hwctx_disable(rvu, req);
+}
+
 int rvu_mbox_handler_NIX_LF_ALLOC(struct rvu *rvu,
                                  struct nix_lf_alloc_req *req,
                                  struct nix_lf_alloc_rsp *rsp)
@@ -437,6 +544,10 @@ int rvu_mbox_handler_NIX_LF_ALLOC(struct rvu *rvu,
        if (err)
                goto free_mem;
 
+       pfvf->rq_bmap = kcalloc(req->rq_cnt, sizeof(long), GFP_KERNEL);
+       if (!pfvf->rq_bmap)
+               goto free_mem;
+
        rvu_write64(rvu, blkaddr, NIX_AF_LFX_RQS_BASE(nixlf),
                    (u64)pfvf->rq_ctx->iova);
 
@@ -450,6 +561,10 @@ int rvu_mbox_handler_NIX_LF_ALLOC(struct rvu *rvu,
        if (err)
                goto free_mem;
 
+       pfvf->sq_bmap = kcalloc(req->sq_cnt, sizeof(long), GFP_KERNEL);
+       if (!pfvf->sq_bmap)
+               goto free_mem;
+
        rvu_write64(rvu, blkaddr, NIX_AF_LFX_SQS_BASE(nixlf),
                    (u64)pfvf->sq_ctx->iova);
        cfg = BIT_ULL(36) | (req->sq_cnt - 1);
@@ -461,6 +576,10 @@ int rvu_mbox_handler_NIX_LF_ALLOC(struct rvu *rvu,
        if (err)
                goto free_mem;
 
+       pfvf->cq_bmap = kcalloc(req->cq_cnt, sizeof(long), GFP_KERNEL);
+       if (!pfvf->cq_bmap)
+               goto free_mem;
+
        rvu_write64(rvu, blkaddr, NIX_AF_LFX_CQS_BASE(nixlf),
                    (u64)pfvf->cq_ctx->iova);
        cfg = BIT_ULL(36) | (req->cq_cnt - 1);