1 /* Ethtool support for Altera Triple-Speed Ethernet MAC driver
2 * Copyright (C) 2008-2014 Altera Corporation. All rights reserved
14 * Original driver contributed by SLS.
15 * Major updates contributed by GlobalLogic
17 * This program is free software; you can redistribute it and/or modify it
18 * under the terms and conditions of the GNU General Public License,
19 * version 2, as published by the Free Software Foundation.
21 * This program is distributed in the hope it will be useful, but WITHOUT
22 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
23 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
26 * You should have received a copy of the GNU General Public License along with
27 * this program. If not, see <http://www.gnu.org/licenses/>.
30 #include <linux/ethtool.h>
31 #include <linux/kernel.h>
32 #include <linux/netdevice.h>
33 #include <linux/phy.h>
35 #include "altera_tse.h"
37 #define TSE_STATS_LEN 31
38 #define TSE_NUM_REGS 128
40 static char const stat_gstrings
[][ETH_GSTRING_LEN
] = {
74 static void tse_get_drvinfo(struct net_device
*dev
,
75 struct ethtool_drvinfo
*info
)
77 struct altera_tse_private
*priv
= netdev_priv(dev
);
78 u32 rev
= ioread32(&priv
->mac_dev
->megacore_revision
);
80 strcpy(info
->driver
, "altera_tse");
81 strcpy(info
->version
, "v8.0");
82 snprintf(info
->fw_version
, ETHTOOL_FWVERS_LEN
, "v%d.%d",
83 rev
& 0xFFFF, (rev
& 0xFFFF0000) >> 16);
84 sprintf(info
->bus_info
, "platform");
87 /* Fill in a buffer with the strings which correspond to the
90 static void tse_gstrings(struct net_device
*dev
, u32 stringset
, u8
*buf
)
92 memcpy(buf
, stat_gstrings
, TSE_STATS_LEN
* ETH_GSTRING_LEN
);
95 static void tse_fill_stats(struct net_device
*dev
, struct ethtool_stats
*dummy
,
98 struct altera_tse_private
*priv
= netdev_priv(dev
);
101 buf
[0] = csrrd32(priv
->mac_dev
,
102 tse_csroffs(frames_transmitted_ok
));
103 buf
[1] = csrrd32(priv
->mac_dev
,
104 tse_csroffs(frames_received_ok
));
105 buf
[2] = csrrd32(priv
->mac_dev
,
106 tse_csroffs(frames_check_sequence_errors
));
107 buf
[3] = csrrd32(priv
->mac_dev
,
108 tse_csroffs(alignment_errors
));
110 /* Extended aOctetsTransmittedOK counter */
111 ext
= (u64
) csrrd32(priv
->mac_dev
,
112 tse_csroffs(msb_octets_transmitted_ok
)) << 32;
114 ext
|= csrrd32(priv
->mac_dev
,
115 tse_csroffs(octets_transmitted_ok
));
118 /* Extended aOctetsReceivedOK counter */
119 ext
= (u64
) csrrd32(priv
->mac_dev
,
120 tse_csroffs(msb_octets_received_ok
)) << 32;
122 ext
|= csrrd32(priv
->mac_dev
,
123 tse_csroffs(octets_received_ok
));
126 buf
[6] = csrrd32(priv
->mac_dev
,
127 tse_csroffs(tx_pause_mac_ctrl_frames
));
128 buf
[7] = csrrd32(priv
->mac_dev
,
129 tse_csroffs(rx_pause_mac_ctrl_frames
));
130 buf
[8] = csrrd32(priv
->mac_dev
,
131 tse_csroffs(if_in_errors
));
132 buf
[9] = csrrd32(priv
->mac_dev
,
133 tse_csroffs(if_out_errors
));
134 buf
[10] = csrrd32(priv
->mac_dev
,
135 tse_csroffs(if_in_ucast_pkts
));
136 buf
[11] = csrrd32(priv
->mac_dev
,
137 tse_csroffs(if_in_multicast_pkts
));
138 buf
[12] = csrrd32(priv
->mac_dev
,
139 tse_csroffs(if_in_broadcast_pkts
));
140 buf
[13] = csrrd32(priv
->mac_dev
,
141 tse_csroffs(if_out_discards
));
142 buf
[14] = csrrd32(priv
->mac_dev
,
143 tse_csroffs(if_out_ucast_pkts
));
144 buf
[15] = csrrd32(priv
->mac_dev
,
145 tse_csroffs(if_out_multicast_pkts
));
146 buf
[16] = csrrd32(priv
->mac_dev
,
147 tse_csroffs(if_out_broadcast_pkts
));
148 buf
[17] = csrrd32(priv
->mac_dev
,
149 tse_csroffs(ether_stats_drop_events
));
151 /* Extended etherStatsOctets counter */
152 ext
= (u64
) csrrd32(priv
->mac_dev
,
153 tse_csroffs(msb_ether_stats_octets
)) << 32;
154 ext
|= csrrd32(priv
->mac_dev
,
155 tse_csroffs(ether_stats_octets
));
158 buf
[19] = csrrd32(priv
->mac_dev
,
159 tse_csroffs(ether_stats_pkts
));
160 buf
[20] = csrrd32(priv
->mac_dev
,
161 tse_csroffs(ether_stats_undersize_pkts
));
162 buf
[21] = csrrd32(priv
->mac_dev
,
163 tse_csroffs(ether_stats_oversize_pkts
));
164 buf
[22] = csrrd32(priv
->mac_dev
,
165 tse_csroffs(ether_stats_pkts_64_octets
));
166 buf
[23] = csrrd32(priv
->mac_dev
,
167 tse_csroffs(ether_stats_pkts_65to127_octets
));
168 buf
[24] = csrrd32(priv
->mac_dev
,
169 tse_csroffs(ether_stats_pkts_128to255_octets
));
170 buf
[25] = csrrd32(priv
->mac_dev
,
171 tse_csroffs(ether_stats_pkts_256to511_octets
));
172 buf
[26] = csrrd32(priv
->mac_dev
,
173 tse_csroffs(ether_stats_pkts_512to1023_octets
));
174 buf
[27] = csrrd32(priv
->mac_dev
,
175 tse_csroffs(ether_stats_pkts_1024to1518_octets
));
176 buf
[28] = csrrd32(priv
->mac_dev
,
177 tse_csroffs(ether_stats_pkts_1519tox_octets
));
178 buf
[29] = csrrd32(priv
->mac_dev
,
179 tse_csroffs(ether_stats_jabbers
));
180 buf
[30] = csrrd32(priv
->mac_dev
,
181 tse_csroffs(ether_stats_fragments
));
184 static int tse_sset_count(struct net_device
*dev
, int sset
)
188 return TSE_STATS_LEN
;
194 static u32
tse_get_msglevel(struct net_device
*dev
)
196 struct altera_tse_private
*priv
= netdev_priv(dev
);
197 return priv
->msg_enable
;
200 static void tse_set_msglevel(struct net_device
*dev
, uint32_t data
)
202 struct altera_tse_private
*priv
= netdev_priv(dev
);
203 priv
->msg_enable
= data
;
206 static int tse_reglen(struct net_device
*dev
)
208 return TSE_NUM_REGS
* sizeof(u32
);
211 static void tse_get_regs(struct net_device
*dev
, struct ethtool_regs
*regs
,
215 struct altera_tse_private
*priv
= netdev_priv(dev
);
218 /* Set version to a known value, so ethtool knows
219 * how to do any special formatting of this data.
220 * This version number will need to change if and
221 * when this register table is changed.
223 * version[31:0] = 1: Dump the first 128 TSE Registers
224 * Upper bits are all 0 by default
226 * Upper 16-bits will indicate feature presence for
227 * Ethtool register decoding in future version.
232 for (i
= 0; i
< TSE_NUM_REGS
; i
++)
233 buf
[i
] = csrrd32(priv
->mac_dev
, i
* 4);
236 static const struct ethtool_ops tse_ethtool_ops
= {
237 .get_drvinfo
= tse_get_drvinfo
,
238 .get_regs_len
= tse_reglen
,
239 .get_regs
= tse_get_regs
,
240 .get_link
= ethtool_op_get_link
,
241 .get_strings
= tse_gstrings
,
242 .get_sset_count
= tse_sset_count
,
243 .get_ethtool_stats
= tse_fill_stats
,
244 .get_msglevel
= tse_get_msglevel
,
245 .set_msglevel
= tse_set_msglevel
,
246 .get_link_ksettings
= phy_ethtool_get_link_ksettings
,
247 .set_link_ksettings
= phy_ethtool_set_link_ksettings
,
250 void altera_tse_set_ethtool_ops(struct net_device
*netdev
)
252 netdev
->ethtool_ops
= &tse_ethtool_ops
;