net/mlx5: add connection tracking context update
[dpdk.git] / drivers / net / octeontx_ep / otx_ep_vf.c
index 22eee91..c9b91fe 100644 (file)
@@ -85,6 +85,241 @@ otx_ep_setup_device_regs(struct otx_ep_device *otx_ep)
        otx_ep_setup_global_output_regs(otx_ep);
 }
 
+static void
+otx_ep_setup_iq_regs(struct otx_ep_device *otx_ep, uint32_t iq_no)
+{
+       struct otx_ep_instr_queue *iq = otx_ep->instr_queue[iq_no];
+       volatile uint64_t reg_val = 0ull;
+
+       reg_val = rte_read64(otx_ep->hw_addr + OTX_EP_R_IN_CONTROL(iq_no));
+
+       /* Wait till IDLE to set to 1, not supposed to configure BADDR
+        * as long as IDLE is 0
+        */
+       if (!(reg_val & OTX_EP_R_IN_CTL_IDLE)) {
+               do {
+                       reg_val = rte_read64(otx_ep->hw_addr +
+                                             OTX_EP_R_IN_CONTROL(iq_no));
+               } while (!(reg_val & OTX_EP_R_IN_CTL_IDLE));
+       }
+
+       /* Write the start of the input queue's ring and its size  */
+       otx_ep_write64(iq->base_addr_dma, otx_ep->hw_addr,
+                      OTX_EP_R_IN_INSTR_BADDR(iq_no));
+       otx_ep_write64(iq->nb_desc, otx_ep->hw_addr,
+                      OTX_EP_R_IN_INSTR_RSIZE(iq_no));
+
+       /* Remember the doorbell & instruction count register addr
+        * for this queue
+        */
+       iq->doorbell_reg = (uint8_t *)otx_ep->hw_addr +
+                          OTX_EP_R_IN_INSTR_DBELL(iq_no);
+       iq->inst_cnt_reg = (uint8_t *)otx_ep->hw_addr +
+                          OTX_EP_R_IN_CNTS(iq_no);
+
+       otx_ep_dbg("InstQ[%d]:dbell reg @ 0x%p instcnt_reg @ 0x%p\n",
+                    iq_no, iq->doorbell_reg, iq->inst_cnt_reg);
+
+       do {
+               reg_val = rte_read32(iq->inst_cnt_reg);
+               rte_write32(reg_val, iq->inst_cnt_reg);
+       } while (reg_val !=  0);
+
+       /* IN INTR_THRESHOLD is set to max(FFFFFFFF) which disable the IN INTR
+        * to raise
+        */
+       /* reg_val = rte_read64(otx_ep->hw_addr +
+        * OTX_EP_R_IN_INT_LEVELS(iq_no));
+        */
+       otx_ep_write64(OTX_EP_CLEAR_IN_INT_LVLS, otx_ep->hw_addr,
+                      OTX_EP_R_IN_INT_LEVELS(iq_no));
+}
+
+static void
+otx_ep_setup_oq_regs(struct otx_ep_device *otx_ep, uint32_t oq_no)
+{
+       volatile uint64_t reg_val = 0ull;
+       uint64_t oq_ctl = 0ull;
+
+       struct otx_ep_droq *droq = otx_ep->droq[oq_no];
+
+       /* Wait on IDLE to set to 1, supposed to configure BADDR
+        * as log as IDLE is 0
+        */
+       otx_ep_write64(0ULL, otx_ep->hw_addr, OTX_EP_R_OUT_ENABLE(oq_no));
+
+       reg_val = rte_read64(otx_ep->hw_addr + OTX_EP_R_OUT_CONTROL(oq_no));
+
+       while (!(reg_val & OTX_EP_R_OUT_CTL_IDLE)) {
+               reg_val = rte_read64(otx_ep->hw_addr +
+                                     OTX_EP_R_OUT_CONTROL(oq_no));
+       }
+
+       otx_ep_write64(droq->desc_ring_dma, otx_ep->hw_addr,
+                      OTX_EP_R_OUT_SLIST_BADDR(oq_no));
+       otx_ep_write64(droq->nb_desc, otx_ep->hw_addr,
+                      OTX_EP_R_OUT_SLIST_RSIZE(oq_no));
+
+       oq_ctl = rte_read64(otx_ep->hw_addr + OTX_EP_R_OUT_CONTROL(oq_no));
+
+       /* Clear the ISIZE and BSIZE (22-0) */
+       oq_ctl &= ~(OTX_EP_CLEAR_ISIZE_BSIZE);
+
+       /* Populate the BSIZE (15-0) */
+       oq_ctl |= (droq->buffer_size & OTX_EP_DROQ_BUFSZ_MASK);
+
+       otx_ep_write64(oq_ctl, otx_ep->hw_addr, OTX_EP_R_OUT_CONTROL(oq_no));
+
+       /* Mapped address of the pkt_sent and pkts_credit regs */
+       droq->pkts_sent_reg = (uint8_t *)otx_ep->hw_addr +
+                             OTX_EP_R_OUT_CNTS(oq_no);
+       droq->pkts_credit_reg = (uint8_t *)otx_ep->hw_addr +
+                               OTX_EP_R_OUT_SLIST_DBELL(oq_no);
+
+       otx_ep_write64(OTX_EP_CLEAR_OUT_INT_LVLS, otx_ep->hw_addr,
+                      OTX_EP_R_OUT_INT_LEVELS(oq_no));
+
+       /* Clear the OQ doorbell  */
+       rte_write32(OTX_EP_CLEAR_SLIST_DBELL, droq->pkts_credit_reg);
+       while ((rte_read32(droq->pkts_credit_reg) != 0ull)) {
+               rte_write32(OTX_EP_CLEAR_SLIST_DBELL, droq->pkts_credit_reg);
+               rte_delay_ms(1);
+       }
+       otx_ep_dbg("OTX_EP_R[%d]_credit:%x\n", oq_no,
+                    rte_read32(droq->pkts_credit_reg));
+
+       /* Clear the OQ_OUT_CNTS doorbell  */
+       reg_val = rte_read32(droq->pkts_sent_reg);
+       rte_write32((uint32_t)reg_val, droq->pkts_sent_reg);
+
+       otx_ep_dbg("OTX_EP_R[%d]_sent: %x\n", oq_no,
+                    rte_read32(droq->pkts_sent_reg));
+
+       while (((rte_read32(droq->pkts_sent_reg)) != 0ull)) {
+               reg_val = rte_read32(droq->pkts_sent_reg);
+               rte_write32((uint32_t)reg_val, droq->pkts_sent_reg);
+               rte_delay_ms(1);
+       }
+}
+
+static int
+otx_ep_enable_iq(struct otx_ep_device *otx_ep, uint32_t q_no)
+{
+       uint64_t loop = OTX_EP_BUSY_LOOP_COUNT;
+       uint64_t reg_val = 0ull;
+
+       /* Resetting doorbells during IQ enabling also to handle abrupt
+        * guest reboot. IQ reset does not clear the doorbells.
+        */
+       otx_ep_write64(0xFFFFFFFF, otx_ep->hw_addr,
+                      OTX_EP_R_IN_INSTR_DBELL(q_no));
+
+       while (((rte_read64(otx_ep->hw_addr +
+                OTX_EP_R_IN_INSTR_DBELL(q_no))) != 0ull) && loop--) {
+               rte_delay_ms(1);
+       }
+
+       if (loop == 0) {
+               otx_ep_err("dbell reset failed\n");
+               return -EIO;
+       }
+
+
+       reg_val = rte_read64(otx_ep->hw_addr + OTX_EP_R_IN_ENABLE(q_no));
+       reg_val |= 0x1ull;
+
+       otx_ep_write64(reg_val, otx_ep->hw_addr, OTX_EP_R_IN_ENABLE(q_no));
+
+       otx_ep_info("IQ[%d] enable done\n", q_no);
+
+       return 0;
+}
+
+static int
+otx_ep_enable_oq(struct otx_ep_device *otx_ep, uint32_t q_no)
+{
+       uint64_t reg_val = 0ull;
+       uint64_t loop = OTX_EP_BUSY_LOOP_COUNT;
+
+       /* Resetting doorbells during IQ enabling also to handle abrupt
+        * guest reboot. IQ reset does not clear the doorbells.
+        */
+       otx_ep_write64(0xFFFFFFFF, otx_ep->hw_addr,
+                      OTX_EP_R_OUT_SLIST_DBELL(q_no));
+       while (((rte_read64(otx_ep->hw_addr +
+                OTX_EP_R_OUT_SLIST_DBELL(q_no))) != 0ull) && loop--) {
+               rte_delay_ms(1);
+       }
+       if (loop == 0) {
+               otx_ep_err("dbell reset failed\n");
+               return -EIO;
+       }
+
+
+       reg_val = rte_read64(otx_ep->hw_addr + OTX_EP_R_OUT_ENABLE(q_no));
+       reg_val |= 0x1ull;
+       otx_ep_write64(reg_val, otx_ep->hw_addr, OTX_EP_R_OUT_ENABLE(q_no));
+
+       otx_ep_info("OQ[%d] enable done\n", q_no);
+
+       return 0;
+}
+
+static int
+otx_ep_enable_io_queues(struct otx_ep_device *otx_ep)
+{
+       uint32_t q_no = 0;
+       int ret;
+
+       for (q_no = 0; q_no < otx_ep->nb_tx_queues; q_no++) {
+               ret = otx_ep_enable_iq(otx_ep, q_no);
+               if (ret)
+                       return ret;
+       }
+
+       for (q_no = 0; q_no < otx_ep->nb_rx_queues; q_no++) {
+               ret = otx_ep_enable_oq(otx_ep, q_no);
+               if (ret)
+                       return ret;
+       }
+
+       return 0;
+}
+
+static void
+otx_ep_disable_iq(struct otx_ep_device *otx_ep, uint32_t q_no)
+{
+       uint64_t reg_val = 0ull;
+
+       /* Reset the doorbell register for this Input Queue. */
+       reg_val = rte_read64(otx_ep->hw_addr + OTX_EP_R_IN_ENABLE(q_no));
+       reg_val &= ~0x1ull;
+
+       otx_ep_write64(reg_val, otx_ep->hw_addr, OTX_EP_R_IN_ENABLE(q_no));
+}
+
+static void
+otx_ep_disable_oq(struct otx_ep_device *otx_ep, uint32_t q_no)
+{
+       uint64_t reg_val = 0ull;
+
+       reg_val = rte_read64(otx_ep->hw_addr + OTX_EP_R_OUT_ENABLE(q_no));
+       reg_val &= ~0x1ull;
+
+       otx_ep_write64(reg_val, otx_ep->hw_addr, OTX_EP_R_OUT_ENABLE(q_no));
+}
+
+static void
+otx_ep_disable_io_queues(struct otx_ep_device *otx_ep)
+{
+       uint32_t q_no = 0;
+
+       for (q_no = 0; q_no < otx_ep->sriov_info.rings_per_vf; q_no++) {
+               otx_ep_disable_iq(otx_ep, q_no);
+               otx_ep_disable_oq(otx_ep, q_no);
+       }
+}
+
 /* OTX_EP default configuration */
 static const struct otx_ep_config default_otx_ep_conf = {
        /* IQ attributes */
@@ -142,7 +377,20 @@ otx_ep_vf_setup_device(struct otx_ep_device *otx_ep)
 
        otx_ep_info("OTX_EP RPVF: %d\n", otx_ep->sriov_info.rings_per_vf);
 
+       otx_ep->fn_list.setup_iq_regs       = otx_ep_setup_iq_regs;
+       otx_ep->fn_list.setup_oq_regs       = otx_ep_setup_oq_regs;
+
        otx_ep->fn_list.setup_device_regs   = otx_ep_setup_device_regs;
 
+       otx_ep->fn_list.enable_io_queues    = otx_ep_enable_io_queues;
+       otx_ep->fn_list.disable_io_queues   = otx_ep_disable_io_queues;
+
+       otx_ep->fn_list.enable_iq           = otx_ep_enable_iq;
+       otx_ep->fn_list.disable_iq          = otx_ep_disable_iq;
+
+       otx_ep->fn_list.enable_oq           = otx_ep_enable_oq;
+       otx_ep->fn_list.disable_oq          = otx_ep_disable_oq;
+
+
        return 0;
 }