| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2009-02-25 15:57:56 +00:00
										 |  |  |  * Copyright (C) 2003 - 2009 NetXen, Inc. | 
					
						
							| 
									
										
										
										
											2009-09-11 11:28:15 +00:00
										 |  |  |  * Copyright (C) 2009 - QLogic Corporation. | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  |  * All rights reserved. | 
					
						
							| 
									
										
										
										
											2006-12-04 09:18:00 -08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  |  * This program is free software; you can redistribute it and/or | 
					
						
							|  |  |  |  * modify it under the terms of the GNU General Public License | 
					
						
							|  |  |  |  * as published by the Free Software Foundation; either version 2 | 
					
						
							|  |  |  |  * of the License, or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2006-12-04 09:18:00 -08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  |  * This program is distributed in the hope that it will be useful, but | 
					
						
							|  |  |  |  * WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU General Public License for more details. | 
					
						
							| 
									
										
										
										
											2006-12-04 09:18:00 -08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  |  * You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  |  * along with this program; if not, write to the Free Software | 
					
						
							|  |  |  |  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, | 
					
						
							|  |  |  |  * MA  02111-1307, USA. | 
					
						
							| 
									
										
										
										
											2006-12-04 09:18:00 -08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  |  * The full GNU General Public License is included in this distribution | 
					
						
							| 
									
										
										
										
											2010-01-14 01:53:23 +00:00
										 |  |  |  * in the file called "COPYING". | 
					
						
							| 
									
										
										
										
											2006-12-04 09:18:00 -08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/types.h>
 | 
					
						
							| 
									
										
										
										
											2007-02-05 07:40:49 -08:00
										 |  |  | #include <linux/delay.h>
 | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | #include <linux/pci.h>
 | 
					
						
							|  |  |  | #include <asm/io.h>
 | 
					
						
							|  |  |  | #include <linux/netdevice.h>
 | 
					
						
							|  |  |  | #include <linux/ethtool.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "netxen_nic.h"
 | 
					
						
							| 
									
										
										
										
											2007-04-20 07:55:26 -07:00
										 |  |  | #include "netxen_nic_hw.h"
 | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct netxen_nic_stats { | 
					
						
							|  |  |  | 	char stat_string[ETH_GSTRING_LEN]; | 
					
						
							|  |  |  | 	int sizeof_stat; | 
					
						
							|  |  |  | 	int stat_offset; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-20 07:52:37 -07:00
										 |  |  | #define NETXEN_NIC_STAT(m) sizeof(((struct netxen_adapter *)0)->m), \
 | 
					
						
							|  |  |  | 			offsetof(struct netxen_adapter, m) | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-11-29 09:00:10 -08:00
										 |  |  | #define NETXEN_NIC_PORT_WINDOW 0x10000
 | 
					
						
							|  |  |  | #define NETXEN_NIC_INVALID_DATA 0xDEADBEEF
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | static const struct netxen_nic_stats netxen_nic_gstrings_stats[] = { | 
					
						
							|  |  |  | 	{"xmit_called", NETXEN_NIC_STAT(stats.xmitcalled)}, | 
					
						
							|  |  |  | 	{"xmit_finished", NETXEN_NIC_STAT(stats.xmitfinished)}, | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:38 +00:00
										 |  |  | 	{"rx_dropped", NETXEN_NIC_STAT(stats.rxdropped)}, | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	{"tx_dropped", NETXEN_NIC_STAT(stats.txdropped)}, | 
					
						
							|  |  |  | 	{"csummed", NETXEN_NIC_STAT(stats.csummed)}, | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:09 +00:00
										 |  |  | 	{"rx_pkts", NETXEN_NIC_STAT(stats.rx_pkts)}, | 
					
						
							|  |  |  | 	{"lro_pkts", NETXEN_NIC_STAT(stats.lro_pkts)}, | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	{"rx_bytes", NETXEN_NIC_STAT(stats.rxbytes)}, | 
					
						
							|  |  |  | 	{"tx_bytes", NETXEN_NIC_STAT(stats.txbytes)}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-15 07:57:08 -08:00
										 |  |  | #define NETXEN_NIC_STATS_LEN	ARRAY_SIZE(netxen_nic_gstrings_stats)
 | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | static const char netxen_nic_gstrings_test[][ETH_GSTRING_LEN] = { | 
					
						
							| 
									
										
										
										
											2007-02-28 05:14:07 -08:00
										 |  |  | 	"Register_Test_on_offline", | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	"Link_Test_on_offline" | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-18 10:00:15 +02:00
										 |  |  | #define NETXEN_NIC_TEST_LEN	ARRAY_SIZE(netxen_nic_gstrings_test)
 | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-02 03:25:18 +00:00
										 |  |  | #define NETXEN_NIC_REGS_COUNT 30
 | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | #define NETXEN_NIC_REGS_LEN (NETXEN_NIC_REGS_COUNT * sizeof(__le32))
 | 
					
						
							|  |  |  | #define NETXEN_MAX_EEPROM_LEN   1024
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int netxen_nic_get_eeprom_len(struct net_device *dev) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-06-07 04:36:36 -07:00
										 |  |  | 	return NETXEN_FLASH_TOTAL_SIZE; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | netxen_nic_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *drvinfo) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-04-20 07:52:37 -07:00
										 |  |  | 	struct netxen_adapter *adapter = netdev_priv(dev); | 
					
						
							| 
									
										
										
										
											2006-11-29 09:00:10 -08:00
										 |  |  | 	u32 fw_major = 0; | 
					
						
							|  |  |  | 	u32 fw_minor = 0; | 
					
						
							|  |  |  | 	u32 fw_build = 0; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-07 13:29:27 +00:00
										 |  |  | 	strlcpy(drvinfo->driver, netxen_nic_driver_name, | 
					
						
							|  |  |  | 		sizeof(drvinfo->driver)); | 
					
						
							|  |  |  | 	strlcpy(drvinfo->version, NETXEN_NIC_LINUX_VERSIONID, | 
					
						
							|  |  |  | 		sizeof(drvinfo->version)); | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 	fw_major = NXRD32(adapter, NETXEN_FW_VERSION_MAJOR); | 
					
						
							|  |  |  | 	fw_minor = NXRD32(adapter, NETXEN_FW_VERSION_MINOR); | 
					
						
							|  |  |  | 	fw_build = NXRD32(adapter, NETXEN_FW_VERSION_SUB); | 
					
						
							| 
									
										
										
										
											2011-11-07 13:29:27 +00:00
										 |  |  | 	snprintf(drvinfo->fw_version, sizeof(drvinfo->fw_version), | 
					
						
							|  |  |  | 		"%d.%d.%d", fw_major, fw_minor, fw_build); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-07 13:29:27 +00:00
										 |  |  | 	strlcpy(drvinfo->bus_info, pci_name(adapter->pdev), | 
					
						
							|  |  |  | 		sizeof(drvinfo->bus_info)); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	drvinfo->regdump_len = NETXEN_NIC_REGS_LEN; | 
					
						
							|  |  |  | 	drvinfo->eedump_len = netxen_nic_get_eeprom_len(dev); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | netxen_nic_get_settings(struct net_device *dev, struct ethtool_cmd *ecmd) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-04-20 07:52:37 -07:00
										 |  |  | 	struct netxen_adapter *adapter = netdev_priv(dev); | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:42 +00:00
										 |  |  | 	int check_sfp_module = 0; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* read which mode */ | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:56 +00:00
										 |  |  | 	if (adapter->ahw.port_type == NETXEN_NIC_GBE) { | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 		ecmd->supported = (SUPPORTED_10baseT_Half | | 
					
						
							|  |  |  | 				   SUPPORTED_10baseT_Full | | 
					
						
							|  |  |  | 				   SUPPORTED_100baseT_Half | | 
					
						
							|  |  |  | 				   SUPPORTED_100baseT_Full | | 
					
						
							|  |  |  | 				   SUPPORTED_1000baseT_Half | | 
					
						
							| 
									
										
										
										
											2006-11-29 09:00:10 -08:00
										 |  |  | 				   SUPPORTED_1000baseT_Full); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		ecmd->advertising = (ADVERTISED_100baseT_Half | | 
					
						
							|  |  |  | 				     ADVERTISED_100baseT_Full | | 
					
						
							|  |  |  | 				     ADVERTISED_1000baseT_Half | | 
					
						
							| 
									
										
										
										
											2006-11-29 09:00:10 -08:00
										 |  |  | 				     ADVERTISED_1000baseT_Full); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		ecmd->port = PORT_TP; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-27 18:32:40 +00:00
										 |  |  | 		ethtool_cmd_speed_set(ecmd, adapter->link_speed); | 
					
						
							| 
									
										
										
										
											2009-01-14 20:48:32 -08:00
										 |  |  | 		ecmd->duplex = adapter->link_duplex; | 
					
						
							|  |  |  | 		ecmd->autoneg = adapter->link_autoneg; | 
					
						
							| 
									
										
										
										
											2008-08-01 03:14:55 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:56 +00:00
										 |  |  | 	} else if (adapter->ahw.port_type == NETXEN_NIC_XGBE) { | 
					
						
							| 
									
										
										
										
											2008-08-01 03:14:55 -07:00
										 |  |  | 		u32 val; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 		val = NXRD32(adapter, NETXEN_PORT_MODE_ADDR); | 
					
						
							| 
									
										
										
										
											2008-08-01 03:14:55 -07:00
										 |  |  | 		if (val == NETXEN_PORT_MODE_802_3_AP) { | 
					
						
							|  |  |  | 			ecmd->supported = SUPPORTED_1000baseT_Full; | 
					
						
							|  |  |  | 			ecmd->advertising = ADVERTISED_1000baseT_Full; | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			ecmd->supported = SUPPORTED_10000baseT_Full; | 
					
						
							|  |  |  | 			ecmd->advertising = ADVERTISED_10000baseT_Full; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:42 +00:00
										 |  |  | 		if (netif_running(dev) && adapter->has_link_events) { | 
					
						
							| 
									
										
										
										
											2011-04-27 18:32:40 +00:00
										 |  |  | 			ethtool_cmd_speed_set(ecmd, adapter->link_speed); | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:42 +00:00
										 |  |  | 			ecmd->autoneg = adapter->link_autoneg; | 
					
						
							|  |  |  | 			ecmd->duplex = adapter->link_duplex; | 
					
						
							|  |  |  | 			goto skip; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 		ecmd->port = PORT_TP; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-01 03:14:55 -07:00
										 |  |  | 		if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) { | 
					
						
							|  |  |  | 			u16 pcifn = adapter->ahw.pci_func; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 			val = NXRD32(adapter, P3_LINK_SPEED_REG(pcifn)); | 
					
						
							| 
									
										
										
										
											2011-04-27 18:32:40 +00:00
										 |  |  | 			ethtool_cmd_speed_set(ecmd, P3_LINK_SPEED_MHZ * | 
					
						
							|  |  |  | 					      P3_LINK_SPEED_VAL(pcifn, val)); | 
					
						
							| 
									
										
										
										
											2008-08-01 03:14:55 -07:00
										 |  |  | 		} else | 
					
						
							| 
									
										
										
										
											2011-04-27 18:32:40 +00:00
										 |  |  | 			ethtool_cmd_speed_set(ecmd, SPEED_10000); | 
					
						
							| 
									
										
										
										
											2008-08-01 03:14:55 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 		ecmd->duplex = DUPLEX_FULL; | 
					
						
							|  |  |  | 		ecmd->autoneg = AUTONEG_DISABLE; | 
					
						
							| 
									
										
										
										
											2006-11-29 09:00:10 -08:00
										 |  |  | 	} else | 
					
						
							|  |  |  | 		return -EIO; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:42 +00:00
										 |  |  | skip: | 
					
						
							| 
									
										
										
										
											2009-01-14 20:48:32 -08:00
										 |  |  | 	ecmd->phy_address = adapter->physical_port; | 
					
						
							| 
									
										
										
										
											2006-11-29 09:00:10 -08:00
										 |  |  | 	ecmd->transceiver = XCVR_EXTERNAL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:38 +00:00
										 |  |  | 	switch (adapter->ahw.board_type) { | 
					
						
							| 
									
										
										
										
											2006-11-29 09:00:10 -08:00
										 |  |  | 	case NETXEN_BRDTYPE_P2_SB35_4G: | 
					
						
							|  |  |  | 	case NETXEN_BRDTYPE_P2_SB31_2G: | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:02 -07:00
										 |  |  | 	case NETXEN_BRDTYPE_P3_REF_QG: | 
					
						
							|  |  |  | 	case NETXEN_BRDTYPE_P3_4_GB: | 
					
						
							|  |  |  | 	case NETXEN_BRDTYPE_P3_4_GB_MM: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-11-29 09:00:10 -08:00
										 |  |  | 		ecmd->supported |= SUPPORTED_Autoneg; | 
					
						
							|  |  |  | 		ecmd->advertising |= ADVERTISED_Autoneg; | 
					
						
							|  |  |  | 	case NETXEN_BRDTYPE_P2_SB31_10G_CX4: | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:02 -07:00
										 |  |  | 	case NETXEN_BRDTYPE_P3_10G_CX4: | 
					
						
							|  |  |  | 	case NETXEN_BRDTYPE_P3_10G_CX4_LP: | 
					
						
							| 
									
										
										
										
											2009-01-14 20:48:32 -08:00
										 |  |  | 	case NETXEN_BRDTYPE_P3_10000_BASE_T: | 
					
						
							| 
									
										
										
										
											2006-11-29 09:00:10 -08:00
										 |  |  | 		ecmd->supported |= SUPPORTED_TP; | 
					
						
							|  |  |  | 		ecmd->advertising |= ADVERTISED_TP; | 
					
						
							|  |  |  | 		ecmd->port = PORT_TP; | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:56 +00:00
										 |  |  | 		ecmd->autoneg = (adapter->ahw.board_type == | 
					
						
							| 
									
										
										
										
											2006-11-29 09:00:10 -08:00
										 |  |  | 				 NETXEN_BRDTYPE_P2_SB31_10G_CX4) ? | 
					
						
							| 
									
										
										
										
											2007-04-20 07:52:37 -07:00
										 |  |  | 		    (AUTONEG_DISABLE) : (adapter->link_autoneg); | 
					
						
							| 
									
										
										
										
											2006-11-29 09:00:10 -08:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case NETXEN_BRDTYPE_P2_SB31_10G_HMEZ: | 
					
						
							|  |  |  | 	case NETXEN_BRDTYPE_P2_SB31_10G_IMEZ: | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:02 -07:00
										 |  |  | 	case NETXEN_BRDTYPE_P3_IMEZ: | 
					
						
							|  |  |  | 	case NETXEN_BRDTYPE_P3_XG_LOM: | 
					
						
							|  |  |  | 	case NETXEN_BRDTYPE_P3_HMEZ: | 
					
						
							| 
									
										
										
										
											2006-11-29 09:00:10 -08:00
										 |  |  | 		ecmd->supported |= SUPPORTED_MII; | 
					
						
							|  |  |  | 		ecmd->advertising |= ADVERTISED_MII; | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:42 +00:00
										 |  |  | 		ecmd->port = PORT_MII; | 
					
						
							| 
									
										
										
										
											2006-11-29 09:00:10 -08:00
										 |  |  | 		ecmd->autoneg = AUTONEG_DISABLE; | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:02 -07:00
										 |  |  | 	case NETXEN_BRDTYPE_P3_10G_SFP_PLUS: | 
					
						
							| 
									
										
										
										
											2008-08-01 03:14:56 -07:00
										 |  |  | 	case NETXEN_BRDTYPE_P3_10G_SFP_CT: | 
					
						
							|  |  |  | 	case NETXEN_BRDTYPE_P3_10G_SFP_QT: | 
					
						
							| 
									
										
										
										
											2009-01-14 20:48:32 -08:00
										 |  |  | 		ecmd->advertising |= ADVERTISED_TP; | 
					
						
							|  |  |  | 		ecmd->supported |= SUPPORTED_TP; | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:42 +00:00
										 |  |  | 		check_sfp_module = netif_running(dev) && | 
					
						
							|  |  |  | 			adapter->has_link_events; | 
					
						
							| 
									
										
										
										
											2009-01-14 20:48:32 -08:00
										 |  |  | 	case NETXEN_BRDTYPE_P2_SB31_10G: | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:02 -07:00
										 |  |  | 	case NETXEN_BRDTYPE_P3_10G_XFP: | 
					
						
							| 
									
										
										
										
											2006-11-29 09:00:10 -08:00
										 |  |  | 		ecmd->supported |= SUPPORTED_FIBRE; | 
					
						
							|  |  |  | 		ecmd->advertising |= ADVERTISED_FIBRE; | 
					
						
							|  |  |  | 		ecmd->port = PORT_FIBRE; | 
					
						
							|  |  |  | 		ecmd->autoneg = AUTONEG_DISABLE; | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2009-01-14 20:48:32 -08:00
										 |  |  | 	case NETXEN_BRDTYPE_P3_10G_TP: | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:56 +00:00
										 |  |  | 		if (adapter->ahw.port_type == NETXEN_NIC_XGBE) { | 
					
						
							| 
									
										
										
										
											2009-01-14 20:48:32 -08:00
										 |  |  | 			ecmd->autoneg = AUTONEG_DISABLE; | 
					
						
							|  |  |  | 			ecmd->supported |= (SUPPORTED_FIBRE | SUPPORTED_TP); | 
					
						
							|  |  |  | 			ecmd->advertising |= | 
					
						
							|  |  |  | 				(ADVERTISED_FIBRE | ADVERTISED_TP); | 
					
						
							|  |  |  | 			ecmd->port = PORT_FIBRE; | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:42 +00:00
										 |  |  | 			check_sfp_module = netif_running(dev) && | 
					
						
							|  |  |  | 				adapter->has_link_events; | 
					
						
							| 
									
										
										
										
											2009-01-14 20:48:32 -08:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2012-11-04 19:46:08 +00:00
										 |  |  | 			ecmd->supported |= (SUPPORTED_TP | SUPPORTED_Autoneg); | 
					
						
							| 
									
										
										
										
											2009-01-14 20:48:32 -08:00
										 |  |  | 			ecmd->advertising |= | 
					
						
							|  |  |  | 				(ADVERTISED_TP | ADVERTISED_Autoneg); | 
					
						
							|  |  |  | 			ecmd->port = PORT_TP; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2006-11-29 09:00:10 -08:00
										 |  |  | 	default: | 
					
						
							| 
									
										
										
										
											2006-12-01 05:36:22 -08:00
										 |  |  | 		printk(KERN_ERR "netxen-nic: Unsupported board model %d\n", | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:38 +00:00
										 |  |  | 				adapter->ahw.board_type); | 
					
						
							| 
									
										
										
										
											2006-11-29 09:00:10 -08:00
										 |  |  | 		return -EIO; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:42 +00:00
										 |  |  | 	if (check_sfp_module) { | 
					
						
							|  |  |  | 		switch (adapter->module_type) { | 
					
						
							|  |  |  | 		case LINKEVENT_MODULE_OPTICAL_UNKNOWN: | 
					
						
							|  |  |  | 		case LINKEVENT_MODULE_OPTICAL_SRLR: | 
					
						
							|  |  |  | 		case LINKEVENT_MODULE_OPTICAL_LRM: | 
					
						
							|  |  |  | 		case LINKEVENT_MODULE_OPTICAL_SFP_1G: | 
					
						
							|  |  |  | 			ecmd->port = PORT_FIBRE; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case LINKEVENT_MODULE_TWINAX_UNSUPPORTED_CABLE: | 
					
						
							|  |  |  | 		case LINKEVENT_MODULE_TWINAX_UNSUPPORTED_CABLELEN: | 
					
						
							|  |  |  | 		case LINKEVENT_MODULE_TWINAX: | 
					
						
							|  |  |  | 			ecmd->port = PORT_TP; | 
					
						
							| 
									
										
										
										
											2009-04-28 15:29:09 +00:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:42 +00:00
										 |  |  | 		default: | 
					
						
							|  |  |  | 			ecmd->port = -1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:15 +00:00
										 |  |  | 	if (!netif_running(dev) || !adapter->ahw.linkup) { | 
					
						
							|  |  |  | 		ecmd->duplex = DUPLEX_UNKNOWN; | 
					
						
							|  |  |  | 		ethtool_cmd_speed_set(ecmd, SPEED_UNKNOWN); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-11-29 09:00:10 -08:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | netxen_nic_set_settings(struct net_device *dev, struct ethtool_cmd *ecmd) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-04-20 07:52:37 -07:00
										 |  |  | 	struct netxen_adapter *adapter = netdev_priv(dev); | 
					
						
							| 
									
										
										
										
											2011-04-27 18:32:39 +00:00
										 |  |  | 	u32 speed = ethtool_cmd_speed(ecmd); | 
					
						
							| 
									
										
										
										
											2011-03-15 14:54:55 -07:00
										 |  |  | 	int ret; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-15 14:54:55 -07:00
										 |  |  | 	if (adapter->ahw.port_type != NETXEN_NIC_GBE) | 
					
						
							|  |  |  | 		return -EOPNOTSUPP; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!(adapter->capabilities & NX_FW_CAPABILITY_GBE_LINK_CFG)) | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 		return -EOPNOTSUPP; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-27 18:32:39 +00:00
										 |  |  | 	ret = nx_fw_cmd_set_gbe_port(adapter, speed, ecmd->duplex, | 
					
						
							| 
									
										
										
										
											2011-03-15 14:54:55 -07:00
										 |  |  | 				     ecmd->autoneg); | 
					
						
							|  |  |  | 	if (ret == NX_RCODE_NOT_SUPPORTED) | 
					
						
							|  |  |  | 		return -EOPNOTSUPP; | 
					
						
							|  |  |  | 	else if (ret) | 
					
						
							|  |  |  | 		return -EIO; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-27 18:32:39 +00:00
										 |  |  | 	adapter->link_speed = speed; | 
					
						
							| 
									
										
										
										
											2011-03-15 14:54:55 -07:00
										 |  |  | 	adapter->link_duplex = ecmd->duplex; | 
					
						
							|  |  |  | 	adapter->link_autoneg = ecmd->autoneg; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-21 17:32:15 -08:00
										 |  |  | 	if (!netif_running(dev)) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dev->netdev_ops->ndo_stop(dev); | 
					
						
							|  |  |  | 	return dev->netdev_ops->ndo_open(dev); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int netxen_nic_get_regs_len(struct net_device *dev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return NETXEN_NIC_REGS_LEN; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | netxen_nic_get_regs(struct net_device *dev, struct ethtool_regs *regs, void *p) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-04-20 07:52:37 -07:00
										 |  |  | 	struct netxen_adapter *adapter = netdev_priv(dev); | 
					
						
							| 
									
										
										
										
											2010-01-02 03:25:18 +00:00
										 |  |  | 	struct netxen_recv_context *recv_ctx = &adapter->recv_ctx; | 
					
						
							|  |  |  | 	struct nx_host_sds_ring *sds_ring; | 
					
						
							|  |  |  | 	u32 *regs_buff = p; | 
					
						
							|  |  |  | 	int ring, i = 0; | 
					
						
							|  |  |  | 	int port = adapter->physical_port; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	memset(p, 0, NETXEN_NIC_REGS_LEN); | 
					
						
							| 
									
										
										
										
											2010-01-02 03:25:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	regs->version = (1 << 24) | (adapter->ahw.revision_id << 16) | | 
					
						
							| 
									
										
										
										
											2007-04-20 07:52:37 -07:00
										 |  |  | 	    (adapter->pdev)->device; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-02 03:25:18 +00:00
										 |  |  | 	if (adapter->is_up != NETXEN_ADAPTER_UP_MAGIC) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	regs_buff[i++] = NXRD32(adapter, CRB_CMDPEG_STATE); | 
					
						
							|  |  |  | 	regs_buff[i++] = NXRD32(adapter, CRB_RCVPEG_STATE); | 
					
						
							|  |  |  | 	regs_buff[i++] = NXRD32(adapter, CRB_FW_CAPABILITIES_1); | 
					
						
							|  |  |  | 	regs_buff[i++] = NXRDIO(adapter, adapter->crb_int_state_reg); | 
					
						
							|  |  |  | 	regs_buff[i++] = NXRD32(adapter, NX_CRB_DEV_REF_COUNT); | 
					
						
							|  |  |  | 	regs_buff[i++] = NXRD32(adapter, NX_CRB_DEV_STATE); | 
					
						
							|  |  |  | 	regs_buff[i++] = NXRD32(adapter, NETXEN_PEG_ALIVE_COUNTER); | 
					
						
							|  |  |  | 	regs_buff[i++] = NXRD32(adapter, NETXEN_PEG_HALT_STATUS1); | 
					
						
							|  |  |  | 	regs_buff[i++] = NXRD32(adapter, NETXEN_PEG_HALT_STATUS2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	regs_buff[i++] = NXRD32(adapter, NETXEN_CRB_PEG_NET_0+0x3c); | 
					
						
							|  |  |  | 	regs_buff[i++] = NXRD32(adapter, NETXEN_CRB_PEG_NET_1+0x3c); | 
					
						
							|  |  |  | 	regs_buff[i++] = NXRD32(adapter, NETXEN_CRB_PEG_NET_2+0x3c); | 
					
						
							|  |  |  | 	regs_buff[i++] = NXRD32(adapter, NETXEN_CRB_PEG_NET_3+0x3c); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		regs_buff[i++] = NXRD32(adapter, NETXEN_CRB_PEG_NET_4+0x3c); | 
					
						
							|  |  |  | 		i += 2; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		regs_buff[i++] = NXRD32(adapter, CRB_XG_STATE_P3); | 
					
						
							|  |  |  | 		regs_buff[i++] = le32_to_cpu(*(adapter->tx_ring->hw_consumer)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		i++; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		regs_buff[i++] = NXRD32(adapter, | 
					
						
							|  |  |  | 					NETXEN_NIU_XGE_CONFIG_0+(0x10000*port)); | 
					
						
							|  |  |  | 		regs_buff[i++] = NXRD32(adapter, | 
					
						
							|  |  |  | 					NETXEN_NIU_XGE_CONFIG_1+(0x10000*port)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		regs_buff[i++] = NXRD32(adapter, CRB_XG_STATE); | 
					
						
							|  |  |  | 		regs_buff[i++] = NXRDIO(adapter, | 
					
						
							|  |  |  | 				 adapter->tx_ring->crb_cmd_consumer); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	regs_buff[i++] = NXRDIO(adapter, adapter->tx_ring->crb_cmd_producer); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	regs_buff[i++] = NXRDIO(adapter, | 
					
						
							|  |  |  | 			 recv_ctx->rds_rings[0].crb_rcv_producer); | 
					
						
							|  |  |  | 	regs_buff[i++] = NXRDIO(adapter, | 
					
						
							|  |  |  | 			 recv_ctx->rds_rings[1].crb_rcv_producer); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	regs_buff[i++] = adapter->max_sds_rings; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (ring = 0; ring < adapter->max_sds_rings; ring++) { | 
					
						
							|  |  |  | 		sds_ring = &(recv_ctx->sds_rings[ring]); | 
					
						
							|  |  |  | 		regs_buff[i++] = NXRDIO(adapter, | 
					
						
							|  |  |  | 					sds_ring->crb_sts_consumer); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-09 05:49:08 -08:00
										 |  |  | static u32 netxen_nic_test_link(struct net_device *dev) | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-04-20 07:52:37 -07:00
										 |  |  | 	struct netxen_adapter *adapter = netdev_priv(dev); | 
					
						
							| 
									
										
										
										
											2010-01-02 03:25:19 +00:00
										 |  |  | 	u32 val, port; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-02 03:25:19 +00:00
										 |  |  | 	port = adapter->physical_port; | 
					
						
							|  |  |  | 	if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) { | 
					
						
							|  |  |  | 		val = NXRD32(adapter, CRB_XG_STATE_P3); | 
					
						
							|  |  |  | 		val = XG_LINK_STATE_P3(adapter->ahw.pci_func, val); | 
					
						
							|  |  |  | 		return (val == XG_LINK_UP_P3) ? 0 : 1; | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 		val = NXRD32(adapter, CRB_XG_STATE); | 
					
						
							| 
									
										
										
										
											2010-01-02 03:25:19 +00:00
										 |  |  | 		val = (val >> port*8) & 0xff; | 
					
						
							| 
									
										
										
										
											2007-02-28 05:14:07 -08:00
										 |  |  | 		return (val == XG_LINK_UP) ? 0 : 1; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | netxen_nic_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, | 
					
						
							| 
									
										
										
										
											2012-11-04 19:46:08 +00:00
										 |  |  | 		      u8 *bytes) | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-04-20 07:52:37 -07:00
										 |  |  | 	struct netxen_adapter *adapter = netdev_priv(dev); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	int offset; | 
					
						
							| 
									
										
										
										
											2007-02-05 07:40:49 -08:00
										 |  |  | 	int ret; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (eeprom->len == 0) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-23 21:23:36 -05:00
										 |  |  | 	eeprom->magic = (adapter->pdev)->vendor | | 
					
						
							| 
									
										
										
										
											2007-04-20 07:52:37 -07:00
										 |  |  | 			((adapter->pdev)->device << 16); | 
					
						
							| 
									
										
										
										
											2007-02-05 07:40:49 -08:00
										 |  |  | 	offset = eeprom->offset; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-23 21:23:36 -05:00
										 |  |  | 	ret = netxen_rom_fast_read_words(adapter, offset, bytes, | 
					
						
							| 
									
										
										
										
											2007-02-05 07:40:49 -08:00
										 |  |  | 						eeprom->len); | 
					
						
							|  |  |  | 	if (ret < 0) | 
					
						
							|  |  |  | 		return ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							| 
									
										
										
										
											2009-07-27 11:15:54 -07:00
										 |  |  | netxen_nic_get_ringparam(struct net_device *dev, | 
					
						
							|  |  |  | 		struct ethtool_ringparam *ring) | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-04-20 07:52:37 -07:00
										 |  |  | 	struct netxen_adapter *adapter = netdev_priv(dev); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 11:08:00 -07:00
										 |  |  | 	ring->rx_pending = adapter->num_rxd; | 
					
						
							|  |  |  | 	ring->rx_jumbo_pending = adapter->num_jumbo_rxd; | 
					
						
							|  |  |  | 	ring->rx_jumbo_pending += adapter->num_lro_rxd; | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:03 +00:00
										 |  |  | 	ring->tx_pending = adapter->num_txd; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 11:08:00 -07:00
										 |  |  | 	if (adapter->ahw.port_type == NETXEN_NIC_GBE) { | 
					
						
							| 
									
										
										
										
											2009-01-26 12:35:19 -08:00
										 |  |  | 		ring->rx_max_pending = MAX_RCV_DESCRIPTORS_1G; | 
					
						
							| 
									
										
										
										
											2009-07-27 11:08:00 -07:00
										 |  |  | 		ring->rx_jumbo_max_pending = MAX_JUMBO_RCV_DESCRIPTORS_1G; | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2009-01-26 12:35:19 -08:00
										 |  |  | 		ring->rx_max_pending = MAX_RCV_DESCRIPTORS_10G; | 
					
						
							| 
									
										
										
										
											2009-07-27 11:08:00 -07:00
										 |  |  | 		ring->rx_jumbo_max_pending = MAX_JUMBO_RCV_DESCRIPTORS_10G; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ring->tx_max_pending = MAX_CMD_DESCRIPTORS; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 11:15:54 -07:00
										 |  |  | static u32 | 
					
						
							|  |  |  | netxen_validate_ringparam(u32 val, u32 min, u32 max, char *r_name) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u32 num_desc; | 
					
						
							|  |  |  | 	num_desc = max(val, min); | 
					
						
							|  |  |  | 	num_desc = min(num_desc, max); | 
					
						
							|  |  |  | 	num_desc = roundup_pow_of_two(num_desc); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (val != num_desc) { | 
					
						
							|  |  |  | 		printk(KERN_INFO "%s: setting %s ring size %d instead of %d\n", | 
					
						
							|  |  |  | 		       netxen_nic_driver_name, r_name, num_desc, val); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return num_desc; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | netxen_nic_set_ringparam(struct net_device *dev, | 
					
						
							|  |  |  | 		struct ethtool_ringparam *ring) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = netdev_priv(dev); | 
					
						
							|  |  |  | 	u16 max_rcv_desc = MAX_RCV_DESCRIPTORS_10G; | 
					
						
							|  |  |  | 	u16 max_jumbo_desc = MAX_JUMBO_RCV_DESCRIPTORS_10G; | 
					
						
							|  |  |  | 	u16 num_rxd, num_jumbo_rxd, num_txd; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (NX_IS_REVISION_P2(adapter->ahw.revision_id)) | 
					
						
							|  |  |  | 		return -EOPNOTSUPP; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (ring->rx_mini_pending) | 
					
						
							|  |  |  | 		return -EOPNOTSUPP; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (adapter->ahw.port_type == NETXEN_NIC_GBE) { | 
					
						
							|  |  |  | 		max_rcv_desc = MAX_RCV_DESCRIPTORS_1G; | 
					
						
							|  |  |  | 		max_jumbo_desc = MAX_JUMBO_RCV_DESCRIPTORS_10G; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	num_rxd = netxen_validate_ringparam(ring->rx_pending, | 
					
						
							|  |  |  | 			MIN_RCV_DESCRIPTORS, max_rcv_desc, "rx"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	num_jumbo_rxd = netxen_validate_ringparam(ring->rx_jumbo_pending, | 
					
						
							|  |  |  | 			MIN_JUMBO_DESCRIPTORS, max_jumbo_desc, "rx jumbo"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	num_txd = netxen_validate_ringparam(ring->tx_pending, | 
					
						
							|  |  |  | 			MIN_CMD_DESCRIPTORS, MAX_CMD_DESCRIPTORS, "tx"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (num_rxd == adapter->num_rxd && num_txd == adapter->num_txd && | 
					
						
							|  |  |  | 			num_jumbo_rxd == adapter->num_jumbo_rxd) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	adapter->num_rxd = num_rxd; | 
					
						
							|  |  |  | 	adapter->num_jumbo_rxd = num_jumbo_rxd; | 
					
						
							|  |  |  | 	adapter->num_txd = num_txd; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return netxen_nic_reset_context(adapter); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | static void | 
					
						
							|  |  |  | netxen_nic_get_pauseparam(struct net_device *dev, | 
					
						
							|  |  |  | 			  struct ethtool_pauseparam *pause) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-04-20 07:52:37 -07:00
										 |  |  | 	struct netxen_adapter *adapter = netdev_priv(dev); | 
					
						
							| 
									
										
										
										
											2007-01-02 10:39:10 +00:00
										 |  |  | 	__u32 val; | 
					
						
							| 
									
										
										
										
											2008-06-15 22:59:44 -07:00
										 |  |  | 	int port = adapter->physical_port; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-26 14:39:53 +00:00
										 |  |  | 	pause->autoneg = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:56 +00:00
										 |  |  | 	if (adapter->ahw.port_type == NETXEN_NIC_GBE) { | 
					
						
							| 
									
										
										
										
											2012-06-19 21:27:39 +00:00
										 |  |  | 		if ((port < 0) || (port >= NETXEN_NIU_MAX_GBE_PORTS)) | 
					
						
							| 
									
										
										
										
											2007-04-20 07:55:26 -07:00
										 |  |  | 			return; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 		/* get flow control settings */ | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 		val = NXRD32(adapter, NETXEN_NIU_GB_MAC_CONFIG_0(port)); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 		pause->rx_pause = netxen_gb_get_rx_flowctl(val); | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 		val = NXRD32(adapter, NETXEN_NIU_GB_PAUSE_CTL); | 
					
						
							| 
									
										
										
										
											2007-04-20 07:55:26 -07:00
										 |  |  | 		switch (port) { | 
					
						
							| 
									
										
										
										
											2012-11-04 19:46:08 +00:00
										 |  |  | 		case 0: | 
					
						
							|  |  |  | 			pause->tx_pause = !(netxen_gb_get_gb0_mask(val)); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 1: | 
					
						
							|  |  |  | 			pause->tx_pause = !(netxen_gb_get_gb1_mask(val)); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 2: | 
					
						
							|  |  |  | 			pause->tx_pause = !(netxen_gb_get_gb2_mask(val)); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 3: | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			pause->tx_pause = !(netxen_gb_get_gb3_mask(val)); | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2007-04-20 07:55:26 -07:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:56 +00:00
										 |  |  | 	} else if (adapter->ahw.port_type == NETXEN_NIC_XGBE) { | 
					
						
							| 
									
										
										
										
											2012-06-20 00:52:58 +00:00
										 |  |  | 		if ((port < 0) || (port >= NETXEN_NIU_MAX_XG_PORTS)) | 
					
						
							| 
									
										
										
										
											2007-04-20 07:55:26 -07:00
										 |  |  | 			return; | 
					
						
							|  |  |  | 		pause->rx_pause = 1; | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 		val = NXRD32(adapter, NETXEN_NIU_XG_PAUSE_CTL); | 
					
						
							| 
									
										
										
										
											2007-04-20 07:55:26 -07:00
										 |  |  | 		if (port == 0) | 
					
						
							|  |  |  | 			pause->tx_pause = !(netxen_xg_get_xg0_mask(val)); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			pause->tx_pause = !(netxen_xg_get_xg1_mask(val)); | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2007-11-23 21:23:36 -05:00
										 |  |  | 		printk(KERN_ERR"%s: Unknown board type: %x\n", | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:56 +00:00
										 |  |  | 				netxen_nic_driver_name, adapter->ahw.port_type); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | netxen_nic_set_pauseparam(struct net_device *dev, | 
					
						
							|  |  |  | 			  struct ethtool_pauseparam *pause) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-04-20 07:52:37 -07:00
										 |  |  | 	struct netxen_adapter *adapter = netdev_priv(dev); | 
					
						
							| 
									
										
										
										
											2007-01-02 10:39:10 +00:00
										 |  |  | 	__u32 val; | 
					
						
							| 
									
										
										
										
											2008-06-15 22:59:44 -07:00
										 |  |  | 	int port = adapter->physical_port; | 
					
						
							| 
									
										
										
										
											2012-10-26 14:39:53 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* not supported */ | 
					
						
							|  |  |  | 	if (pause->autoneg) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	/* read mode */ | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:56 +00:00
										 |  |  | 	if (adapter->ahw.port_type == NETXEN_NIC_GBE) { | 
					
						
							| 
									
										
										
										
											2012-06-19 21:27:39 +00:00
										 |  |  | 		if ((port < 0) || (port >= NETXEN_NIU_MAX_GBE_PORTS)) | 
					
						
							| 
									
										
										
										
											2007-04-20 07:55:26 -07:00
										 |  |  | 			return -EIO; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 		/* set flow control */ | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 		val = NXRD32(adapter, NETXEN_NIU_GB_MAC_CONFIG_0(port)); | 
					
						
							| 
									
										
										
										
											2007-11-23 21:23:36 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 		if (pause->rx_pause) | 
					
						
							|  |  |  | 			netxen_gb_rx_flowctl(val); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			netxen_gb_unset_rx_flowctl(val); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 		NXWR32(adapter, NETXEN_NIU_GB_MAC_CONFIG_0(port), | 
					
						
							| 
									
										
										
										
											2007-04-20 07:55:26 -07:00
										 |  |  | 				val); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 		/* set autoneg */ | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 		val = NXRD32(adapter, NETXEN_NIU_GB_PAUSE_CTL); | 
					
						
							| 
									
										
										
										
											2007-04-20 07:55:26 -07:00
										 |  |  | 		switch (port) { | 
					
						
							| 
									
										
										
										
											2012-11-04 19:46:08 +00:00
										 |  |  | 		case 0: | 
					
						
							|  |  |  | 			if (pause->tx_pause) | 
					
						
							|  |  |  | 				netxen_gb_unset_gb0_mask(val); | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				netxen_gb_set_gb0_mask(val); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 1: | 
					
						
							|  |  |  | 			if (pause->tx_pause) | 
					
						
							|  |  |  | 				netxen_gb_unset_gb1_mask(val); | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				netxen_gb_set_gb1_mask(val); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 2: | 
					
						
							|  |  |  | 			if (pause->tx_pause) | 
					
						
							|  |  |  | 				netxen_gb_unset_gb2_mask(val); | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				netxen_gb_set_gb2_mask(val); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 3: | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			if (pause->tx_pause) | 
					
						
							|  |  |  | 				netxen_gb_unset_gb3_mask(val); | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				netxen_gb_set_gb3_mask(val); | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2007-04-20 07:55:26 -07:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 		NXWR32(adapter, NETXEN_NIU_GB_PAUSE_CTL, val); | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:56 +00:00
										 |  |  | 	} else if (adapter->ahw.port_type == NETXEN_NIC_XGBE) { | 
					
						
							| 
									
										
										
										
											2012-06-20 00:52:58 +00:00
										 |  |  | 		if ((port < 0) || (port >= NETXEN_NIU_MAX_XG_PORTS)) | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 			return -EIO; | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 		val = NXRD32(adapter, NETXEN_NIU_XG_PAUSE_CTL); | 
					
						
							| 
									
										
										
										
											2007-04-20 07:55:26 -07:00
										 |  |  | 		if (port == 0) { | 
					
						
							|  |  |  | 			if (pause->tx_pause) | 
					
						
							|  |  |  | 				netxen_xg_unset_xg0_mask(val); | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				netxen_xg_set_xg0_mask(val); | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			if (pause->tx_pause) | 
					
						
							|  |  |  | 				netxen_xg_unset_xg1_mask(val); | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				netxen_xg_set_xg1_mask(val); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 		NXWR32(adapter, NETXEN_NIU_XG_PAUSE_CTL, val); | 
					
						
							| 
									
										
										
										
											2007-04-20 07:55:26 -07:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		printk(KERN_ERR "%s: Unknown board type: %x\n", | 
					
						
							| 
									
										
										
										
											2007-11-23 21:23:36 -05:00
										 |  |  | 				netxen_nic_driver_name, | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:56 +00:00
										 |  |  | 				adapter->ahw.port_type); | 
					
						
							| 
									
										
										
										
											2007-04-20 07:55:26 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int netxen_nic_reg_test(struct net_device *dev) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-02-28 05:14:07 -08:00
										 |  |  | 	struct netxen_adapter *adapter = netdev_priv(dev); | 
					
						
							|  |  |  | 	u32 data_read, data_written; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 	data_read = NXRD32(adapter, NETXEN_PCIX_PH_REG(0)); | 
					
						
							| 
									
										
										
										
											2009-10-24 16:04:00 +00:00
										 |  |  | 	if ((data_read & 0xffff) != adapter->pdev->vendor) | 
					
						
							|  |  |  | 		return 1; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-11 23:53:02 +00:00
										 |  |  | 	if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-28 05:14:07 -08:00
										 |  |  | 	data_written = (u32)0xa5a5a5a5; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 	NXWR32(adapter, CRB_SCRATCHPAD_TEST, data_written); | 
					
						
							|  |  |  | 	data_read = NXRD32(adapter, CRB_SCRATCHPAD_TEST); | 
					
						
							| 
									
										
										
										
											2007-02-28 05:14:07 -08:00
										 |  |  | 	if (data_written != data_read) | 
					
						
							|  |  |  | 		return 1; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-28 05:14:07 -08:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-03 18:07:32 -07:00
										 |  |  | static int netxen_get_sset_count(struct net_device *dev, int sset) | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-10-03 18:07:32 -07:00
										 |  |  | 	switch (sset) { | 
					
						
							|  |  |  | 	case ETH_SS_TEST: | 
					
						
							|  |  |  | 		return NETXEN_NIC_TEST_LEN; | 
					
						
							|  |  |  | 	case ETH_SS_STATS: | 
					
						
							|  |  |  | 		return NETXEN_NIC_STATS_LEN; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		return -EOPNOTSUPP; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | netxen_nic_diag_test(struct net_device *dev, struct ethtool_test *eth_test, | 
					
						
							| 
									
										
										
										
											2012-11-04 19:46:08 +00:00
										 |  |  | 		     u64 *data) | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-04-20 07:55:26 -07:00
										 |  |  | 	memset(data, 0, sizeof(uint64_t) * NETXEN_NIC_TEST_LEN); | 
					
						
							|  |  |  | 	if ((data[0] = netxen_nic_reg_test(dev))) | 
					
						
							|  |  |  | 		eth_test->flags |= ETH_TEST_FL_FAILED; | 
					
						
							|  |  |  | 	/* link test */ | 
					
						
							|  |  |  | 	if ((data[1] = (u64) netxen_nic_test_link(dev))) | 
					
						
							|  |  |  | 		eth_test->flags |= ETH_TEST_FL_FAILED; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							| 
									
										
										
										
											2012-11-04 19:46:08 +00:00
										 |  |  | netxen_nic_get_strings(struct net_device *dev, u32 stringset, u8 *data) | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | { | 
					
						
							|  |  |  | 	int index; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (stringset) { | 
					
						
							|  |  |  | 	case ETH_SS_TEST: | 
					
						
							|  |  |  | 		memcpy(data, *netxen_nic_gstrings_test, | 
					
						
							|  |  |  | 		       NETXEN_NIC_TEST_LEN * ETH_GSTRING_LEN); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case ETH_SS_STATS: | 
					
						
							|  |  |  | 		for (index = 0; index < NETXEN_NIC_STATS_LEN; index++) { | 
					
						
							|  |  |  | 			memcpy(data + index * ETH_GSTRING_LEN, | 
					
						
							|  |  |  | 			       netxen_nic_gstrings_stats[index].stat_string, | 
					
						
							|  |  |  | 			       ETH_GSTRING_LEN); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | netxen_nic_get_ethtool_stats(struct net_device *dev, | 
					
						
							| 
									
										
										
										
											2012-11-04 19:46:08 +00:00
										 |  |  | 			     struct ethtool_stats *stats, u64 *data) | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-04-20 07:52:37 -07:00
										 |  |  | 	struct netxen_adapter *adapter = netdev_priv(dev); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	int index; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (index = 0; index < NETXEN_NIC_STATS_LEN; index++) { | 
					
						
							|  |  |  | 		char *p = | 
					
						
							| 
									
										
										
										
											2007-04-20 07:52:37 -07:00
										 |  |  | 		    (char *)adapter + | 
					
						
							|  |  |  | 		    netxen_nic_gstrings_stats[index].stat_offset; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 		data[index] = | 
					
						
							|  |  |  | 		    (netxen_nic_gstrings_stats[index].sizeof_stat == | 
					
						
							|  |  |  | 		     sizeof(u64)) ? *(u64 *) p : *(u32 *) p; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 16:38:44 -08:00
										 |  |  | static void | 
					
						
							|  |  |  | netxen_nic_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = netdev_priv(dev); | 
					
						
							|  |  |  | 	u32 wol_cfg = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wol->supported = 0; | 
					
						
							|  |  |  | 	wol->wolopts = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (NX_IS_REVISION_P2(adapter->ahw.revision_id)) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 	wol_cfg = NXRD32(adapter, NETXEN_WOL_CONFIG_NV); | 
					
						
							| 
									
										
										
										
											2009-02-24 16:38:44 -08:00
										 |  |  | 	if (wol_cfg & (1UL << adapter->portnum)) | 
					
						
							|  |  |  | 		wol->supported |= WAKE_MAGIC; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 	wol_cfg = NXRD32(adapter, NETXEN_WOL_CONFIG); | 
					
						
							| 
									
										
										
										
											2009-02-24 16:38:44 -08:00
										 |  |  | 	if (wol_cfg & (1UL << adapter->portnum)) | 
					
						
							|  |  |  | 		wol->wolopts |= WAKE_MAGIC; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | netxen_nic_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = netdev_priv(dev); | 
					
						
							|  |  |  | 	u32 wol_cfg = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (NX_IS_REVISION_P2(adapter->ahw.revision_id)) | 
					
						
							|  |  |  | 		return -EOPNOTSUPP; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (wol->wolopts & ~WAKE_MAGIC) | 
					
						
							|  |  |  | 		return -EOPNOTSUPP; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 	wol_cfg = NXRD32(adapter, NETXEN_WOL_CONFIG_NV); | 
					
						
							| 
									
										
										
										
											2009-02-24 16:38:44 -08:00
										 |  |  | 	if (!(wol_cfg & (1 << adapter->portnum))) | 
					
						
							|  |  |  | 		return -EOPNOTSUPP; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 	wol_cfg = NXRD32(adapter, NETXEN_WOL_CONFIG); | 
					
						
							| 
									
										
										
										
											2009-02-24 16:38:44 -08:00
										 |  |  | 	if (wol->wolopts & WAKE_MAGIC) | 
					
						
							|  |  |  | 		wol_cfg |= 1UL << adapter->portnum; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		wol_cfg &= ~(1UL << adapter->portnum); | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 	NXWR32(adapter, NETXEN_WOL_CONFIG, wol_cfg); | 
					
						
							| 
									
										
										
										
											2009-02-24 16:38:44 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:09 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Set the coalescing parameters. Currently only normal is supported. | 
					
						
							|  |  |  |  * If rx_coalesce_usecs == 0 or rx_max_coalesced_frames == 0 then set the | 
					
						
							|  |  |  |  * firmware coalescing to default. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int netxen_set_intr_coalesce(struct net_device *netdev, | 
					
						
							|  |  |  | 			struct ethtool_coalesce *ethcoal) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = netdev_priv(netdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!NX_IS_REVISION_P3(adapter->ahw.revision_id)) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (adapter->is_up != NETXEN_ADAPTER_UP_MAGIC) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	* Return Error if unsupported values or | 
					
						
							|  |  |  | 	* unsupported parameters are set. | 
					
						
							|  |  |  | 	*/ | 
					
						
							|  |  |  | 	if (ethcoal->rx_coalesce_usecs > 0xffff || | 
					
						
							|  |  |  | 		ethcoal->rx_max_coalesced_frames > 0xffff || | 
					
						
							|  |  |  | 		ethcoal->tx_coalesce_usecs > 0xffff || | 
					
						
							|  |  |  | 		ethcoal->tx_max_coalesced_frames > 0xffff || | 
					
						
							|  |  |  | 		ethcoal->rx_coalesce_usecs_irq || | 
					
						
							|  |  |  | 		ethcoal->rx_max_coalesced_frames_irq || | 
					
						
							|  |  |  | 		ethcoal->tx_coalesce_usecs_irq || | 
					
						
							|  |  |  | 		ethcoal->tx_max_coalesced_frames_irq || | 
					
						
							|  |  |  | 		ethcoal->stats_block_coalesce_usecs || | 
					
						
							|  |  |  | 		ethcoal->use_adaptive_rx_coalesce || | 
					
						
							|  |  |  | 		ethcoal->use_adaptive_tx_coalesce || | 
					
						
							|  |  |  | 		ethcoal->pkt_rate_low || | 
					
						
							|  |  |  | 		ethcoal->rx_coalesce_usecs_low || | 
					
						
							|  |  |  | 		ethcoal->rx_max_coalesced_frames_low || | 
					
						
							|  |  |  | 		ethcoal->tx_coalesce_usecs_low || | 
					
						
							|  |  |  | 		ethcoal->tx_max_coalesced_frames_low || | 
					
						
							|  |  |  | 		ethcoal->pkt_rate_high || | 
					
						
							|  |  |  | 		ethcoal->rx_coalesce_usecs_high || | 
					
						
							|  |  |  | 		ethcoal->rx_max_coalesced_frames_high || | 
					
						
							|  |  |  | 		ethcoal->tx_coalesce_usecs_high || | 
					
						
							|  |  |  | 		ethcoal->tx_max_coalesced_frames_high) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!ethcoal->rx_coalesce_usecs || | 
					
						
							|  |  |  | 		!ethcoal->rx_max_coalesced_frames) { | 
					
						
							|  |  |  | 		adapter->coal.flags = NETXEN_NIC_INTR_DEFAULT; | 
					
						
							|  |  |  | 		adapter->coal.normal.data.rx_time_us = | 
					
						
							|  |  |  | 			NETXEN_DEFAULT_INTR_COALESCE_RX_TIME_US; | 
					
						
							|  |  |  | 		adapter->coal.normal.data.rx_packets = | 
					
						
							|  |  |  | 			NETXEN_DEFAULT_INTR_COALESCE_RX_PACKETS; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		adapter->coal.flags = 0; | 
					
						
							|  |  |  | 		adapter->coal.normal.data.rx_time_us = | 
					
						
							|  |  |  | 		ethcoal->rx_coalesce_usecs; | 
					
						
							|  |  |  | 		adapter->coal.normal.data.rx_packets = | 
					
						
							|  |  |  | 		ethcoal->rx_max_coalesced_frames; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	adapter->coal.normal.data.tx_time_us = ethcoal->tx_coalesce_usecs; | 
					
						
							|  |  |  | 	adapter->coal.normal.data.tx_packets = | 
					
						
							|  |  |  | 	ethcoal->tx_max_coalesced_frames; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	netxen_config_intr_coalesce(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int netxen_get_intr_coalesce(struct net_device *netdev, | 
					
						
							|  |  |  | 			struct ethtool_coalesce *ethcoal) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = netdev_priv(netdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!NX_IS_REVISION_P3(adapter->ahw.revision_id)) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (adapter->is_up != NETXEN_ADAPTER_UP_MAGIC) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ethcoal->rx_coalesce_usecs = adapter->coal.normal.data.rx_time_us; | 
					
						
							|  |  |  | 	ethcoal->tx_coalesce_usecs = adapter->coal.normal.data.tx_time_us; | 
					
						
							|  |  |  | 	ethcoal->rx_max_coalesced_frames = | 
					
						
							|  |  |  | 		adapter->coal.normal.data.rx_packets; | 
					
						
							|  |  |  | 	ethcoal->tx_max_coalesced_frames = | 
					
						
							|  |  |  | 		adapter->coal.normal.data.tx_packets; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | static int | 
					
						
							|  |  |  | netxen_get_dump_flag(struct net_device *netdev, struct ethtool_dump *dump) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = netdev_priv(netdev); | 
					
						
							|  |  |  | 	struct netxen_minidump *mdump = &adapter->mdump; | 
					
						
							|  |  |  | 	if (adapter->fw_mdump_rdy) | 
					
						
							|  |  |  | 		dump->len = mdump->md_dump_size; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		dump->len = 0; | 
					
						
							| 
									
										
										
										
											2012-06-28 20:12:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!mdump->md_enabled) | 
					
						
							|  |  |  | 		dump->flag = ETH_FW_DUMP_DISABLE; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		dump->flag = mdump->md_capture_mask; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | 	dump->version = adapter->fw_version; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | netxen_set_dump(struct net_device *netdev, struct ethtool_dump *val) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-05-09 05:55:28 +00:00
										 |  |  | 	int i; | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | 	struct netxen_adapter *adapter = netdev_priv(netdev); | 
					
						
							|  |  |  | 	struct netxen_minidump *mdump = &adapter->mdump; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (val->flag) { | 
					
						
							|  |  |  | 	case NX_FORCE_FW_DUMP_KEY: | 
					
						
							| 
									
										
										
										
											2012-06-28 20:12:21 +00:00
										 |  |  | 		if (!mdump->md_enabled) { | 
					
						
							|  |  |  | 			netdev_info(netdev, "FW dump not enabled\n"); | 
					
						
							|  |  |  | 			return 0; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | 		if (adapter->fw_mdump_rdy) { | 
					
						
							|  |  |  | 			netdev_info(netdev, "Previous dump not cleared, not forcing dump\n"); | 
					
						
							| 
									
										
										
										
											2012-05-09 05:55:28 +00:00
										 |  |  | 			return 0; | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		netdev_info(netdev, "Forcing a fw dump\n"); | 
					
						
							|  |  |  | 		nx_dev_request_reset(adapter); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case NX_DISABLE_FW_DUMP: | 
					
						
							|  |  |  | 		if (mdump->md_enabled) { | 
					
						
							|  |  |  | 			netdev_info(netdev, "Disabling FW Dump\n"); | 
					
						
							|  |  |  | 			mdump->md_enabled = 0; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case NX_ENABLE_FW_DUMP: | 
					
						
							|  |  |  | 		if (!mdump->md_enabled) { | 
					
						
							|  |  |  | 			netdev_info(netdev, "Enabling FW dump\n"); | 
					
						
							|  |  |  | 			mdump->md_enabled = 1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case NX_FORCE_FW_RESET: | 
					
						
							|  |  |  | 		netdev_info(netdev, "Forcing FW reset\n"); | 
					
						
							|  |  |  | 		nx_dev_request_reset(adapter); | 
					
						
							|  |  |  | 		adapter->flags &= ~NETXEN_FW_RESET_OWNER; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							| 
									
										
										
										
											2012-05-09 05:55:28 +00:00
										 |  |  | 		for (i = 0; i < ARRAY_SIZE(FW_DUMP_LEVELS); i++) { | 
					
						
							|  |  |  | 			if (val->flag == FW_DUMP_LEVELS[i]) { | 
					
						
							|  |  |  | 				mdump->md_capture_mask = val->flag; | 
					
						
							|  |  |  | 				netdev_info(netdev, | 
					
						
							|  |  |  | 					"Driver mask changed to: 0x%x\n", | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | 					mdump->md_capture_mask); | 
					
						
							| 
									
										
										
										
											2012-05-09 05:55:28 +00:00
										 |  |  | 				return 0; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		netdev_info(netdev, | 
					
						
							|  |  |  | 			"Invalid dump level: 0x%x\n", val->flag); | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-09 05:55:28 +00:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | netxen_get_dump_data(struct net_device *netdev, struct ethtool_dump *dump, | 
					
						
							|  |  |  | 			void *buffer) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int i, copy_sz; | 
					
						
							|  |  |  | 	u32 *hdr_ptr, *data; | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = netdev_priv(netdev); | 
					
						
							|  |  |  | 	struct netxen_minidump *mdump = &adapter->mdump; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!adapter->fw_mdump_rdy) { | 
					
						
							|  |  |  | 		netdev_info(netdev, "Dump not available\n"); | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	/* Copy template header first */ | 
					
						
							|  |  |  | 	copy_sz = mdump->md_template_size; | 
					
						
							|  |  |  | 	hdr_ptr = (u32 *) mdump->md_template; | 
					
						
							|  |  |  | 	data = buffer; | 
					
						
							|  |  |  | 	for (i = 0; i < copy_sz/sizeof(u32); i++) | 
					
						
							|  |  |  | 		*data++ = cpu_to_le32(*hdr_ptr++); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Copy captured dump data */ | 
					
						
							|  |  |  | 	memcpy(buffer + copy_sz, | 
					
						
							|  |  |  | 		mdump->md_capture_buff + mdump->md_template_size, | 
					
						
							|  |  |  | 			mdump->md_capture_size); | 
					
						
							|  |  |  | 	dump->len = copy_sz + mdump->md_capture_size; | 
					
						
							|  |  |  | 	dump->flag = mdump->md_capture_mask; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Free dump area once data has been captured */ | 
					
						
							|  |  |  | 	vfree(mdump->md_capture_buff); | 
					
						
							|  |  |  | 	mdump->md_capture_buff = NULL; | 
					
						
							|  |  |  | 	adapter->fw_mdump_rdy = 0; | 
					
						
							|  |  |  | 	netdev_info(netdev, "extracted the fw dump Successfully\n"); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-02 01:03:33 -07:00
										 |  |  | const struct ethtool_ops netxen_nic_ethtool_ops = { | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	.get_settings = netxen_nic_get_settings, | 
					
						
							|  |  |  | 	.set_settings = netxen_nic_set_settings, | 
					
						
							|  |  |  | 	.get_drvinfo = netxen_nic_get_drvinfo, | 
					
						
							|  |  |  | 	.get_regs_len = netxen_nic_get_regs_len, | 
					
						
							|  |  |  | 	.get_regs = netxen_nic_get_regs, | 
					
						
							| 
									
										
										
										
											2007-02-09 05:49:08 -08:00
										 |  |  | 	.get_link = ethtool_op_get_link, | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	.get_eeprom_len = netxen_nic_get_eeprom_len, | 
					
						
							|  |  |  | 	.get_eeprom = netxen_nic_get_eeprom, | 
					
						
							|  |  |  | 	.get_ringparam = netxen_nic_get_ringparam, | 
					
						
							| 
									
										
										
										
											2009-07-27 11:15:54 -07:00
										 |  |  | 	.set_ringparam = netxen_nic_set_ringparam, | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	.get_pauseparam = netxen_nic_get_pauseparam, | 
					
						
							|  |  |  | 	.set_pauseparam = netxen_nic_set_pauseparam, | 
					
						
							| 
									
										
										
										
											2009-02-24 16:38:44 -08:00
										 |  |  | 	.get_wol = netxen_nic_get_wol, | 
					
						
							|  |  |  | 	.set_wol = netxen_nic_set_wol, | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	.self_test = netxen_nic_diag_test, | 
					
						
							|  |  |  | 	.get_strings = netxen_nic_get_strings, | 
					
						
							|  |  |  | 	.get_ethtool_stats = netxen_nic_get_ethtool_stats, | 
					
						
							| 
									
										
										
										
											2007-10-03 18:07:32 -07:00
										 |  |  | 	.get_sset_count = netxen_get_sset_count, | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:09 -07:00
										 |  |  | 	.get_coalesce = netxen_get_intr_coalesce, | 
					
						
							|  |  |  | 	.set_coalesce = netxen_set_intr_coalesce, | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | 	.get_dump_flag = netxen_get_dump_flag, | 
					
						
							|  |  |  | 	.get_dump_data = netxen_get_dump_data, | 
					
						
							|  |  |  | 	.set_dump = netxen_set_dump, | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | }; |