be2net: fix multicast filter programming
[deliverable/linux.git] / drivers / net / ethernet / emulex / benet / be_ethtool.c
CommitLineData
6b7c5b94 1/*
d2145cde 2 * Copyright (C) 2005 - 2011 Emulex
6b7c5b94
SP
3 * All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License version 2
7 * as published by the Free Software Foundation. The full GNU General
8 * Public License is included in this distribution in the file called COPYING.
9 *
10 * Contact Information:
d2145cde 11 * linux-drivers@emulex.com
6b7c5b94 12 *
d2145cde
AK
13 * Emulex
14 * 3333 Susan Street
15 * Costa Mesa, CA 92626
6b7c5b94
SP
16 */
17
18#include "be.h"
8788fdc2 19#include "be_cmds.h"
6b7c5b94
SP
20#include <linux/ethtool.h>
21
22struct be_ethtool_stat {
23 char desc[ETH_GSTRING_LEN];
24 int type;
25 int size;
26 int offset;
27};
28
ac124ff9 29enum {DRVSTAT_TX, DRVSTAT_RX, DRVSTAT};
6b7c5b94
SP
30#define FIELDINFO(_struct, field) FIELD_SIZEOF(_struct, field), \
31 offsetof(_struct, field)
3abcdeda
SP
32#define DRVSTAT_TX_INFO(field) #field, DRVSTAT_TX,\
33 FIELDINFO(struct be_tx_stats, field)
34#define DRVSTAT_RX_INFO(field) #field, DRVSTAT_RX,\
35 FIELDINFO(struct be_rx_stats, field)
609ff3bb 36#define DRVSTAT_INFO(field) #field, DRVSTAT,\
ac124ff9 37 FIELDINFO(struct be_drv_stats, field)
6b7c5b94
SP
38
39static const struct be_ethtool_stat et_stats[] = {
ac124ff9 40 {DRVSTAT_INFO(tx_events)},
89a88ab8
AK
41 {DRVSTAT_INFO(rx_crc_errors)},
42 {DRVSTAT_INFO(rx_alignment_symbol_errors)},
43 {DRVSTAT_INFO(rx_pause_frames)},
44 {DRVSTAT_INFO(rx_control_frames)},
45 {DRVSTAT_INFO(rx_in_range_errors)},
46 {DRVSTAT_INFO(rx_out_range_errors)},
47 {DRVSTAT_INFO(rx_frame_too_long)},
48 {DRVSTAT_INFO(rx_address_match_errors)},
49 {DRVSTAT_INFO(rx_dropped_too_small)},
50 {DRVSTAT_INFO(rx_dropped_too_short)},
51 {DRVSTAT_INFO(rx_dropped_header_too_small)},
52 {DRVSTAT_INFO(rx_dropped_tcp_length)},
53 {DRVSTAT_INFO(rx_dropped_runt)},
54 {DRVSTAT_INFO(rxpp_fifo_overflow_drop)},
55 {DRVSTAT_INFO(rx_input_fifo_overflow_drop)},
56 {DRVSTAT_INFO(rx_ip_checksum_errs)},
57 {DRVSTAT_INFO(rx_tcp_checksum_errs)},
58 {DRVSTAT_INFO(rx_udp_checksum_errs)},
89a88ab8
AK
59 {DRVSTAT_INFO(tx_pauseframes)},
60 {DRVSTAT_INFO(tx_controlframes)},
61 {DRVSTAT_INFO(rx_priority_pause_frames)},
62 {DRVSTAT_INFO(pmem_fifo_overflow_drop)},
63 {DRVSTAT_INFO(jabber_events)},
64 {DRVSTAT_INFO(rx_drops_no_pbuf)},
65 {DRVSTAT_INFO(rx_drops_no_txpb)},
66 {DRVSTAT_INFO(rx_drops_no_erx_descr)},
67 {DRVSTAT_INFO(rx_drops_no_tpre_descr)},
68 {DRVSTAT_INFO(rx_drops_too_many_frags)},
69 {DRVSTAT_INFO(rx_drops_invalid_ring)},
70 {DRVSTAT_INFO(forwarded_packets)},
71 {DRVSTAT_INFO(rx_drops_mtu)},
72 {DRVSTAT_INFO(eth_red_drops)},
609ff3bb 73 {DRVSTAT_INFO(be_on_die_temperature)}
6b7c5b94
SP
74};
75#define ETHTOOL_STATS_NUM ARRAY_SIZE(et_stats)
76
ab1594e9
SP
77/* Stats related to multi RX queues: get_stats routine assumes bytes, pkts
78 * are first and second members respectively.
79 */
3abcdeda 80static const struct be_ethtool_stat et_rx_stats[] = {
ab1594e9
SP
81 {DRVSTAT_RX_INFO(rx_bytes)},/* If moving this member see above note */
82 {DRVSTAT_RX_INFO(rx_pkts)}, /* If moving this member see above note */
3abcdeda
SP
83 {DRVSTAT_RX_INFO(rx_polls)},
84 {DRVSTAT_RX_INFO(rx_events)},
85 {DRVSTAT_RX_INFO(rx_compl)},
86 {DRVSTAT_RX_INFO(rx_mcast_pkts)},
87 {DRVSTAT_RX_INFO(rx_post_fail)},
ac124ff9
SP
88 {DRVSTAT_RX_INFO(rx_drops_no_skbs)},
89 {DRVSTAT_RX_INFO(rx_drops_no_frags)}
3abcdeda
SP
90};
91#define ETHTOOL_RXSTATS_NUM (ARRAY_SIZE(et_rx_stats))
92
ab1594e9
SP
93/* Stats related to multi TX queues: get_stats routine assumes compl is the
94 * first member
95 */
3c8def97 96static const struct be_ethtool_stat et_tx_stats[] = {
ab1594e9 97 {DRVSTAT_TX_INFO(tx_compl)}, /* If moving this member see above note */
ac124ff9
SP
98 {DRVSTAT_TX_INFO(tx_bytes)},
99 {DRVSTAT_TX_INFO(tx_pkts)},
100 {DRVSTAT_TX_INFO(tx_reqs)},
101 {DRVSTAT_TX_INFO(tx_wrbs)},
102 {DRVSTAT_TX_INFO(tx_compl)},
103 {DRVSTAT_TX_INFO(tx_stops)}
3c8def97
SP
104};
105#define ETHTOOL_TXSTATS_NUM (ARRAY_SIZE(et_tx_stats))
106
ff33a6e2
S
107static const char et_self_tests[][ETH_GSTRING_LEN] = {
108 "MAC Loopback test",
109 "PHY Loopback test",
110 "External Loopback test",
4ee77214 111 "DDR DMA test",
4276e47e 112 "Link test"
ff33a6e2
S
113};
114
115#define ETHTOOL_TESTS_NUM ARRAY_SIZE(et_self_tests)
116#define BE_MAC_LOOPBACK 0x0
117#define BE_PHY_LOOPBACK 0x1
118#define BE_ONE_PORT_EXT_LOOPBACK 0x2
fced9999 119#define BE_NO_LOOPBACK 0xff
ff33a6e2 120
6b7c5b94
SP
121static void
122be_get_drvinfo(struct net_device *netdev, struct ethtool_drvinfo *drvinfo)
123{
124 struct be_adapter *adapter = netdev_priv(netdev);
125
126 strcpy(drvinfo->driver, DRV_NAME);
127 strcpy(drvinfo->version, DRV_VER);
128 strncpy(drvinfo->fw_version, adapter->fw_ver, FW_VER_LEN);
129 strcpy(drvinfo->bus_info, pci_name(adapter->pdev));
130 drvinfo->testinfo_len = 0;
131 drvinfo->regdump_len = 0;
132 drvinfo->eedump_len = 0;
133}
134
311fddc7
SK
135static int
136be_get_reg_len(struct net_device *netdev)
137{
138 struct be_adapter *adapter = netdev_priv(netdev);
139 u32 log_size = 0;
140
16a871ef
AK
141 if (be_physfn(adapter))
142 be_cmd_get_reg_len(adapter, &log_size);
143
311fddc7
SK
144 return log_size;
145}
146
147static void
148be_get_regs(struct net_device *netdev, struct ethtool_regs *regs, void *buf)
149{
150 struct be_adapter *adapter = netdev_priv(netdev);
151
16a871ef
AK
152 if (be_physfn(adapter)) {
153 memset(buf, 0, regs->len);
154 be_cmd_get_regs(adapter, regs->len, buf);
155 }
311fddc7
SK
156}
157
6b7c5b94
SP
158static int
159be_get_coalesce(struct net_device *netdev, struct ethtool_coalesce *coalesce)
160{
161 struct be_adapter *adapter = netdev_priv(netdev);
3abcdeda 162 struct be_eq_obj *rx_eq = &adapter->rx_obj[0].rx_eq;
6b7c5b94
SP
163 struct be_eq_obj *tx_eq = &adapter->tx_eq;
164
6b7c5b94
SP
165 coalesce->rx_coalesce_usecs = rx_eq->cur_eqd;
166 coalesce->rx_coalesce_usecs_high = rx_eq->max_eqd;
167 coalesce->rx_coalesce_usecs_low = rx_eq->min_eqd;
168
169 coalesce->tx_coalesce_usecs = tx_eq->cur_eqd;
170 coalesce->tx_coalesce_usecs_high = tx_eq->max_eqd;
171 coalesce->tx_coalesce_usecs_low = tx_eq->min_eqd;
172
173 coalesce->use_adaptive_rx_coalesce = rx_eq->enable_aic;
174 coalesce->use_adaptive_tx_coalesce = tx_eq->enable_aic;
175
176 return 0;
177}
178
179/*
5be93b9a 180 * This routine is used to set interrup coalescing delay
6b7c5b94
SP
181 */
182static int
183be_set_coalesce(struct net_device *netdev, struct ethtool_coalesce *coalesce)
184{
185 struct be_adapter *adapter = netdev_priv(netdev);
3abcdeda
SP
186 struct be_rx_obj *rxo;
187 struct be_eq_obj *rx_eq;
6b7c5b94 188 struct be_eq_obj *tx_eq = &adapter->tx_eq;
6b7c5b94 189 u32 rx_max, rx_min, rx_cur;
3abcdeda 190 int status = 0, i;
03746b0a 191 u32 tx_cur;
6b7c5b94
SP
192
193 if (coalesce->use_adaptive_tx_coalesce == 1)
194 return -EINVAL;
195
3abcdeda
SP
196 for_all_rx_queues(adapter, rxo, i) {
197 rx_eq = &rxo->rx_eq;
198
199 if (!rx_eq->enable_aic && coalesce->use_adaptive_rx_coalesce)
200 rx_eq->cur_eqd = 0;
201 rx_eq->enable_aic = coalesce->use_adaptive_rx_coalesce;
202
203 rx_max = coalesce->rx_coalesce_usecs_high;
204 rx_min = coalesce->rx_coalesce_usecs_low;
205 rx_cur = coalesce->rx_coalesce_usecs;
206
207 if (rx_eq->enable_aic) {
208 if (rx_max > BE_MAX_EQD)
209 rx_max = BE_MAX_EQD;
210 if (rx_min > rx_max)
211 rx_min = rx_max;
212 rx_eq->max_eqd = rx_max;
213 rx_eq->min_eqd = rx_min;
214 if (rx_eq->cur_eqd > rx_max)
215 rx_eq->cur_eqd = rx_max;
216 if (rx_eq->cur_eqd < rx_min)
217 rx_eq->cur_eqd = rx_min;
218 } else {
219 if (rx_cur > BE_MAX_EQD)
220 rx_cur = BE_MAX_EQD;
221 if (rx_eq->cur_eqd != rx_cur) {
222 status = be_cmd_modify_eqd(adapter, rx_eq->q.id,
223 rx_cur);
224 if (!status)
225 rx_eq->cur_eqd = rx_cur;
226 }
227 }
6b7c5b94 228 }
6b7c5b94 229
6b7c5b94
SP
230 tx_cur = coalesce->tx_coalesce_usecs;
231
232 if (tx_cur > BE_MAX_EQD)
233 tx_cur = BE_MAX_EQD;
234 if (tx_eq->cur_eqd != tx_cur) {
8788fdc2 235 status = be_cmd_modify_eqd(adapter, tx_eq->q.id, tx_cur);
6b7c5b94
SP
236 if (!status)
237 tx_eq->cur_eqd = tx_cur;
238 }
239
6b7c5b94
SP
240 return 0;
241}
242
6b7c5b94
SP
243static void
244be_get_ethtool_stats(struct net_device *netdev,
245 struct ethtool_stats *stats, uint64_t *data)
246{
247 struct be_adapter *adapter = netdev_priv(netdev);
3abcdeda 248 struct be_rx_obj *rxo;
3c8def97 249 struct be_tx_obj *txo;
ac124ff9 250 void *p;
ab1594e9 251 unsigned int i, j, base = 0, start;
6b7c5b94
SP
252
253 for (i = 0; i < ETHTOOL_STATS_NUM; i++) {
ac124ff9 254 p = (u8 *)&adapter->drv_stats + et_stats[i].offset;
ab1594e9 255 data[i] = *(u32 *)p;
6b7c5b94 256 }
ab1594e9 257 base += ETHTOOL_STATS_NUM;
3abcdeda
SP
258
259 for_all_rx_queues(adapter, rxo, j) {
ab1594e9
SP
260 struct be_rx_stats *stats = rx_stats(rxo);
261
262 do {
263 start = u64_stats_fetch_begin_bh(&stats->sync);
264 data[base] = stats->rx_bytes;
265 data[base + 1] = stats->rx_pkts;
266 } while (u64_stats_fetch_retry_bh(&stats->sync, start));
267
268 for (i = 2; i < ETHTOOL_RXSTATS_NUM; i++) {
269 p = (u8 *)stats + et_rx_stats[i].offset;
270 data[base + i] = *(u32 *)p;
3abcdeda 271 }
ab1594e9 272 base += ETHTOOL_RXSTATS_NUM;
3abcdeda 273 }
3c8def97 274
3c8def97 275 for_all_tx_queues(adapter, txo, j) {
ab1594e9
SP
276 struct be_tx_stats *stats = tx_stats(txo);
277
278 do {
279 start = u64_stats_fetch_begin_bh(&stats->sync_compl);
280 data[base] = stats->tx_compl;
281 } while (u64_stats_fetch_retry_bh(&stats->sync_compl, start));
282
283 do {
284 start = u64_stats_fetch_begin_bh(&stats->sync);
285 for (i = 1; i < ETHTOOL_TXSTATS_NUM; i++) {
286 p = (u8 *)stats + et_tx_stats[i].offset;
287 data[base + i] =
288 (et_tx_stats[i].size == sizeof(u64)) ?
289 *(u64 *)p : *(u32 *)p;
290 }
291 } while (u64_stats_fetch_retry_bh(&stats->sync, start));
292 base += ETHTOOL_TXSTATS_NUM;
3c8def97 293 }
6b7c5b94
SP
294}
295
296static void
297be_get_stat_strings(struct net_device *netdev, uint32_t stringset,
298 uint8_t *data)
299{
3abcdeda
SP
300 struct be_adapter *adapter = netdev_priv(netdev);
301 int i, j;
302
6b7c5b94
SP
303 switch (stringset) {
304 case ETH_SS_STATS:
305 for (i = 0; i < ETHTOOL_STATS_NUM; i++) {
306 memcpy(data, et_stats[i].desc, ETH_GSTRING_LEN);
307 data += ETH_GSTRING_LEN;
308 }
3abcdeda
SP
309 for (i = 0; i < adapter->num_rx_qs; i++) {
310 for (j = 0; j < ETHTOOL_RXSTATS_NUM; j++) {
311 sprintf(data, "rxq%d: %s", i,
312 et_rx_stats[j].desc);
313 data += ETH_GSTRING_LEN;
314 }
315 }
3c8def97
SP
316 for (i = 0; i < adapter->num_tx_qs; i++) {
317 for (j = 0; j < ETHTOOL_TXSTATS_NUM; j++) {
318 sprintf(data, "txq%d: %s", i,
319 et_tx_stats[j].desc);
320 data += ETH_GSTRING_LEN;
321 }
322 }
6b7c5b94 323 break;
ff33a6e2
S
324 case ETH_SS_TEST:
325 for (i = 0; i < ETHTOOL_TESTS_NUM; i++) {
326 memcpy(data, et_self_tests[i], ETH_GSTRING_LEN);
327 data += ETH_GSTRING_LEN;
328 }
329 break;
6b7c5b94
SP
330 }
331}
332
15f0a394 333static int be_get_sset_count(struct net_device *netdev, int stringset)
6b7c5b94 334{
3abcdeda
SP
335 struct be_adapter *adapter = netdev_priv(netdev);
336
15f0a394 337 switch (stringset) {
ff33a6e2
S
338 case ETH_SS_TEST:
339 return ETHTOOL_TESTS_NUM;
15f0a394 340 case ETH_SS_STATS:
3abcdeda 341 return ETHTOOL_STATS_NUM +
3c8def97
SP
342 adapter->num_rx_qs * ETHTOOL_RXSTATS_NUM +
343 adapter->num_tx_qs * ETHTOOL_TXSTATS_NUM;
15f0a394
BH
344 default:
345 return -EINVAL;
346 }
6b7c5b94
SP
347}
348
349static int be_get_settings(struct net_device *netdev, struct ethtool_cmd *ecmd)
350{
0388f251 351 struct be_adapter *adapter = netdev_priv(netdev);
306f1348 352 struct be_phy_info phy_info;
ee3cb629 353 u8 mac_speed = 0;
0388f251 354 u16 link_speed = 0;
0dffc83e
AK
355 int status;
356
48e9989e 357 if ((adapter->link_speed < 0) || (!(netdev->flags & IFF_UP))) {
ea172a01
SP
358 status = be_cmd_link_status_query(adapter, &mac_speed,
359 &link_speed, 0);
0dffc83e
AK
360
361 /* link_speed is in units of 10 Mbps */
362 if (link_speed) {
70739497 363 ethtool_cmd_speed_set(ecmd, link_speed*10);
0dffc83e
AK
364 } else {
365 switch (mac_speed) {
4fa9ed07 366 case PHY_LINK_SPEED_10MBPS:
70739497 367 ethtool_cmd_speed_set(ecmd, SPEED_10);
4fa9ed07
AK
368 break;
369 case PHY_LINK_SPEED_100MBPS:
70739497 370 ethtool_cmd_speed_set(ecmd, SPEED_100);
4fa9ed07 371 break;
0dffc83e 372 case PHY_LINK_SPEED_1GBPS:
70739497 373 ethtool_cmd_speed_set(ecmd, SPEED_1000);
0dffc83e
AK
374 break;
375 case PHY_LINK_SPEED_10GBPS:
70739497 376 ethtool_cmd_speed_set(ecmd, SPEED_10000);
0dffc83e 377 break;
4fa9ed07 378 case PHY_LINK_SPEED_ZERO:
70739497 379 ethtool_cmd_speed_set(ecmd, 0);
4fa9ed07 380 break;
0dffc83e
AK
381 }
382 }
0388f251 383
306f1348 384 status = be_cmd_get_phy_info(adapter, &phy_info);
16c02145 385 if (!status) {
306f1348 386 switch (phy_info.interface_type) {
ee3cb629
AK
387 case PHY_TYPE_XFP_10GB:
388 case PHY_TYPE_SFP_1GB:
389 case PHY_TYPE_SFP_PLUS_10GB:
16c02145 390 ecmd->port = PORT_FIBRE;
16c02145
SB
391 break;
392 default:
393 ecmd->port = PORT_TP;
16c02145
SB
394 break;
395 }
ee3cb629 396
306f1348 397 switch (phy_info.interface_type) {
ee3cb629
AK
398 case PHY_TYPE_KR_10GB:
399 case PHY_TYPE_KX4_10GB:
400 ecmd->autoneg = AUTONEG_ENABLE;
16c02145 401 ecmd->transceiver = XCVR_INTERNAL;
ee3cb629
AK
402 break;
403 default:
404 ecmd->autoneg = AUTONEG_DISABLE;
405 ecmd->transceiver = XCVR_EXTERNAL;
406 break;
407 }
0388f251 408 }
0dffc83e
AK
409
410 /* Save for future use */
70739497 411 adapter->link_speed = ethtool_cmd_speed(ecmd);
0dffc83e 412 adapter->port_type = ecmd->port;
16c02145 413 adapter->transceiver = ecmd->transceiver;
ee3cb629 414 adapter->autoneg = ecmd->autoneg;
0dffc83e 415 } else {
70739497 416 ethtool_cmd_speed_set(ecmd, adapter->link_speed);
0dffc83e 417 ecmd->port = adapter->port_type;
16c02145 418 ecmd->transceiver = adapter->transceiver;
ee3cb629 419 ecmd->autoneg = adapter->autoneg;
0388f251 420 }
0dffc83e 421
6b7c5b94 422 ecmd->duplex = DUPLEX_FULL;
0388f251 423 ecmd->phy_address = adapter->port_num;
16c02145
SB
424 switch (ecmd->port) {
425 case PORT_FIBRE:
426 ecmd->supported = (SUPPORTED_10000baseT_Full | SUPPORTED_FIBRE);
427 break;
428 case PORT_TP:
429 ecmd->supported = (SUPPORTED_10000baseT_Full | SUPPORTED_TP);
430 break;
431 case PORT_AUI:
432 ecmd->supported = (SUPPORTED_10000baseT_Full | SUPPORTED_AUI);
433 break;
434 }
0388f251 435
ee3cb629
AK
436 if (ecmd->autoneg) {
437 ecmd->supported |= SUPPORTED_1000baseT_Full;
438 ecmd->supported |= SUPPORTED_Autoneg;
439 ecmd->advertising |= (ADVERTISED_10000baseT_Full |
440 ADVERTISED_1000baseT_Full);
441 }
442
6b7c5b94
SP
443 return 0;
444}
445
446static void
447be_get_ringparam(struct net_device *netdev, struct ethtool_ringparam *ring)
448{
449 struct be_adapter *adapter = netdev_priv(netdev);
450
3abcdeda 451 ring->rx_max_pending = adapter->rx_obj[0].q.len;
3c8def97 452 ring->tx_max_pending = adapter->tx_obj[0].q.len;
6b7c5b94 453
3abcdeda 454 ring->rx_pending = atomic_read(&adapter->rx_obj[0].q.used);
3c8def97 455 ring->tx_pending = atomic_read(&adapter->tx_obj[0].q.used);
6b7c5b94
SP
456}
457
458static void
459be_get_pauseparam(struct net_device *netdev, struct ethtool_pauseparam *ecmd)
460{
461 struct be_adapter *adapter = netdev_priv(netdev);
462
8788fdc2 463 be_cmd_get_flow_control(adapter, &ecmd->tx_pause, &ecmd->rx_pause);
03a980d1 464 ecmd->autoneg = 0;
6b7c5b94
SP
465}
466
467static int
468be_set_pauseparam(struct net_device *netdev, struct ethtool_pauseparam *ecmd)
469{
470 struct be_adapter *adapter = netdev_priv(netdev);
471 int status;
472
03a980d1 473 if (ecmd->autoneg != 0)
6b7c5b94 474 return -EINVAL;
9e90c961
AK
475 adapter->tx_fc = ecmd->tx_pause;
476 adapter->rx_fc = ecmd->rx_pause;
6b7c5b94 477
9e90c961
AK
478 status = be_cmd_set_flow_control(adapter,
479 adapter->tx_fc, adapter->rx_fc);
480 if (status)
6b7c5b94
SP
481 dev_warn(&adapter->pdev->dev, "Pause param set failed.\n");
482
483 return status;
484}
485
fad9ab2c 486static int
1a642469 487be_set_phys_id(struct net_device *netdev,
488 enum ethtool_phys_id_state state)
fad9ab2c
SB
489{
490 struct be_adapter *adapter = netdev_priv(netdev);
fad9ab2c 491
1a642469 492 switch (state) {
493 case ETHTOOL_ID_ACTIVE:
494 be_cmd_get_beacon_state(adapter, adapter->hba_port_num,
495 &adapter->beacon_state);
fce55922 496 return 1; /* cycle on/off once per second */
fad9ab2c 497
1a642469 498 case ETHTOOL_ID_ON:
499 be_cmd_set_beacon_state(adapter, adapter->hba_port_num, 0, 0,
500 BEACON_STATE_ENABLED);
501 break;
fad9ab2c 502
1a642469 503 case ETHTOOL_ID_OFF:
504 be_cmd_set_beacon_state(adapter, adapter->hba_port_num, 0, 0,
505 BEACON_STATE_DISABLED);
506 break;
fad9ab2c 507
1a642469 508 case ETHTOOL_ID_INACTIVE:
509 be_cmd_set_beacon_state(adapter, adapter->hba_port_num, 0, 0,
510 adapter->beacon_state);
511 }
fad9ab2c 512
1a642469 513 return 0;
fad9ab2c
SB
514}
515
dcf96f1f
AK
516static bool
517be_is_wol_supported(struct be_adapter *adapter)
518{
519 if (!be_physfn(adapter))
520 return false;
521 else
522 return true;
523}
524
71d8d1b5
AK
525static void
526be_get_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
527{
528 struct be_adapter *adapter = netdev_priv(netdev);
529
dcf96f1f
AK
530 if (be_is_wol_supported(adapter))
531 wol->supported = WAKE_MAGIC;
532
71d8d1b5
AK
533 if (adapter->wol)
534 wol->wolopts = WAKE_MAGIC;
535 else
536 wol->wolopts = 0;
537 memset(&wol->sopass, 0, sizeof(wol->sopass));
71d8d1b5
AK
538}
539
540static int
541be_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
542{
543 struct be_adapter *adapter = netdev_priv(netdev);
544
545 if (wol->wolopts & ~WAKE_MAGIC)
546 return -EINVAL;
547
dcf96f1f 548 if ((wol->wolopts & WAKE_MAGIC) && be_is_wol_supported(adapter))
71d8d1b5
AK
549 adapter->wol = true;
550 else
551 adapter->wol = false;
552
553 return 0;
554}
555
ff33a6e2
S
556static int
557be_test_ddr_dma(struct be_adapter *adapter)
558{
559 int ret, i;
560 struct be_dma_mem ddrdma_cmd;
215faf9c
JP
561 static const u64 pattern[2] = {
562 0x5a5a5a5a5a5a5a5aULL, 0xa5a5a5a5a5a5a5a5ULL
563 };
ff33a6e2
S
564
565 ddrdma_cmd.size = sizeof(struct be_cmd_req_ddrdma_test);
2b7bcebf
IV
566 ddrdma_cmd.va = dma_alloc_coherent(&adapter->pdev->dev, ddrdma_cmd.size,
567 &ddrdma_cmd.dma, GFP_KERNEL);
ff33a6e2 568 if (!ddrdma_cmd.va) {
2381a55c 569 dev_err(&adapter->pdev->dev, "Memory allocation failure\n");
ff33a6e2
S
570 return -ENOMEM;
571 }
572
573 for (i = 0; i < 2; i++) {
574 ret = be_cmd_ddr_dma_test(adapter, pattern[i],
575 4096, &ddrdma_cmd);
576 if (ret != 0)
577 goto err;
578 }
579
580err:
2b7bcebf
IV
581 dma_free_coherent(&adapter->pdev->dev, ddrdma_cmd.size, ddrdma_cmd.va,
582 ddrdma_cmd.dma);
ff33a6e2
S
583 return ret;
584}
585
fced9999
SB
586static u64 be_loopback_test(struct be_adapter *adapter, u8 loopback_type,
587 u64 *status)
588{
9e1453c5 589 be_cmd_set_loopback(adapter, adapter->hba_port_num,
fced9999 590 loopback_type, 1);
9e1453c5 591 *status = be_cmd_loopback_test(adapter, adapter->hba_port_num,
fced9999
SB
592 loopback_type, 1500,
593 2, 0xabc);
9e1453c5 594 be_cmd_set_loopback(adapter, adapter->hba_port_num,
fced9999
SB
595 BE_NO_LOOPBACK, 1);
596 return *status;
597}
598
ff33a6e2
S
599static void
600be_self_test(struct net_device *netdev, struct ethtool_test *test, u64 *data)
601{
602 struct be_adapter *adapter = netdev_priv(netdev);
4276e47e
SB
603 u8 mac_speed = 0;
604 u16 qos_link_speed = 0;
ff33a6e2
S
605
606 memset(data, 0, sizeof(u64) * ETHTOOL_TESTS_NUM);
607
608 if (test->flags & ETH_TEST_FL_OFFLINE) {
fced9999
SB
609 if (be_loopback_test(adapter, BE_MAC_LOOPBACK,
610 &data[0]) != 0) {
ff33a6e2 611 test->flags |= ETH_TEST_FL_FAILED;
fced9999
SB
612 }
613 if (be_loopback_test(adapter, BE_PHY_LOOPBACK,
614 &data[1]) != 0) {
ff33a6e2 615 test->flags |= ETH_TEST_FL_FAILED;
fced9999
SB
616 }
617 if (be_loopback_test(adapter, BE_ONE_PORT_EXT_LOOPBACK,
618 &data[2]) != 0) {
ff33a6e2 619 test->flags |= ETH_TEST_FL_FAILED;
fced9999 620 }
8f47afe0 621 }
ff33a6e2 622
8f47afe0
SB
623 if (be_test_ddr_dma(adapter) != 0) {
624 data[3] = 1;
625 test->flags |= ETH_TEST_FL_FAILED;
ff33a6e2
S
626 }
627
ea172a01 628 if (be_cmd_link_status_query(adapter, &mac_speed,
187e8756 629 &qos_link_speed, 0) != 0) {
4276e47e
SB
630 test->flags |= ETH_TEST_FL_FAILED;
631 data[4] = -1;
4ee77214
AK
632 } else if (!mac_speed) {
633 test->flags |= ETH_TEST_FL_FAILED;
4276e47e
SB
634 data[4] = 1;
635 }
ff33a6e2
S
636}
637
84517482
AK
638static int
639be_do_flash(struct net_device *netdev, struct ethtool_flash *efl)
640{
641 struct be_adapter *adapter = netdev_priv(netdev);
642 char file_name[ETHTOOL_FLASH_MAX_FILENAME];
84517482
AK
643
644 file_name[ETHTOOL_FLASH_MAX_FILENAME - 1] = 0;
645 strcpy(file_name, efl->data);
84517482
AK
646
647 return be_load_fw(adapter, file_name);
648}
649
368c0ca2
SB
650static int
651be_get_eeprom_len(struct net_device *netdev)
652{
653 return BE_READ_SEEPROM_LEN;
654}
655
656static int
657be_read_eeprom(struct net_device *netdev, struct ethtool_eeprom *eeprom,
658 uint8_t *data)
659{
660 struct be_adapter *adapter = netdev_priv(netdev);
661 struct be_dma_mem eeprom_cmd;
662 struct be_cmd_resp_seeprom_read *resp;
663 int status;
664
665 if (!eeprom->len)
666 return -EINVAL;
667
668 eeprom->magic = BE_VENDOR_ID | (adapter->pdev->device<<16);
669
670 memset(&eeprom_cmd, 0, sizeof(struct be_dma_mem));
671 eeprom_cmd.size = sizeof(struct be_cmd_req_seeprom_read);
2b7bcebf
IV
672 eeprom_cmd.va = dma_alloc_coherent(&adapter->pdev->dev, eeprom_cmd.size,
673 &eeprom_cmd.dma, GFP_KERNEL);
368c0ca2
SB
674
675 if (!eeprom_cmd.va) {
676 dev_err(&adapter->pdev->dev,
677 "Memory allocation failure. Could not read eeprom\n");
678 return -ENOMEM;
679 }
680
681 status = be_cmd_get_seeprom_data(adapter, &eeprom_cmd);
682
683 if (!status) {
43d620c8 684 resp = eeprom_cmd.va;
c0ad9845 685 memcpy(data, resp->seeprom_data + eeprom->offset, eeprom->len);
368c0ca2 686 }
2b7bcebf
IV
687 dma_free_coherent(&adapter->pdev->dev, eeprom_cmd.size, eeprom_cmd.va,
688 eeprom_cmd.dma);
368c0ca2
SB
689
690 return status;
691}
692
0fc0b732 693const struct ethtool_ops be_ethtool_ops = {
6b7c5b94
SP
694 .get_settings = be_get_settings,
695 .get_drvinfo = be_get_drvinfo,
71d8d1b5
AK
696 .get_wol = be_get_wol,
697 .set_wol = be_set_wol,
6b7c5b94 698 .get_link = ethtool_op_get_link,
368c0ca2
SB
699 .get_eeprom_len = be_get_eeprom_len,
700 .get_eeprom = be_read_eeprom,
6b7c5b94
SP
701 .get_coalesce = be_get_coalesce,
702 .set_coalesce = be_set_coalesce,
703 .get_ringparam = be_get_ringparam,
704 .get_pauseparam = be_get_pauseparam,
705 .set_pauseparam = be_set_pauseparam,
6b7c5b94 706 .get_strings = be_get_stat_strings,
1a642469 707 .set_phys_id = be_set_phys_id,
15f0a394 708 .get_sset_count = be_get_sset_count,
6b7c5b94 709 .get_ethtool_stats = be_get_ethtool_stats,
311fddc7
SK
710 .get_regs_len = be_get_reg_len,
711 .get_regs = be_get_regs,
84517482 712 .flash_device = be_do_flash,
ff33a6e2 713 .self_test = be_self_test,
6b7c5b94 714};
This page took 0.314386 seconds and 5 git commands to generate.