net/mlx4_en: Do not allocate redundant TX queues when TC is disabled
[linux-2.6-block.git] / drivers / net / ethernet / mellanox / mlx4 / en_ethtool.c
CommitLineData
c27a02cd
YP
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>
af22d9de 37#include <linux/mlx4/driver.h>
7202da8b 38#include <linux/mlx4/device.h>
f90a3673
HHZ
39#include <linux/in.h>
40#include <net/ip.h>
6fcd2735 41#include <linux/bitmap.h>
c27a02cd
YP
42
43#include "mlx4_en.h"
44#include "en_port.h"
45
82067281 46#define EN_ETHTOOL_QP_ATTACH (1ull << 63)
82067281
HHZ
47#define EN_ETHTOOL_SHORT_MASK cpu_to_be16(0xffff)
48#define EN_ETHTOOL_WORD_MASK cpu_to_be32(0xffffffff)
c27a02cd 49
79c54b6b
AV
50static int mlx4_en_moderation_update(struct mlx4_en_priv *priv)
51{
67f8b1dc 52 int i, t;
79c54b6b
AV
53 int err = 0;
54
67f8b1dc
TT
55 for (t = 0 ; t < MLX4_EN_NUM_TX_TYPES; t++) {
56 for (i = 0; i < priv->tx_ring_num[t]; i++) {
57 priv->tx_cq[t][i]->moder_cnt = priv->tx_frames;
58 priv->tx_cq[t][i]->moder_time = priv->tx_usecs;
59 if (priv->port_up) {
60 err = mlx4_en_set_cq_moder(priv,
61 priv->tx_cq[t][i]);
62 if (err)
63 return err;
64 }
38463e2c 65 }
79c54b6b
AV
66 }
67
68 if (priv->adaptive_rx_coal)
69 return 0;
70
71 for (i = 0; i < priv->rx_ring_num; i++) {
41d942d5
EE
72 priv->rx_cq[i]->moder_cnt = priv->rx_frames;
73 priv->rx_cq[i]->moder_time = priv->rx_usecs;
79c54b6b 74 priv->last_moder_time[i] = MLX4_EN_AUTO_CONF;
38463e2c 75 if (priv->port_up) {
41d942d5 76 err = mlx4_en_set_cq_moder(priv, priv->rx_cq[i]);
38463e2c
EE
77 if (err)
78 return err;
79 }
79c54b6b
AV
80 }
81
82 return err;
83}
84
c27a02cd
YP
85static void
86mlx4_en_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *drvinfo)
87{
88 struct mlx4_en_priv *priv = netdev_priv(dev);
89 struct mlx4_en_dev *mdev = priv->mdev;
90
612a94d6 91 strlcpy(drvinfo->driver, DRV_NAME, sizeof(drvinfo->driver));
808df6a2 92 strlcpy(drvinfo->version, DRV_VERSION,
612a94d6
RJ
93 sizeof(drvinfo->version));
94 snprintf(drvinfo->fw_version, sizeof(drvinfo->fw_version),
95 "%d.%d.%d",
c27a02cd
YP
96 (u16) (mdev->dev->caps.fw_ver >> 32),
97 (u16) ((mdev->dev->caps.fw_ver >> 16) & 0xffff),
98 (u16) (mdev->dev->caps.fw_ver & 0xffff));
872bf2fb 99 strlcpy(drvinfo->bus_info, pci_name(mdev->dev->persist->pdev),
612a94d6 100 sizeof(drvinfo->bus_info));
c27a02cd
YP
101}
102
0fef9d03
AV
103static const char mlx4_en_priv_flags[][ETH_GSTRING_LEN] = {
104 "blueflame",
e38af4fa 105 "phv-bit"
0fef9d03
AV
106};
107
c27a02cd 108static const char main_strings[][ETH_GSTRING_LEN] = {
6fcd2735 109 /* main statistics */
c27a02cd
YP
110 "rx_packets", "tx_packets", "rx_bytes", "tx_bytes", "rx_errors",
111 "tx_errors", "rx_dropped", "tx_dropped", "multicast", "collisions",
112 "rx_length_errors", "rx_over_errors", "rx_crc_errors",
113 "rx_frame_errors", "rx_fifo_errors", "rx_missed_errors",
114 "tx_aborted_errors", "tx_carrier_errors", "tx_fifo_errors",
115 "tx_heartbeat_errors", "tx_window_errors",
116
117 /* port statistics */
fa37a958 118 "tso_packets",
9fab426d 119 "xmit_more",
7d7bfc6a 120 "queue_stopped", "wake_queue", "tx_timeout", "rx_alloc_pages",
f8c6455b 121 "rx_csum_good", "rx_csum_none", "rx_csum_complete", "tx_chksum_offload",
c27a02cd 122
b42de4d0
EBE
123 /* pf statistics */
124 "pf_rx_packets",
125 "pf_rx_bytes",
126 "pf_tx_packets",
127 "pf_tx_bytes",
128
0b131561
MB
129 /* priority flow control statistics rx */
130 "rx_pause_prio_0", "rx_pause_duration_prio_0",
131 "rx_pause_transition_prio_0",
132 "rx_pause_prio_1", "rx_pause_duration_prio_1",
133 "rx_pause_transition_prio_1",
134 "rx_pause_prio_2", "rx_pause_duration_prio_2",
135 "rx_pause_transition_prio_2",
136 "rx_pause_prio_3", "rx_pause_duration_prio_3",
137 "rx_pause_transition_prio_3",
138 "rx_pause_prio_4", "rx_pause_duration_prio_4",
139 "rx_pause_transition_prio_4",
140 "rx_pause_prio_5", "rx_pause_duration_prio_5",
141 "rx_pause_transition_prio_5",
142 "rx_pause_prio_6", "rx_pause_duration_prio_6",
143 "rx_pause_transition_prio_6",
144 "rx_pause_prio_7", "rx_pause_duration_prio_7",
145 "rx_pause_transition_prio_7",
146
147 /* flow control statistics rx */
148 "rx_pause", "rx_pause_duration", "rx_pause_transition",
149
150 /* priority flow control statistics tx */
151 "tx_pause_prio_0", "tx_pause_duration_prio_0",
152 "tx_pause_transition_prio_0",
153 "tx_pause_prio_1", "tx_pause_duration_prio_1",
154 "tx_pause_transition_prio_1",
155 "tx_pause_prio_2", "tx_pause_duration_prio_2",
156 "tx_pause_transition_prio_2",
157 "tx_pause_prio_3", "tx_pause_duration_prio_3",
158 "tx_pause_transition_prio_3",
159 "tx_pause_prio_4", "tx_pause_duration_prio_4",
160 "tx_pause_transition_prio_4",
161 "tx_pause_prio_5", "tx_pause_duration_prio_5",
162 "tx_pause_transition_prio_5",
163 "tx_pause_prio_6", "tx_pause_duration_prio_6",
164 "tx_pause_transition_prio_6",
165 "tx_pause_prio_7", "tx_pause_duration_prio_7",
166 "tx_pause_transition_prio_7",
167
168 /* flow control statistics tx */
169 "tx_pause", "tx_pause_duration", "tx_pause_transition",
170
c27a02cd 171 /* packet statistics */
a3333b35
EBE
172 "rx_multicast_packets",
173 "rx_broadcast_packets",
174 "rx_jabbers",
175 "rx_in_range_length_error",
176 "rx_out_range_length_error",
177 "tx_multicast_packets",
178 "tx_broadcast_packets",
179 "rx_prio_0_packets", "rx_prio_0_bytes",
180 "rx_prio_1_packets", "rx_prio_1_bytes",
181 "rx_prio_2_packets", "rx_prio_2_bytes",
182 "rx_prio_3_packets", "rx_prio_3_bytes",
183 "rx_prio_4_packets", "rx_prio_4_bytes",
184 "rx_prio_5_packets", "rx_prio_5_bytes",
185 "rx_prio_6_packets", "rx_prio_6_bytes",
186 "rx_prio_7_packets", "rx_prio_7_bytes",
187 "rx_novlan_packets", "rx_novlan_bytes",
188 "tx_prio_0_packets", "tx_prio_0_bytes",
189 "tx_prio_1_packets", "tx_prio_1_bytes",
190 "tx_prio_2_packets", "tx_prio_2_bytes",
191 "tx_prio_3_packets", "tx_prio_3_bytes",
192 "tx_prio_4_packets", "tx_prio_4_bytes",
193 "tx_prio_5_packets", "tx_prio_5_bytes",
194 "tx_prio_6_packets", "tx_prio_6_bytes",
195 "tx_prio_7_packets", "tx_prio_7_bytes",
196 "tx_novlan_packets", "tx_novlan_bytes",
197
15fca2c8
TT
198 /* xdp statistics */
199 "rx_xdp_drop",
200 "rx_xdp_tx",
201 "rx_xdp_tx_full",
c27a02cd 202};
c27a02cd 203
e7c1c2c4 204static const char mlx4_en_test_names[][ETH_GSTRING_LEN]= {
fd9071ec 205 "Interrupt Test",
e7c1c2c4
YP
206 "Link Test",
207 "Speed Test",
208 "Register Test",
209 "Loopback Test",
210};
211
c27a02cd
YP
212static u32 mlx4_en_get_msglevel(struct net_device *dev)
213{
214 return ((struct mlx4_en_priv *) netdev_priv(dev))->msg_enable;
215}
216
217static void mlx4_en_set_msglevel(struct net_device *dev, u32 val)
218{
219 ((struct mlx4_en_priv *) netdev_priv(dev))->msg_enable = val;
220}
221
222static void mlx4_en_get_wol(struct net_device *netdev,
223 struct ethtool_wolinfo *wol)
224{
14c07b13
YP
225 struct mlx4_en_priv *priv = netdev_priv(netdev);
226 int err = 0;
227 u64 config = 0;
559a9f1d 228 u64 mask;
14c07b13 229
559a9f1d
OD
230 if ((priv->port < 1) || (priv->port > 2)) {
231 en_err(priv, "Failed to get WoL information\n");
232 return;
233 }
234
235 mask = (priv->port == 1) ? MLX4_DEV_CAP_FLAG_WOL_PORT1 :
236 MLX4_DEV_CAP_FLAG_WOL_PORT2;
237
238 if (!(priv->mdev->dev->caps.flags & mask)) {
14c07b13
YP
239 wol->supported = 0;
240 wol->wolopts = 0;
241 return;
242 }
243
244 err = mlx4_wol_read(priv->mdev->dev, &config, priv->port);
245 if (err) {
246 en_err(priv, "Failed to get WoL information\n");
247 return;
248 }
249
250 if (config & MLX4_EN_WOL_MAGIC)
251 wol->supported = WAKE_MAGIC;
252 else
253 wol->supported = 0;
254
255 if (config & MLX4_EN_WOL_ENABLED)
256 wol->wolopts = WAKE_MAGIC;
257 else
258 wol->wolopts = 0;
259}
260
261static int mlx4_en_set_wol(struct net_device *netdev,
262 struct ethtool_wolinfo *wol)
263{
264 struct mlx4_en_priv *priv = netdev_priv(netdev);
265 u64 config = 0;
266 int err = 0;
559a9f1d
OD
267 u64 mask;
268
269 if ((priv->port < 1) || (priv->port > 2))
270 return -EOPNOTSUPP;
271
272 mask = (priv->port == 1) ? MLX4_DEV_CAP_FLAG_WOL_PORT1 :
273 MLX4_DEV_CAP_FLAG_WOL_PORT2;
14c07b13 274
559a9f1d 275 if (!(priv->mdev->dev->caps.flags & mask))
14c07b13
YP
276 return -EOPNOTSUPP;
277
278 if (wol->supported & ~WAKE_MAGIC)
279 return -EINVAL;
280
281 err = mlx4_wol_read(priv->mdev->dev, &config, priv->port);
282 if (err) {
283 en_err(priv, "Failed to get WoL info, unable to modify\n");
284 return err;
285 }
286
287 if (wol->wolopts & WAKE_MAGIC) {
288 config |= MLX4_EN_WOL_DO_MODIFY | MLX4_EN_WOL_ENABLED |
289 MLX4_EN_WOL_MAGIC;
290 } else {
291 config &= ~(MLX4_EN_WOL_ENABLED | MLX4_EN_WOL_MAGIC);
292 config |= MLX4_EN_WOL_DO_MODIFY;
293 }
294
295 err = mlx4_wol_write(priv->mdev->dev, config, priv->port);
296 if (err)
297 en_err(priv, "Failed to set WoL information\n");
298
299 return err;
c27a02cd
YP
300}
301
6fcd2735
EBE
302struct bitmap_iterator {
303 unsigned long *stats_bitmap;
304 unsigned int count;
305 unsigned int iterator;
306 bool advance_array; /* if set, force no increments */
307};
308
309static inline void bitmap_iterator_init(struct bitmap_iterator *h,
310 unsigned long *stats_bitmap,
311 int count)
312{
313 h->iterator = 0;
314 h->advance_array = !bitmap_empty(stats_bitmap, count);
315 h->count = h->advance_array ? bitmap_weight(stats_bitmap, count)
316 : count;
317 h->stats_bitmap = stats_bitmap;
318}
319
320static inline int bitmap_iterator_test(struct bitmap_iterator *h)
321{
322 return !h->advance_array ? 1 : test_bit(h->iterator, h->stats_bitmap);
323}
324
325static inline int bitmap_iterator_inc(struct bitmap_iterator *h)
326{
327 return h->iterator++;
328}
329
330static inline unsigned int
331bitmap_iterator_count(struct bitmap_iterator *h)
332{
333 return h->count;
334}
335
c27a02cd
YP
336static int mlx4_en_get_sset_count(struct net_device *dev, int sset)
337{
338 struct mlx4_en_priv *priv = netdev_priv(dev);
6fcd2735
EBE
339 struct bitmap_iterator it;
340
3da8a36c 341 bitmap_iterator_init(&it, priv->stats_bitmap.bitmap, NUM_ALL_STATS);
c27a02cd 342
e7c1c2c4
YP
343 switch (sset) {
344 case ETH_SS_STATS:
6fcd2735 345 return bitmap_iterator_count(&it) +
67f8b1dc 346 (priv->tx_ring_num[TX] * 2) +
15fca2c8 347 (priv->rx_ring_num * (3 + NUM_XDP_STATS));
e7c1c2c4 348 case ETH_SS_TEST:
ccf86321
OG
349 return MLX4_EN_NUM_SELF_TEST - !(priv->mdev->dev->caps.flags
350 & MLX4_DEV_CAP_FLAG_UC_LOOPBACK) * 2;
0fef9d03
AV
351 case ETH_SS_PRIV_FLAGS:
352 return ARRAY_SIZE(mlx4_en_priv_flags);
e7c1c2c4 353 default:
c27a02cd 354 return -EOPNOTSUPP;
e7c1c2c4 355 }
c27a02cd
YP
356}
357
358static void mlx4_en_get_ethtool_stats(struct net_device *dev,
359 struct ethtool_stats *stats, uint64_t *data)
360{
361 struct mlx4_en_priv *priv = netdev_priv(dev);
362 int index = 0;
6fcd2735
EBE
363 int i;
364 struct bitmap_iterator it;
365
3da8a36c 366 bitmap_iterator_init(&it, priv->stats_bitmap.bitmap, NUM_ALL_STATS);
c27a02cd
YP
367
368 spin_lock_bh(&priv->stats_lock);
369
40931b85
ED
370 mlx4_en_fold_software_stats(dev);
371
6fcd2735
EBE
372 for (i = 0; i < NUM_MAIN_STATS; i++, bitmap_iterator_inc(&it))
373 if (bitmap_iterator_test(&it))
f73a6f43 374 data[index++] = ((unsigned long *)&dev->stats)[i];
6fcd2735
EBE
375
376 for (i = 0; i < NUM_PORT_STATS; i++, bitmap_iterator_inc(&it))
377 if (bitmap_iterator_test(&it))
378 data[index++] = ((unsigned long *)&priv->port_stats)[i];
379
b42de4d0
EBE
380 for (i = 0; i < NUM_PF_STATS; i++, bitmap_iterator_inc(&it))
381 if (bitmap_iterator_test(&it))
382 data[index++] =
383 ((unsigned long *)&priv->pf_stats)[i];
384
0b131561
MB
385 for (i = 0; i < NUM_FLOW_PRIORITY_STATS_RX;
386 i++, bitmap_iterator_inc(&it))
387 if (bitmap_iterator_test(&it))
388 data[index++] =
389 ((u64 *)&priv->rx_priority_flowstats)[i];
390
391 for (i = 0; i < NUM_FLOW_STATS_RX; i++, bitmap_iterator_inc(&it))
392 if (bitmap_iterator_test(&it))
393 data[index++] = ((u64 *)&priv->rx_flowstats)[i];
394
395 for (i = 0; i < NUM_FLOW_PRIORITY_STATS_TX;
396 i++, bitmap_iterator_inc(&it))
397 if (bitmap_iterator_test(&it))
398 data[index++] =
399 ((u64 *)&priv->tx_priority_flowstats)[i];
400
401 for (i = 0; i < NUM_FLOW_STATS_TX; i++, bitmap_iterator_inc(&it))
402 if (bitmap_iterator_test(&it))
403 data[index++] = ((u64 *)&priv->tx_flowstats)[i];
404
6fcd2735
EBE
405 for (i = 0; i < NUM_PKT_STATS; i++, bitmap_iterator_inc(&it))
406 if (bitmap_iterator_test(&it))
407 data[index++] = ((unsigned long *)&priv->pkstats)[i];
408
15fca2c8
TT
409 for (i = 0; i < NUM_XDP_STATS; i++, bitmap_iterator_inc(&it))
410 if (bitmap_iterator_test(&it))
411 data[index++] = ((unsigned long *)&priv->xdp_stats)[i];
412
67f8b1dc
TT
413 for (i = 0; i < priv->tx_ring_num[TX]; i++) {
414 data[index++] = priv->tx_ring[TX][i]->packets;
415 data[index++] = priv->tx_ring[TX][i]->bytes;
c27a02cd
YP
416 }
417 for (i = 0; i < priv->rx_ring_num; i++) {
41d942d5
EE
418 data[index++] = priv->rx_ring[i]->packets;
419 data[index++] = priv->rx_ring[i]->bytes;
d21ed3a3 420 data[index++] = priv->rx_ring[i]->dropped;
15fca2c8
TT
421 data[index++] = priv->rx_ring[i]->xdp_drop;
422 data[index++] = priv->rx_ring[i]->xdp_tx;
423 data[index++] = priv->rx_ring[i]->xdp_tx_full;
c27a02cd 424 }
c27a02cd
YP
425 spin_unlock_bh(&priv->stats_lock);
426
427}
428
e7c1c2c4
YP
429static void mlx4_en_self_test(struct net_device *dev,
430 struct ethtool_test *etest, u64 *buf)
431{
432 mlx4_en_ex_selftest(dev, &etest->flags, buf);
433}
434
c27a02cd
YP
435static void mlx4_en_get_strings(struct net_device *dev,
436 uint32_t stringset, uint8_t *data)
437{
438 struct mlx4_en_priv *priv = netdev_priv(dev);
439 int index = 0;
6fcd2735
EBE
440 int i, strings = 0;
441 struct bitmap_iterator it;
442
3da8a36c 443 bitmap_iterator_init(&it, priv->stats_bitmap.bitmap, NUM_ALL_STATS);
c27a02cd 444
e7c1c2c4
YP
445 switch (stringset) {
446 case ETH_SS_TEST:
447 for (i = 0; i < MLX4_EN_NUM_SELF_TEST - 2; i++)
448 strcpy(data + i * ETH_GSTRING_LEN, mlx4_en_test_names[i]);
ccf86321 449 if (priv->mdev->dev->caps.flags & MLX4_DEV_CAP_FLAG_UC_LOOPBACK)
e7c1c2c4
YP
450 for (; i < MLX4_EN_NUM_SELF_TEST; i++)
451 strcpy(data + i * ETH_GSTRING_LEN, mlx4_en_test_names[i]);
452 break;
453
454 case ETH_SS_STATS:
455 /* Add main counters */
6fcd2735
EBE
456 for (i = 0; i < NUM_MAIN_STATS; i++, strings++,
457 bitmap_iterator_inc(&it))
458 if (bitmap_iterator_test(&it))
93ece0c1 459 strcpy(data + (index++) * ETH_GSTRING_LEN,
6fcd2735
EBE
460 main_strings[strings]);
461
462 for (i = 0; i < NUM_PORT_STATS; i++, strings++,
463 bitmap_iterator_inc(&it))
464 if (bitmap_iterator_test(&it))
93ece0c1 465 strcpy(data + (index++) * ETH_GSTRING_LEN,
6fcd2735 466 main_strings[strings]);
b42de4d0
EBE
467
468 for (i = 0; i < NUM_PF_STATS; i++, strings++,
469 bitmap_iterator_inc(&it))
470 if (bitmap_iterator_test(&it))
471 strcpy(data + (index++) * ETH_GSTRING_LEN,
472 main_strings[strings]);
6fcd2735 473
0b131561
MB
474 for (i = 0; i < NUM_FLOW_STATS; i++, strings++,
475 bitmap_iterator_inc(&it))
476 if (bitmap_iterator_test(&it))
477 strcpy(data + (index++) * ETH_GSTRING_LEN,
478 main_strings[strings]);
479
6fcd2735
EBE
480 for (i = 0; i < NUM_PKT_STATS; i++, strings++,
481 bitmap_iterator_inc(&it))
482 if (bitmap_iterator_test(&it))
93ece0c1 483 strcpy(data + (index++) * ETH_GSTRING_LEN,
6fcd2735
EBE
484 main_strings[strings]);
485
15fca2c8
TT
486 for (i = 0; i < NUM_XDP_STATS; i++, strings++,
487 bitmap_iterator_inc(&it))
488 if (bitmap_iterator_test(&it))
489 strcpy(data + (index++) * ETH_GSTRING_LEN,
490 main_strings[strings]);
491
67f8b1dc 492 for (i = 0; i < priv->tx_ring_num[TX]; i++) {
e7c1c2c4
YP
493 sprintf(data + (index++) * ETH_GSTRING_LEN,
494 "tx%d_packets", i);
495 sprintf(data + (index++) * ETH_GSTRING_LEN,
496 "tx%d_bytes", i);
497 }
498 for (i = 0; i < priv->rx_ring_num; i++) {
499 sprintf(data + (index++) * ETH_GSTRING_LEN,
500 "rx%d_packets", i);
501 sprintf(data + (index++) * ETH_GSTRING_LEN,
502 "rx%d_bytes", i);
d21ed3a3
EBE
503 sprintf(data + (index++) * ETH_GSTRING_LEN,
504 "rx%d_dropped", i);
15fca2c8
TT
505 sprintf(data + (index++) * ETH_GSTRING_LEN,
506 "rx%d_xdp_drop", i);
507 sprintf(data + (index++) * ETH_GSTRING_LEN,
508 "rx%d_xdp_tx", i);
509 sprintf(data + (index++) * ETH_GSTRING_LEN,
510 "rx%d_xdp_tx_full", i);
e7c1c2c4 511 }
e7c1c2c4 512 break;
0fef9d03
AV
513 case ETH_SS_PRIV_FLAGS:
514 for (i = 0; i < ARRAY_SIZE(mlx4_en_priv_flags); i++)
515 strcpy(data + i * ETH_GSTRING_LEN,
516 mlx4_en_priv_flags[i]);
517 break;
518
e7c1c2c4 519 }
c27a02cd
YP
520}
521
2c762679
SM
522static u32 mlx4_en_autoneg_get(struct net_device *dev)
523{
524 struct mlx4_en_priv *priv = netdev_priv(dev);
525 struct mlx4_en_dev *mdev = priv->mdev;
526 u32 autoneg = AUTONEG_DISABLE;
527
528 if ((mdev->dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_ETH_BACKPL_AN_REP) &&
529 (priv->port_state.flags & MLX4_EN_PORT_ANE))
530 autoneg = AUTONEG_ENABLE;
531
532 return autoneg;
533}
534
3d8f7cc7
DD
535static void ptys2ethtool_update_supported_port(unsigned long *mask,
536 struct mlx4_ptys_reg *ptys_reg)
2c762679
SM
537{
538 u32 eth_proto = be32_to_cpu(ptys_reg->eth_proto_cap);
539
540 if (eth_proto & (MLX4_PROT_MASK(MLX4_10GBASE_T)
541 | MLX4_PROT_MASK(MLX4_1000BASE_T)
542 | MLX4_PROT_MASK(MLX4_100BASE_TX))) {
3d8f7cc7
DD
543 __set_bit(ETHTOOL_LINK_MODE_TP_BIT, mask);
544 } else if (eth_proto & (MLX4_PROT_MASK(MLX4_10GBASE_CR)
2c762679
SM
545 | MLX4_PROT_MASK(MLX4_10GBASE_SR)
546 | MLX4_PROT_MASK(MLX4_56GBASE_SR4)
547 | MLX4_PROT_MASK(MLX4_40GBASE_CR4)
548 | MLX4_PROT_MASK(MLX4_40GBASE_SR4)
549 | MLX4_PROT_MASK(MLX4_1000BASE_CX_SGMII))) {
3d8f7cc7
DD
550 __set_bit(ETHTOOL_LINK_MODE_FIBRE_BIT, mask);
551 } else if (eth_proto & (MLX4_PROT_MASK(MLX4_56GBASE_KR4)
2c762679
SM
552 | MLX4_PROT_MASK(MLX4_40GBASE_KR4)
553 | MLX4_PROT_MASK(MLX4_20GBASE_KR2)
554 | MLX4_PROT_MASK(MLX4_10GBASE_KR)
555 | MLX4_PROT_MASK(MLX4_10GBASE_KX4)
556 | MLX4_PROT_MASK(MLX4_1000BASE_KX))) {
3d8f7cc7 557 __set_bit(ETHTOOL_LINK_MODE_Backplane_BIT, mask);
2c762679 558 }
2c762679
SM
559}
560
561static u32 ptys_get_active_port(struct mlx4_ptys_reg *ptys_reg)
562{
563 u32 eth_proto = be32_to_cpu(ptys_reg->eth_proto_oper);
564
565 if (!eth_proto) /* link down */
566 eth_proto = be32_to_cpu(ptys_reg->eth_proto_cap);
567
568 if (eth_proto & (MLX4_PROT_MASK(MLX4_10GBASE_T)
569 | MLX4_PROT_MASK(MLX4_1000BASE_T)
570 | MLX4_PROT_MASK(MLX4_100BASE_TX))) {
571 return PORT_TP;
572 }
573
574 if (eth_proto & (MLX4_PROT_MASK(MLX4_10GBASE_SR)
575 | MLX4_PROT_MASK(MLX4_56GBASE_SR4)
576 | MLX4_PROT_MASK(MLX4_40GBASE_SR4)
577 | MLX4_PROT_MASK(MLX4_1000BASE_CX_SGMII))) {
578 return PORT_FIBRE;
579 }
580
581 if (eth_proto & (MLX4_PROT_MASK(MLX4_10GBASE_CR)
582 | MLX4_PROT_MASK(MLX4_56GBASE_CR4)
583 | MLX4_PROT_MASK(MLX4_40GBASE_CR4))) {
584 return PORT_DA;
585 }
586
587 if (eth_proto & (MLX4_PROT_MASK(MLX4_56GBASE_KR4)
588 | MLX4_PROT_MASK(MLX4_40GBASE_KR4)
589 | MLX4_PROT_MASK(MLX4_20GBASE_KR2)
590 | MLX4_PROT_MASK(MLX4_10GBASE_KR)
591 | MLX4_PROT_MASK(MLX4_10GBASE_KX4)
592 | MLX4_PROT_MASK(MLX4_1000BASE_KX))) {
593 return PORT_NONE;
594 }
595 return PORT_OTHER;
596}
597
598#define MLX4_LINK_MODES_SZ \
599 (FIELD_SIZEOF(struct mlx4_ptys_reg, eth_proto_cap) * 8)
600
601enum ethtool_report {
602 SUPPORTED = 0,
603 ADVERTISED = 1,
2c762679
SM
604};
605
3d8f7cc7
DD
606struct ptys2ethtool_config {
607 __ETHTOOL_DECLARE_LINK_MODE_MASK(supported);
608 __ETHTOOL_DECLARE_LINK_MODE_MASK(advertised);
609 u32 speed;
610};
611
612static unsigned long *ptys2ethtool_link_mode(struct ptys2ethtool_config *cfg,
613 enum ethtool_report report)
614{
615 switch (report) {
616 case SUPPORTED:
617 return cfg->supported;
618 case ADVERTISED:
619 return cfg->advertised;
620 }
621 return NULL;
622}
623
624#define MLX4_BUILD_PTYS2ETHTOOL_CONFIG(reg_, speed_, ...) \
625 ({ \
626 struct ptys2ethtool_config *cfg; \
627 const unsigned int modes[] = { __VA_ARGS__ }; \
628 unsigned int i; \
629 cfg = &ptys2ethtool_map[reg_]; \
630 cfg->speed = speed_; \
631 bitmap_zero(cfg->supported, \
632 __ETHTOOL_LINK_MODE_MASK_NBITS); \
633 bitmap_zero(cfg->advertised, \
634 __ETHTOOL_LINK_MODE_MASK_NBITS); \
635 for (i = 0 ; i < ARRAY_SIZE(modes) ; ++i) { \
636 __set_bit(modes[i], cfg->supported); \
637 __set_bit(modes[i], cfg->advertised); \
638 } \
639 })
640
2c762679 641/* Translates mlx4 link mode to equivalent ethtool Link modes/speed */
3d8f7cc7
DD
642static struct ptys2ethtool_config ptys2ethtool_map[MLX4_LINK_MODES_SZ];
643
644void __init mlx4_en_init_ptys2ethtool_map(void)
645{
646 MLX4_BUILD_PTYS2ETHTOOL_CONFIG(MLX4_100BASE_TX, SPEED_100,
647 ETHTOOL_LINK_MODE_100baseT_Full_BIT);
648 MLX4_BUILD_PTYS2ETHTOOL_CONFIG(MLX4_1000BASE_T, SPEED_1000,
649 ETHTOOL_LINK_MODE_1000baseT_Full_BIT);
650 MLX4_BUILD_PTYS2ETHTOOL_CONFIG(MLX4_1000BASE_CX_SGMII, SPEED_1000,
651 ETHTOOL_LINK_MODE_1000baseKX_Full_BIT);
652 MLX4_BUILD_PTYS2ETHTOOL_CONFIG(MLX4_1000BASE_KX, SPEED_1000,
653 ETHTOOL_LINK_MODE_1000baseKX_Full_BIT);
654 MLX4_BUILD_PTYS2ETHTOOL_CONFIG(MLX4_10GBASE_T, SPEED_10000,
655 ETHTOOL_LINK_MODE_10000baseT_Full_BIT);
656 MLX4_BUILD_PTYS2ETHTOOL_CONFIG(MLX4_10GBASE_CX4, SPEED_10000,
657 ETHTOOL_LINK_MODE_10000baseKX4_Full_BIT);
658 MLX4_BUILD_PTYS2ETHTOOL_CONFIG(MLX4_10GBASE_KX4, SPEED_10000,
659 ETHTOOL_LINK_MODE_10000baseKX4_Full_BIT);
660 MLX4_BUILD_PTYS2ETHTOOL_CONFIG(MLX4_10GBASE_KR, SPEED_10000,
661 ETHTOOL_LINK_MODE_10000baseKR_Full_BIT);
662 MLX4_BUILD_PTYS2ETHTOOL_CONFIG(MLX4_10GBASE_CR, SPEED_10000,
663 ETHTOOL_LINK_MODE_10000baseKR_Full_BIT);
664 MLX4_BUILD_PTYS2ETHTOOL_CONFIG(MLX4_10GBASE_SR, SPEED_10000,
665 ETHTOOL_LINK_MODE_10000baseKR_Full_BIT);
666 MLX4_BUILD_PTYS2ETHTOOL_CONFIG(MLX4_20GBASE_KR2, SPEED_20000,
667 ETHTOOL_LINK_MODE_20000baseMLD2_Full_BIT,
668 ETHTOOL_LINK_MODE_20000baseKR2_Full_BIT);
669 MLX4_BUILD_PTYS2ETHTOOL_CONFIG(MLX4_40GBASE_CR4, SPEED_40000,
670 ETHTOOL_LINK_MODE_40000baseCR4_Full_BIT);
671 MLX4_BUILD_PTYS2ETHTOOL_CONFIG(MLX4_40GBASE_KR4, SPEED_40000,
672 ETHTOOL_LINK_MODE_40000baseKR4_Full_BIT);
673 MLX4_BUILD_PTYS2ETHTOOL_CONFIG(MLX4_40GBASE_SR4, SPEED_40000,
674 ETHTOOL_LINK_MODE_40000baseSR4_Full_BIT);
675 MLX4_BUILD_PTYS2ETHTOOL_CONFIG(MLX4_56GBASE_KR4, SPEED_56000,
676 ETHTOOL_LINK_MODE_56000baseKR4_Full_BIT);
677 MLX4_BUILD_PTYS2ETHTOOL_CONFIG(MLX4_56GBASE_CR4, SPEED_56000,
678 ETHTOOL_LINK_MODE_56000baseCR4_Full_BIT);
679 MLX4_BUILD_PTYS2ETHTOOL_CONFIG(MLX4_56GBASE_SR4, SPEED_56000,
680 ETHTOOL_LINK_MODE_56000baseSR4_Full_BIT);
2c762679
SM
681};
682
3d8f7cc7
DD
683static void ptys2ethtool_update_link_modes(unsigned long *link_modes,
684 u32 eth_proto,
685 enum ethtool_report report)
2c762679
SM
686{
687 int i;
2c762679
SM
688 for (i = 0; i < MLX4_LINK_MODES_SZ; i++) {
689 if (eth_proto & MLX4_PROT_MASK(i))
3d8f7cc7
DD
690 bitmap_or(link_modes, link_modes,
691 ptys2ethtool_link_mode(&ptys2ethtool_map[i],
692 report),
693 __ETHTOOL_LINK_MODE_MASK_NBITS);
2c762679 694 }
2c762679
SM
695}
696
3d8f7cc7
DD
697static u32 ethtool2ptys_link_modes(const unsigned long *link_modes,
698 enum ethtool_report report)
d48b3ab4
SM
699{
700 int i;
701 u32 ptys_modes = 0;
702
703 for (i = 0; i < MLX4_LINK_MODES_SZ; i++) {
3d8f7cc7
DD
704 if (bitmap_intersects(
705 ptys2ethtool_link_mode(&ptys2ethtool_map[i],
706 report),
707 link_modes,
708 __ETHTOOL_LINK_MODE_MASK_NBITS))
d48b3ab4
SM
709 ptys_modes |= 1 << i;
710 }
711 return ptys_modes;
712}
713
714/* Convert actual speed (SPEED_XXX) to ptys link modes */
715static u32 speed2ptys_link_modes(u32 speed)
716{
717 int i;
718 u32 ptys_modes = 0;
719
720 for (i = 0; i < MLX4_LINK_MODES_SZ; i++) {
3d8f7cc7 721 if (ptys2ethtool_map[i].speed == speed)
d48b3ab4
SM
722 ptys_modes |= 1 << i;
723 }
724 return ptys_modes;
725}
726
3d8f7cc7
DD
727static int
728ethtool_get_ptys_link_ksettings(struct net_device *dev,
729 struct ethtool_link_ksettings *link_ksettings)
2c762679
SM
730{
731 struct mlx4_en_priv *priv = netdev_priv(dev);
732 struct mlx4_ptys_reg ptys_reg;
733 u32 eth_proto;
734 int ret;
735
736 memset(&ptys_reg, 0, sizeof(ptys_reg));
737 ptys_reg.local_port = priv->port;
738 ptys_reg.proto_mask = MLX4_PTYS_EN;
739 ret = mlx4_ACCESS_PTYS_REG(priv->mdev->dev,
740 MLX4_ACCESS_REG_QUERY, &ptys_reg);
741 if (ret) {
742 en_warn(priv, "Failed to run mlx4_ACCESS_PTYS_REG status(%x)",
743 ret);
744 return ret;
745 }
746 en_dbg(DRV, priv, "ptys_reg.proto_mask %x\n",
747 ptys_reg.proto_mask);
748 en_dbg(DRV, priv, "ptys_reg.eth_proto_cap %x\n",
749 be32_to_cpu(ptys_reg.eth_proto_cap));
750 en_dbg(DRV, priv, "ptys_reg.eth_proto_admin %x\n",
751 be32_to_cpu(ptys_reg.eth_proto_admin));
752 en_dbg(DRV, priv, "ptys_reg.eth_proto_oper %x\n",
753 be32_to_cpu(ptys_reg.eth_proto_oper));
754 en_dbg(DRV, priv, "ptys_reg.eth_proto_lp_adv %x\n",
755 be32_to_cpu(ptys_reg.eth_proto_lp_adv));
756
3d8f7cc7
DD
757 /* reset supported/advertising masks */
758 ethtool_link_ksettings_zero_link_mode(link_ksettings, supported);
759 ethtool_link_ksettings_zero_link_mode(link_ksettings, advertising);
2c762679 760
3d8f7cc7
DD
761 ptys2ethtool_update_supported_port(link_ksettings->link_modes.supported,
762 &ptys_reg);
2c762679
SM
763
764 eth_proto = be32_to_cpu(ptys_reg.eth_proto_cap);
3d8f7cc7
DD
765 ptys2ethtool_update_link_modes(link_ksettings->link_modes.supported,
766 eth_proto, SUPPORTED);
2c762679
SM
767
768 eth_proto = be32_to_cpu(ptys_reg.eth_proto_admin);
3d8f7cc7
DD
769 ptys2ethtool_update_link_modes(link_ksettings->link_modes.advertising,
770 eth_proto, ADVERTISED);
2c762679 771
3d8f7cc7
DD
772 ethtool_link_ksettings_add_link_mode(link_ksettings, supported,
773 Pause);
774 ethtool_link_ksettings_add_link_mode(link_ksettings, supported,
775 Asym_Pause);
2c762679 776
3d8f7cc7
DD
777 if (priv->prof->tx_pause)
778 ethtool_link_ksettings_add_link_mode(link_ksettings,
779 advertising, Pause);
780 if (priv->prof->tx_pause ^ priv->prof->rx_pause)
781 ethtool_link_ksettings_add_link_mode(link_ksettings,
782 advertising, Asym_Pause);
2c762679 783
3d8f7cc7 784 link_ksettings->base.port = ptys_get_active_port(&ptys_reg);
2c762679
SM
785
786 if (mlx4_en_autoneg_get(dev)) {
3d8f7cc7
DD
787 ethtool_link_ksettings_add_link_mode(link_ksettings,
788 supported, Autoneg);
789 ethtool_link_ksettings_add_link_mode(link_ksettings,
790 advertising, Autoneg);
2c762679
SM
791 }
792
3d8f7cc7
DD
793 link_ksettings->base.autoneg
794 = (priv->port_state.flags & MLX4_EN_PORT_ANC) ?
2c762679
SM
795 AUTONEG_ENABLE : AUTONEG_DISABLE;
796
797 eth_proto = be32_to_cpu(ptys_reg.eth_proto_lp_adv);
2c762679 798
3d8f7cc7
DD
799 ethtool_link_ksettings_zero_link_mode(link_ksettings, lp_advertising);
800 ptys2ethtool_update_link_modes(
801 link_ksettings->link_modes.lp_advertising,
802 eth_proto, ADVERTISED);
803 if (priv->port_state.flags & MLX4_EN_PORT_ANC)
804 ethtool_link_ksettings_add_link_mode(link_ksettings,
805 lp_advertising, Autoneg);
2c762679 806
3d8f7cc7
DD
807 link_ksettings->base.phy_address = 0;
808 link_ksettings->base.mdio_support = 0;
809 link_ksettings->base.eth_tp_mdix = ETH_TP_MDI_INVALID;
810 link_ksettings->base.eth_tp_mdix_ctrl = ETH_TP_MDI_AUTO;
2c762679
SM
811
812 return ret;
813}
814
3d8f7cc7
DD
815static void
816ethtool_get_default_link_ksettings(
817 struct net_device *dev, struct ethtool_link_ksettings *link_ksettings)
c27a02cd 818{
7699517d
YP
819 struct mlx4_en_priv *priv = netdev_priv(dev);
820 int trans_type;
821
3d8f7cc7
DD
822 link_ksettings->base.autoneg = AUTONEG_DISABLE;
823
824 ethtool_link_ksettings_zero_link_mode(link_ksettings, supported);
825 ethtool_link_ksettings_add_link_mode(link_ksettings, supported,
826 10000baseT_Full);
7699517d 827
3d8f7cc7
DD
828 ethtool_link_ksettings_zero_link_mode(link_ksettings, advertising);
829 ethtool_link_ksettings_add_link_mode(link_ksettings, advertising,
830 10000baseT_Full);
831
832 trans_type = priv->port_state.transceiver;
7699517d 833 if (trans_type > 0 && trans_type <= 0xC) {
3d8f7cc7
DD
834 link_ksettings->base.port = PORT_FIBRE;
835 ethtool_link_ksettings_add_link_mode(link_ksettings,
836 supported, FIBRE);
837 ethtool_link_ksettings_add_link_mode(link_ksettings,
838 advertising, FIBRE);
7699517d 839 } else if (trans_type == 0x80 || trans_type == 0) {
3d8f7cc7
DD
840 link_ksettings->base.port = PORT_TP;
841 ethtool_link_ksettings_add_link_mode(link_ksettings,
842 supported, TP);
843 ethtool_link_ksettings_add_link_mode(link_ksettings,
844 advertising, TP);
7699517d 845 } else {
3d8f7cc7 846 link_ksettings->base.port = -1;
7699517d 847 }
2c762679
SM
848}
849
3d8f7cc7
DD
850static int
851mlx4_en_get_link_ksettings(struct net_device *dev,
852 struct ethtool_link_ksettings *link_ksettings)
2c762679
SM
853{
854 struct mlx4_en_priv *priv = netdev_priv(dev);
855 int ret = -EINVAL;
856
857 if (mlx4_en_QUERY_PORT(priv->mdev, priv->port))
858 return -ENOMEM;
859
860 en_dbg(DRV, priv, "query port state.flags ANC(%x) ANE(%x)\n",
861 priv->port_state.flags & MLX4_EN_PORT_ANC,
862 priv->port_state.flags & MLX4_EN_PORT_ANE);
863
864 if (priv->mdev->dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_ETH_PROT_CTRL)
3d8f7cc7 865 ret = ethtool_get_ptys_link_ksettings(dev, link_ksettings);
2c762679 866 if (ret) /* ETH PROT CRTL is not supported or PTYS CMD failed */
3d8f7cc7 867 ethtool_get_default_link_ksettings(dev, link_ksettings);
2c762679
SM
868
869 if (netif_carrier_ok(dev)) {
3d8f7cc7
DD
870 link_ksettings->base.speed = priv->port_state.link_speed;
871 link_ksettings->base.duplex = DUPLEX_FULL;
2c762679 872 } else {
3d8f7cc7
DD
873 link_ksettings->base.speed = SPEED_UNKNOWN;
874 link_ksettings->base.duplex = DUPLEX_UNKNOWN;
2c762679 875 }
c27a02cd
YP
876 return 0;
877}
878
d48b3ab4
SM
879/* Calculate PTYS admin according ethtool speed (SPEED_XXX) */
880static __be32 speed_set_ptys_admin(struct mlx4_en_priv *priv, u32 speed,
881 __be32 proto_cap)
882{
883 __be32 proto_admin = 0;
884
885 if (!speed) { /* Speed = 0 ==> Reset Link modes */
886 proto_admin = proto_cap;
887 en_info(priv, "Speed was set to 0, Reset advertised Link Modes to default (%x)\n",
888 be32_to_cpu(proto_cap));
889 } else {
890 u32 ptys_link_modes = speed2ptys_link_modes(speed);
891
892 proto_admin = cpu_to_be32(ptys_link_modes) & proto_cap;
893 en_info(priv, "Setting Speed to %d\n", speed);
894 }
895 return proto_admin;
896}
897
3d8f7cc7
DD
898static int
899mlx4_en_set_link_ksettings(struct net_device *dev,
900 const struct ethtool_link_ksettings *link_ksettings)
c27a02cd 901{
d48b3ab4
SM
902 struct mlx4_en_priv *priv = netdev_priv(dev);
903 struct mlx4_ptys_reg ptys_reg;
904 __be32 proto_admin;
297e1cf2 905 u8 cur_autoneg;
d48b3ab4
SM
906 int ret;
907
3d8f7cc7
DD
908 u32 ptys_adv = ethtool2ptys_link_modes(
909 link_ksettings->link_modes.advertising, ADVERTISED);
910 const int speed = link_ksettings->base.speed;
d48b3ab4 911
3d8f7cc7
DD
912 en_dbg(DRV, priv,
913 "Set Speed=%d adv={%*pbl} autoneg=%d duplex=%d\n",
914 speed, __ETHTOOL_LINK_MODE_MASK_NBITS,
915 link_ksettings->link_modes.advertising,
916 link_ksettings->base.autoneg,
917 link_ksettings->base.duplex);
d48b3ab4 918
3d8f7cc7
DD
919 if (!(priv->mdev->dev->caps.flags2 &
920 MLX4_DEV_CAP_FLAG2_ETH_PROT_CTRL) ||
921 (link_ksettings->base.duplex == DUPLEX_HALF))
c27a02cd
YP
922 return -EINVAL;
923
d48b3ab4
SM
924 memset(&ptys_reg, 0, sizeof(ptys_reg));
925 ptys_reg.local_port = priv->port;
926 ptys_reg.proto_mask = MLX4_PTYS_EN;
927 ret = mlx4_ACCESS_PTYS_REG(priv->mdev->dev,
928 MLX4_ACCESS_REG_QUERY, &ptys_reg);
929 if (ret) {
930 en_warn(priv, "Failed to QUERY mlx4_ACCESS_PTYS_REG status(%x)\n",
931 ret);
932 return 0;
933 }
934
297e1cf2
AL
935 cur_autoneg = ptys_reg.flags & MLX4_PTYS_AN_DISABLE_ADMIN ?
936 AUTONEG_DISABLE : AUTONEG_ENABLE;
937
938 if (link_ksettings->base.autoneg == AUTONEG_DISABLE) {
939 proto_admin = speed_set_ptys_admin(priv, speed,
940 ptys_reg.eth_proto_cap);
941 if ((be32_to_cpu(proto_admin) &
942 (MLX4_PROT_MASK(MLX4_1000BASE_CX_SGMII) |
943 MLX4_PROT_MASK(MLX4_1000BASE_KX))) &&
944 (ptys_reg.flags & MLX4_PTYS_AN_DISABLE_CAP))
945 ptys_reg.flags |= MLX4_PTYS_AN_DISABLE_ADMIN;
946 } else {
947 proto_admin = cpu_to_be32(ptys_adv);
948 ptys_reg.flags &= ~MLX4_PTYS_AN_DISABLE_ADMIN;
949 }
d48b3ab4
SM
950
951 proto_admin &= ptys_reg.eth_proto_cap;
d48b3ab4
SM
952 if (!proto_admin) {
953 en_warn(priv, "Not supported link mode(s) requested, check supported link modes.\n");
954 return -EINVAL; /* nothing to change due to bad input */
955 }
956
297e1cf2
AL
957 if ((proto_admin == ptys_reg.eth_proto_admin) &&
958 ((ptys_reg.flags & MLX4_PTYS_AN_DISABLE_CAP) &&
959 (link_ksettings->base.autoneg == cur_autoneg)))
5a228c03
SM
960 return 0; /* Nothing to change */
961
d48b3ab4
SM
962 en_dbg(DRV, priv, "mlx4_ACCESS_PTYS_REG SET: ptys_reg.eth_proto_admin = 0x%x\n",
963 be32_to_cpu(proto_admin));
964
965 ptys_reg.eth_proto_admin = proto_admin;
966 ret = mlx4_ACCESS_PTYS_REG(priv->mdev->dev, MLX4_ACCESS_REG_WRITE,
967 &ptys_reg);
968 if (ret) {
969 en_warn(priv, "Failed to write mlx4_ACCESS_PTYS_REG eth_proto_admin(0x%x) status(0x%x)",
970 be32_to_cpu(ptys_reg.eth_proto_admin), ret);
971 return ret;
972 }
973
d48b3ab4
SM
974 mutex_lock(&priv->mdev->state_lock);
975 if (priv->port_up) {
5a228c03 976 en_warn(priv, "Port link mode changed, restarting port...\n");
d48b3ab4
SM
977 mlx4_en_stop_port(dev, 1);
978 if (mlx4_en_start_port(dev))
979 en_err(priv, "Failed restarting port %d\n", priv->port);
980 }
981 mutex_unlock(&priv->mdev->state_lock);
c27a02cd
YP
982 return 0;
983}
984
985static int mlx4_en_get_coalesce(struct net_device *dev,
986 struct ethtool_coalesce *coal)
987{
988 struct mlx4_en_priv *priv = netdev_priv(dev);
989
a19a848a
YP
990 coal->tx_coalesce_usecs = priv->tx_usecs;
991 coal->tx_max_coalesced_frames = priv->tx_frames;
fbc6daf1
AV
992 coal->tx_max_coalesced_frames_irq = priv->tx_work_limit;
993
c27a02cd
YP
994 coal->rx_coalesce_usecs = priv->rx_usecs;
995 coal->rx_max_coalesced_frames = priv->rx_frames;
996
997 coal->pkt_rate_low = priv->pkt_rate_low;
998 coal->rx_coalesce_usecs_low = priv->rx_usecs_low;
999 coal->pkt_rate_high = priv->pkt_rate_high;
1000 coal->rx_coalesce_usecs_high = priv->rx_usecs_high;
1001 coal->rate_sample_interval = priv->sample_interval;
1002 coal->use_adaptive_rx_coalesce = priv->adaptive_rx_coal;
fbc6daf1 1003
c27a02cd
YP
1004 return 0;
1005}
1006
1007static int mlx4_en_set_coalesce(struct net_device *dev,
1008 struct ethtool_coalesce *coal)
1009{
1010 struct mlx4_en_priv *priv = netdev_priv(dev);
c27a02cd 1011
fbc6daf1
AV
1012 if (!coal->tx_max_coalesced_frames_irq)
1013 return -EINVAL;
1014
c27a02cd
YP
1015 priv->rx_frames = (coal->rx_max_coalesced_frames ==
1016 MLX4_EN_AUTO_CONF) ?
3db36fb2 1017 MLX4_EN_RX_COAL_TARGET :
c27a02cd
YP
1018 coal->rx_max_coalesced_frames;
1019 priv->rx_usecs = (coal->rx_coalesce_usecs ==
1020 MLX4_EN_AUTO_CONF) ?
1021 MLX4_EN_RX_COAL_TIME :
1022 coal->rx_coalesce_usecs;
1023
a19a848a
YP
1024 /* Setting TX coalescing parameters */
1025 if (coal->tx_coalesce_usecs != priv->tx_usecs ||
1026 coal->tx_max_coalesced_frames != priv->tx_frames) {
1027 priv->tx_usecs = coal->tx_coalesce_usecs;
1028 priv->tx_frames = coal->tx_max_coalesced_frames;
a19a848a
YP
1029 }
1030
c27a02cd
YP
1031 /* Set adaptive coalescing params */
1032 priv->pkt_rate_low = coal->pkt_rate_low;
1033 priv->rx_usecs_low = coal->rx_coalesce_usecs_low;
1034 priv->pkt_rate_high = coal->pkt_rate_high;
1035 priv->rx_usecs_high = coal->rx_coalesce_usecs_high;
1036 priv->sample_interval = coal->rate_sample_interval;
1037 priv->adaptive_rx_coal = coal->use_adaptive_rx_coalesce;
fbc6daf1 1038 priv->tx_work_limit = coal->tx_max_coalesced_frames_irq;
c27a02cd 1039
79c54b6b 1040 return mlx4_en_moderation_update(priv);
c27a02cd
YP
1041}
1042
1043static int mlx4_en_set_pauseparam(struct net_device *dev,
1044 struct ethtool_pauseparam *pause)
1045{
1046 struct mlx4_en_priv *priv = netdev_priv(dev);
1047 struct mlx4_en_dev *mdev = priv->mdev;
1048 int err;
1049
278d436a
IV
1050 if (pause->autoneg)
1051 return -EINVAL;
1052
d53b93f2
YP
1053 priv->prof->tx_pause = pause->tx_pause != 0;
1054 priv->prof->rx_pause = pause->rx_pause != 0;
c27a02cd
YP
1055 err = mlx4_SET_PORT_general(mdev->dev, priv->port,
1056 priv->rx_skb_size + ETH_FCS_LEN,
d53b93f2
YP
1057 priv->prof->tx_pause,
1058 priv->prof->tx_ppp,
1059 priv->prof->rx_pause,
1060 priv->prof->rx_ppp);
c27a02cd 1061 if (err)
453a6082 1062 en_err(priv, "Failed setting pause params\n");
0b131561
MB
1063 else
1064 mlx4_en_update_pfc_stats_bitmap(mdev->dev, &priv->stats_bitmap,
1065 priv->prof->rx_ppp,
1066 priv->prof->rx_pause,
1067 priv->prof->tx_ppp,
1068 priv->prof->tx_pause);
c27a02cd
YP
1069
1070 return err;
1071}
1072
1073static void mlx4_en_get_pauseparam(struct net_device *dev,
1074 struct ethtool_pauseparam *pause)
1075{
1076 struct mlx4_en_priv *priv = netdev_priv(dev);
c27a02cd 1077
d53b93f2
YP
1078 pause->tx_pause = priv->prof->tx_pause;
1079 pause->rx_pause = priv->prof->rx_pause;
c27a02cd
YP
1080}
1081
18cc42a3
YP
1082static int mlx4_en_set_ringparam(struct net_device *dev,
1083 struct ethtool_ringparam *param)
1084{
1085 struct mlx4_en_priv *priv = netdev_priv(dev);
1086 struct mlx4_en_dev *mdev = priv->mdev;
ec25bc04
EE
1087 struct mlx4_en_port_profile new_prof;
1088 struct mlx4_en_priv *tmp;
18cc42a3
YP
1089 u32 rx_size, tx_size;
1090 int port_up = 0;
1091 int err = 0;
1092
1093 if (param->rx_jumbo_pending || param->rx_mini_pending)
1094 return -EINVAL;
1095
1096 rx_size = roundup_pow_of_two(param->rx_pending);
1097 rx_size = max_t(u32, rx_size, MLX4_EN_MIN_RX_SIZE);
bd531e36 1098 rx_size = min_t(u32, rx_size, MLX4_EN_MAX_RX_SIZE);
18cc42a3
YP
1099 tx_size = roundup_pow_of_two(param->tx_pending);
1100 tx_size = max_t(u32, tx_size, MLX4_EN_MIN_TX_SIZE);
bd531e36 1101 tx_size = min_t(u32, tx_size, MLX4_EN_MAX_TX_SIZE);
18cc42a3 1102
41d942d5
EE
1103 if (rx_size == (priv->port_up ? priv->rx_ring[0]->actual_size :
1104 priv->rx_ring[0]->size) &&
67f8b1dc 1105 tx_size == priv->tx_ring[TX][0]->size)
18cc42a3
YP
1106 return 0;
1107
ec25bc04
EE
1108 tmp = kzalloc(sizeof(*tmp), GFP_KERNEL);
1109 if (!tmp)
1110 return -ENOMEM;
1111
18cc42a3 1112 mutex_lock(&mdev->state_lock);
ec25bc04
EE
1113 memcpy(&new_prof, priv->prof, sizeof(struct mlx4_en_port_profile));
1114 new_prof.tx_ring_size = tx_size;
1115 new_prof.rx_ring_size = rx_size;
770f8225 1116 err = mlx4_en_try_alloc_resources(priv, tmp, &new_prof, true);
ec25bc04
EE
1117 if (err)
1118 goto out;
1119
18cc42a3
YP
1120 if (priv->port_up) {
1121 port_up = 1;
3484aac1 1122 mlx4_en_stop_port(dev, 1);
18cc42a3
YP
1123 }
1124
ec25bc04 1125 mlx4_en_safe_replace_resources(priv, tmp);
18cc42a3 1126
18cc42a3
YP
1127 if (port_up) {
1128 err = mlx4_en_start_port(dev);
1129 if (err)
453a6082 1130 en_err(priv, "Failed starting port\n");
18cc42a3
YP
1131 }
1132
79c54b6b 1133 err = mlx4_en_moderation_update(priv);
18cc42a3 1134out:
ec25bc04 1135 kfree(tmp);
18cc42a3
YP
1136 mutex_unlock(&mdev->state_lock);
1137 return err;
1138}
1139
c27a02cd
YP
1140static void mlx4_en_get_ringparam(struct net_device *dev,
1141 struct ethtool_ringparam *param)
1142{
1143 struct mlx4_en_priv *priv = netdev_priv(dev);
c27a02cd
YP
1144
1145 memset(param, 0, sizeof(*param));
bd531e36
YP
1146 param->rx_max_pending = MLX4_EN_MAX_RX_SIZE;
1147 param->tx_max_pending = MLX4_EN_MAX_TX_SIZE;
bc081cec 1148 param->rx_pending = priv->port_up ?
41d942d5 1149 priv->rx_ring[0]->actual_size : priv->rx_ring[0]->size;
67f8b1dc 1150 param->tx_pending = priv->tx_ring[TX][0]->size;
c27a02cd
YP
1151}
1152
93d3e367
YP
1153static u32 mlx4_en_get_rxfh_indir_size(struct net_device *dev)
1154{
1155 struct mlx4_en_priv *priv = netdev_priv(dev);
1156
f7d3c1cb 1157 return rounddown_pow_of_two(priv->rx_ring_num);
93d3e367
YP
1158}
1159
b9d1ab7e
ED
1160static u32 mlx4_en_get_rxfh_key_size(struct net_device *netdev)
1161{
1162 return MLX4_EN_RSS_KEY_SIZE;
1163}
1164
947cbb0a
EP
1165static int mlx4_en_check_rxfh_func(struct net_device *dev, u8 hfunc)
1166{
1167 struct mlx4_en_priv *priv = netdev_priv(dev);
1168
1169 /* check if requested function is supported by the device */
b3706909
AV
1170 if (hfunc == ETH_RSS_HASH_TOP) {
1171 if (!(priv->mdev->dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_RSS_TOP))
1172 return -EINVAL;
1173 if (!(dev->features & NETIF_F_RXHASH))
1174 en_warn(priv, "Toeplitz hash function should be used in conjunction with RX hashing for optimal performance\n");
1175 return 0;
1176 } else if (hfunc == ETH_RSS_HASH_XOR) {
1177 if (!(priv->mdev->dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_RSS_XOR))
1178 return -EINVAL;
1179 if (dev->features & NETIF_F_RXHASH)
1180 en_warn(priv, "Enabling both XOR Hash function and RX Hashing can limit RPS functionality\n");
1181 return 0;
1182 }
947cbb0a 1183
b3706909 1184 return -EINVAL;
947cbb0a
EP
1185}
1186
892311f6
EP
1187static int mlx4_en_get_rxfh(struct net_device *dev, u32 *ring_index, u8 *key,
1188 u8 *hfunc)
93d3e367
YP
1189{
1190 struct mlx4_en_priv *priv = netdev_priv(dev);
f7d3c1cb
ED
1191 u32 n = mlx4_en_get_rxfh_indir_size(dev);
1192 u32 i, rss_rings;
93d3e367
YP
1193 int err = 0;
1194
f7d3c1cb
ED
1195 rss_rings = priv->prof->rss_rings ?: n;
1196 rss_rings = rounddown_pow_of_two(rss_rings);
93d3e367 1197
f7d3c1cb 1198 for (i = 0; i < n; i++) {
892311f6
EP
1199 if (!ring_index)
1200 break;
f7d3c1cb 1201 ring_index[i] = i % rss_rings;
93d3e367 1202 }
b9d1ab7e 1203 if (key)
bd635c35 1204 memcpy(key, priv->rss_key, MLX4_EN_RSS_KEY_SIZE);
892311f6 1205 if (hfunc)
947cbb0a 1206 *hfunc = priv->rss_hash_fn;
93d3e367
YP
1207 return err;
1208}
1209
fe62d001 1210static int mlx4_en_set_rxfh(struct net_device *dev, const u32 *ring_index,
892311f6 1211 const u8 *key, const u8 hfunc)
93d3e367
YP
1212{
1213 struct mlx4_en_priv *priv = netdev_priv(dev);
f7d3c1cb 1214 u32 n = mlx4_en_get_rxfh_indir_size(dev);
93d3e367
YP
1215 struct mlx4_en_dev *mdev = priv->mdev;
1216 int port_up = 0;
1217 int err = 0;
1218 int i;
1219 int rss_rings = 0;
1220
1221 /* Calculate RSS table size and make sure flows are spread evenly
1222 * between rings
1223 */
f7d3c1cb 1224 for (i = 0; i < n; i++) {
bd635c35 1225 if (!ring_index)
f7d3c1cb 1226 break;
93d3e367
YP
1227 if (i > 0 && !ring_index[i] && !rss_rings)
1228 rss_rings = i;
1229
f7d3c1cb 1230 if (ring_index[i] != (i % (rss_rings ?: n)))
93d3e367
YP
1231 return -EINVAL;
1232 }
1233
1234 if (!rss_rings)
f7d3c1cb 1235 rss_rings = n;
93d3e367
YP
1236
1237 /* RSS table size must be an order of 2 */
1238 if (!is_power_of_2(rss_rings))
1239 return -EINVAL;
1240
947cbb0a
EP
1241 if (hfunc != ETH_RSS_HASH_NO_CHANGE) {
1242 err = mlx4_en_check_rxfh_func(dev, hfunc);
1243 if (err)
1244 return err;
1245 }
1246
93d3e367
YP
1247 mutex_lock(&mdev->state_lock);
1248 if (priv->port_up) {
1249 port_up = 1;
3484aac1 1250 mlx4_en_stop_port(dev, 1);
93d3e367
YP
1251 }
1252
bd635c35
ED
1253 if (ring_index)
1254 priv->prof->rss_rings = rss_rings;
1255 if (key)
1256 memcpy(priv->rss_key, key, MLX4_EN_RSS_KEY_SIZE);
b3706909
AV
1257 if (hfunc != ETH_RSS_HASH_NO_CHANGE)
1258 priv->rss_hash_fn = hfunc;
947cbb0a 1259
93d3e367
YP
1260 if (port_up) {
1261 err = mlx4_en_start_port(dev);
1262 if (err)
1263 en_err(priv, "Failed starting port\n");
1264 }
1265
1266 mutex_unlock(&mdev->state_lock);
1267 return err;
1268}
1269
82067281
HHZ
1270#define all_zeros_or_all_ones(field) \
1271 ((field) == 0 || (field) == (__force typeof(field))-1)
1272
1273static int mlx4_en_validate_flow(struct net_device *dev,
1274 struct ethtool_rxnfc *cmd)
1275{
1276 struct ethtool_usrip4_spec *l3_mask;
1277 struct ethtool_tcpip4_spec *l4_mask;
1278 struct ethhdr *eth_mask;
82067281
HHZ
1279
1280 if (cmd->fs.location >= MAX_NUM_OF_FS_RULES)
1281 return -EINVAL;
1282
520dfe3a
YB
1283 if (cmd->fs.flow_type & FLOW_MAC_EXT) {
1284 /* dest mac mask must be ff:ff:ff:ff:ff:ff */
1285 if (!is_broadcast_ether_addr(cmd->fs.m_ext.h_dest))
1286 return -EINVAL;
1287 }
1288
1289 switch (cmd->fs.flow_type & ~(FLOW_EXT | FLOW_MAC_EXT)) {
82067281
HHZ
1290 case TCP_V4_FLOW:
1291 case UDP_V4_FLOW:
1292 if (cmd->fs.m_u.tcp_ip4_spec.tos)
1293 return -EINVAL;
1294 l4_mask = &cmd->fs.m_u.tcp_ip4_spec;
1295 /* don't allow mask which isn't all 0 or 1 */
1296 if (!all_zeros_or_all_ones(l4_mask->ip4src) ||
1297 !all_zeros_or_all_ones(l4_mask->ip4dst) ||
1298 !all_zeros_or_all_ones(l4_mask->psrc) ||
1299 !all_zeros_or_all_ones(l4_mask->pdst))
1300 return -EINVAL;
1301 break;
1302 case IP_USER_FLOW:
1303 l3_mask = &cmd->fs.m_u.usr_ip4_spec;
1304 if (l3_mask->l4_4_bytes || l3_mask->tos || l3_mask->proto ||
1305 cmd->fs.h_u.usr_ip4_spec.ip_ver != ETH_RX_NFC_IP4 ||
1306 (!l3_mask->ip4src && !l3_mask->ip4dst) ||
1307 !all_zeros_or_all_ones(l3_mask->ip4src) ||
1308 !all_zeros_or_all_ones(l3_mask->ip4dst))
1309 return -EINVAL;
1310 break;
1311 case ETHER_FLOW:
1312 eth_mask = &cmd->fs.m_u.ether_spec;
1313 /* source mac mask must not be set */
c402b947 1314 if (!is_zero_ether_addr(eth_mask->h_source))
82067281
HHZ
1315 return -EINVAL;
1316
1317 /* dest mac mask must be ff:ff:ff:ff:ff:ff */
c402b947 1318 if (!is_broadcast_ether_addr(eth_mask->h_dest))
82067281
HHZ
1319 return -EINVAL;
1320
1321 if (!all_zeros_or_all_ones(eth_mask->h_proto))
1322 return -EINVAL;
1323 break;
1324 default:
1325 return -EINVAL;
1326 }
1327
1328 if ((cmd->fs.flow_type & FLOW_EXT)) {
1329 if (cmd->fs.m_ext.vlan_etype ||
8258bd27
HHZ
1330 !((cmd->fs.m_ext.vlan_tci & cpu_to_be16(VLAN_VID_MASK)) ==
1331 0 ||
1332 (cmd->fs.m_ext.vlan_tci & cpu_to_be16(VLAN_VID_MASK)) ==
1333 cpu_to_be16(VLAN_VID_MASK)))
82067281 1334 return -EINVAL;
8258bd27 1335
69d7126b
HHZ
1336 if (cmd->fs.m_ext.vlan_tci) {
1337 if (be16_to_cpu(cmd->fs.h_ext.vlan_tci) >= VLAN_N_VID)
1338 return -EINVAL;
8258bd27 1339
69d7126b 1340 }
82067281
HHZ
1341 }
1342
1343 return 0;
1344}
1345
f90a3673
HHZ
1346static int mlx4_en_ethtool_add_mac_rule(struct ethtool_rxnfc *cmd,
1347 struct list_head *rule_list_h,
1348 struct mlx4_spec_list *spec_l2,
1349 unsigned char *mac)
1350{
1351 int err = 0;
1352 __be64 mac_msk = cpu_to_be64(MLX4_MAC_MASK << 16);
1353
1354 spec_l2->id = MLX4_NET_TRANS_RULE_ID_ETH;
1355 memcpy(spec_l2->eth.dst_mac_msk, &mac_msk, ETH_ALEN);
1356 memcpy(spec_l2->eth.dst_mac, mac, ETH_ALEN);
1357
8258bd27
HHZ
1358 if ((cmd->fs.flow_type & FLOW_EXT) &&
1359 (cmd->fs.m_ext.vlan_tci & cpu_to_be16(VLAN_VID_MASK))) {
f90a3673 1360 spec_l2->eth.vlan_id = cmd->fs.h_ext.vlan_tci;
8258bd27 1361 spec_l2->eth.vlan_id_msk = cpu_to_be16(VLAN_VID_MASK);
f90a3673
HHZ
1362 }
1363
1364 list_add_tail(&spec_l2->list, rule_list_h);
1365
1366 return err;
1367}
1368
1369static int mlx4_en_ethtool_add_mac_rule_by_ipv4(struct mlx4_en_priv *priv,
1370 struct ethtool_rxnfc *cmd,
1371 struct list_head *rule_list_h,
1372 struct mlx4_spec_list *spec_l2,
1373 __be32 ipv4_dst)
1374{
f9d96862 1375#ifdef CONFIG_INET
f90a3673
HHZ
1376 unsigned char mac[ETH_ALEN];
1377
1378 if (!ipv4_is_multicast(ipv4_dst)) {
6bbb6d99 1379 if (cmd->fs.flow_type & FLOW_MAC_EXT)
f90a3673 1380 memcpy(&mac, cmd->fs.h_ext.h_dest, ETH_ALEN);
6bbb6d99
YB
1381 else
1382 memcpy(&mac, priv->dev->dev_addr, ETH_ALEN);
f90a3673
HHZ
1383 } else {
1384 ip_eth_mc_map(ipv4_dst, mac);
1385 }
1386
1387 return mlx4_en_ethtool_add_mac_rule(cmd, rule_list_h, spec_l2, &mac[0]);
f9d96862
HHZ
1388#else
1389 return -EINVAL;
1390#endif
f90a3673
HHZ
1391}
1392
82067281 1393static int add_ip_rule(struct mlx4_en_priv *priv,
f90a3673
HHZ
1394 struct ethtool_rxnfc *cmd,
1395 struct list_head *list_h)
82067281 1396{
377d9739 1397 int err;
f90a3673
HHZ
1398 struct mlx4_spec_list *spec_l2 = NULL;
1399 struct mlx4_spec_list *spec_l3 = NULL;
82067281
HHZ
1400 struct ethtool_usrip4_spec *l3_mask = &cmd->fs.m_u.usr_ip4_spec;
1401
f90a3673
HHZ
1402 spec_l3 = kzalloc(sizeof(*spec_l3), GFP_KERNEL);
1403 spec_l2 = kzalloc(sizeof(*spec_l2), GFP_KERNEL);
1404 if (!spec_l2 || !spec_l3) {
377d9739
HHZ
1405 err = -ENOMEM;
1406 goto free_spec;
82067281
HHZ
1407 }
1408
377d9739
HHZ
1409 err = mlx4_en_ethtool_add_mac_rule_by_ipv4(priv, cmd, list_h, spec_l2,
1410 cmd->fs.h_u.
1411 usr_ip4_spec.ip4dst);
1412 if (err)
1413 goto free_spec;
82067281
HHZ
1414 spec_l3->id = MLX4_NET_TRANS_RULE_ID_IPV4;
1415 spec_l3->ipv4.src_ip = cmd->fs.h_u.usr_ip4_spec.ip4src;
1416 if (l3_mask->ip4src)
1417 spec_l3->ipv4.src_ip_msk = EN_ETHTOOL_WORD_MASK;
1418 spec_l3->ipv4.dst_ip = cmd->fs.h_u.usr_ip4_spec.ip4dst;
1419 if (l3_mask->ip4dst)
1420 spec_l3->ipv4.dst_ip_msk = EN_ETHTOOL_WORD_MASK;
1421 list_add_tail(&spec_l3->list, list_h);
1422
1423 return 0;
377d9739
HHZ
1424
1425free_spec:
1426 kfree(spec_l2);
1427 kfree(spec_l3);
1428 return err;
82067281
HHZ
1429}
1430
1431static int add_tcp_udp_rule(struct mlx4_en_priv *priv,
1432 struct ethtool_rxnfc *cmd,
1433 struct list_head *list_h, int proto)
1434{
377d9739 1435 int err;
f90a3673
HHZ
1436 struct mlx4_spec_list *spec_l2 = NULL;
1437 struct mlx4_spec_list *spec_l3 = NULL;
1438 struct mlx4_spec_list *spec_l4 = NULL;
82067281
HHZ
1439 struct ethtool_tcpip4_spec *l4_mask = &cmd->fs.m_u.tcp_ip4_spec;
1440
f90a3673
HHZ
1441 spec_l2 = kzalloc(sizeof(*spec_l2), GFP_KERNEL);
1442 spec_l3 = kzalloc(sizeof(*spec_l3), GFP_KERNEL);
1443 spec_l4 = kzalloc(sizeof(*spec_l4), GFP_KERNEL);
1444 if (!spec_l2 || !spec_l3 || !spec_l4) {
377d9739
HHZ
1445 err = -ENOMEM;
1446 goto free_spec;
82067281
HHZ
1447 }
1448
1449 spec_l3->id = MLX4_NET_TRANS_RULE_ID_IPV4;
1450
1451 if (proto == TCP_V4_FLOW) {
377d9739
HHZ
1452 err = mlx4_en_ethtool_add_mac_rule_by_ipv4(priv, cmd, list_h,
1453 spec_l2,
1454 cmd->fs.h_u.
1455 tcp_ip4_spec.ip4dst);
1456 if (err)
1457 goto free_spec;
82067281
HHZ
1458 spec_l4->id = MLX4_NET_TRANS_RULE_ID_TCP;
1459 spec_l3->ipv4.src_ip = cmd->fs.h_u.tcp_ip4_spec.ip4src;
1460 spec_l3->ipv4.dst_ip = cmd->fs.h_u.tcp_ip4_spec.ip4dst;
1461 spec_l4->tcp_udp.src_port = cmd->fs.h_u.tcp_ip4_spec.psrc;
1462 spec_l4->tcp_udp.dst_port = cmd->fs.h_u.tcp_ip4_spec.pdst;
1463 } else {
377d9739
HHZ
1464 err = mlx4_en_ethtool_add_mac_rule_by_ipv4(priv, cmd, list_h,
1465 spec_l2,
1466 cmd->fs.h_u.
1467 udp_ip4_spec.ip4dst);
1468 if (err)
1469 goto free_spec;
82067281
HHZ
1470 spec_l4->id = MLX4_NET_TRANS_RULE_ID_UDP;
1471 spec_l3->ipv4.src_ip = cmd->fs.h_u.udp_ip4_spec.ip4src;
1472 spec_l3->ipv4.dst_ip = cmd->fs.h_u.udp_ip4_spec.ip4dst;
1473 spec_l4->tcp_udp.src_port = cmd->fs.h_u.udp_ip4_spec.psrc;
1474 spec_l4->tcp_udp.dst_port = cmd->fs.h_u.udp_ip4_spec.pdst;
1475 }
1476
1477 if (l4_mask->ip4src)
1478 spec_l3->ipv4.src_ip_msk = EN_ETHTOOL_WORD_MASK;
1479 if (l4_mask->ip4dst)
1480 spec_l3->ipv4.dst_ip_msk = EN_ETHTOOL_WORD_MASK;
1481
1482 if (l4_mask->psrc)
1483 spec_l4->tcp_udp.src_port_msk = EN_ETHTOOL_SHORT_MASK;
1484 if (l4_mask->pdst)
1485 spec_l4->tcp_udp.dst_port_msk = EN_ETHTOOL_SHORT_MASK;
1486
1487 list_add_tail(&spec_l3->list, list_h);
1488 list_add_tail(&spec_l4->list, list_h);
1489
1490 return 0;
377d9739
HHZ
1491
1492free_spec:
1493 kfree(spec_l2);
1494 kfree(spec_l3);
1495 kfree(spec_l4);
1496 return err;
82067281
HHZ
1497}
1498
1499static int mlx4_en_ethtool_to_net_trans_rule(struct net_device *dev,
1500 struct ethtool_rxnfc *cmd,
1501 struct list_head *rule_list_h)
1502{
1503 int err;
82067281 1504 struct ethhdr *eth_spec;
82067281 1505 struct mlx4_spec_list *spec_l2;
f90a3673 1506 struct mlx4_en_priv *priv = netdev_priv(dev);
82067281
HHZ
1507
1508 err = mlx4_en_validate_flow(dev, cmd);
1509 if (err)
1510 return err;
1511
520dfe3a 1512 switch (cmd->fs.flow_type & ~(FLOW_EXT | FLOW_MAC_EXT)) {
82067281 1513 case ETHER_FLOW:
f90a3673
HHZ
1514 spec_l2 = kzalloc(sizeof(*spec_l2), GFP_KERNEL);
1515 if (!spec_l2)
1516 return -ENOMEM;
1517
82067281 1518 eth_spec = &cmd->fs.h_u.ether_spec;
f90a3673
HHZ
1519 mlx4_en_ethtool_add_mac_rule(cmd, rule_list_h, spec_l2,
1520 &eth_spec->h_dest[0]);
82067281
HHZ
1521 spec_l2->eth.ether_type = eth_spec->h_proto;
1522 if (eth_spec->h_proto)
1523 spec_l2->eth.ether_type_enable = 1;
1524 break;
1525 case IP_USER_FLOW:
1526 err = add_ip_rule(priv, cmd, rule_list_h);
1527 break;
1528 case TCP_V4_FLOW:
1529 err = add_tcp_udp_rule(priv, cmd, rule_list_h, TCP_V4_FLOW);
1530 break;
1531 case UDP_V4_FLOW:
1532 err = add_tcp_udp_rule(priv, cmd, rule_list_h, UDP_V4_FLOW);
1533 break;
1534 }
1535
1536 return err;
1537}
1538
1539static int mlx4_en_flow_replace(struct net_device *dev,
1540 struct ethtool_rxnfc *cmd)
1541{
1542 int err;
1543 struct mlx4_en_priv *priv = netdev_priv(dev);
1544 struct ethtool_flow_id *loc_rule;
1545 struct mlx4_spec_list *spec, *tmp_spec;
1546 u32 qpn;
1547 u64 reg_id;
1548
1549 struct mlx4_net_trans_rule rule = {
1550 .queue_mode = MLX4_NET_TRANS_Q_FIFO,
1551 .exclusive = 0,
1552 .allow_loopback = 1,
f9162539 1553 .promisc_mode = MLX4_FS_REGULAR,
82067281
HHZ
1554 };
1555
1556 rule.port = priv->port;
1557 rule.priority = MLX4_DOMAIN_ETHTOOL | cmd->fs.location;
1558 INIT_LIST_HEAD(&rule.list);
1559
1560 /* Allow direct QP attaches if the EN_ETHTOOL_QP_ATTACH flag is set */
1561 if (cmd->fs.ring_cookie == RX_CLS_FLOW_DISC)
cabdc8ee 1562 qpn = priv->drop_qp.qpn;
82067281
HHZ
1563 else if (cmd->fs.ring_cookie & EN_ETHTOOL_QP_ATTACH) {
1564 qpn = cmd->fs.ring_cookie & (EN_ETHTOOL_QP_ATTACH - 1);
1565 } else {
1566 if (cmd->fs.ring_cookie >= priv->rx_ring_num) {
1a91de28 1567 en_warn(priv, "rxnfc: RX ring (%llu) doesn't exist\n",
82067281
HHZ
1568 cmd->fs.ring_cookie);
1569 return -EINVAL;
1570 }
1571 qpn = priv->rss_map.qps[cmd->fs.ring_cookie].qpn;
1572 if (!qpn) {
1a91de28 1573 en_warn(priv, "rxnfc: RX ring (%llu) is inactive\n",
82067281
HHZ
1574 cmd->fs.ring_cookie);
1575 return -EINVAL;
1576 }
1577 }
1578 rule.qpn = qpn;
1579 err = mlx4_en_ethtool_to_net_trans_rule(dev, cmd, &rule.list);
1580 if (err)
1581 goto out_free_list;
1582
1583 loc_rule = &priv->ethtool_rules[cmd->fs.location];
1584 if (loc_rule->id) {
1585 err = mlx4_flow_detach(priv->mdev->dev, loc_rule->id);
1586 if (err) {
1587 en_err(priv, "Fail to detach network rule at location %d. registration id = %llx\n",
1588 cmd->fs.location, loc_rule->id);
1589 goto out_free_list;
1590 }
1591 loc_rule->id = 0;
1592 memset(&loc_rule->flow_spec, 0,
1593 sizeof(struct ethtool_rx_flow_spec));
0d256c0e 1594 list_del(&loc_rule->list);
82067281
HHZ
1595 }
1596 err = mlx4_flow_attach(priv->mdev->dev, &rule, &reg_id);
1597 if (err) {
1a91de28 1598 en_err(priv, "Fail to attach network rule at location %d\n",
82067281
HHZ
1599 cmd->fs.location);
1600 goto out_free_list;
1601 }
1602 loc_rule->id = reg_id;
1603 memcpy(&loc_rule->flow_spec, &cmd->fs,
1604 sizeof(struct ethtool_rx_flow_spec));
0d256c0e 1605 list_add_tail(&loc_rule->list, &priv->ethtool_list);
82067281
HHZ
1606
1607out_free_list:
1608 list_for_each_entry_safe(spec, tmp_spec, &rule.list, list) {
1609 list_del(&spec->list);
1610 kfree(spec);
1611 }
1612 return err;
1613}
1614
1615static int mlx4_en_flow_detach(struct net_device *dev,
1616 struct ethtool_rxnfc *cmd)
1617{
1618 int err = 0;
1619 struct ethtool_flow_id *rule;
1620 struct mlx4_en_priv *priv = netdev_priv(dev);
1621
1622 if (cmd->fs.location >= MAX_NUM_OF_FS_RULES)
1623 return -EINVAL;
1624
1625 rule = &priv->ethtool_rules[cmd->fs.location];
1626 if (!rule->id) {
1627 err = -ENOENT;
1628 goto out;
1629 }
1630
1631 err = mlx4_flow_detach(priv->mdev->dev, rule->id);
1632 if (err) {
1633 en_err(priv, "Fail to detach network rule at location %d. registration id = 0x%llx\n",
1634 cmd->fs.location, rule->id);
1635 goto out;
1636 }
1637 rule->id = 0;
1638 memset(&rule->flow_spec, 0, sizeof(struct ethtool_rx_flow_spec));
0d256c0e 1639 list_del(&rule->list);
82067281
HHZ
1640out:
1641 return err;
1642
1643}
1644
1645static int mlx4_en_get_flow(struct net_device *dev, struct ethtool_rxnfc *cmd,
1646 int loc)
1647{
1648 int err = 0;
1649 struct ethtool_flow_id *rule;
1650 struct mlx4_en_priv *priv = netdev_priv(dev);
1651
1652 if (loc < 0 || loc >= MAX_NUM_OF_FS_RULES)
1653 return -EINVAL;
1654
1655 rule = &priv->ethtool_rules[loc];
1656 if (rule->id)
1657 memcpy(&cmd->fs, &rule->flow_spec,
1658 sizeof(struct ethtool_rx_flow_spec));
1659 else
1660 err = -ENOENT;
1661
1662 return err;
1663}
1664
1665static int mlx4_en_get_num_flows(struct mlx4_en_priv *priv)
1666{
1667
1668 int i, res = 0;
1669 for (i = 0; i < MAX_NUM_OF_FS_RULES; i++) {
1670 if (priv->ethtool_rules[i].id)
1671 res++;
1672 }
1673 return res;
1674
1675}
1676
93d3e367
YP
1677static int mlx4_en_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *cmd,
1678 u32 *rule_locs)
1679{
1680 struct mlx4_en_priv *priv = netdev_priv(dev);
82067281 1681 struct mlx4_en_dev *mdev = priv->mdev;
93d3e367 1682 int err = 0;
82067281
HHZ
1683 int i = 0, priority = 0;
1684
1685 if ((cmd->cmd == ETHTOOL_GRXCLSRLCNT ||
1686 cmd->cmd == ETHTOOL_GRXCLSRULE ||
1687 cmd->cmd == ETHTOOL_GRXCLSRLALL) &&
280fce1e
HHZ
1688 (mdev->dev->caps.steering_mode !=
1689 MLX4_STEERING_MODE_DEVICE_MANAGED || !priv->port_up))
82067281 1690 return -EINVAL;
93d3e367
YP
1691
1692 switch (cmd->cmd) {
1693 case ETHTOOL_GRXRINGS:
1694 cmd->data = priv->rx_ring_num;
1695 break;
82067281
HHZ
1696 case ETHTOOL_GRXCLSRLCNT:
1697 cmd->rule_cnt = mlx4_en_get_num_flows(priv);
1698 break;
1699 case ETHTOOL_GRXCLSRULE:
1700 err = mlx4_en_get_flow(dev, cmd, cmd->fs.location);
1701 break;
1702 case ETHTOOL_GRXCLSRLALL:
1703 while ((!err || err == -ENOENT) && priority < cmd->rule_cnt) {
1704 err = mlx4_en_get_flow(dev, cmd, i);
1705 if (!err)
1706 rule_locs[priority++] = i;
1707 i++;
1708 }
1709 err = 0;
1710 break;
93d3e367
YP
1711 default:
1712 err = -EOPNOTSUPP;
1713 break;
1714 }
1715
1716 return err;
1717}
1718
82067281
HHZ
1719static int mlx4_en_set_rxnfc(struct net_device *dev, struct ethtool_rxnfc *cmd)
1720{
1721 int err = 0;
1722 struct mlx4_en_priv *priv = netdev_priv(dev);
1723 struct mlx4_en_dev *mdev = priv->mdev;
1724
280fce1e
HHZ
1725 if (mdev->dev->caps.steering_mode !=
1726 MLX4_STEERING_MODE_DEVICE_MANAGED || !priv->port_up)
82067281
HHZ
1727 return -EINVAL;
1728
1729 switch (cmd->cmd) {
1730 case ETHTOOL_SRXCLSRLINS:
1731 err = mlx4_en_flow_replace(dev, cmd);
1732 break;
1733 case ETHTOOL_SRXCLSRLDEL:
1734 err = mlx4_en_flow_detach(dev, cmd);
1735 break;
1736 default:
1737 en_warn(priv, "Unsupported ethtool command. (%d)\n", cmd->cmd);
1738 return -EINVAL;
1739 }
1740
1741 return err;
1742}
1743
d317966b
AV
1744static void mlx4_en_get_channels(struct net_device *dev,
1745 struct ethtool_channels *channel)
1746{
1747 struct mlx4_en_priv *priv = netdev_priv(dev);
1748
d317966b
AV
1749 channel->max_rx = MAX_RX_RINGS;
1750 channel->max_tx = MLX4_EN_MAX_TX_RING_P_UP;
1751
1752 channel->rx_count = priv->rx_ring_num;
f21ad614
IK
1753 channel->tx_count = priv->tx_ring_num[TX] /
1754 priv->prof->num_up;
d317966b
AV
1755}
1756
1757static int mlx4_en_set_channels(struct net_device *dev,
1758 struct ethtool_channels *channel)
1759{
1760 struct mlx4_en_priv *priv = netdev_priv(dev);
1761 struct mlx4_en_dev *mdev = priv->mdev;
ec25bc04
EE
1762 struct mlx4_en_port_profile new_prof;
1763 struct mlx4_en_priv *tmp;
da26a625 1764 int port_up = 0;
67f8b1dc 1765 int xdp_count;
d317966b 1766 int err = 0;
ec327f7a 1767 u8 up;
d317966b 1768
e91ef71d 1769 if (!channel->tx_count || !channel->rx_count)
d317966b
AV
1770 return -EINVAL;
1771
ec25bc04
EE
1772 tmp = kzalloc(sizeof(*tmp), GFP_KERNEL);
1773 if (!tmp)
1774 return -ENOMEM;
1775
d317966b 1776 mutex_lock(&mdev->state_lock);
67f8b1dc 1777 xdp_count = priv->tx_ring_num[TX_XDP] ? channel->rx_count : 0;
f21ad614
IK
1778 if (channel->tx_count * priv->prof->num_up + xdp_count >
1779 MAX_TX_RINGS) {
67f8b1dc
TT
1780 err = -EINVAL;
1781 en_err(priv,
1782 "Total number of TX and XDP rings (%d) exceeds the maximum supported (%d)\n",
f21ad614 1783 channel->tx_count * priv->prof->num_up + xdp_count,
67f8b1dc
TT
1784 MAX_TX_RINGS);
1785 goto out;
1786 }
1787
ec25bc04
EE
1788 memcpy(&new_prof, priv->prof, sizeof(struct mlx4_en_port_profile));
1789 new_prof.num_tx_rings_p_up = channel->tx_count;
f21ad614 1790 new_prof.tx_ring_num[TX] = channel->tx_count * priv->prof->num_up;
67f8b1dc 1791 new_prof.tx_ring_num[TX_XDP] = xdp_count;
ec25bc04
EE
1792 new_prof.rx_ring_num = channel->rx_count;
1793
770f8225 1794 err = mlx4_en_try_alloc_resources(priv, tmp, &new_prof, true);
ec25bc04
EE
1795 if (err)
1796 goto out;
1797
d317966b
AV
1798 if (priv->port_up) {
1799 port_up = 1;
3484aac1 1800 mlx4_en_stop_port(dev, 1);
d317966b
AV
1801 }
1802
ec25bc04 1803 mlx4_en_safe_replace_resources(priv, tmp);
d317966b 1804
d317966b
AV
1805 netif_set_real_num_rx_queues(dev, priv->rx_ring_num);
1806
ec327f7a
IK
1807 up = (priv->prof->num_up == MLX4_EN_NUM_UP_LOW) ?
1808 0 : priv->prof->num_up;
1809 mlx4_en_setup_tc(dev, up);
d317966b 1810
67f8b1dc 1811 en_warn(priv, "Using %d TX rings\n", priv->tx_ring_num[TX]);
d317966b
AV
1812 en_warn(priv, "Using %d RX rings\n", priv->rx_ring_num);
1813
1814 if (port_up) {
1815 err = mlx4_en_start_port(dev);
1816 if (err)
1817 en_err(priv, "Failed starting port\n");
1818 }
1819
1820 err = mlx4_en_moderation_update(priv);
d317966b
AV
1821out:
1822 mutex_unlock(&mdev->state_lock);
67f8b1dc 1823 kfree(tmp);
d317966b
AV
1824 return err;
1825}
1826
ec693d47
AV
1827static int mlx4_en_get_ts_info(struct net_device *dev,
1828 struct ethtool_ts_info *info)
1829{
1830 struct mlx4_en_priv *priv = netdev_priv(dev);
1831 struct mlx4_en_dev *mdev = priv->mdev;
1832 int ret;
1833
1834 ret = ethtool_op_get_ts_info(dev, info);
1835 if (ret)
1836 return ret;
1837
1838 if (mdev->dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_TS) {
1839 info->so_timestamping |=
1840 SOF_TIMESTAMPING_TX_HARDWARE |
1841 SOF_TIMESTAMPING_RX_HARDWARE |
1842 SOF_TIMESTAMPING_RAW_HARDWARE;
1843
1844 info->tx_types =
1845 (1 << HWTSTAMP_TX_OFF) |
1846 (1 << HWTSTAMP_TX_ON);
1847
1848 info->rx_filters =
1849 (1 << HWTSTAMP_FILTER_NONE) |
1850 (1 << HWTSTAMP_FILTER_ALL);
ad7d4eae
SB
1851
1852 if (mdev->ptp_clock)
1853 info->phc_index = ptp_clock_index(mdev->ptp_clock);
ec693d47
AV
1854 }
1855
1856 return ret;
1857}
1858
3f6148e7 1859static int mlx4_en_set_priv_flags(struct net_device *dev, u32 flags)
0fef9d03
AV
1860{
1861 struct mlx4_en_priv *priv = netdev_priv(dev);
e38af4fa 1862 struct mlx4_en_dev *mdev = priv->mdev;
0fef9d03
AV
1863 bool bf_enabled_new = !!(flags & MLX4_EN_PRIV_FLAGS_BLUEFLAME);
1864 bool bf_enabled_old = !!(priv->pflags & MLX4_EN_PRIV_FLAGS_BLUEFLAME);
e38af4fa
HHZ
1865 bool phv_enabled_new = !!(flags & MLX4_EN_PRIV_FLAGS_PHV);
1866 bool phv_enabled_old = !!(priv->pflags & MLX4_EN_PRIV_FLAGS_PHV);
0fef9d03 1867 int i;
e38af4fa 1868 int ret = 0;
0fef9d03 1869
7c509a48 1870 if (bf_enabled_new != bf_enabled_old) {
67f8b1dc
TT
1871 int t;
1872
7c509a48
HHZ
1873 if (bf_enabled_new) {
1874 bool bf_supported = true;
0fef9d03 1875
67f8b1dc
TT
1876 for (t = 0; t < MLX4_EN_NUM_TX_TYPES; t++)
1877 for (i = 0; i < priv->tx_ring_num[t]; i++)
1878 bf_supported &=
1879 priv->tx_ring[t][i]->bf_alloced;
0fef9d03 1880
7c509a48
HHZ
1881 if (!bf_supported) {
1882 en_err(priv, "BlueFlame is not supported\n");
1883 return -EINVAL;
1884 }
0fef9d03 1885
7c509a48
HHZ
1886 priv->pflags |= MLX4_EN_PRIV_FLAGS_BLUEFLAME;
1887 } else {
1888 priv->pflags &= ~MLX4_EN_PRIV_FLAGS_BLUEFLAME;
0fef9d03
AV
1889 }
1890
67f8b1dc
TT
1891 for (t = 0; t < MLX4_EN_NUM_TX_TYPES; t++)
1892 for (i = 0; i < priv->tx_ring_num[t]; i++)
1893 priv->tx_ring[t][i]->bf_enabled =
1894 bf_enabled_new;
0fef9d03 1895
7c509a48
HHZ
1896 en_info(priv, "BlueFlame %s\n",
1897 bf_enabled_new ? "Enabled" : "Disabled");
1898 }
0fef9d03 1899
e38af4fa
HHZ
1900 if (phv_enabled_new != phv_enabled_old) {
1901 ret = set_phv_bit(mdev->dev, priv->port, (int)phv_enabled_new);
1902 if (ret)
1903 return ret;
1904 else if (phv_enabled_new)
1905 priv->pflags |= MLX4_EN_PRIV_FLAGS_PHV;
1906 else
1907 priv->pflags &= ~MLX4_EN_PRIV_FLAGS_PHV;
1908 en_info(priv, "PHV bit %s\n",
1909 phv_enabled_new ? "Enabled" : "Disabled");
1910 }
0fef9d03
AV
1911 return 0;
1912}
1913
3f6148e7 1914static u32 mlx4_en_get_priv_flags(struct net_device *dev)
0fef9d03
AV
1915{
1916 struct mlx4_en_priv *priv = netdev_priv(dev);
1917
1918 return priv->pflags;
1919}
1920
1556b874
ED
1921static int mlx4_en_get_tunable(struct net_device *dev,
1922 const struct ethtool_tunable *tuna,
1923 void *data)
1924{
1925 const struct mlx4_en_priv *priv = netdev_priv(dev);
1926 int ret = 0;
1927
1928 switch (tuna->id) {
1929 case ETHTOOL_TX_COPYBREAK:
1930 *(u32 *)data = priv->prof->inline_thold;
1931 break;
1932 default:
1933 ret = -EINVAL;
1934 break;
1935 }
1936
1937 return ret;
1938}
1939
1940static int mlx4_en_set_tunable(struct net_device *dev,
1941 const struct ethtool_tunable *tuna,
1942 const void *data)
1943{
1944 struct mlx4_en_priv *priv = netdev_priv(dev);
1945 int val, ret = 0;
1946
1947 switch (tuna->id) {
1948 case ETHTOOL_TX_COPYBREAK:
1949 val = *(u32 *)data;
1950 if (val < MIN_PKT_LEN || val > MAX_INLINE)
1951 ret = -EINVAL;
1952 else
1953 priv->prof->inline_thold = val;
1954 break;
1955 default:
1956 ret = -EINVAL;
1957 break;
1958 }
1959
1960 return ret;
1961}
1962
7202da8b
SM
1963static int mlx4_en_get_module_info(struct net_device *dev,
1964 struct ethtool_modinfo *modinfo)
1965{
1966 struct mlx4_en_priv *priv = netdev_priv(dev);
1967 struct mlx4_en_dev *mdev = priv->mdev;
1968 int ret;
1969 u8 data[4];
1970
1971 /* Read first 2 bytes to get Module & REV ID */
1972 ret = mlx4_get_module_info(mdev->dev, priv->port,
1973 0/*offset*/, 2/*size*/, data);
1974 if (ret < 2)
1975 return -EIO;
1976
1977 switch (data[0] /* identifier */) {
1978 case MLX4_MODULE_ID_QSFP:
1979 modinfo->type = ETH_MODULE_SFF_8436;
1980 modinfo->eeprom_len = ETH_MODULE_SFF_8436_LEN;
1981 break;
1982 case MLX4_MODULE_ID_QSFP_PLUS:
1983 if (data[1] >= 0x3) { /* revision id */
1984 modinfo->type = ETH_MODULE_SFF_8636;
1985 modinfo->eeprom_len = ETH_MODULE_SFF_8636_LEN;
1986 } else {
1987 modinfo->type = ETH_MODULE_SFF_8436;
1988 modinfo->eeprom_len = ETH_MODULE_SFF_8436_LEN;
1989 }
1990 break;
1991 case MLX4_MODULE_ID_QSFP28:
1992 modinfo->type = ETH_MODULE_SFF_8636;
1993 modinfo->eeprom_len = ETH_MODULE_SFF_8636_LEN;
1994 break;
1995 case MLX4_MODULE_ID_SFP:
1996 modinfo->type = ETH_MODULE_SFF_8472;
1997 modinfo->eeprom_len = ETH_MODULE_SFF_8472_LEN;
1998 break;
1999 default:
72b8eaab 2000 return -EINVAL;
7202da8b
SM
2001 }
2002
2003 return 0;
2004}
2005
2006static int mlx4_en_get_module_eeprom(struct net_device *dev,
2007 struct ethtool_eeprom *ee,
2008 u8 *data)
2009{
2010 struct mlx4_en_priv *priv = netdev_priv(dev);
2011 struct mlx4_en_dev *mdev = priv->mdev;
2012 int offset = ee->offset;
2013 int i = 0, ret;
2014
2015 if (ee->len == 0)
2016 return -EINVAL;
2017
2018 memset(data, 0, ee->len);
2019
2020 while (i < ee->len) {
2021 en_dbg(DRV, priv,
2022 "mlx4_get_module_info i(%d) offset(%d) len(%d)\n",
2023 i, offset, ee->len - i);
2024
2025 ret = mlx4_get_module_info(mdev->dev, priv->port,
2026 offset, ee->len - i, data + i);
2027
2028 if (!ret) /* Done reading */
2029 return 0;
2030
2031 if (ret < 0) {
2032 en_err(priv,
2033 "mlx4_get_module_info i(%d) offset(%d) bytes_to_read(%d) - FAILED (0x%x)\n",
2034 i, offset, ee->len - i, ret);
2035 return 0;
2036 }
2037
2038 i += ret;
2039 offset += ret;
2040 }
2041 return 0;
2042}
0fef9d03 2043
51af33cf
IS
2044static int mlx4_en_set_phys_id(struct net_device *dev,
2045 enum ethtool_phys_id_state state)
2046{
2047 int err;
2048 u16 beacon_duration;
2049 struct mlx4_en_priv *priv = netdev_priv(dev);
2050 struct mlx4_en_dev *mdev = priv->mdev;
2051
2052 if (!(mdev->dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_PORT_BEACON))
2053 return -EOPNOTSUPP;
2054
2055 switch (state) {
2056 case ETHTOOL_ID_ACTIVE:
2057 beacon_duration = PORT_BEACON_MAX_LIMIT;
2058 break;
2059 case ETHTOOL_ID_INACTIVE:
2060 beacon_duration = 0;
2061 break;
2062 default:
2063 return -EOPNOTSUPP;
2064 }
2065
2066 err = mlx4_SET_PORT_BEACON(mdev->dev, priv->port, beacon_duration);
2067 return err;
2068}
2069
c27a02cd
YP
2070const struct ethtool_ops mlx4_en_ethtool_ops = {
2071 .get_drvinfo = mlx4_en_get_drvinfo,
3d8f7cc7
DD
2072 .get_link_ksettings = mlx4_en_get_link_ksettings,
2073 .set_link_ksettings = mlx4_en_set_link_ksettings,
c27a02cd 2074 .get_link = ethtool_op_get_link,
c27a02cd
YP
2075 .get_strings = mlx4_en_get_strings,
2076 .get_sset_count = mlx4_en_get_sset_count,
2077 .get_ethtool_stats = mlx4_en_get_ethtool_stats,
e7c1c2c4 2078 .self_test = mlx4_en_self_test,
51af33cf 2079 .set_phys_id = mlx4_en_set_phys_id,
c27a02cd 2080 .get_wol = mlx4_en_get_wol,
14c07b13 2081 .set_wol = mlx4_en_set_wol,
c27a02cd
YP
2082 .get_msglevel = mlx4_en_get_msglevel,
2083 .set_msglevel = mlx4_en_set_msglevel,
2084 .get_coalesce = mlx4_en_get_coalesce,
2085 .set_coalesce = mlx4_en_set_coalesce,
2086 .get_pauseparam = mlx4_en_get_pauseparam,
2087 .set_pauseparam = mlx4_en_set_pauseparam,
2088 .get_ringparam = mlx4_en_get_ringparam,
18cc42a3 2089 .set_ringparam = mlx4_en_set_ringparam,
93d3e367 2090 .get_rxnfc = mlx4_en_get_rxnfc,
82067281 2091 .set_rxnfc = mlx4_en_set_rxnfc,
93d3e367 2092 .get_rxfh_indir_size = mlx4_en_get_rxfh_indir_size,
b9d1ab7e 2093 .get_rxfh_key_size = mlx4_en_get_rxfh_key_size,
fe62d001
BH
2094 .get_rxfh = mlx4_en_get_rxfh,
2095 .set_rxfh = mlx4_en_set_rxfh,
d317966b
AV
2096 .get_channels = mlx4_en_get_channels,
2097 .set_channels = mlx4_en_set_channels,
ec693d47 2098 .get_ts_info = mlx4_en_get_ts_info,
0fef9d03
AV
2099 .set_priv_flags = mlx4_en_set_priv_flags,
2100 .get_priv_flags = mlx4_en_get_priv_flags,
1556b874
ED
2101 .get_tunable = mlx4_en_get_tunable,
2102 .set_tunable = mlx4_en_set_tunable,
7202da8b
SM
2103 .get_module_info = mlx4_en_get_module_info,
2104 .get_module_eeprom = mlx4_en_get_module_eeprom
c27a02cd
YP
2105};
2106
2107
2108
2109
2110