Skip to content

Commit 4c8e612

Browse files
Michael Chankuba-moo
authored andcommitted
bnxt_en: Pass NQ ID to the FW when allocating RX/RX AGG rings
Newer firmware can use the NQ ring ID associated with each RX/RX AGG ring to enable PCIe Steering Tags on P5_PLUS chips. When allocating RX/RX AGG rings, pass along NQ ring ID for the firmware to use. This information helps optimize DMA writes by directing them to the cache closer to the CPU consuming the data, potentially improving the processing speed. This change is backward-compatible with older firmware, which will simply disregard the information. Reviewed-by: Hongguang Gao <[email protected]> Reviewed-by: Ajit Khaparde <[email protected]> Reviewed-by: Michal Swiatkowski <[email protected]> Signed-off-by: Andy Gospodarek <[email protected]> Signed-off-by: Michael Chan <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Jakub Kicinski <[email protected]>
1 parent e1714de commit 4c8e612

File tree

1 file changed

+3
-1
lines changed
  • drivers/net/ethernet/broadcom/bnxt

1 file changed

+3
-1
lines changed

drivers/net/ethernet/broadcom/bnxt/bnxt.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6949,7 +6949,8 @@ static void bnxt_set_rx_ring_params_p5(struct bnxt *bp, u32 ring_type,
69496949
struct bnxt_ring_struct *ring)
69506950
{
69516951
struct bnxt_ring_grp_info *grp_info = &bp->grp_info[ring->grp_idx];
6952-
u32 enables = RING_ALLOC_REQ_ENABLES_RX_BUF_SIZE_VALID;
6952+
u32 enables = RING_ALLOC_REQ_ENABLES_RX_BUF_SIZE_VALID |
6953+
RING_ALLOC_REQ_ENABLES_NQ_RING_ID_VALID;
69536954

69546955
if (ring_type == HWRM_RING_ALLOC_AGG) {
69556956
req->ring_type = RING_ALLOC_REQ_RING_TYPE_RX_AGG;
@@ -6963,6 +6964,7 @@ static void bnxt_set_rx_ring_params_p5(struct bnxt *bp, u32 ring_type,
69636964
cpu_to_le16(RING_ALLOC_REQ_FLAGS_RX_SOP_PAD);
69646965
}
69656966
req->stat_ctx_id = cpu_to_le32(grp_info->fw_stats_ctx);
6967+
req->nq_ring_id = cpu_to_le16(grp_info->cp_fw_ring_id);
69666968
req->enables |= cpu_to_le32(enables);
69676969
}
69686970

0 commit comments

Comments
 (0)