aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/mlx4/en_ethtool.c
diff options
context:
space:
mode:
authorYevgeny Petrilin <yevgenyp@mellanox.co.il>2009-06-01 19:21:20 -0400
committerDavid S. Miller <davem@davemloft.net>2009-06-02 05:29:04 -0400
commit9e47edaa1ae2efad7db0c8c7fb53e4431bb35364 (patch)
tree0b789564b959727b48404d5020b83c13033b6e19 /drivers/net/mlx4/en_ethtool.c
parenta2b28737a2c504ad4306eec30fc893e7f4513359 (diff)
mlx4_en renamed en_params.c to en_ethtool.c
Signed-off-by: Yevgeny Petrilin <yevgenyp@mellanox.co.il> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/mlx4/en_ethtool.c')
-rw-r--r--drivers/net/mlx4/en_ethtool.c427
1 files changed, 427 insertions, 0 deletions
diff --git a/drivers/net/mlx4/en_ethtool.c b/drivers/net/mlx4/en_ethtool.c
new file mode 100644
index 000000000000..91d81169e04e
--- /dev/null
+++ b/drivers/net/mlx4/en_ethtool.c
@@ -0,0 +1,427 @@
1/*
2 * Copyright (c) 2007 Mellanox Technologies. All rights reserved.
3 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 *
32 */
33
34#include <linux/kernel.h>
35#include <linux/ethtool.h>
36#include <linux/netdevice.h>
37
38#include "mlx4_en.h"
39#include "en_port.h"
40
41
42static void mlx4_en_update_lro_stats(struct mlx4_en_priv *priv)
43{
44 int i;
45
46 priv->port_stats.lro_aggregated = 0;
47 priv->port_stats.lro_flushed = 0;
48 priv->port_stats.lro_no_desc = 0;
49
50 for (i = 0; i < priv->rx_ring_num; i++) {
51 priv->port_stats.lro_aggregated += priv->rx_ring[i].lro.stats.aggregated;
52 priv->port_stats.lro_flushed += priv->rx_ring[i].lro.stats.flushed;
53 priv->port_stats.lro_no_desc += priv->rx_ring[i].lro.stats.no_desc;
54 }
55}
56
57static void
58mlx4_en_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *drvinfo)
59{
60 struct mlx4_en_priv *priv = netdev_priv(dev);
61 struct mlx4_en_dev *mdev = priv->mdev;
62
63 sprintf(drvinfo->driver, DRV_NAME " (%s)", mdev->dev->board_id);
64 strncpy(drvinfo->version, DRV_VERSION " (" DRV_RELDATE ")", 32);
65 sprintf(drvinfo->fw_version, "%d.%d.%d",
66 (u16) (mdev->dev->caps.fw_ver >> 32),
67 (u16) ((mdev->dev->caps.fw_ver >> 16) & 0xffff),
68 (u16) (mdev->dev->caps.fw_ver & 0xffff));
69 strncpy(drvinfo->bus_info, pci_name(mdev->dev->pdev), 32);
70 drvinfo->n_stats = 0;
71 drvinfo->regdump_len = 0;
72 drvinfo->eedump_len = 0;
73}
74
75static u32 mlx4_en_get_tso(struct net_device *dev)
76{
77 return (dev->features & NETIF_F_TSO) != 0;
78}
79
80static int mlx4_en_set_tso(struct net_device *dev, u32 data)
81{
82 struct mlx4_en_priv *priv = netdev_priv(dev);
83
84 if (data) {
85 if (!priv->mdev->LSO_support)
86 return -EPERM;
87 dev->features |= (NETIF_F_TSO | NETIF_F_TSO6);
88 } else
89 dev->features &= ~(NETIF_F_TSO | NETIF_F_TSO6);
90 return 0;
91}
92
93static u32 mlx4_en_get_rx_csum(struct net_device *dev)
94{
95 struct mlx4_en_priv *priv = netdev_priv(dev);
96 return priv->rx_csum;
97}
98
99static int mlx4_en_set_rx_csum(struct net_device *dev, u32 data)
100{
101 struct mlx4_en_priv *priv = netdev_priv(dev);
102 priv->rx_csum = (data != 0);
103 return 0;
104}
105
106static const char main_strings[][ETH_GSTRING_LEN] = {
107 "rx_packets", "tx_packets", "rx_bytes", "tx_bytes", "rx_errors",
108 "tx_errors", "rx_dropped", "tx_dropped", "multicast", "collisions",
109 "rx_length_errors", "rx_over_errors", "rx_crc_errors",
110 "rx_frame_errors", "rx_fifo_errors", "rx_missed_errors",
111 "tx_aborted_errors", "tx_carrier_errors", "tx_fifo_errors",
112 "tx_heartbeat_errors", "tx_window_errors",
113
114 /* port statistics */
115 "lro_aggregated", "lro_flushed", "lro_no_desc", "tso_packets",
116 "queue_stopped", "wake_queue", "tx_timeout", "rx_alloc_failed",
117 "rx_csum_good", "rx_csum_none", "tx_chksum_offload",
118
119 /* packet statistics */
120 "broadcast", "rx_prio_0", "rx_prio_1", "rx_prio_2", "rx_prio_3",
121 "rx_prio_4", "rx_prio_5", "rx_prio_6", "rx_prio_7", "tx_prio_0",
122 "tx_prio_1", "tx_prio_2", "tx_prio_3", "tx_prio_4", "tx_prio_5",
123 "tx_prio_6", "tx_prio_7",
124};
125#define NUM_MAIN_STATS 21
126#define NUM_ALL_STATS (NUM_MAIN_STATS + NUM_PORT_STATS + NUM_PKT_STATS + NUM_PERF_STATS)
127
128static u32 mlx4_en_get_msglevel(struct net_device *dev)
129{
130 return ((struct mlx4_en_priv *) netdev_priv(dev))->msg_enable;
131}
132
133static void mlx4_en_set_msglevel(struct net_device *dev, u32 val)
134{
135 ((struct mlx4_en_priv *) netdev_priv(dev))->msg_enable = val;
136}
137
138static void mlx4_en_get_wol(struct net_device *netdev,
139 struct ethtool_wolinfo *wol)
140{
141 wol->supported = 0;
142 wol->wolopts = 0;
143
144 return;
145}
146
147static int mlx4_en_get_sset_count(struct net_device *dev, int sset)
148{
149 struct mlx4_en_priv *priv = netdev_priv(dev);
150
151 if (sset != ETH_SS_STATS)
152 return -EOPNOTSUPP;
153
154 return NUM_ALL_STATS + (priv->tx_ring_num + priv->rx_ring_num) * 2;
155}
156
157static void mlx4_en_get_ethtool_stats(struct net_device *dev,
158 struct ethtool_stats *stats, uint64_t *data)
159{
160 struct mlx4_en_priv *priv = netdev_priv(dev);
161 int index = 0;
162 int i;
163
164 spin_lock_bh(&priv->stats_lock);
165
166 mlx4_en_update_lro_stats(priv);
167
168 for (i = 0; i < NUM_MAIN_STATS; i++)
169 data[index++] = ((unsigned long *) &priv->stats)[i];
170 for (i = 0; i < NUM_PORT_STATS; i++)
171 data[index++] = ((unsigned long *) &priv->port_stats)[i];
172 for (i = 0; i < priv->tx_ring_num; i++) {
173 data[index++] = priv->tx_ring[i].packets;
174 data[index++] = priv->tx_ring[i].bytes;
175 }
176 for (i = 0; i < priv->rx_ring_num; i++) {
177 data[index++] = priv->rx_ring[i].packets;
178 data[index++] = priv->rx_ring[i].bytes;
179 }
180 for (i = 0; i < NUM_PKT_STATS; i++)
181 data[index++] = ((unsigned long *) &priv->pkstats)[i];
182 spin_unlock_bh(&priv->stats_lock);
183
184}
185
186static void mlx4_en_get_strings(struct net_device *dev,
187 uint32_t stringset, uint8_t *data)
188{
189 struct mlx4_en_priv *priv = netdev_priv(dev);
190 int index = 0;
191 int i;
192
193 if (stringset != ETH_SS_STATS)
194 return;
195
196 /* Add main counters */
197 for (i = 0; i < NUM_MAIN_STATS; i++)
198 strcpy(data + (index++) * ETH_GSTRING_LEN, main_strings[i]);
199 for (i = 0; i < NUM_PORT_STATS; i++)
200 strcpy(data + (index++) * ETH_GSTRING_LEN,
201 main_strings[i + NUM_MAIN_STATS]);
202 for (i = 0; i < priv->tx_ring_num; i++) {
203 sprintf(data + (index++) * ETH_GSTRING_LEN,
204 "tx%d_packets", i);
205 sprintf(data + (index++) * ETH_GSTRING_LEN,
206 "tx%d_bytes", i);
207 }
208 for (i = 0; i < priv->rx_ring_num; i++) {
209 sprintf(data + (index++) * ETH_GSTRING_LEN,
210 "rx%d_packets", i);
211 sprintf(data + (index++) * ETH_GSTRING_LEN,
212 "rx%d_bytes", i);
213 }
214 for (i = 0; i < NUM_PKT_STATS; i++)
215 strcpy(data + (index++) * ETH_GSTRING_LEN,
216 main_strings[i + NUM_MAIN_STATS + NUM_PORT_STATS]);
217}
218
219static int mlx4_en_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
220{
221 cmd->autoneg = AUTONEG_DISABLE;
222 cmd->supported = SUPPORTED_10000baseT_Full;
223 cmd->advertising = SUPPORTED_10000baseT_Full;
224 if (netif_carrier_ok(dev)) {
225 cmd->speed = SPEED_10000;
226 cmd->duplex = DUPLEX_FULL;
227 } else {
228 cmd->speed = -1;
229 cmd->duplex = -1;
230 }
231 return 0;
232}
233
234static int mlx4_en_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
235{
236 if ((cmd->autoneg == AUTONEG_ENABLE) ||
237 (cmd->speed != SPEED_10000) || (cmd->duplex != DUPLEX_FULL))
238 return -EINVAL;
239
240 /* Nothing to change */
241 return 0;
242}
243
244static int mlx4_en_get_coalesce(struct net_device *dev,
245 struct ethtool_coalesce *coal)
246{
247 struct mlx4_en_priv *priv = netdev_priv(dev);
248
249 coal->tx_coalesce_usecs = 0;
250 coal->tx_max_coalesced_frames = 0;
251 coal->rx_coalesce_usecs = priv->rx_usecs;
252 coal->rx_max_coalesced_frames = priv->rx_frames;
253
254 coal->pkt_rate_low = priv->pkt_rate_low;
255 coal->rx_coalesce_usecs_low = priv->rx_usecs_low;
256 coal->pkt_rate_high = priv->pkt_rate_high;
257 coal->rx_coalesce_usecs_high = priv->rx_usecs_high;
258 coal->rate_sample_interval = priv->sample_interval;
259 coal->use_adaptive_rx_coalesce = priv->adaptive_rx_coal;
260 return 0;
261}
262
263static int mlx4_en_set_coalesce(struct net_device *dev,
264 struct ethtool_coalesce *coal)
265{
266 struct mlx4_en_priv *priv = netdev_priv(dev);
267 int err, i;
268
269 priv->rx_frames = (coal->rx_max_coalesced_frames ==
270 MLX4_EN_AUTO_CONF) ?
271 MLX4_EN_RX_COAL_TARGET /
272 priv->dev->mtu + 1 :
273 coal->rx_max_coalesced_frames;
274 priv->rx_usecs = (coal->rx_coalesce_usecs ==
275 MLX4_EN_AUTO_CONF) ?
276 MLX4_EN_RX_COAL_TIME :
277 coal->rx_coalesce_usecs;
278
279 /* Set adaptive coalescing params */
280 priv->pkt_rate_low = coal->pkt_rate_low;
281 priv->rx_usecs_low = coal->rx_coalesce_usecs_low;
282 priv->pkt_rate_high = coal->pkt_rate_high;
283 priv->rx_usecs_high = coal->rx_coalesce_usecs_high;
284 priv->sample_interval = coal->rate_sample_interval;
285 priv->adaptive_rx_coal = coal->use_adaptive_rx_coalesce;
286 priv->last_moder_time = MLX4_EN_AUTO_CONF;
287 if (priv->adaptive_rx_coal)
288 return 0;
289
290 for (i = 0; i < priv->rx_ring_num; i++) {
291 priv->rx_cq[i].moder_cnt = priv->rx_frames;
292 priv->rx_cq[i].moder_time = priv->rx_usecs;
293 err = mlx4_en_set_cq_moder(priv, &priv->rx_cq[i]);
294 if (err)
295 return err;
296 }
297 return 0;
298}
299
300static int mlx4_en_set_pauseparam(struct net_device *dev,
301 struct ethtool_pauseparam *pause)
302{
303 struct mlx4_en_priv *priv = netdev_priv(dev);
304 struct mlx4_en_dev *mdev = priv->mdev;
305 int err;
306
307 priv->prof->tx_pause = pause->tx_pause != 0;
308 priv->prof->rx_pause = pause->rx_pause != 0;
309 err = mlx4_SET_PORT_general(mdev->dev, priv->port,
310 priv->rx_skb_size + ETH_FCS_LEN,
311 priv->prof->tx_pause,
312 priv->prof->tx_ppp,
313 priv->prof->rx_pause,
314 priv->prof->rx_ppp);
315 if (err)
316 en_err(priv, "Failed setting pause params\n");
317
318 return err;
319}
320
321static void mlx4_en_get_pauseparam(struct net_device *dev,
322 struct ethtool_pauseparam *pause)
323{
324 struct mlx4_en_priv *priv = netdev_priv(dev);
325
326 pause->tx_pause = priv->prof->tx_pause;
327 pause->rx_pause = priv->prof->rx_pause;
328}
329
330static int mlx4_en_set_ringparam(struct net_device *dev,
331 struct ethtool_ringparam *param)
332{
333 struct mlx4_en_priv *priv = netdev_priv(dev);
334 struct mlx4_en_dev *mdev = priv->mdev;
335 u32 rx_size, tx_size;
336 int port_up = 0;
337 int err = 0;
338
339 if (param->rx_jumbo_pending || param->rx_mini_pending)
340 return -EINVAL;
341
342 rx_size = roundup_pow_of_two(param->rx_pending);
343 rx_size = max_t(u32, rx_size, MLX4_EN_MIN_RX_SIZE);
344 rx_size = min_t(u32, rx_size, MLX4_EN_MAX_RX_SIZE);
345 tx_size = roundup_pow_of_two(param->tx_pending);
346 tx_size = max_t(u32, tx_size, MLX4_EN_MIN_TX_SIZE);
347 tx_size = min_t(u32, tx_size, MLX4_EN_MAX_TX_SIZE);
348
349 if (rx_size == priv->prof->rx_ring_size &&
350 tx_size == priv->prof->tx_ring_size)
351 return 0;
352
353 mutex_lock(&mdev->state_lock);
354 if (priv->port_up) {
355 port_up = 1;
356 mlx4_en_stop_port(dev);
357 }
358
359 mlx4_en_free_resources(priv);
360
361 priv->prof->tx_ring_size = tx_size;
362 priv->prof->rx_ring_size = rx_size;
363
364 err = mlx4_en_alloc_resources(priv);
365 if (err) {
366 en_err(priv, "Failed reallocating port resources\n");
367 goto out;
368 }
369 if (port_up) {
370 err = mlx4_en_start_port(dev);
371 if (err)
372 en_err(priv, "Failed starting port\n");
373 }
374
375out:
376 mutex_unlock(&mdev->state_lock);
377 return err;
378}
379
380static void mlx4_en_get_ringparam(struct net_device *dev,
381 struct ethtool_ringparam *param)
382{
383 struct mlx4_en_priv *priv = netdev_priv(dev);
384 struct mlx4_en_dev *mdev = priv->mdev;
385
386 memset(param, 0, sizeof(*param));
387 param->rx_max_pending = MLX4_EN_MAX_RX_SIZE;
388 param->tx_max_pending = MLX4_EN_MAX_TX_SIZE;
389 param->rx_pending = mdev->profile.prof[priv->port].rx_ring_size;
390 param->tx_pending = mdev->profile.prof[priv->port].tx_ring_size;
391}
392
393const struct ethtool_ops mlx4_en_ethtool_ops = {
394 .get_drvinfo = mlx4_en_get_drvinfo,
395 .get_settings = mlx4_en_get_settings,
396 .set_settings = mlx4_en_set_settings,
397#ifdef NETIF_F_TSO
398 .get_tso = mlx4_en_get_tso,
399 .set_tso = mlx4_en_set_tso,
400#endif
401 .get_sg = ethtool_op_get_sg,
402 .set_sg = ethtool_op_set_sg,
403 .get_link = ethtool_op_get_link,
404 .get_rx_csum = mlx4_en_get_rx_csum,
405 .set_rx_csum = mlx4_en_set_rx_csum,
406 .get_tx_csum = ethtool_op_get_tx_csum,
407 .set_tx_csum = ethtool_op_set_tx_ipv6_csum,
408 .get_strings = mlx4_en_get_strings,
409 .get_sset_count = mlx4_en_get_sset_count,
410 .get_ethtool_stats = mlx4_en_get_ethtool_stats,
411 .get_wol = mlx4_en_get_wol,
412 .get_msglevel = mlx4_en_get_msglevel,
413 .set_msglevel = mlx4_en_set_msglevel,
414 .get_coalesce = mlx4_en_get_coalesce,
415 .set_coalesce = mlx4_en_set_coalesce,
416 .get_pauseparam = mlx4_en_get_pauseparam,
417 .set_pauseparam = mlx4_en_set_pauseparam,
418 .get_ringparam = mlx4_en_get_ringparam,
419 .set_ringparam = mlx4_en_set_ringparam,
420 .get_flags = ethtool_op_get_flags,
421 .set_flags = ethtool_op_set_flags,
422};
423
424
425
426
427