1 /*
2 * Copyright (c) 2015, 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 #include "en.h"
34
mlx5e_get_drvinfo(struct net_device * dev,struct ethtool_drvinfo * drvinfo)35 static void mlx5e_get_drvinfo(struct net_device *dev,
36 struct ethtool_drvinfo *drvinfo)
37 {
38 struct mlx5e_priv *priv = netdev_priv(dev);
39 struct mlx5_core_dev *mdev = priv->mdev;
40
41 strlcpy(drvinfo->driver, DRIVER_NAME, sizeof(drvinfo->driver));
42 strlcpy(drvinfo->version, DRIVER_VERSION " (" DRIVER_RELDATE ")",
43 sizeof(drvinfo->version));
44 snprintf(drvinfo->fw_version, sizeof(drvinfo->fw_version),
45 "%d.%d.%d",
46 fw_rev_maj(mdev), fw_rev_min(mdev), fw_rev_sub(mdev));
47 strlcpy(drvinfo->bus_info, pci_name(mdev->pdev),
48 sizeof(drvinfo->bus_info));
49 }
50
51 static const struct {
52 u32 supported;
53 u32 advertised;
54 u32 speed;
55 } ptys2ethtool_table[MLX5E_LINK_MODES_NUMBER] = {
56 [MLX5E_1000BASE_CX_SGMII] = {
57 .supported = SUPPORTED_1000baseKX_Full,
58 .advertised = ADVERTISED_1000baseKX_Full,
59 .speed = 1000,
60 },
61 [MLX5E_1000BASE_KX] = {
62 .supported = SUPPORTED_1000baseKX_Full,
63 .advertised = ADVERTISED_1000baseKX_Full,
64 .speed = 1000,
65 },
66 [MLX5E_10GBASE_CX4] = {
67 .supported = SUPPORTED_10000baseKX4_Full,
68 .advertised = ADVERTISED_10000baseKX4_Full,
69 .speed = 10000,
70 },
71 [MLX5E_10GBASE_KX4] = {
72 .supported = SUPPORTED_10000baseKX4_Full,
73 .advertised = ADVERTISED_10000baseKX4_Full,
74 .speed = 10000,
75 },
76 [MLX5E_10GBASE_KR] = {
77 .supported = SUPPORTED_10000baseKR_Full,
78 .advertised = ADVERTISED_10000baseKR_Full,
79 .speed = 10000,
80 },
81 [MLX5E_20GBASE_KR2] = {
82 .supported = SUPPORTED_20000baseKR2_Full,
83 .advertised = ADVERTISED_20000baseKR2_Full,
84 .speed = 20000,
85 },
86 [MLX5E_40GBASE_CR4] = {
87 .supported = SUPPORTED_40000baseCR4_Full,
88 .advertised = ADVERTISED_40000baseCR4_Full,
89 .speed = 40000,
90 },
91 [MLX5E_40GBASE_KR4] = {
92 .supported = SUPPORTED_40000baseKR4_Full,
93 .advertised = ADVERTISED_40000baseKR4_Full,
94 .speed = 40000,
95 },
96 [MLX5E_56GBASE_R4] = {
97 .supported = SUPPORTED_56000baseKR4_Full,
98 .advertised = ADVERTISED_56000baseKR4_Full,
99 .speed = 56000,
100 },
101 [MLX5E_10GBASE_CR] = {
102 .supported = SUPPORTED_10000baseKR_Full,
103 .advertised = ADVERTISED_10000baseKR_Full,
104 .speed = 10000,
105 },
106 [MLX5E_10GBASE_SR] = {
107 .supported = SUPPORTED_10000baseKR_Full,
108 .advertised = ADVERTISED_10000baseKR_Full,
109 .speed = 10000,
110 },
111 [MLX5E_10GBASE_ER] = {
112 .supported = SUPPORTED_10000baseKR_Full,
113 .advertised = ADVERTISED_10000baseKR_Full,
114 .speed = 10000,
115 },
116 [MLX5E_40GBASE_SR4] = {
117 .supported = SUPPORTED_40000baseSR4_Full,
118 .advertised = ADVERTISED_40000baseSR4_Full,
119 .speed = 40000,
120 },
121 [MLX5E_40GBASE_LR4] = {
122 .supported = SUPPORTED_40000baseLR4_Full,
123 .advertised = ADVERTISED_40000baseLR4_Full,
124 .speed = 40000,
125 },
126 [MLX5E_100GBASE_CR4] = {
127 .speed = 100000,
128 },
129 [MLX5E_100GBASE_SR4] = {
130 .speed = 100000,
131 },
132 [MLX5E_100GBASE_KR4] = {
133 .speed = 100000,
134 },
135 [MLX5E_100GBASE_LR4] = {
136 .speed = 100000,
137 },
138 [MLX5E_100BASE_TX] = {
139 .speed = 100,
140 },
141 [MLX5E_1000BASE_T] = {
142 .supported = SUPPORTED_1000baseT_Full,
143 .advertised = ADVERTISED_1000baseT_Full,
144 .speed = 1000,
145 },
146 [MLX5E_10GBASE_T] = {
147 .supported = SUPPORTED_10000baseT_Full,
148 .advertised = ADVERTISED_10000baseT_Full,
149 .speed = 1000,
150 },
151 [MLX5E_25GBASE_CR] = {
152 .speed = 25000,
153 },
154 [MLX5E_25GBASE_KR] = {
155 .speed = 25000,
156 },
157 [MLX5E_25GBASE_SR] = {
158 .speed = 25000,
159 },
160 [MLX5E_50GBASE_CR2] = {
161 .speed = 50000,
162 },
163 [MLX5E_50GBASE_KR2] = {
164 .speed = 50000,
165 },
166 };
167
mlx5e_get_sset_count(struct net_device * dev,int sset)168 static int mlx5e_get_sset_count(struct net_device *dev, int sset)
169 {
170 struct mlx5e_priv *priv = netdev_priv(dev);
171
172 switch (sset) {
173 case ETH_SS_STATS:
174 return NUM_VPORT_COUNTERS + NUM_PPORT_COUNTERS +
175 priv->params.num_channels * NUM_RQ_STATS +
176 priv->params.num_channels * priv->params.num_tc *
177 NUM_SQ_STATS;
178 /* fallthrough */
179 default:
180 return -EOPNOTSUPP;
181 }
182 }
183
mlx5e_get_strings(struct net_device * dev,uint32_t stringset,uint8_t * data)184 static void mlx5e_get_strings(struct net_device *dev,
185 uint32_t stringset, uint8_t *data)
186 {
187 int i, j, tc, idx = 0;
188 struct mlx5e_priv *priv = netdev_priv(dev);
189
190 switch (stringset) {
191 case ETH_SS_PRIV_FLAGS:
192 break;
193
194 case ETH_SS_TEST:
195 break;
196
197 case ETH_SS_STATS:
198 /* VPORT counters */
199 for (i = 0; i < NUM_VPORT_COUNTERS; i++)
200 strcpy(data + (idx++) * ETH_GSTRING_LEN,
201 vport_strings[i]);
202
203 /* PPORT counters */
204 for (i = 0; i < NUM_PPORT_COUNTERS; i++)
205 strcpy(data + (idx++) * ETH_GSTRING_LEN,
206 pport_strings[i]);
207
208 /* per channel counters */
209 for (i = 0; i < priv->params.num_channels; i++)
210 for (j = 0; j < NUM_RQ_STATS; j++)
211 sprintf(data + (idx++) * ETH_GSTRING_LEN,
212 "rx%d_%s", i, rq_stats_strings[j]);
213
214 for (i = 0; i < priv->params.num_channels; i++)
215 for (tc = 0; tc < priv->params.num_tc; tc++)
216 for (j = 0; j < NUM_SQ_STATS; j++)
217 sprintf(data +
218 (idx++) * ETH_GSTRING_LEN,
219 "tx%d_%d_%s", i, tc,
220 sq_stats_strings[j]);
221 break;
222 }
223 }
224
mlx5e_get_ethtool_stats(struct net_device * dev,struct ethtool_stats * stats,u64 * data)225 static void mlx5e_get_ethtool_stats(struct net_device *dev,
226 struct ethtool_stats *stats, u64 *data)
227 {
228 struct mlx5e_priv *priv = netdev_priv(dev);
229 int i, j, tc, idx = 0;
230
231 if (!data)
232 return;
233
234 mutex_lock(&priv->state_lock);
235 if (test_bit(MLX5E_STATE_OPENED, &priv->state))
236 mlx5e_update_stats(priv);
237 mutex_unlock(&priv->state_lock);
238
239 for (i = 0; i < NUM_VPORT_COUNTERS; i++)
240 data[idx++] = ((u64 *)&priv->stats.vport)[i];
241
242 for (i = 0; i < NUM_PPORT_COUNTERS; i++)
243 data[idx++] = be64_to_cpu(((__be64 *)&priv->stats.pport)[i]);
244
245 /* per channel counters */
246 for (i = 0; i < priv->params.num_channels; i++)
247 for (j = 0; j < NUM_RQ_STATS; j++)
248 data[idx++] = !test_bit(MLX5E_STATE_OPENED,
249 &priv->state) ? 0 :
250 ((u64 *)&priv->channel[i]->rq.stats)[j];
251
252 for (i = 0; i < priv->params.num_channels; i++)
253 for (tc = 0; tc < priv->params.num_tc; tc++)
254 for (j = 0; j < NUM_SQ_STATS; j++)
255 data[idx++] = !test_bit(MLX5E_STATE_OPENED,
256 &priv->state) ? 0 :
257 ((u64 *)&priv->channel[i]->sq[tc].stats)[j];
258 }
259
mlx5e_get_ringparam(struct net_device * dev,struct ethtool_ringparam * param)260 static void mlx5e_get_ringparam(struct net_device *dev,
261 struct ethtool_ringparam *param)
262 {
263 struct mlx5e_priv *priv = netdev_priv(dev);
264
265 param->rx_max_pending = 1 << MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE;
266 param->tx_max_pending = 1 << MLX5E_PARAMS_MAXIMUM_LOG_SQ_SIZE;
267 param->rx_pending = 1 << priv->params.log_rq_size;
268 param->tx_pending = 1 << priv->params.log_sq_size;
269 }
270
mlx5e_set_ringparam(struct net_device * dev,struct ethtool_ringparam * param)271 static int mlx5e_set_ringparam(struct net_device *dev,
272 struct ethtool_ringparam *param)
273 {
274 struct mlx5e_priv *priv = netdev_priv(dev);
275 bool was_opened;
276 u16 min_rx_wqes;
277 u8 log_rq_size;
278 u8 log_sq_size;
279 int err = 0;
280
281 if (param->rx_jumbo_pending) {
282 netdev_info(dev, "%s: rx_jumbo_pending not supported\n",
283 __func__);
284 return -EINVAL;
285 }
286 if (param->rx_mini_pending) {
287 netdev_info(dev, "%s: rx_mini_pending not supported\n",
288 __func__);
289 return -EINVAL;
290 }
291 if (param->rx_pending < (1 << MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE)) {
292 netdev_info(dev, "%s: rx_pending (%d) < min (%d)\n",
293 __func__, param->rx_pending,
294 1 << MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE);
295 return -EINVAL;
296 }
297 if (param->rx_pending > (1 << MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE)) {
298 netdev_info(dev, "%s: rx_pending (%d) > max (%d)\n",
299 __func__, param->rx_pending,
300 1 << MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE);
301 return -EINVAL;
302 }
303 if (param->tx_pending < (1 << MLX5E_PARAMS_MINIMUM_LOG_SQ_SIZE)) {
304 netdev_info(dev, "%s: tx_pending (%d) < min (%d)\n",
305 __func__, param->tx_pending,
306 1 << MLX5E_PARAMS_MINIMUM_LOG_SQ_SIZE);
307 return -EINVAL;
308 }
309 if (param->tx_pending > (1 << MLX5E_PARAMS_MAXIMUM_LOG_SQ_SIZE)) {
310 netdev_info(dev, "%s: tx_pending (%d) > max (%d)\n",
311 __func__, param->tx_pending,
312 1 << MLX5E_PARAMS_MAXIMUM_LOG_SQ_SIZE);
313 return -EINVAL;
314 }
315
316 log_rq_size = order_base_2(param->rx_pending);
317 log_sq_size = order_base_2(param->tx_pending);
318 min_rx_wqes = min_t(u16, param->rx_pending - 1,
319 MLX5E_PARAMS_DEFAULT_MIN_RX_WQES);
320
321 if (log_rq_size == priv->params.log_rq_size &&
322 log_sq_size == priv->params.log_sq_size &&
323 min_rx_wqes == priv->params.min_rx_wqes)
324 return 0;
325
326 mutex_lock(&priv->state_lock);
327
328 was_opened = test_bit(MLX5E_STATE_OPENED, &priv->state);
329 if (was_opened)
330 mlx5e_close_locked(dev);
331
332 priv->params.log_rq_size = log_rq_size;
333 priv->params.log_sq_size = log_sq_size;
334 priv->params.min_rx_wqes = min_rx_wqes;
335
336 if (was_opened)
337 err = mlx5e_open_locked(dev);
338
339 mutex_unlock(&priv->state_lock);
340
341 return err;
342 }
343
mlx5e_get_channels(struct net_device * dev,struct ethtool_channels * ch)344 static void mlx5e_get_channels(struct net_device *dev,
345 struct ethtool_channels *ch)
346 {
347 struct mlx5e_priv *priv = netdev_priv(dev);
348
349 ch->max_combined = mlx5e_get_max_num_channels(priv->mdev);
350 ch->combined_count = priv->params.num_channels;
351 }
352
mlx5e_set_channels(struct net_device * dev,struct ethtool_channels * ch)353 static int mlx5e_set_channels(struct net_device *dev,
354 struct ethtool_channels *ch)
355 {
356 struct mlx5e_priv *priv = netdev_priv(dev);
357 int ncv = mlx5e_get_max_num_channels(priv->mdev);
358 unsigned int count = ch->combined_count;
359 bool was_opened;
360 int err = 0;
361
362 if (!count) {
363 netdev_info(dev, "%s: combined_count=0 not supported\n",
364 __func__);
365 return -EINVAL;
366 }
367 if (ch->rx_count || ch->tx_count) {
368 netdev_info(dev, "%s: separate rx/tx count not supported\n",
369 __func__);
370 return -EINVAL;
371 }
372 if (count > ncv) {
373 netdev_info(dev, "%s: count (%d) > max (%d)\n",
374 __func__, count, ncv);
375 return -EINVAL;
376 }
377
378 if (priv->params.num_channels == count)
379 return 0;
380
381 mutex_lock(&priv->state_lock);
382
383 was_opened = test_bit(MLX5E_STATE_OPENED, &priv->state);
384 if (was_opened)
385 mlx5e_close_locked(dev);
386
387 priv->params.num_channels = count;
388 mlx5e_build_default_indir_rqt(priv->params.indirection_rqt,
389 MLX5E_INDIR_RQT_SIZE, count);
390
391 if (was_opened)
392 err = mlx5e_open_locked(dev);
393
394 mutex_unlock(&priv->state_lock);
395
396 return err;
397 }
398
mlx5e_get_coalesce(struct net_device * netdev,struct ethtool_coalesce * coal)399 static int mlx5e_get_coalesce(struct net_device *netdev,
400 struct ethtool_coalesce *coal)
401 {
402 struct mlx5e_priv *priv = netdev_priv(netdev);
403
404 if (!MLX5_CAP_GEN(priv->mdev, cq_moderation))
405 return -ENOTSUPP;
406
407 coal->rx_coalesce_usecs = priv->params.rx_cq_moderation_usec;
408 coal->rx_max_coalesced_frames = priv->params.rx_cq_moderation_pkts;
409 coal->tx_coalesce_usecs = priv->params.tx_cq_moderation_usec;
410 coal->tx_max_coalesced_frames = priv->params.tx_cq_moderation_pkts;
411
412 return 0;
413 }
414
mlx5e_set_coalesce(struct net_device * netdev,struct ethtool_coalesce * coal)415 static int mlx5e_set_coalesce(struct net_device *netdev,
416 struct ethtool_coalesce *coal)
417 {
418 struct mlx5e_priv *priv = netdev_priv(netdev);
419 struct mlx5_core_dev *mdev = priv->mdev;
420 struct mlx5e_channel *c;
421 int tc;
422 int i;
423
424 if (!MLX5_CAP_GEN(mdev, cq_moderation))
425 return -ENOTSUPP;
426
427 mutex_lock(&priv->state_lock);
428 priv->params.tx_cq_moderation_usec = coal->tx_coalesce_usecs;
429 priv->params.tx_cq_moderation_pkts = coal->tx_max_coalesced_frames;
430 priv->params.rx_cq_moderation_usec = coal->rx_coalesce_usecs;
431 priv->params.rx_cq_moderation_pkts = coal->rx_max_coalesced_frames;
432
433 if (!test_bit(MLX5E_STATE_OPENED, &priv->state))
434 goto out;
435
436 for (i = 0; i < priv->params.num_channels; ++i) {
437 c = priv->channel[i];
438
439 for (tc = 0; tc < c->num_tc; tc++) {
440 mlx5_core_modify_cq_moderation(mdev,
441 &c->sq[tc].cq.mcq,
442 coal->tx_coalesce_usecs,
443 coal->tx_max_coalesced_frames);
444 }
445
446 mlx5_core_modify_cq_moderation(mdev, &c->rq.cq.mcq,
447 coal->rx_coalesce_usecs,
448 coal->rx_max_coalesced_frames);
449 }
450
451 out:
452 mutex_unlock(&priv->state_lock);
453 return 0;
454 }
455
ptys2ethtool_supported_link(u32 eth_proto_cap)456 static u32 ptys2ethtool_supported_link(u32 eth_proto_cap)
457 {
458 int i;
459 u32 supported_modes = 0;
460
461 for (i = 0; i < MLX5E_LINK_MODES_NUMBER; ++i) {
462 if (eth_proto_cap & MLX5E_PROT_MASK(i))
463 supported_modes |= ptys2ethtool_table[i].supported;
464 }
465 return supported_modes;
466 }
467
ptys2ethtool_adver_link(u32 eth_proto_cap)468 static u32 ptys2ethtool_adver_link(u32 eth_proto_cap)
469 {
470 int i;
471 u32 advertising_modes = 0;
472
473 for (i = 0; i < MLX5E_LINK_MODES_NUMBER; ++i) {
474 if (eth_proto_cap & MLX5E_PROT_MASK(i))
475 advertising_modes |= ptys2ethtool_table[i].advertised;
476 }
477 return advertising_modes;
478 }
479
ptys2ethtool_supported_port(u32 eth_proto_cap)480 static u32 ptys2ethtool_supported_port(u32 eth_proto_cap)
481 {
482 if (eth_proto_cap & (MLX5E_PROT_MASK(MLX5E_10GBASE_CR)
483 | MLX5E_PROT_MASK(MLX5E_10GBASE_SR)
484 | MLX5E_PROT_MASK(MLX5E_40GBASE_CR4)
485 | MLX5E_PROT_MASK(MLX5E_40GBASE_SR4)
486 | MLX5E_PROT_MASK(MLX5E_100GBASE_SR4)
487 | MLX5E_PROT_MASK(MLX5E_1000BASE_CX_SGMII))) {
488 return SUPPORTED_FIBRE;
489 }
490
491 if (eth_proto_cap & (MLX5E_PROT_MASK(MLX5E_100GBASE_KR4)
492 | MLX5E_PROT_MASK(MLX5E_40GBASE_KR4)
493 | MLX5E_PROT_MASK(MLX5E_10GBASE_KR)
494 | MLX5E_PROT_MASK(MLX5E_10GBASE_KX4)
495 | MLX5E_PROT_MASK(MLX5E_1000BASE_KX))) {
496 return SUPPORTED_Backplane;
497 }
498 return 0;
499 }
500
get_speed_duplex(struct net_device * netdev,u32 eth_proto_oper,struct ethtool_cmd * cmd)501 static void get_speed_duplex(struct net_device *netdev,
502 u32 eth_proto_oper,
503 struct ethtool_cmd *cmd)
504 {
505 int i;
506 u32 speed = SPEED_UNKNOWN;
507 u8 duplex = DUPLEX_UNKNOWN;
508
509 if (!netif_carrier_ok(netdev))
510 goto out;
511
512 for (i = 0; i < MLX5E_LINK_MODES_NUMBER; ++i) {
513 if (eth_proto_oper & MLX5E_PROT_MASK(i)) {
514 speed = ptys2ethtool_table[i].speed;
515 duplex = DUPLEX_FULL;
516 break;
517 }
518 }
519 out:
520 ethtool_cmd_speed_set(cmd, speed);
521 cmd->duplex = duplex;
522 }
523
get_supported(u32 eth_proto_cap,u32 * supported)524 static void get_supported(u32 eth_proto_cap, u32 *supported)
525 {
526 *supported |= ptys2ethtool_supported_port(eth_proto_cap);
527 *supported |= ptys2ethtool_supported_link(eth_proto_cap);
528 *supported |= SUPPORTED_Pause | SUPPORTED_Asym_Pause;
529 }
530
get_advertising(u32 eth_proto_cap,u8 tx_pause,u8 rx_pause,u32 * advertising)531 static void get_advertising(u32 eth_proto_cap, u8 tx_pause,
532 u8 rx_pause, u32 *advertising)
533 {
534 *advertising |= ptys2ethtool_adver_link(eth_proto_cap);
535 *advertising |= tx_pause ? ADVERTISED_Pause : 0;
536 *advertising |= (tx_pause ^ rx_pause) ? ADVERTISED_Asym_Pause : 0;
537 }
538
get_connector_port(u32 eth_proto)539 static u8 get_connector_port(u32 eth_proto)
540 {
541 if (eth_proto & (MLX5E_PROT_MASK(MLX5E_10GBASE_SR)
542 | MLX5E_PROT_MASK(MLX5E_40GBASE_SR4)
543 | MLX5E_PROT_MASK(MLX5E_100GBASE_SR4)
544 | MLX5E_PROT_MASK(MLX5E_1000BASE_CX_SGMII))) {
545 return PORT_FIBRE;
546 }
547
548 if (eth_proto & (MLX5E_PROT_MASK(MLX5E_40GBASE_CR4)
549 | MLX5E_PROT_MASK(MLX5E_10GBASE_CR)
550 | MLX5E_PROT_MASK(MLX5E_100GBASE_CR4))) {
551 return PORT_DA;
552 }
553
554 if (eth_proto & (MLX5E_PROT_MASK(MLX5E_10GBASE_KX4)
555 | MLX5E_PROT_MASK(MLX5E_10GBASE_KR)
556 | MLX5E_PROT_MASK(MLX5E_40GBASE_KR4)
557 | MLX5E_PROT_MASK(MLX5E_100GBASE_KR4))) {
558 return PORT_NONE;
559 }
560
561 return PORT_OTHER;
562 }
563
get_lp_advertising(u32 eth_proto_lp,u32 * lp_advertising)564 static void get_lp_advertising(u32 eth_proto_lp, u32 *lp_advertising)
565 {
566 *lp_advertising = ptys2ethtool_adver_link(eth_proto_lp);
567 }
568
mlx5e_get_settings(struct net_device * netdev,struct ethtool_cmd * cmd)569 static int mlx5e_get_settings(struct net_device *netdev,
570 struct ethtool_cmd *cmd)
571 {
572 struct mlx5e_priv *priv = netdev_priv(netdev);
573 struct mlx5_core_dev *mdev = priv->mdev;
574 u32 out[MLX5_ST_SZ_DW(ptys_reg)];
575 u32 eth_proto_cap;
576 u32 eth_proto_admin;
577 u32 eth_proto_lp;
578 u32 eth_proto_oper;
579 int err;
580
581 err = mlx5_query_port_ptys(mdev, out, sizeof(out), MLX5_PTYS_EN, 1);
582
583 if (err) {
584 netdev_err(netdev, "%s: query port ptys failed: %d\n",
585 __func__, err);
586 goto err_query_ptys;
587 }
588
589 eth_proto_cap = MLX5_GET(ptys_reg, out, eth_proto_capability);
590 eth_proto_admin = MLX5_GET(ptys_reg, out, eth_proto_admin);
591 eth_proto_oper = MLX5_GET(ptys_reg, out, eth_proto_oper);
592 eth_proto_lp = MLX5_GET(ptys_reg, out, eth_proto_lp_advertise);
593
594 cmd->supported = 0;
595 cmd->advertising = 0;
596
597 get_supported(eth_proto_cap, &cmd->supported);
598 get_advertising(eth_proto_admin, 0, 0, &cmd->advertising);
599 get_speed_duplex(netdev, eth_proto_oper, cmd);
600
601 eth_proto_oper = eth_proto_oper ? eth_proto_oper : eth_proto_cap;
602
603 cmd->port = get_connector_port(eth_proto_oper);
604 get_lp_advertising(eth_proto_lp, &cmd->lp_advertising);
605
606 cmd->transceiver = XCVR_INTERNAL;
607
608 err_query_ptys:
609 return err;
610 }
611
mlx5e_ethtool2ptys_adver_link(u32 link_modes)612 static u32 mlx5e_ethtool2ptys_adver_link(u32 link_modes)
613 {
614 u32 i, ptys_modes = 0;
615
616 for (i = 0; i < MLX5E_LINK_MODES_NUMBER; ++i) {
617 if (ptys2ethtool_table[i].advertised & link_modes)
618 ptys_modes |= MLX5E_PROT_MASK(i);
619 }
620
621 return ptys_modes;
622 }
623
mlx5e_ethtool2ptys_speed_link(u32 speed)624 static u32 mlx5e_ethtool2ptys_speed_link(u32 speed)
625 {
626 u32 i, speed_links = 0;
627
628 for (i = 0; i < MLX5E_LINK_MODES_NUMBER; ++i) {
629 if (ptys2ethtool_table[i].speed == speed)
630 speed_links |= MLX5E_PROT_MASK(i);
631 }
632
633 return speed_links;
634 }
635
mlx5e_set_settings(struct net_device * netdev,struct ethtool_cmd * cmd)636 static int mlx5e_set_settings(struct net_device *netdev,
637 struct ethtool_cmd *cmd)
638 {
639 struct mlx5e_priv *priv = netdev_priv(netdev);
640 struct mlx5_core_dev *mdev = priv->mdev;
641 u32 link_modes;
642 u32 speed;
643 u32 eth_proto_cap, eth_proto_admin;
644 enum mlx5_port_status ps;
645 int err;
646
647 speed = ethtool_cmd_speed(cmd);
648
649 link_modes = cmd->autoneg == AUTONEG_ENABLE ?
650 mlx5e_ethtool2ptys_adver_link(cmd->advertising) :
651 mlx5e_ethtool2ptys_speed_link(speed);
652
653 err = mlx5_query_port_proto_cap(mdev, ð_proto_cap, MLX5_PTYS_EN);
654 if (err) {
655 netdev_err(netdev, "%s: query port eth proto cap failed: %d\n",
656 __func__, err);
657 goto out;
658 }
659
660 link_modes = link_modes & eth_proto_cap;
661 if (!link_modes) {
662 netdev_err(netdev, "%s: Not supported link mode(s) requested",
663 __func__);
664 err = -EINVAL;
665 goto out;
666 }
667
668 err = mlx5_query_port_proto_admin(mdev, ð_proto_admin, MLX5_PTYS_EN);
669 if (err) {
670 netdev_err(netdev, "%s: query port eth proto admin failed: %d\n",
671 __func__, err);
672 goto out;
673 }
674
675 if (link_modes == eth_proto_admin)
676 goto out;
677
678 mlx5_query_port_admin_status(mdev, &ps);
679 if (ps == MLX5_PORT_UP)
680 mlx5_set_port_admin_status(mdev, MLX5_PORT_DOWN);
681 mlx5_set_port_proto(mdev, link_modes, MLX5_PTYS_EN);
682 if (ps == MLX5_PORT_UP)
683 mlx5_set_port_admin_status(mdev, MLX5_PORT_UP);
684
685 out:
686 return err;
687 }
688
mlx5e_get_rxfh_key_size(struct net_device * netdev)689 static u32 mlx5e_get_rxfh_key_size(struct net_device *netdev)
690 {
691 struct mlx5e_priv *priv = netdev_priv(netdev);
692
693 return sizeof(priv->params.toeplitz_hash_key);
694 }
695
mlx5e_get_rxfh_indir_size(struct net_device * netdev)696 static u32 mlx5e_get_rxfh_indir_size(struct net_device *netdev)
697 {
698 return MLX5E_INDIR_RQT_SIZE;
699 }
700
mlx5e_get_rxfh(struct net_device * netdev,u32 * indir,u8 * key,u8 * hfunc)701 static int mlx5e_get_rxfh(struct net_device *netdev, u32 *indir, u8 *key,
702 u8 *hfunc)
703 {
704 struct mlx5e_priv *priv = netdev_priv(netdev);
705
706 if (indir)
707 memcpy(indir, priv->params.indirection_rqt,
708 sizeof(priv->params.indirection_rqt));
709
710 if (key)
711 memcpy(key, priv->params.toeplitz_hash_key,
712 sizeof(priv->params.toeplitz_hash_key));
713
714 if (hfunc)
715 *hfunc = priv->params.rss_hfunc;
716
717 return 0;
718 }
719
mlx5e_set_rxfh(struct net_device * dev,const u32 * indir,const u8 * key,const u8 hfunc)720 static int mlx5e_set_rxfh(struct net_device *dev, const u32 *indir,
721 const u8 *key, const u8 hfunc)
722 {
723 struct mlx5e_priv *priv = netdev_priv(dev);
724 bool close_open;
725 int err = 0;
726
727 if ((hfunc != ETH_RSS_HASH_NO_CHANGE) &&
728 (hfunc != ETH_RSS_HASH_XOR) &&
729 (hfunc != ETH_RSS_HASH_TOP))
730 return -EINVAL;
731
732 mutex_lock(&priv->state_lock);
733
734 if (indir) {
735 memcpy(priv->params.indirection_rqt, indir,
736 sizeof(priv->params.indirection_rqt));
737 mlx5e_redirect_rqt(priv, MLX5E_INDIRECTION_RQT);
738 }
739
740 close_open = (key || (hfunc != ETH_RSS_HASH_NO_CHANGE)) &&
741 test_bit(MLX5E_STATE_OPENED, &priv->state);
742 if (close_open)
743 mlx5e_close_locked(dev);
744
745 if (key)
746 memcpy(priv->params.toeplitz_hash_key, key,
747 sizeof(priv->params.toeplitz_hash_key));
748
749 if (hfunc != ETH_RSS_HASH_NO_CHANGE)
750 priv->params.rss_hfunc = hfunc;
751
752 if (close_open)
753 err = mlx5e_open_locked(priv->netdev);
754
755 mutex_unlock(&priv->state_lock);
756
757 return err;
758 }
759
mlx5e_get_rxnfc(struct net_device * netdev,struct ethtool_rxnfc * info,u32 * rule_locs)760 static int mlx5e_get_rxnfc(struct net_device *netdev,
761 struct ethtool_rxnfc *info, u32 *rule_locs)
762 {
763 struct mlx5e_priv *priv = netdev_priv(netdev);
764 int err = 0;
765
766 switch (info->cmd) {
767 case ETHTOOL_GRXRINGS:
768 info->data = priv->params.num_channels;
769 break;
770 default:
771 err = -EOPNOTSUPP;
772 break;
773 }
774
775 return err;
776 }
777
mlx5e_get_tunable(struct net_device * dev,const struct ethtool_tunable * tuna,void * data)778 static int mlx5e_get_tunable(struct net_device *dev,
779 const struct ethtool_tunable *tuna,
780 void *data)
781 {
782 const struct mlx5e_priv *priv = netdev_priv(dev);
783 int err = 0;
784
785 switch (tuna->id) {
786 case ETHTOOL_TX_COPYBREAK:
787 *(u32 *)data = priv->params.tx_max_inline;
788 break;
789 default:
790 err = -EINVAL;
791 break;
792 }
793
794 return err;
795 }
796
mlx5e_set_tunable(struct net_device * dev,const struct ethtool_tunable * tuna,const void * data)797 static int mlx5e_set_tunable(struct net_device *dev,
798 const struct ethtool_tunable *tuna,
799 const void *data)
800 {
801 struct mlx5e_priv *priv = netdev_priv(dev);
802 struct mlx5_core_dev *mdev = priv->mdev;
803 bool was_opened;
804 u32 val;
805 int err = 0;
806
807 switch (tuna->id) {
808 case ETHTOOL_TX_COPYBREAK:
809 val = *(u32 *)data;
810 if (val > mlx5e_get_max_inline_cap(mdev)) {
811 err = -EINVAL;
812 break;
813 }
814
815 mutex_lock(&priv->state_lock);
816
817 was_opened = test_bit(MLX5E_STATE_OPENED, &priv->state);
818 if (was_opened)
819 mlx5e_close_locked(dev);
820
821 priv->params.tx_max_inline = val;
822
823 if (was_opened)
824 err = mlx5e_open_locked(dev);
825
826 mutex_unlock(&priv->state_lock);
827 break;
828 default:
829 err = -EINVAL;
830 break;
831 }
832
833 return err;
834 }
835
mlx5e_get_pauseparam(struct net_device * netdev,struct ethtool_pauseparam * pauseparam)836 static void mlx5e_get_pauseparam(struct net_device *netdev,
837 struct ethtool_pauseparam *pauseparam)
838 {
839 struct mlx5e_priv *priv = netdev_priv(netdev);
840 struct mlx5_core_dev *mdev = priv->mdev;
841 int err;
842
843 err = mlx5_query_port_pause(mdev, &pauseparam->rx_pause,
844 &pauseparam->tx_pause);
845 if (err) {
846 netdev_err(netdev, "%s: mlx5_query_port_pause failed:0x%x\n",
847 __func__, err);
848 }
849 }
850
mlx5e_set_pauseparam(struct net_device * netdev,struct ethtool_pauseparam * pauseparam)851 static int mlx5e_set_pauseparam(struct net_device *netdev,
852 struct ethtool_pauseparam *pauseparam)
853 {
854 struct mlx5e_priv *priv = netdev_priv(netdev);
855 struct mlx5_core_dev *mdev = priv->mdev;
856 int err;
857
858 if (!MLX5_CAP_GEN(mdev, vport_group_manager))
859 return -EOPNOTSUPP;
860
861 if (pauseparam->autoneg)
862 return -EINVAL;
863
864 err = mlx5_set_port_pause(mdev,
865 pauseparam->rx_pause ? 1 : 0,
866 pauseparam->tx_pause ? 1 : 0);
867 if (err) {
868 netdev_err(netdev, "%s: mlx5_set_port_pause failed:0x%x\n",
869 __func__, err);
870 }
871
872 return err;
873 }
874
875 const struct ethtool_ops mlx5e_ethtool_ops = {
876 .get_drvinfo = mlx5e_get_drvinfo,
877 .get_link = ethtool_op_get_link,
878 .get_strings = mlx5e_get_strings,
879 .get_sset_count = mlx5e_get_sset_count,
880 .get_ethtool_stats = mlx5e_get_ethtool_stats,
881 .get_ringparam = mlx5e_get_ringparam,
882 .set_ringparam = mlx5e_set_ringparam,
883 .get_channels = mlx5e_get_channels,
884 .set_channels = mlx5e_set_channels,
885 .get_coalesce = mlx5e_get_coalesce,
886 .set_coalesce = mlx5e_set_coalesce,
887 .get_settings = mlx5e_get_settings,
888 .set_settings = mlx5e_set_settings,
889 .get_rxfh_key_size = mlx5e_get_rxfh_key_size,
890 .get_rxfh_indir_size = mlx5e_get_rxfh_indir_size,
891 .get_rxfh = mlx5e_get_rxfh,
892 .set_rxfh = mlx5e_set_rxfh,
893 .get_rxnfc = mlx5e_get_rxnfc,
894 .get_tunable = mlx5e_get_tunable,
895 .set_tunable = mlx5e_set_tunable,
896 .get_pauseparam = mlx5e_get_pauseparam,
897 .set_pauseparam = mlx5e_set_pauseparam,
898 };
899