2 * linux/drivers/net/ehea/ehea_ethtool.c
4 * eHEA ethernet device driver for IBM eServer System p
6 * (C) Copyright IBM Corp. 2006
9 * Christoph Raisch <raisch@de.ibm.com>
10 * Jan-Bernd Themann <themann@de.ibm.com>
11 * Thomas Klein <tklein@de.ibm.com>
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2, or (at your option)
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
30 #include "ehea_phyp.h"
32 static int ehea_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
34 struct ehea_port *port = netdev_priv(dev);
37 ret = ehea_sense_port_attr(port);
42 if (netif_carrier_ok(dev)) {
43 switch(port->port_speed) {
44 case EHEA_SPEED_10M: cmd->speed = SPEED_10; break;
45 case EHEA_SPEED_100M: cmd->speed = SPEED_100; break;
46 case EHEA_SPEED_1G: cmd->speed = SPEED_1000; break;
47 case EHEA_SPEED_10G: cmd->speed = SPEED_10000; break;
49 cmd->duplex = port->full_duplex == 1 ?
50 DUPLEX_FULL : DUPLEX_HALF;
56 cmd->supported = (SUPPORTED_10000baseT_Full | SUPPORTED_1000baseT_Full
57 | SUPPORTED_100baseT_Full | SUPPORTED_100baseT_Half
58 | SUPPORTED_10baseT_Full | SUPPORTED_10baseT_Half
59 | SUPPORTED_Autoneg | SUPPORTED_FIBRE);
61 cmd->advertising = (ADVERTISED_10000baseT_Full | ADVERTISED_Autoneg
64 cmd->port = PORT_FIBRE;
65 cmd->autoneg = port->autoneg == 1 ? AUTONEG_ENABLE : AUTONEG_DISABLE;
70 static int ehea_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
72 struct ehea_port *port = netdev_priv(dev);
76 if (cmd->autoneg == AUTONEG_ENABLE) {
77 sp = EHEA_SPEED_AUTONEG;
83 if (cmd->duplex == DUPLEX_FULL)
90 if (cmd->duplex == DUPLEX_FULL)
97 if (cmd->duplex == DUPLEX_FULL)
104 if (cmd->duplex == DUPLEX_FULL)
118 ret = ehea_set_portspeed(port, sp);
121 ehea_info("%s: Port speed succesfully set: %dMbps "
123 port->netdev->name, port->port_speed,
124 port->full_duplex == 1 ? "Full" : "Half");
129 static int ehea_nway_reset(struct net_device *dev)
131 struct ehea_port *port = netdev_priv(dev);
134 ret = ehea_set_portspeed(port, EHEA_SPEED_AUTONEG);
137 ehea_info("%s: Port speed succesfully set: %dMbps "
139 port->netdev->name, port->port_speed,
140 port->full_duplex == 1 ? "Full" : "Half");
144 static void ehea_get_drvinfo(struct net_device *dev,
145 struct ethtool_drvinfo *info)
147 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
148 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
151 static u32 ehea_get_msglevel(struct net_device *dev)
153 struct ehea_port *port = netdev_priv(dev);
154 return port->msg_enable;
157 static void ehea_set_msglevel(struct net_device *dev, u32 value)
159 struct ehea_port *port = netdev_priv(dev);
160 port->msg_enable = value;
163 static u32 ehea_get_rx_csum(struct net_device *dev)
168 static char ehea_ethtool_stats_keys[][ETH_GSTRING_LEN] = {
173 {"TCP cksum errors"},
175 {"Frame cksum errors"},
188 static void ehea_get_strings(struct net_device *dev, u32 stringset, u8 *data)
190 if (stringset == ETH_SS_STATS) {
191 memcpy(data, &ehea_ethtool_stats_keys,
192 sizeof(ehea_ethtool_stats_keys));
196 static int ehea_get_stats_count(struct net_device *dev)
198 return ARRAY_SIZE(ehea_ethtool_stats_keys);
201 static void ehea_get_ethtool_stats(struct net_device *dev,
202 struct ethtool_stats *stats, u64 *data)
205 struct ehea_port *port = netdev_priv(dev);
207 for (i = 0; i < ehea_get_stats_count(dev); i++)
211 data[i++] = port->sig_comp_iv;
212 data[i++] = port->port_res[0].swqe_refill_th;
213 data[i++] = port->resets;
215 for (k = 0, tmp = 0; k < EHEA_MAX_PORT_RES; k++)
216 tmp += port->port_res[k].p_stats.poll_receive_errors;
219 for (k = 0, tmp = 0; k < EHEA_MAX_PORT_RES; k++)
220 tmp += port->port_res[k].p_stats.err_tcp_cksum;
223 for (k = 0, tmp = 0; k < EHEA_MAX_PORT_RES; k++)
224 tmp += port->port_res[k].p_stats.err_ip_cksum;
227 for (k = 0, tmp = 0; k < EHEA_MAX_PORT_RES; k++)
228 tmp += port->port_res[k].p_stats.err_frame_crc;
231 for (k = 0, tmp = 0; k < EHEA_MAX_PORT_RES; k++)
232 tmp += port->port_res[k].p_stats.queue_stopped;
235 for (k = 0, tmp = 0; k < EHEA_MAX_PORT_RES; k++)
236 tmp |= port->port_res[k].queue_stopped;
239 for (k = 0; k < 8; k++)
240 data[i++] = atomic_read(&port->port_res[k].swqe_avail);
244 const struct ethtool_ops ehea_ethtool_ops = {
245 .get_settings = ehea_get_settings,
246 .get_drvinfo = ehea_get_drvinfo,
247 .get_msglevel = ehea_get_msglevel,
248 .set_msglevel = ehea_set_msglevel,
249 .get_link = ethtool_op_get_link,
250 .get_tx_csum = ethtool_op_get_tx_csum,
251 .get_sg = ethtool_op_get_sg,
252 .get_tso = ethtool_op_get_tso,
253 .set_tso = ethtool_op_set_tso,
254 .get_strings = ehea_get_strings,
255 .get_stats_count = ehea_get_stats_count,
256 .get_ethtool_stats = ehea_get_ethtool_stats,
257 .get_rx_csum = ehea_get_rx_csum,
258 .set_settings = ehea_set_settings,
259 .nway_reset = ehea_nway_reset, /* Restart autonegotiation */
262 void ehea_set_ethtool_ops(struct net_device *netdev)
264 SET_ETHTOOL_OPS(netdev, &ehea_ethtool_ops);