1 /* Intel PRO/1000 Linux driver
2 * Copyright(c) 1999 - 2015 Intel Corporation.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * The full GNU General Public License is included in this distribution in
14 * the file called "COPYING".
16 * Contact Information:
17 * Linux NICS <linux.nics@intel.com>
18 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
19 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
22 /* ethtool support for e1000 */
24 #include <linux/netdevice.h>
25 #include <linux/interrupt.h>
26 #include <linux/ethtool.h>
27 #include <linux/pci.h>
28 #include <linux/slab.h>
29 #include <linux/delay.h>
30 #include <linux/vmalloc.h>
31 #include <linux/pm_runtime.h>
35 enum { NETDEV_STATS
, E1000_STATS
};
38 char stat_string
[ETH_GSTRING_LEN
];
44 #define E1000_STAT(str, m) { \
46 .type = E1000_STATS, \
47 .sizeof_stat = sizeof(((struct e1000_adapter *)0)->m), \
48 .stat_offset = offsetof(struct e1000_adapter, m) }
49 #define E1000_NETDEV_STAT(str, m) { \
51 .type = NETDEV_STATS, \
52 .sizeof_stat = sizeof(((struct rtnl_link_stats64 *)0)->m), \
53 .stat_offset = offsetof(struct rtnl_link_stats64, m) }
55 static const struct e1000_stats e1000_gstrings_stats
[] = {
56 E1000_STAT("rx_packets", stats
.gprc
),
57 E1000_STAT("tx_packets", stats
.gptc
),
58 E1000_STAT("rx_bytes", stats
.gorc
),
59 E1000_STAT("tx_bytes", stats
.gotc
),
60 E1000_STAT("rx_broadcast", stats
.bprc
),
61 E1000_STAT("tx_broadcast", stats
.bptc
),
62 E1000_STAT("rx_multicast", stats
.mprc
),
63 E1000_STAT("tx_multicast", stats
.mptc
),
64 E1000_NETDEV_STAT("rx_errors", rx_errors
),
65 E1000_NETDEV_STAT("tx_errors", tx_errors
),
66 E1000_NETDEV_STAT("tx_dropped", tx_dropped
),
67 E1000_STAT("multicast", stats
.mprc
),
68 E1000_STAT("collisions", stats
.colc
),
69 E1000_NETDEV_STAT("rx_length_errors", rx_length_errors
),
70 E1000_NETDEV_STAT("rx_over_errors", rx_over_errors
),
71 E1000_STAT("rx_crc_errors", stats
.crcerrs
),
72 E1000_NETDEV_STAT("rx_frame_errors", rx_frame_errors
),
73 E1000_STAT("rx_no_buffer_count", stats
.rnbc
),
74 E1000_STAT("rx_missed_errors", stats
.mpc
),
75 E1000_STAT("tx_aborted_errors", stats
.ecol
),
76 E1000_STAT("tx_carrier_errors", stats
.tncrs
),
77 E1000_NETDEV_STAT("tx_fifo_errors", tx_fifo_errors
),
78 E1000_NETDEV_STAT("tx_heartbeat_errors", tx_heartbeat_errors
),
79 E1000_STAT("tx_window_errors", stats
.latecol
),
80 E1000_STAT("tx_abort_late_coll", stats
.latecol
),
81 E1000_STAT("tx_deferred_ok", stats
.dc
),
82 E1000_STAT("tx_single_coll_ok", stats
.scc
),
83 E1000_STAT("tx_multi_coll_ok", stats
.mcc
),
84 E1000_STAT("tx_timeout_count", tx_timeout_count
),
85 E1000_STAT("tx_restart_queue", restart_queue
),
86 E1000_STAT("rx_long_length_errors", stats
.roc
),
87 E1000_STAT("rx_short_length_errors", stats
.ruc
),
88 E1000_STAT("rx_align_errors", stats
.algnerrc
),
89 E1000_STAT("tx_tcp_seg_good", stats
.tsctc
),
90 E1000_STAT("tx_tcp_seg_failed", stats
.tsctfc
),
91 E1000_STAT("rx_flow_control_xon", stats
.xonrxc
),
92 E1000_STAT("rx_flow_control_xoff", stats
.xoffrxc
),
93 E1000_STAT("tx_flow_control_xon", stats
.xontxc
),
94 E1000_STAT("tx_flow_control_xoff", stats
.xofftxc
),
95 E1000_STAT("rx_csum_offload_good", hw_csum_good
),
96 E1000_STAT("rx_csum_offload_errors", hw_csum_err
),
97 E1000_STAT("rx_header_split", rx_hdr_split
),
98 E1000_STAT("alloc_rx_buff_failed", alloc_rx_buff_failed
),
99 E1000_STAT("tx_smbus", stats
.mgptc
),
100 E1000_STAT("rx_smbus", stats
.mgprc
),
101 E1000_STAT("dropped_smbus", stats
.mgpdc
),
102 E1000_STAT("rx_dma_failed", rx_dma_failed
),
103 E1000_STAT("tx_dma_failed", tx_dma_failed
),
104 E1000_STAT("rx_hwtstamp_cleared", rx_hwtstamp_cleared
),
105 E1000_STAT("uncorr_ecc_errors", uncorr_errors
),
106 E1000_STAT("corr_ecc_errors", corr_errors
),
107 E1000_STAT("tx_hwtstamp_timeouts", tx_hwtstamp_timeouts
),
110 #define E1000_GLOBAL_STATS_LEN ARRAY_SIZE(e1000_gstrings_stats)
111 #define E1000_STATS_LEN (E1000_GLOBAL_STATS_LEN)
112 static const char e1000_gstrings_test
[][ETH_GSTRING_LEN
] = {
113 "Register test (offline)", "Eeprom test (offline)",
114 "Interrupt test (offline)", "Loopback test (offline)",
115 "Link test (on/offline)"
118 #define E1000_TEST_LEN ARRAY_SIZE(e1000_gstrings_test)
120 static int e1000_get_settings(struct net_device
*netdev
,
121 struct ethtool_cmd
*ecmd
)
123 struct e1000_adapter
*adapter
= netdev_priv(netdev
);
124 struct e1000_hw
*hw
= &adapter
->hw
;
127 if (hw
->phy
.media_type
== e1000_media_type_copper
) {
128 ecmd
->supported
= (SUPPORTED_10baseT_Half
|
129 SUPPORTED_10baseT_Full
|
130 SUPPORTED_100baseT_Half
|
131 SUPPORTED_100baseT_Full
|
132 SUPPORTED_1000baseT_Full
|
135 if (hw
->phy
.type
== e1000_phy_ife
)
136 ecmd
->supported
&= ~SUPPORTED_1000baseT_Full
;
137 ecmd
->advertising
= ADVERTISED_TP
;
139 if (hw
->mac
.autoneg
== 1) {
140 ecmd
->advertising
|= ADVERTISED_Autoneg
;
141 /* the e1000 autoneg seems to match ethtool nicely */
142 ecmd
->advertising
|= hw
->phy
.autoneg_advertised
;
145 ecmd
->port
= PORT_TP
;
146 ecmd
->phy_address
= hw
->phy
.addr
;
147 ecmd
->transceiver
= XCVR_INTERNAL
;
150 ecmd
->supported
= (SUPPORTED_1000baseT_Full
|
154 ecmd
->advertising
= (ADVERTISED_1000baseT_Full
|
158 ecmd
->port
= PORT_FIBRE
;
159 ecmd
->transceiver
= XCVR_EXTERNAL
;
162 speed
= SPEED_UNKNOWN
;
163 ecmd
->duplex
= DUPLEX_UNKNOWN
;
165 if (netif_running(netdev
)) {
166 if (netif_carrier_ok(netdev
)) {
167 speed
= adapter
->link_speed
;
168 ecmd
->duplex
= adapter
->link_duplex
- 1;
170 } else if (!pm_runtime_suspended(netdev
->dev
.parent
)) {
171 u32 status
= er32(STATUS
);
173 if (status
& E1000_STATUS_LU
) {
174 if (status
& E1000_STATUS_SPEED_1000
)
176 else if (status
& E1000_STATUS_SPEED_100
)
181 if (status
& E1000_STATUS_FD
)
182 ecmd
->duplex
= DUPLEX_FULL
;
184 ecmd
->duplex
= DUPLEX_HALF
;
188 ethtool_cmd_speed_set(ecmd
, speed
);
189 ecmd
->autoneg
= ((hw
->phy
.media_type
== e1000_media_type_fiber
) ||
190 hw
->mac
.autoneg
) ? AUTONEG_ENABLE
: AUTONEG_DISABLE
;
192 /* MDI-X => 2; MDI =>1; Invalid =>0 */
193 if ((hw
->phy
.media_type
== e1000_media_type_copper
) &&
194 netif_carrier_ok(netdev
))
195 ecmd
->eth_tp_mdix
= hw
->phy
.is_mdix
? ETH_TP_MDI_X
: ETH_TP_MDI
;
197 ecmd
->eth_tp_mdix
= ETH_TP_MDI_INVALID
;
199 if (hw
->phy
.mdix
== AUTO_ALL_MODES
)
200 ecmd
->eth_tp_mdix_ctrl
= ETH_TP_MDI_AUTO
;
202 ecmd
->eth_tp_mdix_ctrl
= hw
->phy
.mdix
;
207 static int e1000_set_spd_dplx(struct e1000_adapter
*adapter
, u32 spd
, u8 dplx
)
209 struct e1000_mac_info
*mac
= &adapter
->hw
.mac
;
213 /* Make sure dplx is at most 1 bit and lsb of speed is not set
214 * for the switch() below to work
216 if ((spd
& 1) || (dplx
& ~1))
219 /* Fiber NICs only allow 1000 gbps Full duplex */
220 if ((adapter
->hw
.phy
.media_type
== e1000_media_type_fiber
) &&
221 (spd
!= SPEED_1000
) && (dplx
!= DUPLEX_FULL
)) {
225 switch (spd
+ dplx
) {
226 case SPEED_10
+ DUPLEX_HALF
:
227 mac
->forced_speed_duplex
= ADVERTISE_10_HALF
;
229 case SPEED_10
+ DUPLEX_FULL
:
230 mac
->forced_speed_duplex
= ADVERTISE_10_FULL
;
232 case SPEED_100
+ DUPLEX_HALF
:
233 mac
->forced_speed_duplex
= ADVERTISE_100_HALF
;
235 case SPEED_100
+ DUPLEX_FULL
:
236 mac
->forced_speed_duplex
= ADVERTISE_100_FULL
;
238 case SPEED_1000
+ DUPLEX_FULL
:
240 adapter
->hw
.phy
.autoneg_advertised
= ADVERTISE_1000_FULL
;
242 case SPEED_1000
+ DUPLEX_HALF
: /* not supported */
247 /* clear MDI, MDI(-X) override is only allowed when autoneg enabled */
248 adapter
->hw
.phy
.mdix
= AUTO_ALL_MODES
;
253 e_err("Unsupported Speed/Duplex configuration\n");
257 static int e1000_set_settings(struct net_device
*netdev
,
258 struct ethtool_cmd
*ecmd
)
260 struct e1000_adapter
*adapter
= netdev_priv(netdev
);
261 struct e1000_hw
*hw
= &adapter
->hw
;
264 pm_runtime_get_sync(netdev
->dev
.parent
);
266 /* When SoL/IDER sessions are active, autoneg/speed/duplex
269 if (hw
->phy
.ops
.check_reset_block
&&
270 hw
->phy
.ops
.check_reset_block(hw
)) {
271 e_err("Cannot change link characteristics when SoL/IDER is active.\n");
276 /* MDI setting is only allowed when autoneg enabled because
277 * some hardware doesn't allow MDI setting when speed or
280 if (ecmd
->eth_tp_mdix_ctrl
) {
281 if (hw
->phy
.media_type
!= e1000_media_type_copper
) {
282 ret_val
= -EOPNOTSUPP
;
286 if ((ecmd
->eth_tp_mdix_ctrl
!= ETH_TP_MDI_AUTO
) &&
287 (ecmd
->autoneg
!= AUTONEG_ENABLE
)) {
288 e_err("forcing MDI/MDI-X state is not supported when link speed and/or duplex are forced\n");
294 while (test_and_set_bit(__E1000_RESETTING
, &adapter
->state
))
295 usleep_range(1000, 2000);
297 if (ecmd
->autoneg
== AUTONEG_ENABLE
) {
299 if (hw
->phy
.media_type
== e1000_media_type_fiber
)
300 hw
->phy
.autoneg_advertised
= ADVERTISED_1000baseT_Full
|
301 ADVERTISED_FIBRE
| ADVERTISED_Autoneg
;
303 hw
->phy
.autoneg_advertised
= ecmd
->advertising
|
304 ADVERTISED_TP
| ADVERTISED_Autoneg
;
305 ecmd
->advertising
= hw
->phy
.autoneg_advertised
;
306 if (adapter
->fc_autoneg
)
307 hw
->fc
.requested_mode
= e1000_fc_default
;
309 u32 speed
= ethtool_cmd_speed(ecmd
);
310 /* calling this overrides forced MDI setting */
311 if (e1000_set_spd_dplx(adapter
, speed
, ecmd
->duplex
)) {
317 /* MDI-X => 2; MDI => 1; Auto => 3 */
318 if (ecmd
->eth_tp_mdix_ctrl
) {
319 /* fix up the value for auto (3 => 0) as zero is mapped
322 if (ecmd
->eth_tp_mdix_ctrl
== ETH_TP_MDI_AUTO
)
323 hw
->phy
.mdix
= AUTO_ALL_MODES
;
325 hw
->phy
.mdix
= ecmd
->eth_tp_mdix_ctrl
;
329 if (netif_running(adapter
->netdev
)) {
330 e1000e_down(adapter
, true);
333 e1000e_reset(adapter
);
337 pm_runtime_put_sync(netdev
->dev
.parent
);
338 clear_bit(__E1000_RESETTING
, &adapter
->state
);
342 static void e1000_get_pauseparam(struct net_device
*netdev
,
343 struct ethtool_pauseparam
*pause
)
345 struct e1000_adapter
*adapter
= netdev_priv(netdev
);
346 struct e1000_hw
*hw
= &adapter
->hw
;
349 (adapter
->fc_autoneg
? AUTONEG_ENABLE
: AUTONEG_DISABLE
);
351 if (hw
->fc
.current_mode
== e1000_fc_rx_pause
) {
353 } else if (hw
->fc
.current_mode
== e1000_fc_tx_pause
) {
355 } else if (hw
->fc
.current_mode
== e1000_fc_full
) {
361 static int e1000_set_pauseparam(struct net_device
*netdev
,
362 struct ethtool_pauseparam
*pause
)
364 struct e1000_adapter
*adapter
= netdev_priv(netdev
);
365 struct e1000_hw
*hw
= &adapter
->hw
;
368 adapter
->fc_autoneg
= pause
->autoneg
;
370 while (test_and_set_bit(__E1000_RESETTING
, &adapter
->state
))
371 usleep_range(1000, 2000);
373 pm_runtime_get_sync(netdev
->dev
.parent
);
375 if (adapter
->fc_autoneg
== AUTONEG_ENABLE
) {
376 hw
->fc
.requested_mode
= e1000_fc_default
;
377 if (netif_running(adapter
->netdev
)) {
378 e1000e_down(adapter
, true);
381 e1000e_reset(adapter
);
384 if (pause
->rx_pause
&& pause
->tx_pause
)
385 hw
->fc
.requested_mode
= e1000_fc_full
;
386 else if (pause
->rx_pause
&& !pause
->tx_pause
)
387 hw
->fc
.requested_mode
= e1000_fc_rx_pause
;
388 else if (!pause
->rx_pause
&& pause
->tx_pause
)
389 hw
->fc
.requested_mode
= e1000_fc_tx_pause
;
390 else if (!pause
->rx_pause
&& !pause
->tx_pause
)
391 hw
->fc
.requested_mode
= e1000_fc_none
;
393 hw
->fc
.current_mode
= hw
->fc
.requested_mode
;
395 if (hw
->phy
.media_type
== e1000_media_type_fiber
) {
396 retval
= hw
->mac
.ops
.setup_link(hw
);
397 /* implicit goto out */
399 retval
= e1000e_force_mac_fc(hw
);
402 e1000e_set_fc_watermarks(hw
);
407 pm_runtime_put_sync(netdev
->dev
.parent
);
408 clear_bit(__E1000_RESETTING
, &adapter
->state
);
412 static u32
e1000_get_msglevel(struct net_device
*netdev
)
414 struct e1000_adapter
*adapter
= netdev_priv(netdev
);
415 return adapter
->msg_enable
;
418 static void e1000_set_msglevel(struct net_device
*netdev
, u32 data
)
420 struct e1000_adapter
*adapter
= netdev_priv(netdev
);
421 adapter
->msg_enable
= data
;
424 static int e1000_get_regs_len(struct net_device __always_unused
*netdev
)
426 #define E1000_REGS_LEN 32 /* overestimate */
427 return E1000_REGS_LEN
* sizeof(u32
);
430 static void e1000_get_regs(struct net_device
*netdev
,
431 struct ethtool_regs
*regs
, void *p
)
433 struct e1000_adapter
*adapter
= netdev_priv(netdev
);
434 struct e1000_hw
*hw
= &adapter
->hw
;
438 pm_runtime_get_sync(netdev
->dev
.parent
);
440 memset(p
, 0, E1000_REGS_LEN
* sizeof(u32
));
442 regs
->version
= (1 << 24) | (adapter
->pdev
->revision
<< 16) |
443 adapter
->pdev
->device
;
445 regs_buff
[0] = er32(CTRL
);
446 regs_buff
[1] = er32(STATUS
);
448 regs_buff
[2] = er32(RCTL
);
449 regs_buff
[3] = er32(RDLEN(0));
450 regs_buff
[4] = er32(RDH(0));
451 regs_buff
[5] = er32(RDT(0));
452 regs_buff
[6] = er32(RDTR
);
454 regs_buff
[7] = er32(TCTL
);
455 regs_buff
[8] = er32(TDLEN(0));
456 regs_buff
[9] = er32(TDH(0));
457 regs_buff
[10] = er32(TDT(0));
458 regs_buff
[11] = er32(TIDV
);
460 regs_buff
[12] = adapter
->hw
.phy
.type
; /* PHY type (IGP=1, M88=0) */
462 /* ethtool doesn't use anything past this point, so all this
463 * code is likely legacy junk for apps that may or may not exist
465 if (hw
->phy
.type
== e1000_phy_m88
) {
466 e1e_rphy(hw
, M88E1000_PHY_SPEC_STATUS
, &phy_data
);
467 regs_buff
[13] = (u32
)phy_data
; /* cable length */
468 regs_buff
[14] = 0; /* Dummy (to align w/ IGP phy reg dump) */
469 regs_buff
[15] = 0; /* Dummy (to align w/ IGP phy reg dump) */
470 regs_buff
[16] = 0; /* Dummy (to align w/ IGP phy reg dump) */
471 e1e_rphy(hw
, M88E1000_PHY_SPEC_CTRL
, &phy_data
);
472 regs_buff
[17] = (u32
)phy_data
; /* extended 10bt distance */
473 regs_buff
[18] = regs_buff
[13]; /* cable polarity */
474 regs_buff
[19] = 0; /* Dummy (to align w/ IGP phy reg dump) */
475 regs_buff
[20] = regs_buff
[17]; /* polarity correction */
476 /* phy receive errors */
477 regs_buff
[22] = adapter
->phy_stats
.receive_errors
;
478 regs_buff
[23] = regs_buff
[13]; /* mdix mode */
480 regs_buff
[21] = 0; /* was idle_errors */
481 e1e_rphy(hw
, MII_STAT1000
, &phy_data
);
482 regs_buff
[24] = (u32
)phy_data
; /* phy local receiver status */
483 regs_buff
[25] = regs_buff
[24]; /* phy remote receiver status */
485 pm_runtime_put_sync(netdev
->dev
.parent
);
488 static int e1000_get_eeprom_len(struct net_device
*netdev
)
490 struct e1000_adapter
*adapter
= netdev_priv(netdev
);
491 return adapter
->hw
.nvm
.word_size
* 2;
494 static int e1000_get_eeprom(struct net_device
*netdev
,
495 struct ethtool_eeprom
*eeprom
, u8
*bytes
)
497 struct e1000_adapter
*adapter
= netdev_priv(netdev
);
498 struct e1000_hw
*hw
= &adapter
->hw
;
505 if (eeprom
->len
== 0)
508 eeprom
->magic
= adapter
->pdev
->vendor
| (adapter
->pdev
->device
<< 16);
510 first_word
= eeprom
->offset
>> 1;
511 last_word
= (eeprom
->offset
+ eeprom
->len
- 1) >> 1;
513 eeprom_buff
= kmalloc(sizeof(u16
) * (last_word
- first_word
+ 1),
518 pm_runtime_get_sync(netdev
->dev
.parent
);
520 if (hw
->nvm
.type
== e1000_nvm_eeprom_spi
) {
521 ret_val
= e1000_read_nvm(hw
, first_word
,
522 last_word
- first_word
+ 1,
525 for (i
= 0; i
< last_word
- first_word
+ 1; i
++) {
526 ret_val
= e1000_read_nvm(hw
, first_word
+ i
, 1,
533 pm_runtime_put_sync(netdev
->dev
.parent
);
536 /* a read error occurred, throw away the result */
537 memset(eeprom_buff
, 0xff, sizeof(u16
) *
538 (last_word
- first_word
+ 1));
540 /* Device's eeprom is always little-endian, word addressable */
541 for (i
= 0; i
< last_word
- first_word
+ 1; i
++)
542 le16_to_cpus(&eeprom_buff
[i
]);
545 memcpy(bytes
, (u8
*)eeprom_buff
+ (eeprom
->offset
& 1), eeprom
->len
);
551 static int e1000_set_eeprom(struct net_device
*netdev
,
552 struct ethtool_eeprom
*eeprom
, u8
*bytes
)
554 struct e1000_adapter
*adapter
= netdev_priv(netdev
);
555 struct e1000_hw
*hw
= &adapter
->hw
;
564 if (eeprom
->len
== 0)
568 (adapter
->pdev
->vendor
| (adapter
->pdev
->device
<< 16)))
571 if (adapter
->flags
& FLAG_READ_ONLY_NVM
)
574 max_len
= hw
->nvm
.word_size
* 2;
576 first_word
= eeprom
->offset
>> 1;
577 last_word
= (eeprom
->offset
+ eeprom
->len
- 1) >> 1;
578 eeprom_buff
= kmalloc(max_len
, GFP_KERNEL
);
582 ptr
= (void *)eeprom_buff
;
584 pm_runtime_get_sync(netdev
->dev
.parent
);
586 if (eeprom
->offset
& 1) {
587 /* need read/modify/write of first changed EEPROM word */
588 /* only the second byte of the word is being modified */
589 ret_val
= e1000_read_nvm(hw
, first_word
, 1, &eeprom_buff
[0]);
592 if (((eeprom
->offset
+ eeprom
->len
) & 1) && (!ret_val
))
593 /* need read/modify/write of last changed EEPROM word */
594 /* only the first byte of the word is being modified */
595 ret_val
= e1000_read_nvm(hw
, last_word
, 1,
596 &eeprom_buff
[last_word
- first_word
]);
601 /* Device's eeprom is always little-endian, word addressable */
602 for (i
= 0; i
< last_word
- first_word
+ 1; i
++)
603 le16_to_cpus(&eeprom_buff
[i
]);
605 memcpy(ptr
, bytes
, eeprom
->len
);
607 for (i
= 0; i
< last_word
- first_word
+ 1; i
++)
608 cpu_to_le16s(&eeprom_buff
[i
]);
610 ret_val
= e1000_write_nvm(hw
, first_word
,
611 last_word
- first_word
+ 1, eeprom_buff
);
616 /* Update the checksum over the first part of the EEPROM if needed
617 * and flush shadow RAM for applicable controllers
619 if ((first_word
<= NVM_CHECKSUM_REG
) ||
620 (hw
->mac
.type
== e1000_82583
) ||
621 (hw
->mac
.type
== e1000_82574
) ||
622 (hw
->mac
.type
== e1000_82573
))
623 ret_val
= e1000e_update_nvm_checksum(hw
);
626 pm_runtime_put_sync(netdev
->dev
.parent
);
631 static void e1000_get_drvinfo(struct net_device
*netdev
,
632 struct ethtool_drvinfo
*drvinfo
)
634 struct e1000_adapter
*adapter
= netdev_priv(netdev
);
636 strlcpy(drvinfo
->driver
, e1000e_driver_name
, sizeof(drvinfo
->driver
));
637 strlcpy(drvinfo
->version
, e1000e_driver_version
,
638 sizeof(drvinfo
->version
));
640 /* EEPROM image version # is reported as firmware version # for
643 snprintf(drvinfo
->fw_version
, sizeof(drvinfo
->fw_version
),
645 (adapter
->eeprom_vers
& 0xF000) >> 12,
646 (adapter
->eeprom_vers
& 0x0FF0) >> 4,
647 (adapter
->eeprom_vers
& 0x000F));
649 strlcpy(drvinfo
->bus_info
, pci_name(adapter
->pdev
),
650 sizeof(drvinfo
->bus_info
));
653 static void e1000_get_ringparam(struct net_device
*netdev
,
654 struct ethtool_ringparam
*ring
)
656 struct e1000_adapter
*adapter
= netdev_priv(netdev
);
658 ring
->rx_max_pending
= E1000_MAX_RXD
;
659 ring
->tx_max_pending
= E1000_MAX_TXD
;
660 ring
->rx_pending
= adapter
->rx_ring_count
;
661 ring
->tx_pending
= adapter
->tx_ring_count
;
664 static int e1000_set_ringparam(struct net_device
*netdev
,
665 struct ethtool_ringparam
*ring
)
667 struct e1000_adapter
*adapter
= netdev_priv(netdev
);
668 struct e1000_ring
*temp_tx
= NULL
, *temp_rx
= NULL
;
669 int err
= 0, size
= sizeof(struct e1000_ring
);
670 bool set_tx
= false, set_rx
= false;
671 u16 new_rx_count
, new_tx_count
;
673 if ((ring
->rx_mini_pending
) || (ring
->rx_jumbo_pending
))
676 new_rx_count
= clamp_t(u32
, ring
->rx_pending
, E1000_MIN_RXD
,
678 new_rx_count
= ALIGN(new_rx_count
, REQ_RX_DESCRIPTOR_MULTIPLE
);
680 new_tx_count
= clamp_t(u32
, ring
->tx_pending
, E1000_MIN_TXD
,
682 new_tx_count
= ALIGN(new_tx_count
, REQ_TX_DESCRIPTOR_MULTIPLE
);
684 if ((new_tx_count
== adapter
->tx_ring_count
) &&
685 (new_rx_count
== adapter
->rx_ring_count
))
689 while (test_and_set_bit(__E1000_RESETTING
, &adapter
->state
))
690 usleep_range(1000, 2000);
692 if (!netif_running(adapter
->netdev
)) {
693 /* Set counts now and allocate resources during open() */
694 adapter
->tx_ring
->count
= new_tx_count
;
695 adapter
->rx_ring
->count
= new_rx_count
;
696 adapter
->tx_ring_count
= new_tx_count
;
697 adapter
->rx_ring_count
= new_rx_count
;
701 set_tx
= (new_tx_count
!= adapter
->tx_ring_count
);
702 set_rx
= (new_rx_count
!= adapter
->rx_ring_count
);
704 /* Allocate temporary storage for ring updates */
706 temp_tx
= vmalloc(size
);
713 temp_rx
= vmalloc(size
);
720 pm_runtime_get_sync(netdev
->dev
.parent
);
722 e1000e_down(adapter
, true);
724 /* We can't just free everything and then setup again, because the
725 * ISRs in MSI-X mode get passed pointers to the Tx and Rx ring
726 * structs. First, attempt to allocate new resources...
729 memcpy(temp_tx
, adapter
->tx_ring
, size
);
730 temp_tx
->count
= new_tx_count
;
731 err
= e1000e_setup_tx_resources(temp_tx
);
736 memcpy(temp_rx
, adapter
->rx_ring
, size
);
737 temp_rx
->count
= new_rx_count
;
738 err
= e1000e_setup_rx_resources(temp_rx
);
743 /* ...then free the old resources and copy back any new ring data */
745 e1000e_free_tx_resources(adapter
->tx_ring
);
746 memcpy(adapter
->tx_ring
, temp_tx
, size
);
747 adapter
->tx_ring_count
= new_tx_count
;
750 e1000e_free_rx_resources(adapter
->rx_ring
);
751 memcpy(adapter
->rx_ring
, temp_rx
, size
);
752 adapter
->rx_ring_count
= new_rx_count
;
757 e1000e_free_tx_resources(temp_tx
);
760 pm_runtime_put_sync(netdev
->dev
.parent
);
765 clear_bit(__E1000_RESETTING
, &adapter
->state
);
769 static bool reg_pattern_test(struct e1000_adapter
*adapter
, u64
*data
,
770 int reg
, int offset
, u32 mask
, u32 write
)
773 static const u32 test
[] = {
774 0x5A5A5A5A, 0xA5A5A5A5, 0x00000000, 0xFFFFFFFF
776 for (pat
= 0; pat
< ARRAY_SIZE(test
); pat
++) {
777 E1000_WRITE_REG_ARRAY(&adapter
->hw
, reg
, offset
,
778 (test
[pat
] & write
));
779 val
= E1000_READ_REG_ARRAY(&adapter
->hw
, reg
, offset
);
780 if (val
!= (test
[pat
] & write
& mask
)) {
781 e_err("pattern test failed (reg 0x%05X): got 0x%08X expected 0x%08X\n",
782 reg
+ (offset
<< 2), val
,
783 (test
[pat
] & write
& mask
));
791 static bool reg_set_and_check(struct e1000_adapter
*adapter
, u64
*data
,
792 int reg
, u32 mask
, u32 write
)
796 __ew32(&adapter
->hw
, reg
, write
& mask
);
797 val
= __er32(&adapter
->hw
, reg
);
798 if ((write
& mask
) != (val
& mask
)) {
799 e_err("set/check test failed (reg 0x%05X): got 0x%08X expected 0x%08X\n",
800 reg
, (val
& mask
), (write
& mask
));
807 #define REG_PATTERN_TEST_ARRAY(reg, offset, mask, write) \
809 if (reg_pattern_test(adapter, data, reg, offset, mask, write)) \
812 #define REG_PATTERN_TEST(reg, mask, write) \
813 REG_PATTERN_TEST_ARRAY(reg, 0, mask, write)
815 #define REG_SET_AND_CHECK(reg, mask, write) \
817 if (reg_set_and_check(adapter, data, reg, mask, write)) \
821 static int e1000_reg_test(struct e1000_adapter
*adapter
, u64
*data
)
823 struct e1000_hw
*hw
= &adapter
->hw
;
824 struct e1000_mac_info
*mac
= &adapter
->hw
.mac
;
833 /* The status register is Read Only, so a write should fail.
834 * Some bits that get toggled are ignored. There are several bits
835 * on newer hardware that are r/w.
840 case e1000_80003es2lan
:
848 before
= er32(STATUS
);
849 value
= (er32(STATUS
) & toggle
);
850 ew32(STATUS
, toggle
);
851 after
= er32(STATUS
) & toggle
;
852 if (value
!= after
) {
853 e_err("failed STATUS register test got: 0x%08X expected: 0x%08X\n",
858 /* restore previous status */
859 ew32(STATUS
, before
);
861 if (!(adapter
->flags
& FLAG_IS_ICH
)) {
862 REG_PATTERN_TEST(E1000_FCAL
, 0xFFFFFFFF, 0xFFFFFFFF);
863 REG_PATTERN_TEST(E1000_FCAH
, 0x0000FFFF, 0xFFFFFFFF);
864 REG_PATTERN_TEST(E1000_FCT
, 0x0000FFFF, 0xFFFFFFFF);
865 REG_PATTERN_TEST(E1000_VET
, 0x0000FFFF, 0xFFFFFFFF);
868 REG_PATTERN_TEST(E1000_RDTR
, 0x0000FFFF, 0xFFFFFFFF);
869 REG_PATTERN_TEST(E1000_RDBAH(0), 0xFFFFFFFF, 0xFFFFFFFF);
870 REG_PATTERN_TEST(E1000_RDLEN(0), 0x000FFF80, 0x000FFFFF);
871 REG_PATTERN_TEST(E1000_RDH(0), 0x0000FFFF, 0x0000FFFF);
872 REG_PATTERN_TEST(E1000_RDT(0), 0x0000FFFF, 0x0000FFFF);
873 REG_PATTERN_TEST(E1000_FCRTH
, 0x0000FFF8, 0x0000FFF8);
874 REG_PATTERN_TEST(E1000_FCTTV
, 0x0000FFFF, 0x0000FFFF);
875 REG_PATTERN_TEST(E1000_TIPG
, 0x3FFFFFFF, 0x3FFFFFFF);
876 REG_PATTERN_TEST(E1000_TDBAH(0), 0xFFFFFFFF, 0xFFFFFFFF);
877 REG_PATTERN_TEST(E1000_TDLEN(0), 0x000FFF80, 0x000FFFFF);
879 REG_SET_AND_CHECK(E1000_RCTL
, 0xFFFFFFFF, 0x00000000);
881 before
= ((adapter
->flags
& FLAG_IS_ICH
) ? 0x06C3B33E : 0x06DFB3FE);
882 REG_SET_AND_CHECK(E1000_RCTL
, before
, 0x003FFFFB);
883 REG_SET_AND_CHECK(E1000_TCTL
, 0xFFFFFFFF, 0x00000000);
885 REG_SET_AND_CHECK(E1000_RCTL
, before
, 0xFFFFFFFF);
886 REG_PATTERN_TEST(E1000_RDBAL(0), 0xFFFFFFF0, 0xFFFFFFFF);
887 if (!(adapter
->flags
& FLAG_IS_ICH
))
888 REG_PATTERN_TEST(E1000_TXCW
, 0xC000FFFF, 0x0000FFFF);
889 REG_PATTERN_TEST(E1000_TDBAL(0), 0xFFFFFFF0, 0xFFFFFFFF);
890 REG_PATTERN_TEST(E1000_TIDV
, 0x0000FFFF, 0x0000FFFF);
904 if ((mac
->type
== e1000_pch_lpt
) || (mac
->type
== e1000_pch_spt
))
905 wlock_mac
= (er32(FWSM
) & E1000_FWSM_WLOCK_MAC_MASK
) >>
906 E1000_FWSM_WLOCK_MAC_SHIFT
;
908 for (i
= 0; i
< mac
->rar_entry_count
; i
++) {
909 if ((mac
->type
== e1000_pch_lpt
) ||
910 (mac
->type
== e1000_pch_spt
)) {
911 /* Cannot test write-protected SHRAL[n] registers */
912 if ((wlock_mac
== 1) || (wlock_mac
&& (i
> wlock_mac
)))
915 /* SHRAH[9] different than the others */
921 if (mac
->type
== e1000_pch2lan
) {
922 /* SHRAH[0,1,2] different than previous */
925 /* SHRAH[3] different than SHRAH[0,1,2] */
928 /* RAR[1-6] owned by management engine - skipping */
933 REG_PATTERN_TEST_ARRAY(E1000_RA
, ((i
<< 1) + 1), mask
,
935 /* reset index to actual value */
936 if ((mac
->type
== e1000_pch2lan
) && (i
> 6))
940 for (i
= 0; i
< mac
->mta_reg_count
; i
++)
941 REG_PATTERN_TEST_ARRAY(E1000_MTA
, i
, 0xFFFFFFFF, 0xFFFFFFFF);
948 static int e1000_eeprom_test(struct e1000_adapter
*adapter
, u64
*data
)
955 /* Read and add up the contents of the EEPROM */
956 for (i
= 0; i
< (NVM_CHECKSUM_REG
+ 1); i
++) {
957 if ((e1000_read_nvm(&adapter
->hw
, i
, 1, &temp
)) < 0) {
964 /* If Checksum is not Correct return error else test passed */
965 if ((checksum
!= (u16
)NVM_SUM
) && !(*data
))
971 static irqreturn_t
e1000_test_intr(int __always_unused irq
, void *data
)
973 struct net_device
*netdev
= (struct net_device
*)data
;
974 struct e1000_adapter
*adapter
= netdev_priv(netdev
);
975 struct e1000_hw
*hw
= &adapter
->hw
;
977 adapter
->test_icr
|= er32(ICR
);
982 static int e1000_intr_test(struct e1000_adapter
*adapter
, u64
*data
)
984 struct net_device
*netdev
= adapter
->netdev
;
985 struct e1000_hw
*hw
= &adapter
->hw
;
988 u32 irq
= adapter
->pdev
->irq
;
991 int int_mode
= E1000E_INT_MODE_LEGACY
;
995 /* NOTE: we don't test MSI/MSI-X interrupts here, yet */
996 if (adapter
->int_mode
== E1000E_INT_MODE_MSIX
) {
997 int_mode
= adapter
->int_mode
;
998 e1000e_reset_interrupt_capability(adapter
);
999 adapter
->int_mode
= E1000E_INT_MODE_LEGACY
;
1000 e1000e_set_interrupt_capability(adapter
);
1002 /* Hook up test interrupt handler just for this test */
1003 if (!request_irq(irq
, e1000_test_intr
, IRQF_PROBE_SHARED
, netdev
->name
,
1006 } else if (request_irq(irq
, e1000_test_intr
, IRQF_SHARED
, netdev
->name
,
1012 e_info("testing %s interrupt\n", (shared_int
? "shared" : "unshared"));
1014 /* Disable all the interrupts */
1015 ew32(IMC
, 0xFFFFFFFF);
1017 usleep_range(10000, 20000);
1019 /* Test each interrupt */
1020 for (i
= 0; i
< 10; i
++) {
1021 /* Interrupt to test */
1024 if (adapter
->flags
& FLAG_IS_ICH
) {
1026 case E1000_ICR_RXSEQ
:
1029 if (adapter
->hw
.mac
.type
== e1000_ich8lan
||
1030 adapter
->hw
.mac
.type
== e1000_ich9lan
)
1039 /* Disable the interrupt to be reported in
1040 * the cause register and then force the same
1041 * interrupt and see if one gets posted. If
1042 * an interrupt was posted to the bus, the
1045 adapter
->test_icr
= 0;
1049 usleep_range(10000, 20000);
1051 if (adapter
->test_icr
& mask
) {
1057 /* Enable the interrupt to be reported in
1058 * the cause register and then force the same
1059 * interrupt and see if one gets posted. If
1060 * an interrupt was not posted to the bus, the
1063 adapter
->test_icr
= 0;
1067 usleep_range(10000, 20000);
1069 if (!(adapter
->test_icr
& mask
)) {
1075 /* Disable the other interrupts to be reported in
1076 * the cause register and then force the other
1077 * interrupts and see if any get posted. If
1078 * an interrupt was posted to the bus, the
1081 adapter
->test_icr
= 0;
1082 ew32(IMC
, ~mask
& 0x00007FFF);
1083 ew32(ICS
, ~mask
& 0x00007FFF);
1085 usleep_range(10000, 20000);
1087 if (adapter
->test_icr
) {
1094 /* Disable all the interrupts */
1095 ew32(IMC
, 0xFFFFFFFF);
1097 usleep_range(10000, 20000);
1099 /* Unhook test interrupt handler */
1100 free_irq(irq
, netdev
);
1103 if (int_mode
== E1000E_INT_MODE_MSIX
) {
1104 e1000e_reset_interrupt_capability(adapter
);
1105 adapter
->int_mode
= int_mode
;
1106 e1000e_set_interrupt_capability(adapter
);
1112 static void e1000_free_desc_rings(struct e1000_adapter
*adapter
)
1114 struct e1000_ring
*tx_ring
= &adapter
->test_tx_ring
;
1115 struct e1000_ring
*rx_ring
= &adapter
->test_rx_ring
;
1116 struct pci_dev
*pdev
= adapter
->pdev
;
1117 struct e1000_buffer
*buffer_info
;
1120 if (tx_ring
->desc
&& tx_ring
->buffer_info
) {
1121 for (i
= 0; i
< tx_ring
->count
; i
++) {
1122 buffer_info
= &tx_ring
->buffer_info
[i
];
1124 if (buffer_info
->dma
)
1125 dma_unmap_single(&pdev
->dev
,
1127 buffer_info
->length
,
1129 if (buffer_info
->skb
)
1130 dev_kfree_skb(buffer_info
->skb
);
1134 if (rx_ring
->desc
&& rx_ring
->buffer_info
) {
1135 for (i
= 0; i
< rx_ring
->count
; i
++) {
1136 buffer_info
= &rx_ring
->buffer_info
[i
];
1138 if (buffer_info
->dma
)
1139 dma_unmap_single(&pdev
->dev
,
1141 2048, DMA_FROM_DEVICE
);
1142 if (buffer_info
->skb
)
1143 dev_kfree_skb(buffer_info
->skb
);
1147 if (tx_ring
->desc
) {
1148 dma_free_coherent(&pdev
->dev
, tx_ring
->size
, tx_ring
->desc
,
1150 tx_ring
->desc
= NULL
;
1152 if (rx_ring
->desc
) {
1153 dma_free_coherent(&pdev
->dev
, rx_ring
->size
, rx_ring
->desc
,
1155 rx_ring
->desc
= NULL
;
1158 kfree(tx_ring
->buffer_info
);
1159 tx_ring
->buffer_info
= NULL
;
1160 kfree(rx_ring
->buffer_info
);
1161 rx_ring
->buffer_info
= NULL
;
1164 static int e1000_setup_desc_rings(struct e1000_adapter
*adapter
)
1166 struct e1000_ring
*tx_ring
= &adapter
->test_tx_ring
;
1167 struct e1000_ring
*rx_ring
= &adapter
->test_rx_ring
;
1168 struct pci_dev
*pdev
= adapter
->pdev
;
1169 struct e1000_hw
*hw
= &adapter
->hw
;
1174 /* Setup Tx descriptor ring and Tx buffers */
1176 if (!tx_ring
->count
)
1177 tx_ring
->count
= E1000_DEFAULT_TXD
;
1179 tx_ring
->buffer_info
= kcalloc(tx_ring
->count
,
1180 sizeof(struct e1000_buffer
), GFP_KERNEL
);
1181 if (!tx_ring
->buffer_info
) {
1186 tx_ring
->size
= tx_ring
->count
* sizeof(struct e1000_tx_desc
);
1187 tx_ring
->size
= ALIGN(tx_ring
->size
, 4096);
1188 tx_ring
->desc
= dma_alloc_coherent(&pdev
->dev
, tx_ring
->size
,
1189 &tx_ring
->dma
, GFP_KERNEL
);
1190 if (!tx_ring
->desc
) {
1194 tx_ring
->next_to_use
= 0;
1195 tx_ring
->next_to_clean
= 0;
1197 ew32(TDBAL(0), ((u64
)tx_ring
->dma
& 0x00000000FFFFFFFF));
1198 ew32(TDBAH(0), ((u64
)tx_ring
->dma
>> 32));
1199 ew32(TDLEN(0), tx_ring
->count
* sizeof(struct e1000_tx_desc
));
1202 ew32(TCTL
, E1000_TCTL_PSP
| E1000_TCTL_EN
| E1000_TCTL_MULR
|
1203 E1000_COLLISION_THRESHOLD
<< E1000_CT_SHIFT
|
1204 E1000_COLLISION_DISTANCE
<< E1000_COLD_SHIFT
);
1206 for (i
= 0; i
< tx_ring
->count
; i
++) {
1207 struct e1000_tx_desc
*tx_desc
= E1000_TX_DESC(*tx_ring
, i
);
1208 struct sk_buff
*skb
;
1209 unsigned int skb_size
= 1024;
1211 skb
= alloc_skb(skb_size
, GFP_KERNEL
);
1216 skb_put(skb
, skb_size
);
1217 tx_ring
->buffer_info
[i
].skb
= skb
;
1218 tx_ring
->buffer_info
[i
].length
= skb
->len
;
1219 tx_ring
->buffer_info
[i
].dma
=
1220 dma_map_single(&pdev
->dev
, skb
->data
, skb
->len
,
1222 if (dma_mapping_error(&pdev
->dev
,
1223 tx_ring
->buffer_info
[i
].dma
)) {
1227 tx_desc
->buffer_addr
= cpu_to_le64(tx_ring
->buffer_info
[i
].dma
);
1228 tx_desc
->lower
.data
= cpu_to_le32(skb
->len
);
1229 tx_desc
->lower
.data
|= cpu_to_le32(E1000_TXD_CMD_EOP
|
1230 E1000_TXD_CMD_IFCS
|
1232 tx_desc
->upper
.data
= 0;
1235 /* Setup Rx descriptor ring and Rx buffers */
1237 if (!rx_ring
->count
)
1238 rx_ring
->count
= E1000_DEFAULT_RXD
;
1240 rx_ring
->buffer_info
= kcalloc(rx_ring
->count
,
1241 sizeof(struct e1000_buffer
), GFP_KERNEL
);
1242 if (!rx_ring
->buffer_info
) {
1247 rx_ring
->size
= rx_ring
->count
* sizeof(union e1000_rx_desc_extended
);
1248 rx_ring
->desc
= dma_alloc_coherent(&pdev
->dev
, rx_ring
->size
,
1249 &rx_ring
->dma
, GFP_KERNEL
);
1250 if (!rx_ring
->desc
) {
1254 rx_ring
->next_to_use
= 0;
1255 rx_ring
->next_to_clean
= 0;
1258 if (!(adapter
->flags2
& FLAG2_NO_DISABLE_RX
))
1259 ew32(RCTL
, rctl
& ~E1000_RCTL_EN
);
1260 ew32(RDBAL(0), ((u64
)rx_ring
->dma
& 0xFFFFFFFF));
1261 ew32(RDBAH(0), ((u64
)rx_ring
->dma
>> 32));
1262 ew32(RDLEN(0), rx_ring
->size
);
1265 rctl
= E1000_RCTL_EN
| E1000_RCTL_BAM
| E1000_RCTL_SZ_2048
|
1266 E1000_RCTL_UPE
| E1000_RCTL_MPE
| E1000_RCTL_LPE
|
1267 E1000_RCTL_SBP
| E1000_RCTL_SECRC
|
1268 E1000_RCTL_LBM_NO
| E1000_RCTL_RDMTS_HALF
|
1269 (adapter
->hw
.mac
.mc_filter_type
<< E1000_RCTL_MO_SHIFT
);
1272 for (i
= 0; i
< rx_ring
->count
; i
++) {
1273 union e1000_rx_desc_extended
*rx_desc
;
1274 struct sk_buff
*skb
;
1276 skb
= alloc_skb(2048 + NET_IP_ALIGN
, GFP_KERNEL
);
1281 skb_reserve(skb
, NET_IP_ALIGN
);
1282 rx_ring
->buffer_info
[i
].skb
= skb
;
1283 rx_ring
->buffer_info
[i
].dma
=
1284 dma_map_single(&pdev
->dev
, skb
->data
, 2048,
1286 if (dma_mapping_error(&pdev
->dev
,
1287 rx_ring
->buffer_info
[i
].dma
)) {
1291 rx_desc
= E1000_RX_DESC_EXT(*rx_ring
, i
);
1292 rx_desc
->read
.buffer_addr
=
1293 cpu_to_le64(rx_ring
->buffer_info
[i
].dma
);
1294 memset(skb
->data
, 0x00, skb
->len
);
1300 e1000_free_desc_rings(adapter
);
1304 static void e1000_phy_disable_receiver(struct e1000_adapter
*adapter
)
1306 /* Write out to PHY registers 29 and 30 to disable the Receiver. */
1307 e1e_wphy(&adapter
->hw
, 29, 0x001F);
1308 e1e_wphy(&adapter
->hw
, 30, 0x8FFC);
1309 e1e_wphy(&adapter
->hw
, 29, 0x001A);
1310 e1e_wphy(&adapter
->hw
, 30, 0x8FF0);
1313 static int e1000_integrated_phy_loopback(struct e1000_adapter
*adapter
)
1315 struct e1000_hw
*hw
= &adapter
->hw
;
1320 hw
->mac
.autoneg
= 0;
1322 if (hw
->phy
.type
== e1000_phy_ife
) {
1323 /* force 100, set loopback */
1324 e1e_wphy(hw
, MII_BMCR
, 0x6100);
1326 /* Now set up the MAC to the same speed/duplex as the PHY. */
1327 ctrl_reg
= er32(CTRL
);
1328 ctrl_reg
&= ~E1000_CTRL_SPD_SEL
; /* Clear the speed sel bits */
1329 ctrl_reg
|= (E1000_CTRL_FRCSPD
| /* Set the Force Speed Bit */
1330 E1000_CTRL_FRCDPX
| /* Set the Force Duplex Bit */
1331 E1000_CTRL_SPD_100
|/* Force Speed to 100 */
1332 E1000_CTRL_FD
); /* Force Duplex to FULL */
1334 ew32(CTRL
, ctrl_reg
);
1336 usleep_range(500, 1000);
1341 /* Specific PHY configuration for loopback */
1342 switch (hw
->phy
.type
) {
1344 /* Auto-MDI/MDIX Off */
1345 e1e_wphy(hw
, M88E1000_PHY_SPEC_CTRL
, 0x0808);
1346 /* reset to update Auto-MDI/MDIX */
1347 e1e_wphy(hw
, MII_BMCR
, 0x9140);
1349 e1e_wphy(hw
, MII_BMCR
, 0x8140);
1351 case e1000_phy_gg82563
:
1352 e1e_wphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, 0x1CC);
1355 /* Set Default MAC Interface speed to 1GB */
1356 e1e_rphy(hw
, PHY_REG(2, 21), &phy_reg
);
1359 e1e_wphy(hw
, PHY_REG(2, 21), phy_reg
);
1360 /* Assert SW reset for above settings to take effect */
1361 hw
->phy
.ops
.commit(hw
);
1362 usleep_range(1000, 2000);
1363 /* Force Full Duplex */
1364 e1e_rphy(hw
, PHY_REG(769, 16), &phy_reg
);
1365 e1e_wphy(hw
, PHY_REG(769, 16), phy_reg
| 0x000C);
1366 /* Set Link Up (in force link) */
1367 e1e_rphy(hw
, PHY_REG(776, 16), &phy_reg
);
1368 e1e_wphy(hw
, PHY_REG(776, 16), phy_reg
| 0x0040);
1370 e1e_rphy(hw
, PHY_REG(769, 16), &phy_reg
);
1371 e1e_wphy(hw
, PHY_REG(769, 16), phy_reg
| 0x0040);
1372 /* Set Early Link Enable */
1373 e1e_rphy(hw
, PHY_REG(769, 20), &phy_reg
);
1374 e1e_wphy(hw
, PHY_REG(769, 20), phy_reg
| 0x0400);
1376 case e1000_phy_82577
:
1377 case e1000_phy_82578
:
1378 /* Workaround: K1 must be disabled for stable 1Gbps operation */
1379 ret_val
= hw
->phy
.ops
.acquire(hw
);
1381 e_err("Cannot setup 1Gbps loopback.\n");
1384 e1000_configure_k1_ich8lan(hw
, false);
1385 hw
->phy
.ops
.release(hw
);
1387 case e1000_phy_82579
:
1388 /* Disable PHY energy detect power down */
1389 e1e_rphy(hw
, PHY_REG(0, 21), &phy_reg
);
1390 e1e_wphy(hw
, PHY_REG(0, 21), phy_reg
& ~(1 << 3));
1391 /* Disable full chip energy detect */
1392 e1e_rphy(hw
, PHY_REG(776, 18), &phy_reg
);
1393 e1e_wphy(hw
, PHY_REG(776, 18), phy_reg
| 1);
1394 /* Enable loopback on the PHY */
1395 e1e_wphy(hw
, I82577_PHY_LBK_CTRL
, 0x8001);
1401 /* force 1000, set loopback */
1402 e1e_wphy(hw
, MII_BMCR
, 0x4140);
1405 /* Now set up the MAC to the same speed/duplex as the PHY. */
1406 ctrl_reg
= er32(CTRL
);
1407 ctrl_reg
&= ~E1000_CTRL_SPD_SEL
; /* Clear the speed sel bits */
1408 ctrl_reg
|= (E1000_CTRL_FRCSPD
| /* Set the Force Speed Bit */
1409 E1000_CTRL_FRCDPX
| /* Set the Force Duplex Bit */
1410 E1000_CTRL_SPD_1000
|/* Force Speed to 1000 */
1411 E1000_CTRL_FD
); /* Force Duplex to FULL */
1413 if (adapter
->flags
& FLAG_IS_ICH
)
1414 ctrl_reg
|= E1000_CTRL_SLU
; /* Set Link Up */
1416 if (hw
->phy
.media_type
== e1000_media_type_copper
&&
1417 hw
->phy
.type
== e1000_phy_m88
) {
1418 ctrl_reg
|= E1000_CTRL_ILOS
; /* Invert Loss of Signal */
1420 /* Set the ILOS bit on the fiber Nic if half duplex link is
1423 if ((er32(STATUS
) & E1000_STATUS_FD
) == 0)
1424 ctrl_reg
|= (E1000_CTRL_ILOS
| E1000_CTRL_SLU
);
1427 ew32(CTRL
, ctrl_reg
);
1429 /* Disable the receiver on the PHY so when a cable is plugged in, the
1430 * PHY does not begin to autoneg when a cable is reconnected to the NIC.
1432 if (hw
->phy
.type
== e1000_phy_m88
)
1433 e1000_phy_disable_receiver(adapter
);
1435 usleep_range(500, 1000);
1440 static int e1000_set_82571_fiber_loopback(struct e1000_adapter
*adapter
)
1442 struct e1000_hw
*hw
= &adapter
->hw
;
1443 u32 ctrl
= er32(CTRL
);
1446 /* special requirements for 82571/82572 fiber adapters */
1448 /* jump through hoops to make sure link is up because serdes
1449 * link is hardwired up
1451 ctrl
|= E1000_CTRL_SLU
;
1454 /* disable autoneg */
1459 link
= (er32(STATUS
) & E1000_STATUS_LU
);
1462 /* set invert loss of signal */
1464 ctrl
|= E1000_CTRL_ILOS
;
1468 /* special write to serdes control register to enable SerDes analog
1471 ew32(SCTL
, E1000_SCTL_ENABLE_SERDES_LOOPBACK
);
1473 usleep_range(10000, 20000);
1478 /* only call this for fiber/serdes connections to es2lan */
1479 static int e1000_set_es2lan_mac_loopback(struct e1000_adapter
*adapter
)
1481 struct e1000_hw
*hw
= &adapter
->hw
;
1482 u32 ctrlext
= er32(CTRL_EXT
);
1483 u32 ctrl
= er32(CTRL
);
1485 /* save CTRL_EXT to restore later, reuse an empty variable (unused
1486 * on mac_type 80003es2lan)
1488 adapter
->tx_fifo_head
= ctrlext
;
1490 /* clear the serdes mode bits, putting the device into mac loopback */
1491 ctrlext
&= ~E1000_CTRL_EXT_LINK_MODE_PCIE_SERDES
;
1492 ew32(CTRL_EXT
, ctrlext
);
1494 /* force speed to 1000/FD, link up */
1495 ctrl
&= ~(E1000_CTRL_SPD_1000
| E1000_CTRL_SPD_100
);
1496 ctrl
|= (E1000_CTRL_SLU
| E1000_CTRL_FRCSPD
| E1000_CTRL_FRCDPX
|
1497 E1000_CTRL_SPD_1000
| E1000_CTRL_FD
);
1500 /* set mac loopback */
1502 ctrl
|= E1000_RCTL_LBM_MAC
;
1505 /* set testing mode parameters (no need to reset later) */
1506 #define KMRNCTRLSTA_OPMODE (0x1F << 16)
1507 #define KMRNCTRLSTA_OPMODE_1GB_FD_GMII 0x0582
1509 (KMRNCTRLSTA_OPMODE
| KMRNCTRLSTA_OPMODE_1GB_FD_GMII
));
1514 static int e1000_setup_loopback_test(struct e1000_adapter
*adapter
)
1516 struct e1000_hw
*hw
= &adapter
->hw
;
1517 u32 rctl
, fext_nvm11
, tarc0
;
1519 if (hw
->mac
.type
== e1000_pch_spt
) {
1520 fext_nvm11
= er32(FEXTNVM11
);
1521 fext_nvm11
|= E1000_FEXTNVM11_DISABLE_MULR_FIX
;
1522 ew32(FEXTNVM11
, fext_nvm11
);
1523 tarc0
= er32(TARC(0));
1524 /* clear bits 28 & 29 (control of MULR concurrent requests) */
1525 tarc0
&= 0xcfffffff;
1526 /* set bit 29 (value of MULR requests is now 2) */
1527 tarc0
|= 0x20000000;
1528 ew32(TARC(0), tarc0
);
1530 if (hw
->phy
.media_type
== e1000_media_type_fiber
||
1531 hw
->phy
.media_type
== e1000_media_type_internal_serdes
) {
1532 switch (hw
->mac
.type
) {
1533 case e1000_80003es2lan
:
1534 return e1000_set_es2lan_mac_loopback(adapter
);
1537 return e1000_set_82571_fiber_loopback(adapter
);
1540 rctl
|= E1000_RCTL_LBM_TCVR
;
1544 } else if (hw
->phy
.media_type
== e1000_media_type_copper
) {
1545 return e1000_integrated_phy_loopback(adapter
);
1551 static void e1000_loopback_cleanup(struct e1000_adapter
*adapter
)
1553 struct e1000_hw
*hw
= &adapter
->hw
;
1554 u32 rctl
, fext_nvm11
, tarc0
;
1558 rctl
&= ~(E1000_RCTL_LBM_TCVR
| E1000_RCTL_LBM_MAC
);
1561 switch (hw
->mac
.type
) {
1563 fext_nvm11
= er32(FEXTNVM11
);
1564 fext_nvm11
&= ~E1000_FEXTNVM11_DISABLE_MULR_FIX
;
1565 ew32(FEXTNVM11
, fext_nvm11
);
1566 tarc0
= er32(TARC(0));
1567 /* clear bits 28 & 29 (control of MULR concurrent requests) */
1568 /* set bit 29 (value of MULR requests is now 0) */
1569 tarc0
&= 0xcfffffff;
1570 ew32(TARC(0), tarc0
);
1572 case e1000_80003es2lan
:
1573 if (hw
->phy
.media_type
== e1000_media_type_fiber
||
1574 hw
->phy
.media_type
== e1000_media_type_internal_serdes
) {
1575 /* restore CTRL_EXT, stealing space from tx_fifo_head */
1576 ew32(CTRL_EXT
, adapter
->tx_fifo_head
);
1577 adapter
->tx_fifo_head
= 0;
1582 if (hw
->phy
.media_type
== e1000_media_type_fiber
||
1583 hw
->phy
.media_type
== e1000_media_type_internal_serdes
) {
1584 ew32(SCTL
, E1000_SCTL_DISABLE_SERDES_LOOPBACK
);
1586 usleep_range(10000, 20000);
1591 hw
->mac
.autoneg
= 1;
1592 if (hw
->phy
.type
== e1000_phy_gg82563
)
1593 e1e_wphy(hw
, GG82563_PHY_KMRN_MODE_CTRL
, 0x180);
1594 e1e_rphy(hw
, MII_BMCR
, &phy_reg
);
1595 if (phy_reg
& BMCR_LOOPBACK
) {
1596 phy_reg
&= ~BMCR_LOOPBACK
;
1597 e1e_wphy(hw
, MII_BMCR
, phy_reg
);
1598 if (hw
->phy
.ops
.commit
)
1599 hw
->phy
.ops
.commit(hw
);
1605 static void e1000_create_lbtest_frame(struct sk_buff
*skb
,
1606 unsigned int frame_size
)
1608 memset(skb
->data
, 0xFF, frame_size
);
1610 memset(&skb
->data
[frame_size
/ 2], 0xAA, frame_size
/ 2 - 1);
1611 memset(&skb
->data
[frame_size
/ 2 + 10], 0xBE, 1);
1612 memset(&skb
->data
[frame_size
/ 2 + 12], 0xAF, 1);
1615 static int e1000_check_lbtest_frame(struct sk_buff
*skb
,
1616 unsigned int frame_size
)
1619 if (*(skb
->data
+ 3) == 0xFF)
1620 if ((*(skb
->data
+ frame_size
/ 2 + 10) == 0xBE) &&
1621 (*(skb
->data
+ frame_size
/ 2 + 12) == 0xAF))
1626 static int e1000_run_loopback_test(struct e1000_adapter
*adapter
)
1628 struct e1000_ring
*tx_ring
= &adapter
->test_tx_ring
;
1629 struct e1000_ring
*rx_ring
= &adapter
->test_rx_ring
;
1630 struct pci_dev
*pdev
= adapter
->pdev
;
1631 struct e1000_hw
*hw
= &adapter
->hw
;
1632 struct e1000_buffer
*buffer_info
;
1639 ew32(RDT(0), rx_ring
->count
- 1);
1641 /* Calculate the loop count based on the largest descriptor ring
1642 * The idea is to wrap the largest ring a number of times using 64
1643 * send/receive pairs during each loop
1646 if (rx_ring
->count
<= tx_ring
->count
)
1647 lc
= ((tx_ring
->count
/ 64) * 2) + 1;
1649 lc
= ((rx_ring
->count
/ 64) * 2) + 1;
1653 /* loop count loop */
1654 for (j
= 0; j
<= lc
; j
++) {
1655 /* send the packets */
1656 for (i
= 0; i
< 64; i
++) {
1657 buffer_info
= &tx_ring
->buffer_info
[k
];
1659 e1000_create_lbtest_frame(buffer_info
->skb
, 1024);
1660 dma_sync_single_for_device(&pdev
->dev
,
1662 buffer_info
->length
,
1665 if (k
== tx_ring
->count
)
1671 time
= jiffies
; /* set the start time for the receive */
1673 /* receive the sent packets */
1675 buffer_info
= &rx_ring
->buffer_info
[l
];
1677 dma_sync_single_for_cpu(&pdev
->dev
,
1678 buffer_info
->dma
, 2048,
1681 ret_val
= e1000_check_lbtest_frame(buffer_info
->skb
,
1686 if (l
== rx_ring
->count
)
1688 /* time + 20 msecs (200 msecs on 2.4) is more than
1689 * enough time to complete the receives, if it's
1690 * exceeded, break and error off
1692 } while ((good_cnt
< 64) && !time_after(jiffies
, time
+ 20));
1693 if (good_cnt
!= 64) {
1694 ret_val
= 13; /* ret_val is the same as mis-compare */
1697 if (time_after(jiffies
, time
+ 20)) {
1698 ret_val
= 14; /* error code for time out error */
1705 static int e1000_loopback_test(struct e1000_adapter
*adapter
, u64
*data
)
1707 struct e1000_hw
*hw
= &adapter
->hw
;
1709 /* PHY loopback cannot be performed if SoL/IDER sessions are active */
1710 if (hw
->phy
.ops
.check_reset_block
&&
1711 hw
->phy
.ops
.check_reset_block(hw
)) {
1712 e_err("Cannot do PHY loopback test when SoL/IDER is active.\n");
1717 *data
= e1000_setup_desc_rings(adapter
);
1721 *data
= e1000_setup_loopback_test(adapter
);
1725 *data
= e1000_run_loopback_test(adapter
);
1726 e1000_loopback_cleanup(adapter
);
1729 e1000_free_desc_rings(adapter
);
1734 static int e1000_link_test(struct e1000_adapter
*adapter
, u64
*data
)
1736 struct e1000_hw
*hw
= &adapter
->hw
;
1739 if (hw
->phy
.media_type
== e1000_media_type_internal_serdes
) {
1742 hw
->mac
.serdes_has_link
= false;
1744 /* On some blade server designs, link establishment
1745 * could take as long as 2-3 minutes
1748 hw
->mac
.ops
.check_for_link(hw
);
1749 if (hw
->mac
.serdes_has_link
)
1752 } while (i
++ < 3750);
1756 hw
->mac
.ops
.check_for_link(hw
);
1757 if (hw
->mac
.autoneg
)
1758 /* On some Phy/switch combinations, link establishment
1759 * can take a few seconds more than expected.
1761 msleep_interruptible(5000);
1763 if (!(er32(STATUS
) & E1000_STATUS_LU
))
1769 static int e1000e_get_sset_count(struct net_device __always_unused
*netdev
,
1774 return E1000_TEST_LEN
;
1776 return E1000_STATS_LEN
;
1782 static void e1000_diag_test(struct net_device
*netdev
,
1783 struct ethtool_test
*eth_test
, u64
*data
)
1785 struct e1000_adapter
*adapter
= netdev_priv(netdev
);
1786 u16 autoneg_advertised
;
1787 u8 forced_speed_duplex
;
1789 bool if_running
= netif_running(netdev
);
1791 pm_runtime_get_sync(netdev
->dev
.parent
);
1793 set_bit(__E1000_TESTING
, &adapter
->state
);
1796 /* Get control of and reset hardware */
1797 if (adapter
->flags
& FLAG_HAS_AMT
)
1798 e1000e_get_hw_control(adapter
);
1800 e1000e_power_up_phy(adapter
);
1802 adapter
->hw
.phy
.autoneg_wait_to_complete
= 1;
1803 e1000e_reset(adapter
);
1804 adapter
->hw
.phy
.autoneg_wait_to_complete
= 0;
1807 if (eth_test
->flags
== ETH_TEST_FL_OFFLINE
) {
1810 /* save speed, duplex, autoneg settings */
1811 autoneg_advertised
= adapter
->hw
.phy
.autoneg_advertised
;
1812 forced_speed_duplex
= adapter
->hw
.mac
.forced_speed_duplex
;
1813 autoneg
= adapter
->hw
.mac
.autoneg
;
1815 e_info("offline testing starting\n");
1818 /* indicate we're in test mode */
1821 if (e1000_reg_test(adapter
, &data
[0]))
1822 eth_test
->flags
|= ETH_TEST_FL_FAILED
;
1824 e1000e_reset(adapter
);
1825 if (e1000_eeprom_test(adapter
, &data
[1]))
1826 eth_test
->flags
|= ETH_TEST_FL_FAILED
;
1828 e1000e_reset(adapter
);
1829 if (e1000_intr_test(adapter
, &data
[2]))
1830 eth_test
->flags
|= ETH_TEST_FL_FAILED
;
1832 e1000e_reset(adapter
);
1833 if (e1000_loopback_test(adapter
, &data
[3]))
1834 eth_test
->flags
|= ETH_TEST_FL_FAILED
;
1836 /* force this routine to wait until autoneg complete/timeout */
1837 adapter
->hw
.phy
.autoneg_wait_to_complete
= 1;
1838 e1000e_reset(adapter
);
1839 adapter
->hw
.phy
.autoneg_wait_to_complete
= 0;
1841 if (e1000_link_test(adapter
, &data
[4]))
1842 eth_test
->flags
|= ETH_TEST_FL_FAILED
;
1844 /* restore speed, duplex, autoneg settings */
1845 adapter
->hw
.phy
.autoneg_advertised
= autoneg_advertised
;
1846 adapter
->hw
.mac
.forced_speed_duplex
= forced_speed_duplex
;
1847 adapter
->hw
.mac
.autoneg
= autoneg
;
1848 e1000e_reset(adapter
);
1850 clear_bit(__E1000_TESTING
, &adapter
->state
);
1856 e_info("online testing starting\n");
1858 /* register, eeprom, intr and loopback tests not run online */
1864 if (e1000_link_test(adapter
, &data
[4]))
1865 eth_test
->flags
|= ETH_TEST_FL_FAILED
;
1867 clear_bit(__E1000_TESTING
, &adapter
->state
);
1871 e1000e_reset(adapter
);
1873 if (adapter
->flags
& FLAG_HAS_AMT
)
1874 e1000e_release_hw_control(adapter
);
1877 msleep_interruptible(4 * 1000);
1879 pm_runtime_put_sync(netdev
->dev
.parent
);
1882 static void e1000_get_wol(struct net_device
*netdev
,
1883 struct ethtool_wolinfo
*wol
)
1885 struct e1000_adapter
*adapter
= netdev_priv(netdev
);
1890 if (!(adapter
->flags
& FLAG_HAS_WOL
) ||
1891 !device_can_wakeup(&adapter
->pdev
->dev
))
1894 wol
->supported
= WAKE_UCAST
| WAKE_MCAST
|
1895 WAKE_BCAST
| WAKE_MAGIC
| WAKE_PHY
;
1897 /* apply any specific unsupported masks here */
1898 if (adapter
->flags
& FLAG_NO_WAKE_UCAST
) {
1899 wol
->supported
&= ~WAKE_UCAST
;
1901 if (adapter
->wol
& E1000_WUFC_EX
)
1902 e_err("Interface does not support directed (unicast) frame wake-up packets\n");
1905 if (adapter
->wol
& E1000_WUFC_EX
)
1906 wol
->wolopts
|= WAKE_UCAST
;
1907 if (adapter
->wol
& E1000_WUFC_MC
)
1908 wol
->wolopts
|= WAKE_MCAST
;
1909 if (adapter
->wol
& E1000_WUFC_BC
)
1910 wol
->wolopts
|= WAKE_BCAST
;
1911 if (adapter
->wol
& E1000_WUFC_MAG
)
1912 wol
->wolopts
|= WAKE_MAGIC
;
1913 if (adapter
->wol
& E1000_WUFC_LNKC
)
1914 wol
->wolopts
|= WAKE_PHY
;
1917 static int e1000_set_wol(struct net_device
*netdev
, struct ethtool_wolinfo
*wol
)
1919 struct e1000_adapter
*adapter
= netdev_priv(netdev
);
1921 if (!(adapter
->flags
& FLAG_HAS_WOL
) ||
1922 !device_can_wakeup(&adapter
->pdev
->dev
) ||
1923 (wol
->wolopts
& ~(WAKE_UCAST
| WAKE_MCAST
| WAKE_BCAST
|
1924 WAKE_MAGIC
| WAKE_PHY
)))
1927 /* these settings will always override what we currently have */
1930 if (wol
->wolopts
& WAKE_UCAST
)
1931 adapter
->wol
|= E1000_WUFC_EX
;
1932 if (wol
->wolopts
& WAKE_MCAST
)
1933 adapter
->wol
|= E1000_WUFC_MC
;
1934 if (wol
->wolopts
& WAKE_BCAST
)
1935 adapter
->wol
|= E1000_WUFC_BC
;
1936 if (wol
->wolopts
& WAKE_MAGIC
)
1937 adapter
->wol
|= E1000_WUFC_MAG
;
1938 if (wol
->wolopts
& WAKE_PHY
)
1939 adapter
->wol
|= E1000_WUFC_LNKC
;
1941 device_set_wakeup_enable(&adapter
->pdev
->dev
, adapter
->wol
);
1946 static int e1000_set_phys_id(struct net_device
*netdev
,
1947 enum ethtool_phys_id_state state
)
1949 struct e1000_adapter
*adapter
= netdev_priv(netdev
);
1950 struct e1000_hw
*hw
= &adapter
->hw
;
1953 case ETHTOOL_ID_ACTIVE
:
1954 pm_runtime_get_sync(netdev
->dev
.parent
);
1956 if (!hw
->mac
.ops
.blink_led
)
1957 return 2; /* cycle on/off twice per second */
1959 hw
->mac
.ops
.blink_led(hw
);
1962 case ETHTOOL_ID_INACTIVE
:
1963 if (hw
->phy
.type
== e1000_phy_ife
)
1964 e1e_wphy(hw
, IFE_PHY_SPECIAL_CONTROL_LED
, 0);
1965 hw
->mac
.ops
.led_off(hw
);
1966 hw
->mac
.ops
.cleanup_led(hw
);
1967 pm_runtime_put_sync(netdev
->dev
.parent
);
1971 hw
->mac
.ops
.led_on(hw
);
1974 case ETHTOOL_ID_OFF
:
1975 hw
->mac
.ops
.led_off(hw
);
1982 static int e1000_get_coalesce(struct net_device
*netdev
,
1983 struct ethtool_coalesce
*ec
)
1985 struct e1000_adapter
*adapter
= netdev_priv(netdev
);
1987 if (adapter
->itr_setting
<= 4)
1988 ec
->rx_coalesce_usecs
= adapter
->itr_setting
;
1990 ec
->rx_coalesce_usecs
= 1000000 / adapter
->itr_setting
;
1995 static int e1000_set_coalesce(struct net_device
*netdev
,
1996 struct ethtool_coalesce
*ec
)
1998 struct e1000_adapter
*adapter
= netdev_priv(netdev
);
2000 if ((ec
->rx_coalesce_usecs
> E1000_MAX_ITR_USECS
) ||
2001 ((ec
->rx_coalesce_usecs
> 4) &&
2002 (ec
->rx_coalesce_usecs
< E1000_MIN_ITR_USECS
)) ||
2003 (ec
->rx_coalesce_usecs
== 2))
2006 if (ec
->rx_coalesce_usecs
== 4) {
2007 adapter
->itr_setting
= 4;
2008 adapter
->itr
= adapter
->itr_setting
;
2009 } else if (ec
->rx_coalesce_usecs
<= 3) {
2010 adapter
->itr
= 20000;
2011 adapter
->itr_setting
= ec
->rx_coalesce_usecs
;
2013 adapter
->itr
= (1000000 / ec
->rx_coalesce_usecs
);
2014 adapter
->itr_setting
= adapter
->itr
& ~3;
2017 pm_runtime_get_sync(netdev
->dev
.parent
);
2019 if (adapter
->itr_setting
!= 0)
2020 e1000e_write_itr(adapter
, adapter
->itr
);
2022 e1000e_write_itr(adapter
, 0);
2024 pm_runtime_put_sync(netdev
->dev
.parent
);
2029 static int e1000_nway_reset(struct net_device
*netdev
)
2031 struct e1000_adapter
*adapter
= netdev_priv(netdev
);
2033 if (!netif_running(netdev
))
2036 if (!adapter
->hw
.mac
.autoneg
)
2039 pm_runtime_get_sync(netdev
->dev
.parent
);
2040 e1000e_reinit_locked(adapter
);
2041 pm_runtime_put_sync(netdev
->dev
.parent
);
2046 static void e1000_get_ethtool_stats(struct net_device
*netdev
,
2047 struct ethtool_stats __always_unused
*stats
,
2050 struct e1000_adapter
*adapter
= netdev_priv(netdev
);
2051 struct rtnl_link_stats64 net_stats
;
2055 pm_runtime_get_sync(netdev
->dev
.parent
);
2057 e1000e_get_stats64(netdev
, &net_stats
);
2059 pm_runtime_put_sync(netdev
->dev
.parent
);
2061 for (i
= 0; i
< E1000_GLOBAL_STATS_LEN
; i
++) {
2062 switch (e1000_gstrings_stats
[i
].type
) {
2064 p
= (char *)&net_stats
+
2065 e1000_gstrings_stats
[i
].stat_offset
;
2068 p
= (char *)adapter
+
2069 e1000_gstrings_stats
[i
].stat_offset
;
2076 data
[i
] = (e1000_gstrings_stats
[i
].sizeof_stat
==
2077 sizeof(u64
)) ? *(u64
*)p
: *(u32
*)p
;
2081 static void e1000_get_strings(struct net_device __always_unused
*netdev
,
2082 u32 stringset
, u8
*data
)
2087 switch (stringset
) {
2089 memcpy(data
, e1000_gstrings_test
, sizeof(e1000_gstrings_test
));
2092 for (i
= 0; i
< E1000_GLOBAL_STATS_LEN
; i
++) {
2093 memcpy(p
, e1000_gstrings_stats
[i
].stat_string
,
2095 p
+= ETH_GSTRING_LEN
;
2101 static int e1000_get_rxnfc(struct net_device
*netdev
,
2102 struct ethtool_rxnfc
*info
,
2103 u32 __always_unused
*rule_locs
)
2107 switch (info
->cmd
) {
2108 case ETHTOOL_GRXFH
: {
2109 struct e1000_adapter
*adapter
= netdev_priv(netdev
);
2110 struct e1000_hw
*hw
= &adapter
->hw
;
2113 pm_runtime_get_sync(netdev
->dev
.parent
);
2115 pm_runtime_put_sync(netdev
->dev
.parent
);
2117 if (!(mrqc
& E1000_MRQC_RSS_FIELD_MASK
))
2120 switch (info
->flow_type
) {
2122 if (mrqc
& E1000_MRQC_RSS_FIELD_IPV4_TCP
)
2123 info
->data
|= RXH_L4_B_0_1
| RXH_L4_B_2_3
;
2127 case AH_ESP_V4_FLOW
:
2129 if (mrqc
& E1000_MRQC_RSS_FIELD_IPV4
)
2130 info
->data
|= RXH_IP_SRC
| RXH_IP_DST
;
2133 if (mrqc
& E1000_MRQC_RSS_FIELD_IPV6_TCP
)
2134 info
->data
|= RXH_L4_B_0_1
| RXH_L4_B_2_3
;
2138 case AH_ESP_V6_FLOW
:
2140 if (mrqc
& E1000_MRQC_RSS_FIELD_IPV6
)
2141 info
->data
|= RXH_IP_SRC
| RXH_IP_DST
;
2153 static int e1000e_get_eee(struct net_device
*netdev
, struct ethtool_eee
*edata
)
2155 struct e1000_adapter
*adapter
= netdev_priv(netdev
);
2156 struct e1000_hw
*hw
= &adapter
->hw
;
2157 u16 cap_addr
, lpa_addr
, pcs_stat_addr
, phy_data
;
2160 if (!(adapter
->flags2
& FLAG2_HAS_EEE
))
2163 switch (hw
->phy
.type
) {
2164 case e1000_phy_82579
:
2165 cap_addr
= I82579_EEE_CAPABILITY
;
2166 lpa_addr
= I82579_EEE_LP_ABILITY
;
2167 pcs_stat_addr
= I82579_EEE_PCS_STATUS
;
2169 case e1000_phy_i217
:
2170 cap_addr
= I217_EEE_CAPABILITY
;
2171 lpa_addr
= I217_EEE_LP_ABILITY
;
2172 pcs_stat_addr
= I217_EEE_PCS_STATUS
;
2178 pm_runtime_get_sync(netdev
->dev
.parent
);
2180 ret_val
= hw
->phy
.ops
.acquire(hw
);
2182 pm_runtime_put_sync(netdev
->dev
.parent
);
2186 /* EEE Capability */
2187 ret_val
= e1000_read_emi_reg_locked(hw
, cap_addr
, &phy_data
);
2190 edata
->supported
= mmd_eee_cap_to_ethtool_sup_t(phy_data
);
2192 /* EEE Advertised */
2193 edata
->advertised
= mmd_eee_adv_to_ethtool_adv_t(adapter
->eee_advert
);
2195 /* EEE Link Partner Advertised */
2196 ret_val
= e1000_read_emi_reg_locked(hw
, lpa_addr
, &phy_data
);
2199 edata
->lp_advertised
= mmd_eee_adv_to_ethtool_adv_t(phy_data
);
2201 /* EEE PCS Status */
2202 ret_val
= e1000_read_emi_reg_locked(hw
, pcs_stat_addr
, &phy_data
);
2205 if (hw
->phy
.type
== e1000_phy_82579
)
2208 /* Result of the EEE auto negotiation - there is no register that
2209 * has the status of the EEE negotiation so do a best-guess based
2210 * on whether Tx or Rx LPI indications have been received.
2212 if (phy_data
& (E1000_EEE_TX_LPI_RCVD
| E1000_EEE_RX_LPI_RCVD
))
2213 edata
->eee_active
= true;
2215 edata
->eee_enabled
= !hw
->dev_spec
.ich8lan
.eee_disable
;
2216 edata
->tx_lpi_enabled
= true;
2217 edata
->tx_lpi_timer
= er32(LPIC
) >> E1000_LPIC_LPIET_SHIFT
;
2220 hw
->phy
.ops
.release(hw
);
2224 pm_runtime_put_sync(netdev
->dev
.parent
);
2229 static int e1000e_set_eee(struct net_device
*netdev
, struct ethtool_eee
*edata
)
2231 struct e1000_adapter
*adapter
= netdev_priv(netdev
);
2232 struct e1000_hw
*hw
= &adapter
->hw
;
2233 struct ethtool_eee eee_curr
;
2236 ret_val
= e1000e_get_eee(netdev
, &eee_curr
);
2240 if (eee_curr
.tx_lpi_enabled
!= edata
->tx_lpi_enabled
) {
2241 e_err("Setting EEE tx-lpi is not supported\n");
2245 if (eee_curr
.tx_lpi_timer
!= edata
->tx_lpi_timer
) {
2246 e_err("Setting EEE Tx LPI timer is not supported\n");
2250 if (edata
->advertised
& ~(ADVERTISE_100_FULL
| ADVERTISE_1000_FULL
)) {
2251 e_err("EEE advertisement supports only 100TX and/or 1000T full-duplex\n");
2255 adapter
->eee_advert
= ethtool_adv_to_mmd_eee_adv_t(edata
->advertised
);
2257 hw
->dev_spec
.ich8lan
.eee_disable
= !edata
->eee_enabled
;
2259 pm_runtime_get_sync(netdev
->dev
.parent
);
2261 /* reset the link */
2262 if (netif_running(netdev
))
2263 e1000e_reinit_locked(adapter
);
2265 e1000e_reset(adapter
);
2267 pm_runtime_put_sync(netdev
->dev
.parent
);
2272 static int e1000e_get_ts_info(struct net_device
*netdev
,
2273 struct ethtool_ts_info
*info
)
2275 struct e1000_adapter
*adapter
= netdev_priv(netdev
);
2277 ethtool_op_get_ts_info(netdev
, info
);
2279 if (!(adapter
->flags
& FLAG_HAS_HW_TIMESTAMP
))
2282 info
->so_timestamping
|= (SOF_TIMESTAMPING_TX_HARDWARE
|
2283 SOF_TIMESTAMPING_RX_HARDWARE
|
2284 SOF_TIMESTAMPING_RAW_HARDWARE
);
2286 info
->tx_types
= (1 << HWTSTAMP_TX_OFF
) | (1 << HWTSTAMP_TX_ON
);
2288 info
->rx_filters
= ((1 << HWTSTAMP_FILTER_NONE
) |
2289 (1 << HWTSTAMP_FILTER_PTP_V1_L4_SYNC
) |
2290 (1 << HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ
) |
2291 (1 << HWTSTAMP_FILTER_PTP_V2_L4_SYNC
) |
2292 (1 << HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ
) |
2293 (1 << HWTSTAMP_FILTER_PTP_V2_L2_SYNC
) |
2294 (1 << HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ
) |
2295 (1 << HWTSTAMP_FILTER_PTP_V2_EVENT
) |
2296 (1 << HWTSTAMP_FILTER_PTP_V2_SYNC
) |
2297 (1 << HWTSTAMP_FILTER_PTP_V2_DELAY_REQ
) |
2298 (1 << HWTSTAMP_FILTER_ALL
));
2300 if (adapter
->ptp_clock
)
2301 info
->phc_index
= ptp_clock_index(adapter
->ptp_clock
);
2306 static const struct ethtool_ops e1000_ethtool_ops
= {
2307 .get_settings
= e1000_get_settings
,
2308 .set_settings
= e1000_set_settings
,
2309 .get_drvinfo
= e1000_get_drvinfo
,
2310 .get_regs_len
= e1000_get_regs_len
,
2311 .get_regs
= e1000_get_regs
,
2312 .get_wol
= e1000_get_wol
,
2313 .set_wol
= e1000_set_wol
,
2314 .get_msglevel
= e1000_get_msglevel
,
2315 .set_msglevel
= e1000_set_msglevel
,
2316 .nway_reset
= e1000_nway_reset
,
2317 .get_link
= ethtool_op_get_link
,
2318 .get_eeprom_len
= e1000_get_eeprom_len
,
2319 .get_eeprom
= e1000_get_eeprom
,
2320 .set_eeprom
= e1000_set_eeprom
,
2321 .get_ringparam
= e1000_get_ringparam
,
2322 .set_ringparam
= e1000_set_ringparam
,
2323 .get_pauseparam
= e1000_get_pauseparam
,
2324 .set_pauseparam
= e1000_set_pauseparam
,
2325 .self_test
= e1000_diag_test
,
2326 .get_strings
= e1000_get_strings
,
2327 .set_phys_id
= e1000_set_phys_id
,
2328 .get_ethtool_stats
= e1000_get_ethtool_stats
,
2329 .get_sset_count
= e1000e_get_sset_count
,
2330 .get_coalesce
= e1000_get_coalesce
,
2331 .set_coalesce
= e1000_set_coalesce
,
2332 .get_rxnfc
= e1000_get_rxnfc
,
2333 .get_ts_info
= e1000e_get_ts_info
,
2334 .get_eee
= e1000e_get_eee
,
2335 .set_eee
= e1000e_set_eee
,
2338 void e1000e_set_ethtool_ops(struct net_device
*netdev
)
2340 netdev
->ethtool_ops
= &e1000_ethtool_ops
;