1adfc5217SJeff Kirsher /* bnx2x_ethtool.c: Broadcom Everest network driver.
2adfc5217SJeff Kirsher  *
385b26ea1SAriel Elior  * Copyright (c) 2007-2012 Broadcom Corporation
4adfc5217SJeff Kirsher  *
5adfc5217SJeff Kirsher  * This program is free software; you can redistribute it and/or modify
6adfc5217SJeff Kirsher  * it under the terms of the GNU General Public License as published by
7adfc5217SJeff Kirsher  * the Free Software Foundation.
8adfc5217SJeff Kirsher  *
9adfc5217SJeff Kirsher  * Maintained by: Eilon Greenstein <eilong@broadcom.com>
10adfc5217SJeff Kirsher  * Written by: Eliezer Tamir
11adfc5217SJeff Kirsher  * Based on code from Michael Chan's bnx2 driver
12adfc5217SJeff Kirsher  * UDP CSUM errata workaround by Arik Gendelman
13adfc5217SJeff Kirsher  * Slowpath and fastpath rework by Vladislav Zolotarov
14adfc5217SJeff Kirsher  * Statistics and Link management by Yitchak Gertner
15adfc5217SJeff Kirsher  *
16adfc5217SJeff Kirsher  */
17f1deab50SJoe Perches 
18f1deab50SJoe Perches #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
19f1deab50SJoe Perches 
20adfc5217SJeff Kirsher #include <linux/ethtool.h>
21adfc5217SJeff Kirsher #include <linux/netdevice.h>
22adfc5217SJeff Kirsher #include <linux/types.h>
23adfc5217SJeff Kirsher #include <linux/sched.h>
24adfc5217SJeff Kirsher #include <linux/crc32.h>
25adfc5217SJeff Kirsher #include "bnx2x.h"
26adfc5217SJeff Kirsher #include "bnx2x_cmn.h"
27adfc5217SJeff Kirsher #include "bnx2x_dump.h"
28adfc5217SJeff Kirsher #include "bnx2x_init.h"
29adfc5217SJeff Kirsher 
30adfc5217SJeff Kirsher /* Note: in the format strings below %s is replaced by the queue-name which is
31adfc5217SJeff Kirsher  * either its index or 'fcoe' for the fcoe queue. Make sure the format string
32adfc5217SJeff Kirsher  * length does not exceed ETH_GSTRING_LEN - MAX_QUEUE_NAME_LEN + 2
33adfc5217SJeff Kirsher  */
34adfc5217SJeff Kirsher #define MAX_QUEUE_NAME_LEN	4
35adfc5217SJeff Kirsher static const struct {
36adfc5217SJeff Kirsher 	long offset;
37adfc5217SJeff Kirsher 	int size;
38adfc5217SJeff Kirsher 	char string[ETH_GSTRING_LEN];
39adfc5217SJeff Kirsher } bnx2x_q_stats_arr[] = {
40adfc5217SJeff Kirsher /* 1 */	{ Q_STATS_OFFSET32(total_bytes_received_hi), 8, "[%s]: rx_bytes" },
41adfc5217SJeff Kirsher 	{ Q_STATS_OFFSET32(total_unicast_packets_received_hi),
42adfc5217SJeff Kirsher 						8, "[%s]: rx_ucast_packets" },
43adfc5217SJeff Kirsher 	{ Q_STATS_OFFSET32(total_multicast_packets_received_hi),
44adfc5217SJeff Kirsher 						8, "[%s]: rx_mcast_packets" },
45adfc5217SJeff Kirsher 	{ Q_STATS_OFFSET32(total_broadcast_packets_received_hi),
46adfc5217SJeff Kirsher 						8, "[%s]: rx_bcast_packets" },
47adfc5217SJeff Kirsher 	{ Q_STATS_OFFSET32(no_buff_discard_hi),	8, "[%s]: rx_discards" },
48adfc5217SJeff Kirsher 	{ Q_STATS_OFFSET32(rx_err_discard_pkt),
49adfc5217SJeff Kirsher 					 4, "[%s]: rx_phy_ip_err_discards"},
50adfc5217SJeff Kirsher 	{ Q_STATS_OFFSET32(rx_skb_alloc_failed),
51adfc5217SJeff Kirsher 					 4, "[%s]: rx_skb_alloc_discard" },
52adfc5217SJeff Kirsher 	{ Q_STATS_OFFSET32(hw_csum_err), 4, "[%s]: rx_csum_offload_errors" },
53adfc5217SJeff Kirsher 
54adfc5217SJeff Kirsher 	{ Q_STATS_OFFSET32(total_bytes_transmitted_hi),	8, "[%s]: tx_bytes" },
55adfc5217SJeff Kirsher /* 10 */{ Q_STATS_OFFSET32(total_unicast_packets_transmitted_hi),
56adfc5217SJeff Kirsher 						8, "[%s]: tx_ucast_packets" },
57adfc5217SJeff Kirsher 	{ Q_STATS_OFFSET32(total_multicast_packets_transmitted_hi),
58adfc5217SJeff Kirsher 						8, "[%s]: tx_mcast_packets" },
59adfc5217SJeff Kirsher 	{ Q_STATS_OFFSET32(total_broadcast_packets_transmitted_hi),
60adfc5217SJeff Kirsher 						8, "[%s]: tx_bcast_packets" },
61adfc5217SJeff Kirsher 	{ Q_STATS_OFFSET32(total_tpa_aggregations_hi),
62adfc5217SJeff Kirsher 						8, "[%s]: tpa_aggregations" },
63adfc5217SJeff Kirsher 	{ Q_STATS_OFFSET32(total_tpa_aggregated_frames_hi),
64adfc5217SJeff Kirsher 					8, "[%s]: tpa_aggregated_frames"},
65c96bdc0cSDmitry Kravkov 	{ Q_STATS_OFFSET32(total_tpa_bytes_hi),	8, "[%s]: tpa_bytes"},
66c96bdc0cSDmitry Kravkov 	{ Q_STATS_OFFSET32(driver_filtered_tx_pkt),
67c96bdc0cSDmitry Kravkov 					4, "[%s]: driver_filtered_tx_pkt" }
68adfc5217SJeff Kirsher };
69adfc5217SJeff Kirsher 
70adfc5217SJeff Kirsher #define BNX2X_NUM_Q_STATS ARRAY_SIZE(bnx2x_q_stats_arr)
71adfc5217SJeff Kirsher 
72adfc5217SJeff Kirsher static const struct {
73adfc5217SJeff Kirsher 	long offset;
74adfc5217SJeff Kirsher 	int size;
75adfc5217SJeff Kirsher 	u32 flags;
76adfc5217SJeff Kirsher #define STATS_FLAGS_PORT		1
77adfc5217SJeff Kirsher #define STATS_FLAGS_FUNC		2
78adfc5217SJeff Kirsher #define STATS_FLAGS_BOTH		(STATS_FLAGS_FUNC | STATS_FLAGS_PORT)
79adfc5217SJeff Kirsher 	char string[ETH_GSTRING_LEN];
80adfc5217SJeff Kirsher } bnx2x_stats_arr[] = {
81adfc5217SJeff Kirsher /* 1 */	{ STATS_OFFSET32(total_bytes_received_hi),
82adfc5217SJeff Kirsher 				8, STATS_FLAGS_BOTH, "rx_bytes" },
83adfc5217SJeff Kirsher 	{ STATS_OFFSET32(error_bytes_received_hi),
84adfc5217SJeff Kirsher 				8, STATS_FLAGS_BOTH, "rx_error_bytes" },
85adfc5217SJeff Kirsher 	{ STATS_OFFSET32(total_unicast_packets_received_hi),
86adfc5217SJeff Kirsher 				8, STATS_FLAGS_BOTH, "rx_ucast_packets" },
87adfc5217SJeff Kirsher 	{ STATS_OFFSET32(total_multicast_packets_received_hi),
88adfc5217SJeff Kirsher 				8, STATS_FLAGS_BOTH, "rx_mcast_packets" },
89adfc5217SJeff Kirsher 	{ STATS_OFFSET32(total_broadcast_packets_received_hi),
90adfc5217SJeff Kirsher 				8, STATS_FLAGS_BOTH, "rx_bcast_packets" },
91adfc5217SJeff Kirsher 	{ STATS_OFFSET32(rx_stat_dot3statsfcserrors_hi),
92adfc5217SJeff Kirsher 				8, STATS_FLAGS_PORT, "rx_crc_errors" },
93adfc5217SJeff Kirsher 	{ STATS_OFFSET32(rx_stat_dot3statsalignmenterrors_hi),
94adfc5217SJeff Kirsher 				8, STATS_FLAGS_PORT, "rx_align_errors" },
95adfc5217SJeff Kirsher 	{ STATS_OFFSET32(rx_stat_etherstatsundersizepkts_hi),
96adfc5217SJeff Kirsher 				8, STATS_FLAGS_PORT, "rx_undersize_packets" },
97adfc5217SJeff Kirsher 	{ STATS_OFFSET32(etherstatsoverrsizepkts_hi),
98adfc5217SJeff Kirsher 				8, STATS_FLAGS_PORT, "rx_oversize_packets" },
99adfc5217SJeff Kirsher /* 10 */{ STATS_OFFSET32(rx_stat_etherstatsfragments_hi),
100adfc5217SJeff Kirsher 				8, STATS_FLAGS_PORT, "rx_fragments" },
101adfc5217SJeff Kirsher 	{ STATS_OFFSET32(rx_stat_etherstatsjabbers_hi),
102adfc5217SJeff Kirsher 				8, STATS_FLAGS_PORT, "rx_jabbers" },
103adfc5217SJeff Kirsher 	{ STATS_OFFSET32(no_buff_discard_hi),
104adfc5217SJeff Kirsher 				8, STATS_FLAGS_BOTH, "rx_discards" },
105adfc5217SJeff Kirsher 	{ STATS_OFFSET32(mac_filter_discard),
106adfc5217SJeff Kirsher 				4, STATS_FLAGS_PORT, "rx_filtered_packets" },
107adfc5217SJeff Kirsher 	{ STATS_OFFSET32(mf_tag_discard),
108adfc5217SJeff Kirsher 				4, STATS_FLAGS_PORT, "rx_mf_tag_discard" },
1090e898dd7SBarak Witkowski 	{ STATS_OFFSET32(pfc_frames_received_hi),
1100e898dd7SBarak Witkowski 				8, STATS_FLAGS_PORT, "pfc_frames_received" },
1110e898dd7SBarak Witkowski 	{ STATS_OFFSET32(pfc_frames_sent_hi),
1120e898dd7SBarak Witkowski 				8, STATS_FLAGS_PORT, "pfc_frames_sent" },
113adfc5217SJeff Kirsher 	{ STATS_OFFSET32(brb_drop_hi),
114adfc5217SJeff Kirsher 				8, STATS_FLAGS_PORT, "rx_brb_discard" },
115adfc5217SJeff Kirsher 	{ STATS_OFFSET32(brb_truncate_hi),
116adfc5217SJeff Kirsher 				8, STATS_FLAGS_PORT, "rx_brb_truncate" },
117adfc5217SJeff Kirsher 	{ STATS_OFFSET32(pause_frames_received_hi),
118adfc5217SJeff Kirsher 				8, STATS_FLAGS_PORT, "rx_pause_frames" },
119adfc5217SJeff Kirsher 	{ STATS_OFFSET32(rx_stat_maccontrolframesreceived_hi),
120adfc5217SJeff Kirsher 				8, STATS_FLAGS_PORT, "rx_mac_ctrl_frames" },
121adfc5217SJeff Kirsher 	{ STATS_OFFSET32(nig_timer_max),
122adfc5217SJeff Kirsher 			4, STATS_FLAGS_PORT, "rx_constant_pause_events" },
123adfc5217SJeff Kirsher /* 20 */{ STATS_OFFSET32(rx_err_discard_pkt),
124adfc5217SJeff Kirsher 				4, STATS_FLAGS_BOTH, "rx_phy_ip_err_discards"},
125adfc5217SJeff Kirsher 	{ STATS_OFFSET32(rx_skb_alloc_failed),
126adfc5217SJeff Kirsher 				4, STATS_FLAGS_BOTH, "rx_skb_alloc_discard" },
127adfc5217SJeff Kirsher 	{ STATS_OFFSET32(hw_csum_err),
128adfc5217SJeff Kirsher 				4, STATS_FLAGS_BOTH, "rx_csum_offload_errors" },
129adfc5217SJeff Kirsher 
130adfc5217SJeff Kirsher 	{ STATS_OFFSET32(total_bytes_transmitted_hi),
131adfc5217SJeff Kirsher 				8, STATS_FLAGS_BOTH, "tx_bytes" },
132adfc5217SJeff Kirsher 	{ STATS_OFFSET32(tx_stat_ifhcoutbadoctets_hi),
133adfc5217SJeff Kirsher 				8, STATS_FLAGS_PORT, "tx_error_bytes" },
134adfc5217SJeff Kirsher 	{ STATS_OFFSET32(total_unicast_packets_transmitted_hi),
135adfc5217SJeff Kirsher 				8, STATS_FLAGS_BOTH, "tx_ucast_packets" },
136adfc5217SJeff Kirsher 	{ STATS_OFFSET32(total_multicast_packets_transmitted_hi),
137adfc5217SJeff Kirsher 				8, STATS_FLAGS_BOTH, "tx_mcast_packets" },
138adfc5217SJeff Kirsher 	{ STATS_OFFSET32(total_broadcast_packets_transmitted_hi),
139adfc5217SJeff Kirsher 				8, STATS_FLAGS_BOTH, "tx_bcast_packets" },
140adfc5217SJeff Kirsher 	{ STATS_OFFSET32(tx_stat_dot3statsinternalmactransmiterrors_hi),
141adfc5217SJeff Kirsher 				8, STATS_FLAGS_PORT, "tx_mac_errors" },
142adfc5217SJeff Kirsher 	{ STATS_OFFSET32(rx_stat_dot3statscarriersenseerrors_hi),
143adfc5217SJeff Kirsher 				8, STATS_FLAGS_PORT, "tx_carrier_errors" },
144adfc5217SJeff Kirsher /* 30 */{ STATS_OFFSET32(tx_stat_dot3statssinglecollisionframes_hi),
145adfc5217SJeff Kirsher 				8, STATS_FLAGS_PORT, "tx_single_collisions" },
146adfc5217SJeff Kirsher 	{ STATS_OFFSET32(tx_stat_dot3statsmultiplecollisionframes_hi),
147adfc5217SJeff Kirsher 				8, STATS_FLAGS_PORT, "tx_multi_collisions" },
148adfc5217SJeff Kirsher 	{ STATS_OFFSET32(tx_stat_dot3statsdeferredtransmissions_hi),
149adfc5217SJeff Kirsher 				8, STATS_FLAGS_PORT, "tx_deferred" },
150adfc5217SJeff Kirsher 	{ STATS_OFFSET32(tx_stat_dot3statsexcessivecollisions_hi),
151adfc5217SJeff Kirsher 				8, STATS_FLAGS_PORT, "tx_excess_collisions" },
152adfc5217SJeff Kirsher 	{ STATS_OFFSET32(tx_stat_dot3statslatecollisions_hi),
153adfc5217SJeff Kirsher 				8, STATS_FLAGS_PORT, "tx_late_collisions" },
154adfc5217SJeff Kirsher 	{ STATS_OFFSET32(tx_stat_etherstatscollisions_hi),
155adfc5217SJeff Kirsher 				8, STATS_FLAGS_PORT, "tx_total_collisions" },
156adfc5217SJeff Kirsher 	{ STATS_OFFSET32(tx_stat_etherstatspkts64octets_hi),
157adfc5217SJeff Kirsher 				8, STATS_FLAGS_PORT, "tx_64_byte_packets" },
158adfc5217SJeff Kirsher 	{ STATS_OFFSET32(tx_stat_etherstatspkts65octetsto127octets_hi),
159adfc5217SJeff Kirsher 			8, STATS_FLAGS_PORT, "tx_65_to_127_byte_packets" },
160adfc5217SJeff Kirsher 	{ STATS_OFFSET32(tx_stat_etherstatspkts128octetsto255octets_hi),
161adfc5217SJeff Kirsher 			8, STATS_FLAGS_PORT, "tx_128_to_255_byte_packets" },
162adfc5217SJeff Kirsher 	{ STATS_OFFSET32(tx_stat_etherstatspkts256octetsto511octets_hi),
163adfc5217SJeff Kirsher 			8, STATS_FLAGS_PORT, "tx_256_to_511_byte_packets" },
164adfc5217SJeff Kirsher /* 40 */{ STATS_OFFSET32(tx_stat_etherstatspkts512octetsto1023octets_hi),
165adfc5217SJeff Kirsher 			8, STATS_FLAGS_PORT, "tx_512_to_1023_byte_packets" },
166adfc5217SJeff Kirsher 	{ STATS_OFFSET32(etherstatspkts1024octetsto1522octets_hi),
167adfc5217SJeff Kirsher 			8, STATS_FLAGS_PORT, "tx_1024_to_1522_byte_packets" },
168adfc5217SJeff Kirsher 	{ STATS_OFFSET32(etherstatspktsover1522octets_hi),
169adfc5217SJeff Kirsher 			8, STATS_FLAGS_PORT, "tx_1523_to_9022_byte_packets" },
170adfc5217SJeff Kirsher 	{ STATS_OFFSET32(pause_frames_sent_hi),
171adfc5217SJeff Kirsher 				8, STATS_FLAGS_PORT, "tx_pause_frames" },
172adfc5217SJeff Kirsher 	{ STATS_OFFSET32(total_tpa_aggregations_hi),
173adfc5217SJeff Kirsher 			8, STATS_FLAGS_FUNC, "tpa_aggregations" },
174adfc5217SJeff Kirsher 	{ STATS_OFFSET32(total_tpa_aggregated_frames_hi),
175adfc5217SJeff Kirsher 			8, STATS_FLAGS_FUNC, "tpa_aggregated_frames"},
176adfc5217SJeff Kirsher 	{ STATS_OFFSET32(total_tpa_bytes_hi),
1777a752993SAriel Elior 			8, STATS_FLAGS_FUNC, "tpa_bytes"},
1787a752993SAriel Elior 	{ STATS_OFFSET32(recoverable_error),
1797a752993SAriel Elior 			4, STATS_FLAGS_FUNC, "recoverable_errors" },
1807a752993SAriel Elior 	{ STATS_OFFSET32(unrecoverable_error),
1817a752993SAriel Elior 			4, STATS_FLAGS_FUNC, "unrecoverable_errors" },
182c96bdc0cSDmitry Kravkov 	{ STATS_OFFSET32(driver_filtered_tx_pkt),
183c96bdc0cSDmitry Kravkov 			4, STATS_FLAGS_FUNC, "driver_filtered_tx_pkt" },
184e9939c80SYuval Mintz 	{ STATS_OFFSET32(eee_tx_lpi),
185e9939c80SYuval Mintz 			4, STATS_FLAGS_PORT, "Tx LPI entry count"}
186adfc5217SJeff Kirsher };
187adfc5217SJeff Kirsher 
188adfc5217SJeff Kirsher #define BNX2X_NUM_STATS		ARRAY_SIZE(bnx2x_stats_arr)
18907ba6af4SMiriam Shitrit 
190adfc5217SJeff Kirsher static int bnx2x_get_port_type(struct bnx2x *bp)
191adfc5217SJeff Kirsher {
192adfc5217SJeff Kirsher 	int port_type;
193adfc5217SJeff Kirsher 	u32 phy_idx = bnx2x_get_cur_phy_idx(bp);
194adfc5217SJeff Kirsher 	switch (bp->link_params.phy[phy_idx].media_type) {
195dbef807eSYuval Mintz 	case ETH_PHY_SFPP_10G_FIBER:
196dbef807eSYuval Mintz 	case ETH_PHY_SFP_1G_FIBER:
197adfc5217SJeff Kirsher 	case ETH_PHY_XFP_FIBER:
198adfc5217SJeff Kirsher 	case ETH_PHY_KR:
199adfc5217SJeff Kirsher 	case ETH_PHY_CX4:
200adfc5217SJeff Kirsher 		port_type = PORT_FIBRE;
201adfc5217SJeff Kirsher 		break;
202adfc5217SJeff Kirsher 	case ETH_PHY_DA_TWINAX:
203adfc5217SJeff Kirsher 		port_type = PORT_DA;
204adfc5217SJeff Kirsher 		break;
205adfc5217SJeff Kirsher 	case ETH_PHY_BASE_T:
206adfc5217SJeff Kirsher 		port_type = PORT_TP;
207adfc5217SJeff Kirsher 		break;
208adfc5217SJeff Kirsher 	case ETH_PHY_NOT_PRESENT:
209adfc5217SJeff Kirsher 		port_type = PORT_NONE;
210adfc5217SJeff Kirsher 		break;
211adfc5217SJeff Kirsher 	case ETH_PHY_UNSPECIFIED:
212adfc5217SJeff Kirsher 	default:
213adfc5217SJeff Kirsher 		port_type = PORT_OTHER;
214adfc5217SJeff Kirsher 		break;
215adfc5217SJeff Kirsher 	}
216adfc5217SJeff Kirsher 	return port_type;
217adfc5217SJeff Kirsher }
218adfc5217SJeff Kirsher 
219adfc5217SJeff Kirsher static int bnx2x_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
220adfc5217SJeff Kirsher {
221adfc5217SJeff Kirsher 	struct bnx2x *bp = netdev_priv(dev);
222adfc5217SJeff Kirsher 	int cfg_idx = bnx2x_get_link_cfg_idx(bp);
223adfc5217SJeff Kirsher 
224adfc5217SJeff Kirsher 	/* Dual Media boards present all available port types */
225adfc5217SJeff Kirsher 	cmd->supported = bp->port.supported[cfg_idx] |
226adfc5217SJeff Kirsher 		(bp->port.supported[cfg_idx ^ 1] &
227adfc5217SJeff Kirsher 		 (SUPPORTED_TP | SUPPORTED_FIBRE));
228adfc5217SJeff Kirsher 	cmd->advertising = bp->port.advertising[cfg_idx];
229dbef807eSYuval Mintz 	if (bp->link_params.phy[bnx2x_get_cur_phy_idx(bp)].media_type ==
230dbef807eSYuval Mintz 	    ETH_PHY_SFP_1G_FIBER) {
231dbef807eSYuval Mintz 		cmd->supported &= ~(SUPPORTED_10000baseT_Full);
232dbef807eSYuval Mintz 		cmd->advertising &= ~(ADVERTISED_10000baseT_Full);
233dbef807eSYuval Mintz 	}
234adfc5217SJeff Kirsher 
23559694f00SYuval Mintz 	if ((bp->state == BNX2X_STATE_OPEN) && bp->link_vars.link_up &&
23659694f00SYuval Mintz 	    !(bp->flags & MF_FUNC_DIS)) {
237adfc5217SJeff Kirsher 			cmd->duplex = bp->link_vars.duplex;
238adfc5217SJeff Kirsher 
23938298461SYuval Mintz 		if (IS_MF(bp) && !BP_NOMCP(bp))
240adfc5217SJeff Kirsher 			ethtool_cmd_speed_set(cmd, bnx2x_get_mf_speed(bp));
24159694f00SYuval Mintz 		else
24259694f00SYuval Mintz 			ethtool_cmd_speed_set(cmd, bp->link_vars.line_speed);
24338298461SYuval Mintz 	} else {
24438298461SYuval Mintz 		cmd->duplex = DUPLEX_UNKNOWN;
24538298461SYuval Mintz 		ethtool_cmd_speed_set(cmd, SPEED_UNKNOWN);
24638298461SYuval Mintz 	}
247adfc5217SJeff Kirsher 
248adfc5217SJeff Kirsher 	cmd->port = bnx2x_get_port_type(bp);
249adfc5217SJeff Kirsher 
250adfc5217SJeff Kirsher 	cmd->phy_address = bp->mdio.prtad;
251adfc5217SJeff Kirsher 	cmd->transceiver = XCVR_INTERNAL;
252adfc5217SJeff Kirsher 
253adfc5217SJeff Kirsher 	if (bp->link_params.req_line_speed[cfg_idx] == SPEED_AUTO_NEG)
254adfc5217SJeff Kirsher 		cmd->autoneg = AUTONEG_ENABLE;
255adfc5217SJeff Kirsher 	else
256adfc5217SJeff Kirsher 		cmd->autoneg = AUTONEG_DISABLE;
257adfc5217SJeff Kirsher 
2589e7e8399SMintz Yuval 	/* Publish LP advertised speeds and FC */
2599e7e8399SMintz Yuval 	if (bp->link_vars.link_status & LINK_STATUS_AUTO_NEGOTIATE_COMPLETE) {
2609e7e8399SMintz Yuval 		u32 status = bp->link_vars.link_status;
2619e7e8399SMintz Yuval 
2629e7e8399SMintz Yuval 		cmd->lp_advertising |= ADVERTISED_Autoneg;
2639e7e8399SMintz Yuval 		if (status & LINK_STATUS_LINK_PARTNER_SYMMETRIC_PAUSE)
2649e7e8399SMintz Yuval 			cmd->lp_advertising |= ADVERTISED_Pause;
2659e7e8399SMintz Yuval 		if (status & LINK_STATUS_LINK_PARTNER_ASYMMETRIC_PAUSE)
2669e7e8399SMintz Yuval 			cmd->lp_advertising |= ADVERTISED_Asym_Pause;
2679e7e8399SMintz Yuval 
2689e7e8399SMintz Yuval 		if (status & LINK_STATUS_LINK_PARTNER_10THD_CAPABLE)
2699e7e8399SMintz Yuval 			cmd->lp_advertising |= ADVERTISED_10baseT_Half;
2709e7e8399SMintz Yuval 		if (status & LINK_STATUS_LINK_PARTNER_10TFD_CAPABLE)
2719e7e8399SMintz Yuval 			cmd->lp_advertising |= ADVERTISED_10baseT_Full;
2729e7e8399SMintz Yuval 		if (status & LINK_STATUS_LINK_PARTNER_100TXHD_CAPABLE)
2739e7e8399SMintz Yuval 			cmd->lp_advertising |= ADVERTISED_100baseT_Half;
2749e7e8399SMintz Yuval 		if (status & LINK_STATUS_LINK_PARTNER_100TXFD_CAPABLE)
2759e7e8399SMintz Yuval 			cmd->lp_advertising |= ADVERTISED_100baseT_Full;
2769e7e8399SMintz Yuval 		if (status & LINK_STATUS_LINK_PARTNER_1000THD_CAPABLE)
2779e7e8399SMintz Yuval 			cmd->lp_advertising |= ADVERTISED_1000baseT_Half;
2789e7e8399SMintz Yuval 		if (status & LINK_STATUS_LINK_PARTNER_1000TFD_CAPABLE)
2799e7e8399SMintz Yuval 			cmd->lp_advertising |= ADVERTISED_1000baseT_Full;
2809e7e8399SMintz Yuval 		if (status & LINK_STATUS_LINK_PARTNER_2500XFD_CAPABLE)
2819e7e8399SMintz Yuval 			cmd->lp_advertising |= ADVERTISED_2500baseX_Full;
2829e7e8399SMintz Yuval 		if (status & LINK_STATUS_LINK_PARTNER_10GXFD_CAPABLE)
2839e7e8399SMintz Yuval 			cmd->lp_advertising |= ADVERTISED_10000baseT_Full;
2849e7e8399SMintz Yuval 	}
2859e7e8399SMintz Yuval 
286adfc5217SJeff Kirsher 	cmd->maxtxpkt = 0;
287adfc5217SJeff Kirsher 	cmd->maxrxpkt = 0;
288adfc5217SJeff Kirsher 
28951c1a580SMerav Sicron 	DP(BNX2X_MSG_ETHTOOL, "ethtool_cmd: cmd %d\n"
290f1deab50SJoe Perches 	   "  supported 0x%x  advertising 0x%x  speed %u\n"
291f1deab50SJoe Perches 	   "  duplex %d  port %d  phy_address %d  transceiver %d\n"
292f1deab50SJoe Perches 	   "  autoneg %d  maxtxpkt %d  maxrxpkt %d\n",
293adfc5217SJeff Kirsher 	   cmd->cmd, cmd->supported, cmd->advertising,
294adfc5217SJeff Kirsher 	   ethtool_cmd_speed(cmd),
295adfc5217SJeff Kirsher 	   cmd->duplex, cmd->port, cmd->phy_address, cmd->transceiver,
296adfc5217SJeff Kirsher 	   cmd->autoneg, cmd->maxtxpkt, cmd->maxrxpkt);
297adfc5217SJeff Kirsher 
298adfc5217SJeff Kirsher 	return 0;
299adfc5217SJeff Kirsher }
300adfc5217SJeff Kirsher 
301adfc5217SJeff Kirsher static int bnx2x_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
302adfc5217SJeff Kirsher {
303adfc5217SJeff Kirsher 	struct bnx2x *bp = netdev_priv(dev);
304adfc5217SJeff Kirsher 	u32 advertising, cfg_idx, old_multi_phy_config, new_multi_phy_config;
305dbef807eSYuval Mintz 	u32 speed, phy_idx;
306adfc5217SJeff Kirsher 
307adfc5217SJeff Kirsher 	if (IS_MF_SD(bp))
308adfc5217SJeff Kirsher 		return 0;
309adfc5217SJeff Kirsher 
31051c1a580SMerav Sicron 	DP(BNX2X_MSG_ETHTOOL, "ethtool_cmd: cmd %d\n"
311adfc5217SJeff Kirsher 	   "  supported 0x%x  advertising 0x%x  speed %u\n"
312adfc5217SJeff Kirsher 	   "  duplex %d  port %d  phy_address %d  transceiver %d\n"
313adfc5217SJeff Kirsher 	   "  autoneg %d  maxtxpkt %d  maxrxpkt %d\n",
314adfc5217SJeff Kirsher 	   cmd->cmd, cmd->supported, cmd->advertising,
315adfc5217SJeff Kirsher 	   ethtool_cmd_speed(cmd),
316adfc5217SJeff Kirsher 	   cmd->duplex, cmd->port, cmd->phy_address, cmd->transceiver,
317adfc5217SJeff Kirsher 	   cmd->autoneg, cmd->maxtxpkt, cmd->maxrxpkt);
318adfc5217SJeff Kirsher 
319adfc5217SJeff Kirsher 	speed = ethtool_cmd_speed(cmd);
320adfc5217SJeff Kirsher 
32138298461SYuval Mintz 	/* If recieved a request for an unknown duplex, assume full*/
32238298461SYuval Mintz 	if (cmd->duplex == DUPLEX_UNKNOWN)
32338298461SYuval Mintz 		cmd->duplex = DUPLEX_FULL;
32438298461SYuval Mintz 
325adfc5217SJeff Kirsher 	if (IS_MF_SI(bp)) {
326adfc5217SJeff Kirsher 		u32 part;
327adfc5217SJeff Kirsher 		u32 line_speed = bp->link_vars.line_speed;
328adfc5217SJeff Kirsher 
329adfc5217SJeff Kirsher 		/* use 10G if no link detected */
330adfc5217SJeff Kirsher 		if (!line_speed)
331adfc5217SJeff Kirsher 			line_speed = 10000;
332adfc5217SJeff Kirsher 
333adfc5217SJeff Kirsher 		if (bp->common.bc_ver < REQ_BC_VER_4_SET_MF_BW) {
33451c1a580SMerav Sicron 			DP(BNX2X_MSG_ETHTOOL,
33551c1a580SMerav Sicron 			   "To set speed BC %X or higher is required, please upgrade BC\n",
336adfc5217SJeff Kirsher 			   REQ_BC_VER_4_SET_MF_BW);
337adfc5217SJeff Kirsher 			return -EINVAL;
338adfc5217SJeff Kirsher 		}
339adfc5217SJeff Kirsher 
340adfc5217SJeff Kirsher 		part = (speed * 100) / line_speed;
341adfc5217SJeff Kirsher 
342adfc5217SJeff Kirsher 		if (line_speed < speed || !part) {
34351c1a580SMerav Sicron 			DP(BNX2X_MSG_ETHTOOL,
34451c1a580SMerav Sicron 			   "Speed setting should be in a range from 1%% to 100%% of actual line speed\n");
345adfc5217SJeff Kirsher 			return -EINVAL;
346adfc5217SJeff Kirsher 		}
347adfc5217SJeff Kirsher 
348adfc5217SJeff Kirsher 		if (bp->state != BNX2X_STATE_OPEN)
349adfc5217SJeff Kirsher 			/* store value for following "load" */
350adfc5217SJeff Kirsher 			bp->pending_max = part;
351adfc5217SJeff Kirsher 		else
352adfc5217SJeff Kirsher 			bnx2x_update_max_mf_config(bp, part);
353adfc5217SJeff Kirsher 
354adfc5217SJeff Kirsher 		return 0;
355adfc5217SJeff Kirsher 	}
356adfc5217SJeff Kirsher 
357adfc5217SJeff Kirsher 	cfg_idx = bnx2x_get_link_cfg_idx(bp);
358adfc5217SJeff Kirsher 	old_multi_phy_config = bp->link_params.multi_phy_config;
359adfc5217SJeff Kirsher 	switch (cmd->port) {
360adfc5217SJeff Kirsher 	case PORT_TP:
361adfc5217SJeff Kirsher 		if (bp->port.supported[cfg_idx] & SUPPORTED_TP)
362adfc5217SJeff Kirsher 			break; /* no port change */
363adfc5217SJeff Kirsher 
364adfc5217SJeff Kirsher 		if (!(bp->port.supported[0] & SUPPORTED_TP ||
365adfc5217SJeff Kirsher 		      bp->port.supported[1] & SUPPORTED_TP)) {
36651c1a580SMerav Sicron 			DP(BNX2X_MSG_ETHTOOL, "Unsupported port type\n");
367adfc5217SJeff Kirsher 			return -EINVAL;
368adfc5217SJeff Kirsher 		}
369adfc5217SJeff Kirsher 		bp->link_params.multi_phy_config &=
370adfc5217SJeff Kirsher 			~PORT_HW_CFG_PHY_SELECTION_MASK;
371adfc5217SJeff Kirsher 		if (bp->link_params.multi_phy_config &
372adfc5217SJeff Kirsher 		    PORT_HW_CFG_PHY_SWAPPED_ENABLED)
373adfc5217SJeff Kirsher 			bp->link_params.multi_phy_config |=
374adfc5217SJeff Kirsher 			PORT_HW_CFG_PHY_SELECTION_SECOND_PHY;
375adfc5217SJeff Kirsher 		else
376adfc5217SJeff Kirsher 			bp->link_params.multi_phy_config |=
377adfc5217SJeff Kirsher 			PORT_HW_CFG_PHY_SELECTION_FIRST_PHY;
378adfc5217SJeff Kirsher 		break;
379adfc5217SJeff Kirsher 	case PORT_FIBRE:
380bfdb5823SYaniv Rosner 	case PORT_DA:
381adfc5217SJeff Kirsher 		if (bp->port.supported[cfg_idx] & SUPPORTED_FIBRE)
382adfc5217SJeff Kirsher 			break; /* no port change */
383adfc5217SJeff Kirsher 
384adfc5217SJeff Kirsher 		if (!(bp->port.supported[0] & SUPPORTED_FIBRE ||
385adfc5217SJeff Kirsher 		      bp->port.supported[1] & SUPPORTED_FIBRE)) {
38651c1a580SMerav Sicron 			DP(BNX2X_MSG_ETHTOOL, "Unsupported port type\n");
387adfc5217SJeff Kirsher 			return -EINVAL;
388adfc5217SJeff Kirsher 		}
389adfc5217SJeff Kirsher 		bp->link_params.multi_phy_config &=
390adfc5217SJeff Kirsher 			~PORT_HW_CFG_PHY_SELECTION_MASK;
391adfc5217SJeff Kirsher 		if (bp->link_params.multi_phy_config &
392adfc5217SJeff Kirsher 		    PORT_HW_CFG_PHY_SWAPPED_ENABLED)
393adfc5217SJeff Kirsher 			bp->link_params.multi_phy_config |=
394adfc5217SJeff Kirsher 			PORT_HW_CFG_PHY_SELECTION_FIRST_PHY;
395adfc5217SJeff Kirsher 		else
396adfc5217SJeff Kirsher 			bp->link_params.multi_phy_config |=
397adfc5217SJeff Kirsher 			PORT_HW_CFG_PHY_SELECTION_SECOND_PHY;
398adfc5217SJeff Kirsher 		break;
399adfc5217SJeff Kirsher 	default:
40051c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL, "Unsupported port type\n");
401adfc5217SJeff Kirsher 		return -EINVAL;
402adfc5217SJeff Kirsher 	}
4032f751a80SYaniv Rosner 	/* Save new config in case command complete successully */
404adfc5217SJeff Kirsher 	new_multi_phy_config = bp->link_params.multi_phy_config;
405adfc5217SJeff Kirsher 	/* Get the new cfg_idx */
406adfc5217SJeff Kirsher 	cfg_idx = bnx2x_get_link_cfg_idx(bp);
407adfc5217SJeff Kirsher 	/* Restore old config in case command failed */
408adfc5217SJeff Kirsher 	bp->link_params.multi_phy_config = old_multi_phy_config;
40951c1a580SMerav Sicron 	DP(BNX2X_MSG_ETHTOOL, "cfg_idx = %x\n", cfg_idx);
410adfc5217SJeff Kirsher 
411adfc5217SJeff Kirsher 	if (cmd->autoneg == AUTONEG_ENABLE) {
41275318327SYaniv Rosner 		u32 an_supported_speed = bp->port.supported[cfg_idx];
41375318327SYaniv Rosner 		if (bp->link_params.phy[EXT_PHY1].type ==
41475318327SYaniv Rosner 		    PORT_HW_CFG_XGXS_EXT_PHY_TYPE_BCM84833)
41575318327SYaniv Rosner 			an_supported_speed |= (SUPPORTED_100baseT_Half |
41675318327SYaniv Rosner 					       SUPPORTED_100baseT_Full);
417adfc5217SJeff Kirsher 		if (!(bp->port.supported[cfg_idx] & SUPPORTED_Autoneg)) {
41851c1a580SMerav Sicron 			DP(BNX2X_MSG_ETHTOOL, "Autoneg not supported\n");
419adfc5217SJeff Kirsher 			return -EINVAL;
420adfc5217SJeff Kirsher 		}
421adfc5217SJeff Kirsher 
422adfc5217SJeff Kirsher 		/* advertise the requested speed and duplex if supported */
42375318327SYaniv Rosner 		if (cmd->advertising & ~an_supported_speed) {
42451c1a580SMerav Sicron 			DP(BNX2X_MSG_ETHTOOL,
42551c1a580SMerav Sicron 			   "Advertisement parameters are not supported\n");
4268decf868SDavid S. Miller 			return -EINVAL;
4278decf868SDavid S. Miller 		}
428adfc5217SJeff Kirsher 
429adfc5217SJeff Kirsher 		bp->link_params.req_line_speed[cfg_idx] = SPEED_AUTO_NEG;
4308decf868SDavid S. Miller 		bp->link_params.req_duplex[cfg_idx] = cmd->duplex;
4318decf868SDavid S. Miller 		bp->port.advertising[cfg_idx] = (ADVERTISED_Autoneg |
432adfc5217SJeff Kirsher 					 cmd->advertising);
4338decf868SDavid S. Miller 		if (cmd->advertising) {
434adfc5217SJeff Kirsher 
4358decf868SDavid S. Miller 			bp->link_params.speed_cap_mask[cfg_idx] = 0;
4368decf868SDavid S. Miller 			if (cmd->advertising & ADVERTISED_10baseT_Half) {
4378decf868SDavid S. Miller 				bp->link_params.speed_cap_mask[cfg_idx] |=
4388decf868SDavid S. Miller 				PORT_HW_CFG_SPEED_CAPABILITY_D0_10M_HALF;
4398decf868SDavid S. Miller 			}
4408decf868SDavid S. Miller 			if (cmd->advertising & ADVERTISED_10baseT_Full)
4418decf868SDavid S. Miller 				bp->link_params.speed_cap_mask[cfg_idx] |=
4428decf868SDavid S. Miller 				PORT_HW_CFG_SPEED_CAPABILITY_D0_10M_FULL;
4438decf868SDavid S. Miller 
4448decf868SDavid S. Miller 			if (cmd->advertising & ADVERTISED_100baseT_Full)
4458decf868SDavid S. Miller 				bp->link_params.speed_cap_mask[cfg_idx] |=
4468decf868SDavid S. Miller 				PORT_HW_CFG_SPEED_CAPABILITY_D0_100M_FULL;
4478decf868SDavid S. Miller 
4488decf868SDavid S. Miller 			if (cmd->advertising & ADVERTISED_100baseT_Half) {
4498decf868SDavid S. Miller 				bp->link_params.speed_cap_mask[cfg_idx] |=
4508decf868SDavid S. Miller 				     PORT_HW_CFG_SPEED_CAPABILITY_D0_100M_HALF;
4518decf868SDavid S. Miller 			}
4528decf868SDavid S. Miller 			if (cmd->advertising & ADVERTISED_1000baseT_Half) {
4538decf868SDavid S. Miller 				bp->link_params.speed_cap_mask[cfg_idx] |=
4548decf868SDavid S. Miller 					PORT_HW_CFG_SPEED_CAPABILITY_D0_1G;
4558decf868SDavid S. Miller 			}
4568decf868SDavid S. Miller 			if (cmd->advertising & (ADVERTISED_1000baseT_Full |
4578decf868SDavid S. Miller 						ADVERTISED_1000baseKX_Full))
4588decf868SDavid S. Miller 				bp->link_params.speed_cap_mask[cfg_idx] |=
4598decf868SDavid S. Miller 					PORT_HW_CFG_SPEED_CAPABILITY_D0_1G;
4608decf868SDavid S. Miller 
4618decf868SDavid S. Miller 			if (cmd->advertising & (ADVERTISED_10000baseT_Full |
4628decf868SDavid S. Miller 						ADVERTISED_10000baseKX4_Full |
4638decf868SDavid S. Miller 						ADVERTISED_10000baseKR_Full))
4648decf868SDavid S. Miller 				bp->link_params.speed_cap_mask[cfg_idx] |=
4658decf868SDavid S. Miller 					PORT_HW_CFG_SPEED_CAPABILITY_D0_10G;
4668decf868SDavid S. Miller 		}
467adfc5217SJeff Kirsher 	} else { /* forced speed */
468adfc5217SJeff Kirsher 		/* advertise the requested speed and duplex if supported */
469adfc5217SJeff Kirsher 		switch (speed) {
470adfc5217SJeff Kirsher 		case SPEED_10:
471adfc5217SJeff Kirsher 			if (cmd->duplex == DUPLEX_FULL) {
472adfc5217SJeff Kirsher 				if (!(bp->port.supported[cfg_idx] &
473adfc5217SJeff Kirsher 				      SUPPORTED_10baseT_Full)) {
47451c1a580SMerav Sicron 					DP(BNX2X_MSG_ETHTOOL,
475adfc5217SJeff Kirsher 					   "10M full not supported\n");
476adfc5217SJeff Kirsher 					return -EINVAL;
477adfc5217SJeff Kirsher 				}
478adfc5217SJeff Kirsher 
479adfc5217SJeff Kirsher 				advertising = (ADVERTISED_10baseT_Full |
480adfc5217SJeff Kirsher 					       ADVERTISED_TP);
481adfc5217SJeff Kirsher 			} else {
482adfc5217SJeff Kirsher 				if (!(bp->port.supported[cfg_idx] &
483adfc5217SJeff Kirsher 				      SUPPORTED_10baseT_Half)) {
48451c1a580SMerav Sicron 					DP(BNX2X_MSG_ETHTOOL,
485adfc5217SJeff Kirsher 					   "10M half not supported\n");
486adfc5217SJeff Kirsher 					return -EINVAL;
487adfc5217SJeff Kirsher 				}
488adfc5217SJeff Kirsher 
489adfc5217SJeff Kirsher 				advertising = (ADVERTISED_10baseT_Half |
490adfc5217SJeff Kirsher 					       ADVERTISED_TP);
491adfc5217SJeff Kirsher 			}
492adfc5217SJeff Kirsher 			break;
493adfc5217SJeff Kirsher 
494adfc5217SJeff Kirsher 		case SPEED_100:
495adfc5217SJeff Kirsher 			if (cmd->duplex == DUPLEX_FULL) {
496adfc5217SJeff Kirsher 				if (!(bp->port.supported[cfg_idx] &
497adfc5217SJeff Kirsher 						SUPPORTED_100baseT_Full)) {
49851c1a580SMerav Sicron 					DP(BNX2X_MSG_ETHTOOL,
499adfc5217SJeff Kirsher 					   "100M full not supported\n");
500adfc5217SJeff Kirsher 					return -EINVAL;
501adfc5217SJeff Kirsher 				}
502adfc5217SJeff Kirsher 
503adfc5217SJeff Kirsher 				advertising = (ADVERTISED_100baseT_Full |
504adfc5217SJeff Kirsher 					       ADVERTISED_TP);
505adfc5217SJeff Kirsher 			} else {
506adfc5217SJeff Kirsher 				if (!(bp->port.supported[cfg_idx] &
507adfc5217SJeff Kirsher 						SUPPORTED_100baseT_Half)) {
50851c1a580SMerav Sicron 					DP(BNX2X_MSG_ETHTOOL,
509adfc5217SJeff Kirsher 					   "100M half not supported\n");
510adfc5217SJeff Kirsher 					return -EINVAL;
511adfc5217SJeff Kirsher 				}
512adfc5217SJeff Kirsher 
513adfc5217SJeff Kirsher 				advertising = (ADVERTISED_100baseT_Half |
514adfc5217SJeff Kirsher 					       ADVERTISED_TP);
515adfc5217SJeff Kirsher 			}
516adfc5217SJeff Kirsher 			break;
517adfc5217SJeff Kirsher 
518adfc5217SJeff Kirsher 		case SPEED_1000:
519adfc5217SJeff Kirsher 			if (cmd->duplex != DUPLEX_FULL) {
52051c1a580SMerav Sicron 				DP(BNX2X_MSG_ETHTOOL,
52151c1a580SMerav Sicron 				   "1G half not supported\n");
522adfc5217SJeff Kirsher 				return -EINVAL;
523adfc5217SJeff Kirsher 			}
524adfc5217SJeff Kirsher 
525adfc5217SJeff Kirsher 			if (!(bp->port.supported[cfg_idx] &
526adfc5217SJeff Kirsher 			      SUPPORTED_1000baseT_Full)) {
52751c1a580SMerav Sicron 				DP(BNX2X_MSG_ETHTOOL,
52851c1a580SMerav Sicron 				   "1G full not supported\n");
529adfc5217SJeff Kirsher 				return -EINVAL;
530adfc5217SJeff Kirsher 			}
531adfc5217SJeff Kirsher 
532adfc5217SJeff Kirsher 			advertising = (ADVERTISED_1000baseT_Full |
533adfc5217SJeff Kirsher 				       ADVERTISED_TP);
534adfc5217SJeff Kirsher 			break;
535adfc5217SJeff Kirsher 
536adfc5217SJeff Kirsher 		case SPEED_2500:
537adfc5217SJeff Kirsher 			if (cmd->duplex != DUPLEX_FULL) {
53851c1a580SMerav Sicron 				DP(BNX2X_MSG_ETHTOOL,
539adfc5217SJeff Kirsher 				   "2.5G half not supported\n");
540adfc5217SJeff Kirsher 				return -EINVAL;
541adfc5217SJeff Kirsher 			}
542adfc5217SJeff Kirsher 
543adfc5217SJeff Kirsher 			if (!(bp->port.supported[cfg_idx]
544adfc5217SJeff Kirsher 			      & SUPPORTED_2500baseX_Full)) {
54551c1a580SMerav Sicron 				DP(BNX2X_MSG_ETHTOOL,
546adfc5217SJeff Kirsher 				   "2.5G full not supported\n");
547adfc5217SJeff Kirsher 				return -EINVAL;
548adfc5217SJeff Kirsher 			}
549adfc5217SJeff Kirsher 
550adfc5217SJeff Kirsher 			advertising = (ADVERTISED_2500baseX_Full |
551adfc5217SJeff Kirsher 				       ADVERTISED_TP);
552adfc5217SJeff Kirsher 			break;
553adfc5217SJeff Kirsher 
554adfc5217SJeff Kirsher 		case SPEED_10000:
555adfc5217SJeff Kirsher 			if (cmd->duplex != DUPLEX_FULL) {
55651c1a580SMerav Sicron 				DP(BNX2X_MSG_ETHTOOL,
55751c1a580SMerav Sicron 				   "10G half not supported\n");
558adfc5217SJeff Kirsher 				return -EINVAL;
559adfc5217SJeff Kirsher 			}
560dbef807eSYuval Mintz 			phy_idx = bnx2x_get_cur_phy_idx(bp);
561adfc5217SJeff Kirsher 			if (!(bp->port.supported[cfg_idx]
562dbef807eSYuval Mintz 			      & SUPPORTED_10000baseT_Full) ||
563dbef807eSYuval Mintz 			    (bp->link_params.phy[phy_idx].media_type ==
564dbef807eSYuval Mintz 			     ETH_PHY_SFP_1G_FIBER)) {
56551c1a580SMerav Sicron 				DP(BNX2X_MSG_ETHTOOL,
56651c1a580SMerav Sicron 				   "10G full not supported\n");
567adfc5217SJeff Kirsher 				return -EINVAL;
568adfc5217SJeff Kirsher 			}
569adfc5217SJeff Kirsher 
570adfc5217SJeff Kirsher 			advertising = (ADVERTISED_10000baseT_Full |
571adfc5217SJeff Kirsher 				       ADVERTISED_FIBRE);
572adfc5217SJeff Kirsher 			break;
573adfc5217SJeff Kirsher 
574adfc5217SJeff Kirsher 		default:
57551c1a580SMerav Sicron 			DP(BNX2X_MSG_ETHTOOL, "Unsupported speed %u\n", speed);
576adfc5217SJeff Kirsher 			return -EINVAL;
577adfc5217SJeff Kirsher 		}
578adfc5217SJeff Kirsher 
579adfc5217SJeff Kirsher 		bp->link_params.req_line_speed[cfg_idx] = speed;
580adfc5217SJeff Kirsher 		bp->link_params.req_duplex[cfg_idx] = cmd->duplex;
581adfc5217SJeff Kirsher 		bp->port.advertising[cfg_idx] = advertising;
582adfc5217SJeff Kirsher 	}
583adfc5217SJeff Kirsher 
58451c1a580SMerav Sicron 	DP(BNX2X_MSG_ETHTOOL, "req_line_speed %d\n"
585f1deab50SJoe Perches 	   "  req_duplex %d  advertising 0x%x\n",
586adfc5217SJeff Kirsher 	   bp->link_params.req_line_speed[cfg_idx],
587adfc5217SJeff Kirsher 	   bp->link_params.req_duplex[cfg_idx],
588adfc5217SJeff Kirsher 	   bp->port.advertising[cfg_idx]);
589adfc5217SJeff Kirsher 
590adfc5217SJeff Kirsher 	/* Set new config */
591adfc5217SJeff Kirsher 	bp->link_params.multi_phy_config = new_multi_phy_config;
592adfc5217SJeff Kirsher 	if (netif_running(dev)) {
593adfc5217SJeff Kirsher 		bnx2x_stats_handle(bp, STATS_EVENT_STOP);
594adfc5217SJeff Kirsher 		bnx2x_link_set(bp);
595adfc5217SJeff Kirsher 	}
596adfc5217SJeff Kirsher 
597adfc5217SJeff Kirsher 	return 0;
598adfc5217SJeff Kirsher }
599adfc5217SJeff Kirsher 
60007ba6af4SMiriam Shitrit #define DUMP_ALL_PRESETS		0x1FFF
60107ba6af4SMiriam Shitrit #define DUMP_MAX_PRESETS		13
602adfc5217SJeff Kirsher 
60307ba6af4SMiriam Shitrit static int __bnx2x_get_preset_regs_len(struct bnx2x *bp, u32 preset)
604adfc5217SJeff Kirsher {
605adfc5217SJeff Kirsher 	if (CHIP_IS_E1(bp))
60607ba6af4SMiriam Shitrit 		return dump_num_registers[0][preset-1];
607adfc5217SJeff Kirsher 	else if (CHIP_IS_E1H(bp))
60807ba6af4SMiriam Shitrit 		return dump_num_registers[1][preset-1];
609adfc5217SJeff Kirsher 	else if (CHIP_IS_E2(bp))
61007ba6af4SMiriam Shitrit 		return dump_num_registers[2][preset-1];
611adfc5217SJeff Kirsher 	else if (CHIP_IS_E3A0(bp))
61207ba6af4SMiriam Shitrit 		return dump_num_registers[3][preset-1];
613adfc5217SJeff Kirsher 	else if (CHIP_IS_E3B0(bp))
61407ba6af4SMiriam Shitrit 		return dump_num_registers[4][preset-1];
615adfc5217SJeff Kirsher 	else
61607ba6af4SMiriam Shitrit 		return 0;
617adfc5217SJeff Kirsher }
618adfc5217SJeff Kirsher 
61907ba6af4SMiriam Shitrit static int __bnx2x_get_regs_len(struct bnx2x *bp)
62007ba6af4SMiriam Shitrit {
62107ba6af4SMiriam Shitrit 	u32 preset_idx;
62207ba6af4SMiriam Shitrit 	int regdump_len = 0;
62307ba6af4SMiriam Shitrit 
62407ba6af4SMiriam Shitrit 	/* Calculate the total preset regs length */
62507ba6af4SMiriam Shitrit 	for (preset_idx = 1; preset_idx <= DUMP_MAX_PRESETS; preset_idx++)
62607ba6af4SMiriam Shitrit 		regdump_len += __bnx2x_get_preset_regs_len(bp, preset_idx);
62707ba6af4SMiriam Shitrit 
62807ba6af4SMiriam Shitrit 	return regdump_len;
62907ba6af4SMiriam Shitrit }
63007ba6af4SMiriam Shitrit 
63107ba6af4SMiriam Shitrit static int bnx2x_get_regs_len(struct net_device *dev)
63207ba6af4SMiriam Shitrit {
63307ba6af4SMiriam Shitrit 	struct bnx2x *bp = netdev_priv(dev);
63407ba6af4SMiriam Shitrit 	int regdump_len = 0;
63507ba6af4SMiriam Shitrit 
63607ba6af4SMiriam Shitrit 	regdump_len = __bnx2x_get_regs_len(bp);
63707ba6af4SMiriam Shitrit 	regdump_len *= 4;
63807ba6af4SMiriam Shitrit 	regdump_len += sizeof(struct dump_header);
63907ba6af4SMiriam Shitrit 
64007ba6af4SMiriam Shitrit 	return regdump_len;
64107ba6af4SMiriam Shitrit }
64207ba6af4SMiriam Shitrit 
64307ba6af4SMiriam Shitrit #define IS_E1_REG(chips)	((chips & DUMP_CHIP_E1) == DUMP_CHIP_E1)
64407ba6af4SMiriam Shitrit #define IS_E1H_REG(chips)	((chips & DUMP_CHIP_E1H) == DUMP_CHIP_E1H)
64507ba6af4SMiriam Shitrit #define IS_E2_REG(chips)	((chips & DUMP_CHIP_E2) == DUMP_CHIP_E2)
64607ba6af4SMiriam Shitrit #define IS_E3A0_REG(chips)	((chips & DUMP_CHIP_E3A0) == DUMP_CHIP_E3A0)
64707ba6af4SMiriam Shitrit #define IS_E3B0_REG(chips)	((chips & DUMP_CHIP_E3B0) == DUMP_CHIP_E3B0)
64807ba6af4SMiriam Shitrit 
64907ba6af4SMiriam Shitrit #define IS_REG_IN_PRESET(presets, idx)  \
65007ba6af4SMiriam Shitrit 		((presets & (1 << (idx-1))) == (1 << (idx-1)))
65107ba6af4SMiriam Shitrit 
652adfc5217SJeff Kirsher /******* Paged registers info selectors ********/
6531191cb83SEric Dumazet static const u32 *__bnx2x_get_page_addr_ar(struct bnx2x *bp)
654adfc5217SJeff Kirsher {
655adfc5217SJeff Kirsher 	if (CHIP_IS_E2(bp))
656adfc5217SJeff Kirsher 		return page_vals_e2;
657adfc5217SJeff Kirsher 	else if (CHIP_IS_E3(bp))
658adfc5217SJeff Kirsher 		return page_vals_e3;
659adfc5217SJeff Kirsher 	else
660adfc5217SJeff Kirsher 		return NULL;
661adfc5217SJeff Kirsher }
662adfc5217SJeff Kirsher 
6631191cb83SEric Dumazet static u32 __bnx2x_get_page_reg_num(struct bnx2x *bp)
664adfc5217SJeff Kirsher {
665adfc5217SJeff Kirsher 	if (CHIP_IS_E2(bp))
666adfc5217SJeff Kirsher 		return PAGE_MODE_VALUES_E2;
667adfc5217SJeff Kirsher 	else if (CHIP_IS_E3(bp))
668adfc5217SJeff Kirsher 		return PAGE_MODE_VALUES_E3;
669adfc5217SJeff Kirsher 	else
670adfc5217SJeff Kirsher 		return 0;
671adfc5217SJeff Kirsher }
672adfc5217SJeff Kirsher 
6731191cb83SEric Dumazet static const u32 *__bnx2x_get_page_write_ar(struct bnx2x *bp)
674adfc5217SJeff Kirsher {
675adfc5217SJeff Kirsher 	if (CHIP_IS_E2(bp))
676adfc5217SJeff Kirsher 		return page_write_regs_e2;
677adfc5217SJeff Kirsher 	else if (CHIP_IS_E3(bp))
678adfc5217SJeff Kirsher 		return page_write_regs_e3;
679adfc5217SJeff Kirsher 	else
680adfc5217SJeff Kirsher 		return NULL;
681adfc5217SJeff Kirsher }
682adfc5217SJeff Kirsher 
6831191cb83SEric Dumazet static u32 __bnx2x_get_page_write_num(struct bnx2x *bp)
684adfc5217SJeff Kirsher {
685adfc5217SJeff Kirsher 	if (CHIP_IS_E2(bp))
686adfc5217SJeff Kirsher 		return PAGE_WRITE_REGS_E2;
687adfc5217SJeff Kirsher 	else if (CHIP_IS_E3(bp))
688adfc5217SJeff Kirsher 		return PAGE_WRITE_REGS_E3;
689adfc5217SJeff Kirsher 	else
690adfc5217SJeff Kirsher 		return 0;
691adfc5217SJeff Kirsher }
692adfc5217SJeff Kirsher 
6931191cb83SEric Dumazet static const struct reg_addr *__bnx2x_get_page_read_ar(struct bnx2x *bp)
694adfc5217SJeff Kirsher {
695adfc5217SJeff Kirsher 	if (CHIP_IS_E2(bp))
696adfc5217SJeff Kirsher 		return page_read_regs_e2;
697adfc5217SJeff Kirsher 	else if (CHIP_IS_E3(bp))
698adfc5217SJeff Kirsher 		return page_read_regs_e3;
699adfc5217SJeff Kirsher 	else
700adfc5217SJeff Kirsher 		return NULL;
701adfc5217SJeff Kirsher }
702adfc5217SJeff Kirsher 
7031191cb83SEric Dumazet static u32 __bnx2x_get_page_read_num(struct bnx2x *bp)
704adfc5217SJeff Kirsher {
705adfc5217SJeff Kirsher 	if (CHIP_IS_E2(bp))
706adfc5217SJeff Kirsher 		return PAGE_READ_REGS_E2;
707adfc5217SJeff Kirsher 	else if (CHIP_IS_E3(bp))
708adfc5217SJeff Kirsher 		return PAGE_READ_REGS_E3;
709adfc5217SJeff Kirsher 	else
710adfc5217SJeff Kirsher 		return 0;
711adfc5217SJeff Kirsher }
712adfc5217SJeff Kirsher 
71307ba6af4SMiriam Shitrit static bool bnx2x_is_reg_in_chip(struct bnx2x *bp,
71407ba6af4SMiriam Shitrit 				       const struct reg_addr *reg_info)
715adfc5217SJeff Kirsher {
71607ba6af4SMiriam Shitrit 	if (CHIP_IS_E1(bp))
71707ba6af4SMiriam Shitrit 		return IS_E1_REG(reg_info->chips);
71807ba6af4SMiriam Shitrit 	else if (CHIP_IS_E1H(bp))
71907ba6af4SMiriam Shitrit 		return IS_E1H_REG(reg_info->chips);
72007ba6af4SMiriam Shitrit 	else if (CHIP_IS_E2(bp))
72107ba6af4SMiriam Shitrit 		return IS_E2_REG(reg_info->chips);
72207ba6af4SMiriam Shitrit 	else if (CHIP_IS_E3A0(bp))
72307ba6af4SMiriam Shitrit 		return IS_E3A0_REG(reg_info->chips);
72407ba6af4SMiriam Shitrit 	else if (CHIP_IS_E3B0(bp))
72507ba6af4SMiriam Shitrit 		return IS_E3B0_REG(reg_info->chips);
72607ba6af4SMiriam Shitrit 	else
72707ba6af4SMiriam Shitrit 		return false;
728adfc5217SJeff Kirsher }
729adfc5217SJeff Kirsher 
73007ba6af4SMiriam Shitrit 
73107ba6af4SMiriam Shitrit static bool bnx2x_is_wreg_in_chip(struct bnx2x *bp,
73207ba6af4SMiriam Shitrit 	const struct wreg_addr *wreg_info)
733adfc5217SJeff Kirsher {
73407ba6af4SMiriam Shitrit 	if (CHIP_IS_E1(bp))
73507ba6af4SMiriam Shitrit 		return IS_E1_REG(wreg_info->chips);
73607ba6af4SMiriam Shitrit 	else if (CHIP_IS_E1H(bp))
73707ba6af4SMiriam Shitrit 		return IS_E1H_REG(wreg_info->chips);
73807ba6af4SMiriam Shitrit 	else if (CHIP_IS_E2(bp))
73907ba6af4SMiriam Shitrit 		return IS_E2_REG(wreg_info->chips);
74007ba6af4SMiriam Shitrit 	else if (CHIP_IS_E3A0(bp))
74107ba6af4SMiriam Shitrit 		return IS_E3A0_REG(wreg_info->chips);
74207ba6af4SMiriam Shitrit 	else if (CHIP_IS_E3B0(bp))
74307ba6af4SMiriam Shitrit 		return IS_E3B0_REG(wreg_info->chips);
74407ba6af4SMiriam Shitrit 	else
74507ba6af4SMiriam Shitrit 		return false;
746adfc5217SJeff Kirsher }
747adfc5217SJeff Kirsher 
748adfc5217SJeff Kirsher /**
749adfc5217SJeff Kirsher  * bnx2x_read_pages_regs - read "paged" registers
750adfc5217SJeff Kirsher  *
751adfc5217SJeff Kirsher  * @bp		device handle
752adfc5217SJeff Kirsher  * @p		output buffer
753adfc5217SJeff Kirsher  *
75407ba6af4SMiriam Shitrit  * Reads "paged" memories: memories that may only be read by
75507ba6af4SMiriam Shitrit  * first writing to a specific address ("write address") and
75607ba6af4SMiriam Shitrit  * then reading from a specific address ("read address"). There
75707ba6af4SMiriam Shitrit  * may be more than one write address per "page" and more than
75807ba6af4SMiriam Shitrit  * one read address per write address.
759adfc5217SJeff Kirsher  */
76007ba6af4SMiriam Shitrit static void bnx2x_read_pages_regs(struct bnx2x *bp, u32 *p, u32 preset)
761adfc5217SJeff Kirsher {
762adfc5217SJeff Kirsher 	u32 i, j, k, n;
76307ba6af4SMiriam Shitrit 
764adfc5217SJeff Kirsher 	/* addresses of the paged registers */
765adfc5217SJeff Kirsher 	const u32 *page_addr = __bnx2x_get_page_addr_ar(bp);
766adfc5217SJeff Kirsher 	/* number of paged registers */
767adfc5217SJeff Kirsher 	int num_pages = __bnx2x_get_page_reg_num(bp);
768adfc5217SJeff Kirsher 	/* write addresses */
769adfc5217SJeff Kirsher 	const u32 *write_addr = __bnx2x_get_page_write_ar(bp);
770adfc5217SJeff Kirsher 	/* number of write addresses */
771adfc5217SJeff Kirsher 	int write_num = __bnx2x_get_page_write_num(bp);
772adfc5217SJeff Kirsher 	/* read addresses info */
773adfc5217SJeff Kirsher 	const struct reg_addr *read_addr = __bnx2x_get_page_read_ar(bp);
774adfc5217SJeff Kirsher 	/* number of read addresses */
775adfc5217SJeff Kirsher 	int read_num = __bnx2x_get_page_read_num(bp);
77607ba6af4SMiriam Shitrit 	u32 addr, size;
777adfc5217SJeff Kirsher 
778adfc5217SJeff Kirsher 	for (i = 0; i < num_pages; i++) {
779adfc5217SJeff Kirsher 		for (j = 0; j < write_num; j++) {
780adfc5217SJeff Kirsher 			REG_WR(bp, write_addr[j], page_addr[i]);
78107ba6af4SMiriam Shitrit 
78207ba6af4SMiriam Shitrit 			for (k = 0; k < read_num; k++) {
78307ba6af4SMiriam Shitrit 				if (IS_REG_IN_PRESET(read_addr[k].presets,
78407ba6af4SMiriam Shitrit 						     preset)) {
78507ba6af4SMiriam Shitrit 					size = read_addr[k].size;
78607ba6af4SMiriam Shitrit 					for (n = 0; n < size; n++) {
78707ba6af4SMiriam Shitrit 						addr = read_addr[k].addr + n*4;
78807ba6af4SMiriam Shitrit 						*p++ = REG_RD(bp, addr);
789adfc5217SJeff Kirsher 					}
790adfc5217SJeff Kirsher 				}
791adfc5217SJeff Kirsher 			}
79207ba6af4SMiriam Shitrit 		}
79307ba6af4SMiriam Shitrit 	}
79407ba6af4SMiriam Shitrit }
79507ba6af4SMiriam Shitrit 
79607ba6af4SMiriam Shitrit static int __bnx2x_get_preset_regs(struct bnx2x *bp, u32 *p, u32 preset)
79707ba6af4SMiriam Shitrit {
79807ba6af4SMiriam Shitrit 	u32 i, j, addr;
79907ba6af4SMiriam Shitrit 	const struct wreg_addr *wreg_addr_p = NULL;
80007ba6af4SMiriam Shitrit 
80107ba6af4SMiriam Shitrit 	if (CHIP_IS_E1(bp))
80207ba6af4SMiriam Shitrit 		wreg_addr_p = &wreg_addr_e1;
80307ba6af4SMiriam Shitrit 	else if (CHIP_IS_E1H(bp))
80407ba6af4SMiriam Shitrit 		wreg_addr_p = &wreg_addr_e1h;
80507ba6af4SMiriam Shitrit 	else if (CHIP_IS_E2(bp))
80607ba6af4SMiriam Shitrit 		wreg_addr_p = &wreg_addr_e2;
80707ba6af4SMiriam Shitrit 	else if (CHIP_IS_E3A0(bp))
80807ba6af4SMiriam Shitrit 		wreg_addr_p = &wreg_addr_e3;
80907ba6af4SMiriam Shitrit 	else if (CHIP_IS_E3B0(bp))
81007ba6af4SMiriam Shitrit 		wreg_addr_p = &wreg_addr_e3b0;
81107ba6af4SMiriam Shitrit 
81207ba6af4SMiriam Shitrit 	/* Read the idle_chk registers */
81307ba6af4SMiriam Shitrit 	for (i = 0; i < IDLE_REGS_COUNT; i++) {
81407ba6af4SMiriam Shitrit 		if (bnx2x_is_reg_in_chip(bp, &idle_reg_addrs[i]) &&
81507ba6af4SMiriam Shitrit 		    IS_REG_IN_PRESET(idle_reg_addrs[i].presets, preset)) {
81607ba6af4SMiriam Shitrit 			for (j = 0; j < idle_reg_addrs[i].size; j++)
81707ba6af4SMiriam Shitrit 				*p++ = REG_RD(bp, idle_reg_addrs[i].addr + j*4);
81807ba6af4SMiriam Shitrit 		}
81907ba6af4SMiriam Shitrit 	}
82007ba6af4SMiriam Shitrit 
82107ba6af4SMiriam Shitrit 	/* Read the regular registers */
82207ba6af4SMiriam Shitrit 	for (i = 0; i < REGS_COUNT; i++) {
82307ba6af4SMiriam Shitrit 		if (bnx2x_is_reg_in_chip(bp, &reg_addrs[i]) &&
82407ba6af4SMiriam Shitrit 		    IS_REG_IN_PRESET(reg_addrs[i].presets, preset)) {
82507ba6af4SMiriam Shitrit 			for (j = 0; j < reg_addrs[i].size; j++)
82607ba6af4SMiriam Shitrit 				*p++ = REG_RD(bp, reg_addrs[i].addr + j*4);
82707ba6af4SMiriam Shitrit 		}
82807ba6af4SMiriam Shitrit 	}
82907ba6af4SMiriam Shitrit 
83007ba6af4SMiriam Shitrit 	/* Read the CAM registers */
83107ba6af4SMiriam Shitrit 	if (bnx2x_is_wreg_in_chip(bp, wreg_addr_p) &&
83207ba6af4SMiriam Shitrit 	    IS_REG_IN_PRESET(wreg_addr_p->presets, preset)) {
83307ba6af4SMiriam Shitrit 		for (i = 0; i < wreg_addr_p->size; i++) {
83407ba6af4SMiriam Shitrit 			*p++ = REG_RD(bp, wreg_addr_p->addr + i*4);
83507ba6af4SMiriam Shitrit 
83607ba6af4SMiriam Shitrit 			/* In case of wreg_addr register, read additional
83707ba6af4SMiriam Shitrit 			   registers from read_regs array
83807ba6af4SMiriam Shitrit 			*/
83907ba6af4SMiriam Shitrit 			for (j = 0; j < wreg_addr_p->read_regs_count; j++) {
84007ba6af4SMiriam Shitrit 				addr = *(wreg_addr_p->read_regs);
84107ba6af4SMiriam Shitrit 				*p++ = REG_RD(bp, addr + j*4);
84207ba6af4SMiriam Shitrit 			}
84307ba6af4SMiriam Shitrit 		}
84407ba6af4SMiriam Shitrit 	}
84507ba6af4SMiriam Shitrit 
84607ba6af4SMiriam Shitrit 	/* Paged registers are supported in E2 & E3 only */
84707ba6af4SMiriam Shitrit 	if (CHIP_IS_E2(bp) || CHIP_IS_E3(bp)) {
84807ba6af4SMiriam Shitrit 		/* Read "paged" registes */
84907ba6af4SMiriam Shitrit 		bnx2x_read_pages_regs(bp, p, preset);
85007ba6af4SMiriam Shitrit 	}
85107ba6af4SMiriam Shitrit 
85207ba6af4SMiriam Shitrit 	return 0;
85307ba6af4SMiriam Shitrit }
854adfc5217SJeff Kirsher 
8551191cb83SEric Dumazet static void __bnx2x_get_regs(struct bnx2x *bp, u32 *p)
856adfc5217SJeff Kirsher {
85707ba6af4SMiriam Shitrit 	u32 preset_idx;
858adfc5217SJeff Kirsher 
85907ba6af4SMiriam Shitrit 	/* Read all registers, by reading all preset registers */
86007ba6af4SMiriam Shitrit 	for (preset_idx = 1; preset_idx <= DUMP_MAX_PRESETS; preset_idx++) {
86107ba6af4SMiriam Shitrit 		/* Skip presets with IOR */
86207ba6af4SMiriam Shitrit 		if ((preset_idx == 2) ||
86307ba6af4SMiriam Shitrit 		    (preset_idx == 5) ||
86407ba6af4SMiriam Shitrit 		    (preset_idx == 8) ||
86507ba6af4SMiriam Shitrit 		    (preset_idx == 11))
86607ba6af4SMiriam Shitrit 			continue;
86707ba6af4SMiriam Shitrit 		__bnx2x_get_preset_regs(bp, p, preset_idx);
86807ba6af4SMiriam Shitrit 		p += __bnx2x_get_preset_regs_len(bp, preset_idx);
86907ba6af4SMiriam Shitrit 	}
870adfc5217SJeff Kirsher }
871adfc5217SJeff Kirsher 
872adfc5217SJeff Kirsher static void bnx2x_get_regs(struct net_device *dev,
873adfc5217SJeff Kirsher 			   struct ethtool_regs *regs, void *_p)
874adfc5217SJeff Kirsher {
875adfc5217SJeff Kirsher 	u32 *p = _p;
876adfc5217SJeff Kirsher 	struct bnx2x *bp = netdev_priv(dev);
87707ba6af4SMiriam Shitrit 	struct dump_header dump_hdr = {0};
878adfc5217SJeff Kirsher 
87907ba6af4SMiriam Shitrit 	regs->version = 2;
880adfc5217SJeff Kirsher 	memset(p, 0, regs->len);
881adfc5217SJeff Kirsher 
882adfc5217SJeff Kirsher 	if (!netif_running(bp->dev))
883adfc5217SJeff Kirsher 		return;
884adfc5217SJeff Kirsher 
885adfc5217SJeff Kirsher 	/* Disable parity attentions as long as following dump may
886adfc5217SJeff Kirsher 	 * cause false alarms by reading never written registers. We
887adfc5217SJeff Kirsher 	 * will re-enable parity attentions right after the dump.
888adfc5217SJeff Kirsher 	 */
88907ba6af4SMiriam Shitrit 
89007ba6af4SMiriam Shitrit 	/* Disable parity on path 0 */
89107ba6af4SMiriam Shitrit 	bnx2x_pretend_func(bp, 0);
892adfc5217SJeff Kirsher 	bnx2x_disable_blocks_parity(bp);
893adfc5217SJeff Kirsher 
89407ba6af4SMiriam Shitrit 	/* Disable parity on path 1 */
89507ba6af4SMiriam Shitrit 	bnx2x_pretend_func(bp, 1);
89607ba6af4SMiriam Shitrit 	bnx2x_disable_blocks_parity(bp);
897adfc5217SJeff Kirsher 
89807ba6af4SMiriam Shitrit 	/* Return to current function */
89907ba6af4SMiriam Shitrit 	bnx2x_pretend_func(bp, BP_ABS_FUNC(bp));
900adfc5217SJeff Kirsher 
90107ba6af4SMiriam Shitrit 	dump_hdr.header_size = (sizeof(struct dump_header) / 4) - 1;
90207ba6af4SMiriam Shitrit 	dump_hdr.preset = DUMP_ALL_PRESETS;
90307ba6af4SMiriam Shitrit 	dump_hdr.version = BNX2X_DUMP_VERSION;
90407ba6af4SMiriam Shitrit 
90507ba6af4SMiriam Shitrit 	/* dump_meta_data presents OR of CHIP and PATH. */
90607ba6af4SMiriam Shitrit 	if (CHIP_IS_E1(bp)) {
90707ba6af4SMiriam Shitrit 		dump_hdr.dump_meta_data = DUMP_CHIP_E1;
90807ba6af4SMiriam Shitrit 	} else if (CHIP_IS_E1H(bp)) {
90907ba6af4SMiriam Shitrit 		dump_hdr.dump_meta_data = DUMP_CHIP_E1H;
91007ba6af4SMiriam Shitrit 	} else if (CHIP_IS_E2(bp)) {
91107ba6af4SMiriam Shitrit 		dump_hdr.dump_meta_data = DUMP_CHIP_E2 |
91207ba6af4SMiriam Shitrit 		(BP_PATH(bp) ? DUMP_PATH_1 : DUMP_PATH_0);
91307ba6af4SMiriam Shitrit 	} else if (CHIP_IS_E3A0(bp)) {
91407ba6af4SMiriam Shitrit 		dump_hdr.dump_meta_data = DUMP_CHIP_E3A0 |
91507ba6af4SMiriam Shitrit 		(BP_PATH(bp) ? DUMP_PATH_1 : DUMP_PATH_0);
91607ba6af4SMiriam Shitrit 	} else if (CHIP_IS_E3B0(bp)) {
91707ba6af4SMiriam Shitrit 		dump_hdr.dump_meta_data = DUMP_CHIP_E3B0 |
91807ba6af4SMiriam Shitrit 		(BP_PATH(bp) ? DUMP_PATH_1 : DUMP_PATH_0);
91907ba6af4SMiriam Shitrit 	}
92007ba6af4SMiriam Shitrit 
92107ba6af4SMiriam Shitrit 	memcpy(p, &dump_hdr, sizeof(struct dump_header));
92207ba6af4SMiriam Shitrit 	p += dump_hdr.header_size + 1;
923adfc5217SJeff Kirsher 
924adfc5217SJeff Kirsher 	/* Actually read the registers */
925adfc5217SJeff Kirsher 	__bnx2x_get_regs(bp, p);
926adfc5217SJeff Kirsher 
92707ba6af4SMiriam Shitrit 	/* Re-enable parity attentions on path 0 */
92807ba6af4SMiriam Shitrit 	bnx2x_pretend_func(bp, 0);
929adfc5217SJeff Kirsher 	bnx2x_clear_blocks_parity(bp);
930adfc5217SJeff Kirsher 	bnx2x_enable_blocks_parity(bp);
93107ba6af4SMiriam Shitrit 
93207ba6af4SMiriam Shitrit 	/* Re-enable parity attentions on path 1 */
93307ba6af4SMiriam Shitrit 	bnx2x_pretend_func(bp, 1);
93407ba6af4SMiriam Shitrit 	bnx2x_clear_blocks_parity(bp);
93507ba6af4SMiriam Shitrit 	bnx2x_enable_blocks_parity(bp);
93607ba6af4SMiriam Shitrit 
93707ba6af4SMiriam Shitrit 	/* Return to current function */
93807ba6af4SMiriam Shitrit 	bnx2x_pretend_func(bp, BP_ABS_FUNC(bp));
93907ba6af4SMiriam Shitrit }
94007ba6af4SMiriam Shitrit 
94107ba6af4SMiriam Shitrit static int bnx2x_get_preset_regs_len(struct net_device *dev, u32 preset)
94207ba6af4SMiriam Shitrit {
94307ba6af4SMiriam Shitrit 	struct bnx2x *bp = netdev_priv(dev);
94407ba6af4SMiriam Shitrit 	int regdump_len = 0;
94507ba6af4SMiriam Shitrit 
94607ba6af4SMiriam Shitrit 	regdump_len = __bnx2x_get_preset_regs_len(bp, preset);
94707ba6af4SMiriam Shitrit 	regdump_len *= 4;
94807ba6af4SMiriam Shitrit 	regdump_len += sizeof(struct dump_header);
94907ba6af4SMiriam Shitrit 
95007ba6af4SMiriam Shitrit 	return regdump_len;
95107ba6af4SMiriam Shitrit }
95207ba6af4SMiriam Shitrit 
95307ba6af4SMiriam Shitrit static int bnx2x_set_dump(struct net_device *dev, struct ethtool_dump *val)
95407ba6af4SMiriam Shitrit {
95507ba6af4SMiriam Shitrit 	struct bnx2x *bp = netdev_priv(dev);
95607ba6af4SMiriam Shitrit 
95707ba6af4SMiriam Shitrit 	/* Use the ethtool_dump "flag" field as the dump preset index */
95807ba6af4SMiriam Shitrit 	bp->dump_preset_idx = val->flag;
95907ba6af4SMiriam Shitrit 	return 0;
96007ba6af4SMiriam Shitrit }
96107ba6af4SMiriam Shitrit 
96207ba6af4SMiriam Shitrit static int bnx2x_get_dump_flag(struct net_device *dev,
96307ba6af4SMiriam Shitrit 			       struct ethtool_dump *dump)
96407ba6af4SMiriam Shitrit {
96507ba6af4SMiriam Shitrit 	struct bnx2x *bp = netdev_priv(dev);
96607ba6af4SMiriam Shitrit 
96707ba6af4SMiriam Shitrit 	/* Calculate the requested preset idx length */
96807ba6af4SMiriam Shitrit 	dump->len = bnx2x_get_preset_regs_len(dev, bp->dump_preset_idx);
96907ba6af4SMiriam Shitrit 	DP(BNX2X_MSG_ETHTOOL, "Get dump preset %d length=%d\n",
97007ba6af4SMiriam Shitrit 	   bp->dump_preset_idx, dump->len);
97107ba6af4SMiriam Shitrit 
97207ba6af4SMiriam Shitrit 	dump->flag = ETHTOOL_GET_DUMP_DATA;
97307ba6af4SMiriam Shitrit 	return 0;
97407ba6af4SMiriam Shitrit }
97507ba6af4SMiriam Shitrit 
97607ba6af4SMiriam Shitrit static int bnx2x_get_dump_data(struct net_device *dev,
97707ba6af4SMiriam Shitrit 			       struct ethtool_dump *dump,
97807ba6af4SMiriam Shitrit 			       void *buffer)
97907ba6af4SMiriam Shitrit {
98007ba6af4SMiriam Shitrit 	u32 *p = buffer;
98107ba6af4SMiriam Shitrit 	struct bnx2x *bp = netdev_priv(dev);
98207ba6af4SMiriam Shitrit 	struct dump_header dump_hdr = {0};
98307ba6af4SMiriam Shitrit 
98407ba6af4SMiriam Shitrit 	memset(p, 0, dump->len);
98507ba6af4SMiriam Shitrit 
98607ba6af4SMiriam Shitrit 	/* Disable parity attentions as long as following dump may
98707ba6af4SMiriam Shitrit 	 * cause false alarms by reading never written registers. We
98807ba6af4SMiriam Shitrit 	 * will re-enable parity attentions right after the dump.
98907ba6af4SMiriam Shitrit 	 */
99007ba6af4SMiriam Shitrit 
99107ba6af4SMiriam Shitrit 	/* Disable parity on path 0 */
99207ba6af4SMiriam Shitrit 	bnx2x_pretend_func(bp, 0);
99307ba6af4SMiriam Shitrit 	bnx2x_disable_blocks_parity(bp);
99407ba6af4SMiriam Shitrit 
99507ba6af4SMiriam Shitrit 	/* Disable parity on path 1 */
99607ba6af4SMiriam Shitrit 	bnx2x_pretend_func(bp, 1);
99707ba6af4SMiriam Shitrit 	bnx2x_disable_blocks_parity(bp);
99807ba6af4SMiriam Shitrit 
99907ba6af4SMiriam Shitrit 	/* Return to current function */
100007ba6af4SMiriam Shitrit 	bnx2x_pretend_func(bp, BP_ABS_FUNC(bp));
100107ba6af4SMiriam Shitrit 
100207ba6af4SMiriam Shitrit 	dump_hdr.header_size = (sizeof(struct dump_header) / 4) - 1;
100307ba6af4SMiriam Shitrit 	dump_hdr.preset = bp->dump_preset_idx;
100407ba6af4SMiriam Shitrit 	dump_hdr.version = BNX2X_DUMP_VERSION;
100507ba6af4SMiriam Shitrit 
100607ba6af4SMiriam Shitrit 	DP(BNX2X_MSG_ETHTOOL, "Get dump data of preset %d\n", dump_hdr.preset);
100707ba6af4SMiriam Shitrit 
100807ba6af4SMiriam Shitrit 	/* dump_meta_data presents OR of CHIP and PATH. */
100907ba6af4SMiriam Shitrit 	if (CHIP_IS_E1(bp)) {
101007ba6af4SMiriam Shitrit 		dump_hdr.dump_meta_data = DUMP_CHIP_E1;
101107ba6af4SMiriam Shitrit 	} else if (CHIP_IS_E1H(bp)) {
101207ba6af4SMiriam Shitrit 		dump_hdr.dump_meta_data = DUMP_CHIP_E1H;
101307ba6af4SMiriam Shitrit 	} else if (CHIP_IS_E2(bp)) {
101407ba6af4SMiriam Shitrit 		dump_hdr.dump_meta_data = DUMP_CHIP_E2 |
101507ba6af4SMiriam Shitrit 		(BP_PATH(bp) ? DUMP_PATH_1 : DUMP_PATH_0);
101607ba6af4SMiriam Shitrit 	} else if (CHIP_IS_E3A0(bp)) {
101707ba6af4SMiriam Shitrit 		dump_hdr.dump_meta_data = DUMP_CHIP_E3A0 |
101807ba6af4SMiriam Shitrit 		(BP_PATH(bp) ? DUMP_PATH_1 : DUMP_PATH_0);
101907ba6af4SMiriam Shitrit 	} else if (CHIP_IS_E3B0(bp)) {
102007ba6af4SMiriam Shitrit 		dump_hdr.dump_meta_data = DUMP_CHIP_E3B0 |
102107ba6af4SMiriam Shitrit 		(BP_PATH(bp) ? DUMP_PATH_1 : DUMP_PATH_0);
102207ba6af4SMiriam Shitrit 	}
102307ba6af4SMiriam Shitrit 
102407ba6af4SMiriam Shitrit 	memcpy(p, &dump_hdr, sizeof(struct dump_header));
102507ba6af4SMiriam Shitrit 	p += dump_hdr.header_size + 1;
102607ba6af4SMiriam Shitrit 
102707ba6af4SMiriam Shitrit 	/* Actually read the registers */
102807ba6af4SMiriam Shitrit 	__bnx2x_get_preset_regs(bp, p, dump_hdr.preset);
102907ba6af4SMiriam Shitrit 
103007ba6af4SMiriam Shitrit 	/* Re-enable parity attentions on path 0 */
103107ba6af4SMiriam Shitrit 	bnx2x_pretend_func(bp, 0);
103207ba6af4SMiriam Shitrit 	bnx2x_clear_blocks_parity(bp);
103307ba6af4SMiriam Shitrit 	bnx2x_enable_blocks_parity(bp);
103407ba6af4SMiriam Shitrit 
103507ba6af4SMiriam Shitrit 	/* Re-enable parity attentions on path 1 */
103607ba6af4SMiriam Shitrit 	bnx2x_pretend_func(bp, 1);
103707ba6af4SMiriam Shitrit 	bnx2x_clear_blocks_parity(bp);
103807ba6af4SMiriam Shitrit 	bnx2x_enable_blocks_parity(bp);
103907ba6af4SMiriam Shitrit 
104007ba6af4SMiriam Shitrit 	/* Return to current function */
104107ba6af4SMiriam Shitrit 	bnx2x_pretend_func(bp, BP_ABS_FUNC(bp));
104207ba6af4SMiriam Shitrit 
104307ba6af4SMiriam Shitrit 	return 0;
1044adfc5217SJeff Kirsher }
1045adfc5217SJeff Kirsher 
1046adfc5217SJeff Kirsher static void bnx2x_get_drvinfo(struct net_device *dev,
1047adfc5217SJeff Kirsher 			      struct ethtool_drvinfo *info)
1048adfc5217SJeff Kirsher {
1049adfc5217SJeff Kirsher 	struct bnx2x *bp = netdev_priv(dev);
1050adfc5217SJeff Kirsher 
105168aad78cSRick Jones 	strlcpy(info->driver, DRV_MODULE_NAME, sizeof(info->driver));
105268aad78cSRick Jones 	strlcpy(info->version, DRV_MODULE_VERSION, sizeof(info->version));
1053adfc5217SJeff Kirsher 
10548ca5e17eSAriel Elior 	bnx2x_fill_fw_str(bp, info->fw_version, sizeof(info->fw_version));
10558ca5e17eSAriel Elior 
105668aad78cSRick Jones 	strlcpy(info->bus_info, pci_name(bp->pdev), sizeof(info->bus_info));
1057adfc5217SJeff Kirsher 	info->n_stats = BNX2X_NUM_STATS;
1058cf2c1df6SMerav Sicron 	info->testinfo_len = BNX2X_NUM_TESTS(bp);
1059adfc5217SJeff Kirsher 	info->eedump_len = bp->common.flash_size;
1060adfc5217SJeff Kirsher 	info->regdump_len = bnx2x_get_regs_len(dev);
1061adfc5217SJeff Kirsher }
1062adfc5217SJeff Kirsher 
1063adfc5217SJeff Kirsher static void bnx2x_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1064adfc5217SJeff Kirsher {
1065adfc5217SJeff Kirsher 	struct bnx2x *bp = netdev_priv(dev);
1066adfc5217SJeff Kirsher 
1067adfc5217SJeff Kirsher 	if (bp->flags & NO_WOL_FLAG) {
1068adfc5217SJeff Kirsher 		wol->supported = 0;
1069adfc5217SJeff Kirsher 		wol->wolopts = 0;
1070adfc5217SJeff Kirsher 	} else {
1071adfc5217SJeff Kirsher 		wol->supported = WAKE_MAGIC;
1072adfc5217SJeff Kirsher 		if (bp->wol)
1073adfc5217SJeff Kirsher 			wol->wolopts = WAKE_MAGIC;
1074adfc5217SJeff Kirsher 		else
1075adfc5217SJeff Kirsher 			wol->wolopts = 0;
1076adfc5217SJeff Kirsher 	}
1077adfc5217SJeff Kirsher 	memset(&wol->sopass, 0, sizeof(wol->sopass));
1078adfc5217SJeff Kirsher }
1079adfc5217SJeff Kirsher 
1080adfc5217SJeff Kirsher static int bnx2x_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1081adfc5217SJeff Kirsher {
1082adfc5217SJeff Kirsher 	struct bnx2x *bp = netdev_priv(dev);
1083adfc5217SJeff Kirsher 
108451c1a580SMerav Sicron 	if (wol->wolopts & ~WAKE_MAGIC) {
108551c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL, "WOL not supproted\n");
1086adfc5217SJeff Kirsher 		return -EINVAL;
108751c1a580SMerav Sicron 	}
1088adfc5217SJeff Kirsher 
1089adfc5217SJeff Kirsher 	if (wol->wolopts & WAKE_MAGIC) {
109051c1a580SMerav Sicron 		if (bp->flags & NO_WOL_FLAG) {
109151c1a580SMerav Sicron 			DP(BNX2X_MSG_ETHTOOL, "WOL not supproted\n");
1092adfc5217SJeff Kirsher 			return -EINVAL;
109351c1a580SMerav Sicron 		}
1094adfc5217SJeff Kirsher 		bp->wol = 1;
1095adfc5217SJeff Kirsher 	} else
1096adfc5217SJeff Kirsher 		bp->wol = 0;
1097adfc5217SJeff Kirsher 
1098adfc5217SJeff Kirsher 	return 0;
1099adfc5217SJeff Kirsher }
1100adfc5217SJeff Kirsher 
1101adfc5217SJeff Kirsher static u32 bnx2x_get_msglevel(struct net_device *dev)
1102adfc5217SJeff Kirsher {
1103adfc5217SJeff Kirsher 	struct bnx2x *bp = netdev_priv(dev);
1104adfc5217SJeff Kirsher 
1105adfc5217SJeff Kirsher 	return bp->msg_enable;
1106adfc5217SJeff Kirsher }
1107adfc5217SJeff Kirsher 
1108adfc5217SJeff Kirsher static void bnx2x_set_msglevel(struct net_device *dev, u32 level)
1109adfc5217SJeff Kirsher {
1110adfc5217SJeff Kirsher 	struct bnx2x *bp = netdev_priv(dev);
1111adfc5217SJeff Kirsher 
1112adfc5217SJeff Kirsher 	if (capable(CAP_NET_ADMIN)) {
1113adfc5217SJeff Kirsher 		/* dump MCP trace */
1114ad5afc89SAriel Elior 		if (IS_PF(bp) && (level & BNX2X_MSG_MCP))
1115adfc5217SJeff Kirsher 			bnx2x_fw_dump_lvl(bp, KERN_INFO);
1116adfc5217SJeff Kirsher 		bp->msg_enable = level;
1117adfc5217SJeff Kirsher 	}
1118adfc5217SJeff Kirsher }
1119adfc5217SJeff Kirsher 
1120adfc5217SJeff Kirsher static int bnx2x_nway_reset(struct net_device *dev)
1121adfc5217SJeff Kirsher {
1122adfc5217SJeff Kirsher 	struct bnx2x *bp = netdev_priv(dev);
1123adfc5217SJeff Kirsher 
1124adfc5217SJeff Kirsher 	if (!bp->port.pmf)
1125adfc5217SJeff Kirsher 		return 0;
1126adfc5217SJeff Kirsher 
1127adfc5217SJeff Kirsher 	if (netif_running(dev)) {
1128adfc5217SJeff Kirsher 		bnx2x_stats_handle(bp, STATS_EVENT_STOP);
11295d07d868SYuval Mintz 		bnx2x_force_link_reset(bp);
1130adfc5217SJeff Kirsher 		bnx2x_link_set(bp);
1131adfc5217SJeff Kirsher 	}
1132adfc5217SJeff Kirsher 
1133adfc5217SJeff Kirsher 	return 0;
1134adfc5217SJeff Kirsher }
1135adfc5217SJeff Kirsher 
1136adfc5217SJeff Kirsher static u32 bnx2x_get_link(struct net_device *dev)
1137adfc5217SJeff Kirsher {
1138adfc5217SJeff Kirsher 	struct bnx2x *bp = netdev_priv(dev);
1139adfc5217SJeff Kirsher 
1140adfc5217SJeff Kirsher 	if (bp->flags & MF_FUNC_DIS || (bp->state != BNX2X_STATE_OPEN))
1141adfc5217SJeff Kirsher 		return 0;
1142adfc5217SJeff Kirsher 
1143adfc5217SJeff Kirsher 	return bp->link_vars.link_up;
1144adfc5217SJeff Kirsher }
1145adfc5217SJeff Kirsher 
1146adfc5217SJeff Kirsher static int bnx2x_get_eeprom_len(struct net_device *dev)
1147adfc5217SJeff Kirsher {
1148adfc5217SJeff Kirsher 	struct bnx2x *bp = netdev_priv(dev);
1149adfc5217SJeff Kirsher 
1150adfc5217SJeff Kirsher 	return bp->common.flash_size;
1151adfc5217SJeff Kirsher }
1152adfc5217SJeff Kirsher 
1153f16da43bSAriel Elior /* Per pf misc lock must be aquired before the per port mcp lock. Otherwise, had
1154f16da43bSAriel Elior  * we done things the other way around, if two pfs from the same port would
1155f16da43bSAriel Elior  * attempt to access nvram at the same time, we could run into a scenario such
1156f16da43bSAriel Elior  * as:
1157f16da43bSAriel Elior  * pf A takes the port lock.
1158f16da43bSAriel Elior  * pf B succeeds in taking the same lock since they are from the same port.
1159f16da43bSAriel Elior  * pf A takes the per pf misc lock. Performs eeprom access.
1160f16da43bSAriel Elior  * pf A finishes. Unlocks the per pf misc lock.
1161f16da43bSAriel Elior  * Pf B takes the lock and proceeds to perform it's own access.
1162f16da43bSAriel Elior  * pf A unlocks the per port lock, while pf B is still working (!).
1163f16da43bSAriel Elior  * mcp takes the per port lock and corrupts pf B's access (and/or has it's own
1164f16da43bSAriel Elior  * acess corrupted by pf B).*
1165f16da43bSAriel Elior  */
1166adfc5217SJeff Kirsher static int bnx2x_acquire_nvram_lock(struct bnx2x *bp)
1167adfc5217SJeff Kirsher {
1168adfc5217SJeff Kirsher 	int port = BP_PORT(bp);
1169adfc5217SJeff Kirsher 	int count, i;
1170f16da43bSAriel Elior 	u32 val;
1171f16da43bSAriel Elior 
1172f16da43bSAriel Elior 	/* acquire HW lock: protect against other PFs in PF Direct Assignment */
1173f16da43bSAriel Elior 	bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_NVRAM);
1174adfc5217SJeff Kirsher 
1175adfc5217SJeff Kirsher 	/* adjust timeout for emulation/FPGA */
1176adfc5217SJeff Kirsher 	count = BNX2X_NVRAM_TIMEOUT_COUNT;
1177adfc5217SJeff Kirsher 	if (CHIP_REV_IS_SLOW(bp))
1178adfc5217SJeff Kirsher 		count *= 100;
1179adfc5217SJeff Kirsher 
1180adfc5217SJeff Kirsher 	/* request access to nvram interface */
1181adfc5217SJeff Kirsher 	REG_WR(bp, MCP_REG_MCPR_NVM_SW_ARB,
1182adfc5217SJeff Kirsher 	       (MCPR_NVM_SW_ARB_ARB_REQ_SET1 << port));
1183adfc5217SJeff Kirsher 
1184adfc5217SJeff Kirsher 	for (i = 0; i < count*10; i++) {
1185adfc5217SJeff Kirsher 		val = REG_RD(bp, MCP_REG_MCPR_NVM_SW_ARB);
1186adfc5217SJeff Kirsher 		if (val & (MCPR_NVM_SW_ARB_ARB_ARB1 << port))
1187adfc5217SJeff Kirsher 			break;
1188adfc5217SJeff Kirsher 
1189adfc5217SJeff Kirsher 		udelay(5);
1190adfc5217SJeff Kirsher 	}
1191adfc5217SJeff Kirsher 
1192adfc5217SJeff Kirsher 	if (!(val & (MCPR_NVM_SW_ARB_ARB_ARB1 << port))) {
119351c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL | BNX2X_MSG_NVM,
119451c1a580SMerav Sicron 		   "cannot get access to nvram interface\n");
1195adfc5217SJeff Kirsher 		return -EBUSY;
1196adfc5217SJeff Kirsher 	}
1197adfc5217SJeff Kirsher 
1198adfc5217SJeff Kirsher 	return 0;
1199adfc5217SJeff Kirsher }
1200adfc5217SJeff Kirsher 
1201adfc5217SJeff Kirsher static int bnx2x_release_nvram_lock(struct bnx2x *bp)
1202adfc5217SJeff Kirsher {
1203adfc5217SJeff Kirsher 	int port = BP_PORT(bp);
1204adfc5217SJeff Kirsher 	int count, i;
1205f16da43bSAriel Elior 	u32 val;
1206adfc5217SJeff Kirsher 
1207adfc5217SJeff Kirsher 	/* adjust timeout for emulation/FPGA */
1208adfc5217SJeff Kirsher 	count = BNX2X_NVRAM_TIMEOUT_COUNT;
1209adfc5217SJeff Kirsher 	if (CHIP_REV_IS_SLOW(bp))
1210adfc5217SJeff Kirsher 		count *= 100;
1211adfc5217SJeff Kirsher 
1212adfc5217SJeff Kirsher 	/* relinquish nvram interface */
1213adfc5217SJeff Kirsher 	REG_WR(bp, MCP_REG_MCPR_NVM_SW_ARB,
1214adfc5217SJeff Kirsher 	       (MCPR_NVM_SW_ARB_ARB_REQ_CLR1 << port));
1215adfc5217SJeff Kirsher 
1216adfc5217SJeff Kirsher 	for (i = 0; i < count*10; i++) {
1217adfc5217SJeff Kirsher 		val = REG_RD(bp, MCP_REG_MCPR_NVM_SW_ARB);
1218adfc5217SJeff Kirsher 		if (!(val & (MCPR_NVM_SW_ARB_ARB_ARB1 << port)))
1219adfc5217SJeff Kirsher 			break;
1220adfc5217SJeff Kirsher 
1221adfc5217SJeff Kirsher 		udelay(5);
1222adfc5217SJeff Kirsher 	}
1223adfc5217SJeff Kirsher 
1224adfc5217SJeff Kirsher 	if (val & (MCPR_NVM_SW_ARB_ARB_ARB1 << port)) {
122551c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL | BNX2X_MSG_NVM,
122651c1a580SMerav Sicron 		   "cannot free access to nvram interface\n");
1227adfc5217SJeff Kirsher 		return -EBUSY;
1228adfc5217SJeff Kirsher 	}
1229adfc5217SJeff Kirsher 
1230f16da43bSAriel Elior 	/* release HW lock: protect against other PFs in PF Direct Assignment */
1231f16da43bSAriel Elior 	bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_NVRAM);
1232adfc5217SJeff Kirsher 	return 0;
1233adfc5217SJeff Kirsher }
1234adfc5217SJeff Kirsher 
1235adfc5217SJeff Kirsher static void bnx2x_enable_nvram_access(struct bnx2x *bp)
1236adfc5217SJeff Kirsher {
1237adfc5217SJeff Kirsher 	u32 val;
1238adfc5217SJeff Kirsher 
1239adfc5217SJeff Kirsher 	val = REG_RD(bp, MCP_REG_MCPR_NVM_ACCESS_ENABLE);
1240adfc5217SJeff Kirsher 
1241adfc5217SJeff Kirsher 	/* enable both bits, even on read */
1242adfc5217SJeff Kirsher 	REG_WR(bp, MCP_REG_MCPR_NVM_ACCESS_ENABLE,
1243adfc5217SJeff Kirsher 	       (val | MCPR_NVM_ACCESS_ENABLE_EN |
1244adfc5217SJeff Kirsher 		      MCPR_NVM_ACCESS_ENABLE_WR_EN));
1245adfc5217SJeff Kirsher }
1246adfc5217SJeff Kirsher 
1247adfc5217SJeff Kirsher static void bnx2x_disable_nvram_access(struct bnx2x *bp)
1248adfc5217SJeff Kirsher {
1249adfc5217SJeff Kirsher 	u32 val;
1250adfc5217SJeff Kirsher 
1251adfc5217SJeff Kirsher 	val = REG_RD(bp, MCP_REG_MCPR_NVM_ACCESS_ENABLE);
1252adfc5217SJeff Kirsher 
1253adfc5217SJeff Kirsher 	/* disable both bits, even after read */
1254adfc5217SJeff Kirsher 	REG_WR(bp, MCP_REG_MCPR_NVM_ACCESS_ENABLE,
1255adfc5217SJeff Kirsher 	       (val & ~(MCPR_NVM_ACCESS_ENABLE_EN |
1256adfc5217SJeff Kirsher 			MCPR_NVM_ACCESS_ENABLE_WR_EN)));
1257adfc5217SJeff Kirsher }
1258adfc5217SJeff Kirsher 
1259adfc5217SJeff Kirsher static int bnx2x_nvram_read_dword(struct bnx2x *bp, u32 offset, __be32 *ret_val,
1260adfc5217SJeff Kirsher 				  u32 cmd_flags)
1261adfc5217SJeff Kirsher {
1262adfc5217SJeff Kirsher 	int count, i, rc;
1263adfc5217SJeff Kirsher 	u32 val;
1264adfc5217SJeff Kirsher 
1265adfc5217SJeff Kirsher 	/* build the command word */
1266adfc5217SJeff Kirsher 	cmd_flags |= MCPR_NVM_COMMAND_DOIT;
1267adfc5217SJeff Kirsher 
1268adfc5217SJeff Kirsher 	/* need to clear DONE bit separately */
1269adfc5217SJeff Kirsher 	REG_WR(bp, MCP_REG_MCPR_NVM_COMMAND, MCPR_NVM_COMMAND_DONE);
1270adfc5217SJeff Kirsher 
1271adfc5217SJeff Kirsher 	/* address of the NVRAM to read from */
1272adfc5217SJeff Kirsher 	REG_WR(bp, MCP_REG_MCPR_NVM_ADDR,
1273adfc5217SJeff Kirsher 	       (offset & MCPR_NVM_ADDR_NVM_ADDR_VALUE));
1274adfc5217SJeff Kirsher 
1275adfc5217SJeff Kirsher 	/* issue a read command */
1276adfc5217SJeff Kirsher 	REG_WR(bp, MCP_REG_MCPR_NVM_COMMAND, cmd_flags);
1277adfc5217SJeff Kirsher 
1278adfc5217SJeff Kirsher 	/* adjust timeout for emulation/FPGA */
1279adfc5217SJeff Kirsher 	count = BNX2X_NVRAM_TIMEOUT_COUNT;
1280adfc5217SJeff Kirsher 	if (CHIP_REV_IS_SLOW(bp))
1281adfc5217SJeff Kirsher 		count *= 100;
1282adfc5217SJeff Kirsher 
1283adfc5217SJeff Kirsher 	/* wait for completion */
1284adfc5217SJeff Kirsher 	*ret_val = 0;
1285adfc5217SJeff Kirsher 	rc = -EBUSY;
1286adfc5217SJeff Kirsher 	for (i = 0; i < count; i++) {
1287adfc5217SJeff Kirsher 		udelay(5);
1288adfc5217SJeff Kirsher 		val = REG_RD(bp, MCP_REG_MCPR_NVM_COMMAND);
1289adfc5217SJeff Kirsher 
1290adfc5217SJeff Kirsher 		if (val & MCPR_NVM_COMMAND_DONE) {
1291adfc5217SJeff Kirsher 			val = REG_RD(bp, MCP_REG_MCPR_NVM_READ);
1292adfc5217SJeff Kirsher 			/* we read nvram data in cpu order
1293adfc5217SJeff Kirsher 			 * but ethtool sees it as an array of bytes
129407ba6af4SMiriam Shitrit 			 * converting to big-endian will do the work
129507ba6af4SMiriam Shitrit 			 */
1296adfc5217SJeff Kirsher 			*ret_val = cpu_to_be32(val);
1297adfc5217SJeff Kirsher 			rc = 0;
1298adfc5217SJeff Kirsher 			break;
1299adfc5217SJeff Kirsher 		}
1300adfc5217SJeff Kirsher 	}
130151c1a580SMerav Sicron 	if (rc == -EBUSY)
130251c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL | BNX2X_MSG_NVM,
130351c1a580SMerav Sicron 		   "nvram read timeout expired\n");
1304adfc5217SJeff Kirsher 	return rc;
1305adfc5217SJeff Kirsher }
1306adfc5217SJeff Kirsher 
1307adfc5217SJeff Kirsher static int bnx2x_nvram_read(struct bnx2x *bp, u32 offset, u8 *ret_buf,
1308adfc5217SJeff Kirsher 			    int buf_size)
1309adfc5217SJeff Kirsher {
1310adfc5217SJeff Kirsher 	int rc;
1311adfc5217SJeff Kirsher 	u32 cmd_flags;
1312adfc5217SJeff Kirsher 	__be32 val;
1313adfc5217SJeff Kirsher 
1314adfc5217SJeff Kirsher 	if ((offset & 0x03) || (buf_size & 0x03) || (buf_size == 0)) {
131551c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL | BNX2X_MSG_NVM,
1316adfc5217SJeff Kirsher 		   "Invalid parameter: offset 0x%x  buf_size 0x%x\n",
1317adfc5217SJeff Kirsher 		   offset, buf_size);
1318adfc5217SJeff Kirsher 		return -EINVAL;
1319adfc5217SJeff Kirsher 	}
1320adfc5217SJeff Kirsher 
1321adfc5217SJeff Kirsher 	if (offset + buf_size > bp->common.flash_size) {
132251c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL | BNX2X_MSG_NVM,
132351c1a580SMerav Sicron 		   "Invalid parameter: offset (0x%x) + buf_size (0x%x) > flash_size (0x%x)\n",
1324adfc5217SJeff Kirsher 		   offset, buf_size, bp->common.flash_size);
1325adfc5217SJeff Kirsher 		return -EINVAL;
1326adfc5217SJeff Kirsher 	}
1327adfc5217SJeff Kirsher 
1328adfc5217SJeff Kirsher 	/* request access to nvram interface */
1329adfc5217SJeff Kirsher 	rc = bnx2x_acquire_nvram_lock(bp);
1330adfc5217SJeff Kirsher 	if (rc)
1331adfc5217SJeff Kirsher 		return rc;
1332adfc5217SJeff Kirsher 
1333adfc5217SJeff Kirsher 	/* enable access to nvram interface */
1334adfc5217SJeff Kirsher 	bnx2x_enable_nvram_access(bp);
1335adfc5217SJeff Kirsher 
1336adfc5217SJeff Kirsher 	/* read the first word(s) */
1337adfc5217SJeff Kirsher 	cmd_flags = MCPR_NVM_COMMAND_FIRST;
1338adfc5217SJeff Kirsher 	while ((buf_size > sizeof(u32)) && (rc == 0)) {
1339adfc5217SJeff Kirsher 		rc = bnx2x_nvram_read_dword(bp, offset, &val, cmd_flags);
1340adfc5217SJeff Kirsher 		memcpy(ret_buf, &val, 4);
1341adfc5217SJeff Kirsher 
1342adfc5217SJeff Kirsher 		/* advance to the next dword */
1343adfc5217SJeff Kirsher 		offset += sizeof(u32);
1344adfc5217SJeff Kirsher 		ret_buf += sizeof(u32);
1345adfc5217SJeff Kirsher 		buf_size -= sizeof(u32);
1346adfc5217SJeff Kirsher 		cmd_flags = 0;
1347adfc5217SJeff Kirsher 	}
1348adfc5217SJeff Kirsher 
1349adfc5217SJeff Kirsher 	if (rc == 0) {
1350adfc5217SJeff Kirsher 		cmd_flags |= MCPR_NVM_COMMAND_LAST;
1351adfc5217SJeff Kirsher 		rc = bnx2x_nvram_read_dword(bp, offset, &val, cmd_flags);
1352adfc5217SJeff Kirsher 		memcpy(ret_buf, &val, 4);
1353adfc5217SJeff Kirsher 	}
1354adfc5217SJeff Kirsher 
1355adfc5217SJeff Kirsher 	/* disable access to nvram interface */
1356adfc5217SJeff Kirsher 	bnx2x_disable_nvram_access(bp);
1357adfc5217SJeff Kirsher 	bnx2x_release_nvram_lock(bp);
1358adfc5217SJeff Kirsher 
1359adfc5217SJeff Kirsher 	return rc;
1360adfc5217SJeff Kirsher }
1361adfc5217SJeff Kirsher 
1362adfc5217SJeff Kirsher static int bnx2x_get_eeprom(struct net_device *dev,
1363adfc5217SJeff Kirsher 			    struct ethtool_eeprom *eeprom, u8 *eebuf)
1364adfc5217SJeff Kirsher {
1365adfc5217SJeff Kirsher 	struct bnx2x *bp = netdev_priv(dev);
1366adfc5217SJeff Kirsher 	int rc;
1367adfc5217SJeff Kirsher 
136851c1a580SMerav Sicron 	if (!netif_running(dev)) {
136951c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL  | BNX2X_MSG_NVM,
137051c1a580SMerav Sicron 		   "cannot access eeprom when the interface is down\n");
1371adfc5217SJeff Kirsher 		return -EAGAIN;
137251c1a580SMerav Sicron 	}
1373adfc5217SJeff Kirsher 
137451c1a580SMerav Sicron 	DP(BNX2X_MSG_ETHTOOL | BNX2X_MSG_NVM, "ethtool_eeprom: cmd %d\n"
1375f1deab50SJoe Perches 	   "  magic 0x%x  offset 0x%x (%d)  len 0x%x (%d)\n",
1376adfc5217SJeff Kirsher 	   eeprom->cmd, eeprom->magic, eeprom->offset, eeprom->offset,
1377adfc5217SJeff Kirsher 	   eeprom->len, eeprom->len);
1378adfc5217SJeff Kirsher 
1379adfc5217SJeff Kirsher 	/* parameters already validated in ethtool_get_eeprom */
1380adfc5217SJeff Kirsher 
1381adfc5217SJeff Kirsher 	rc = bnx2x_nvram_read(bp, eeprom->offset, eebuf, eeprom->len);
1382adfc5217SJeff Kirsher 
1383adfc5217SJeff Kirsher 	return rc;
1384adfc5217SJeff Kirsher }
1385adfc5217SJeff Kirsher 
138624ea818eSYuval Mintz static int bnx2x_get_module_eeprom(struct net_device *dev,
138724ea818eSYuval Mintz 				   struct ethtool_eeprom *ee,
138824ea818eSYuval Mintz 				   u8 *data)
138924ea818eSYuval Mintz {
139024ea818eSYuval Mintz 	struct bnx2x *bp = netdev_priv(dev);
139124ea818eSYuval Mintz 	int rc = 0, phy_idx;
139224ea818eSYuval Mintz 	u8 *user_data = data;
139324ea818eSYuval Mintz 	int remaining_len = ee->len, xfer_size;
139424ea818eSYuval Mintz 	unsigned int page_off = ee->offset;
139524ea818eSYuval Mintz 
139624ea818eSYuval Mintz 	if (!netif_running(dev)) {
139724ea818eSYuval Mintz 		DP(BNX2X_MSG_ETHTOOL | BNX2X_MSG_NVM,
139824ea818eSYuval Mintz 		   "cannot access eeprom when the interface is down\n");
139924ea818eSYuval Mintz 		return -EAGAIN;
140024ea818eSYuval Mintz 	}
140124ea818eSYuval Mintz 
140224ea818eSYuval Mintz 	phy_idx = bnx2x_get_cur_phy_idx(bp);
140324ea818eSYuval Mintz 	bnx2x_acquire_phy_lock(bp);
140424ea818eSYuval Mintz 	while (!rc && remaining_len > 0) {
140524ea818eSYuval Mintz 		xfer_size = (remaining_len > SFP_EEPROM_PAGE_SIZE) ?
140624ea818eSYuval Mintz 			SFP_EEPROM_PAGE_SIZE : remaining_len;
140724ea818eSYuval Mintz 		rc = bnx2x_read_sfp_module_eeprom(&bp->link_params.phy[phy_idx],
140824ea818eSYuval Mintz 						  &bp->link_params,
140924ea818eSYuval Mintz 						  page_off,
141024ea818eSYuval Mintz 						  xfer_size,
141124ea818eSYuval Mintz 						  user_data);
141224ea818eSYuval Mintz 		remaining_len -= xfer_size;
141324ea818eSYuval Mintz 		user_data += xfer_size;
141424ea818eSYuval Mintz 		page_off += xfer_size;
141524ea818eSYuval Mintz 	}
141624ea818eSYuval Mintz 
141724ea818eSYuval Mintz 	bnx2x_release_phy_lock(bp);
141824ea818eSYuval Mintz 	return rc;
141924ea818eSYuval Mintz }
142024ea818eSYuval Mintz 
142124ea818eSYuval Mintz static int bnx2x_get_module_info(struct net_device *dev,
142224ea818eSYuval Mintz 				 struct ethtool_modinfo *modinfo)
142324ea818eSYuval Mintz {
142424ea818eSYuval Mintz 	struct bnx2x *bp = netdev_priv(dev);
142524ea818eSYuval Mintz 	int phy_idx;
142624ea818eSYuval Mintz 	if (!netif_running(dev)) {
142724ea818eSYuval Mintz 		DP(BNX2X_MSG_ETHTOOL  | BNX2X_MSG_NVM,
142824ea818eSYuval Mintz 		   "cannot access eeprom when the interface is down\n");
142924ea818eSYuval Mintz 		return -EAGAIN;
143024ea818eSYuval Mintz 	}
143124ea818eSYuval Mintz 
143224ea818eSYuval Mintz 	phy_idx = bnx2x_get_cur_phy_idx(bp);
143324ea818eSYuval Mintz 	switch (bp->link_params.phy[phy_idx].media_type) {
143424ea818eSYuval Mintz 	case ETH_PHY_SFPP_10G_FIBER:
143524ea818eSYuval Mintz 	case ETH_PHY_SFP_1G_FIBER:
143624ea818eSYuval Mintz 	case ETH_PHY_DA_TWINAX:
143724ea818eSYuval Mintz 		modinfo->type = ETH_MODULE_SFF_8079;
143824ea818eSYuval Mintz 		modinfo->eeprom_len = ETH_MODULE_SFF_8079_LEN;
143924ea818eSYuval Mintz 		return 0;
144024ea818eSYuval Mintz 	default:
144124ea818eSYuval Mintz 		return -EOPNOTSUPP;
144224ea818eSYuval Mintz 	}
144324ea818eSYuval Mintz }
144424ea818eSYuval Mintz 
1445adfc5217SJeff Kirsher static int bnx2x_nvram_write_dword(struct bnx2x *bp, u32 offset, u32 val,
1446adfc5217SJeff Kirsher 				   u32 cmd_flags)
1447adfc5217SJeff Kirsher {
1448adfc5217SJeff Kirsher 	int count, i, rc;
1449adfc5217SJeff Kirsher 
1450adfc5217SJeff Kirsher 	/* build the command word */
1451adfc5217SJeff Kirsher 	cmd_flags |= MCPR_NVM_COMMAND_DOIT | MCPR_NVM_COMMAND_WR;
1452adfc5217SJeff Kirsher 
1453adfc5217SJeff Kirsher 	/* need to clear DONE bit separately */
1454adfc5217SJeff Kirsher 	REG_WR(bp, MCP_REG_MCPR_NVM_COMMAND, MCPR_NVM_COMMAND_DONE);
1455adfc5217SJeff Kirsher 
1456adfc5217SJeff Kirsher 	/* write the data */
1457adfc5217SJeff Kirsher 	REG_WR(bp, MCP_REG_MCPR_NVM_WRITE, val);
1458adfc5217SJeff Kirsher 
1459adfc5217SJeff Kirsher 	/* address of the NVRAM to write to */
1460adfc5217SJeff Kirsher 	REG_WR(bp, MCP_REG_MCPR_NVM_ADDR,
1461adfc5217SJeff Kirsher 	       (offset & MCPR_NVM_ADDR_NVM_ADDR_VALUE));
1462adfc5217SJeff Kirsher 
1463adfc5217SJeff Kirsher 	/* issue the write command */
1464adfc5217SJeff Kirsher 	REG_WR(bp, MCP_REG_MCPR_NVM_COMMAND, cmd_flags);
1465adfc5217SJeff Kirsher 
1466adfc5217SJeff Kirsher 	/* adjust timeout for emulation/FPGA */
1467adfc5217SJeff Kirsher 	count = BNX2X_NVRAM_TIMEOUT_COUNT;
1468adfc5217SJeff Kirsher 	if (CHIP_REV_IS_SLOW(bp))
1469adfc5217SJeff Kirsher 		count *= 100;
1470adfc5217SJeff Kirsher 
1471adfc5217SJeff Kirsher 	/* wait for completion */
1472adfc5217SJeff Kirsher 	rc = -EBUSY;
1473adfc5217SJeff Kirsher 	for (i = 0; i < count; i++) {
1474adfc5217SJeff Kirsher 		udelay(5);
1475adfc5217SJeff Kirsher 		val = REG_RD(bp, MCP_REG_MCPR_NVM_COMMAND);
1476adfc5217SJeff Kirsher 		if (val & MCPR_NVM_COMMAND_DONE) {
1477adfc5217SJeff Kirsher 			rc = 0;
1478adfc5217SJeff Kirsher 			break;
1479adfc5217SJeff Kirsher 		}
1480adfc5217SJeff Kirsher 	}
1481adfc5217SJeff Kirsher 
148251c1a580SMerav Sicron 	if (rc == -EBUSY)
148351c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL | BNX2X_MSG_NVM,
148451c1a580SMerav Sicron 		   "nvram write timeout expired\n");
1485adfc5217SJeff Kirsher 	return rc;
1486adfc5217SJeff Kirsher }
1487adfc5217SJeff Kirsher 
1488adfc5217SJeff Kirsher #define BYTE_OFFSET(offset)		(8 * (offset & 0x03))
1489adfc5217SJeff Kirsher 
1490adfc5217SJeff Kirsher static int bnx2x_nvram_write1(struct bnx2x *bp, u32 offset, u8 *data_buf,
1491adfc5217SJeff Kirsher 			      int buf_size)
1492adfc5217SJeff Kirsher {
1493adfc5217SJeff Kirsher 	int rc;
1494adfc5217SJeff Kirsher 	u32 cmd_flags;
1495adfc5217SJeff Kirsher 	u32 align_offset;
1496adfc5217SJeff Kirsher 	__be32 val;
1497adfc5217SJeff Kirsher 
1498adfc5217SJeff Kirsher 	if (offset + buf_size > bp->common.flash_size) {
149951c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL | BNX2X_MSG_NVM,
150051c1a580SMerav Sicron 		   "Invalid parameter: offset (0x%x) + buf_size (0x%x) > flash_size (0x%x)\n",
1501adfc5217SJeff Kirsher 		   offset, buf_size, bp->common.flash_size);
1502adfc5217SJeff Kirsher 		return -EINVAL;
1503adfc5217SJeff Kirsher 	}
1504adfc5217SJeff Kirsher 
1505adfc5217SJeff Kirsher 	/* request access to nvram interface */
1506adfc5217SJeff Kirsher 	rc = bnx2x_acquire_nvram_lock(bp);
1507adfc5217SJeff Kirsher 	if (rc)
1508adfc5217SJeff Kirsher 		return rc;
1509adfc5217SJeff Kirsher 
1510adfc5217SJeff Kirsher 	/* enable access to nvram interface */
1511adfc5217SJeff Kirsher 	bnx2x_enable_nvram_access(bp);
1512adfc5217SJeff Kirsher 
1513adfc5217SJeff Kirsher 	cmd_flags = (MCPR_NVM_COMMAND_FIRST | MCPR_NVM_COMMAND_LAST);
1514adfc5217SJeff Kirsher 	align_offset = (offset & ~0x03);
1515adfc5217SJeff Kirsher 	rc = bnx2x_nvram_read_dword(bp, align_offset, &val, cmd_flags);
1516adfc5217SJeff Kirsher 
1517adfc5217SJeff Kirsher 	if (rc == 0) {
1518adfc5217SJeff Kirsher 		val &= ~(0xff << BYTE_OFFSET(offset));
1519adfc5217SJeff Kirsher 		val |= (*data_buf << BYTE_OFFSET(offset));
1520adfc5217SJeff Kirsher 
1521adfc5217SJeff Kirsher 		/* nvram data is returned as an array of bytes
152207ba6af4SMiriam Shitrit 		 * convert it back to cpu order
152307ba6af4SMiriam Shitrit 		 */
1524adfc5217SJeff Kirsher 		val = be32_to_cpu(val);
1525adfc5217SJeff Kirsher 
1526adfc5217SJeff Kirsher 		rc = bnx2x_nvram_write_dword(bp, align_offset, val,
1527adfc5217SJeff Kirsher 					     cmd_flags);
1528adfc5217SJeff Kirsher 	}
1529adfc5217SJeff Kirsher 
1530adfc5217SJeff Kirsher 	/* disable access to nvram interface */
1531adfc5217SJeff Kirsher 	bnx2x_disable_nvram_access(bp);
1532adfc5217SJeff Kirsher 	bnx2x_release_nvram_lock(bp);
1533adfc5217SJeff Kirsher 
1534adfc5217SJeff Kirsher 	return rc;
1535adfc5217SJeff Kirsher }
1536adfc5217SJeff Kirsher 
1537adfc5217SJeff Kirsher static int bnx2x_nvram_write(struct bnx2x *bp, u32 offset, u8 *data_buf,
1538adfc5217SJeff Kirsher 			     int buf_size)
1539adfc5217SJeff Kirsher {
1540adfc5217SJeff Kirsher 	int rc;
1541adfc5217SJeff Kirsher 	u32 cmd_flags;
1542adfc5217SJeff Kirsher 	u32 val;
1543adfc5217SJeff Kirsher 	u32 written_so_far;
1544adfc5217SJeff Kirsher 
1545adfc5217SJeff Kirsher 	if (buf_size == 1)	/* ethtool */
1546adfc5217SJeff Kirsher 		return bnx2x_nvram_write1(bp, offset, data_buf, buf_size);
1547adfc5217SJeff Kirsher 
1548adfc5217SJeff Kirsher 	if ((offset & 0x03) || (buf_size & 0x03) || (buf_size == 0)) {
154951c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL | BNX2X_MSG_NVM,
1550adfc5217SJeff Kirsher 		   "Invalid parameter: offset 0x%x  buf_size 0x%x\n",
1551adfc5217SJeff Kirsher 		   offset, buf_size);
1552adfc5217SJeff Kirsher 		return -EINVAL;
1553adfc5217SJeff Kirsher 	}
1554adfc5217SJeff Kirsher 
1555adfc5217SJeff Kirsher 	if (offset + buf_size > bp->common.flash_size) {
155651c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL | BNX2X_MSG_NVM,
155751c1a580SMerav Sicron 		   "Invalid parameter: offset (0x%x) + buf_size (0x%x) > flash_size (0x%x)\n",
1558adfc5217SJeff Kirsher 		   offset, buf_size, bp->common.flash_size);
1559adfc5217SJeff Kirsher 		return -EINVAL;
1560adfc5217SJeff Kirsher 	}
1561adfc5217SJeff Kirsher 
1562adfc5217SJeff Kirsher 	/* request access to nvram interface */
1563adfc5217SJeff Kirsher 	rc = bnx2x_acquire_nvram_lock(bp);
1564adfc5217SJeff Kirsher 	if (rc)
1565adfc5217SJeff Kirsher 		return rc;
1566adfc5217SJeff Kirsher 
1567adfc5217SJeff Kirsher 	/* enable access to nvram interface */
1568adfc5217SJeff Kirsher 	bnx2x_enable_nvram_access(bp);
1569adfc5217SJeff Kirsher 
1570adfc5217SJeff Kirsher 	written_so_far = 0;
1571adfc5217SJeff Kirsher 	cmd_flags = MCPR_NVM_COMMAND_FIRST;
1572adfc5217SJeff Kirsher 	while ((written_so_far < buf_size) && (rc == 0)) {
1573adfc5217SJeff Kirsher 		if (written_so_far == (buf_size - sizeof(u32)))
1574adfc5217SJeff Kirsher 			cmd_flags |= MCPR_NVM_COMMAND_LAST;
1575adfc5217SJeff Kirsher 		else if (((offset + 4) % BNX2X_NVRAM_PAGE_SIZE) == 0)
1576adfc5217SJeff Kirsher 			cmd_flags |= MCPR_NVM_COMMAND_LAST;
1577adfc5217SJeff Kirsher 		else if ((offset % BNX2X_NVRAM_PAGE_SIZE) == 0)
1578adfc5217SJeff Kirsher 			cmd_flags |= MCPR_NVM_COMMAND_FIRST;
1579adfc5217SJeff Kirsher 
1580adfc5217SJeff Kirsher 		memcpy(&val, data_buf, 4);
1581adfc5217SJeff Kirsher 
1582adfc5217SJeff Kirsher 		rc = bnx2x_nvram_write_dword(bp, offset, val, cmd_flags);
1583adfc5217SJeff Kirsher 
1584adfc5217SJeff Kirsher 		/* advance to the next dword */
1585adfc5217SJeff Kirsher 		offset += sizeof(u32);
1586adfc5217SJeff Kirsher 		data_buf += sizeof(u32);
1587adfc5217SJeff Kirsher 		written_so_far += sizeof(u32);
1588adfc5217SJeff Kirsher 		cmd_flags = 0;
1589adfc5217SJeff Kirsher 	}
1590adfc5217SJeff Kirsher 
1591adfc5217SJeff Kirsher 	/* disable access to nvram interface */
1592adfc5217SJeff Kirsher 	bnx2x_disable_nvram_access(bp);
1593adfc5217SJeff Kirsher 	bnx2x_release_nvram_lock(bp);
1594adfc5217SJeff Kirsher 
1595adfc5217SJeff Kirsher 	return rc;
1596adfc5217SJeff Kirsher }
1597adfc5217SJeff Kirsher 
1598adfc5217SJeff Kirsher static int bnx2x_set_eeprom(struct net_device *dev,
1599adfc5217SJeff Kirsher 			    struct ethtool_eeprom *eeprom, u8 *eebuf)
1600adfc5217SJeff Kirsher {
1601adfc5217SJeff Kirsher 	struct bnx2x *bp = netdev_priv(dev);
1602adfc5217SJeff Kirsher 	int port = BP_PORT(bp);
1603adfc5217SJeff Kirsher 	int rc = 0;
1604adfc5217SJeff Kirsher 	u32 ext_phy_config;
160551c1a580SMerav Sicron 	if (!netif_running(dev)) {
160651c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL | BNX2X_MSG_NVM,
160751c1a580SMerav Sicron 		   "cannot access eeprom when the interface is down\n");
1608adfc5217SJeff Kirsher 		return -EAGAIN;
160951c1a580SMerav Sicron 	}
1610adfc5217SJeff Kirsher 
161151c1a580SMerav Sicron 	DP(BNX2X_MSG_ETHTOOL | BNX2X_MSG_NVM, "ethtool_eeprom: cmd %d\n"
1612f1deab50SJoe Perches 	   "  magic 0x%x  offset 0x%x (%d)  len 0x%x (%d)\n",
1613adfc5217SJeff Kirsher 	   eeprom->cmd, eeprom->magic, eeprom->offset, eeprom->offset,
1614adfc5217SJeff Kirsher 	   eeprom->len, eeprom->len);
1615adfc5217SJeff Kirsher 
1616adfc5217SJeff Kirsher 	/* parameters already validated in ethtool_set_eeprom */
1617adfc5217SJeff Kirsher 
1618adfc5217SJeff Kirsher 	/* PHY eeprom can be accessed only by the PMF */
1619adfc5217SJeff Kirsher 	if ((eeprom->magic >= 0x50485900) && (eeprom->magic <= 0x504859FF) &&
162051c1a580SMerav Sicron 	    !bp->port.pmf) {
162151c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL | BNX2X_MSG_NVM,
162251c1a580SMerav Sicron 		   "wrong magic or interface is not pmf\n");
1623adfc5217SJeff Kirsher 		return -EINVAL;
162451c1a580SMerav Sicron 	}
1625adfc5217SJeff Kirsher 
1626adfc5217SJeff Kirsher 	ext_phy_config =
1627adfc5217SJeff Kirsher 		SHMEM_RD(bp,
1628adfc5217SJeff Kirsher 			 dev_info.port_hw_config[port].external_phy_config);
1629adfc5217SJeff Kirsher 
1630adfc5217SJeff Kirsher 	if (eeprom->magic == 0x50485950) {
1631adfc5217SJeff Kirsher 		/* 'PHYP' (0x50485950): prepare phy for FW upgrade */
1632adfc5217SJeff Kirsher 		bnx2x_stats_handle(bp, STATS_EVENT_STOP);
1633adfc5217SJeff Kirsher 
1634adfc5217SJeff Kirsher 		bnx2x_acquire_phy_lock(bp);
1635adfc5217SJeff Kirsher 		rc |= bnx2x_link_reset(&bp->link_params,
1636adfc5217SJeff Kirsher 				       &bp->link_vars, 0);
1637adfc5217SJeff Kirsher 		if (XGXS_EXT_PHY_TYPE(ext_phy_config) ==
1638adfc5217SJeff Kirsher 					PORT_HW_CFG_XGXS_EXT_PHY_TYPE_SFX7101)
1639adfc5217SJeff Kirsher 			bnx2x_set_gpio(bp, MISC_REGISTERS_GPIO_0,
1640adfc5217SJeff Kirsher 				       MISC_REGISTERS_GPIO_HIGH, port);
1641adfc5217SJeff Kirsher 		bnx2x_release_phy_lock(bp);
1642adfc5217SJeff Kirsher 		bnx2x_link_report(bp);
1643adfc5217SJeff Kirsher 
1644adfc5217SJeff Kirsher 	} else if (eeprom->magic == 0x50485952) {
1645adfc5217SJeff Kirsher 		/* 'PHYR' (0x50485952): re-init link after FW upgrade */
1646adfc5217SJeff Kirsher 		if (bp->state == BNX2X_STATE_OPEN) {
1647adfc5217SJeff Kirsher 			bnx2x_acquire_phy_lock(bp);
1648adfc5217SJeff Kirsher 			rc |= bnx2x_link_reset(&bp->link_params,
1649adfc5217SJeff Kirsher 					       &bp->link_vars, 1);
1650adfc5217SJeff Kirsher 
1651adfc5217SJeff Kirsher 			rc |= bnx2x_phy_init(&bp->link_params,
1652adfc5217SJeff Kirsher 					     &bp->link_vars);
1653adfc5217SJeff Kirsher 			bnx2x_release_phy_lock(bp);
1654adfc5217SJeff Kirsher 			bnx2x_calc_fc_adv(bp);
1655adfc5217SJeff Kirsher 		}
1656adfc5217SJeff Kirsher 	} else if (eeprom->magic == 0x53985943) {
1657adfc5217SJeff Kirsher 		/* 'PHYC' (0x53985943): PHY FW upgrade completed */
1658adfc5217SJeff Kirsher 		if (XGXS_EXT_PHY_TYPE(ext_phy_config) ==
1659adfc5217SJeff Kirsher 				       PORT_HW_CFG_XGXS_EXT_PHY_TYPE_SFX7101) {
1660adfc5217SJeff Kirsher 
1661adfc5217SJeff Kirsher 			/* DSP Remove Download Mode */
1662adfc5217SJeff Kirsher 			bnx2x_set_gpio(bp, MISC_REGISTERS_GPIO_0,
1663adfc5217SJeff Kirsher 				       MISC_REGISTERS_GPIO_LOW, port);
1664adfc5217SJeff Kirsher 
1665adfc5217SJeff Kirsher 			bnx2x_acquire_phy_lock(bp);
1666adfc5217SJeff Kirsher 
1667adfc5217SJeff Kirsher 			bnx2x_sfx7101_sp_sw_reset(bp,
1668adfc5217SJeff Kirsher 						&bp->link_params.phy[EXT_PHY1]);
1669adfc5217SJeff Kirsher 
1670adfc5217SJeff Kirsher 			/* wait 0.5 sec to allow it to run */
1671adfc5217SJeff Kirsher 			msleep(500);
1672adfc5217SJeff Kirsher 			bnx2x_ext_phy_hw_reset(bp, port);
1673adfc5217SJeff Kirsher 			msleep(500);
1674adfc5217SJeff Kirsher 			bnx2x_release_phy_lock(bp);
1675adfc5217SJeff Kirsher 		}
1676adfc5217SJeff Kirsher 	} else
1677adfc5217SJeff Kirsher 		rc = bnx2x_nvram_write(bp, eeprom->offset, eebuf, eeprom->len);
1678adfc5217SJeff Kirsher 
1679adfc5217SJeff Kirsher 	return rc;
1680adfc5217SJeff Kirsher }
1681adfc5217SJeff Kirsher 
1682adfc5217SJeff Kirsher static int bnx2x_get_coalesce(struct net_device *dev,
1683adfc5217SJeff Kirsher 			      struct ethtool_coalesce *coal)
1684adfc5217SJeff Kirsher {
1685adfc5217SJeff Kirsher 	struct bnx2x *bp = netdev_priv(dev);
1686adfc5217SJeff Kirsher 
1687adfc5217SJeff Kirsher 	memset(coal, 0, sizeof(struct ethtool_coalesce));
1688adfc5217SJeff Kirsher 
1689adfc5217SJeff Kirsher 	coal->rx_coalesce_usecs = bp->rx_ticks;
1690adfc5217SJeff Kirsher 	coal->tx_coalesce_usecs = bp->tx_ticks;
1691adfc5217SJeff Kirsher 
1692adfc5217SJeff Kirsher 	return 0;
1693adfc5217SJeff Kirsher }
1694adfc5217SJeff Kirsher 
1695adfc5217SJeff Kirsher static int bnx2x_set_coalesce(struct net_device *dev,
1696adfc5217SJeff Kirsher 			      struct ethtool_coalesce *coal)
1697adfc5217SJeff Kirsher {
1698adfc5217SJeff Kirsher 	struct bnx2x *bp = netdev_priv(dev);
1699adfc5217SJeff Kirsher 
1700adfc5217SJeff Kirsher 	bp->rx_ticks = (u16)coal->rx_coalesce_usecs;
1701adfc5217SJeff Kirsher 	if (bp->rx_ticks > BNX2X_MAX_COALESCE_TOUT)
1702adfc5217SJeff Kirsher 		bp->rx_ticks = BNX2X_MAX_COALESCE_TOUT;
1703adfc5217SJeff Kirsher 
1704adfc5217SJeff Kirsher 	bp->tx_ticks = (u16)coal->tx_coalesce_usecs;
1705adfc5217SJeff Kirsher 	if (bp->tx_ticks > BNX2X_MAX_COALESCE_TOUT)
1706adfc5217SJeff Kirsher 		bp->tx_ticks = BNX2X_MAX_COALESCE_TOUT;
1707adfc5217SJeff Kirsher 
1708adfc5217SJeff Kirsher 	if (netif_running(dev))
1709adfc5217SJeff Kirsher 		bnx2x_update_coalesce(bp);
1710adfc5217SJeff Kirsher 
1711adfc5217SJeff Kirsher 	return 0;
1712adfc5217SJeff Kirsher }
1713adfc5217SJeff Kirsher 
1714adfc5217SJeff Kirsher static void bnx2x_get_ringparam(struct net_device *dev,
1715adfc5217SJeff Kirsher 				struct ethtool_ringparam *ering)
1716adfc5217SJeff Kirsher {
1717adfc5217SJeff Kirsher 	struct bnx2x *bp = netdev_priv(dev);
1718adfc5217SJeff Kirsher 
1719adfc5217SJeff Kirsher 	ering->rx_max_pending = MAX_RX_AVAIL;
1720adfc5217SJeff Kirsher 
1721adfc5217SJeff Kirsher 	if (bp->rx_ring_size)
1722adfc5217SJeff Kirsher 		ering->rx_pending = bp->rx_ring_size;
1723adfc5217SJeff Kirsher 	else
1724adfc5217SJeff Kirsher 		ering->rx_pending = MAX_RX_AVAIL;
1725adfc5217SJeff Kirsher 
1726a3348722SBarak Witkowski 	ering->tx_max_pending = IS_MF_FCOE_AFEX(bp) ? 0 : MAX_TX_AVAIL;
1727adfc5217SJeff Kirsher 	ering->tx_pending = bp->tx_ring_size;
1728adfc5217SJeff Kirsher }
1729adfc5217SJeff Kirsher 
1730adfc5217SJeff Kirsher static int bnx2x_set_ringparam(struct net_device *dev,
1731adfc5217SJeff Kirsher 			       struct ethtool_ringparam *ering)
1732adfc5217SJeff Kirsher {
1733adfc5217SJeff Kirsher 	struct bnx2x *bp = netdev_priv(dev);
1734adfc5217SJeff Kirsher 
1735adfc5217SJeff Kirsher 	if (bp->recovery_state != BNX2X_RECOVERY_DONE) {
173651c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL,
173751c1a580SMerav Sicron 		   "Handling parity error recovery. Try again later\n");
1738adfc5217SJeff Kirsher 		return -EAGAIN;
1739adfc5217SJeff Kirsher 	}
1740adfc5217SJeff Kirsher 
1741adfc5217SJeff Kirsher 	if ((ering->rx_pending > MAX_RX_AVAIL) ||
1742adfc5217SJeff Kirsher 	    (ering->rx_pending < (bp->disable_tpa ? MIN_RX_SIZE_NONTPA :
1743adfc5217SJeff Kirsher 						    MIN_RX_SIZE_TPA)) ||
1744a3348722SBarak Witkowski 	    (ering->tx_pending > (IS_MF_FCOE_AFEX(bp) ? 0 : MAX_TX_AVAIL)) ||
174551c1a580SMerav Sicron 	    (ering->tx_pending <= MAX_SKB_FRAGS + 4)) {
174651c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL, "Command parameters not supported\n");
1747adfc5217SJeff Kirsher 		return -EINVAL;
174851c1a580SMerav Sicron 	}
1749adfc5217SJeff Kirsher 
1750adfc5217SJeff Kirsher 	bp->rx_ring_size = ering->rx_pending;
1751adfc5217SJeff Kirsher 	bp->tx_ring_size = ering->tx_pending;
1752adfc5217SJeff Kirsher 
1753adfc5217SJeff Kirsher 	return bnx2x_reload_if_running(dev);
1754adfc5217SJeff Kirsher }
1755adfc5217SJeff Kirsher 
1756adfc5217SJeff Kirsher static void bnx2x_get_pauseparam(struct net_device *dev,
1757adfc5217SJeff Kirsher 				 struct ethtool_pauseparam *epause)
1758adfc5217SJeff Kirsher {
1759adfc5217SJeff Kirsher 	struct bnx2x *bp = netdev_priv(dev);
1760adfc5217SJeff Kirsher 	int cfg_idx = bnx2x_get_link_cfg_idx(bp);
17619e7e8399SMintz Yuval 	int cfg_reg;
17629e7e8399SMintz Yuval 
1763adfc5217SJeff Kirsher 	epause->autoneg = (bp->link_params.req_flow_ctrl[cfg_idx] ==
1764adfc5217SJeff Kirsher 			   BNX2X_FLOW_CTRL_AUTO);
1765adfc5217SJeff Kirsher 
17669e7e8399SMintz Yuval 	if (!epause->autoneg)
1767241fb5d2SYuval Mintz 		cfg_reg = bp->link_params.req_flow_ctrl[cfg_idx];
17689e7e8399SMintz Yuval 	else
17699e7e8399SMintz Yuval 		cfg_reg = bp->link_params.req_fc_auto_adv;
17709e7e8399SMintz Yuval 
17719e7e8399SMintz Yuval 	epause->rx_pause = ((cfg_reg & BNX2X_FLOW_CTRL_RX) ==
1772adfc5217SJeff Kirsher 			    BNX2X_FLOW_CTRL_RX);
17739e7e8399SMintz Yuval 	epause->tx_pause = ((cfg_reg & BNX2X_FLOW_CTRL_TX) ==
1774adfc5217SJeff Kirsher 			    BNX2X_FLOW_CTRL_TX);
1775adfc5217SJeff Kirsher 
177651c1a580SMerav Sicron 	DP(BNX2X_MSG_ETHTOOL, "ethtool_pauseparam: cmd %d\n"
1777f1deab50SJoe Perches 	   "  autoneg %d  rx_pause %d  tx_pause %d\n",
1778adfc5217SJeff Kirsher 	   epause->cmd, epause->autoneg, epause->rx_pause, epause->tx_pause);
1779adfc5217SJeff Kirsher }
1780adfc5217SJeff Kirsher 
1781adfc5217SJeff Kirsher static int bnx2x_set_pauseparam(struct net_device *dev,
1782adfc5217SJeff Kirsher 				struct ethtool_pauseparam *epause)
1783adfc5217SJeff Kirsher {
1784adfc5217SJeff Kirsher 	struct bnx2x *bp = netdev_priv(dev);
1785adfc5217SJeff Kirsher 	u32 cfg_idx = bnx2x_get_link_cfg_idx(bp);
1786adfc5217SJeff Kirsher 	if (IS_MF(bp))
1787adfc5217SJeff Kirsher 		return 0;
1788adfc5217SJeff Kirsher 
178951c1a580SMerav Sicron 	DP(BNX2X_MSG_ETHTOOL, "ethtool_pauseparam: cmd %d\n"
1790f1deab50SJoe Perches 	   "  autoneg %d  rx_pause %d  tx_pause %d\n",
1791adfc5217SJeff Kirsher 	   epause->cmd, epause->autoneg, epause->rx_pause, epause->tx_pause);
1792adfc5217SJeff Kirsher 
1793adfc5217SJeff Kirsher 	bp->link_params.req_flow_ctrl[cfg_idx] = BNX2X_FLOW_CTRL_AUTO;
1794adfc5217SJeff Kirsher 
1795adfc5217SJeff Kirsher 	if (epause->rx_pause)
1796adfc5217SJeff Kirsher 		bp->link_params.req_flow_ctrl[cfg_idx] |= BNX2X_FLOW_CTRL_RX;
1797adfc5217SJeff Kirsher 
1798adfc5217SJeff Kirsher 	if (epause->tx_pause)
1799adfc5217SJeff Kirsher 		bp->link_params.req_flow_ctrl[cfg_idx] |= BNX2X_FLOW_CTRL_TX;
1800adfc5217SJeff Kirsher 
1801adfc5217SJeff Kirsher 	if (bp->link_params.req_flow_ctrl[cfg_idx] == BNX2X_FLOW_CTRL_AUTO)
1802adfc5217SJeff Kirsher 		bp->link_params.req_flow_ctrl[cfg_idx] = BNX2X_FLOW_CTRL_NONE;
1803adfc5217SJeff Kirsher 
1804adfc5217SJeff Kirsher 	if (epause->autoneg) {
1805adfc5217SJeff Kirsher 		if (!(bp->port.supported[cfg_idx] & SUPPORTED_Autoneg)) {
180651c1a580SMerav Sicron 			DP(BNX2X_MSG_ETHTOOL, "autoneg not supported\n");
1807adfc5217SJeff Kirsher 			return -EINVAL;
1808adfc5217SJeff Kirsher 		}
1809adfc5217SJeff Kirsher 
1810adfc5217SJeff Kirsher 		if (bp->link_params.req_line_speed[cfg_idx] == SPEED_AUTO_NEG) {
1811adfc5217SJeff Kirsher 			bp->link_params.req_flow_ctrl[cfg_idx] =
1812adfc5217SJeff Kirsher 				BNX2X_FLOW_CTRL_AUTO;
1813adfc5217SJeff Kirsher 		}
18145cd75f0cSYaniv Rosner 		bp->link_params.req_fc_auto_adv = BNX2X_FLOW_CTRL_NONE;
18155cd75f0cSYaniv Rosner 		if (epause->rx_pause)
18165cd75f0cSYaniv Rosner 			bp->link_params.req_fc_auto_adv |= BNX2X_FLOW_CTRL_RX;
18175cd75f0cSYaniv Rosner 
18185cd75f0cSYaniv Rosner 		if (epause->tx_pause)
18195cd75f0cSYaniv Rosner 			bp->link_params.req_fc_auto_adv |= BNX2X_FLOW_CTRL_TX;
1820adfc5217SJeff Kirsher 	}
1821adfc5217SJeff Kirsher 
182251c1a580SMerav Sicron 	DP(BNX2X_MSG_ETHTOOL,
1823adfc5217SJeff Kirsher 	   "req_flow_ctrl 0x%x\n", bp->link_params.req_flow_ctrl[cfg_idx]);
1824adfc5217SJeff Kirsher 
1825adfc5217SJeff Kirsher 	if (netif_running(dev)) {
1826adfc5217SJeff Kirsher 		bnx2x_stats_handle(bp, STATS_EVENT_STOP);
1827adfc5217SJeff Kirsher 		bnx2x_link_set(bp);
1828adfc5217SJeff Kirsher 	}
1829adfc5217SJeff Kirsher 
1830adfc5217SJeff Kirsher 	return 0;
1831adfc5217SJeff Kirsher }
1832adfc5217SJeff Kirsher 
18335889335cSMerav Sicron static const char bnx2x_tests_str_arr[BNX2X_NUM_TESTS_SF][ETH_GSTRING_LEN] = {
1834cf2c1df6SMerav Sicron 	"register_test (offline)    ",
1835cf2c1df6SMerav Sicron 	"memory_test (offline)      ",
1836cf2c1df6SMerav Sicron 	"int_loopback_test (offline)",
1837cf2c1df6SMerav Sicron 	"ext_loopback_test (offline)",
1838cf2c1df6SMerav Sicron 	"nvram_test (online)        ",
1839cf2c1df6SMerav Sicron 	"interrupt_test (online)    ",
1840cf2c1df6SMerav Sicron 	"link_test (online)         "
1841adfc5217SJeff Kirsher };
1842adfc5217SJeff Kirsher 
1843e9939c80SYuval Mintz static u32 bnx2x_eee_to_adv(u32 eee_adv)
1844e9939c80SYuval Mintz {
1845e9939c80SYuval Mintz 	u32 modes = 0;
1846e9939c80SYuval Mintz 
1847e9939c80SYuval Mintz 	if (eee_adv & SHMEM_EEE_100M_ADV)
1848e9939c80SYuval Mintz 		modes |= ADVERTISED_100baseT_Full;
1849e9939c80SYuval Mintz 	if (eee_adv & SHMEM_EEE_1G_ADV)
1850e9939c80SYuval Mintz 		modes |= ADVERTISED_1000baseT_Full;
1851e9939c80SYuval Mintz 	if (eee_adv & SHMEM_EEE_10G_ADV)
1852e9939c80SYuval Mintz 		modes |= ADVERTISED_10000baseT_Full;
1853e9939c80SYuval Mintz 
1854e9939c80SYuval Mintz 	return modes;
1855e9939c80SYuval Mintz }
1856e9939c80SYuval Mintz 
1857e9939c80SYuval Mintz static u32 bnx2x_adv_to_eee(u32 modes, u32 shift)
1858e9939c80SYuval Mintz {
1859e9939c80SYuval Mintz 	u32 eee_adv = 0;
1860e9939c80SYuval Mintz 	if (modes & ADVERTISED_100baseT_Full)
1861e9939c80SYuval Mintz 		eee_adv |= SHMEM_EEE_100M_ADV;
1862e9939c80SYuval Mintz 	if (modes & ADVERTISED_1000baseT_Full)
1863e9939c80SYuval Mintz 		eee_adv |= SHMEM_EEE_1G_ADV;
1864e9939c80SYuval Mintz 	if (modes & ADVERTISED_10000baseT_Full)
1865e9939c80SYuval Mintz 		eee_adv |= SHMEM_EEE_10G_ADV;
1866e9939c80SYuval Mintz 
1867e9939c80SYuval Mintz 	return eee_adv << shift;
1868e9939c80SYuval Mintz }
1869e9939c80SYuval Mintz 
1870e9939c80SYuval Mintz static int bnx2x_get_eee(struct net_device *dev, struct ethtool_eee *edata)
1871e9939c80SYuval Mintz {
1872e9939c80SYuval Mintz 	struct bnx2x *bp = netdev_priv(dev);
1873e9939c80SYuval Mintz 	u32 eee_cfg;
1874e9939c80SYuval Mintz 
1875e9939c80SYuval Mintz 	if (!SHMEM2_HAS(bp, eee_status[BP_PORT(bp)])) {
1876e9939c80SYuval Mintz 		DP(BNX2X_MSG_ETHTOOL, "BC Version does not support EEE\n");
1877e9939c80SYuval Mintz 		return -EOPNOTSUPP;
1878e9939c80SYuval Mintz 	}
1879e9939c80SYuval Mintz 
188008e9acc2SYuval Mintz 	eee_cfg = bp->link_vars.eee_status;
1881e9939c80SYuval Mintz 
1882e9939c80SYuval Mintz 	edata->supported =
1883e9939c80SYuval Mintz 		bnx2x_eee_to_adv((eee_cfg & SHMEM_EEE_SUPPORTED_MASK) >>
1884e9939c80SYuval Mintz 				 SHMEM_EEE_SUPPORTED_SHIFT);
1885e9939c80SYuval Mintz 
1886e9939c80SYuval Mintz 	edata->advertised =
1887e9939c80SYuval Mintz 		bnx2x_eee_to_adv((eee_cfg & SHMEM_EEE_ADV_STATUS_MASK) >>
1888e9939c80SYuval Mintz 				 SHMEM_EEE_ADV_STATUS_SHIFT);
1889e9939c80SYuval Mintz 	edata->lp_advertised =
1890e9939c80SYuval Mintz 		bnx2x_eee_to_adv((eee_cfg & SHMEM_EEE_LP_ADV_STATUS_MASK) >>
1891e9939c80SYuval Mintz 				 SHMEM_EEE_LP_ADV_STATUS_SHIFT);
1892e9939c80SYuval Mintz 
1893e9939c80SYuval Mintz 	/* SHMEM value is in 16u units --> Convert to 1u units. */
1894e9939c80SYuval Mintz 	edata->tx_lpi_timer = (eee_cfg & SHMEM_EEE_TIMER_MASK) << 4;
1895e9939c80SYuval Mintz 
1896e9939c80SYuval Mintz 	edata->eee_enabled    = (eee_cfg & SHMEM_EEE_REQUESTED_BIT)	? 1 : 0;
1897e9939c80SYuval Mintz 	edata->eee_active     = (eee_cfg & SHMEM_EEE_ACTIVE_BIT)	? 1 : 0;
1898e9939c80SYuval Mintz 	edata->tx_lpi_enabled = (eee_cfg & SHMEM_EEE_LPI_REQUESTED_BIT) ? 1 : 0;
1899e9939c80SYuval Mintz 
1900e9939c80SYuval Mintz 	return 0;
1901e9939c80SYuval Mintz }
1902e9939c80SYuval Mintz 
1903e9939c80SYuval Mintz static int bnx2x_set_eee(struct net_device *dev, struct ethtool_eee *edata)
1904e9939c80SYuval Mintz {
1905e9939c80SYuval Mintz 	struct bnx2x *bp = netdev_priv(dev);
1906e9939c80SYuval Mintz 	u32 eee_cfg;
1907e9939c80SYuval Mintz 	u32 advertised;
1908e9939c80SYuval Mintz 
1909e9939c80SYuval Mintz 	if (IS_MF(bp))
1910e9939c80SYuval Mintz 		return 0;
1911e9939c80SYuval Mintz 
1912e9939c80SYuval Mintz 	if (!SHMEM2_HAS(bp, eee_status[BP_PORT(bp)])) {
1913e9939c80SYuval Mintz 		DP(BNX2X_MSG_ETHTOOL, "BC Version does not support EEE\n");
1914e9939c80SYuval Mintz 		return -EOPNOTSUPP;
1915e9939c80SYuval Mintz 	}
1916e9939c80SYuval Mintz 
191708e9acc2SYuval Mintz 	eee_cfg = bp->link_vars.eee_status;
1918e9939c80SYuval Mintz 
1919e9939c80SYuval Mintz 	if (!(eee_cfg & SHMEM_EEE_SUPPORTED_MASK)) {
1920e9939c80SYuval Mintz 		DP(BNX2X_MSG_ETHTOOL, "Board does not support EEE!\n");
1921e9939c80SYuval Mintz 		return -EOPNOTSUPP;
1922e9939c80SYuval Mintz 	}
1923e9939c80SYuval Mintz 
1924e9939c80SYuval Mintz 	advertised = bnx2x_adv_to_eee(edata->advertised,
1925e9939c80SYuval Mintz 				      SHMEM_EEE_ADV_STATUS_SHIFT);
1926e9939c80SYuval Mintz 	if ((advertised != (eee_cfg & SHMEM_EEE_ADV_STATUS_MASK))) {
1927e9939c80SYuval Mintz 		DP(BNX2X_MSG_ETHTOOL,
1928efc7ce03SMasanari Iida 		   "Direct manipulation of EEE advertisement is not supported\n");
1929e9939c80SYuval Mintz 		return -EINVAL;
1930e9939c80SYuval Mintz 	}
1931e9939c80SYuval Mintz 
1932e9939c80SYuval Mintz 	if (edata->tx_lpi_timer > EEE_MODE_TIMER_MASK) {
1933e9939c80SYuval Mintz 		DP(BNX2X_MSG_ETHTOOL,
1934e9939c80SYuval Mintz 		   "Maximal Tx Lpi timer supported is %x(u)\n",
1935e9939c80SYuval Mintz 		   EEE_MODE_TIMER_MASK);
1936e9939c80SYuval Mintz 		return -EINVAL;
1937e9939c80SYuval Mintz 	}
1938e9939c80SYuval Mintz 	if (edata->tx_lpi_enabled &&
1939e9939c80SYuval Mintz 	    (edata->tx_lpi_timer < EEE_MODE_NVRAM_AGGRESSIVE_TIME)) {
1940e9939c80SYuval Mintz 		DP(BNX2X_MSG_ETHTOOL,
1941e9939c80SYuval Mintz 		   "Minimal Tx Lpi timer supported is %d(u)\n",
1942e9939c80SYuval Mintz 		   EEE_MODE_NVRAM_AGGRESSIVE_TIME);
1943e9939c80SYuval Mintz 		return -EINVAL;
1944e9939c80SYuval Mintz 	}
1945e9939c80SYuval Mintz 
1946e9939c80SYuval Mintz 	/* All is well; Apply changes*/
1947e9939c80SYuval Mintz 	if (edata->eee_enabled)
1948e9939c80SYuval Mintz 		bp->link_params.eee_mode |= EEE_MODE_ADV_LPI;
1949e9939c80SYuval Mintz 	else
1950e9939c80SYuval Mintz 		bp->link_params.eee_mode &= ~EEE_MODE_ADV_LPI;
1951e9939c80SYuval Mintz 
1952e9939c80SYuval Mintz 	if (edata->tx_lpi_enabled)
1953e9939c80SYuval Mintz 		bp->link_params.eee_mode |= EEE_MODE_ENABLE_LPI;
1954e9939c80SYuval Mintz 	else
1955e9939c80SYuval Mintz 		bp->link_params.eee_mode &= ~EEE_MODE_ENABLE_LPI;
1956e9939c80SYuval Mintz 
1957e9939c80SYuval Mintz 	bp->link_params.eee_mode &= ~EEE_MODE_TIMER_MASK;
1958e9939c80SYuval Mintz 	bp->link_params.eee_mode |= (edata->tx_lpi_timer &
1959e9939c80SYuval Mintz 				    EEE_MODE_TIMER_MASK) |
1960e9939c80SYuval Mintz 				    EEE_MODE_OVERRIDE_NVRAM |
1961e9939c80SYuval Mintz 				    EEE_MODE_OUTPUT_TIME;
1962e9939c80SYuval Mintz 
1963e9939c80SYuval Mintz 	/* Restart link to propogate changes */
1964e9939c80SYuval Mintz 	if (netif_running(dev)) {
1965e9939c80SYuval Mintz 		bnx2x_stats_handle(bp, STATS_EVENT_STOP);
19665d07d868SYuval Mintz 		bnx2x_force_link_reset(bp);
1967e9939c80SYuval Mintz 		bnx2x_link_set(bp);
1968e9939c80SYuval Mintz 	}
1969e9939c80SYuval Mintz 
1970e9939c80SYuval Mintz 	return 0;
1971e9939c80SYuval Mintz }
1972e9939c80SYuval Mintz 
1973e9939c80SYuval Mintz 
1974adfc5217SJeff Kirsher enum {
1975adfc5217SJeff Kirsher 	BNX2X_CHIP_E1_OFST = 0,
1976adfc5217SJeff Kirsher 	BNX2X_CHIP_E1H_OFST,
1977adfc5217SJeff Kirsher 	BNX2X_CHIP_E2_OFST,
1978adfc5217SJeff Kirsher 	BNX2X_CHIP_E3_OFST,
1979adfc5217SJeff Kirsher 	BNX2X_CHIP_E3B0_OFST,
1980adfc5217SJeff Kirsher 	BNX2X_CHIP_MAX_OFST
1981adfc5217SJeff Kirsher };
1982adfc5217SJeff Kirsher 
1983adfc5217SJeff Kirsher #define BNX2X_CHIP_MASK_E1	(1 << BNX2X_CHIP_E1_OFST)
1984adfc5217SJeff Kirsher #define BNX2X_CHIP_MASK_E1H	(1 << BNX2X_CHIP_E1H_OFST)
1985adfc5217SJeff Kirsher #define BNX2X_CHIP_MASK_E2	(1 << BNX2X_CHIP_E2_OFST)
1986adfc5217SJeff Kirsher #define BNX2X_CHIP_MASK_E3	(1 << BNX2X_CHIP_E3_OFST)
1987adfc5217SJeff Kirsher #define BNX2X_CHIP_MASK_E3B0	(1 << BNX2X_CHIP_E3B0_OFST)
1988adfc5217SJeff Kirsher 
1989adfc5217SJeff Kirsher #define BNX2X_CHIP_MASK_ALL	((1 << BNX2X_CHIP_MAX_OFST) - 1)
1990adfc5217SJeff Kirsher #define BNX2X_CHIP_MASK_E1X	(BNX2X_CHIP_MASK_E1 | BNX2X_CHIP_MASK_E1H)
1991adfc5217SJeff Kirsher 
1992adfc5217SJeff Kirsher static int bnx2x_test_registers(struct bnx2x *bp)
1993adfc5217SJeff Kirsher {
1994adfc5217SJeff Kirsher 	int idx, i, rc = -ENODEV;
1995adfc5217SJeff Kirsher 	u32 wr_val = 0, hw;
1996adfc5217SJeff Kirsher 	int port = BP_PORT(bp);
1997adfc5217SJeff Kirsher 	static const struct {
1998adfc5217SJeff Kirsher 		u32 hw;
1999adfc5217SJeff Kirsher 		u32 offset0;
2000adfc5217SJeff Kirsher 		u32 offset1;
2001adfc5217SJeff Kirsher 		u32 mask;
2002adfc5217SJeff Kirsher 	} reg_tbl[] = {
2003adfc5217SJeff Kirsher /* 0 */		{ BNX2X_CHIP_MASK_ALL,
2004adfc5217SJeff Kirsher 			BRB1_REG_PAUSE_LOW_THRESHOLD_0,	4, 0x000003ff },
2005adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_ALL,
2006adfc5217SJeff Kirsher 			DORQ_REG_DB_ADDR0,		4, 0xffffffff },
2007adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_E1X,
2008adfc5217SJeff Kirsher 			HC_REG_AGG_INT_0,		4, 0x000003ff },
2009adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_ALL,
2010adfc5217SJeff Kirsher 			PBF_REG_MAC_IF0_ENABLE,		4, 0x00000001 },
2011adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_E1X | BNX2X_CHIP_MASK_E2 | BNX2X_CHIP_MASK_E3,
2012adfc5217SJeff Kirsher 			PBF_REG_P0_INIT_CRD,		4, 0x000007ff },
2013adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_E3B0,
2014adfc5217SJeff Kirsher 			PBF_REG_INIT_CRD_Q0,		4, 0x000007ff },
2015adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_ALL,
2016adfc5217SJeff Kirsher 			PRS_REG_CID_PORT_0,		4, 0x00ffffff },
2017adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_ALL,
2018adfc5217SJeff Kirsher 			PXP2_REG_PSWRQ_CDU0_L2P,	4, 0x000fffff },
2019adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_ALL,
2020adfc5217SJeff Kirsher 			PXP2_REG_RQ_CDU0_EFIRST_MEM_ADDR, 8, 0x0003ffff },
2021adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_ALL,
2022adfc5217SJeff Kirsher 			PXP2_REG_PSWRQ_TM0_L2P,		4, 0x000fffff },
2023adfc5217SJeff Kirsher /* 10 */	{ BNX2X_CHIP_MASK_ALL,
2024adfc5217SJeff Kirsher 			PXP2_REG_RQ_USDM0_EFIRST_MEM_ADDR, 8, 0x0003ffff },
2025adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_ALL,
2026adfc5217SJeff Kirsher 			PXP2_REG_PSWRQ_TSDM0_L2P,	4, 0x000fffff },
2027adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_ALL,
2028adfc5217SJeff Kirsher 			QM_REG_CONNNUM_0,		4, 0x000fffff },
2029adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_ALL,
2030adfc5217SJeff Kirsher 			TM_REG_LIN0_MAX_ACTIVE_CID,	4, 0x0003ffff },
2031adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_ALL,
2032adfc5217SJeff Kirsher 			SRC_REG_KEYRSS0_0,		40, 0xffffffff },
2033adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_ALL,
2034adfc5217SJeff Kirsher 			SRC_REG_KEYRSS0_7,		40, 0xffffffff },
2035adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_ALL,
2036adfc5217SJeff Kirsher 			XCM_REG_WU_DA_SET_TMR_CNT_FLG_CMD00, 4, 0x00000001 },
2037adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_ALL,
2038adfc5217SJeff Kirsher 			XCM_REG_WU_DA_CNT_CMD00,	4, 0x00000003 },
2039adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_ALL,
2040adfc5217SJeff Kirsher 			XCM_REG_GLB_DEL_ACK_MAX_CNT_0,	4, 0x000000ff },
2041adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_ALL,
2042adfc5217SJeff Kirsher 			NIG_REG_LLH0_T_BIT,		4, 0x00000001 },
2043adfc5217SJeff Kirsher /* 20 */	{ BNX2X_CHIP_MASK_E1X | BNX2X_CHIP_MASK_E2,
2044adfc5217SJeff Kirsher 			NIG_REG_EMAC0_IN_EN,		4, 0x00000001 },
2045adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_E1X | BNX2X_CHIP_MASK_E2,
2046adfc5217SJeff Kirsher 			NIG_REG_BMAC0_IN_EN,		4, 0x00000001 },
2047adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_ALL,
2048adfc5217SJeff Kirsher 			NIG_REG_XCM0_OUT_EN,		4, 0x00000001 },
2049adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_ALL,
2050adfc5217SJeff Kirsher 			NIG_REG_BRB0_OUT_EN,		4, 0x00000001 },
2051adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_ALL,
2052adfc5217SJeff Kirsher 			NIG_REG_LLH0_XCM_MASK,		4, 0x00000007 },
2053adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_ALL,
2054adfc5217SJeff Kirsher 			NIG_REG_LLH0_ACPI_PAT_6_LEN,	68, 0x000000ff },
2055adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_ALL,
2056adfc5217SJeff Kirsher 			NIG_REG_LLH0_ACPI_PAT_0_CRC,	68, 0xffffffff },
2057adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_ALL,
2058adfc5217SJeff Kirsher 			NIG_REG_LLH0_DEST_MAC_0_0,	160, 0xffffffff },
2059adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_ALL,
2060adfc5217SJeff Kirsher 			NIG_REG_LLH0_DEST_IP_0_1,	160, 0xffffffff },
2061adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_ALL,
2062adfc5217SJeff Kirsher 			NIG_REG_LLH0_IPV4_IPV6_0,	160, 0x00000001 },
2063adfc5217SJeff Kirsher /* 30 */	{ BNX2X_CHIP_MASK_ALL,
2064adfc5217SJeff Kirsher 			NIG_REG_LLH0_DEST_UDP_0,	160, 0x0000ffff },
2065adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_ALL,
2066adfc5217SJeff Kirsher 			NIG_REG_LLH0_DEST_TCP_0,	160, 0x0000ffff },
2067adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_ALL,
2068adfc5217SJeff Kirsher 			NIG_REG_LLH0_VLAN_ID_0,	160, 0x00000fff },
2069adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_E1X | BNX2X_CHIP_MASK_E2,
2070adfc5217SJeff Kirsher 			NIG_REG_XGXS_SERDES0_MODE_SEL,	4, 0x00000001 },
2071adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_ALL,
2072adfc5217SJeff Kirsher 			NIG_REG_LED_CONTROL_OVERRIDE_TRAFFIC_P0, 4, 0x00000001},
2073adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_ALL,
2074adfc5217SJeff Kirsher 			NIG_REG_STATUS_INTERRUPT_PORT0,	4, 0x07ffffff },
2075adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_E1X | BNX2X_CHIP_MASK_E2,
2076adfc5217SJeff Kirsher 			NIG_REG_XGXS0_CTRL_EXTREMOTEMDIOST, 24, 0x00000001 },
2077adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_E1X | BNX2X_CHIP_MASK_E2,
2078adfc5217SJeff Kirsher 			NIG_REG_SERDES0_CTRL_PHY_ADDR,	16, 0x0000001f },
2079adfc5217SJeff Kirsher 
2080adfc5217SJeff Kirsher 		{ BNX2X_CHIP_MASK_ALL, 0xffffffff, 0, 0x00000000 }
2081adfc5217SJeff Kirsher 	};
2082adfc5217SJeff Kirsher 
208351c1a580SMerav Sicron 	if (!netif_running(bp->dev)) {
208451c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL | BNX2X_MSG_NVM,
208551c1a580SMerav Sicron 		   "cannot access eeprom when the interface is down\n");
2086adfc5217SJeff Kirsher 		return rc;
208751c1a580SMerav Sicron 	}
2088adfc5217SJeff Kirsher 
2089adfc5217SJeff Kirsher 	if (CHIP_IS_E1(bp))
2090adfc5217SJeff Kirsher 		hw = BNX2X_CHIP_MASK_E1;
2091adfc5217SJeff Kirsher 	else if (CHIP_IS_E1H(bp))
2092adfc5217SJeff Kirsher 		hw = BNX2X_CHIP_MASK_E1H;
2093adfc5217SJeff Kirsher 	else if (CHIP_IS_E2(bp))
2094adfc5217SJeff Kirsher 		hw = BNX2X_CHIP_MASK_E2;
2095adfc5217SJeff Kirsher 	else if (CHIP_IS_E3B0(bp))
2096adfc5217SJeff Kirsher 		hw = BNX2X_CHIP_MASK_E3B0;
2097adfc5217SJeff Kirsher 	else /* e3 A0 */
2098adfc5217SJeff Kirsher 		hw = BNX2X_CHIP_MASK_E3;
2099adfc5217SJeff Kirsher 
2100adfc5217SJeff Kirsher 	/* Repeat the test twice:
210107ba6af4SMiriam Shitrit 	 * First by writing 0x00000000, second by writing 0xffffffff
210207ba6af4SMiriam Shitrit 	 */
2103adfc5217SJeff Kirsher 	for (idx = 0; idx < 2; idx++) {
2104adfc5217SJeff Kirsher 
2105adfc5217SJeff Kirsher 		switch (idx) {
2106adfc5217SJeff Kirsher 		case 0:
2107adfc5217SJeff Kirsher 			wr_val = 0;
2108adfc5217SJeff Kirsher 			break;
2109adfc5217SJeff Kirsher 		case 1:
2110adfc5217SJeff Kirsher 			wr_val = 0xffffffff;
2111adfc5217SJeff Kirsher 			break;
2112adfc5217SJeff Kirsher 		}
2113adfc5217SJeff Kirsher 
2114adfc5217SJeff Kirsher 		for (i = 0; reg_tbl[i].offset0 != 0xffffffff; i++) {
2115adfc5217SJeff Kirsher 			u32 offset, mask, save_val, val;
2116adfc5217SJeff Kirsher 			if (!(hw & reg_tbl[i].hw))
2117adfc5217SJeff Kirsher 				continue;
2118adfc5217SJeff Kirsher 
2119adfc5217SJeff Kirsher 			offset = reg_tbl[i].offset0 + port*reg_tbl[i].offset1;
2120adfc5217SJeff Kirsher 			mask = reg_tbl[i].mask;
2121adfc5217SJeff Kirsher 
2122adfc5217SJeff Kirsher 			save_val = REG_RD(bp, offset);
2123adfc5217SJeff Kirsher 
2124adfc5217SJeff Kirsher 			REG_WR(bp, offset, wr_val & mask);
2125adfc5217SJeff Kirsher 
2126adfc5217SJeff Kirsher 			val = REG_RD(bp, offset);
2127adfc5217SJeff Kirsher 
2128adfc5217SJeff Kirsher 			/* Restore the original register's value */
2129adfc5217SJeff Kirsher 			REG_WR(bp, offset, save_val);
2130adfc5217SJeff Kirsher 
2131adfc5217SJeff Kirsher 			/* verify value is as expected */
2132adfc5217SJeff Kirsher 			if ((val & mask) != (wr_val & mask)) {
213351c1a580SMerav Sicron 				DP(BNX2X_MSG_ETHTOOL,
2134adfc5217SJeff Kirsher 				   "offset 0x%x: val 0x%x != 0x%x mask 0x%x\n",
2135adfc5217SJeff Kirsher 				   offset, val, wr_val, mask);
2136adfc5217SJeff Kirsher 				goto test_reg_exit;
2137adfc5217SJeff Kirsher 			}
2138adfc5217SJeff Kirsher 		}
2139adfc5217SJeff Kirsher 	}
2140adfc5217SJeff Kirsher 
2141adfc5217SJeff Kirsher 	rc = 0;
2142adfc5217SJeff Kirsher 
2143adfc5217SJeff Kirsher test_reg_exit:
2144adfc5217SJeff Kirsher 	return rc;
2145adfc5217SJeff Kirsher }
2146adfc5217SJeff Kirsher 
2147adfc5217SJeff Kirsher static int bnx2x_test_memory(struct bnx2x *bp)
2148adfc5217SJeff Kirsher {
2149adfc5217SJeff Kirsher 	int i, j, rc = -ENODEV;
2150adfc5217SJeff Kirsher 	u32 val, index;
2151adfc5217SJeff Kirsher 	static const struct {
2152adfc5217SJeff Kirsher 		u32 offset;
2153adfc5217SJeff Kirsher 		int size;
2154adfc5217SJeff Kirsher 	} mem_tbl[] = {
2155adfc5217SJeff Kirsher 		{ CCM_REG_XX_DESCR_TABLE,   CCM_REG_XX_DESCR_TABLE_SIZE },
2156adfc5217SJeff Kirsher 		{ CFC_REG_ACTIVITY_COUNTER, CFC_REG_ACTIVITY_COUNTER_SIZE },
2157adfc5217SJeff Kirsher 		{ CFC_REG_LINK_LIST,        CFC_REG_LINK_LIST_SIZE },
2158adfc5217SJeff Kirsher 		{ DMAE_REG_CMD_MEM,         DMAE_REG_CMD_MEM_SIZE },
2159adfc5217SJeff Kirsher 		{ TCM_REG_XX_DESCR_TABLE,   TCM_REG_XX_DESCR_TABLE_SIZE },
2160adfc5217SJeff Kirsher 		{ UCM_REG_XX_DESCR_TABLE,   UCM_REG_XX_DESCR_TABLE_SIZE },
2161adfc5217SJeff Kirsher 		{ XCM_REG_XX_DESCR_TABLE,   XCM_REG_XX_DESCR_TABLE_SIZE },
2162adfc5217SJeff Kirsher 
2163adfc5217SJeff Kirsher 		{ 0xffffffff, 0 }
2164adfc5217SJeff Kirsher 	};
2165adfc5217SJeff Kirsher 
2166adfc5217SJeff Kirsher 	static const struct {
2167adfc5217SJeff Kirsher 		char *name;
2168adfc5217SJeff Kirsher 		u32 offset;
2169adfc5217SJeff Kirsher 		u32 hw_mask[BNX2X_CHIP_MAX_OFST];
2170adfc5217SJeff Kirsher 	} prty_tbl[] = {
2171adfc5217SJeff Kirsher 		{ "CCM_PRTY_STS",  CCM_REG_CCM_PRTY_STS,
2172adfc5217SJeff Kirsher 			{0x3ffc0, 0,   0, 0} },
2173adfc5217SJeff Kirsher 		{ "CFC_PRTY_STS",  CFC_REG_CFC_PRTY_STS,
2174adfc5217SJeff Kirsher 			{0x2,     0x2, 0, 0} },
2175adfc5217SJeff Kirsher 		{ "DMAE_PRTY_STS", DMAE_REG_DMAE_PRTY_STS,
2176adfc5217SJeff Kirsher 			{0,       0,   0, 0} },
2177adfc5217SJeff Kirsher 		{ "TCM_PRTY_STS",  TCM_REG_TCM_PRTY_STS,
2178adfc5217SJeff Kirsher 			{0x3ffc0, 0,   0, 0} },
2179adfc5217SJeff Kirsher 		{ "UCM_PRTY_STS",  UCM_REG_UCM_PRTY_STS,
2180adfc5217SJeff Kirsher 			{0x3ffc0, 0,   0, 0} },
2181adfc5217SJeff Kirsher 		{ "XCM_PRTY_STS",  XCM_REG_XCM_PRTY_STS,
2182adfc5217SJeff Kirsher 			{0x3ffc1, 0,   0, 0} },
2183adfc5217SJeff Kirsher 
2184adfc5217SJeff Kirsher 		{ NULL, 0xffffffff, {0, 0, 0, 0} }
2185adfc5217SJeff Kirsher 	};
2186adfc5217SJeff Kirsher 
218751c1a580SMerav Sicron 	if (!netif_running(bp->dev)) {
218851c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL | BNX2X_MSG_NVM,
218951c1a580SMerav Sicron 		   "cannot access eeprom when the interface is down\n");
2190adfc5217SJeff Kirsher 		return rc;
219151c1a580SMerav Sicron 	}
2192adfc5217SJeff Kirsher 
2193adfc5217SJeff Kirsher 	if (CHIP_IS_E1(bp))
2194adfc5217SJeff Kirsher 		index = BNX2X_CHIP_E1_OFST;
2195adfc5217SJeff Kirsher 	else if (CHIP_IS_E1H(bp))
2196adfc5217SJeff Kirsher 		index = BNX2X_CHIP_E1H_OFST;
2197adfc5217SJeff Kirsher 	else if (CHIP_IS_E2(bp))
2198adfc5217SJeff Kirsher 		index = BNX2X_CHIP_E2_OFST;
2199adfc5217SJeff Kirsher 	else /* e3 */
2200adfc5217SJeff Kirsher 		index = BNX2X_CHIP_E3_OFST;
2201adfc5217SJeff Kirsher 
2202adfc5217SJeff Kirsher 	/* pre-Check the parity status */
2203adfc5217SJeff Kirsher 	for (i = 0; prty_tbl[i].offset != 0xffffffff; i++) {
2204adfc5217SJeff Kirsher 		val = REG_RD(bp, prty_tbl[i].offset);
2205adfc5217SJeff Kirsher 		if (val & ~(prty_tbl[i].hw_mask[index])) {
220651c1a580SMerav Sicron 			DP(BNX2X_MSG_ETHTOOL,
2207adfc5217SJeff Kirsher 			   "%s is 0x%x\n", prty_tbl[i].name, val);
2208adfc5217SJeff Kirsher 			goto test_mem_exit;
2209adfc5217SJeff Kirsher 		}
2210adfc5217SJeff Kirsher 	}
2211adfc5217SJeff Kirsher 
2212adfc5217SJeff Kirsher 	/* Go through all the memories */
2213adfc5217SJeff Kirsher 	for (i = 0; mem_tbl[i].offset != 0xffffffff; i++)
2214adfc5217SJeff Kirsher 		for (j = 0; j < mem_tbl[i].size; j++)
2215adfc5217SJeff Kirsher 			REG_RD(bp, mem_tbl[i].offset + j*4);
2216adfc5217SJeff Kirsher 
2217adfc5217SJeff Kirsher 	/* Check the parity status */
2218adfc5217SJeff Kirsher 	for (i = 0; prty_tbl[i].offset != 0xffffffff; i++) {
2219adfc5217SJeff Kirsher 		val = REG_RD(bp, prty_tbl[i].offset);
2220adfc5217SJeff Kirsher 		if (val & ~(prty_tbl[i].hw_mask[index])) {
222151c1a580SMerav Sicron 			DP(BNX2X_MSG_ETHTOOL,
2222adfc5217SJeff Kirsher 			   "%s is 0x%x\n", prty_tbl[i].name, val);
2223adfc5217SJeff Kirsher 			goto test_mem_exit;
2224adfc5217SJeff Kirsher 		}
2225adfc5217SJeff Kirsher 	}
2226adfc5217SJeff Kirsher 
2227adfc5217SJeff Kirsher 	rc = 0;
2228adfc5217SJeff Kirsher 
2229adfc5217SJeff Kirsher test_mem_exit:
2230adfc5217SJeff Kirsher 	return rc;
2231adfc5217SJeff Kirsher }
2232adfc5217SJeff Kirsher 
2233adfc5217SJeff Kirsher static void bnx2x_wait_for_link(struct bnx2x *bp, u8 link_up, u8 is_serdes)
2234adfc5217SJeff Kirsher {
2235adfc5217SJeff Kirsher 	int cnt = 1400;
2236adfc5217SJeff Kirsher 
2237adfc5217SJeff Kirsher 	if (link_up) {
2238adfc5217SJeff Kirsher 		while (bnx2x_link_test(bp, is_serdes) && cnt--)
2239adfc5217SJeff Kirsher 			msleep(20);
2240adfc5217SJeff Kirsher 
2241adfc5217SJeff Kirsher 		if (cnt <= 0 && bnx2x_link_test(bp, is_serdes))
224251c1a580SMerav Sicron 			DP(BNX2X_MSG_ETHTOOL, "Timeout waiting for link up\n");
22438970b2e4SMerav Sicron 
22448970b2e4SMerav Sicron 		cnt = 1400;
22458970b2e4SMerav Sicron 		while (!bp->link_vars.link_up && cnt--)
22468970b2e4SMerav Sicron 			msleep(20);
22478970b2e4SMerav Sicron 
22488970b2e4SMerav Sicron 		if (cnt <= 0 && !bp->link_vars.link_up)
22498970b2e4SMerav Sicron 			DP(BNX2X_MSG_ETHTOOL,
22508970b2e4SMerav Sicron 			   "Timeout waiting for link init\n");
2251adfc5217SJeff Kirsher 	}
2252adfc5217SJeff Kirsher }
2253adfc5217SJeff Kirsher 
2254adfc5217SJeff Kirsher static int bnx2x_run_loopback(struct bnx2x *bp, int loopback_mode)
2255adfc5217SJeff Kirsher {
2256adfc5217SJeff Kirsher 	unsigned int pkt_size, num_pkts, i;
2257adfc5217SJeff Kirsher 	struct sk_buff *skb;
2258adfc5217SJeff Kirsher 	unsigned char *packet;
2259adfc5217SJeff Kirsher 	struct bnx2x_fastpath *fp_rx = &bp->fp[0];
2260adfc5217SJeff Kirsher 	struct bnx2x_fastpath *fp_tx = &bp->fp[0];
226165565884SMerav Sicron 	struct bnx2x_fp_txdata *txdata = fp_tx->txdata_ptr[0];
2262adfc5217SJeff Kirsher 	u16 tx_start_idx, tx_idx;
2263adfc5217SJeff Kirsher 	u16 rx_start_idx, rx_idx;
2264b0700b1eSDmitry Kravkov 	u16 pkt_prod, bd_prod;
2265adfc5217SJeff Kirsher 	struct sw_tx_bd *tx_buf;
2266adfc5217SJeff Kirsher 	struct eth_tx_start_bd *tx_start_bd;
2267adfc5217SJeff Kirsher 	dma_addr_t mapping;
2268adfc5217SJeff Kirsher 	union eth_rx_cqe *cqe;
2269adfc5217SJeff Kirsher 	u8 cqe_fp_flags, cqe_fp_type;
2270adfc5217SJeff Kirsher 	struct sw_rx_bd *rx_buf;
2271adfc5217SJeff Kirsher 	u16 len;
2272adfc5217SJeff Kirsher 	int rc = -ENODEV;
2273e52fcb24SEric Dumazet 	u8 *data;
22748970b2e4SMerav Sicron 	struct netdev_queue *txq = netdev_get_tx_queue(bp->dev,
22758970b2e4SMerav Sicron 						       txdata->txq_index);
2276adfc5217SJeff Kirsher 
2277adfc5217SJeff Kirsher 	/* check the loopback mode */
2278adfc5217SJeff Kirsher 	switch (loopback_mode) {
2279adfc5217SJeff Kirsher 	case BNX2X_PHY_LOOPBACK:
22808970b2e4SMerav Sicron 		if (bp->link_params.loopback_mode != LOOPBACK_XGXS) {
22818970b2e4SMerav Sicron 			DP(BNX2X_MSG_ETHTOOL, "PHY loopback not supported\n");
2282adfc5217SJeff Kirsher 			return -EINVAL;
22838970b2e4SMerav Sicron 		}
2284adfc5217SJeff Kirsher 		break;
2285adfc5217SJeff Kirsher 	case BNX2X_MAC_LOOPBACK:
228632911333SYaniv Rosner 		if (CHIP_IS_E3(bp)) {
228732911333SYaniv Rosner 			int cfg_idx = bnx2x_get_link_cfg_idx(bp);
228832911333SYaniv Rosner 			if (bp->port.supported[cfg_idx] &
228932911333SYaniv Rosner 			    (SUPPORTED_10000baseT_Full |
229032911333SYaniv Rosner 			     SUPPORTED_20000baseMLD2_Full |
229132911333SYaniv Rosner 			     SUPPORTED_20000baseKR2_Full))
229232911333SYaniv Rosner 				bp->link_params.loopback_mode = LOOPBACK_XMAC;
229332911333SYaniv Rosner 			else
229432911333SYaniv Rosner 				bp->link_params.loopback_mode = LOOPBACK_UMAC;
229532911333SYaniv Rosner 		} else
229632911333SYaniv Rosner 			bp->link_params.loopback_mode = LOOPBACK_BMAC;
229732911333SYaniv Rosner 
2298adfc5217SJeff Kirsher 		bnx2x_phy_init(&bp->link_params, &bp->link_vars);
2299adfc5217SJeff Kirsher 		break;
23008970b2e4SMerav Sicron 	case BNX2X_EXT_LOOPBACK:
23018970b2e4SMerav Sicron 		if (bp->link_params.loopback_mode != LOOPBACK_EXT) {
23028970b2e4SMerav Sicron 			DP(BNX2X_MSG_ETHTOOL,
23038970b2e4SMerav Sicron 			   "Can't configure external loopback\n");
23048970b2e4SMerav Sicron 			return -EINVAL;
23058970b2e4SMerav Sicron 		}
23068970b2e4SMerav Sicron 		break;
2307adfc5217SJeff Kirsher 	default:
230851c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL, "Command parameters not supported\n");
2309adfc5217SJeff Kirsher 		return -EINVAL;
2310adfc5217SJeff Kirsher 	}
2311adfc5217SJeff Kirsher 
2312adfc5217SJeff Kirsher 	/* prepare the loopback packet */
2313adfc5217SJeff Kirsher 	pkt_size = (((bp->dev->mtu < ETH_MAX_PACKET_SIZE) ?
2314adfc5217SJeff Kirsher 		     bp->dev->mtu : ETH_MAX_PACKET_SIZE) + ETH_HLEN);
2315adfc5217SJeff Kirsher 	skb = netdev_alloc_skb(bp->dev, fp_rx->rx_buf_size);
2316adfc5217SJeff Kirsher 	if (!skb) {
231751c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL, "Can't allocate skb\n");
2318adfc5217SJeff Kirsher 		rc = -ENOMEM;
2319adfc5217SJeff Kirsher 		goto test_loopback_exit;
2320adfc5217SJeff Kirsher 	}
2321adfc5217SJeff Kirsher 	packet = skb_put(skb, pkt_size);
2322adfc5217SJeff Kirsher 	memcpy(packet, bp->dev->dev_addr, ETH_ALEN);
2323adfc5217SJeff Kirsher 	memset(packet + ETH_ALEN, 0, ETH_ALEN);
2324adfc5217SJeff Kirsher 	memset(packet + 2*ETH_ALEN, 0x77, (ETH_HLEN - 2*ETH_ALEN));
2325adfc5217SJeff Kirsher 	for (i = ETH_HLEN; i < pkt_size; i++)
2326adfc5217SJeff Kirsher 		packet[i] = (unsigned char) (i & 0xff);
2327adfc5217SJeff Kirsher 	mapping = dma_map_single(&bp->pdev->dev, skb->data,
2328adfc5217SJeff Kirsher 				 skb_headlen(skb), DMA_TO_DEVICE);
2329adfc5217SJeff Kirsher 	if (unlikely(dma_mapping_error(&bp->pdev->dev, mapping))) {
2330adfc5217SJeff Kirsher 		rc = -ENOMEM;
2331adfc5217SJeff Kirsher 		dev_kfree_skb(skb);
233251c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL, "Unable to map SKB\n");
2333adfc5217SJeff Kirsher 		goto test_loopback_exit;
2334adfc5217SJeff Kirsher 	}
2335adfc5217SJeff Kirsher 
2336adfc5217SJeff Kirsher 	/* send the loopback packet */
2337adfc5217SJeff Kirsher 	num_pkts = 0;
2338adfc5217SJeff Kirsher 	tx_start_idx = le16_to_cpu(*txdata->tx_cons_sb);
2339adfc5217SJeff Kirsher 	rx_start_idx = le16_to_cpu(*fp_rx->rx_cons_sb);
2340adfc5217SJeff Kirsher 
234173dbb5e1SDmitry Kravkov 	netdev_tx_sent_queue(txq, skb->len);
234273dbb5e1SDmitry Kravkov 
2343adfc5217SJeff Kirsher 	pkt_prod = txdata->tx_pkt_prod++;
2344adfc5217SJeff Kirsher 	tx_buf = &txdata->tx_buf_ring[TX_BD(pkt_prod)];
2345adfc5217SJeff Kirsher 	tx_buf->first_bd = txdata->tx_bd_prod;
2346adfc5217SJeff Kirsher 	tx_buf->skb = skb;
2347adfc5217SJeff Kirsher 	tx_buf->flags = 0;
2348adfc5217SJeff Kirsher 
2349adfc5217SJeff Kirsher 	bd_prod = TX_BD(txdata->tx_bd_prod);
2350adfc5217SJeff Kirsher 	tx_start_bd = &txdata->tx_desc_ring[bd_prod].start_bd;
2351adfc5217SJeff Kirsher 	tx_start_bd->addr_hi = cpu_to_le32(U64_HI(mapping));
2352adfc5217SJeff Kirsher 	tx_start_bd->addr_lo = cpu_to_le32(U64_LO(mapping));
2353adfc5217SJeff Kirsher 	tx_start_bd->nbd = cpu_to_le16(2); /* start + pbd */
2354adfc5217SJeff Kirsher 	tx_start_bd->nbytes = cpu_to_le16(skb_headlen(skb));
2355adfc5217SJeff Kirsher 	tx_start_bd->vlan_or_ethertype = cpu_to_le16(pkt_prod);
2356adfc5217SJeff Kirsher 	tx_start_bd->bd_flags.as_bitfield = ETH_TX_BD_FLAGS_START_BD;
2357adfc5217SJeff Kirsher 	SET_FLAG(tx_start_bd->general_data,
2358adfc5217SJeff Kirsher 		 ETH_TX_START_BD_HDR_NBDS,
2359adfc5217SJeff Kirsher 		 1);
236096bed4b9SYuval Mintz 	SET_FLAG(tx_start_bd->general_data,
236196bed4b9SYuval Mintz 		 ETH_TX_START_BD_PARSE_NBDS,
236296bed4b9SYuval Mintz 		 0);
2363adfc5217SJeff Kirsher 
2364adfc5217SJeff Kirsher 	/* turn on parsing and get a BD */
2365adfc5217SJeff Kirsher 	bd_prod = TX_BD(NEXT_TX_IDX(bd_prod));
2366adfc5217SJeff Kirsher 
236796bed4b9SYuval Mintz 	if (CHIP_IS_E1x(bp)) {
236896bed4b9SYuval Mintz 		u16 global_data = 0;
236996bed4b9SYuval Mintz 		struct eth_tx_parse_bd_e1x  *pbd_e1x =
237096bed4b9SYuval Mintz 			&txdata->tx_desc_ring[bd_prod].parse_bd_e1x;
2371adfc5217SJeff Kirsher 		memset(pbd_e1x, 0, sizeof(struct eth_tx_parse_bd_e1x));
237296bed4b9SYuval Mintz 		SET_FLAG(global_data,
237396bed4b9SYuval Mintz 			 ETH_TX_PARSE_BD_E1X_ETH_ADDR_TYPE, UNICAST_ADDRESS);
237496bed4b9SYuval Mintz 		pbd_e1x->global_data = cpu_to_le16(global_data);
237596bed4b9SYuval Mintz 	} else {
237696bed4b9SYuval Mintz 		u32 parsing_data = 0;
237796bed4b9SYuval Mintz 		struct eth_tx_parse_bd_e2  *pbd_e2 =
237896bed4b9SYuval Mintz 			&txdata->tx_desc_ring[bd_prod].parse_bd_e2;
237996bed4b9SYuval Mintz 		memset(pbd_e2, 0, sizeof(struct eth_tx_parse_bd_e2));
238096bed4b9SYuval Mintz 		SET_FLAG(parsing_data,
238196bed4b9SYuval Mintz 			 ETH_TX_PARSE_BD_E2_ETH_ADDR_TYPE, UNICAST_ADDRESS);
238296bed4b9SYuval Mintz 		pbd_e2->parsing_data = cpu_to_le32(parsing_data);
238396bed4b9SYuval Mintz 	}
2384adfc5217SJeff Kirsher 	wmb();
2385adfc5217SJeff Kirsher 
2386adfc5217SJeff Kirsher 	txdata->tx_db.data.prod += 2;
2387adfc5217SJeff Kirsher 	barrier();
2388adfc5217SJeff Kirsher 	DOORBELL(bp, txdata->cid, txdata->tx_db.raw);
2389adfc5217SJeff Kirsher 
2390adfc5217SJeff Kirsher 	mmiowb();
2391adfc5217SJeff Kirsher 	barrier();
2392adfc5217SJeff Kirsher 
2393adfc5217SJeff Kirsher 	num_pkts++;
2394adfc5217SJeff Kirsher 	txdata->tx_bd_prod += 2; /* start + pbd */
2395adfc5217SJeff Kirsher 
2396adfc5217SJeff Kirsher 	udelay(100);
2397adfc5217SJeff Kirsher 
2398adfc5217SJeff Kirsher 	tx_idx = le16_to_cpu(*txdata->tx_cons_sb);
2399adfc5217SJeff Kirsher 	if (tx_idx != tx_start_idx + num_pkts)
2400adfc5217SJeff Kirsher 		goto test_loopback_exit;
2401adfc5217SJeff Kirsher 
2402adfc5217SJeff Kirsher 	/* Unlike HC IGU won't generate an interrupt for status block
2403adfc5217SJeff Kirsher 	 * updates that have been performed while interrupts were
2404adfc5217SJeff Kirsher 	 * disabled.
2405adfc5217SJeff Kirsher 	 */
2406adfc5217SJeff Kirsher 	if (bp->common.int_block == INT_BLOCK_IGU) {
2407adfc5217SJeff Kirsher 		/* Disable local BHes to prevent a dead-lock situation between
2408adfc5217SJeff Kirsher 		 * sch_direct_xmit() and bnx2x_run_loopback() (calling
2409adfc5217SJeff Kirsher 		 * bnx2x_tx_int()), as both are taking netif_tx_lock().
2410adfc5217SJeff Kirsher 		 */
2411adfc5217SJeff Kirsher 		local_bh_disable();
2412adfc5217SJeff Kirsher 		bnx2x_tx_int(bp, txdata);
2413adfc5217SJeff Kirsher 		local_bh_enable();
2414adfc5217SJeff Kirsher 	}
2415adfc5217SJeff Kirsher 
2416adfc5217SJeff Kirsher 	rx_idx = le16_to_cpu(*fp_rx->rx_cons_sb);
2417adfc5217SJeff Kirsher 	if (rx_idx != rx_start_idx + num_pkts)
2418adfc5217SJeff Kirsher 		goto test_loopback_exit;
2419adfc5217SJeff Kirsher 
2420b0700b1eSDmitry Kravkov 	cqe = &fp_rx->rx_comp_ring[RCQ_BD(fp_rx->rx_comp_cons)];
2421adfc5217SJeff Kirsher 	cqe_fp_flags = cqe->fast_path_cqe.type_error_flags;
2422adfc5217SJeff Kirsher 	cqe_fp_type = cqe_fp_flags & ETH_FAST_PATH_RX_CQE_TYPE;
2423adfc5217SJeff Kirsher 	if (!CQE_TYPE_FAST(cqe_fp_type) || (cqe_fp_flags & ETH_RX_ERROR_FALGS))
2424adfc5217SJeff Kirsher 		goto test_loopback_rx_exit;
2425adfc5217SJeff Kirsher 
2426621b4d66SDmitry Kravkov 	len = le16_to_cpu(cqe->fast_path_cqe.pkt_len_or_gro_seg_len);
2427adfc5217SJeff Kirsher 	if (len != pkt_size)
2428adfc5217SJeff Kirsher 		goto test_loopback_rx_exit;
2429adfc5217SJeff Kirsher 
2430adfc5217SJeff Kirsher 	rx_buf = &fp_rx->rx_buf_ring[RX_BD(fp_rx->rx_bd_cons)];
2431adfc5217SJeff Kirsher 	dma_sync_single_for_cpu(&bp->pdev->dev,
2432adfc5217SJeff Kirsher 				   dma_unmap_addr(rx_buf, mapping),
2433adfc5217SJeff Kirsher 				   fp_rx->rx_buf_size, DMA_FROM_DEVICE);
2434e52fcb24SEric Dumazet 	data = rx_buf->data + NET_SKB_PAD + cqe->fast_path_cqe.placement_offset;
2435adfc5217SJeff Kirsher 	for (i = ETH_HLEN; i < pkt_size; i++)
2436e52fcb24SEric Dumazet 		if (*(data + i) != (unsigned char) (i & 0xff))
2437adfc5217SJeff Kirsher 			goto test_loopback_rx_exit;
2438adfc5217SJeff Kirsher 
2439adfc5217SJeff Kirsher 	rc = 0;
2440adfc5217SJeff Kirsher 
2441adfc5217SJeff Kirsher test_loopback_rx_exit:
2442adfc5217SJeff Kirsher 
2443adfc5217SJeff Kirsher 	fp_rx->rx_bd_cons = NEXT_RX_IDX(fp_rx->rx_bd_cons);
2444adfc5217SJeff Kirsher 	fp_rx->rx_bd_prod = NEXT_RX_IDX(fp_rx->rx_bd_prod);
2445adfc5217SJeff Kirsher 	fp_rx->rx_comp_cons = NEXT_RCQ_IDX(fp_rx->rx_comp_cons);
2446adfc5217SJeff Kirsher 	fp_rx->rx_comp_prod = NEXT_RCQ_IDX(fp_rx->rx_comp_prod);
2447adfc5217SJeff Kirsher 
2448adfc5217SJeff Kirsher 	/* Update producers */
2449adfc5217SJeff Kirsher 	bnx2x_update_rx_prod(bp, fp_rx, fp_rx->rx_bd_prod, fp_rx->rx_comp_prod,
2450adfc5217SJeff Kirsher 			     fp_rx->rx_sge_prod);
2451adfc5217SJeff Kirsher 
2452adfc5217SJeff Kirsher test_loopback_exit:
2453adfc5217SJeff Kirsher 	bp->link_params.loopback_mode = LOOPBACK_NONE;
2454adfc5217SJeff Kirsher 
2455adfc5217SJeff Kirsher 	return rc;
2456adfc5217SJeff Kirsher }
2457adfc5217SJeff Kirsher 
2458adfc5217SJeff Kirsher static int bnx2x_test_loopback(struct bnx2x *bp)
2459adfc5217SJeff Kirsher {
2460adfc5217SJeff Kirsher 	int rc = 0, res;
2461adfc5217SJeff Kirsher 
2462adfc5217SJeff Kirsher 	if (BP_NOMCP(bp))
2463adfc5217SJeff Kirsher 		return rc;
2464adfc5217SJeff Kirsher 
2465adfc5217SJeff Kirsher 	if (!netif_running(bp->dev))
2466adfc5217SJeff Kirsher 		return BNX2X_LOOPBACK_FAILED;
2467adfc5217SJeff Kirsher 
2468adfc5217SJeff Kirsher 	bnx2x_netif_stop(bp, 1);
2469adfc5217SJeff Kirsher 	bnx2x_acquire_phy_lock(bp);
2470adfc5217SJeff Kirsher 
2471adfc5217SJeff Kirsher 	res = bnx2x_run_loopback(bp, BNX2X_PHY_LOOPBACK);
2472adfc5217SJeff Kirsher 	if (res) {
247351c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL, "  PHY loopback failed  (res %d)\n", res);
2474adfc5217SJeff Kirsher 		rc |= BNX2X_PHY_LOOPBACK_FAILED;
2475adfc5217SJeff Kirsher 	}
2476adfc5217SJeff Kirsher 
2477adfc5217SJeff Kirsher 	res = bnx2x_run_loopback(bp, BNX2X_MAC_LOOPBACK);
2478adfc5217SJeff Kirsher 	if (res) {
247951c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL, "  MAC loopback failed  (res %d)\n", res);
2480adfc5217SJeff Kirsher 		rc |= BNX2X_MAC_LOOPBACK_FAILED;
2481adfc5217SJeff Kirsher 	}
2482adfc5217SJeff Kirsher 
2483adfc5217SJeff Kirsher 	bnx2x_release_phy_lock(bp);
2484adfc5217SJeff Kirsher 	bnx2x_netif_start(bp);
2485adfc5217SJeff Kirsher 
2486adfc5217SJeff Kirsher 	return rc;
2487adfc5217SJeff Kirsher }
2488adfc5217SJeff Kirsher 
24898970b2e4SMerav Sicron static int bnx2x_test_ext_loopback(struct bnx2x *bp)
24908970b2e4SMerav Sicron {
24918970b2e4SMerav Sicron 	int rc;
24928970b2e4SMerav Sicron 	u8 is_serdes =
24938970b2e4SMerav Sicron 		(bp->link_vars.link_status & LINK_STATUS_SERDES_LINK) > 0;
24948970b2e4SMerav Sicron 
24958970b2e4SMerav Sicron 	if (BP_NOMCP(bp))
24968970b2e4SMerav Sicron 		return -ENODEV;
24978970b2e4SMerav Sicron 
24988970b2e4SMerav Sicron 	if (!netif_running(bp->dev))
24998970b2e4SMerav Sicron 		return BNX2X_EXT_LOOPBACK_FAILED;
25008970b2e4SMerav Sicron 
25015d07d868SYuval Mintz 	bnx2x_nic_unload(bp, UNLOAD_NORMAL, false);
25028970b2e4SMerav Sicron 	rc = bnx2x_nic_load(bp, LOAD_LOOPBACK_EXT);
25038970b2e4SMerav Sicron 	if (rc) {
25048970b2e4SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL,
25058970b2e4SMerav Sicron 		   "Can't perform self-test, nic_load (for external lb) failed\n");
25068970b2e4SMerav Sicron 		return -ENODEV;
25078970b2e4SMerav Sicron 	}
25088970b2e4SMerav Sicron 	bnx2x_wait_for_link(bp, 1, is_serdes);
25098970b2e4SMerav Sicron 
25108970b2e4SMerav Sicron 	bnx2x_netif_stop(bp, 1);
25118970b2e4SMerav Sicron 
25128970b2e4SMerav Sicron 	rc = bnx2x_run_loopback(bp, BNX2X_EXT_LOOPBACK);
25138970b2e4SMerav Sicron 	if (rc)
25148970b2e4SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL, "EXT loopback failed  (res %d)\n", rc);
25158970b2e4SMerav Sicron 
25168970b2e4SMerav Sicron 	bnx2x_netif_start(bp);
25178970b2e4SMerav Sicron 
25188970b2e4SMerav Sicron 	return rc;
25198970b2e4SMerav Sicron }
25208970b2e4SMerav Sicron 
2521adfc5217SJeff Kirsher #define CRC32_RESIDUAL			0xdebb20e3
2522adfc5217SJeff Kirsher 
2523adfc5217SJeff Kirsher static int bnx2x_test_nvram(struct bnx2x *bp)
2524adfc5217SJeff Kirsher {
2525adfc5217SJeff Kirsher 	static const struct {
2526adfc5217SJeff Kirsher 		int offset;
2527adfc5217SJeff Kirsher 		int size;
2528adfc5217SJeff Kirsher 	} nvram_tbl[] = {
2529adfc5217SJeff Kirsher 		{     0,  0x14 }, /* bootstrap */
2530adfc5217SJeff Kirsher 		{  0x14,  0xec }, /* dir */
2531adfc5217SJeff Kirsher 		{ 0x100, 0x350 }, /* manuf_info */
2532adfc5217SJeff Kirsher 		{ 0x450,  0xf0 }, /* feature_info */
2533adfc5217SJeff Kirsher 		{ 0x640,  0x64 }, /* upgrade_key_info */
2534adfc5217SJeff Kirsher 		{ 0x708,  0x70 }, /* manuf_key_info */
2535adfc5217SJeff Kirsher 		{     0,     0 }
2536adfc5217SJeff Kirsher 	};
2537afa13b4bSMintz Yuval 	__be32 *buf;
2538afa13b4bSMintz Yuval 	u8 *data;
2539adfc5217SJeff Kirsher 	int i, rc;
2540adfc5217SJeff Kirsher 	u32 magic, crc;
2541adfc5217SJeff Kirsher 
2542adfc5217SJeff Kirsher 	if (BP_NOMCP(bp))
2543adfc5217SJeff Kirsher 		return 0;
2544adfc5217SJeff Kirsher 
2545afa13b4bSMintz Yuval 	buf = kmalloc(0x350, GFP_KERNEL);
2546afa13b4bSMintz Yuval 	if (!buf) {
254751c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL | BNX2X_MSG_NVM, "kmalloc failed\n");
2548afa13b4bSMintz Yuval 		rc = -ENOMEM;
2549afa13b4bSMintz Yuval 		goto test_nvram_exit;
2550afa13b4bSMintz Yuval 	}
2551afa13b4bSMintz Yuval 	data = (u8 *)buf;
2552afa13b4bSMintz Yuval 
2553adfc5217SJeff Kirsher 	rc = bnx2x_nvram_read(bp, 0, data, 4);
2554adfc5217SJeff Kirsher 	if (rc) {
255551c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL | BNX2X_MSG_NVM,
255651c1a580SMerav Sicron 		   "magic value read (rc %d)\n", rc);
2557adfc5217SJeff Kirsher 		goto test_nvram_exit;
2558adfc5217SJeff Kirsher 	}
2559adfc5217SJeff Kirsher 
2560adfc5217SJeff Kirsher 	magic = be32_to_cpu(buf[0]);
2561adfc5217SJeff Kirsher 	if (magic != 0x669955aa) {
256251c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL | BNX2X_MSG_NVM,
256351c1a580SMerav Sicron 		   "wrong magic value (0x%08x)\n", magic);
2564adfc5217SJeff Kirsher 		rc = -ENODEV;
2565adfc5217SJeff Kirsher 		goto test_nvram_exit;
2566adfc5217SJeff Kirsher 	}
2567adfc5217SJeff Kirsher 
2568adfc5217SJeff Kirsher 	for (i = 0; nvram_tbl[i].size; i++) {
2569adfc5217SJeff Kirsher 
2570adfc5217SJeff Kirsher 		rc = bnx2x_nvram_read(bp, nvram_tbl[i].offset, data,
2571adfc5217SJeff Kirsher 				      nvram_tbl[i].size);
2572adfc5217SJeff Kirsher 		if (rc) {
257351c1a580SMerav Sicron 			DP(BNX2X_MSG_ETHTOOL | BNX2X_MSG_NVM,
2574adfc5217SJeff Kirsher 			   "nvram_tbl[%d] read data (rc %d)\n", i, rc);
2575adfc5217SJeff Kirsher 			goto test_nvram_exit;
2576adfc5217SJeff Kirsher 		}
2577adfc5217SJeff Kirsher 
2578adfc5217SJeff Kirsher 		crc = ether_crc_le(nvram_tbl[i].size, data);
2579adfc5217SJeff Kirsher 		if (crc != CRC32_RESIDUAL) {
258051c1a580SMerav Sicron 			DP(BNX2X_MSG_ETHTOOL | BNX2X_MSG_NVM,
258151c1a580SMerav Sicron 			   "nvram_tbl[%d] wrong crc value (0x%08x)\n", i, crc);
2582adfc5217SJeff Kirsher 			rc = -ENODEV;
2583adfc5217SJeff Kirsher 			goto test_nvram_exit;
2584adfc5217SJeff Kirsher 		}
2585adfc5217SJeff Kirsher 	}
2586adfc5217SJeff Kirsher 
2587adfc5217SJeff Kirsher test_nvram_exit:
2588afa13b4bSMintz Yuval 	kfree(buf);
2589adfc5217SJeff Kirsher 	return rc;
2590adfc5217SJeff Kirsher }
2591adfc5217SJeff Kirsher 
2592adfc5217SJeff Kirsher /* Send an EMPTY ramrod on the first queue */
2593adfc5217SJeff Kirsher static int bnx2x_test_intr(struct bnx2x *bp)
2594adfc5217SJeff Kirsher {
25953b603066SYuval Mintz 	struct bnx2x_queue_state_params params = {NULL};
2596adfc5217SJeff Kirsher 
259751c1a580SMerav Sicron 	if (!netif_running(bp->dev)) {
259851c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL | BNX2X_MSG_NVM,
259951c1a580SMerav Sicron 		   "cannot access eeprom when the interface is down\n");
2600adfc5217SJeff Kirsher 		return -ENODEV;
260151c1a580SMerav Sicron 	}
2602adfc5217SJeff Kirsher 
260315192a8cSBarak Witkowski 	params.q_obj = &bp->sp_objs->q_obj;
2604adfc5217SJeff Kirsher 	params.cmd = BNX2X_Q_CMD_EMPTY;
2605adfc5217SJeff Kirsher 
2606adfc5217SJeff Kirsher 	__set_bit(RAMROD_COMP_WAIT, &params.ramrod_flags);
2607adfc5217SJeff Kirsher 
2608adfc5217SJeff Kirsher 	return bnx2x_queue_state_change(bp, &params);
2609adfc5217SJeff Kirsher }
2610adfc5217SJeff Kirsher 
2611adfc5217SJeff Kirsher static void bnx2x_self_test(struct net_device *dev,
2612adfc5217SJeff Kirsher 			    struct ethtool_test *etest, u64 *buf)
2613adfc5217SJeff Kirsher {
2614adfc5217SJeff Kirsher 	struct bnx2x *bp = netdev_priv(dev);
2615a336ca7cSYaniv Rosner 	u8 is_serdes, link_up;
2616a336ca7cSYaniv Rosner 	int rc, cnt = 0;
2617cf2c1df6SMerav Sicron 
2618adfc5217SJeff Kirsher 	if (bp->recovery_state != BNX2X_RECOVERY_DONE) {
261951c1a580SMerav Sicron 		netdev_err(bp->dev,
262051c1a580SMerav Sicron 			   "Handling parity error recovery. Try again later\n");
2621adfc5217SJeff Kirsher 		etest->flags |= ETH_TEST_FL_FAILED;
2622adfc5217SJeff Kirsher 		return;
2623adfc5217SJeff Kirsher 	}
26248970b2e4SMerav Sicron 	DP(BNX2X_MSG_ETHTOOL,
26258970b2e4SMerav Sicron 	   "Self-test command parameters: offline = %d, external_lb = %d\n",
26268970b2e4SMerav Sicron 	   (etest->flags & ETH_TEST_FL_OFFLINE),
26278970b2e4SMerav Sicron 	   (etest->flags & ETH_TEST_FL_EXTERNAL_LB)>>2);
2628adfc5217SJeff Kirsher 
2629cf2c1df6SMerav Sicron 	memset(buf, 0, sizeof(u64) * BNX2X_NUM_TESTS(bp));
2630adfc5217SJeff Kirsher 
2631cf2c1df6SMerav Sicron 	if (!netif_running(dev)) {
2632cf2c1df6SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL,
2633cf2c1df6SMerav Sicron 		   "Can't perform self-test when interface is down\n");
2634adfc5217SJeff Kirsher 		return;
2635cf2c1df6SMerav Sicron 	}
2636adfc5217SJeff Kirsher 
2637adfc5217SJeff Kirsher 	is_serdes = (bp->link_vars.link_status & LINK_STATUS_SERDES_LINK) > 0;
2638a336ca7cSYaniv Rosner 	link_up = bp->link_vars.link_up;
2639cf2c1df6SMerav Sicron 	/* offline tests are not supported in MF mode */
2640cf2c1df6SMerav Sicron 	if ((etest->flags & ETH_TEST_FL_OFFLINE) && !IS_MF(bp)) {
2641adfc5217SJeff Kirsher 		int port = BP_PORT(bp);
2642adfc5217SJeff Kirsher 		u32 val;
2643adfc5217SJeff Kirsher 
2644adfc5217SJeff Kirsher 		/* save current value of input enable for TX port IF */
2645adfc5217SJeff Kirsher 		val = REG_RD(bp, NIG_REG_EGRESS_UMP0_IN_EN + port*4);
2646adfc5217SJeff Kirsher 		/* disable input for TX port IF */
2647adfc5217SJeff Kirsher 		REG_WR(bp, NIG_REG_EGRESS_UMP0_IN_EN + port*4, 0);
2648adfc5217SJeff Kirsher 
26495d07d868SYuval Mintz 		bnx2x_nic_unload(bp, UNLOAD_NORMAL, false);
2650cf2c1df6SMerav Sicron 		rc = bnx2x_nic_load(bp, LOAD_DIAG);
2651cf2c1df6SMerav Sicron 		if (rc) {
2652cf2c1df6SMerav Sicron 			etest->flags |= ETH_TEST_FL_FAILED;
2653cf2c1df6SMerav Sicron 			DP(BNX2X_MSG_ETHTOOL,
2654cf2c1df6SMerav Sicron 			   "Can't perform self-test, nic_load (for offline) failed\n");
2655cf2c1df6SMerav Sicron 			return;
2656cf2c1df6SMerav Sicron 		}
2657cf2c1df6SMerav Sicron 
2658adfc5217SJeff Kirsher 		/* wait until link state is restored */
2659adfc5217SJeff Kirsher 		bnx2x_wait_for_link(bp, 1, is_serdes);
2660adfc5217SJeff Kirsher 
2661adfc5217SJeff Kirsher 		if (bnx2x_test_registers(bp) != 0) {
2662adfc5217SJeff Kirsher 			buf[0] = 1;
2663adfc5217SJeff Kirsher 			etest->flags |= ETH_TEST_FL_FAILED;
2664adfc5217SJeff Kirsher 		}
2665adfc5217SJeff Kirsher 		if (bnx2x_test_memory(bp) != 0) {
2666adfc5217SJeff Kirsher 			buf[1] = 1;
2667adfc5217SJeff Kirsher 			etest->flags |= ETH_TEST_FL_FAILED;
2668adfc5217SJeff Kirsher 		}
2669adfc5217SJeff Kirsher 
26708970b2e4SMerav Sicron 		buf[2] = bnx2x_test_loopback(bp); /* internal LB */
2671adfc5217SJeff Kirsher 		if (buf[2] != 0)
2672adfc5217SJeff Kirsher 			etest->flags |= ETH_TEST_FL_FAILED;
2673adfc5217SJeff Kirsher 
26748970b2e4SMerav Sicron 		if (etest->flags & ETH_TEST_FL_EXTERNAL_LB) {
26758970b2e4SMerav Sicron 			buf[3] = bnx2x_test_ext_loopback(bp); /* external LB */
26768970b2e4SMerav Sicron 			if (buf[3] != 0)
26778970b2e4SMerav Sicron 				etest->flags |= ETH_TEST_FL_FAILED;
26788970b2e4SMerav Sicron 			etest->flags |= ETH_TEST_FL_EXTERNAL_LB_DONE;
26798970b2e4SMerav Sicron 		}
26808970b2e4SMerav Sicron 
26815d07d868SYuval Mintz 		bnx2x_nic_unload(bp, UNLOAD_NORMAL, false);
2682adfc5217SJeff Kirsher 
2683adfc5217SJeff Kirsher 		/* restore input for TX port IF */
2684adfc5217SJeff Kirsher 		REG_WR(bp, NIG_REG_EGRESS_UMP0_IN_EN + port*4, val);
2685cf2c1df6SMerav Sicron 		rc = bnx2x_nic_load(bp, LOAD_NORMAL);
2686cf2c1df6SMerav Sicron 		if (rc) {
2687cf2c1df6SMerav Sicron 			etest->flags |= ETH_TEST_FL_FAILED;
2688cf2c1df6SMerav Sicron 			DP(BNX2X_MSG_ETHTOOL,
2689cf2c1df6SMerav Sicron 			   "Can't perform self-test, nic_load (for online) failed\n");
2690cf2c1df6SMerav Sicron 			return;
2691cf2c1df6SMerav Sicron 		}
2692adfc5217SJeff Kirsher 		/* wait until link state is restored */
2693adfc5217SJeff Kirsher 		bnx2x_wait_for_link(bp, link_up, is_serdes);
2694adfc5217SJeff Kirsher 	}
2695adfc5217SJeff Kirsher 	if (bnx2x_test_nvram(bp) != 0) {
2696cf2c1df6SMerav Sicron 		if (!IS_MF(bp))
26978970b2e4SMerav Sicron 			buf[4] = 1;
2698cf2c1df6SMerav Sicron 		else
2699cf2c1df6SMerav Sicron 			buf[0] = 1;
2700adfc5217SJeff Kirsher 		etest->flags |= ETH_TEST_FL_FAILED;
2701adfc5217SJeff Kirsher 	}
2702adfc5217SJeff Kirsher 	if (bnx2x_test_intr(bp) != 0) {
2703cf2c1df6SMerav Sicron 		if (!IS_MF(bp))
27048970b2e4SMerav Sicron 			buf[5] = 1;
2705cf2c1df6SMerav Sicron 		else
2706cf2c1df6SMerav Sicron 			buf[1] = 1;
2707adfc5217SJeff Kirsher 		etest->flags |= ETH_TEST_FL_FAILED;
2708adfc5217SJeff Kirsher 	}
2709adfc5217SJeff Kirsher 
2710a336ca7cSYaniv Rosner 	if (link_up) {
2711a336ca7cSYaniv Rosner 		cnt = 100;
2712a336ca7cSYaniv Rosner 		while (bnx2x_link_test(bp, is_serdes) && --cnt)
2713a336ca7cSYaniv Rosner 			msleep(20);
2714a336ca7cSYaniv Rosner 	}
2715a336ca7cSYaniv Rosner 
2716a336ca7cSYaniv Rosner 	if (!cnt) {
2717cf2c1df6SMerav Sicron 		if (!IS_MF(bp))
27188970b2e4SMerav Sicron 			buf[6] = 1;
2719cf2c1df6SMerav Sicron 		else
2720cf2c1df6SMerav Sicron 			buf[2] = 1;
2721adfc5217SJeff Kirsher 		etest->flags |= ETH_TEST_FL_FAILED;
2722adfc5217SJeff Kirsher 	}
2723adfc5217SJeff Kirsher 
2724adfc5217SJeff Kirsher #ifdef BNX2X_EXTRA_DEBUG
2725adfc5217SJeff Kirsher 	bnx2x_panic_dump(bp);
2726adfc5217SJeff Kirsher #endif
2727adfc5217SJeff Kirsher }
2728adfc5217SJeff Kirsher 
2729adfc5217SJeff Kirsher #define IS_PORT_STAT(i) \
2730adfc5217SJeff Kirsher 	((bnx2x_stats_arr[i].flags & STATS_FLAGS_BOTH) == STATS_FLAGS_PORT)
2731adfc5217SJeff Kirsher #define IS_FUNC_STAT(i)		(bnx2x_stats_arr[i].flags & STATS_FLAGS_FUNC)
2732adfc5217SJeff Kirsher #define IS_MF_MODE_STAT(bp) \
2733adfc5217SJeff Kirsher 			(IS_MF(bp) && !(bp->msg_enable & BNX2X_MSG_STATS))
2734adfc5217SJeff Kirsher 
2735adfc5217SJeff Kirsher /* ethtool statistics are displayed for all regular ethernet queues and the
2736adfc5217SJeff Kirsher  * fcoe L2 queue if not disabled
2737adfc5217SJeff Kirsher  */
27381191cb83SEric Dumazet static int bnx2x_num_stat_queues(struct bnx2x *bp)
2739adfc5217SJeff Kirsher {
2740adfc5217SJeff Kirsher 	return BNX2X_NUM_ETH_QUEUES(bp);
2741adfc5217SJeff Kirsher }
2742adfc5217SJeff Kirsher 
2743adfc5217SJeff Kirsher static int bnx2x_get_sset_count(struct net_device *dev, int stringset)
2744adfc5217SJeff Kirsher {
2745adfc5217SJeff Kirsher 	struct bnx2x *bp = netdev_priv(dev);
2746adfc5217SJeff Kirsher 	int i, num_stats;
2747adfc5217SJeff Kirsher 
2748adfc5217SJeff Kirsher 	switch (stringset) {
2749adfc5217SJeff Kirsher 	case ETH_SS_STATS:
2750adfc5217SJeff Kirsher 		if (is_multi(bp)) {
2751adfc5217SJeff Kirsher 			num_stats = bnx2x_num_stat_queues(bp) *
2752adfc5217SJeff Kirsher 						BNX2X_NUM_Q_STATS;
2753d5e83632SYuval Mintz 		} else
2754adfc5217SJeff Kirsher 			num_stats = 0;
2755d5e83632SYuval Mintz 		if (IS_MF_MODE_STAT(bp)) {
2756adfc5217SJeff Kirsher 			for (i = 0; i < BNX2X_NUM_STATS; i++)
2757adfc5217SJeff Kirsher 				if (IS_FUNC_STAT(i))
2758adfc5217SJeff Kirsher 					num_stats++;
2759adfc5217SJeff Kirsher 		} else
2760d5e83632SYuval Mintz 			num_stats += BNX2X_NUM_STATS;
2761d5e83632SYuval Mintz 
2762adfc5217SJeff Kirsher 		return num_stats;
2763adfc5217SJeff Kirsher 
2764adfc5217SJeff Kirsher 	case ETH_SS_TEST:
2765cf2c1df6SMerav Sicron 		return BNX2X_NUM_TESTS(bp);
2766adfc5217SJeff Kirsher 
2767adfc5217SJeff Kirsher 	default:
2768adfc5217SJeff Kirsher 		return -EINVAL;
2769adfc5217SJeff Kirsher 	}
2770adfc5217SJeff Kirsher }
2771adfc5217SJeff Kirsher 
2772adfc5217SJeff Kirsher static void bnx2x_get_strings(struct net_device *dev, u32 stringset, u8 *buf)
2773adfc5217SJeff Kirsher {
2774adfc5217SJeff Kirsher 	struct bnx2x *bp = netdev_priv(dev);
27755889335cSMerav Sicron 	int i, j, k, start;
2776adfc5217SJeff Kirsher 	char queue_name[MAX_QUEUE_NAME_LEN+1];
2777adfc5217SJeff Kirsher 
2778adfc5217SJeff Kirsher 	switch (stringset) {
2779adfc5217SJeff Kirsher 	case ETH_SS_STATS:
2780adfc5217SJeff Kirsher 		k = 0;
2781d5e83632SYuval Mintz 		if (is_multi(bp)) {
2782adfc5217SJeff Kirsher 			for_each_eth_queue(bp, i) {
2783adfc5217SJeff Kirsher 				memset(queue_name, 0, sizeof(queue_name));
2784adfc5217SJeff Kirsher 				sprintf(queue_name, "%d", i);
2785adfc5217SJeff Kirsher 				for (j = 0; j < BNX2X_NUM_Q_STATS; j++)
2786adfc5217SJeff Kirsher 					snprintf(buf + (k + j)*ETH_GSTRING_LEN,
2787adfc5217SJeff Kirsher 						ETH_GSTRING_LEN,
2788adfc5217SJeff Kirsher 						bnx2x_q_stats_arr[j].string,
2789adfc5217SJeff Kirsher 						queue_name);
2790adfc5217SJeff Kirsher 				k += BNX2X_NUM_Q_STATS;
2791adfc5217SJeff Kirsher 			}
2792d5e83632SYuval Mintz 		}
2793d5e83632SYuval Mintz 
2794d5e83632SYuval Mintz 
2795adfc5217SJeff Kirsher 		for (i = 0, j = 0; i < BNX2X_NUM_STATS; i++) {
2796adfc5217SJeff Kirsher 			if (IS_MF_MODE_STAT(bp) && IS_PORT_STAT(i))
2797adfc5217SJeff Kirsher 				continue;
2798d5e83632SYuval Mintz 			strcpy(buf + (k + j)*ETH_GSTRING_LEN,
2799adfc5217SJeff Kirsher 				   bnx2x_stats_arr[i].string);
2800adfc5217SJeff Kirsher 			j++;
2801adfc5217SJeff Kirsher 		}
2802d5e83632SYuval Mintz 
2803adfc5217SJeff Kirsher 		break;
2804adfc5217SJeff Kirsher 
2805adfc5217SJeff Kirsher 	case ETH_SS_TEST:
2806cf2c1df6SMerav Sicron 		/* First 4 tests cannot be done in MF mode */
2807cf2c1df6SMerav Sicron 		if (!IS_MF(bp))
2808cf2c1df6SMerav Sicron 			start = 0;
2809cf2c1df6SMerav Sicron 		else
2810cf2c1df6SMerav Sicron 			start = 4;
28115889335cSMerav Sicron 		memcpy(buf, bnx2x_tests_str_arr + start,
28125889335cSMerav Sicron 		       ETH_GSTRING_LEN * BNX2X_NUM_TESTS(bp));
2813adfc5217SJeff Kirsher 	}
2814adfc5217SJeff Kirsher }
2815adfc5217SJeff Kirsher 
2816adfc5217SJeff Kirsher static void bnx2x_get_ethtool_stats(struct net_device *dev,
2817adfc5217SJeff Kirsher 				    struct ethtool_stats *stats, u64 *buf)
2818adfc5217SJeff Kirsher {
2819adfc5217SJeff Kirsher 	struct bnx2x *bp = netdev_priv(dev);
2820adfc5217SJeff Kirsher 	u32 *hw_stats, *offset;
2821d5e83632SYuval Mintz 	int i, j, k = 0;
2822adfc5217SJeff Kirsher 
2823adfc5217SJeff Kirsher 	if (is_multi(bp)) {
2824adfc5217SJeff Kirsher 		for_each_eth_queue(bp, i) {
282515192a8cSBarak Witkowski 			hw_stats = (u32 *)&bp->fp_stats[i].eth_q_stats;
2826adfc5217SJeff Kirsher 			for (j = 0; j < BNX2X_NUM_Q_STATS; j++) {
2827adfc5217SJeff Kirsher 				if (bnx2x_q_stats_arr[j].size == 0) {
2828adfc5217SJeff Kirsher 					/* skip this counter */
2829adfc5217SJeff Kirsher 					buf[k + j] = 0;
2830adfc5217SJeff Kirsher 					continue;
2831adfc5217SJeff Kirsher 				}
2832adfc5217SJeff Kirsher 				offset = (hw_stats +
2833adfc5217SJeff Kirsher 					  bnx2x_q_stats_arr[j].offset);
2834adfc5217SJeff Kirsher 				if (bnx2x_q_stats_arr[j].size == 4) {
2835adfc5217SJeff Kirsher 					/* 4-byte counter */
2836adfc5217SJeff Kirsher 					buf[k + j] = (u64) *offset;
2837adfc5217SJeff Kirsher 					continue;
2838adfc5217SJeff Kirsher 				}
2839adfc5217SJeff Kirsher 				/* 8-byte counter */
2840adfc5217SJeff Kirsher 				buf[k + j] = HILO_U64(*offset, *(offset + 1));
2841adfc5217SJeff Kirsher 			}
2842adfc5217SJeff Kirsher 			k += BNX2X_NUM_Q_STATS;
2843adfc5217SJeff Kirsher 		}
2844adfc5217SJeff Kirsher 	}
2845d5e83632SYuval Mintz 
2846adfc5217SJeff Kirsher 	hw_stats = (u32 *)&bp->eth_stats;
2847adfc5217SJeff Kirsher 	for (i = 0, j = 0; i < BNX2X_NUM_STATS; i++) {
2848adfc5217SJeff Kirsher 		if (IS_MF_MODE_STAT(bp) && IS_PORT_STAT(i))
2849adfc5217SJeff Kirsher 			continue;
2850adfc5217SJeff Kirsher 		if (bnx2x_stats_arr[i].size == 0) {
2851adfc5217SJeff Kirsher 			/* skip this counter */
2852d5e83632SYuval Mintz 			buf[k + j] = 0;
2853adfc5217SJeff Kirsher 			j++;
2854adfc5217SJeff Kirsher 			continue;
2855adfc5217SJeff Kirsher 		}
2856adfc5217SJeff Kirsher 		offset = (hw_stats + bnx2x_stats_arr[i].offset);
2857adfc5217SJeff Kirsher 		if (bnx2x_stats_arr[i].size == 4) {
2858adfc5217SJeff Kirsher 			/* 4-byte counter */
2859d5e83632SYuval Mintz 			buf[k + j] = (u64) *offset;
2860adfc5217SJeff Kirsher 			j++;
2861adfc5217SJeff Kirsher 			continue;
2862adfc5217SJeff Kirsher 		}
2863adfc5217SJeff Kirsher 		/* 8-byte counter */
2864d5e83632SYuval Mintz 		buf[k + j] = HILO_U64(*offset, *(offset + 1));
2865adfc5217SJeff Kirsher 		j++;
2866adfc5217SJeff Kirsher 	}
2867adfc5217SJeff Kirsher }
2868adfc5217SJeff Kirsher 
2869adfc5217SJeff Kirsher static int bnx2x_set_phys_id(struct net_device *dev,
2870adfc5217SJeff Kirsher 			     enum ethtool_phys_id_state state)
2871adfc5217SJeff Kirsher {
2872adfc5217SJeff Kirsher 	struct bnx2x *bp = netdev_priv(dev);
2873adfc5217SJeff Kirsher 
287451c1a580SMerav Sicron 	if (!netif_running(dev)) {
287551c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL | BNX2X_MSG_NVM,
287651c1a580SMerav Sicron 		   "cannot access eeprom when the interface is down\n");
2877adfc5217SJeff Kirsher 		return -EAGAIN;
287851c1a580SMerav Sicron 	}
2879adfc5217SJeff Kirsher 
288051c1a580SMerav Sicron 	if (!bp->port.pmf) {
288151c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL, "Interface is not pmf\n");
2882adfc5217SJeff Kirsher 		return -EOPNOTSUPP;
288351c1a580SMerav Sicron 	}
2884adfc5217SJeff Kirsher 
2885adfc5217SJeff Kirsher 	switch (state) {
2886adfc5217SJeff Kirsher 	case ETHTOOL_ID_ACTIVE:
2887adfc5217SJeff Kirsher 		return 1;	/* cycle on/off once per second */
2888adfc5217SJeff Kirsher 
2889adfc5217SJeff Kirsher 	case ETHTOOL_ID_ON:
28908203c4b6SYaniv Rosner 		bnx2x_acquire_phy_lock(bp);
2891adfc5217SJeff Kirsher 		bnx2x_set_led(&bp->link_params, &bp->link_vars,
2892adfc5217SJeff Kirsher 			      LED_MODE_ON, SPEED_1000);
28938203c4b6SYaniv Rosner 		bnx2x_release_phy_lock(bp);
2894adfc5217SJeff Kirsher 		break;
2895adfc5217SJeff Kirsher 
2896adfc5217SJeff Kirsher 	case ETHTOOL_ID_OFF:
28978203c4b6SYaniv Rosner 		bnx2x_acquire_phy_lock(bp);
2898adfc5217SJeff Kirsher 		bnx2x_set_led(&bp->link_params, &bp->link_vars,
2899adfc5217SJeff Kirsher 			      LED_MODE_FRONT_PANEL_OFF, 0);
29008203c4b6SYaniv Rosner 		bnx2x_release_phy_lock(bp);
2901adfc5217SJeff Kirsher 		break;
2902adfc5217SJeff Kirsher 
2903adfc5217SJeff Kirsher 	case ETHTOOL_ID_INACTIVE:
29048203c4b6SYaniv Rosner 		bnx2x_acquire_phy_lock(bp);
2905adfc5217SJeff Kirsher 		bnx2x_set_led(&bp->link_params, &bp->link_vars,
2906adfc5217SJeff Kirsher 			      LED_MODE_OPER,
2907adfc5217SJeff Kirsher 			      bp->link_vars.line_speed);
29088203c4b6SYaniv Rosner 		bnx2x_release_phy_lock(bp);
2909adfc5217SJeff Kirsher 	}
2910adfc5217SJeff Kirsher 
2911adfc5217SJeff Kirsher 	return 0;
2912adfc5217SJeff Kirsher }
2913adfc5217SJeff Kirsher 
29145d317c6aSMerav Sicron static int bnx2x_get_rss_flags(struct bnx2x *bp, struct ethtool_rxnfc *info)
29155d317c6aSMerav Sicron {
29165d317c6aSMerav Sicron 
29175d317c6aSMerav Sicron 	switch (info->flow_type) {
29185d317c6aSMerav Sicron 	case TCP_V4_FLOW:
29195d317c6aSMerav Sicron 	case TCP_V6_FLOW:
29205d317c6aSMerav Sicron 		info->data = RXH_IP_SRC | RXH_IP_DST |
29215d317c6aSMerav Sicron 			     RXH_L4_B_0_1 | RXH_L4_B_2_3;
29225d317c6aSMerav Sicron 		break;
29235d317c6aSMerav Sicron 	case UDP_V4_FLOW:
29245d317c6aSMerav Sicron 		if (bp->rss_conf_obj.udp_rss_v4)
29255d317c6aSMerav Sicron 			info->data = RXH_IP_SRC | RXH_IP_DST |
29265d317c6aSMerav Sicron 				     RXH_L4_B_0_1 | RXH_L4_B_2_3;
29275d317c6aSMerav Sicron 		else
29285d317c6aSMerav Sicron 			info->data = RXH_IP_SRC | RXH_IP_DST;
29295d317c6aSMerav Sicron 		break;
29305d317c6aSMerav Sicron 	case UDP_V6_FLOW:
29315d317c6aSMerav Sicron 		if (bp->rss_conf_obj.udp_rss_v6)
29325d317c6aSMerav Sicron 			info->data = RXH_IP_SRC | RXH_IP_DST |
29335d317c6aSMerav Sicron 				     RXH_L4_B_0_1 | RXH_L4_B_2_3;
29345d317c6aSMerav Sicron 		else
29355d317c6aSMerav Sicron 			info->data = RXH_IP_SRC | RXH_IP_DST;
29365d317c6aSMerav Sicron 		break;
29375d317c6aSMerav Sicron 	case IPV4_FLOW:
29385d317c6aSMerav Sicron 	case IPV6_FLOW:
29395d317c6aSMerav Sicron 		info->data = RXH_IP_SRC | RXH_IP_DST;
29405d317c6aSMerav Sicron 		break;
29415d317c6aSMerav Sicron 	default:
29425d317c6aSMerav Sicron 		info->data = 0;
29435d317c6aSMerav Sicron 		break;
29445d317c6aSMerav Sicron 	}
29455d317c6aSMerav Sicron 
29465d317c6aSMerav Sicron 	return 0;
29475d317c6aSMerav Sicron }
29485d317c6aSMerav Sicron 
2949adfc5217SJeff Kirsher static int bnx2x_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *info,
2950815c7db5SBen Hutchings 			   u32 *rules __always_unused)
2951adfc5217SJeff Kirsher {
2952adfc5217SJeff Kirsher 	struct bnx2x *bp = netdev_priv(dev);
2953adfc5217SJeff Kirsher 
2954adfc5217SJeff Kirsher 	switch (info->cmd) {
2955adfc5217SJeff Kirsher 	case ETHTOOL_GRXRINGS:
2956adfc5217SJeff Kirsher 		info->data = BNX2X_NUM_ETH_QUEUES(bp);
2957adfc5217SJeff Kirsher 		return 0;
29585d317c6aSMerav Sicron 	case ETHTOOL_GRXFH:
29595d317c6aSMerav Sicron 		return bnx2x_get_rss_flags(bp, info);
29605d317c6aSMerav Sicron 	default:
29615d317c6aSMerav Sicron 		DP(BNX2X_MSG_ETHTOOL, "Command parameters not supported\n");
29625d317c6aSMerav Sicron 		return -EOPNOTSUPP;
29635d317c6aSMerav Sicron 	}
29645d317c6aSMerav Sicron }
2965adfc5217SJeff Kirsher 
29665d317c6aSMerav Sicron static int bnx2x_set_rss_flags(struct bnx2x *bp, struct ethtool_rxnfc *info)
29675d317c6aSMerav Sicron {
29685d317c6aSMerav Sicron 	int udp_rss_requested;
29695d317c6aSMerav Sicron 
29705d317c6aSMerav Sicron 	DP(BNX2X_MSG_ETHTOOL,
29715d317c6aSMerav Sicron 	   "Set rss flags command parameters: flow type = %d, data = %llu\n",
29725d317c6aSMerav Sicron 	   info->flow_type, info->data);
29735d317c6aSMerav Sicron 
29745d317c6aSMerav Sicron 	switch (info->flow_type) {
29755d317c6aSMerav Sicron 	case TCP_V4_FLOW:
29765d317c6aSMerav Sicron 	case TCP_V6_FLOW:
29775d317c6aSMerav Sicron 		/* For TCP only 4-tupple hash is supported */
29785d317c6aSMerav Sicron 		if (info->data ^ (RXH_IP_SRC | RXH_IP_DST |
29795d317c6aSMerav Sicron 				  RXH_L4_B_0_1 | RXH_L4_B_2_3)) {
29805d317c6aSMerav Sicron 			DP(BNX2X_MSG_ETHTOOL,
29815d317c6aSMerav Sicron 			   "Command parameters not supported\n");
29825d317c6aSMerav Sicron 			return -EINVAL;
29835d317c6aSMerav Sicron 		} else {
29845d317c6aSMerav Sicron 			return 0;
29855d317c6aSMerav Sicron 		}
29865d317c6aSMerav Sicron 
29875d317c6aSMerav Sicron 	case UDP_V4_FLOW:
29885d317c6aSMerav Sicron 	case UDP_V6_FLOW:
29895d317c6aSMerav Sicron 		/* For UDP either 2-tupple hash or 4-tupple hash is supported */
29905d317c6aSMerav Sicron 		if (info->data == (RXH_IP_SRC | RXH_IP_DST |
29915d317c6aSMerav Sicron 				 RXH_L4_B_0_1 | RXH_L4_B_2_3))
29925d317c6aSMerav Sicron 			udp_rss_requested = 1;
29935d317c6aSMerav Sicron 		else if (info->data == (RXH_IP_SRC | RXH_IP_DST))
29945d317c6aSMerav Sicron 			udp_rss_requested = 0;
29955d317c6aSMerav Sicron 		else
29965d317c6aSMerav Sicron 			return -EINVAL;
29975d317c6aSMerav Sicron 		if ((info->flow_type == UDP_V4_FLOW) &&
29985d317c6aSMerav Sicron 		    (bp->rss_conf_obj.udp_rss_v4 != udp_rss_requested)) {
29995d317c6aSMerav Sicron 			bp->rss_conf_obj.udp_rss_v4 = udp_rss_requested;
30005d317c6aSMerav Sicron 			DP(BNX2X_MSG_ETHTOOL,
30015d317c6aSMerav Sicron 			   "rss re-configured, UDP 4-tupple %s\n",
30025d317c6aSMerav Sicron 			   udp_rss_requested ? "enabled" : "disabled");
30035d317c6aSMerav Sicron 			return bnx2x_config_rss_pf(bp, &bp->rss_conf_obj, 0);
30045d317c6aSMerav Sicron 		} else if ((info->flow_type == UDP_V6_FLOW) &&
30055d317c6aSMerav Sicron 			   (bp->rss_conf_obj.udp_rss_v6 != udp_rss_requested)) {
30065d317c6aSMerav Sicron 			bp->rss_conf_obj.udp_rss_v6 = udp_rss_requested;
30075d317c6aSMerav Sicron 			DP(BNX2X_MSG_ETHTOOL,
30085d317c6aSMerav Sicron 			   "rss re-configured, UDP 4-tupple %s\n",
30095d317c6aSMerav Sicron 			   udp_rss_requested ? "enabled" : "disabled");
3010337da3e3SDan Carpenter 			return bnx2x_config_rss_pf(bp, &bp->rss_conf_obj, 0);
30115d317c6aSMerav Sicron 		} else {
30125d317c6aSMerav Sicron 			return 0;
30135d317c6aSMerav Sicron 		}
30145d317c6aSMerav Sicron 	case IPV4_FLOW:
30155d317c6aSMerav Sicron 	case IPV6_FLOW:
30165d317c6aSMerav Sicron 		/* For IP only 2-tupple hash is supported */
30175d317c6aSMerav Sicron 		if (info->data ^ (RXH_IP_SRC | RXH_IP_DST)) {
30185d317c6aSMerav Sicron 			DP(BNX2X_MSG_ETHTOOL,
30195d317c6aSMerav Sicron 			   "Command parameters not supported\n");
30205d317c6aSMerav Sicron 			return -EINVAL;
30215d317c6aSMerav Sicron 		} else {
30225d317c6aSMerav Sicron 			return 0;
30235d317c6aSMerav Sicron 		}
30245d317c6aSMerav Sicron 	case SCTP_V4_FLOW:
30255d317c6aSMerav Sicron 	case AH_ESP_V4_FLOW:
30265d317c6aSMerav Sicron 	case AH_V4_FLOW:
30275d317c6aSMerav Sicron 	case ESP_V4_FLOW:
30285d317c6aSMerav Sicron 	case SCTP_V6_FLOW:
30295d317c6aSMerav Sicron 	case AH_ESP_V6_FLOW:
30305d317c6aSMerav Sicron 	case AH_V6_FLOW:
30315d317c6aSMerav Sicron 	case ESP_V6_FLOW:
30325d317c6aSMerav Sicron 	case IP_USER_FLOW:
30335d317c6aSMerav Sicron 	case ETHER_FLOW:
30345d317c6aSMerav Sicron 		/* RSS is not supported for these protocols */
30355d317c6aSMerav Sicron 		if (info->data) {
30365d317c6aSMerav Sicron 			DP(BNX2X_MSG_ETHTOOL,
30375d317c6aSMerav Sicron 			   "Command parameters not supported\n");
30385d317c6aSMerav Sicron 			return -EINVAL;
30395d317c6aSMerav Sicron 		} else {
30405d317c6aSMerav Sicron 			return 0;
30415d317c6aSMerav Sicron 		}
30425d317c6aSMerav Sicron 	default:
30435d317c6aSMerav Sicron 		return -EINVAL;
30445d317c6aSMerav Sicron 	}
30455d317c6aSMerav Sicron }
30465d317c6aSMerav Sicron 
30475d317c6aSMerav Sicron static int bnx2x_set_rxnfc(struct net_device *dev, struct ethtool_rxnfc *info)
30485d317c6aSMerav Sicron {
30495d317c6aSMerav Sicron 	struct bnx2x *bp = netdev_priv(dev);
30505d317c6aSMerav Sicron 
30515d317c6aSMerav Sicron 	switch (info->cmd) {
30525d317c6aSMerav Sicron 	case ETHTOOL_SRXFH:
30535d317c6aSMerav Sicron 		return bnx2x_set_rss_flags(bp, info);
3054adfc5217SJeff Kirsher 	default:
305551c1a580SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL, "Command parameters not supported\n");
3056adfc5217SJeff Kirsher 		return -EOPNOTSUPP;
3057adfc5217SJeff Kirsher 	}
3058adfc5217SJeff Kirsher }
3059adfc5217SJeff Kirsher 
30607850f63fSBen Hutchings static u32 bnx2x_get_rxfh_indir_size(struct net_device *dev)
3061adfc5217SJeff Kirsher {
306296305234SDmitry Kravkov 	return T_ETH_INDIRECTION_TABLE_SIZE;
30637850f63fSBen Hutchings }
30647850f63fSBen Hutchings 
30657850f63fSBen Hutchings static int bnx2x_get_rxfh_indir(struct net_device *dev, u32 *indir)
30667850f63fSBen Hutchings {
30677850f63fSBen Hutchings 	struct bnx2x *bp = netdev_priv(dev);
3068adfc5217SJeff Kirsher 	u8 ind_table[T_ETH_INDIRECTION_TABLE_SIZE] = {0};
3069adfc5217SJeff Kirsher 	size_t i;
3070adfc5217SJeff Kirsher 
3071adfc5217SJeff Kirsher 	/* Get the current configuration of the RSS indirection table */
3072adfc5217SJeff Kirsher 	bnx2x_get_rss_ind_table(&bp->rss_conf_obj, ind_table);
3073adfc5217SJeff Kirsher 
3074adfc5217SJeff Kirsher 	/*
3075adfc5217SJeff Kirsher 	 * We can't use a memcpy() as an internal storage of an
3076adfc5217SJeff Kirsher 	 * indirection table is a u8 array while indir->ring_index
3077adfc5217SJeff Kirsher 	 * points to an array of u32.
3078adfc5217SJeff Kirsher 	 *
3079adfc5217SJeff Kirsher 	 * Indirection table contains the FW Client IDs, so we need to
3080adfc5217SJeff Kirsher 	 * align the returned table to the Client ID of the leading RSS
3081adfc5217SJeff Kirsher 	 * queue.
3082adfc5217SJeff Kirsher 	 */
30837850f63fSBen Hutchings 	for (i = 0; i < T_ETH_INDIRECTION_TABLE_SIZE; i++)
30847850f63fSBen Hutchings 		indir[i] = ind_table[i] - bp->fp->cl_id;
3085adfc5217SJeff Kirsher 
3086adfc5217SJeff Kirsher 	return 0;
3087adfc5217SJeff Kirsher }
3088adfc5217SJeff Kirsher 
30897850f63fSBen Hutchings static int bnx2x_set_rxfh_indir(struct net_device *dev, const u32 *indir)
3090adfc5217SJeff Kirsher {
3091adfc5217SJeff Kirsher 	struct bnx2x *bp = netdev_priv(dev);
3092adfc5217SJeff Kirsher 	size_t i;
3093adfc5217SJeff Kirsher 
3094adfc5217SJeff Kirsher 	for (i = 0; i < T_ETH_INDIRECTION_TABLE_SIZE; i++) {
3095adfc5217SJeff Kirsher 		/*
3096adfc5217SJeff Kirsher 		 * The same as in bnx2x_get_rxfh_indir: we can't use a memcpy()
3097adfc5217SJeff Kirsher 		 * as an internal storage of an indirection table is a u8 array
3098adfc5217SJeff Kirsher 		 * while indir->ring_index points to an array of u32.
3099adfc5217SJeff Kirsher 		 *
3100adfc5217SJeff Kirsher 		 * Indirection table contains the FW Client IDs, so we need to
3101adfc5217SJeff Kirsher 		 * align the received table to the Client ID of the leading RSS
3102adfc5217SJeff Kirsher 		 * queue
3103adfc5217SJeff Kirsher 		 */
31045d317c6aSMerav Sicron 		bp->rss_conf_obj.ind_table[i] = indir[i] + bp->fp->cl_id;
3105adfc5217SJeff Kirsher 	}
3106adfc5217SJeff Kirsher 
31075d317c6aSMerav Sicron 	return bnx2x_config_rss_eth(bp, false);
3108adfc5217SJeff Kirsher }
3109adfc5217SJeff Kirsher 
31100e8d2ec5SMerav Sicron /**
31110e8d2ec5SMerav Sicron  * bnx2x_get_channels - gets the number of RSS queues.
31120e8d2ec5SMerav Sicron  *
31130e8d2ec5SMerav Sicron  * @dev:		net device
31140e8d2ec5SMerav Sicron  * @channels:		returns the number of max / current queues
31150e8d2ec5SMerav Sicron  */
31160e8d2ec5SMerav Sicron static void bnx2x_get_channels(struct net_device *dev,
31170e8d2ec5SMerav Sicron 			       struct ethtool_channels *channels)
31180e8d2ec5SMerav Sicron {
31190e8d2ec5SMerav Sicron 	struct bnx2x *bp = netdev_priv(dev);
31200e8d2ec5SMerav Sicron 
31210e8d2ec5SMerav Sicron 	channels->max_combined = BNX2X_MAX_RSS_COUNT(bp);
31220e8d2ec5SMerav Sicron 	channels->combined_count = BNX2X_NUM_ETH_QUEUES(bp);
31230e8d2ec5SMerav Sicron }
31240e8d2ec5SMerav Sicron 
31250e8d2ec5SMerav Sicron /**
31260e8d2ec5SMerav Sicron  * bnx2x_change_num_queues - change the number of RSS queues.
31270e8d2ec5SMerav Sicron  *
31280e8d2ec5SMerav Sicron  * @bp:			bnx2x private structure
31290e8d2ec5SMerav Sicron  *
31300e8d2ec5SMerav Sicron  * Re-configure interrupt mode to get the new number of MSI-X
31310e8d2ec5SMerav Sicron  * vectors and re-add NAPI objects.
31320e8d2ec5SMerav Sicron  */
31330e8d2ec5SMerav Sicron static void bnx2x_change_num_queues(struct bnx2x *bp, int num_rss)
31340e8d2ec5SMerav Sicron {
31350e8d2ec5SMerav Sicron 	bnx2x_disable_msi(bp);
313655c11941SMerav Sicron 	bp->num_ethernet_queues = num_rss;
313755c11941SMerav Sicron 	bp->num_queues = bp->num_ethernet_queues + bp->num_cnic_queues;
313855c11941SMerav Sicron 	BNX2X_DEV_INFO("set number of queues to %d\n", bp->num_queues);
31390e8d2ec5SMerav Sicron 	bnx2x_set_int_mode(bp);
31400e8d2ec5SMerav Sicron }
31410e8d2ec5SMerav Sicron 
31420e8d2ec5SMerav Sicron /**
31430e8d2ec5SMerav Sicron  * bnx2x_set_channels - sets the number of RSS queues.
31440e8d2ec5SMerav Sicron  *
31450e8d2ec5SMerav Sicron  * @dev:		net device
31460e8d2ec5SMerav Sicron  * @channels:		includes the number of queues requested
31470e8d2ec5SMerav Sicron  */
31480e8d2ec5SMerav Sicron static int bnx2x_set_channels(struct net_device *dev,
31490e8d2ec5SMerav Sicron 			      struct ethtool_channels *channels)
31500e8d2ec5SMerav Sicron {
31510e8d2ec5SMerav Sicron 	struct bnx2x *bp = netdev_priv(dev);
31520e8d2ec5SMerav Sicron 
31530e8d2ec5SMerav Sicron 
31540e8d2ec5SMerav Sicron 	DP(BNX2X_MSG_ETHTOOL,
31550e8d2ec5SMerav Sicron 	   "set-channels command parameters: rx = %d, tx = %d, other = %d, combined = %d\n",
31560e8d2ec5SMerav Sicron 	   channels->rx_count, channels->tx_count, channels->other_count,
31570e8d2ec5SMerav Sicron 	   channels->combined_count);
31580e8d2ec5SMerav Sicron 
31590e8d2ec5SMerav Sicron 	/* We don't support separate rx / tx channels.
31600e8d2ec5SMerav Sicron 	 * We don't allow setting 'other' channels.
31610e8d2ec5SMerav Sicron 	 */
31620e8d2ec5SMerav Sicron 	if (channels->rx_count || channels->tx_count || channels->other_count
31630e8d2ec5SMerav Sicron 	    || (channels->combined_count == 0) ||
31640e8d2ec5SMerav Sicron 	    (channels->combined_count > BNX2X_MAX_RSS_COUNT(bp))) {
31650e8d2ec5SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL, "command parameters not supported\n");
31660e8d2ec5SMerav Sicron 		return -EINVAL;
31670e8d2ec5SMerav Sicron 	}
31680e8d2ec5SMerav Sicron 
31690e8d2ec5SMerav Sicron 	/* Check if there was a change in the active parameters */
31700e8d2ec5SMerav Sicron 	if (channels->combined_count == BNX2X_NUM_ETH_QUEUES(bp)) {
31710e8d2ec5SMerav Sicron 		DP(BNX2X_MSG_ETHTOOL, "No change in active parameters\n");
31720e8d2ec5SMerav Sicron 		return 0;
31730e8d2ec5SMerav Sicron 	}
31740e8d2ec5SMerav Sicron 
31750e8d2ec5SMerav Sicron 	/* Set the requested number of queues in bp context.
31760e8d2ec5SMerav Sicron 	 * Note that the actual number of queues created during load may be
31770e8d2ec5SMerav Sicron 	 * less than requested if memory is low.
31780e8d2ec5SMerav Sicron 	 */
31790e8d2ec5SMerav Sicron 	if (unlikely(!netif_running(dev))) {
31800e8d2ec5SMerav Sicron 		bnx2x_change_num_queues(bp, channels->combined_count);
31810e8d2ec5SMerav Sicron 		return 0;
31820e8d2ec5SMerav Sicron 	}
31835d07d868SYuval Mintz 	bnx2x_nic_unload(bp, UNLOAD_NORMAL, true);
31840e8d2ec5SMerav Sicron 	bnx2x_change_num_queues(bp, channels->combined_count);
31850e8d2ec5SMerav Sicron 	return bnx2x_nic_load(bp, LOAD_NORMAL);
31860e8d2ec5SMerav Sicron }
31870e8d2ec5SMerav Sicron 
3188adfc5217SJeff Kirsher static const struct ethtool_ops bnx2x_ethtool_ops = {
3189adfc5217SJeff Kirsher 	.get_settings		= bnx2x_get_settings,
3190adfc5217SJeff Kirsher 	.set_settings		= bnx2x_set_settings,
3191adfc5217SJeff Kirsher 	.get_drvinfo		= bnx2x_get_drvinfo,
3192adfc5217SJeff Kirsher 	.get_regs_len		= bnx2x_get_regs_len,
3193adfc5217SJeff Kirsher 	.get_regs		= bnx2x_get_regs,
319407ba6af4SMiriam Shitrit 	.get_dump_flag		= bnx2x_get_dump_flag,
319507ba6af4SMiriam Shitrit 	.get_dump_data		= bnx2x_get_dump_data,
319607ba6af4SMiriam Shitrit 	.set_dump		= bnx2x_set_dump,
3197adfc5217SJeff Kirsher 	.get_wol		= bnx2x_get_wol,
3198adfc5217SJeff Kirsher 	.set_wol		= bnx2x_set_wol,
3199adfc5217SJeff Kirsher 	.get_msglevel		= bnx2x_get_msglevel,
3200adfc5217SJeff Kirsher 	.set_msglevel		= bnx2x_set_msglevel,
3201adfc5217SJeff Kirsher 	.nway_reset		= bnx2x_nway_reset,
3202adfc5217SJeff Kirsher 	.get_link		= bnx2x_get_link,
3203adfc5217SJeff Kirsher 	.get_eeprom_len		= bnx2x_get_eeprom_len,
3204adfc5217SJeff Kirsher 	.get_eeprom		= bnx2x_get_eeprom,
3205adfc5217SJeff Kirsher 	.set_eeprom		= bnx2x_set_eeprom,
3206adfc5217SJeff Kirsher 	.get_coalesce		= bnx2x_get_coalesce,
3207adfc5217SJeff Kirsher 	.set_coalesce		= bnx2x_set_coalesce,
3208adfc5217SJeff Kirsher 	.get_ringparam		= bnx2x_get_ringparam,
3209adfc5217SJeff Kirsher 	.set_ringparam		= bnx2x_set_ringparam,
3210adfc5217SJeff Kirsher 	.get_pauseparam		= bnx2x_get_pauseparam,
3211adfc5217SJeff Kirsher 	.set_pauseparam		= bnx2x_set_pauseparam,
3212adfc5217SJeff Kirsher 	.self_test		= bnx2x_self_test,
3213adfc5217SJeff Kirsher 	.get_sset_count		= bnx2x_get_sset_count,
3214adfc5217SJeff Kirsher 	.get_strings		= bnx2x_get_strings,
3215adfc5217SJeff Kirsher 	.set_phys_id		= bnx2x_set_phys_id,
3216adfc5217SJeff Kirsher 	.get_ethtool_stats	= bnx2x_get_ethtool_stats,
3217adfc5217SJeff Kirsher 	.get_rxnfc		= bnx2x_get_rxnfc,
32185d317c6aSMerav Sicron 	.set_rxnfc		= bnx2x_set_rxnfc,
32197850f63fSBen Hutchings 	.get_rxfh_indir_size	= bnx2x_get_rxfh_indir_size,
3220adfc5217SJeff Kirsher 	.get_rxfh_indir		= bnx2x_get_rxfh_indir,
3221adfc5217SJeff Kirsher 	.set_rxfh_indir		= bnx2x_set_rxfh_indir,
32220e8d2ec5SMerav Sicron 	.get_channels		= bnx2x_get_channels,
32230e8d2ec5SMerav Sicron 	.set_channels		= bnx2x_set_channels,
322424ea818eSYuval Mintz 	.get_module_info	= bnx2x_get_module_info,
322524ea818eSYuval Mintz 	.get_module_eeprom	= bnx2x_get_module_eeprom,
3226e9939c80SYuval Mintz 	.get_eee		= bnx2x_get_eee,
3227e9939c80SYuval Mintz 	.set_eee		= bnx2x_set_eee,
3228be53ce1eSRichard Cochran 	.get_ts_info		= ethtool_op_get_ts_info,
3229adfc5217SJeff Kirsher };
3230adfc5217SJeff Kirsher 
3231adfc5217SJeff Kirsher void bnx2x_set_ethtool_ops(struct net_device *netdev)
3232adfc5217SJeff Kirsher {
3233adfc5217SJeff Kirsher 	SET_ETHTOOL_OPS(netdev, &bnx2x_ethtool_ops);
3234adfc5217SJeff Kirsher }
3235