/openbmc/linux/drivers/net/ethernet/pensando/ionic/ |
H A D | ionic_ethtool.c | 449 u32 tx_coal, tx_dim; in ionic_set_coalesce() local 473 tx_coal = ionic_coal_usec_to_hw(lif->ionic, coalesce->tx_coalesce_usecs); in ionic_set_coalesce() 474 if (!tx_coal && coalesce->tx_coalesce_usecs) in ionic_set_coalesce() 475 tx_coal = 1; in ionic_set_coalesce() 478 tx_coal > IONIC_INTR_CTRL_COAL_MAX) in ionic_set_coalesce() 489 lif->tx_coalesce_hw = tx_coal; in ionic_set_coalesce() 501 tx_dim = tx_coal; in ionic_set_coalesce()
|
/openbmc/linux/drivers/net/ethernet/hisilicon/hns3/ |
H A D | hns3_ethtool.c | 1363 struct hns3_enet_coalesce *tx_coal = &priv->tx_coal; in hns3_get_coalesce() local 1370 cmd->use_adaptive_tx_coalesce = tx_coal->adapt_enable; in hns3_get_coalesce() 1373 cmd->tx_coalesce_usecs = tx_coal->int_gl; in hns3_get_coalesce() 1379 cmd->tx_max_coalesced_frames = tx_coal->int_ql; in hns3_get_coalesce() 1575 struct hns3_enet_coalesce *tx_coal = &priv->tx_coal; in hns3_set_coalesce() local 1593 tx_coal->adapt_enable = cmd->use_adaptive_tx_coalesce; in hns3_set_coalesce() 1596 tx_coal->int_gl = cmd->tx_coalesce_usecs; in hns3_set_coalesce() 1599 tx_coal->int_ql = cmd->tx_max_coalesced_frames; in hns3_set_coalesce()
|
H A D | hns3_enet.c | 565 tx_coal->int_gl = ptx_coal->int_gl; in hns3_vector_coalesce_init() 569 tx_coal->flow_level = ptx_coal->flow_level; in hns3_vector_coalesce_init() 575 tx_coal->unit_1us = 1; in hns3_vector_coalesce_init() 580 tx_coal->ql_enable = 1; in hns3_vector_coalesce_init() 584 tx_coal->int_ql = ptx_coal->int_ql; in hns3_vector_coalesce_init() 601 if (tx_coal->ql_enable) in hns3_vector_coalesce_init_hw() 4749 struct hns3_enet_coalesce *tx_coal = &priv->tx_coal; in hns3_nic_init_coal_cfg() local 4759 tx_coal->adapt_enable = 1; in hns3_nic_init_coal_cfg() 4762 tx_coal->int_gl = HNS3_INT_GL_50K; in hns3_nic_init_coal_cfg() 4766 tx_coal->flow_level = HNS3_FLOW_LOW; in hns3_nic_init_coal_cfg() [all …]
|
H A D | hns3_enet.h | 595 struct hns3_enet_coalesce tx_coal; member
|
/openbmc/linux/drivers/net/ethernet/qlogic/qed/ |
H A D | qed_dev_api.h | 482 qed_set_queue_coalesce(u16 rx_coal, u16 tx_coal, void *p_handle);
|
H A D | qed_vf.c | 1401 u16 rx_coal, u16 tx_coal, struct qed_queue_cid *p_cid) in qed_vf_pf_set_coalesce() argument 1412 req->tx_coal = tx_coal; in qed_vf_pf_set_coalesce() 1418 rx_coal, tx_coal, req->qid); in qed_vf_pf_set_coalesce() 1435 if (tx_coal) in qed_vf_pf_set_coalesce() 1436 p_hwfn->cdev->tx_coalesce_usecs = tx_coal; in qed_vf_pf_set_coalesce()
|
H A D | qed_sriov.h | 196 u16 tx_coal; member
|
H A D | qed_vf.h | 481 u16 tx_coal; member 705 u16 tx_coal, struct qed_queue_cid *p_cid);
|
H A D | qed_sriov.c | 3492 u16 rx_coal, tx_coal; in qed_iov_vf_pf_set_coalesce() local 3499 tx_coal = req->tx_coal; in qed_iov_vf_pf_set_coalesce() 3511 QED_IOV_VALIDATE_Q_ENABLE) && tx_coal) { in qed_iov_vf_pf_set_coalesce() 3521 vf->abs_vf_id, rx_coal, tx_coal, qid); in qed_iov_vf_pf_set_coalesce() 3537 if (tx_coal) { in qed_iov_vf_pf_set_coalesce() 3547 rc = qed_set_txq_coalesce(p_hwfn, p_ptt, tx_coal, in qed_iov_vf_pf_set_coalesce() 3558 vf->tx_coal = tx_coal; in qed_iov_vf_pf_set_coalesce()
|
H A D | qed_dev.c | 4911 int qed_set_queue_coalesce(u16 rx_coal, u16 tx_coal, void *p_handle) in qed_set_queue_coalesce() argument 4921 return qed_vf_pf_set_coalesce(p_hwfn, rx_coal, tx_coal, p_cid); in qed_set_queue_coalesce() 4934 if (tx_coal) { in qed_set_queue_coalesce() 4935 rc = qed_set_txq_coalesce(p_hwfn, p_ptt, tx_coal, p_cid); in qed_set_queue_coalesce() 4938 p_hwfn->cdev->tx_coalesce_usecs = tx_coal; in qed_set_queue_coalesce()
|
H A D | qed_main.c | 2776 static int qed_set_coalesce(struct qed_dev *cdev, u16 rx_coal, u16 tx_coal, in qed_set_coalesce() argument 2779 return qed_set_queue_coalesce(rx_coal, tx_coal, handle); in qed_set_coalesce()
|
/openbmc/linux/drivers/net/ethernet/qlogic/qede/ |
H A D | qede_ethtool.c | 785 u16 rx_coal, tx_coal, i, rc = 0; in qede_get_coalesce() local 789 tx_coal = QED_DEFAULT_TX_USECS; in qede_get_coalesce() 826 rc = edev->ops->get_coalesce(edev->cdev, &tx_coal, tx_handle); in qede_get_coalesce() 835 coal->tx_coalesce_usecs = tx_coal; in qede_get_coalesce() 2222 u16 rx_coal, tx_coal; in qede_get_per_coalesce() local 2226 tx_coal = QED_DEFAULT_TX_USECS; in qede_get_per_coalesce() 2258 rc = edev->ops->get_coalesce(edev->cdev, &tx_coal, in qede_get_per_coalesce() 2267 coal->tx_coalesce_usecs = tx_coal; in qede_get_per_coalesce()
|
/openbmc/linux/drivers/net/ethernet/tehuti/ |
H A D | tehuti.c | 2188 int tx_coal; in bdx_set_coalesce() local 2194 tx_coal = ecoal->tx_coalesce_usecs / INT_COAL_MULT; in bdx_set_coalesce() 2206 if ((rx_coal > 0x7FFF) || (tx_coal > 0x7FFF) || in bdx_set_coalesce() 2212 tdintcm = INT_REG_VAL(tx_coal, GET_INT_COAL_RC(priv->tdintcm), 0, in bdx_set_coalesce()
|
/openbmc/linux/include/linux/qed/ |
H A D | qed_if.h | 1032 u16 rx_coal, u16 tx_coal, void *handle);
|
/openbmc/linux/drivers/net/ethernet/broadcom/bnxt/ |
H A D | bnxt.h | 2073 struct bnxt_coal tx_coal; member
|
H A D | bnxt_ethtool.c | 82 hw_coal = &bp->tx_coal; in bnxt_get_coalesce() 134 hw_coal = &bp->tx_coal; in bnxt_set_coalesce()
|
H A D | bnxt.c | 6812 bnxt_hwrm_set_coal_params(bp, &bp->tx_coal, req_tx); in bnxt_hwrm_set_coal() 6848 hw_coal = &bp->tx_coal; in bnxt_hwrm_set_coal() 12248 coal = &bp->tx_coal; in bnxt_init_dflt_coal()
|