Lines Matching refs:rxq_index
1365 * @rxq_index: the index of the Rx queue
1370 ice_copy_rxq_ctx_to_hw(struct ice_hw *hw, u8 *ice_rxq_ctx, u32 rxq_index)
1377 if (rxq_index > QRX_CTRL_MAX_INDEX)
1382 wr32(hw, QRX_CONTEXT(i, rxq_index),
1396 * @rxq_index: the index of the Rx queue
1401 ice_copy_rxq_ctx_from_hw(struct ice_hw *hw, u8 *ice_rxq_ctx, u32 rxq_index)
1408 if (rxq_index > QRX_CTRL_MAX_INDEX)
1415 *ctx = rd32(hw, QRX_CONTEXT(i, rxq_index));
1453 * @rxq_index: the index of the Rx queue
1461 u32 rxq_index)
1471 return ice_copy_rxq_ctx_to_hw(hw, ctx_buf, rxq_index);
1478 * @rxq_index: the index of the Rx queue
1485 u32 rxq_index)
1493 status = ice_copy_rxq_ctx_from_hw(hw, ctx_buf, rxq_index);
1503 * @rxq_index: the index of the Rx queue to clear
1507 int ice_clear_rxq_ctx(struct ice_hw *hw, u32 rxq_index)
1511 if (rxq_index > QRX_CTRL_MAX_INDEX)
1516 wr32(hw, QRX_CONTEXT(i, rxq_index), 0);