mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-24 10:11:26 +03:00
nvethernet: ethtool: add support for stats
These stats are read from MAC HW RMON counters as well as SW controlled control from Core and DMA path. ethtool -S <interface> is used to get statistics. There are 3 stats 1) ether_mmc_counters: EQOS HW counters 2) ether_xtra_stat_counters: SW counters from osi/core 3) ether_xtra_dma_stat_counters: SW counters from osi/dma Bug 200519211 Change-Id: I5b1b6592541c650f01e845667eca2f5c59bcfd08 Signed-off-by: Rakesh Goyal <rgoyal@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/2113962 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
This commit is contained in:
committed by
Revanth Kumar Uppala
parent
21dcef7b83
commit
2f9ecd7d54
@@ -12,6 +12,7 @@
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
OSI_COMMON := ../../../../../../nvethernetrm/osi/common
|
||||
OSI_CORE := ../../../../../../nvethernetrm/osi/core
|
||||
OSI_DMA := ../../../../../../nvethernetrm/osi/dma
|
||||
|
||||
@@ -26,8 +27,9 @@ nvethernet-objs:= ether_linux.o \
|
||||
ioctl.o \
|
||||
ptp.o \
|
||||
$(OSI_CORE)/osi_core.o \
|
||||
$(OSI_CORE)/osi_common.o \
|
||||
$(OSI_COMMON)/osi_common.o \
|
||||
$(OSI_DMA)/osi_dma.o \
|
||||
$(OSI_DMA)/osi_dma_txrx.o \
|
||||
$(OSI_CORE)/eqos_core.o \
|
||||
$(OSI_CORE)/eqos_mmc.o \
|
||||
$(OSI_DMA)/eqos_dma.o
|
||||
|
||||
@@ -35,6 +35,7 @@ static void ether_adjust_link(struct net_device *dev)
|
||||
struct ether_priv_data *pdata = netdev_priv(dev);
|
||||
struct phy_device *phydev = pdata->phydev;
|
||||
int new_state = 0, speed_changed = 0;
|
||||
unsigned long val;
|
||||
|
||||
if (phydev == NULL) {
|
||||
return;
|
||||
@@ -62,12 +63,18 @@ static void ether_adjust_link(struct net_device *dev)
|
||||
if (!pdata->oldlink) {
|
||||
new_state = 1;
|
||||
pdata->oldlink = 1;
|
||||
val = pdata->osi_core->xstats.link_connect_count;
|
||||
pdata->osi_core->xstats.link_connect_count =
|
||||
osi_update_stats_counter(val, 1UL);
|
||||
}
|
||||
} else if (pdata->oldlink) {
|
||||
new_state = 1;
|
||||
pdata->oldlink = 0;
|
||||
pdata->speed = 0;
|
||||
pdata->oldduplex = -1;
|
||||
val = pdata->osi_core->xstats.link_disconnect_count;
|
||||
pdata->osi_core->xstats.link_disconnect_count =
|
||||
osi_update_stats_counter(val, 1UL);
|
||||
} else {
|
||||
/* Nothing here */
|
||||
}
|
||||
@@ -172,9 +179,15 @@ static irqreturn_t ether_tx_chan_isr(int irq, void *data)
|
||||
struct ether_tx_napi *tx_napi = (struct ether_tx_napi *)data;
|
||||
struct ether_priv_data *pdata = tx_napi->pdata;
|
||||
struct osi_dma_priv_data *osi_dma = pdata->osi_dma;
|
||||
struct osi_core_priv_data *osi_core = pdata->osi_core;
|
||||
unsigned int chan = tx_napi->chan;
|
||||
unsigned long val;
|
||||
|
||||
|
||||
osi_clear_tx_intr(osi_dma, chan);
|
||||
val = osi_core->xstats.tx_normal_irq_n[chan];
|
||||
osi_core->xstats.tx_normal_irq_n[chan] =
|
||||
osi_update_stats_counter(val, 1U);
|
||||
|
||||
if (likely(napi_schedule_prep(&tx_napi->napi))) {
|
||||
osi_disable_chan_tx_intr(osi_dma, chan);
|
||||
@@ -208,9 +221,15 @@ static irqreturn_t ether_rx_chan_isr(int irq, void *data)
|
||||
struct ether_rx_napi *rx_napi = (struct ether_rx_napi *)data;
|
||||
struct ether_priv_data *pdata = rx_napi->pdata;
|
||||
struct osi_dma_priv_data *osi_dma = pdata->osi_dma;
|
||||
struct osi_core_priv_data *osi_core = pdata->osi_core;
|
||||
unsigned int chan = rx_napi->chan;
|
||||
unsigned long val;
|
||||
|
||||
osi_clear_rx_intr(osi_dma, chan);
|
||||
val = osi_core->xstats.rx_normal_irq_n[chan];
|
||||
osi_core->xstats.rx_normal_irq_n[chan] =
|
||||
osi_update_stats_counter(val, 1U);
|
||||
|
||||
|
||||
if (likely(napi_schedule_prep(&rx_napi->napi))) {
|
||||
osi_disable_chan_rx_intr(osi_dma, chan);
|
||||
@@ -3092,6 +3111,11 @@ static int ether_probe(struct platform_device *pdev)
|
||||
osi_dma->mtu = ndev->mtu;
|
||||
ndev->max_mtu = OSI_MAX_MTU_SIZE;
|
||||
|
||||
memset(&osi_core->xstats, 0,
|
||||
sizeof(struct osi_xtra_stat_counters));
|
||||
memset(&osi_dma->dstats, 0,
|
||||
sizeof(struct osi_xtra_dma_stat_counters));
|
||||
|
||||
/* Initialize core and DMA ops based on MAC type */
|
||||
osi_init_core_ops(osi_core);
|
||||
osi_init_dma_ops(osi_dma);
|
||||
|
||||
@@ -40,6 +40,7 @@
|
||||
|
||||
#include <osi_core.h>
|
||||
#include <osi_dma.h>
|
||||
#include <mmc.h>
|
||||
#include "ioctl.h"
|
||||
|
||||
#define ETHER_MAX_IRQS 4
|
||||
|
||||
@@ -16,6 +16,354 @@
|
||||
|
||||
#include "ether_linux.h"
|
||||
|
||||
#define OSI_ARRAY_SIZE(x) ((int)sizeof((x)) / (int)sizeof((x)[0]))
|
||||
#define EQOS_MMC_STATS_LEN OSI_ARRAY_SIZE(eqos_mmc)
|
||||
|
||||
struct eqos_stats {
|
||||
char stat_string[ETH_GSTRING_LEN];
|
||||
size_t sizeof_stat;
|
||||
size_t stat_offset;
|
||||
};
|
||||
|
||||
/* DMA extra status */
|
||||
/* Structure variable name MUST up to MAX length of ETH_GSTRING_LEN */
|
||||
#define EQOS_DMA_EXTRA_STAT(a) \
|
||||
{ (#a), FIELD_SIZEOF(struct osi_xtra_dma_stat_counters, a), \
|
||||
offsetof(struct osi_dma_priv_data, dstats.a)}
|
||||
|
||||
static const struct eqos_stats eqos_dstrings_stats[] = {
|
||||
EQOS_DMA_EXTRA_STAT(tx_clean_n[0]),
|
||||
EQOS_DMA_EXTRA_STAT(tx_clean_n[1]),
|
||||
EQOS_DMA_EXTRA_STAT(tx_clean_n[2]),
|
||||
EQOS_DMA_EXTRA_STAT(tx_clean_n[3]),
|
||||
|
||||
/* Tx/Rx frames */
|
||||
EQOS_DMA_EXTRA_STAT(tx_pkt_n),
|
||||
EQOS_DMA_EXTRA_STAT(rx_pkt_n),
|
||||
EQOS_DMA_EXTRA_STAT(tx_vlan_pkt_n),
|
||||
EQOS_DMA_EXTRA_STAT(rx_vlan_pkt_n),
|
||||
EQOS_DMA_EXTRA_STAT(tx_tso_pkt_n),
|
||||
|
||||
/* Tx/Rx frames per channels/queues */
|
||||
EQOS_DMA_EXTRA_STAT(q_tx_pkt_n[0]),
|
||||
EQOS_DMA_EXTRA_STAT(q_tx_pkt_n[1]),
|
||||
EQOS_DMA_EXTRA_STAT(q_tx_pkt_n[2]),
|
||||
EQOS_DMA_EXTRA_STAT(q_tx_pkt_n[3]),
|
||||
EQOS_DMA_EXTRA_STAT(q_rx_pkt_n[0]),
|
||||
EQOS_DMA_EXTRA_STAT(q_rx_pkt_n[1]),
|
||||
EQOS_DMA_EXTRA_STAT(q_rx_pkt_n[2]),
|
||||
EQOS_DMA_EXTRA_STAT(q_rx_pkt_n[3]),
|
||||
};
|
||||
|
||||
#define EQOS_EXTRA_DMA_STAT_LEN OSI_ARRAY_SIZE(eqos_dstrings_stats)
|
||||
|
||||
/* core extra status */
|
||||
/* Structure variable name MUST up to MAX length of ETH_GSTRING_LEN */
|
||||
#define EQOS_EXTRA_STAT(b) \
|
||||
{ #b, FIELD_SIZEOF(struct osi_xtra_stat_counters, b), \
|
||||
offsetof(struct osi_core_priv_data, xstats.b)}
|
||||
|
||||
static const struct eqos_stats eqos_gstrings_stats[] = {
|
||||
EQOS_EXTRA_STAT(re_alloc_rxbuf_failed[0]),
|
||||
EQOS_EXTRA_STAT(re_alloc_rxbuf_failed[1]),
|
||||
EQOS_EXTRA_STAT(re_alloc_rxbuf_failed[2]),
|
||||
EQOS_EXTRA_STAT(re_alloc_rxbuf_failed[3]),
|
||||
|
||||
/* Tx/Rx IRQ error info */
|
||||
EQOS_EXTRA_STAT(tx_proc_stopped_irq_n[0]),
|
||||
EQOS_EXTRA_STAT(tx_proc_stopped_irq_n[1]),
|
||||
EQOS_EXTRA_STAT(tx_proc_stopped_irq_n[2]),
|
||||
EQOS_EXTRA_STAT(tx_proc_stopped_irq_n[3]),
|
||||
EQOS_EXTRA_STAT(rx_proc_stopped_irq_n[0]),
|
||||
EQOS_EXTRA_STAT(rx_proc_stopped_irq_n[1]),
|
||||
EQOS_EXTRA_STAT(rx_proc_stopped_irq_n[2]),
|
||||
EQOS_EXTRA_STAT(rx_proc_stopped_irq_n[3]),
|
||||
EQOS_EXTRA_STAT(tx_buf_unavail_irq_n[0]),
|
||||
EQOS_EXTRA_STAT(tx_buf_unavail_irq_n[1]),
|
||||
EQOS_EXTRA_STAT(tx_buf_unavail_irq_n[2]),
|
||||
EQOS_EXTRA_STAT(tx_buf_unavail_irq_n[3]),
|
||||
EQOS_EXTRA_STAT(rx_buf_unavail_irq_n[0]),
|
||||
EQOS_EXTRA_STAT(rx_buf_unavail_irq_n[1]),
|
||||
EQOS_EXTRA_STAT(rx_buf_unavail_irq_n[2]),
|
||||
EQOS_EXTRA_STAT(rx_buf_unavail_irq_n[3]),
|
||||
EQOS_EXTRA_STAT(rx_watchdog_irq_n),
|
||||
EQOS_EXTRA_STAT(fatal_bus_error_irq_n),
|
||||
|
||||
/* Tx/Rx IRQ Events */
|
||||
EQOS_EXTRA_STAT(tx_normal_irq_n[0]),
|
||||
EQOS_EXTRA_STAT(tx_normal_irq_n[1]),
|
||||
EQOS_EXTRA_STAT(tx_normal_irq_n[2]),
|
||||
EQOS_EXTRA_STAT(tx_normal_irq_n[3]),
|
||||
EQOS_EXTRA_STAT(rx_normal_irq_n[0]),
|
||||
EQOS_EXTRA_STAT(rx_normal_irq_n[1]),
|
||||
EQOS_EXTRA_STAT(rx_normal_irq_n[2]),
|
||||
EQOS_EXTRA_STAT(rx_normal_irq_n[3]),
|
||||
EQOS_EXTRA_STAT(link_disconnect_count),
|
||||
EQOS_EXTRA_STAT(link_connect_count),
|
||||
};
|
||||
|
||||
#define EQOS_EXTRA_STAT_LEN OSI_ARRAY_SIZE(eqos_gstrings_stats)
|
||||
|
||||
/* HW MAC Management counters */
|
||||
/* Structure variable name MUST up to MAX length of ETH_GSTRING_LEN */
|
||||
#define EQOS_MMC_STAT(c) \
|
||||
{ #c, FIELD_SIZEOF(struct osi_mmc_counters, c), \
|
||||
offsetof(struct osi_core_priv_data, mmc.c)}
|
||||
|
||||
static const struct eqos_stats eqos_mmc[] = {
|
||||
/* MMC TX counters */
|
||||
EQOS_MMC_STAT(mmc_tx_octetcount_gb),
|
||||
EQOS_MMC_STAT(mmc_tx_framecount_gb),
|
||||
EQOS_MMC_STAT(mmc_tx_broadcastframe_g),
|
||||
EQOS_MMC_STAT(mmc_tx_multicastframe_g),
|
||||
EQOS_MMC_STAT(mmc_tx_64_octets_gb),
|
||||
EQOS_MMC_STAT(mmc_tx_65_to_127_octets_gb),
|
||||
EQOS_MMC_STAT(mmc_tx_128_to_255_octets_gb),
|
||||
EQOS_MMC_STAT(mmc_tx_256_to_511_octets_gb),
|
||||
EQOS_MMC_STAT(mmc_tx_512_to_1023_octets_gb),
|
||||
EQOS_MMC_STAT(mmc_tx_1024_to_max_octets_gb),
|
||||
EQOS_MMC_STAT(mmc_tx_unicast_gb),
|
||||
EQOS_MMC_STAT(mmc_tx_multicast_gb),
|
||||
EQOS_MMC_STAT(mmc_tx_broadcast_gb),
|
||||
EQOS_MMC_STAT(mmc_tx_underflow_error),
|
||||
EQOS_MMC_STAT(mmc_tx_singlecol_g),
|
||||
EQOS_MMC_STAT(mmc_tx_multicol_g),
|
||||
EQOS_MMC_STAT(mmc_tx_deferred),
|
||||
EQOS_MMC_STAT(mmc_tx_latecol),
|
||||
EQOS_MMC_STAT(mmc_tx_exesscol),
|
||||
EQOS_MMC_STAT(mmc_tx_carrier_error),
|
||||
EQOS_MMC_STAT(mmc_tx_octetcount_g),
|
||||
EQOS_MMC_STAT(mmc_tx_framecount_g),
|
||||
EQOS_MMC_STAT(mmc_tx_excessdef),
|
||||
EQOS_MMC_STAT(mmc_tx_pause_frame),
|
||||
EQOS_MMC_STAT(mmc_tx_vlan_frame_g),
|
||||
|
||||
/* MMC RX counters */
|
||||
EQOS_MMC_STAT(mmc_rx_framecount_gb),
|
||||
EQOS_MMC_STAT(mmc_rx_octetcount_gb),
|
||||
EQOS_MMC_STAT(mmc_rx_octetcount_g),
|
||||
EQOS_MMC_STAT(mmc_rx_broadcastframe_g),
|
||||
EQOS_MMC_STAT(mmc_rx_multicastframe_g),
|
||||
EQOS_MMC_STAT(mmc_rx_crc_error),
|
||||
EQOS_MMC_STAT(mmc_rx_align_error),
|
||||
EQOS_MMC_STAT(mmc_rx_runt_error),
|
||||
EQOS_MMC_STAT(mmc_rx_jabber_error),
|
||||
EQOS_MMC_STAT(mmc_rx_undersize_g),
|
||||
EQOS_MMC_STAT(mmc_rx_oversize_g),
|
||||
EQOS_MMC_STAT(mmc_rx_64_octets_gb),
|
||||
EQOS_MMC_STAT(mmc_rx_65_to_127_octets_gb),
|
||||
EQOS_MMC_STAT(mmc_rx_128_to_255_octets_gb),
|
||||
EQOS_MMC_STAT(mmc_rx_256_to_511_octets_gb),
|
||||
EQOS_MMC_STAT(mmc_rx_512_to_1023_octets_gb),
|
||||
EQOS_MMC_STAT(mmc_rx_1024_to_max_octets_gb),
|
||||
EQOS_MMC_STAT(mmc_rx_unicast_g),
|
||||
EQOS_MMC_STAT(mmc_rx_length_error),
|
||||
EQOS_MMC_STAT(mmc_rx_outofrangetype),
|
||||
EQOS_MMC_STAT(mmc_rx_pause_frames),
|
||||
EQOS_MMC_STAT(mmc_rx_fifo_overflow),
|
||||
EQOS_MMC_STAT(mmc_rx_vlan_frames_gb),
|
||||
EQOS_MMC_STAT(mmc_rx_watchdog_error),
|
||||
|
||||
/* IPv4 */
|
||||
EQOS_MMC_STAT(mmc_rx_ipv4_gd),
|
||||
EQOS_MMC_STAT(mmc_rx_ipv4_hderr),
|
||||
EQOS_MMC_STAT(mmc_rx_ipv4_nopay),
|
||||
EQOS_MMC_STAT(mmc_rx_ipv4_frag),
|
||||
EQOS_MMC_STAT(mmc_rx_ipv4_udsbl),
|
||||
|
||||
/* IPV6 */
|
||||
EQOS_MMC_STAT(mmc_rx_ipv6_gd_octets),
|
||||
EQOS_MMC_STAT(mmc_rx_ipv6_hderr_octets),
|
||||
EQOS_MMC_STAT(mmc_rx_ipv6_nopay_octets),
|
||||
|
||||
/* Protocols */
|
||||
EQOS_MMC_STAT(mmc_rx_udp_gd),
|
||||
EQOS_MMC_STAT(mmc_rx_udp_err),
|
||||
EQOS_MMC_STAT(mmc_rx_tcp_gd),
|
||||
EQOS_MMC_STAT(mmc_rx_tcp_err),
|
||||
EQOS_MMC_STAT(mmc_rx_icmp_gd),
|
||||
EQOS_MMC_STAT(mmc_rx_icmp_err),
|
||||
|
||||
/* IPv4 */
|
||||
EQOS_MMC_STAT(mmc_rx_ipv4_gd_octets),
|
||||
EQOS_MMC_STAT(mmc_rx_ipv4_hderr_octets),
|
||||
EQOS_MMC_STAT(mmc_rx_ipv4_nopay_octets),
|
||||
EQOS_MMC_STAT(mmc_rx_ipv4_frag_octets),
|
||||
EQOS_MMC_STAT(mmc_rx_ipv4_udsbl_octets),
|
||||
|
||||
/* IPV6 */
|
||||
EQOS_MMC_STAT(mmc_rx_ipv6_gd),
|
||||
EQOS_MMC_STAT(mmc_rx_ipv6_hderr),
|
||||
EQOS_MMC_STAT(mmc_rx_ipv6_nopay),
|
||||
|
||||
/* Protocols */
|
||||
EQOS_MMC_STAT(mmc_rx_udp_gd_octets),
|
||||
EQOS_MMC_STAT(mmc_rx_udp_err_octets),
|
||||
EQOS_MMC_STAT(mmc_rx_tcp_gd_octets),
|
||||
EQOS_MMC_STAT(mmc_rx_tcp_err_octets),
|
||||
EQOS_MMC_STAT(mmc_rx_icmp_gd_octets),
|
||||
EQOS_MMC_STAT(mmc_rx_icmp_err_octets),
|
||||
};
|
||||
|
||||
/**
|
||||
* ether_get_ethtool_stats: This function is invoked by kernel when user
|
||||
* requests to get the extended statistics about the device.
|
||||
*
|
||||
* @dev: pointer to net device structure.
|
||||
* @dummy: dummy parameter of ethtool_stats type.
|
||||
* @data: Pointer in which MMC statistics should be put.
|
||||
*
|
||||
* Algorithm: read mmc register and create sctrings
|
||||
*
|
||||
* Dependencies: Network device needs to created.
|
||||
*
|
||||
* Protection: None.
|
||||
*
|
||||
* Return: void
|
||||
*/
|
||||
static void ether_get_ethtool_stats(struct net_device *dev,
|
||||
struct ethtool_stats *dummy,
|
||||
u64 *data)
|
||||
{
|
||||
struct ether_priv_data *pdata = netdev_priv(dev);
|
||||
struct osi_core_priv_data *osi_core = pdata->osi_core;
|
||||
struct osi_dma_priv_data *osi_dma = pdata->osi_dma;
|
||||
int i, j = 0;
|
||||
int ret;
|
||||
|
||||
if (pdata->hw_feat.mmc_sel == 1U) {
|
||||
ret = osi_read_mmc(osi_core);
|
||||
if (ret == -1) {
|
||||
dev_err(pdata->dev, "Error in reading MMC counter\n");
|
||||
return;
|
||||
}
|
||||
|
||||
for (i = 0; i < EQOS_MMC_STATS_LEN; i++) {
|
||||
char *p = (char *)osi_core + eqos_mmc[i].stat_offset;
|
||||
|
||||
data[j++] = (eqos_mmc[i].sizeof_stat ==
|
||||
sizeof(u64)) ? (*(u64 *)p) :
|
||||
(*(u32 *)p);
|
||||
}
|
||||
|
||||
for (i = 0; i < EQOS_EXTRA_STAT_LEN; i++) {
|
||||
char *p = (char *)osi_core +
|
||||
eqos_gstrings_stats[i].stat_offset;
|
||||
|
||||
data[j++] = (eqos_gstrings_stats[i].sizeof_stat ==
|
||||
sizeof(u64)) ? (*(u64 *)p) : (*(u32 *)p);
|
||||
}
|
||||
|
||||
for (i = 0; i < EQOS_EXTRA_DMA_STAT_LEN; i++) {
|
||||
char *p = (char *)osi_dma +
|
||||
eqos_dstrings_stats[i].stat_offset;
|
||||
|
||||
data[j++] = (eqos_dstrings_stats[i].sizeof_stat ==
|
||||
sizeof(u64)) ? (*(u64 *)p) : (*(u32 *)p);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* ether_get_sset_count- This function gets number of strings that
|
||||
* @get_strings will write.
|
||||
*
|
||||
* @dev: Pointer to net device structure.
|
||||
* @sset: String set value.
|
||||
*
|
||||
* Algorithm: retrun number of strings.
|
||||
*
|
||||
* Dependencies: Network device needs to created.
|
||||
*
|
||||
* Protection: None.
|
||||
*
|
||||
* Return: Success- >0, failure - 0
|
||||
*/
|
||||
static int ether_get_sset_count(struct net_device *dev, int sset)
|
||||
{
|
||||
struct ether_priv_data *pdata = netdev_priv(dev);
|
||||
int len = 0;
|
||||
|
||||
if (sset == ETH_SS_STATS) {
|
||||
if (pdata->hw_feat.mmc_sel == OSI_ENABLE) {
|
||||
if (INT_MAX < EQOS_MMC_STATS_LEN) {
|
||||
/* do nothing*/
|
||||
} else {
|
||||
len = EQOS_MMC_STATS_LEN;
|
||||
}
|
||||
}
|
||||
if (INT_MAX - EQOS_EXTRA_STAT_LEN < len) {
|
||||
/* do nothing */
|
||||
} else {
|
||||
len += EQOS_EXTRA_STAT_LEN;
|
||||
}
|
||||
if (INT_MAX - EQOS_EXTRA_DMA_STAT_LEN < len) {
|
||||
/* do nothing */
|
||||
} else {
|
||||
len += EQOS_EXTRA_DMA_STAT_LEN;
|
||||
}
|
||||
} else {
|
||||
len = -EOPNOTSUPP;
|
||||
}
|
||||
|
||||
return len;
|
||||
}
|
||||
|
||||
/** ether_get_strings - This function returns a set of strings that describe
|
||||
* the requested objects.
|
||||
*
|
||||
* @dev: Pointer to net device structure.
|
||||
* @stringset: String set value.
|
||||
* @data: Pointer in which requested string should be put.
|
||||
*
|
||||
* Algorithm: retrun number of strings.
|
||||
*
|
||||
* Dependencies: Network device needs to created.
|
||||
*
|
||||
* Protection: None.
|
||||
*
|
||||
* Return: Success - >0, failure - 0
|
||||
*/
|
||||
static void ether_get_strings(struct net_device *dev, u32 stringset, u8 *data)
|
||||
{
|
||||
struct ether_priv_data *pdata = netdev_priv(dev);
|
||||
u8 *p = data;
|
||||
u8 *str;
|
||||
int i;
|
||||
|
||||
if (stringset == (u32)ETH_SS_STATS) {
|
||||
if (pdata->hw_feat.mmc_sel == OSI_ENABLE) {
|
||||
for (i = 0; i < EQOS_MMC_STATS_LEN; i++) {
|
||||
str = (u8 *)eqos_mmc[i].stat_string;
|
||||
if (memcpy(p, str, ETH_GSTRING_LEN) ==
|
||||
OSI_NULL) {
|
||||
return;
|
||||
}
|
||||
p += ETH_GSTRING_LEN;
|
||||
}
|
||||
|
||||
for (i = 0; i < EQOS_EXTRA_STAT_LEN; i++) {
|
||||
str = (u8 *)eqos_gstrings_stats[i].stat_string;
|
||||
if (memcpy(p, str, ETH_GSTRING_LEN) ==
|
||||
OSI_NULL) {
|
||||
return;
|
||||
}
|
||||
p += ETH_GSTRING_LEN;
|
||||
}
|
||||
for (i = 0; i < EQOS_EXTRA_DMA_STAT_LEN; i++) {
|
||||
str = (u8 *)eqos_dstrings_stats[i].stat_string;
|
||||
if (memcpy(p, str, ETH_GSTRING_LEN) ==
|
||||
OSI_NULL) {
|
||||
return;
|
||||
}
|
||||
p += ETH_GSTRING_LEN;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
dev_err(pdata->dev, "%s() Unsupported stringset\n", __func__);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* ether_get_pauseparam - Get pause frame settings
|
||||
* @ndev: network device instance
|
||||
@@ -141,7 +489,6 @@ static int ether_set_pauseparam(struct net_device *ndev,
|
||||
*
|
||||
* Return: Return can't be a -ve value.
|
||||
*/
|
||||
|
||||
static int ether_get_ts_info(struct net_device *net,
|
||||
struct ethtool_ts_info *info)
|
||||
{
|
||||
@@ -174,6 +521,9 @@ static const struct ethtool_ops ether_ethtool_ops = {
|
||||
.get_pauseparam = ether_get_pauseparam,
|
||||
.set_pauseparam = ether_set_pauseparam,
|
||||
.get_ts_info = ether_get_ts_info,
|
||||
.get_strings = ether_get_strings,
|
||||
.get_ethtool_stats = ether_get_ethtool_stats,
|
||||
.get_sset_count = ether_get_sset_count,
|
||||
};
|
||||
|
||||
/**
|
||||
|
||||
@@ -171,8 +171,10 @@ static void ether_realloc_rx_skb(struct ether_priv_data *pdata,
|
||||
unsigned int chan)
|
||||
{
|
||||
struct osi_dma_priv_data *osi_dma = pdata->osi_dma;
|
||||
struct osi_core_priv_data *osi_core = pdata->osi_core;
|
||||
struct osi_rx_swcx *rx_swcx = NULL;
|
||||
struct osi_rx_desc *rx_desc = NULL;
|
||||
unsigned long val;
|
||||
int ret = 0;
|
||||
|
||||
while (rx_ring->refill_idx != rx_ring->cur_rx_idx) {
|
||||
@@ -180,8 +182,12 @@ static void ether_realloc_rx_skb(struct ether_priv_data *pdata,
|
||||
rx_desc = rx_ring->rx_desc + rx_ring->refill_idx;
|
||||
|
||||
ret = ether_alloc_skb(pdata, rx_swcx, osi_dma->rx_buf_len);
|
||||
if (ret < 0)
|
||||
if (ret < 0) {
|
||||
val = osi_core->xstats.re_alloc_rxbuf_failed[chan];
|
||||
osi_core->xstats.re_alloc_rxbuf_failed[chan] =
|
||||
osi_update_stats_counter(val, 1UL);
|
||||
break;
|
||||
}
|
||||
|
||||
osi_rx_dma_desc_init(rx_swcx, rx_desc);
|
||||
INCR_RX_DESC_INDEX(rx_ring->refill_idx, 1U);
|
||||
@@ -225,6 +231,7 @@ void osd_receive_packet(void *priv, void *rxring, unsigned int chan,
|
||||
struct net_device *ndev = pdata->ndev;
|
||||
struct osi_pkt_err_stats *pkt_err_stat = &pdata->osi_dma->pkt_err_stats;
|
||||
struct skb_shared_hwtstamps *shhwtstamp;
|
||||
unsigned long val;
|
||||
|
||||
dma_unmap_single(pdata->dev, dma_addr, dma_buf_len, DMA_FROM_DEVICE);
|
||||
|
||||
@@ -240,6 +247,9 @@ void osd_receive_packet(void *priv, void *rxring, unsigned int chan,
|
||||
}
|
||||
|
||||
if ((rx_pkt_cx->flags & OSI_PKT_CX_VLAN) == OSI_PKT_CX_VLAN) {
|
||||
val = pdata->osi_dma->dstats.rx_vlan_pkt_n;
|
||||
pdata->osi_dma->dstats.rx_vlan_pkt_n =
|
||||
osi_update_stats_counter(val, 1UL);
|
||||
__vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
|
||||
rx_pkt_cx->vlan_tag);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user