]> git.karo-electronics.de Git - linux-beck.git/commitdiff
IB/hns: Fix the bug when free cq
authorShaobo Xu <xushaobo2@huawei.com>
Tue, 29 Nov 2016 23:10:29 +0000 (23:10 +0000)
committerDoug Ledford <dledford@redhat.com>
Sat, 3 Dec 2016 19:20:42 +0000 (14:20 -0500)
If the resources of cq are freed while executing the user case, hardware
can not been notified in hip06 SoC. Then hardware will hold on when it
writes the cq buffer which has been released.

In order to slove this problem, RoCE driver checks the CQE counter, and
ensure that the outstanding CQE have been written. Then the cq buffer
can be released.

Signed-off-by: Shaobo Xu <xushaobo2@huawei.com>
Reviewed-by: Wei Hu (Xavier) <xavier.huwei@huawei.com>
Signed-off-by: Salil Mehta <salil.mehta@huawei.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/hw/hns/hns_roce_common.h
drivers/infiniband/hw/hns/hns_roce_cq.c
drivers/infiniband/hw/hns/hns_roce_device.h
drivers/infiniband/hw/hns/hns_roce_hw_v1.c

index a0556323a67846fae27b8c7979f0c6dee22b94ad..4af403e1348c2f81950bd206e689a1d83536c8fb 100644 (file)
 
 #define ROCEE_SDB_ISSUE_PTR_REG                        0x758
 #define ROCEE_SDB_SEND_PTR_REG                 0x75C
+#define ROCEE_CAEP_CQE_WCMD_EMPTY              0x850
+#define ROCEE_SCAEP_WR_CQE_CNT                 0x8D0
 #define ROCEE_SDB_INV_CNT_REG                  0x9A4
 #define ROCEE_SDB_RETRY_CNT_REG                        0x9AC
 #define ROCEE_TSP_BP_ST_REG                    0x9EC
index c9f6c3dce83cb40c91a497d6498d11a73644604a..ff9a6a3c826a916a507c9bcb52f7990723339e25 100644 (file)
@@ -179,8 +179,7 @@ static int hns_roce_hw2sw_cq(struct hns_roce_dev *dev,
                                 HNS_ROCE_CMD_TIMEOUT_MSECS);
 }
 
-static void hns_roce_free_cq(struct hns_roce_dev *hr_dev,
-                            struct hns_roce_cq *hr_cq)
+void hns_roce_free_cq(struct hns_roce_dev *hr_dev, struct hns_roce_cq *hr_cq)
 {
        struct hns_roce_cq_table *cq_table = &hr_dev->cq_table;
        struct device *dev = &hr_dev->pdev->dev;
@@ -392,19 +391,25 @@ int hns_roce_ib_destroy_cq(struct ib_cq *ib_cq)
 {
        struct hns_roce_dev *hr_dev = to_hr_dev(ib_cq->device);
        struct hns_roce_cq *hr_cq = to_hr_cq(ib_cq);
+       int ret = 0;
 
-       hns_roce_free_cq(hr_dev, hr_cq);
-       hns_roce_mtt_cleanup(hr_dev, &hr_cq->hr_buf.hr_mtt);
+       if (hr_dev->hw->destroy_cq) {
+               ret = hr_dev->hw->destroy_cq(ib_cq);
+       } else {
+               hns_roce_free_cq(hr_dev, hr_cq);
+               hns_roce_mtt_cleanup(hr_dev, &hr_cq->hr_buf.hr_mtt);
 
-       if (ib_cq->uobject)
-               ib_umem_release(hr_cq->umem);
-       else
-               /* Free the buff of stored cq */
-               hns_roce_ib_free_cq_buf(hr_dev, &hr_cq->hr_buf, ib_cq->cqe);
+               if (ib_cq->uobject)
+                       ib_umem_release(hr_cq->umem);
+               else
+                       /* Free the buff of stored cq */
+                       hns_roce_ib_free_cq_buf(hr_dev, &hr_cq->hr_buf,
+                                               ib_cq->cqe);
 
-       kfree(hr_cq);
+               kfree(hr_cq);
+       }
 
-       return 0;
+       return ret;
 }
 
 void hns_roce_cq_completion(struct hns_roce_dev *hr_dev, u32 cqn)
index 1050829da64227ce53f4bc575795d29d82a35d1c..d4f0fce98587fb38fa6b5c4e4f88267fba7dc0d7 100644 (file)
 #define HNS_ROCE_MAX_INNER_MTPT_NUM            0x7
 #define HNS_ROCE_MAX_MTPT_PBL_NUM              0x100000
 
+#define HNS_ROCE_EACH_FREE_CQ_WAIT_MSECS       20
+#define HNS_ROCE_MAX_FREE_CQ_WAIT_CNT  \
+       (5000 / HNS_ROCE_EACH_FREE_CQ_WAIT_MSECS)
+#define HNS_ROCE_CQE_WCMD_EMPTY_BIT            0x2
+#define HNS_ROCE_MIN_CQE_CNT                   16
+
 #define HNS_ROCE_MAX_IRQ_NUM                   34
 
 #define HNS_ROCE_COMP_VEC_NUM                  32
@@ -528,6 +534,7 @@ struct hns_roce_hw {
        int (*req_notify_cq)(struct ib_cq *ibcq, enum ib_cq_notify_flags flags);
        int (*poll_cq)(struct ib_cq *ibcq, int num_entries, struct ib_wc *wc);
        int (*dereg_mr)(struct hns_roce_dev *hr_dev, struct hns_roce_mr *mr);
+       int (*destroy_cq)(struct ib_cq *ibcq);
        void    *priv;
 };
 
@@ -734,6 +741,7 @@ struct ib_cq *hns_roce_ib_create_cq(struct ib_device *ib_dev,
                                    struct ib_udata *udata);
 
 int hns_roce_ib_destroy_cq(struct ib_cq *ib_cq);
+void hns_roce_free_cq(struct hns_roce_dev *hr_dev, struct hns_roce_cq *hr_cq);
 
 void hns_roce_cq_completion(struct hns_roce_dev *hr_dev, u32 cqn);
 void hns_roce_cq_event(struct hns_roce_dev *hr_dev, u32 cqn, int event_type);
index f67a3bfd4c55a7f407ed7611c17fb33bc06d254f..b8111b0c8877b5f4b285f75fc3a0b4880b05653f 100644 (file)
@@ -3763,6 +3763,58 @@ int hns_roce_v1_destroy_qp(struct ib_qp *ibqp)
        return 0;
 }
 
+int hns_roce_v1_destroy_cq(struct ib_cq *ibcq)
+{
+       struct hns_roce_dev *hr_dev = to_hr_dev(ibcq->device);
+       struct hns_roce_cq *hr_cq = to_hr_cq(ibcq);
+       struct device *dev = &hr_dev->pdev->dev;
+       u32 cqe_cnt_ori;
+       u32 cqe_cnt_cur;
+       u32 cq_buf_size;
+       int wait_time = 0;
+       int ret = 0;
+
+       hns_roce_free_cq(hr_dev, hr_cq);
+
+       /*
+        * Before freeing cq buffer, we need to ensure that the outstanding CQE
+        * have been written by checking the CQE counter.
+        */
+       cqe_cnt_ori = roce_read(hr_dev, ROCEE_SCAEP_WR_CQE_CNT);
+       while (1) {
+               if (roce_read(hr_dev, ROCEE_CAEP_CQE_WCMD_EMPTY) &
+                   HNS_ROCE_CQE_WCMD_EMPTY_BIT)
+                       break;
+
+               cqe_cnt_cur = roce_read(hr_dev, ROCEE_SCAEP_WR_CQE_CNT);
+               if ((cqe_cnt_cur - cqe_cnt_ori) >= HNS_ROCE_MIN_CQE_CNT)
+                       break;
+
+               msleep(HNS_ROCE_EACH_FREE_CQ_WAIT_MSECS);
+               if (wait_time > HNS_ROCE_MAX_FREE_CQ_WAIT_CNT) {
+                       dev_warn(dev, "Destroy cq 0x%lx timeout!\n",
+                               hr_cq->cqn);
+                       ret = -ETIMEDOUT;
+                       break;
+               }
+               wait_time++;
+       }
+
+       hns_roce_mtt_cleanup(hr_dev, &hr_cq->hr_buf.hr_mtt);
+
+       if (ibcq->uobject)
+               ib_umem_release(hr_cq->umem);
+       else {
+               /* Free the buff of stored cq */
+               cq_buf_size = (ibcq->cqe + 1) * hr_dev->caps.cq_entry_sz;
+               hns_roce_buf_free(hr_dev, cq_buf_size, &hr_cq->hr_buf.hr_buf);
+       }
+
+       kfree(hr_cq);
+
+       return ret;
+}
+
 struct hns_roce_v1_priv hr_v1_priv;
 
 struct hns_roce_hw hns_roce_hw_v1 = {
@@ -3784,5 +3836,6 @@ struct hns_roce_hw hns_roce_hw_v1 = {
        .req_notify_cq = hns_roce_v1_req_notify_cq,
        .poll_cq = hns_roce_v1_poll_cq,
        .dereg_mr = hns_roce_v1_dereg_mr,
+       .destroy_cq = hns_roce_v1_destroy_cq,
        .priv = &hr_v1_priv,
 };