Home
last modified time | relevance | path

Searched refs:enetc_port_rd64 (Results 1 – 2 of 2) sorted by relevance

/linux/drivers/net/ethernet/freescale/enetc/
H A Denetc_ethtool.c317 data[o++] = enetc_port_rd64(hw, enetc_pm_counters[i].reg); in enetc_get_ethtool_stats()
323 pause_stats->tx_pause_frames = enetc_port_rd64(hw, ENETC_PM_TXPF(mac)); in enetc_pause_stats()
324 pause_stats->rx_pause_frames = enetc_port_rd64(hw, ENETC_PM_RXPF(mac)); in enetc_pause_stats()
351 s->FramesTransmittedOK = enetc_port_rd64(hw, ENETC_PM_TFRM(mac)); in enetc_mac_stats()
352 s->SingleCollisionFrames = enetc_port_rd64(hw, ENETC_PM_TSCOL(mac)); in enetc_mac_stats()
353 s->MultipleCollisionFrames = enetc_port_rd64(hw, ENETC_PM_TMCOL(mac)); in enetc_mac_stats()
354 s->FramesReceivedOK = enetc_port_rd64(hw, ENETC_PM_RFRM(mac)); in enetc_mac_stats()
355 s->FrameCheckSequenceErrors = enetc_port_rd64(hw, ENETC_PM_RFCS(mac)); in enetc_mac_stats()
356 s->AlignmentErrors = enetc_port_rd64(hw, ENETC_PM_RALN(mac)); in enetc_mac_stats()
357 s->OctetsTransmittedOK = enetc_port_rd64(hw, ENETC_PM_TEOCT(mac)); in enetc_mac_stats()
[all …]
H A Denetc_hw.h539 #define enetc_port_rd64(hw, off) _enetc_rd_reg64_wa((hw)->port + (off)) macro