Home
last modified time | relevance | path

Searched refs:txd_lower (Results 1 – 5 of 5) sorted by relevance

/openbmc/qemu/hw/net/
H A De1000x_common.h57 e1000x_is_vlan_txd(uint32_t txd_lower) in e1000x_is_vlan_txd() argument
59 return ((txd_lower & E1000_TXD_CMD_VLE) != 0); in e1000x_is_vlan_txd()
H A De1000.c643 uint32_t txd_lower = le32_to_cpu(dp->lower.data); in process_tx_desc() local
644 uint32_t dtype = txd_lower & (E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D); in process_tx_desc()
645 unsigned int split_size = txd_lower & 0xffff, bytes, sz; in process_tx_desc()
651 s->mit_ide |= (txd_lower & E1000_TXD_CMD_IDE); in process_tx_desc()
667 tp->cptse = (txd_lower & E1000_TXD_CMD_TSE) ? 1 : 0; in process_tx_desc()
674 e1000x_is_vlan_txd(txd_lower) && in process_tx_desc()
675 (tp->cptse || txd_lower & E1000_TXD_CMD_EOP)) { in process_tx_desc()
717 if (!(txd_lower & E1000_TXD_CMD_EOP)) in process_tx_desc()
733 uint32_t txd_upper, txd_lower = le32_to_cpu(dp->lower.data); in txdesc_writeback() local
735 if (!(txd_lower & (E1000_TXD_CMD_RS|E1000_TXD_CMD_RPS))) in txdesc_writeback()
H A De1000e_core.c720 uint32_t txd_lower = le32_to_cpu(dp->lower.data); in e1000e_process_tx_desc() local
721 uint32_t dtype = txd_lower & (E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D); in e1000e_process_tx_desc()
722 unsigned int split_size = txd_lower & 0xffff; in e1000e_process_tx_desc()
725 bool eop = txd_lower & E1000_TXD_CMD_EOP; in e1000e_process_tx_desc()
734 tx->cptse = (txd_lower & E1000_TXD_CMD_TSE) ? 1 : 0; in e1000e_process_tx_desc()
754 e1000x_is_vlan_txd(txd_lower)) { in e1000e_process_tx_desc()
796 uint32_t txd_upper, txd_lower = le32_to_cpu(dp->lower.data); in e1000e_txdesc_writeback() local
798 if (!(txd_lower & E1000_TXD_CMD_RS) && in e1000e_txdesc_writeback()
803 *ide = (txd_lower & E1000_TXD_CMD_IDE) ? true : false; in e1000e_txdesc_writeback()
/openbmc/linux/drivers/net/ethernet/intel/e1000e/
H A Dnetdev.c3807 u32 tdt, tctl, txd_lower = E1000_TXD_CMD_IFCS; in e1000_flush_tx_ring() local
3817 tx_desc->lower.data = cpu_to_le32(txd_lower | size); in e1000_flush_tx_ring()
5647 u32 txd_upper = 0, txd_lower = E1000_TXD_CMD_IFCS; in e1000_tx_queue() local
5651 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D | in e1000_tx_queue()
5660 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D; in e1000_tx_queue()
5665 txd_lower |= E1000_TXD_CMD_VLE; in e1000_tx_queue()
5670 txd_lower &= ~(E1000_TXD_CMD_IFCS); in e1000_tx_queue()
5673 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D; in e1000_tx_queue()
5683 tx_desc->lower.data = cpu_to_le32(txd_lower | in e1000_tx_queue()
/openbmc/linux/drivers/net/ethernet/intel/e1000/
H A De1000_main.c2974 u32 txd_upper = 0, txd_lower = E1000_TXD_CMD_IFCS; in e1000_tx_queue() local
2978 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D | in e1000_tx_queue()
2987 txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D; in e1000_tx_queue()
2992 txd_lower |= E1000_TXD_CMD_VLE; in e1000_tx_queue()
2997 txd_lower &= ~(E1000_TXD_CMD_IFCS); in e1000_tx_queue()
3006 cpu_to_le32(txd_lower | buffer_info->length); in e1000_tx_queue()