Lines Matching defs:pf_q
70 struct ice_tlan_ctx *tlan_ctx, u16 pf_q);
72 static int ice_is_rxq_ready(struct ice_hw *hw, int pf_q, u32 *reg);
1584 * @pf_q: real queue number
1587 ice_setup_tx_ctx(struct ice_tx_queue *txq, struct ice_tlan_ctx *tlan_ctx, u16 pf_q)
1620 tlan_ctx->tso_qnum = pf_q;
1650 u16 qg_size, pf_q;
1663 pf_q = vsi->tx_qmap[txq->me];
1664 qg->txqs[0].txq_id = htole16(pf_q);
1666 err = ice_setup_tx_ctx(txq, &tlan_ctx, pf_q);
1686 if (pf_q == le16toh(qg->txqs[0].txq_id))
1715 u16 pf_q;
1717 pf_q = vsi->rx_qmap[rxq->me];
1750 regval = rd32(hw, QRXFLXP_CNTXT(pf_q));
1759 wr32(hw, QRXFLXP_CNTXT(pf_q), regval);
1762 status = ice_write_rxq_ctx(hw, &rlan_ctx, pf_q);
1802 * @pf_q: absolute PF queue index to check
1814 ice_is_rxq_ready(struct ice_hw *hw, int pf_q, u32 *reg)
1820 qrx_ctrl = rd32(hw, QRX_CTRL(pf_q));
1858 int pf_q = vsi->rx_qmap[rxq->me];
1860 err = ice_is_rxq_ready(hw, pf_q, &qrx_ctrl);
1864 pf_q);
1876 wr32(hw, QRX_CTRL(pf_q), qrx_ctrl);
1879 err = ice_is_rxq_ready(hw, pf_q, &qrx_ctrl);
1883 pf_q, (enable ? "en" : "dis"));
1891 pf_q);