Lines Matching +full:0 +full:- +full:1023
1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2006-2008 PA Semi, Inc
19 { "rx-drops" },
20 { "rx-bytes" },
21 { "rx-packets" },
22 { "rx-broadcast-packets" },
23 { "rx-multicast-packets" },
24 { "rx-crc-errors" },
25 { "rx-undersize-errors" },
26 { "rx-oversize-errors" },
27 { "rx-short-fragment-errors" },
28 { "rx-jabber-errors" },
29 { "rx-64-byte-packets" },
30 { "rx-65-127-byte-packets" },
31 { "rx-128-255-byte-packets" },
32 { "rx-256-511-byte-packets" },
33 { "rx-512-1023-byte-packets" },
34 { "rx-1024-1518-byte-packets" },
35 { "rx-pause-frames" },
36 { "tx-bytes" },
37 { "tx-packets" },
38 { "tx-broadcast-packets" },
39 { "tx-multicast-packets" },
40 { "tx-collisions" },
41 { "tx-late-collisions" },
42 { "tx-excessive-collisions" },
43 { "tx-crc-errors" },
44 { "tx-undersize-errors" },
45 { "tx-oversize-errors" },
46 { "tx-64-byte-packets" },
47 { "tx-65-127-byte-packets" },
48 { "tx-128-255-byte-packets" },
49 { "tx-256-511-byte-packets" },
50 { "tx-512-1023-byte-packets" },
51 { "tx-1024-1518-byte-packets" },
58 return mac->msg_enable; in pasemi_mac_ethtool_get_msglevel()
66 mac->msg_enable = level; in pasemi_mac_ethtool_set_msglevel()
76 ering->tx_max_pending = TX_RING_SIZE/2; in pasemi_mac_ethtool_get_ringparam()
77 ering->tx_pending = RING_USED(mac->tx)/2; in pasemi_mac_ethtool_get_ringparam()
78 ering->rx_max_pending = RX_RING_SIZE/4; in pasemi_mac_ethtool_get_ringparam()
79 ering->rx_pending = RING_USED(mac->rx)/4; in pasemi_mac_ethtool_get_ringparam()
88 return -EOPNOTSUPP; in pasemi_mac_get_sset_count()
98 data[0] = pasemi_read_dma_reg(PAS_DMA_RXINT_RCMDSTA(mac->dma_if)) in pasemi_mac_get_ethtool_stats()
100 for (i = 0; i < 32; i++) in pasemi_mac_get_ethtool_stats()
101 data[1+i] = pasemi_read_mac_reg(mac->dma_if, PAS_MAC_RMON(i)); in pasemi_mac_get_ethtool_stats()