#define DBR_TYPE_SRQ (0x2ULL << 60)
#define DBR_TYPE_CQ (0x4ULL << 60)
#define DBR_TYPE_NQ (0xaULL << 60)
+#define DBR_TYPE_NQ_ARM (0xbULL << 60)
#define BNXT_RSS_TBL_SIZE_THOR 512
#define BNXT_RSS_ENTRIES_PER_CTX_THOR 64
db->db_key64 = DBR_PATH_L2 | DBR_TYPE_CQ;
break;
case HWRM_RING_ALLOC_INPUT_RING_TYPE_NQ:
- db->db_key64 = DBR_PATH_L2 | DBR_TYPE_NQ;
+ db->db_key64 = DBR_PATH_L2;
break;
}
db->db_key64 |= (uint64_t)fid << DBR_XID_SFT;
rte_write32(db->db_key32 | idx, db->doorbell);
}
+/* Ring an NQ doorbell and disable interrupts for the ring. */
static inline void bnxt_db_nq(struct bnxt_cp_ring_info *cpr)
{
- struct bnxt_db_info *db = &cpr->cp_db;
+ if (unlikely(!cpr->cp_db.db_64))
+ return;
+
+ rte_smp_wmb();
+ rte_write64(cpr->cp_db.db_key64 | DBR_TYPE_NQ |
+ RING_CMP(cpr->cp_ring_struct, cpr->cp_raw_cons),
+ cpr->cp_db.doorbell);
+}
+
+/* Ring an NQ doorbell and enable interrupts for the ring. */
+static inline void bnxt_db_nq_arm(struct bnxt_cp_ring_info *cpr)
+{
+ if (unlikely(!cpr->cp_db.db_64))
+ return;
rte_smp_wmb();
- if (likely(db->db_64))
- rte_write64(db->db_key64 | DBR_TYPE_NQ |
- RING_CMP(cpr->cp_ring_struct, cpr->cp_raw_cons),
- db->doorbell);
+ rte_write64(cpr->cp_db.db_key64 | DBR_TYPE_NQ_ARM |
+ RING_CMP(cpr->cp_ring_struct, cpr->cp_raw_cons),
+ cpr->cp_db.doorbell);
}
static inline void bnxt_db_cq(struct bnxt_cp_ring_info *cpr)