| 
									
										
										
										
											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 cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files.  percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed.  Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability.  As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
  http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
  only the necessary includes are there.  ie. if only gfp is used,
  gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
  blocks and try to put the new include such that its order conforms
  to its surrounding.  It's put in the include block which contains
  core kernel includes, in the same order that the rest are ordered -
  alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
  doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
  because the file doesn't have fitting include block), it prints out
  an error message indicating which .h file needs to be added to the
  file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
   over 4000 files, deleting around 700 includes and adding ~480 gfp.h
   and ~3000 slab.h inclusions.  The script emitted errors for ~400
   files.
2. Each error was manually checked.  Some didn't need the inclusion,
   some needed manual addition while adding it to implementation .h or
   embedding .c file was more appropriate for others.  This step added
   inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
   from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
   e.g. lib/decompress_*.c used malloc/free() wrappers around slab
   APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
   editing them as sprinkling gfp.h and slab.h inclusions around .h
   files could easily lead to inclusion dependency hell.  Most gfp.h
   inclusion directives were ignored as stuff from gfp.h was usually
   wildly available and often used in preprocessor macros.  Each
   slab.h inclusion directive was examined and added manually as
   necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
   were fixed.  CONFIG_GCOV_KERNEL was turned off for all tests (as my
   distributed build env didn't work with gcov compiles) and a few
   more options had to be turned off depending on archs to make things
   build (like ipr on powerpc/64 which failed due to missing writeq).
   * x86 and x86_64 UP and SMP allmodconfig and a custom test config.
   * powerpc and powerpc64 SMP allmodconfig
   * sparc and sparc64 SMP allmodconfig
   * ia64 SMP allmodconfig
   * s390 SMP allmodconfig
   * alpha SMP allmodconfig
   * um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
   a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
											
										 
											2010-03-24 17:04:11 +09:00
										 |  |  | #include <linux/slab.h>
 | 
					
						
							| 
									
										
										
										
											2006-11-29 09:00:10 -08:00
										 |  |  | #include <linux/vmalloc.h>
 | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:38 +00:00
										 |  |  | #include <linux/interrupt.h>
 | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | #include "netxen_nic_hw.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "netxen_nic.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-11-07 05:12:16 -05:00
										 |  |  | #include <linux/dma-mapping.h>
 | 
					
						
							| 
									
										
										
										
											2009-01-14 20:48:11 -08:00
										 |  |  | #include <linux/if_vlan.h>
 | 
					
						
							| 
									
										
										
										
											2007-03-12 20:09:15 -03:00
										 |  |  | #include <net/ip.h>
 | 
					
						
							| 
									
										
										
										
											2009-01-16 11:03:25 -08:00
										 |  |  | #include <linux/ipv6.h>
 | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:37 +00:00
										 |  |  | #include <linux/inetdevice.h>
 | 
					
						
							| 
									
										
										
										
											2009-10-26 12:09:45 +00:00
										 |  |  | #include <linux/sysfs.h>
 | 
					
						
							| 
									
										
										
										
											2009-12-08 20:40:56 +00:00
										 |  |  | #include <linux/aer.h>
 | 
					
						
							| 
									
										
										
										
											2006-11-07 05:12:16 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-31 10:55:38 -08:00
										 |  |  | MODULE_DESCRIPTION("QLogic/NetXen (1/10) GbE Intelligent Ethernet Driver"); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | MODULE_LICENSE("GPL"); | 
					
						
							|  |  |  | MODULE_VERSION(NETXEN_NIC_LINUX_VERSIONID); | 
					
						
							| 
									
										
										
										
											2009-10-24 16:04:02 +00:00
										 |  |  | MODULE_FIRMWARE(NX_UNIFIED_ROMIMAGE_NAME); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-19 14:41:09 +05:30
										 |  |  | char netxen_nic_driver_name[] = "netxen_nic"; | 
					
						
							| 
									
										
										
										
											2009-10-28 04:11:04 -07:00
										 |  |  | static char netxen_nic_driver_string[] = "QLogic/NetXen Network Driver v" | 
					
						
							| 
									
										
										
										
											2006-11-29 09:00:10 -08:00
										 |  |  |     NETXEN_NIC_LINUX_VERSIONID; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | static int port_mode = NETXEN_PORT_MODE_AUTO_NEG; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Default to restricted 1G auto-neg mode */ | 
					
						
							|  |  |  | static int wol_port_mode = 5; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int use_msi = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int use_msi_x = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-18 20:13:35 -08:00
										 |  |  | static int auto_fw_reset = AUTO_FW_RESET_ENABLED; | 
					
						
							|  |  |  | module_param(auto_fw_reset, int, 0644); | 
					
						
							|  |  |  | MODULE_PARM_DESC(auto_fw_reset,"Auto firmware reset (0=disabled, 1=enabled"); | 
					
						
							| 
									
										
										
										
											2009-10-16 15:50:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-03 09:23:24 -05:00
										 |  |  | static int netxen_nic_probe(struct pci_dev *pdev, | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 		const struct pci_device_id *ent); | 
					
						
							| 
									
										
										
										
											2012-12-03 09:23:24 -05:00
										 |  |  | static void netxen_nic_remove(struct pci_dev *pdev); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | static int netxen_nic_open(struct net_device *netdev); | 
					
						
							|  |  |  | static int netxen_nic_close(struct net_device *netdev); | 
					
						
							| 
									
										
										
										
											2009-08-31 19:50:58 +00:00
										 |  |  | static netdev_tx_t netxen_nic_xmit_frame(struct sk_buff *, | 
					
						
							|  |  |  | 					       struct net_device *); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | static void netxen_tx_timeout(struct net_device *netdev); | 
					
						
							| 
									
										
										
										
											2009-09-11 11:28:14 +00:00
										 |  |  | static void netxen_tx_timeout_task(struct work_struct *work); | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | static void netxen_fw_poll_work(struct work_struct *work); | 
					
						
							|  |  |  | static void netxen_schedule_work(struct netxen_adapter *adapter, | 
					
						
							|  |  |  | 		work_func_t func, int delay); | 
					
						
							|  |  |  | static void netxen_cancel_fw_work(struct netxen_adapter *adapter); | 
					
						
							| 
									
										
											  
											
												[NET]: Make NAPI polling independent of struct net_device objects.
Several devices have multiple independant RX queues per net
device, and some have a single interrupt doorbell for several
queues.
In either case, it's easier to support layouts like that if the
structure representing the poll is independant from the net
device itself.
The signature of the ->poll() call back goes from:
	int foo_poll(struct net_device *dev, int *budget)
to
	int foo_poll(struct napi_struct *napi, int budget)
The caller is returned the number of RX packets processed (or
the number of "NAPI credits" consumed if you want to get
abstract).  The callee no longer messes around bumping
dev->quota, *budget, etc. because that is all handled in the
caller upon return.
The napi_struct is to be embedded in the device driver private data
structures.
Furthermore, it is the driver's responsibility to disable all NAPI
instances in it's ->stop() device close handler.  Since the
napi_struct is privatized into the driver's private data structures,
only the driver knows how to get at all of the napi_struct instances
it may have per-device.
With lots of help and suggestions from Rusty Russell, Roland Dreier,
Michael Chan, Jeff Garzik, and Jamal Hadi Salim.
Bug fixes from Thomas Graf, Roland Dreier, Peter Zijlstra,
Joseph Fannin, Scott Wood, Hans J. Koch, and Michael Chan.
[ Ported to current tree and all drivers converted.  Integrated
  Stephen's follow-on kerneldoc additions, and restored poll_list
  handling to the old style to fix mutual exclusion issues.  -DaveM ]
Signed-off-by: Stephen Hemminger <shemminger@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
											
										 
											2007-10-03 16:41:36 -07:00
										 |  |  | static int netxen_nic_poll(struct napi_struct *napi, int budget); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | #ifdef CONFIG_NET_POLL_CONTROLLER
 | 
					
						
							|  |  |  | static void netxen_nic_poll_controller(struct net_device *netdev); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-08-24 19:23:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static void netxen_create_sysfs_entries(struct netxen_adapter *adapter); | 
					
						
							|  |  |  | static void netxen_remove_sysfs_entries(struct netxen_adapter *adapter); | 
					
						
							| 
									
										
										
										
											2009-10-13 05:31:45 +00:00
										 |  |  | static void netxen_create_diag_entries(struct netxen_adapter *adapter); | 
					
						
							|  |  |  | static void netxen_remove_diag_entries(struct netxen_adapter *adapter); | 
					
						
							| 
									
										
										
										
											2009-12-08 20:40:56 +00:00
										 |  |  | static int nx_dev_request_aer(struct netxen_adapter *adapter); | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | static int nx_decr_dev_ref_cnt(struct netxen_adapter *adapter); | 
					
						
							|  |  |  | static int netxen_can_start_firmware(struct netxen_adapter *adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-11-07 05:12:16 -05:00
										 |  |  | static irqreturn_t netxen_intr(int irq, void *data); | 
					
						
							| 
									
										
										
										
											2008-03-17 19:59:49 -07:00
										 |  |  | static irqreturn_t netxen_msi_intr(int irq, void *data); | 
					
						
							| 
									
										
										
										
											2009-02-08 19:20:19 -08:00
										 |  |  | static irqreturn_t netxen_msix_intr(int irq, void *data); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | static void netxen_free_ip_list(struct netxen_adapter *, bool); | 
					
						
							| 
									
										
										
										
											2011-08-06 16:46:44 +00:00
										 |  |  | static void netxen_restore_indev_addr(struct net_device *dev, unsigned long); | 
					
						
							| 
									
										
										
										
											2011-06-08 14:54:01 +00:00
										 |  |  | static struct rtnl_link_stats64 *netxen_nic_get_stats(struct net_device *dev, | 
					
						
							|  |  |  | 						      struct rtnl_link_stats64 *stats); | 
					
						
							| 
									
										
										
										
											2010-10-18 17:40:10 +00:00
										 |  |  | static int netxen_nic_set_mac(struct net_device *netdev, void *p); | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | /*  PCI Device ID Table  */ | 
					
						
							| 
									
										
										
										
											2008-06-23 02:04:50 +01:00
										 |  |  | #define ENTRY(device) \
 | 
					
						
							| 
									
										
										
										
											2008-09-12 06:55:14 -07:00
										 |  |  | 	{PCI_DEVICE(PCI_VENDOR_ID_NETXEN, (device)), \ | 
					
						
							| 
									
										
										
										
											2008-06-23 02:04:50 +01:00
										 |  |  | 	.class = PCI_CLASS_NETWORK_ETHERNET << 8, .class_mask = ~0} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-07 11:58:11 +00:00
										 |  |  | static DEFINE_PCI_DEVICE_TABLE(netxen_pci_tbl) = { | 
					
						
							| 
									
										
										
										
											2008-09-12 06:55:14 -07:00
										 |  |  | 	ENTRY(PCI_DEVICE_ID_NX2031_10GXSR), | 
					
						
							|  |  |  | 	ENTRY(PCI_DEVICE_ID_NX2031_10GCX4), | 
					
						
							|  |  |  | 	ENTRY(PCI_DEVICE_ID_NX2031_4GCU), | 
					
						
							|  |  |  | 	ENTRY(PCI_DEVICE_ID_NX2031_IMEZ), | 
					
						
							|  |  |  | 	ENTRY(PCI_DEVICE_ID_NX2031_HMEZ), | 
					
						
							|  |  |  | 	ENTRY(PCI_DEVICE_ID_NX2031_XG_MGMT), | 
					
						
							|  |  |  | 	ENTRY(PCI_DEVICE_ID_NX2031_XG_MGMT2), | 
					
						
							|  |  |  | 	ENTRY(PCI_DEVICE_ID_NX3031), | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	{0,} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MODULE_DEVICE_TABLE(pci, netxen_pci_tbl); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:00 -07:00
										 |  |  | static uint32_t crb_cmd_producer[4] = { | 
					
						
							|  |  |  | 	CRB_CMD_PRODUCER_OFFSET, CRB_CMD_PRODUCER_OFFSET_1, | 
					
						
							|  |  |  | 	CRB_CMD_PRODUCER_OFFSET_2, CRB_CMD_PRODUCER_OFFSET_3 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:07 -07:00
										 |  |  | void | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:03 -07:00
										 |  |  | netxen_nic_update_cmd_producer(struct netxen_adapter *adapter, | 
					
						
							| 
									
										
										
										
											2009-06-17 17:27:25 +00:00
										 |  |  | 		struct nx_host_tx_ring *tx_ring) | 
					
						
							| 
									
										
										
										
											2007-04-20 07:52:37 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:10 +00:00
										 |  |  | 	NXWRIO(adapter, tx_ring->crb_cmd_producer, tx_ring->producer); | 
					
						
							| 
									
										
										
										
											2007-04-20 07:52:37 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:00 -07:00
										 |  |  | static uint32_t crb_cmd_consumer[4] = { | 
					
						
							|  |  |  | 	CRB_CMD_CONSUMER_OFFSET, CRB_CMD_CONSUMER_OFFSET_1, | 
					
						
							|  |  |  | 	CRB_CMD_CONSUMER_OFFSET_2, CRB_CMD_CONSUMER_OFFSET_3 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:03 -07:00
										 |  |  | static inline void | 
					
						
							|  |  |  | netxen_nic_update_cmd_consumer(struct netxen_adapter *adapter, | 
					
						
							| 
									
										
										
										
											2009-06-17 17:27:25 +00:00
										 |  |  | 		struct nx_host_tx_ring *tx_ring) | 
					
						
							| 
									
										
										
										
											2007-04-20 07:52:37 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:10 +00:00
										 |  |  | 	NXWRIO(adapter, tx_ring->crb_cmd_consumer, tx_ring->sw_consumer); | 
					
						
							| 
									
										
										
										
											2007-04-20 07:52:37 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | static uint32_t msi_tgt_status[8] = { | 
					
						
							| 
									
										
										
										
											2008-03-17 19:59:48 -07:00
										 |  |  | 	ISR_INT_TARGET_STATUS, ISR_INT_TARGET_STATUS_F1, | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 	ISR_INT_TARGET_STATUS_F2, ISR_INT_TARGET_STATUS_F3, | 
					
						
							|  |  |  | 	ISR_INT_TARGET_STATUS_F4, ISR_INT_TARGET_STATUS_F5, | 
					
						
							|  |  |  | 	ISR_INT_TARGET_STATUS_F6, ISR_INT_TARGET_STATUS_F7 | 
					
						
							| 
									
										
										
										
											2008-03-17 19:59:48 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | static struct netxen_legacy_intr_set legacy_intr[] = NX_LEGACY_INTR_CONFIG; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | static inline void netxen_nic_disable_int(struct nx_host_sds_ring *sds_ring) | 
					
						
							| 
									
										
										
										
											2007-07-05 16:13:55 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | 	struct netxen_adapter *adapter = sds_ring->adapter; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:10 +00:00
										 |  |  | 	NXWRIO(adapter, sds_ring->crb_intr_mask, 0); | 
					
						
							| 
									
										
										
										
											2007-07-05 16:13:55 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | static inline void netxen_nic_enable_int(struct nx_host_sds_ring *sds_ring) | 
					
						
							| 
									
										
										
										
											2007-07-05 16:13:55 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | 	struct netxen_adapter *adapter = sds_ring->adapter; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:10 +00:00
										 |  |  | 	NXWRIO(adapter, sds_ring->crb_intr_mask, 0x1); | 
					
						
							| 
									
										
										
										
											2007-07-05 16:13:55 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-08 00:08:43 -07:00
										 |  |  | 	if (!NETXEN_IS_MSI_FAMILY(adapter)) | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:10 +00:00
										 |  |  | 		NXWRIO(adapter, adapter->tgt_mask_reg, 0xfbff); | 
					
						
							| 
									
										
										
										
											2007-07-05 16:13:55 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:43 +00:00
										 |  |  | static int | 
					
						
							|  |  |  | netxen_alloc_sds_rings(struct netxen_recv_context *recv_ctx, int count) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int size = sizeof(struct nx_host_sds_ring) * count; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	recv_ctx->sds_rings = kzalloc(size, GFP_KERNEL); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-23 05:40:09 +00:00
										 |  |  | 	return recv_ctx->sds_rings == NULL; | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:43 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | static void | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:43 +00:00
										 |  |  | netxen_free_sds_rings(struct netxen_recv_context *recv_ctx) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (recv_ctx->sds_rings != NULL) | 
					
						
							|  |  |  | 		kfree(recv_ctx->sds_rings); | 
					
						
							| 
									
										
										
										
											2009-08-13 07:03:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	recv_ctx->sds_rings = NULL; | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:43 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | netxen_napi_add(struct netxen_adapter *adapter, struct net_device *netdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int ring; | 
					
						
							|  |  |  | 	struct nx_host_sds_ring *sds_ring; | 
					
						
							|  |  |  | 	struct netxen_recv_context *recv_ctx = &adapter->recv_ctx; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:43 +00:00
										 |  |  | 	if (netxen_alloc_sds_rings(recv_ctx, adapter->max_sds_rings)) | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:43 +00:00
										 |  |  | 		return -ENOMEM; | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | 	for (ring = 0; ring < adapter->max_sds_rings; ring++) { | 
					
						
							|  |  |  | 		sds_ring = &recv_ctx->sds_rings[ring]; | 
					
						
							|  |  |  | 		netif_napi_add(netdev, &sds_ring->napi, | 
					
						
							| 
									
										
										
										
											2013-08-23 15:41:09 +02:00
										 |  |  | 				netxen_nic_poll, NAPI_POLL_WEIGHT); | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-13 07:03:01 +00:00
										 |  |  | static void | 
					
						
							|  |  |  | netxen_napi_del(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int ring; | 
					
						
							|  |  |  | 	struct nx_host_sds_ring *sds_ring; | 
					
						
							|  |  |  | 	struct netxen_recv_context *recv_ctx = &adapter->recv_ctx; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (ring = 0; ring < adapter->max_sds_rings; ring++) { | 
					
						
							|  |  |  | 		sds_ring = &recv_ctx->sds_rings[ring]; | 
					
						
							|  |  |  | 		netif_napi_del(&sds_ring->napi); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	netxen_free_sds_rings(&adapter->recv_ctx); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | static void | 
					
						
							|  |  |  | netxen_napi_enable(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int ring; | 
					
						
							|  |  |  | 	struct nx_host_sds_ring *sds_ring; | 
					
						
							|  |  |  | 	struct netxen_recv_context *recv_ctx = &adapter->recv_ctx; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (ring = 0; ring < adapter->max_sds_rings; ring++) { | 
					
						
							|  |  |  | 		sds_ring = &recv_ctx->sds_rings[ring]; | 
					
						
							|  |  |  | 		napi_enable(&sds_ring->napi); | 
					
						
							|  |  |  | 		netxen_nic_enable_int(sds_ring); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | netxen_napi_disable(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int ring; | 
					
						
							|  |  |  | 	struct nx_host_sds_ring *sds_ring; | 
					
						
							|  |  |  | 	struct netxen_recv_context *recv_ctx = &adapter->recv_ctx; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (ring = 0; ring < adapter->max_sds_rings; ring++) { | 
					
						
							|  |  |  | 		sds_ring = &recv_ctx->sds_rings[ring]; | 
					
						
							| 
									
										
										
										
											2009-05-08 22:02:28 +00:00
										 |  |  | 		netxen_nic_disable_int(sds_ring); | 
					
						
							| 
									
										
										
										
											2009-07-17 15:27:07 +00:00
										 |  |  | 		napi_synchronize(&sds_ring->napi); | 
					
						
							|  |  |  | 		napi_disable(&sds_ring->napi); | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-01 21:36:16 +00:00
										 |  |  | static int nx_set_dma_mask(struct netxen_adapter *adapter) | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct pci_dev *pdev = adapter->pdev; | 
					
						
							| 
									
										
										
										
											2009-03-02 16:02:16 +00:00
										 |  |  | 	uint64_t mask, cmask; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	adapter->pci_using_dac = 0; | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-06 19:01:15 -07:00
										 |  |  | 	mask = DMA_BIT_MASK(32); | 
					
						
							|  |  |  | 	cmask = DMA_BIT_MASK(32); | 
					
						
							| 
									
										
										
										
											2009-03-02 16:02:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-01 21:36:16 +00:00
										 |  |  | 	if (NX_IS_REVISION_P2(adapter->ahw.revision_id)) { | 
					
						
							| 
									
										
										
										
											2009-03-02 16:02:16 +00:00
										 |  |  | #ifndef CONFIG_IA64
 | 
					
						
							| 
									
										
										
										
											2009-04-06 19:01:15 -07:00
										 |  |  | 		mask = DMA_BIT_MASK(35); | 
					
						
							| 
									
										
										
										
											2009-03-02 16:02:16 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-08-01 21:36:16 +00:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		mask = DMA_BIT_MASK(39); | 
					
						
							|  |  |  | 		cmask = mask; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 	if (pci_set_dma_mask(pdev, mask) == 0 && | 
					
						
							| 
									
										
										
										
											2009-03-02 16:02:16 +00:00
										 |  |  | 		pci_set_consistent_dma_mask(pdev, cmask) == 0) { | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 		adapter->pci_using_dac = 1; | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-02 16:02:16 +00:00
										 |  |  | 	return -EIO; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Update addressable range if firmware supports it */ | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | nx_update_dma_mask(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int change, shift, err; | 
					
						
							| 
									
										
										
										
											2009-08-01 21:36:16 +00:00
										 |  |  | 	uint64_t mask, old_mask, old_cmask; | 
					
						
							| 
									
										
										
										
											2009-03-02 16:02:16 +00:00
										 |  |  | 	struct pci_dev *pdev = adapter->pdev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	change = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 	shift = NXRD32(adapter, CRB_DMA_SHIFT); | 
					
						
							| 
									
										
										
										
											2009-08-04 10:39:03 +00:00
										 |  |  | 	if (shift > 32) | 
					
						
							| 
									
										
										
										
											2009-03-02 16:02:16 +00:00
										 |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (NX_IS_REVISION_P3(adapter->ahw.revision_id) && (shift > 9)) | 
					
						
							|  |  |  | 		change = 1; | 
					
						
							|  |  |  | 	else if ((adapter->ahw.revision_id == NX_P2_C1) && (shift <= 4)) | 
					
						
							|  |  |  | 		change = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (change) { | 
					
						
							|  |  |  | 		old_mask = pdev->dma_mask; | 
					
						
							| 
									
										
										
										
											2009-08-01 21:36:16 +00:00
										 |  |  | 		old_cmask = pdev->dev.coherent_dma_mask; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-04 10:39:03 +00:00
										 |  |  | 		mask = DMA_BIT_MASK(32+shift); | 
					
						
							| 
									
										
										
										
											2009-03-02 16:02:16 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		err = pci_set_dma_mask(pdev, mask); | 
					
						
							|  |  |  | 		if (err) | 
					
						
							| 
									
										
										
										
											2009-08-01 21:36:16 +00:00
										 |  |  | 			goto err_out; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			err = pci_set_consistent_dma_mask(pdev, mask); | 
					
						
							|  |  |  | 			if (err) | 
					
						
							|  |  |  | 				goto err_out; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		dev_info(&pdev->dev, "using %d-bit dma mask\n", 32+shift); | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2009-08-01 21:36:16 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | err_out: | 
					
						
							|  |  |  | 	pci_set_dma_mask(pdev, old_mask); | 
					
						
							|  |  |  | 	pci_set_consistent_dma_mask(pdev, old_cmask); | 
					
						
							|  |  |  | 	return err; | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | netxen_check_hw_init(struct netxen_adapter *adapter, int first_boot) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-01-14 20:49:00 -08:00
										 |  |  | 	u32 val, timeout; | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (first_boot == 0x55555555) { | 
					
						
							|  |  |  | 		/* This is the first boot after power up */ | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 		NXWR32(adapter, NETXEN_CAM_RAM(0x1fc), NETXEN_BDINFO_MAGIC); | 
					
						
							| 
									
										
										
										
											2009-01-14 20:49:00 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (!NX_IS_REVISION_P2(adapter->ahw.revision_id)) | 
					
						
							|  |  |  | 			return 0; | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		/* PCI bus master workaround */ | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 		first_boot = NXRD32(adapter, NETXEN_PCIE_REG(0x4)); | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 		if (!(first_boot & 0x4)) { | 
					
						
							|  |  |  | 			first_boot |= 0x4; | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 			NXWR32(adapter, NETXEN_PCIE_REG(0x4), first_boot); | 
					
						
							| 
									
										
										
										
											2010-01-07 22:10:15 +00:00
										 |  |  | 			NXRD32(adapter, NETXEN_PCIE_REG(0x4)); | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* This is the first boot after power up */ | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 		first_boot = NXRD32(adapter, NETXEN_ROMUSB_GLB_SW_RESET); | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 		if (first_boot != 0x80000f) { | 
					
						
							|  |  |  | 			/* clear the register for future unloads/loads */ | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 			NXWR32(adapter, NETXEN_CAM_RAM(0x1fc), 0); | 
					
						
							| 
									
										
										
										
											2009-01-14 20:49:00 -08:00
										 |  |  | 			return -EIO; | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-14 20:49:00 -08:00
										 |  |  | 		/* Start P2 boot loader */ | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 		val = NXRD32(adapter, NETXEN_ROMUSB_GLB_PEGTUNE_DONE); | 
					
						
							|  |  |  | 		NXWR32(adapter, NETXEN_ROMUSB_GLB_PEGTUNE_DONE, val | 0x1); | 
					
						
							| 
									
										
										
										
											2009-01-14 20:49:00 -08:00
										 |  |  | 		timeout = 0; | 
					
						
							|  |  |  | 		do { | 
					
						
							|  |  |  | 			msleep(1); | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 			val = NXRD32(adapter, NETXEN_CAM_RAM(0x1fc)); | 
					
						
							| 
									
										
										
										
											2009-01-14 20:49:00 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (++timeout > 5000) | 
					
						
							|  |  |  | 				return -EIO; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		} while (val == NETXEN_BDINFO_MAGIC); | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-01-14 20:49:00 -08:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void netxen_set_port_mode(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u32 val, data; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:56 +00:00
										 |  |  | 	val = adapter->ahw.board_type; | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 	if ((val == NETXEN_BRDTYPE_P3_HMEZ) || | 
					
						
							|  |  |  | 		(val == NETXEN_BRDTYPE_P3_XG_LOM)) { | 
					
						
							|  |  |  | 		if (port_mode == NETXEN_PORT_MODE_802_3_AP) { | 
					
						
							|  |  |  | 			data = NETXEN_PORT_MODE_802_3_AP; | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 			NXWR32(adapter, NETXEN_PORT_MODE_ADDR, data); | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 		} else if (port_mode == NETXEN_PORT_MODE_XG) { | 
					
						
							|  |  |  | 			data = NETXEN_PORT_MODE_XG; | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 			NXWR32(adapter, NETXEN_PORT_MODE_ADDR, data); | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 		} else if (port_mode == NETXEN_PORT_MODE_AUTO_NEG_1G) { | 
					
						
							|  |  |  | 			data = NETXEN_PORT_MODE_AUTO_NEG_1G; | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 			NXWR32(adapter, NETXEN_PORT_MODE_ADDR, data); | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 		} else if (port_mode == NETXEN_PORT_MODE_AUTO_NEG_XG) { | 
					
						
							|  |  |  | 			data = NETXEN_PORT_MODE_AUTO_NEG_XG; | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 			NXWR32(adapter, NETXEN_PORT_MODE_ADDR, data); | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 		} else { | 
					
						
							|  |  |  | 			data = NETXEN_PORT_MODE_AUTO_NEG; | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 			NXWR32(adapter, NETXEN_PORT_MODE_ADDR, data); | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if ((wol_port_mode != NETXEN_PORT_MODE_802_3_AP) && | 
					
						
							|  |  |  | 			(wol_port_mode != NETXEN_PORT_MODE_XG) && | 
					
						
							|  |  |  | 			(wol_port_mode != NETXEN_PORT_MODE_AUTO_NEG_1G) && | 
					
						
							|  |  |  | 			(wol_port_mode != NETXEN_PORT_MODE_AUTO_NEG_XG)) { | 
					
						
							|  |  |  | 			wol_port_mode = NETXEN_PORT_MODE_AUTO_NEG; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 		NXWR32(adapter, NETXEN_WOL_PORT_MODE, wol_port_mode); | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-19 08:49:52 +00:00
										 |  |  | #define PCI_CAP_ID_GEN  0x10
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void netxen_pcie_strap_init(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u32 pdevfuncsave; | 
					
						
							|  |  |  | 	u32 c8c9value = 0; | 
					
						
							|  |  |  | 	u32 chicken = 0; | 
					
						
							|  |  |  | 	u32 control = 0; | 
					
						
							|  |  |  | 	int i, pos; | 
					
						
							|  |  |  | 	struct pci_dev *pdev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	pdev = adapter->pdev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	chicken = NXRD32(adapter, NETXEN_PCIE_REG(PCIE_CHICKEN3)); | 
					
						
							|  |  |  | 	/* clear chicken3.25:24 */ | 
					
						
							|  |  |  | 	chicken &= 0xFCFFFFFF; | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * if gen1 and B0, set F1020 - if gen 2, do nothing | 
					
						
							|  |  |  | 	 * if gen2 set to F1000 | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	pos = pci_find_capability(pdev, PCI_CAP_ID_GEN); | 
					
						
							|  |  |  | 	if (pos == 0xC0) { | 
					
						
							|  |  |  | 		pci_read_config_dword(pdev, pos + 0x10, &control); | 
					
						
							|  |  |  | 		if ((control & 0x000F0000) != 0x00020000) { | 
					
						
							|  |  |  | 			/*  set chicken3.24 if gen1 */ | 
					
						
							|  |  |  | 			chicken |= 0x01000000; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		dev_info(&adapter->pdev->dev, "Gen2 strapping detected\n"); | 
					
						
							|  |  |  | 		c8c9value = 0xF1000; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		/* set chicken3.24 if gen1 */ | 
					
						
							|  |  |  | 		chicken |= 0x01000000; | 
					
						
							|  |  |  | 		dev_info(&adapter->pdev->dev, "Gen1 strapping detected\n"); | 
					
						
							|  |  |  | 		if (adapter->ahw.revision_id == NX_P3_B0) | 
					
						
							|  |  |  | 			c8c9value = 0xF1020; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			c8c9value = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	NXWR32(adapter, NETXEN_PCIE_REG(PCIE_CHICKEN3), chicken); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!c8c9value) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	pdevfuncsave = pdev->devfn; | 
					
						
							|  |  |  | 	if (pdevfuncsave & 0x07) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < 8; i++) { | 
					
						
							|  |  |  | 		pci_read_config_dword(pdev, pos + 8, &control); | 
					
						
							|  |  |  | 		pci_read_config_dword(pdev, pos + 8, &control); | 
					
						
							|  |  |  | 		pci_write_config_dword(pdev, pos + 8, c8c9value); | 
					
						
							|  |  |  | 		pdev->devfn++; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	pdev->devfn = pdevfuncsave; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | static void netxen_set_msix_bit(struct pci_dev *pdev, int enable) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u32 control; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-08 21:02:56 +08:00
										 |  |  | 	if (pdev->msix_cap) { | 
					
						
							|  |  |  | 		pci_read_config_dword(pdev, pdev->msix_cap, &control); | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 		if (enable) | 
					
						
							|  |  |  | 			control |= PCI_MSIX_FLAGS_ENABLE; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			control = 0; | 
					
						
							| 
									
										
										
										
											2013-08-08 21:02:56 +08:00
										 |  |  | 		pci_write_config_dword(pdev, pdev->msix_cap, control); | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-08 22:02:28 +00:00
										 |  |  | static void netxen_init_msix_entries(struct netxen_adapter *adapter, int count) | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-08 22:02:28 +00:00
										 |  |  | 	for (i = 0; i < count; i++) | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 		adapter->msix_entries[i].entry = i; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-08 00:08:39 -07:00
										 |  |  | static int | 
					
						
							|  |  |  | netxen_read_mac_addr(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 	unsigned char *p; | 
					
						
							| 
									
										
										
										
											2010-01-14 01:53:21 +00:00
										 |  |  | 	u64 mac_addr; | 
					
						
							| 
									
										
										
										
											2008-08-08 00:08:39 -07:00
										 |  |  | 	struct net_device *netdev = adapter->netdev; | 
					
						
							|  |  |  | 	struct pci_dev *pdev = adapter->pdev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) { | 
					
						
							|  |  |  | 		if (netxen_p3_get_mac_addr(adapter, &mac_addr) != 0) | 
					
						
							|  |  |  | 			return -EIO; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		if (netxen_get_flash_mac_addr(adapter, &mac_addr) != 0) | 
					
						
							|  |  |  | 			return -EIO; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	p = (unsigned char *)&mac_addr; | 
					
						
							|  |  |  | 	for (i = 0; i < 6; i++) | 
					
						
							|  |  |  | 		netdev->dev_addr[i] = *(p + 5 - i); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-20 22:08:57 +00:00
										 |  |  | 	memcpy(adapter->mac_addr, netdev->dev_addr, netdev->addr_len); | 
					
						
							| 
									
										
										
										
											2008-08-08 00:08:39 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* set station address */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-08 01:38:26 +00:00
										 |  |  | 	if (!is_valid_ether_addr(netdev->dev_addr)) | 
					
						
							| 
									
										
										
										
											2008-10-27 15:59:26 -07:00
										 |  |  | 		dev_warn(&pdev->dev, "Bad MAC address %pM.\n", netdev->dev_addr); | 
					
						
							| 
									
										
										
										
											2008-08-08 00:08:39 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-18 17:40:10 +00:00
										 |  |  | static int netxen_nic_set_mac(struct net_device *netdev, void *p) | 
					
						
							| 
									
										
										
										
											2009-05-05 19:05:08 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = netdev_priv(netdev); | 
					
						
							|  |  |  | 	struct sockaddr *addr = p; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!is_valid_ether_addr(addr->sa_data)) | 
					
						
							| 
									
										
										
										
											2012-02-21 02:07:49 +00:00
										 |  |  | 		return -EADDRNOTAVAIL; | 
					
						
							| 
									
										
										
										
											2009-05-05 19:05:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (netif_running(netdev)) { | 
					
						
							|  |  |  | 		netif_device_detach(netdev); | 
					
						
							|  |  |  | 		netxen_napi_disable(adapter); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-20 22:08:57 +00:00
										 |  |  | 	memcpy(adapter->mac_addr, addr->sa_data, netdev->addr_len); | 
					
						
							| 
									
										
										
										
											2009-05-05 19:05:08 +00:00
										 |  |  | 	memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len); | 
					
						
							|  |  |  | 	adapter->macaddr_set(adapter, addr->sa_data); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (netif_running(netdev)) { | 
					
						
							|  |  |  | 		netif_device_attach(netdev); | 
					
						
							|  |  |  | 		netxen_napi_enable(adapter); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-21 17:32:15 -08:00
										 |  |  | static void netxen_set_multicast_list(struct net_device *dev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = netdev_priv(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-05 19:05:08 +00:00
										 |  |  | 	adapter->set_multi(dev); | 
					
						
							| 
									
										
										
										
											2008-11-21 17:32:15 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-15 15:29:55 +00:00
										 |  |  | static netdev_features_t netxen_fix_features(struct net_device *dev, | 
					
						
							|  |  |  | 	netdev_features_t features) | 
					
						
							| 
									
										
										
										
											2011-04-05 01:36:58 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	if (!(features & NETIF_F_RXCSUM)) { | 
					
						
							|  |  |  | 		netdev_info(dev, "disabling LRO as RXCSUM is off\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		features &= ~NETIF_F_LRO; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return features; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-15 15:29:55 +00:00
										 |  |  | static int netxen_set_features(struct net_device *dev, | 
					
						
							|  |  |  | 	netdev_features_t features) | 
					
						
							| 
									
										
										
										
											2011-04-05 01:36:58 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = netdev_priv(dev); | 
					
						
							|  |  |  | 	int hw_lro; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!((dev->features ^ features) & NETIF_F_LRO)) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hw_lro = (features & NETIF_F_LRO) ? NETXEN_NIC_LRO_ENABLED | 
					
						
							|  |  |  | 	         : NETXEN_NIC_LRO_DISABLED; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (netxen_config_hw_lro(adapter, hw_lro)) | 
					
						
							|  |  |  | 		return -EIO; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!(features & NETIF_F_LRO) && netxen_send_lro_cleanup(adapter)) | 
					
						
							|  |  |  | 		return -EIO; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-21 17:32:15 -08:00
										 |  |  | static const struct net_device_ops netxen_netdev_ops = { | 
					
						
							|  |  |  | 	.ndo_open	   = netxen_nic_open, | 
					
						
							|  |  |  | 	.ndo_stop	   = netxen_nic_close, | 
					
						
							|  |  |  | 	.ndo_start_xmit    = netxen_nic_xmit_frame, | 
					
						
							| 
									
										
										
										
											2011-06-08 14:54:01 +00:00
										 |  |  | 	.ndo_get_stats64   = netxen_nic_get_stats, | 
					
						
							| 
									
										
										
										
											2008-11-21 17:32:15 -08:00
										 |  |  | 	.ndo_validate_addr = eth_validate_addr, | 
					
						
							| 
									
										
										
										
											2011-08-16 06:29:01 +00:00
										 |  |  | 	.ndo_set_rx_mode   = netxen_set_multicast_list, | 
					
						
							| 
									
										
										
										
											2008-11-21 17:32:15 -08:00
										 |  |  | 	.ndo_set_mac_address    = netxen_nic_set_mac, | 
					
						
							|  |  |  | 	.ndo_change_mtu	   = netxen_nic_change_mtu, | 
					
						
							|  |  |  | 	.ndo_tx_timeout	   = netxen_tx_timeout, | 
					
						
							| 
									
										
										
										
											2011-04-05 01:36:58 +00:00
										 |  |  | 	.ndo_fix_features = netxen_fix_features, | 
					
						
							|  |  |  | 	.ndo_set_features = netxen_set_features, | 
					
						
							| 
									
										
										
										
											2008-11-21 17:32:15 -08:00
										 |  |  | #ifdef CONFIG_NET_POLL_CONTROLLER
 | 
					
						
							|  |  |  | 	.ndo_poll_controller = netxen_nic_poll_controller, | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-30 09:51:37 +00:00
										 |  |  | static inline bool netxen_function_zero(struct pci_dev *pdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return (PCI_FUNC(pdev->devfn) == 0) ? true : false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline void netxen_set_interrupt_mode(struct netxen_adapter *adapter, | 
					
						
							|  |  |  | 					     u32 mode) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	NXWR32(adapter, NETXEN_INTR_MODE_REG, mode); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline u32 netxen_get_interrupt_mode(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return NXRD32(adapter, NETXEN_INTR_MODE_REG); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 16:39:21 -08:00
										 |  |  | static void | 
					
						
							| 
									
										
										
										
											2013-05-30 09:51:36 +00:00
										 |  |  | netxen_initialize_interrupt_registers(struct netxen_adapter *adapter) | 
					
						
							| 
									
										
										
										
											2009-02-24 16:39:21 -08:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct netxen_legacy_intr_set *legacy_intrp; | 
					
						
							| 
									
										
										
										
											2013-05-30 09:51:36 +00:00
										 |  |  | 	u32 tgt_status_reg, int_state_reg; | 
					
						
							| 
									
										
										
										
											2009-02-24 16:39:21 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (adapter->ahw.revision_id >= NX_P3_B0) | 
					
						
							|  |  |  | 		legacy_intrp = &legacy_intr[adapter->ahw.pci_func]; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		legacy_intrp = &legacy_intr[0]; | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-30 09:51:36 +00:00
										 |  |  | 	tgt_status_reg = legacy_intrp->tgt_status_reg; | 
					
						
							|  |  |  | 	int_state_reg = ISR_INT_STATE_REG; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:10 +00:00
										 |  |  | 	adapter->int_vec_bit = legacy_intrp->int_vec_bit; | 
					
						
							| 
									
										
										
										
											2013-05-30 09:51:36 +00:00
										 |  |  | 	adapter->tgt_status_reg = netxen_get_ioaddr(adapter, tgt_status_reg); | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:10 +00:00
										 |  |  | 	adapter->tgt_mask_reg = netxen_get_ioaddr(adapter, | 
					
						
							| 
									
										
										
										
											2013-05-30 09:51:36 +00:00
										 |  |  | 						  legacy_intrp->tgt_mask_reg); | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:10 +00:00
										 |  |  | 	adapter->pci_int_reg = netxen_get_ioaddr(adapter, | 
					
						
							| 
									
										
										
										
											2013-05-30 09:51:36 +00:00
										 |  |  | 						 legacy_intrp->pci_int_reg); | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:10 +00:00
										 |  |  | 	adapter->isr_int_vec = netxen_get_ioaddr(adapter, ISR_INT_VECTOR); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (adapter->ahw.revision_id >= NX_P3_B1) | 
					
						
							|  |  |  | 		adapter->crb_int_state_reg = netxen_get_ioaddr(adapter, | 
					
						
							| 
									
										
										
										
											2013-05-30 09:51:36 +00:00
										 |  |  | 							       int_state_reg); | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:10 +00:00
										 |  |  | 	else | 
					
						
							|  |  |  | 		adapter->crb_int_state_reg = netxen_get_ioaddr(adapter, | 
					
						
							| 
									
										
										
										
											2013-05-30 09:51:36 +00:00
										 |  |  | 							       CRB_INT_VECTOR); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-02-24 16:39:21 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-30 09:51:36 +00:00
										 |  |  | static int netxen_setup_msi_interrupts(struct netxen_adapter *adapter, | 
					
						
							|  |  |  | 				       int num_msix) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct pci_dev *pdev = adapter->pdev; | 
					
						
							|  |  |  | 	u32 value; | 
					
						
							|  |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											2009-02-24 16:39:21 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (adapter->msix_supported) { | 
					
						
							| 
									
										
										
										
											2009-05-08 22:02:28 +00:00
										 |  |  | 		netxen_init_msix_entries(adapter, num_msix); | 
					
						
							|  |  |  | 		err = pci_enable_msix(pdev, adapter->msix_entries, num_msix); | 
					
						
							|  |  |  | 		if (err == 0) { | 
					
						
							|  |  |  | 			adapter->flags |= NETXEN_NIC_MSIX_ENABLED; | 
					
						
							|  |  |  | 			netxen_set_msix_bit(pdev, 1); | 
					
						
							| 
									
										
										
										
											2009-02-24 16:39:21 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-08 22:02:28 +00:00
										 |  |  | 			if (adapter->rss_supported) | 
					
						
							|  |  |  | 				adapter->max_sds_rings = num_msix; | 
					
						
							| 
									
										
										
										
											2009-02-24 16:39:21 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-08 22:02:28 +00:00
										 |  |  | 			dev_info(&pdev->dev, "using msi-x interrupts\n"); | 
					
						
							| 
									
										
										
										
											2013-05-30 09:51:36 +00:00
										 |  |  | 			return 0; | 
					
						
							| 
									
										
										
										
											2009-05-08 22:02:28 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		/* fall through for msi */ | 
					
						
							| 
									
										
										
										
											2009-02-24 16:39:21 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-05-08 22:02:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (use_msi && !pci_enable_msi(pdev)) { | 
					
						
							| 
									
										
										
										
											2013-05-30 09:51:36 +00:00
										 |  |  | 		value = msi_tgt_status[adapter->ahw.pci_func]; | 
					
						
							| 
									
										
										
										
											2009-05-08 22:02:28 +00:00
										 |  |  | 		adapter->flags |= NETXEN_NIC_MSI_ENABLED; | 
					
						
							| 
									
										
										
										
											2013-05-30 09:51:36 +00:00
										 |  |  | 		adapter->tgt_status_reg = netxen_get_ioaddr(adapter, value); | 
					
						
							| 
									
										
										
										
											2009-05-18 21:46:40 -07:00
										 |  |  | 		adapter->msix_entries[0].vector = pdev->irq; | 
					
						
							| 
									
										
										
										
											2013-05-30 09:51:36 +00:00
										 |  |  | 		dev_info(&pdev->dev, "using msi interrupts\n"); | 
					
						
							|  |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2009-05-08 22:02:28 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-30 09:51:37 +00:00
										 |  |  | 	dev_err(&pdev->dev, "Failed to acquire MSI-X/MSI interrupt vector\n"); | 
					
						
							| 
									
										
										
										
											2013-05-30 09:51:36 +00:00
										 |  |  | 	return -EIO; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-30 09:51:37 +00:00
										 |  |  | static int netxen_setup_intr(struct netxen_adapter *adapter) | 
					
						
							| 
									
										
										
										
											2013-05-30 09:51:36 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct pci_dev *pdev = adapter->pdev; | 
					
						
							|  |  |  | 	int num_msix; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (adapter->rss_supported) | 
					
						
							|  |  |  | 		num_msix = (num_online_cpus() >= MSIX_ENTRIES_PER_ADAPTER) ? | 
					
						
							|  |  |  | 			    MSIX_ENTRIES_PER_ADAPTER : 2; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		num_msix = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	adapter->max_sds_rings = 1; | 
					
						
							|  |  |  | 	adapter->flags &= ~(NETXEN_NIC_MSI_ENABLED | NETXEN_NIC_MSIX_ENABLED); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	netxen_initialize_interrupt_registers(adapter); | 
					
						
							|  |  |  | 	netxen_set_msix_bit(pdev, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-30 09:51:37 +00:00
										 |  |  | 	if (netxen_function_zero(pdev)) { | 
					
						
							|  |  |  | 		if (!netxen_setup_msi_interrupts(adapter, num_msix)) | 
					
						
							|  |  |  | 			netxen_set_interrupt_mode(adapter, NETXEN_MSI_MODE); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			netxen_set_interrupt_mode(adapter, NETXEN_INTX_MODE); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		if (netxen_get_interrupt_mode(adapter) == NETXEN_MSI_MODE && | 
					
						
							|  |  |  | 		    netxen_setup_msi_interrupts(adapter, num_msix)) { | 
					
						
							|  |  |  | 			dev_err(&pdev->dev, "Co-existence of MSI-X/MSI and INTx interrupts is not supported\n"); | 
					
						
							|  |  |  | 			return -EIO; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-05-30 09:51:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-30 09:51:37 +00:00
										 |  |  | 	if (!NETXEN_IS_MSI_FAMILY(adapter)) { | 
					
						
							|  |  |  | 		adapter->msix_entries[0].vector = pdev->irq; | 
					
						
							|  |  |  | 		dev_info(&pdev->dev, "using legacy interrupts\n"); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2009-02-24 16:39:21 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | netxen_teardown_intr(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (adapter->flags & NETXEN_NIC_MSIX_ENABLED) | 
					
						
							|  |  |  | 		pci_disable_msix(adapter->pdev); | 
					
						
							|  |  |  | 	if (adapter->flags & NETXEN_NIC_MSI_ENABLED) | 
					
						
							|  |  |  | 		pci_disable_msi(adapter->pdev); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | netxen_cleanup_pci_map(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (adapter->ahw.db_base != NULL) | 
					
						
							|  |  |  | 		iounmap(adapter->ahw.db_base); | 
					
						
							|  |  |  | 	if (adapter->ahw.pci_base0 != NULL) | 
					
						
							|  |  |  | 		iounmap(adapter->ahw.pci_base0); | 
					
						
							|  |  |  | 	if (adapter->ahw.pci_base1 != NULL) | 
					
						
							|  |  |  | 		iounmap(adapter->ahw.pci_base1); | 
					
						
							|  |  |  | 	if (adapter->ahw.pci_base2 != NULL) | 
					
						
							|  |  |  | 		iounmap(adapter->ahw.pci_base2); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | netxen_setup_pci_map(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	void __iomem *db_ptr = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-13 00:26:04 -07:00
										 |  |  | 	resource_size_t mem_base, db_base; | 
					
						
							| 
									
										
										
										
											2010-03-26 00:30:09 +00:00
										 |  |  | 	unsigned long mem_len, db_len = 0; | 
					
						
							| 
									
										
										
										
											2009-02-24 16:39:21 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	struct pci_dev *pdev = adapter->pdev; | 
					
						
							|  |  |  | 	int pci_func = adapter->ahw.pci_func; | 
					
						
							| 
									
										
										
										
											2010-03-26 00:30:09 +00:00
										 |  |  | 	struct netxen_hardware_context *ahw = &adapter->ahw; | 
					
						
							| 
									
										
										
										
											2009-02-24 16:39:21 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	int err = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Set the CRB window to invalid. If any register in window 0 is | 
					
						
							|  |  |  | 	 * accessed it should set the window to 0 and then reset it to 1. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2009-10-13 05:31:43 +00:00
										 |  |  | 	adapter->ahw.crb_win = -1; | 
					
						
							| 
									
										
										
										
											2009-10-13 05:31:42 +00:00
										 |  |  | 	adapter->ahw.ocm_win = -1; | 
					
						
							| 
									
										
										
										
											2009-02-24 16:39:21 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* remap phys address */ | 
					
						
							|  |  |  | 	mem_base = pci_resource_start(pdev, 0);	/* 0 is for BAR 0 */ | 
					
						
							|  |  |  | 	mem_len = pci_resource_len(pdev, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* 128 Meg of memory */ | 
					
						
							|  |  |  | 	if (mem_len == NETXEN_PCI_128MB_SIZE) { | 
					
						
							| 
									
										
										
										
											2010-03-26 00:30:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		ahw->pci_base0 = ioremap(mem_base, FIRST_PAGE_GROUP_SIZE); | 
					
						
							|  |  |  | 		ahw->pci_base1 = ioremap(mem_base + SECOND_PAGE_GROUP_START, | 
					
						
							| 
									
										
										
										
											2009-02-24 16:39:21 -08:00
										 |  |  | 				SECOND_PAGE_GROUP_SIZE); | 
					
						
							| 
									
										
										
										
											2010-03-26 00:30:09 +00:00
										 |  |  | 		ahw->pci_base2 = ioremap(mem_base + THIRD_PAGE_GROUP_START, | 
					
						
							| 
									
										
										
										
											2009-02-24 16:39:21 -08:00
										 |  |  | 				THIRD_PAGE_GROUP_SIZE); | 
					
						
							| 
									
										
										
										
											2010-03-26 00:30:09 +00:00
										 |  |  | 		if (ahw->pci_base0 == NULL || ahw->pci_base1 == NULL || | 
					
						
							|  |  |  | 						ahw->pci_base2 == NULL) { | 
					
						
							|  |  |  | 			dev_err(&pdev->dev, "failed to map PCI bar 0\n"); | 
					
						
							|  |  |  | 			err = -EIO; | 
					
						
							|  |  |  | 			goto err_out; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ahw->pci_len0 = FIRST_PAGE_GROUP_SIZE; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 16:39:21 -08:00
										 |  |  | 	} else if (mem_len == NETXEN_PCI_32MB_SIZE) { | 
					
						
							| 
									
										
										
										
											2010-03-26 00:30:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		ahw->pci_base1 = ioremap(mem_base, SECOND_PAGE_GROUP_SIZE); | 
					
						
							|  |  |  | 		ahw->pci_base2 = ioremap(mem_base + THIRD_PAGE_GROUP_START - | 
					
						
							| 
									
										
										
										
											2009-02-24 16:39:21 -08:00
										 |  |  | 			SECOND_PAGE_GROUP_START, THIRD_PAGE_GROUP_SIZE); | 
					
						
							| 
									
										
										
										
											2010-03-26 00:30:09 +00:00
										 |  |  | 		if (ahw->pci_base1 == NULL || ahw->pci_base2 == NULL) { | 
					
						
							|  |  |  | 			dev_err(&pdev->dev, "failed to map PCI bar 0\n"); | 
					
						
							|  |  |  | 			err = -EIO; | 
					
						
							|  |  |  | 			goto err_out; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 16:39:21 -08:00
										 |  |  | 	} else if (mem_len == NETXEN_PCI_2MB_SIZE) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-26 00:30:09 +00:00
										 |  |  | 		ahw->pci_base0 = pci_ioremap_bar(pdev, 0); | 
					
						
							|  |  |  | 		if (ahw->pci_base0 == NULL) { | 
					
						
							| 
									
										
										
										
											2009-02-24 16:39:21 -08:00
										 |  |  | 			dev_err(&pdev->dev, "failed to map PCI bar 0\n"); | 
					
						
							|  |  |  | 			return -EIO; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2010-03-26 00:30:09 +00:00
										 |  |  | 		ahw->pci_len0 = mem_len; | 
					
						
							| 
									
										
										
										
											2009-02-24 16:39:21 -08:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		return -EIO; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:10 +00:00
										 |  |  | 	netxen_setup_hwops(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 16:39:21 -08:00
										 |  |  | 	dev_info(&pdev->dev, "%dMB memory map\n", (int)(mem_len>>20)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-16 15:50:09 +00:00
										 |  |  | 	if (NX_IS_REVISION_P3P(adapter->ahw.revision_id)) { | 
					
						
							|  |  |  | 		adapter->ahw.ocm_win_crb = netxen_get_ioaddr(adapter, | 
					
						
							|  |  |  | 			NETXEN_PCIX_PS_REG(PCIX_OCM_WINDOW_REG(pci_func))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} else if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) { | 
					
						
							| 
									
										
										
										
											2009-10-13 05:31:42 +00:00
										 |  |  | 		adapter->ahw.ocm_win_crb = netxen_get_ioaddr(adapter, | 
					
						
							|  |  |  | 			NETXEN_PCIX_PS_REG(PCIE_MN_WINDOW_REG(pci_func))); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 16:39:21 -08:00
										 |  |  | 	if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) | 
					
						
							|  |  |  | 		goto skip_doorbell; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	db_base = pci_resource_start(pdev, 4);	/* doorbell is on bar 4 */ | 
					
						
							|  |  |  | 	db_len = pci_resource_len(pdev, 4); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (db_len == 0) { | 
					
						
							|  |  |  | 		printk(KERN_ERR "%s: doorbell is disabled\n", | 
					
						
							|  |  |  | 				netxen_nic_driver_name); | 
					
						
							|  |  |  | 		err = -EIO; | 
					
						
							|  |  |  | 		goto err_out; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	db_ptr = ioremap(db_base, NETXEN_DB_MAPSIZE_BYTES); | 
					
						
							|  |  |  | 	if (!db_ptr) { | 
					
						
							|  |  |  | 		printk(KERN_ERR "%s: Failed to allocate doorbell map.", | 
					
						
							|  |  |  | 				netxen_nic_driver_name); | 
					
						
							|  |  |  | 		err = -EIO; | 
					
						
							|  |  |  | 		goto err_out; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | skip_doorbell: | 
					
						
							|  |  |  | 	adapter->ahw.db_base = db_ptr; | 
					
						
							|  |  |  | 	adapter->ahw.db_len = db_len; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | err_out: | 
					
						
							|  |  |  | 	netxen_cleanup_pci_map(adapter); | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:11 +00:00
										 |  |  | static void | 
					
						
							|  |  |  | netxen_check_options(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | 	u32 fw_major, fw_minor, fw_build, prev_fw_version; | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:11 +00:00
										 |  |  | 	char brd_name[NETXEN_MAX_SHORT_NAME]; | 
					
						
							|  |  |  | 	char serial_num[32]; | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | 	int i, offset, val, err; | 
					
						
							| 
									
										
										
										
											2012-03-12 22:58:24 +00:00
										 |  |  | 	__le32 *ptr32; | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:11 +00:00
										 |  |  | 	struct pci_dev *pdev = adapter->pdev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	adapter->driver_mismatch = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-12 22:58:24 +00:00
										 |  |  | 	ptr32 = (__le32 *)&serial_num; | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:11 +00:00
										 |  |  | 	offset = NX_FW_SERIAL_NUM_OFFSET; | 
					
						
							|  |  |  | 	for (i = 0; i < 8; i++) { | 
					
						
							|  |  |  | 		if (netxen_rom_fast_read(adapter, offset, &val) == -1) { | 
					
						
							|  |  |  | 			dev_err(&pdev->dev, "error reading board info\n"); | 
					
						
							|  |  |  | 			adapter->driver_mismatch = 1; | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		ptr32[i] = cpu_to_le32(val); | 
					
						
							|  |  |  | 		offset += sizeof(u32); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fw_major = NXRD32(adapter, NETXEN_FW_VERSION_MAJOR); | 
					
						
							|  |  |  | 	fw_minor = NXRD32(adapter, NETXEN_FW_VERSION_MINOR); | 
					
						
							|  |  |  | 	fw_build = NXRD32(adapter, NETXEN_FW_VERSION_SUB); | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | 	prev_fw_version = adapter->fw_version; | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:11 +00:00
										 |  |  | 	adapter->fw_version = NETXEN_VERSION_CODE(fw_major, fw_minor, fw_build); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | 	/* Get FW Mini Coredump template and store it */ | 
					
						
							|  |  |  | 	 if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) { | 
					
						
							|  |  |  | 		if (adapter->mdump.md_template == NULL || | 
					
						
							|  |  |  | 				adapter->fw_version > prev_fw_version) { | 
					
						
							|  |  |  | 			kfree(adapter->mdump.md_template); | 
					
						
							|  |  |  | 			adapter->mdump.md_template = NULL; | 
					
						
							|  |  |  | 			err = netxen_setup_minidump(adapter); | 
					
						
							|  |  |  | 			if (err) | 
					
						
							|  |  |  | 				dev_err(&adapter->pdev->dev, | 
					
						
							|  |  |  | 				"Failed to setup minidump rcode = %d\n", err); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:11 +00:00
										 |  |  | 	if (adapter->portnum == 0) { | 
					
						
							| 
									
										
										
										
											2013-05-30 09:51:35 +00:00
										 |  |  | 		if (netxen_nic_get_brd_name_by_type(adapter->ahw.board_type, | 
					
						
							|  |  |  | 						    brd_name)) | 
					
						
							|  |  |  | 			strcpy(serial_num, "Unknown"); | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-28 04:11:04 -07:00
										 |  |  | 		pr_info("%s: %s Board S/N %s  Chip rev 0x%x\n", | 
					
						
							|  |  |  | 				module_name(THIS_MODULE), | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:11 +00:00
										 |  |  | 				brd_name, serial_num, adapter->ahw.revision_id); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (adapter->fw_version < NETXEN_VERSION_CODE(3, 4, 216)) { | 
					
						
							|  |  |  | 		adapter->driver_mismatch = 1; | 
					
						
							|  |  |  | 		dev_warn(&pdev->dev, "firmware version %d.%d.%d unsupported\n", | 
					
						
							|  |  |  | 				fw_major, fw_minor, fw_build); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) { | 
					
						
							|  |  |  | 		i = NXRD32(adapter, NETXEN_SRE_MISC); | 
					
						
							|  |  |  | 		adapter->ahw.cut_through = (i & 0x8000) ? 1 : 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-30 09:51:34 +00:00
										 |  |  | 	dev_info(&pdev->dev, "Driver v%s, firmware v%d.%d.%d [%s]\n", | 
					
						
							|  |  |  | 		 NETXEN_NIC_LINUX_VERSIONID, fw_major, fw_minor, fw_build, | 
					
						
							|  |  |  | 		 adapter->ahw.cut_through ? "cut-through" : "legacy"); | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (adapter->fw_version >= NETXEN_VERSION_CODE(4, 0, 222)) | 
					
						
							|  |  |  | 		adapter->capabilities = NXRD32(adapter, CRB_FW_CAPABILITIES_1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (adapter->ahw.port_type == NETXEN_NIC_XGBE) { | 
					
						
							|  |  |  | 		adapter->num_rxd = DEFAULT_RCV_DESCRIPTORS_10G; | 
					
						
							|  |  |  | 		adapter->num_jumbo_rxd = MAX_JUMBO_RCV_DESCRIPTORS_10G; | 
					
						
							|  |  |  | 	} else if (adapter->ahw.port_type == NETXEN_NIC_GBE) { | 
					
						
							|  |  |  | 		adapter->num_rxd = DEFAULT_RCV_DESCRIPTORS_1G; | 
					
						
							|  |  |  | 		adapter->num_jumbo_rxd = MAX_JUMBO_RCV_DESCRIPTORS_1G; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	adapter->msix_supported = 0; | 
					
						
							|  |  |  | 	if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) { | 
					
						
							|  |  |  | 		adapter->msix_supported = !!use_msi_x; | 
					
						
							|  |  |  | 		adapter->rss_supported = !!use_msi_x; | 
					
						
							| 
									
										
										
										
											2010-03-29 02:43:45 +00:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		u32 flashed_ver = 0; | 
					
						
							|  |  |  | 		netxen_rom_fast_read(adapter, | 
					
						
							|  |  |  | 				NX_FW_VERSION_OFFSET, (int *)&flashed_ver); | 
					
						
							|  |  |  | 		flashed_ver = NETXEN_DECODE_VERSION(flashed_ver); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (flashed_ver >= NETXEN_VERSION_CODE(3, 4, 336)) { | 
					
						
							|  |  |  | 			switch (adapter->ahw.board_type) { | 
					
						
							|  |  |  | 			case NETXEN_BRDTYPE_P2_SB31_10G: | 
					
						
							|  |  |  | 			case NETXEN_BRDTYPE_P2_SB31_10G_CX4: | 
					
						
							|  |  |  | 				adapter->msix_supported = !!use_msi_x; | 
					
						
							|  |  |  | 				adapter->rss_supported = !!use_msi_x; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			default: | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:11 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	adapter->num_txd = MAX_CMD_DESCRIPTORS; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (NX_IS_REVISION_P2(adapter->ahw.revision_id)) { | 
					
						
							|  |  |  | 		adapter->num_lro_rxd = MAX_LRO_RCV_DESCRIPTORS; | 
					
						
							|  |  |  | 		adapter->max_rds_rings = 3; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		adapter->num_lro_rxd = 0; | 
					
						
							|  |  |  | 		adapter->max_rds_rings = 2; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 16:38:22 -08:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | netxen_start_firmware(struct netxen_adapter *adapter) | 
					
						
							| 
									
										
										
										
											2009-02-24 16:38:22 -08:00
										 |  |  | { | 
					
						
							|  |  |  | 	int val, err, first_boot; | 
					
						
							|  |  |  | 	struct pci_dev *pdev = adapter->pdev; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:11 +00:00
										 |  |  | 	/* required for NX2031 dummy dma */ | 
					
						
							|  |  |  | 	err = nx_set_dma_mask(adapter); | 
					
						
							|  |  |  | 	if (err) | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | 	err = netxen_can_start_firmware(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (err < 0) | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!err) | 
					
						
							| 
									
										
										
										
											2009-06-22 20:26:21 +00:00
										 |  |  | 		goto wait_init; | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 	first_boot = NXRD32(adapter, NETXEN_CAM_RAM(0x1fc)); | 
					
						
							| 
									
										
										
										
											2009-02-24 16:38:22 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	err = netxen_check_hw_init(adapter, first_boot); | 
					
						
							|  |  |  | 	if (err) { | 
					
						
							|  |  |  | 		dev_err(&pdev->dev, "error in init HW init sequence\n"); | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	netxen_request_firmware(adapter); | 
					
						
							| 
									
										
										
										
											2009-04-28 15:29:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-01 11:41:43 +00:00
										 |  |  | 	err = netxen_need_fw_reset(adapter); | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:10 +00:00
										 |  |  | 	if (err < 0) | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:07 +00:00
										 |  |  | 		goto err_out; | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:10 +00:00
										 |  |  | 	if (err == 0) | 
					
						
							| 
									
										
										
										
											2011-09-19 08:49:52 +00:00
										 |  |  | 		goto pcie_strap_init; | 
					
						
							| 
									
										
										
										
											2009-07-01 11:41:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 16:38:22 -08:00
										 |  |  | 	if (first_boot != 0x55555555) { | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 		NXWR32(adapter, CRB_CMDPEG_STATE, 0); | 
					
						
							| 
									
										
										
										
											2009-10-16 15:50:08 +00:00
										 |  |  | 		netxen_pinit_from_rom(adapter); | 
					
						
							| 
									
										
										
										
											2009-02-24 16:38:22 -08:00
										 |  |  | 		msleep(1); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-03-02 16:02:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 	NXWR32(adapter, CRB_DMA_SHIFT, 0x55555555); | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	NXWR32(adapter, NETXEN_PEG_HALT_STATUS1, 0); | 
					
						
							|  |  |  | 	NXWR32(adapter, NETXEN_PEG_HALT_STATUS2, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-02 16:02:17 +00:00
										 |  |  | 	if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) | 
					
						
							|  |  |  | 		netxen_set_port_mode(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:07 +00:00
										 |  |  | 	err = netxen_load_firmware(adapter); | 
					
						
							|  |  |  | 	if (err) | 
					
						
							|  |  |  | 		goto err_out; | 
					
						
							| 
									
										
										
										
											2009-02-24 16:38:22 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	netxen_release_firmware(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 16:38:22 -08:00
										 |  |  | 	if (NX_IS_REVISION_P2(adapter->ahw.revision_id)) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* Initialize multicast addr pool owners */ | 
					
						
							|  |  |  | 		val = 0x7654; | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:56 +00:00
										 |  |  | 		if (adapter->ahw.port_type == NETXEN_NIC_XGBE) | 
					
						
							| 
									
										
										
										
											2009-02-24 16:38:22 -08:00
										 |  |  | 			val |= 0x0f000000; | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 		NXWR32(adapter, NETXEN_MAC_ADDR_CNTL_REG, val); | 
					
						
							| 
									
										
										
										
											2009-02-24 16:38:22 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:39 +00:00
										 |  |  | 	err = netxen_init_dummy_dma(adapter); | 
					
						
							| 
									
										
										
										
											2009-02-24 16:38:22 -08:00
										 |  |  | 	if (err) | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:07 +00:00
										 |  |  | 		goto err_out; | 
					
						
							| 
									
										
										
										
											2009-02-24 16:38:22 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Tell the hardware our version number. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	val = (_NETXEN_NIC_LINUX_MAJOR << 16) | 
					
						
							|  |  |  | 		| ((_NETXEN_NIC_LINUX_MINOR << 8)) | 
					
						
							|  |  |  | 		| (_NETXEN_NIC_LINUX_SUBVERSION); | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 	NXWR32(adapter, CRB_DRIVER_VERSION, val); | 
					
						
							| 
									
										
										
										
											2009-02-24 16:38:22 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-19 08:49:52 +00:00
										 |  |  | pcie_strap_init: | 
					
						
							|  |  |  | 	if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) | 
					
						
							|  |  |  | 		netxen_pcie_strap_init(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-22 20:26:21 +00:00
										 |  |  | wait_init: | 
					
						
							| 
									
										
										
										
											2009-02-24 16:38:22 -08:00
										 |  |  | 	/* Handshake with the card before we register the devices. */ | 
					
						
							|  |  |  | 	err = netxen_phantom_init(adapter, NETXEN_NIC_PEG_TUNE); | 
					
						
							|  |  |  | 	if (err) { | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:39 +00:00
										 |  |  | 		netxen_free_dummy_dma(adapter); | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:07 +00:00
										 |  |  | 		goto err_out; | 
					
						
							| 
									
										
										
										
											2009-02-24 16:38:22 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-02 15:46:19 +00:00
										 |  |  | 	NXWR32(adapter, NX_CRB_DEV_STATE, NX_DEV_READY); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:36 +00:00
										 |  |  | 	nx_update_dma_mask(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	netxen_check_options(adapter); | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-11 11:28:14 +00:00
										 |  |  | 	adapter->need_fw_reset = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-11 11:28:13 +00:00
										 |  |  | 	/* fall through and release firmware */ | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:07 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | err_out: | 
					
						
							|  |  |  | 	netxen_release_firmware(adapter); | 
					
						
							|  |  |  | 	return err; | 
					
						
							| 
									
										
										
										
											2009-02-24 16:38:22 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | static int | 
					
						
							|  |  |  | netxen_nic_request_irq(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	irq_handler_t handler; | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | 	struct nx_host_sds_ring *sds_ring; | 
					
						
							|  |  |  | 	int err, ring; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-28 16:27:31 +00:00
										 |  |  | 	unsigned long flags = 0; | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | 	struct net_device *netdev = adapter->netdev; | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | 	struct netxen_recv_context *recv_ctx = &adapter->recv_ctx; | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (adapter->flags & NETXEN_NIC_MSIX_ENABLED) | 
					
						
							|  |  |  | 		handler = netxen_msix_intr; | 
					
						
							|  |  |  | 	else if (adapter->flags & NETXEN_NIC_MSI_ENABLED) | 
					
						
							|  |  |  | 		handler = netxen_msi_intr; | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		flags |= IRQF_SHARED; | 
					
						
							|  |  |  | 		handler = netxen_intr; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	adapter->irq = netdev->irq; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | 	for (ring = 0; ring < adapter->max_sds_rings; ring++) { | 
					
						
							|  |  |  | 		sds_ring = &recv_ctx->sds_rings[ring]; | 
					
						
							| 
									
										
										
										
											2009-05-08 22:02:28 +00:00
										 |  |  | 		sprintf(sds_ring->name, "%s[%d]", netdev->name, ring); | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | 		err = request_irq(sds_ring->irq, handler, | 
					
						
							|  |  |  | 				  flags, sds_ring->name, sds_ring); | 
					
						
							|  |  |  | 		if (err) | 
					
						
							|  |  |  | 			return err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | netxen_nic_free_irq(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int ring; | 
					
						
							|  |  |  | 	struct nx_host_sds_ring *sds_ring; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct netxen_recv_context *recv_ctx = &adapter->recv_ctx; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (ring = 0; ring < adapter->max_sds_rings; ring++) { | 
					
						
							|  |  |  | 		sds_ring = &recv_ctx->sds_rings[ring]; | 
					
						
							|  |  |  | 		free_irq(sds_ring->irq, sds_ring); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:38 +00:00
										 |  |  | static void | 
					
						
							|  |  |  | netxen_nic_init_coalesce_defaults(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	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; | 
					
						
							|  |  |  | 	adapter->coal.normal.data.tx_time_us = | 
					
						
							|  |  |  | 		NETXEN_DEFAULT_INTR_COALESCE_TX_TIME_US; | 
					
						
							|  |  |  | 	adapter->coal.normal.data.tx_packets = | 
					
						
							|  |  |  | 		NETXEN_DEFAULT_INTR_COALESCE_TX_PACKETS; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-05 12:23:54 +00:00
										 |  |  | /* with rtnl_lock */ | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											2009-12-05 12:23:54 +00:00
										 |  |  | __netxen_nic_up(struct netxen_adapter *adapter, struct net_device *netdev) | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:07 +00:00
										 |  |  | 	if (adapter->is_up != NETXEN_ADAPTER_UP_MAGIC) | 
					
						
							|  |  |  | 		return -EIO; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | 	err = adapter->init_port(adapter, adapter->physical_port); | 
					
						
							|  |  |  | 	if (err) { | 
					
						
							|  |  |  | 		printk(KERN_ERR "%s: Failed to initialize port %d\n", | 
					
						
							|  |  |  | 				netxen_nic_driver_name, adapter->portnum); | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-05-05 19:05:08 +00:00
										 |  |  | 	if (NX_IS_REVISION_P2(adapter->ahw.revision_id)) | 
					
						
							| 
									
										
										
										
											2009-11-20 22:08:57 +00:00
										 |  |  | 		adapter->macaddr_set(adapter, adapter->mac_addr); | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-05 19:05:08 +00:00
										 |  |  | 	adapter->set_multi(netdev); | 
					
						
							|  |  |  | 	adapter->set_mtu(adapter, netdev->mtu); | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	adapter->ahw.linkup = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | 	if (adapter->max_sds_rings > 1) | 
					
						
							|  |  |  | 		netxen_config_rss(adapter, 1); | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:38 +00:00
										 |  |  | 	if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) | 
					
						
							|  |  |  | 		netxen_config_intr_coalesce(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-02 21:58:44 +00:00
										 |  |  | 	if (netdev->features & NETIF_F_LRO) | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:09 +00:00
										 |  |  | 		netxen_config_hw_lro(adapter, NETXEN_NIC_LRO_ENABLED); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-17 15:27:07 +00:00
										 |  |  | 	netxen_napi_enable(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-28 15:29:09 +00:00
										 |  |  | 	if (adapter->capabilities & NX_FW_CAPABILITY_LINK_NOTIFICATION) | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:42 +00:00
										 |  |  | 		netxen_linkevent_request(adapter, 1); | 
					
						
							| 
									
										
										
										
											2009-05-05 19:05:08 +00:00
										 |  |  | 	else | 
					
						
							|  |  |  | 		netxen_nic_set_link_parameters(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	set_bit(__NX_DEV_UP, &adapter->state); | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-05 12:23:54 +00:00
										 |  |  | /* Usage: During resume and firmware recovery module.*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline int | 
					
						
							|  |  |  | netxen_nic_up(struct netxen_adapter *adapter, struct net_device *netdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int err = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	rtnl_lock(); | 
					
						
							|  |  |  | 	if (netif_running(netdev)) | 
					
						
							|  |  |  | 		err = __netxen_nic_up(adapter, netdev); | 
					
						
							|  |  |  | 	rtnl_unlock(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* with rtnl_lock */ | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | static void | 
					
						
							| 
									
										
										
										
											2009-12-05 12:23:54 +00:00
										 |  |  | __netxen_nic_down(struct netxen_adapter *adapter, struct net_device *netdev) | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:07 +00:00
										 |  |  | 	if (adapter->is_up != NETXEN_ADAPTER_UP_MAGIC) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-05 12:23:55 +00:00
										 |  |  | 	if (!test_and_clear_bit(__NX_DEV_UP, &adapter->state)) | 
					
						
							|  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-05 12:23:55 +00:00
										 |  |  | 	smp_mb(); | 
					
						
							| 
									
										
										
										
											2009-07-17 15:27:07 +00:00
										 |  |  | 	spin_lock(&adapter->tx_clean_lock); | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | 	netif_carrier_off(netdev); | 
					
						
							| 
									
										
										
										
											2009-07-17 15:27:07 +00:00
										 |  |  | 	netif_tx_disable(netdev); | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-10 23:50:02 +00:00
										 |  |  | 	if (adapter->capabilities & NX_FW_CAPABILITY_LINK_NOTIFICATION) | 
					
						
							|  |  |  | 		netxen_linkevent_request(adapter, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | 	if (adapter->stop_port) | 
					
						
							|  |  |  | 		adapter->stop_port(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-05 19:05:07 +00:00
										 |  |  | 	if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) | 
					
						
							|  |  |  | 		netxen_p3_free_mac_list(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:12 +00:00
										 |  |  | 	adapter->set_promisc(adapter, NETXEN_NIU_NON_PROMISC_MODE); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-08 22:02:28 +00:00
										 |  |  | 	netxen_napi_disable(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | 	netxen_release_tx_buffers(adapter); | 
					
						
							| 
									
										
										
										
											2009-07-17 15:27:07 +00:00
										 |  |  | 	spin_unlock(&adapter->tx_clean_lock); | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-05 12:23:54 +00:00
										 |  |  | /* Usage: During suspend and firmware recovery module */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline void | 
					
						
							|  |  |  | netxen_nic_down(struct netxen_adapter *adapter, struct net_device *netdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	rtnl_lock(); | 
					
						
							|  |  |  | 	if (netif_running(netdev)) | 
					
						
							|  |  |  | 		__netxen_nic_down(adapter, netdev); | 
					
						
							|  |  |  | 	rtnl_unlock(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | netxen_nic_attach(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct net_device *netdev = adapter->netdev; | 
					
						
							|  |  |  | 	struct pci_dev *pdev = adapter->pdev; | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:55 +00:00
										 |  |  | 	int err, ring; | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | 	struct nx_host_rds_ring *rds_ring; | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:40 +00:00
										 |  |  | 	struct nx_host_tx_ring *tx_ring; | 
					
						
							| 
									
										
										
										
											2012-05-09 05:55:30 +00:00
										 |  |  | 	u32 capab2; | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 11:15:54 -07:00
										 |  |  | 	if (adapter->is_up == NETXEN_ADAPTER_UP_MAGIC) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | 	err = netxen_init_firmware(adapter); | 
					
						
							| 
									
										
										
										
											2009-08-13 07:03:01 +00:00
										 |  |  | 	if (err) | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-09 05:55:30 +00:00
										 |  |  | 	adapter->flags &= ~NETXEN_FW_MSS_CAP; | 
					
						
							|  |  |  | 	if (adapter->capabilities & NX_FW_CAPABILITY_MORE_CAPS) { | 
					
						
							|  |  |  | 		capab2 = NXRD32(adapter, CRB_FW_CAPABILITIES_2); | 
					
						
							|  |  |  | 		if (capab2 & NX_FW_CAPABILITY_2_LRO_MAX_TCP_SEG) | 
					
						
							|  |  |  | 			adapter->flags |= NETXEN_FW_MSS_CAP; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-13 07:03:01 +00:00
										 |  |  | 	err = netxen_napi_add(adapter, netdev); | 
					
						
							|  |  |  | 	if (err) | 
					
						
							|  |  |  | 		return err; | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	err = netxen_alloc_sw_resources(adapter); | 
					
						
							|  |  |  | 	if (err) { | 
					
						
							|  |  |  | 		printk(KERN_ERR "%s: Error in setting sw resources\n", | 
					
						
							|  |  |  | 				netdev->name); | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = netxen_alloc_hw_resources(adapter); | 
					
						
							|  |  |  | 	if (err) { | 
					
						
							|  |  |  | 		printk(KERN_ERR "%s: Error in setting hw resources\n", | 
					
						
							|  |  |  | 				netdev->name); | 
					
						
							|  |  |  | 		goto err_out_free_sw; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:42 +00:00
										 |  |  | 	if (NX_IS_REVISION_P2(adapter->ahw.revision_id)) { | 
					
						
							| 
									
										
										
										
											2009-04-28 15:29:10 +00:00
										 |  |  | 		tx_ring = adapter->tx_ring; | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:10 +00:00
										 |  |  | 		tx_ring->crb_cmd_producer = netxen_get_ioaddr(adapter, | 
					
						
							|  |  |  | 				crb_cmd_producer[adapter->portnum]); | 
					
						
							|  |  |  | 		tx_ring->crb_cmd_consumer = netxen_get_ioaddr(adapter, | 
					
						
							|  |  |  | 				crb_cmd_consumer[adapter->portnum]); | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-17 17:27:25 +00:00
										 |  |  | 		tx_ring->producer = 0; | 
					
						
							|  |  |  | 		tx_ring->sw_consumer = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		netxen_nic_update_cmd_producer(adapter, tx_ring); | 
					
						
							|  |  |  | 		netxen_nic_update_cmd_consumer(adapter, tx_ring); | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | 	for (ring = 0; ring < adapter->max_rds_rings; ring++) { | 
					
						
							|  |  |  | 		rds_ring = &adapter->recv_ctx.rds_rings[ring]; | 
					
						
							|  |  |  | 		netxen_post_rx_buffers(adapter, ring, rds_ring); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	err = netxen_nic_request_irq(adapter); | 
					
						
							|  |  |  | 	if (err) { | 
					
						
							|  |  |  | 		dev_err(&pdev->dev, "%s: failed to setup interrupt\n", | 
					
						
							|  |  |  | 				netdev->name); | 
					
						
							|  |  |  | 		goto err_out_free_rxbuf; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:38 +00:00
										 |  |  | 	if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) | 
					
						
							|  |  |  | 		netxen_nic_init_coalesce_defaults(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-24 19:23:28 +00:00
										 |  |  | 	netxen_create_sysfs_entries(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | 	adapter->is_up = NETXEN_ADAPTER_UP_MAGIC; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | err_out_free_rxbuf: | 
					
						
							|  |  |  | 	netxen_release_rx_buffers(adapter); | 
					
						
							|  |  |  | 	netxen_free_hw_resources(adapter); | 
					
						
							|  |  |  | err_out_free_sw: | 
					
						
							|  |  |  | 	netxen_free_sw_resources(adapter); | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | netxen_nic_detach(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-07-27 11:15:54 -07:00
										 |  |  | 	if (adapter->is_up != NETXEN_ADAPTER_UP_MAGIC) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-24 19:23:28 +00:00
										 |  |  | 	netxen_remove_sysfs_entries(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | 	netxen_free_hw_resources(adapter); | 
					
						
							| 
									
										
										
										
											2009-07-17 15:27:06 +00:00
										 |  |  | 	netxen_release_rx_buffers(adapter); | 
					
						
							| 
									
										
										
										
											2009-05-08 22:02:28 +00:00
										 |  |  | 	netxen_nic_free_irq(adapter); | 
					
						
							| 
									
										
										
										
											2009-08-13 07:03:01 +00:00
										 |  |  | 	netxen_napi_del(adapter); | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | 	netxen_free_sw_resources(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	adapter->is_up = 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 11:15:54 -07:00
										 |  |  | int | 
					
						
							|  |  |  | netxen_nic_reset_context(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int err = 0; | 
					
						
							|  |  |  | 	struct net_device *netdev = adapter->netdev; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	if (test_and_set_bit(__NX_RESETTING, &adapter->state)) | 
					
						
							|  |  |  | 		return -EBUSY; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 11:15:54 -07:00
										 |  |  | 	if (adapter->is_up == NETXEN_ADAPTER_UP_MAGIC) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 		netif_device_detach(netdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 11:15:54 -07:00
										 |  |  | 		if (netif_running(netdev)) | 
					
						
							| 
									
										
										
										
											2009-12-05 12:23:54 +00:00
										 |  |  | 			__netxen_nic_down(adapter, netdev); | 
					
						
							| 
									
										
										
										
											2009-07-27 11:15:54 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		netxen_nic_detach(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 		if (netif_running(netdev)) { | 
					
						
							|  |  |  | 			err = netxen_nic_attach(adapter); | 
					
						
							|  |  |  | 			if (!err) | 
					
						
							| 
									
										
										
										
											2009-12-05 12:23:54 +00:00
										 |  |  | 				err = __netxen_nic_up(adapter, netdev); | 
					
						
							| 
									
										
										
										
											2009-07-27 11:15:54 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 			if (err) | 
					
						
							|  |  |  | 				goto done; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		netif_device_attach(netdev); | 
					
						
							| 
									
										
										
										
											2009-07-27 11:15:54 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 11:15:54 -07:00
										 |  |  | done: | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	clear_bit(__NX_RESETTING, &adapter->state); | 
					
						
							| 
									
										
										
										
											2009-07-27 11:15:54 -07:00
										 |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:43 +00:00
										 |  |  | static int | 
					
						
							|  |  |  | netxen_setup_netdev(struct netxen_adapter *adapter, | 
					
						
							|  |  |  | 		struct net_device *netdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int err = 0; | 
					
						
							|  |  |  | 	struct pci_dev *pdev = adapter->pdev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	adapter->mc_enabled = 0; | 
					
						
							|  |  |  | 	if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) | 
					
						
							|  |  |  | 		adapter->max_mc_count = 38; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		adapter->max_mc_count = 16; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	netdev->netdev_ops	   = &netxen_netdev_ops; | 
					
						
							| 
									
										
										
										
											2010-10-18 02:03:41 +00:00
										 |  |  | 	netdev->watchdog_timeo     = 5*HZ; | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	netxen_nic_change_mtu(netdev, netdev->mtu); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	SET_ETHTOOL_OPS(netdev, &netxen_nic_ethtool_ops); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-05 01:36:58 +00:00
										 |  |  | 	netdev->hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO | | 
					
						
							|  |  |  | 	                      NETIF_F_RXCSUM; | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-05 01:36:58 +00:00
										 |  |  | 	if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) | 
					
						
							|  |  |  | 		netdev->hw_features |= NETIF_F_IPV6_CSUM | NETIF_F_TSO6; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	netdev->vlan_features |= netdev->hw_features; | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (adapter->pci_using_dac) { | 
					
						
							|  |  |  | 		netdev->features |= NETIF_F_HIGHDMA; | 
					
						
							|  |  |  | 		netdev->vlan_features |= NETIF_F_HIGHDMA; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:45 +00:00
										 |  |  | 	if (adapter->capabilities & NX_FW_CAPABILITY_FVLANTX) | 
					
						
							| 
									
										
										
										
											2013-04-19 02:04:27 +00:00
										 |  |  | 		netdev->hw_features |= NETIF_F_HW_VLAN_CTAG_TX; | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:09 +00:00
										 |  |  | 	if (adapter->capabilities & NX_FW_CAPABILITY_HW_LRO) | 
					
						
							| 
									
										
										
										
											2011-04-05 01:36:58 +00:00
										 |  |  | 		netdev->hw_features |= NETIF_F_LRO; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	netdev->features |= netdev->hw_features; | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:43 +00:00
										 |  |  | 	netdev->irq = adapter->msix_entries[0].vector; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-11 11:28:14 +00:00
										 |  |  | 	INIT_WORK(&adapter->tx_timeout_task, netxen_tx_timeout_task); | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (netxen_read_mac_addr(adapter)) | 
					
						
							|  |  |  | 		dev_warn(&pdev->dev, "failed to read mac addr\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	netif_carrier_off(netdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = register_netdev(netdev); | 
					
						
							|  |  |  | 	if (err) { | 
					
						
							|  |  |  | 		dev_err(&pdev->dev, "failed to register net device\n"); | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-18 02:03:42 +00:00
										 |  |  | #ifdef CONFIG_PCIEAER
 | 
					
						
							|  |  |  | static void netxen_mask_aer_correctable(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct pci_dev *pdev = adapter->pdev; | 
					
						
							|  |  |  | 	struct pci_dev *root = pdev->bus->self; | 
					
						
							|  |  |  | 	u32 aer_pos; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-14 05:50:03 +00:00
										 |  |  | 	/* root bus? */ | 
					
						
							|  |  |  | 	if (!root) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-18 02:03:42 +00:00
										 |  |  | 	if (adapter->ahw.board_type != NETXEN_BRDTYPE_P3_4_GB_MM && | 
					
						
							|  |  |  | 		adapter->ahw.board_type != NETXEN_BRDTYPE_P3_10G_TP) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-24 17:20:03 +08:00
										 |  |  | 	if (pci_pcie_type(root) != PCI_EXP_TYPE_ROOT_PORT) | 
					
						
							| 
									
										
										
										
											2010-10-18 02:03:42 +00:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	aer_pos = pci_find_ext_capability(root, PCI_EXT_CAP_ID_ERR); | 
					
						
							|  |  |  | 	if (!aer_pos) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	pci_write_config_dword(root, aer_pos + PCI_ERR_COR_MASK, 0xffff); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-03 09:23:24 -05:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | netxen_nic_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct net_device *netdev = NULL; | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = NULL; | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 	int i = 0, err; | 
					
						
							| 
									
										
										
										
											2007-04-20 07:52:37 -07:00
										 |  |  | 	int pci_func_id = PCI_FUNC(pdev->devfn); | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 	uint8_t revision_id; | 
					
						
							| 
									
										
										
										
											2010-11-23 03:08:27 +00:00
										 |  |  | 	u32 val; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-17 22:24:39 +00:00
										 |  |  | 	if (pdev->revision >= NX_P3_A0 && pdev->revision <= NX_P3_B1) { | 
					
						
							|  |  |  | 		pr_warning("%s: chip revisions between 0x%x-0x%x " | 
					
						
							| 
									
										
										
										
											2008-08-08 00:08:45 -07:00
										 |  |  | 				"will not be enabled.\n", | 
					
						
							| 
									
										
										
										
											2009-10-28 04:11:04 -07:00
										 |  |  | 				module_name(THIS_MODULE), NX_P3_A0, NX_P3_B1); | 
					
						
							| 
									
										
										
										
											2008-08-08 00:08:45 -07:00
										 |  |  | 		return -ENODEV; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	if ((err = pci_enable_device(pdev))) | 
					
						
							|  |  |  | 		return err; | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) { | 
					
						
							|  |  |  | 		err = -ENODEV; | 
					
						
							|  |  |  | 		goto err_out_disable_pdev; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if ((err = pci_request_regions(pdev, netxen_nic_driver_name))) | 
					
						
							|  |  |  | 		goto err_out_disable_pdev; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 20:40:56 +00:00
										 |  |  | 	if (NX_IS_REVISION_P3(pdev->revision)) | 
					
						
							|  |  |  | 		pci_enable_pcie_error_reporting(pdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	pci_set_master(pdev); | 
					
						
							| 
									
										
										
										
											2007-04-20 07:52:37 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	netdev = alloc_etherdev(sizeof(struct netxen_adapter)); | 
					
						
							|  |  |  | 	if(!netdev) { | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:43 +00:00
										 |  |  | 		err = -ENOMEM; | 
					
						
							| 
									
										
										
										
											2007-04-20 07:52:37 -07:00
										 |  |  | 		goto err_out_free_res; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	SET_NETDEV_DEV(netdev, &pdev->dev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-12 23:38:14 -08:00
										 |  |  | 	adapter = netdev_priv(netdev); | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 	adapter->netdev  = netdev; | 
					
						
							|  |  |  | 	adapter->pdev    = pdev; | 
					
						
							| 
									
										
										
										
											2007-04-20 07:53:05 -07:00
										 |  |  | 	adapter->ahw.pci_func  = pci_func_id; | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	revision_id = pdev->revision; | 
					
						
							|  |  |  | 	adapter->ahw.revision_id = revision_id; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-13 05:31:44 +00:00
										 |  |  | 	rwlock_init(&adapter->ahw.crb_lock); | 
					
						
							|  |  |  | 	spin_lock_init(&adapter->ahw.mem_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | 	spin_lock_init(&adapter->tx_clean_lock); | 
					
						
							| 
									
										
										
										
											2009-05-05 19:05:07 +00:00
										 |  |  | 	INIT_LIST_HEAD(&adapter->mac_list); | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | 	INIT_LIST_HEAD(&adapter->ip_list); | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 16:39:21 -08:00
										 |  |  | 	err = netxen_setup_pci_map(adapter); | 
					
						
							|  |  |  | 	if (err) | 
					
						
							| 
									
										
										
										
											2007-04-20 07:55:26 -07:00
										 |  |  | 		goto err_out_free_netdev; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-02 00:26:00 +05:30
										 |  |  | 	/* This will be reset for mezz cards  */ | 
					
						
							| 
									
										
										
										
											2007-04-20 07:52:37 -07:00
										 |  |  | 	adapter->portnum = pci_func_id; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:43 +00:00
										 |  |  | 	err = netxen_nic_get_board_info(adapter); | 
					
						
							|  |  |  | 	if (err) { | 
					
						
							|  |  |  | 		dev_err(&pdev->dev, "Error getting board config info.\n"); | 
					
						
							| 
									
										
										
										
											2008-06-15 22:59:45 -07:00
										 |  |  | 		goto err_out_iounmap; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-04-20 07:55:26 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-18 02:03:42 +00:00
										 |  |  | #ifdef CONFIG_PCIEAER
 | 
					
						
							|  |  |  | 	netxen_mask_aer_correctable(adapter); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-20 07:53:05 -07:00
										 |  |  | 	/* Mezz cards have PCI function 0,2,3 enabled */ | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:56 +00:00
										 |  |  | 	switch (adapter->ahw.board_type) { | 
					
						
							| 
									
										
										
										
											2008-06-15 22:59:43 -07:00
										 |  |  | 	case NETXEN_BRDTYPE_P2_SB31_10G_IMEZ: | 
					
						
							|  |  |  | 	case NETXEN_BRDTYPE_P2_SB31_10G_HMEZ: | 
					
						
							|  |  |  | 		if (pci_func_id >= 2) | 
					
						
							| 
									
										
										
										
											2007-04-20 07:53:05 -07:00
										 |  |  | 			adapter->portnum = pci_func_id - 2; | 
					
						
							| 
									
										
										
										
											2008-06-15 22:59:43 -07:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-04-20 07:53:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-20 00:08:53 +00:00
										 |  |  | 	err = netxen_check_flash_fw_compatibility(adapter); | 
					
						
							|  |  |  | 	if (err) | 
					
						
							|  |  |  | 		goto err_out_iounmap; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-23 03:08:27 +00:00
										 |  |  | 	if (adapter->portnum == 0) { | 
					
						
							|  |  |  | 		val = NXRD32(adapter, NX_CRB_DEV_REF_COUNT); | 
					
						
							|  |  |  | 		if (val != 0xffffffff && val != 0) { | 
					
						
							| 
									
										
										
										
											2010-10-26 22:51:50 +00:00
										 |  |  | 			NXWR32(adapter, NX_CRB_DEV_REF_COUNT, 0); | 
					
						
							|  |  |  | 			adapter->need_fw_reset = 1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	err = netxen_start_firmware(adapter); | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:02 +00:00
										 |  |  | 	if (err) | 
					
						
							| 
									
										
										
										
											2009-12-02 15:46:19 +00:00
										 |  |  | 		goto err_out_decr_ref; | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	/*
 | 
					
						
							| 
									
										
										
										
											2007-04-20 07:55:26 -07:00
										 |  |  | 	 * See if the firmware gave us a virtual-physical port mapping. | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2008-06-15 22:59:45 -07:00
										 |  |  | 	adapter->physical_port = adapter->portnum; | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:42 +00:00
										 |  |  | 	if (NX_IS_REVISION_P2(adapter->ahw.revision_id)) { | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 		i = NXRD32(adapter, CRB_V2P(adapter->portnum)); | 
					
						
							| 
									
										
										
										
											2009-02-24 03:42:59 -08:00
										 |  |  | 		if (i != 0x55555555) | 
					
						
							|  |  |  | 			adapter->physical_port = i; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-04-20 07:55:26 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	netxen_nic_clear_stats(adapter); | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-30 09:51:37 +00:00
										 |  |  | 	err = netxen_setup_intr(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (err) { | 
					
						
							|  |  |  | 		dev_err(&adapter->pdev->dev, | 
					
						
							|  |  |  | 			"Failed to setup interrupts, error = %d\n", err); | 
					
						
							|  |  |  | 		goto err_out_disable_msi; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:43 +00:00
										 |  |  | 	err = netxen_setup_netdev(adapter, netdev); | 
					
						
							| 
									
										
										
										
											2008-08-08 00:08:39 -07:00
										 |  |  | 	if (err) | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 		goto err_out_disable_msi; | 
					
						
							| 
									
										
										
										
											2007-04-20 07:55:26 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	pci_set_drvdata(pdev, adapter); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	netxen_schedule_work(adapter, netxen_fw_poll_work, FW_POLL_DELAY); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:56 +00:00
										 |  |  | 	switch (adapter->ahw.port_type) { | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 	case NETXEN_NIC_GBE: | 
					
						
							|  |  |  | 		dev_info(&adapter->pdev->dev, "%s: GbE port initialized\n", | 
					
						
							|  |  |  | 				adapter->netdev->name); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case NETXEN_NIC_XGBE: | 
					
						
							|  |  |  | 		dev_info(&adapter->pdev->dev, "%s: XGbE port initialized\n", | 
					
						
							|  |  |  | 				adapter->netdev->name); | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-13 05:31:45 +00:00
										 |  |  | 	netxen_create_diag_entries(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | err_out_disable_msi: | 
					
						
							| 
									
										
										
										
											2009-02-24 16:39:21 -08:00
										 |  |  | 	netxen_teardown_intr(adapter); | 
					
						
							| 
									
										
										
										
											2007-04-20 07:55:26 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:39 +00:00
										 |  |  | 	netxen_free_dummy_dma(adapter); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-02 15:46:19 +00:00
										 |  |  | err_out_decr_ref: | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	nx_decr_dev_ref_cnt(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | err_out_iounmap: | 
					
						
							| 
									
										
										
										
											2009-02-24 16:39:21 -08:00
										 |  |  | 	netxen_cleanup_pci_map(adapter); | 
					
						
							| 
									
										
										
										
											2006-11-29 09:00:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-20 07:55:26 -07:00
										 |  |  | err_out_free_netdev: | 
					
						
							|  |  |  | 	free_netdev(netdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | err_out_free_res: | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	pci_release_regions(pdev); | 
					
						
							| 
									
										
										
										
											2007-04-20 07:55:26 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | err_out_disable_pdev: | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 	pci_set_drvdata(pdev, NULL); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	pci_disable_device(pdev); | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | static | 
					
						
							|  |  |  | void netxen_cleanup_minidump(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	kfree(adapter->mdump.md_template); | 
					
						
							|  |  |  | 	adapter->mdump.md_template = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (adapter->mdump.md_capture_buff) { | 
					
						
							|  |  |  | 		vfree(adapter->mdump.md_capture_buff); | 
					
						
							|  |  |  | 		adapter->mdump.md_capture_buff = NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-03 09:23:24 -05:00
										 |  |  | static void netxen_nic_remove(struct pci_dev *pdev) | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter; | 
					
						
							| 
									
										
										
										
											2007-04-20 07:52:37 -07:00
										 |  |  | 	struct net_device *netdev; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-20 07:55:26 -07:00
										 |  |  | 	adapter = pci_get_drvdata(pdev); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	if (adapter == NULL) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-20 07:55:26 -07:00
										 |  |  | 	netdev = adapter->netdev; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	netxen_cancel_fw_work(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-02 09:37:57 +05:30
										 |  |  | 	unregister_netdev(netdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-13 07:03:00 +00:00
										 |  |  | 	cancel_work_sync(&adapter->tx_timeout_task); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | 	netxen_free_ip_list(adapter, false); | 
					
						
							| 
									
										
										
										
											2009-07-27 11:15:54 -07:00
										 |  |  | 	netxen_nic_detach(adapter); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	nx_decr_dev_ref_cnt(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-15 22:59:46 -07:00
										 |  |  | 	if (adapter->portnum == 0) | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:39 +00:00
										 |  |  | 		netxen_free_dummy_dma(adapter); | 
					
						
							| 
									
										
										
										
											2007-07-02 09:37:57 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	clear_bit(__NX_RESETTING, &adapter->state); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 16:39:21 -08:00
										 |  |  | 	netxen_teardown_intr(adapter); | 
					
						
							| 
									
										
										
										
											2013-05-30 09:51:37 +00:00
										 |  |  | 	netxen_set_interrupt_mode(adapter, 0); | 
					
						
							| 
									
										
										
										
											2009-10-13 05:31:45 +00:00
										 |  |  | 	netxen_remove_diag_entries(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 16:39:21 -08:00
										 |  |  | 	netxen_cleanup_pci_map(adapter); | 
					
						
							| 
									
										
										
										
											2007-04-20 07:53:52 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-28 15:29:11 +00:00
										 |  |  | 	netxen_release_firmware(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | 	if (NX_IS_REVISION_P3(pdev->revision)) { | 
					
						
							|  |  |  | 		netxen_cleanup_minidump(adapter); | 
					
						
							| 
									
										
										
										
											2009-12-08 20:40:56 +00:00
										 |  |  | 		pci_disable_pcie_error_reporting(pdev); | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-08 20:40:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-20 07:53:52 -07:00
										 |  |  | 	pci_release_regions(pdev); | 
					
						
							| 
									
										
										
										
											2007-08-28 17:23:26 +05:30
										 |  |  | 	pci_disable_device(pdev); | 
					
						
							| 
									
										
										
										
											2007-04-20 07:53:52 -07:00
										 |  |  | 	pci_set_drvdata(pdev, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-20 07:55:26 -07:00
										 |  |  | 	free_netdev(netdev); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-12-08 20:40:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static void netxen_nic_detach_func(struct netxen_adapter *adapter) | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:02 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct net_device *netdev = adapter->netdev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	netif_device_detach(netdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	netxen_cancel_fw_work(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:02 +00:00
										 |  |  | 	if (netif_running(netdev)) | 
					
						
							|  |  |  | 		netxen_nic_down(adapter, netdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-13 07:03:00 +00:00
										 |  |  | 	cancel_work_sync(&adapter->tx_timeout_task); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 11:15:54 -07:00
										 |  |  | 	netxen_nic_detach(adapter); | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:12 +00:00
										 |  |  | 	if (adapter->portnum == 0) | 
					
						
							|  |  |  | 		netxen_free_dummy_dma(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	nx_decr_dev_ref_cnt(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	clear_bit(__NX_RESETTING, &adapter->state); | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:12 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 20:40:56 +00:00
										 |  |  | static int netxen_nic_attach_func(struct pci_dev *pdev) | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:02 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = pci_get_drvdata(pdev); | 
					
						
							|  |  |  | 	struct net_device *netdev = adapter->netdev; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = pci_enable_device(pdev); | 
					
						
							|  |  |  | 	if (err) | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 20:40:54 +00:00
										 |  |  | 	pci_set_power_state(pdev, PCI_D0); | 
					
						
							|  |  |  | 	pci_set_master(pdev); | 
					
						
							|  |  |  | 	pci_restore_state(pdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-13 05:31:43 +00:00
										 |  |  | 	adapter->ahw.crb_win = -1; | 
					
						
							| 
									
										
										
										
											2009-10-13 05:31:42 +00:00
										 |  |  | 	adapter->ahw.ocm_win = -1; | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	err = netxen_start_firmware(adapter); | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:02 +00:00
										 |  |  | 	if (err) { | 
					
						
							|  |  |  | 		dev_err(&pdev->dev, "failed to start firmware\n"); | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (netif_running(netdev)) { | 
					
						
							|  |  |  | 		err = netxen_nic_attach(adapter); | 
					
						
							|  |  |  | 		if (err) | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 			goto err_out; | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		err = netxen_nic_up(adapter, netdev); | 
					
						
							|  |  |  | 		if (err) | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 			goto err_out_detach; | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-06 16:46:44 +00:00
										 |  |  | 		netxen_restore_indev_addr(netdev, NETDEV_UP); | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:02 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 20:40:54 +00:00
										 |  |  | 	netif_device_attach(netdev); | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	netxen_schedule_work(adapter, netxen_fw_poll_work, FW_POLL_DELAY); | 
					
						
							| 
									
										
										
										
											2009-09-20 19:20:39 +00:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | err_out_detach: | 
					
						
							|  |  |  | 	netxen_nic_detach(adapter); | 
					
						
							|  |  |  | err_out: | 
					
						
							|  |  |  | 	nx_decr_dev_ref_cnt(adapter); | 
					
						
							|  |  |  | 	return err; | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:02 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-12-08 20:40:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static pci_ers_result_t netxen_io_error_detected(struct pci_dev *pdev, | 
					
						
							|  |  |  | 						pci_channel_state_t state) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = pci_get_drvdata(pdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (state == pci_channel_io_perm_failure) | 
					
						
							|  |  |  | 		return PCI_ERS_RESULT_DISCONNECT; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (nx_dev_request_aer(adapter)) | 
					
						
							|  |  |  | 		return PCI_ERS_RESULT_RECOVERED; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	netxen_nic_detach_func(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	pci_disable_device(pdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return PCI_ERS_RESULT_NEED_RESET; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static pci_ers_result_t netxen_io_slot_reset(struct pci_dev *pdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int err = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = netxen_nic_attach_func(pdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return err ? PCI_ERS_RESULT_DISCONNECT : PCI_ERS_RESULT_RECOVERED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void netxen_io_resume(struct pci_dev *pdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	pci_cleanup_aer_uncorrect_error_status(pdev); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void netxen_nic_shutdown(struct pci_dev *pdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = pci_get_drvdata(pdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	netxen_nic_detach_func(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (pci_save_state(pdev)) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (netxen_nic_wol_supported(adapter)) { | 
					
						
							|  |  |  | 		pci_enable_wake(pdev, PCI_D3cold, 1); | 
					
						
							|  |  |  | 		pci_enable_wake(pdev, PCI_D3hot, 1); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	pci_disable_device(pdev); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_PM
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | netxen_nic_suspend(struct pci_dev *pdev, pm_message_t state) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = pci_get_drvdata(pdev); | 
					
						
							|  |  |  | 	int retval; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	netxen_nic_detach_func(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	retval = pci_save_state(pdev); | 
					
						
							|  |  |  | 	if (retval) | 
					
						
							|  |  |  | 		return retval; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (netxen_nic_wol_supported(adapter)) { | 
					
						
							|  |  |  | 		pci_enable_wake(pdev, PCI_D3cold, 1); | 
					
						
							|  |  |  | 		pci_enable_wake(pdev, PCI_D3hot, 1); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	pci_disable_device(pdev); | 
					
						
							|  |  |  | 	pci_set_power_state(pdev, pci_choose_state(pdev, state)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | netxen_nic_resume(struct pci_dev *pdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return netxen_nic_attach_func(pdev); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-06-22 20:26:20 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | static int netxen_nic_open(struct net_device *netdev) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-11-12 23:38:14 -08:00
										 |  |  | 	struct netxen_adapter *adapter = netdev_priv(netdev); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	int err = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-15 22:59:45 -07:00
										 |  |  | 	if (adapter->driver_mismatch) | 
					
						
							|  |  |  | 		return -EIO; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-27 11:15:54 -07:00
										 |  |  | 	err = netxen_nic_attach(adapter); | 
					
						
							|  |  |  | 	if (err) | 
					
						
							|  |  |  | 		return err; | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-05 12:23:54 +00:00
										 |  |  | 	err = __netxen_nic_up(adapter, netdev); | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | 	if (err) | 
					
						
							|  |  |  | 		goto err_out; | 
					
						
							| 
									
										
										
										
											2008-03-17 19:59:49 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-15 22:59:45 -07:00
										 |  |  | 	netif_start_queue(netdev); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:54 +00:00
										 |  |  | err_out: | 
					
						
							|  |  |  | 	netxen_nic_detach(adapter); | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:04 -07:00
										 |  |  | 	return err; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * netxen_nic_close - Disables a network interface entry point | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int netxen_nic_close(struct net_device *netdev) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-04-20 07:52:37 -07:00
										 |  |  | 	struct netxen_adapter *adapter = netdev_priv(netdev); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-05 12:23:54 +00:00
										 |  |  | 	__netxen_nic_down(adapter, netdev); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:40 +00:00
										 |  |  | static void | 
					
						
							|  |  |  | netxen_tso_check(struct net_device *netdev, | 
					
						
							|  |  |  | 		struct nx_host_tx_ring *tx_ring, | 
					
						
							|  |  |  | 		struct cmd_desc_type0 *first_desc, | 
					
						
							|  |  |  | 		struct sk_buff *skb) | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:09 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-01-14 20:48:11 -08:00
										 |  |  | 	u8 opcode = TX_ETHER_PKT; | 
					
						
							| 
									
										
										
										
											2009-01-26 12:34:57 -08:00
										 |  |  | 	__be16 protocol = skb->protocol; | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:45 +00:00
										 |  |  | 	u16 flags = 0, vid = 0; | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:40 +00:00
										 |  |  | 	u32 producer; | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:45 +00:00
										 |  |  | 	int copied, offset, copy_len, hdr_len = 0, tso = 0, vlan_oob = 0; | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:40 +00:00
										 |  |  | 	struct cmd_desc_type0 *hwdesc; | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:45 +00:00
										 |  |  | 	struct vlan_ethhdr *vh; | 
					
						
							| 
									
										
										
										
											2009-01-26 12:34:57 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-01 00:45:17 -08:00
										 |  |  | 	if (protocol == cpu_to_be16(ETH_P_8021Q)) { | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		vh = (struct vlan_ethhdr *)skb->data; | 
					
						
							| 
									
										
										
										
											2009-01-26 12:34:57 -08:00
										 |  |  | 		protocol = vh->h_vlan_encapsulated_proto; | 
					
						
							|  |  |  | 		flags = FLAGS_VLAN_TAGGED; | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	} else if (vlan_tx_tag_present(skb)) { | 
					
						
							|  |  |  | 		flags = FLAGS_VLAN_OOB; | 
					
						
							|  |  |  | 		vid = vlan_tx_tag_get(skb); | 
					
						
							|  |  |  | 		netxen_set_tx_vlan_tci(first_desc, vid); | 
					
						
							|  |  |  | 		vlan_oob = 1; | 
					
						
							| 
									
										
										
										
											2009-01-26 12:34:57 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:09 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-14 20:48:11 -08:00
										 |  |  | 	if ((netdev->features & (NETIF_F_TSO | NETIF_F_TSO6)) && | 
					
						
							|  |  |  | 			skb_shinfo(skb)->gso_size > 0) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:40 +00:00
										 |  |  | 		hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		first_desc->mss = cpu_to_le16(skb_shinfo(skb)->gso_size); | 
					
						
							|  |  |  | 		first_desc->total_hdr_length = hdr_len; | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:45 +00:00
										 |  |  | 		if (vlan_oob) { | 
					
						
							|  |  |  | 			first_desc->total_hdr_length += VLAN_HLEN; | 
					
						
							|  |  |  | 			first_desc->tcp_hdr_offset = VLAN_HLEN; | 
					
						
							|  |  |  | 			first_desc->ip_hdr_offset = VLAN_HLEN; | 
					
						
							|  |  |  | 			/* Only in case of TSO on vlan device */ | 
					
						
							|  |  |  | 			flags |= FLAGS_VLAN_TAGGED; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-01-14 20:48:11 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-01 00:45:17 -08:00
										 |  |  | 		opcode = (protocol == cpu_to_be16(ETH_P_IPV6)) ? | 
					
						
							| 
									
										
										
										
											2009-01-14 20:48:11 -08:00
										 |  |  | 				TX_TCP_LSO6 : TX_TCP_LSO; | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:40 +00:00
										 |  |  | 		tso = 1; | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:09 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	} else if (skb->ip_summed == CHECKSUM_PARTIAL) { | 
					
						
							| 
									
										
										
										
											2009-01-14 20:48:11 -08:00
										 |  |  | 		u8 l4proto; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-01 00:45:17 -08:00
										 |  |  | 		if (protocol == cpu_to_be16(ETH_P_IP)) { | 
					
						
							| 
									
										
										
										
											2009-01-14 20:48:11 -08:00
										 |  |  | 			l4proto = ip_hdr(skb)->protocol; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (l4proto == IPPROTO_TCP) | 
					
						
							|  |  |  | 				opcode = TX_TCP_PKT; | 
					
						
							|  |  |  | 			else if(l4proto == IPPROTO_UDP) | 
					
						
							|  |  |  | 				opcode = TX_UDP_PKT; | 
					
						
							| 
									
										
										
										
											2009-02-01 00:45:17 -08:00
										 |  |  | 		} else if (protocol == cpu_to_be16(ETH_P_IPV6)) { | 
					
						
							| 
									
										
										
										
											2009-01-14 20:48:11 -08:00
										 |  |  | 			l4proto = ipv6_hdr(skb)->nexthdr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (l4proto == IPPROTO_TCP) | 
					
						
							|  |  |  | 				opcode = TX_TCPV6_PKT; | 
					
						
							|  |  |  | 			else if(l4proto == IPPROTO_UDP) | 
					
						
							|  |  |  | 				opcode = TX_UDPV6_PKT; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:09 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	first_desc->tcp_hdr_offset += skb_transport_offset(skb); | 
					
						
							|  |  |  | 	first_desc->ip_hdr_offset += skb_network_offset(skb); | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:40 +00:00
										 |  |  | 	netxen_set_tx_flags_opcode(first_desc, flags, opcode); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!tso) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* For LSO, we need to copy the MAC/IP/TCP headers into
 | 
					
						
							|  |  |  | 	 * the descriptor ring | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	producer = tx_ring->producer; | 
					
						
							|  |  |  | 	copied = 0; | 
					
						
							|  |  |  | 	offset = 2; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:45 +00:00
										 |  |  | 	if (vlan_oob) { | 
					
						
							|  |  |  | 		/* Create a TSO vlan header template for firmware */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		hwdesc = &tx_ring->desc_head[producer]; | 
					
						
							|  |  |  | 		tx_ring->cmd_buf_arr[producer].skb = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		copy_len = min((int)sizeof(struct cmd_desc_type0) - offset, | 
					
						
							|  |  |  | 				hdr_len + VLAN_HLEN); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		vh = (struct vlan_ethhdr *)((char *)hwdesc + 2); | 
					
						
							|  |  |  | 		skb_copy_from_linear_data(skb, vh, 12); | 
					
						
							|  |  |  | 		vh->h_vlan_proto = htons(ETH_P_8021Q); | 
					
						
							|  |  |  | 		vh->h_vlan_TCI = htons(vid); | 
					
						
							|  |  |  | 		skb_copy_from_linear_data_offset(skb, 12, | 
					
						
							|  |  |  | 				(char *)vh + 16, copy_len - 16); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-05 07:34:07 +00:00
										 |  |  | 		copied = copy_len - VLAN_HLEN; | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:45 +00:00
										 |  |  | 		offset = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		producer = get_next_index(producer, tx_ring->num_desc); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:40 +00:00
										 |  |  | 	while (copied < hdr_len) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		copy_len = min((int)sizeof(struct cmd_desc_type0) - offset, | 
					
						
							|  |  |  | 				(hdr_len - copied)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		hwdesc = &tx_ring->desc_head[producer]; | 
					
						
							|  |  |  | 		tx_ring->cmd_buf_arr[producer].skb = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		skb_copy_from_linear_data_offset(skb, copied, | 
					
						
							|  |  |  | 				 (char *)hwdesc + offset, copy_len); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		copied += copy_len; | 
					
						
							|  |  |  | 		offset = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		producer = get_next_index(producer, tx_ring->num_desc); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tx_ring->producer = producer; | 
					
						
							|  |  |  | 	barrier(); | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:09 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:11 +00:00
										 |  |  | static int | 
					
						
							|  |  |  | netxen_map_tx_skb(struct pci_dev *pdev, | 
					
						
							|  |  |  | 		struct sk_buff *skb, struct netxen_cmd_buffer *pbuf) | 
					
						
							| 
									
										
										
										
											2009-01-14 20:50:00 -08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:11 +00:00
										 |  |  | 	struct netxen_skb_frag *nf; | 
					
						
							|  |  |  | 	struct skb_frag_struct *frag; | 
					
						
							|  |  |  | 	int i, nr_frags; | 
					
						
							|  |  |  | 	dma_addr_t map; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	nr_frags = skb_shinfo(skb)->nr_frags; | 
					
						
							|  |  |  | 	nf = &pbuf->frag_array[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	map = pci_map_single(pdev, skb->data, | 
					
						
							|  |  |  | 			skb_headlen(skb), PCI_DMA_TODEVICE); | 
					
						
							|  |  |  | 	if (pci_dma_mapping_error(pdev, map)) | 
					
						
							|  |  |  | 		goto out_err; | 
					
						
							| 
									
										
										
										
											2009-01-14 20:50:00 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:11 +00:00
										 |  |  | 	nf->dma = map; | 
					
						
							|  |  |  | 	nf->length = skb_headlen(skb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < nr_frags; i++) { | 
					
						
							|  |  |  | 		frag = &skb_shinfo(skb)->frags[i]; | 
					
						
							|  |  |  | 		nf = &pbuf->frag_array[i+1]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-18 21:00:24 +00:00
										 |  |  | 		map = skb_frag_dma_map(&pdev->dev, frag, 0, skb_frag_size(frag), | 
					
						
							| 
									
										
										
										
											2011-10-06 11:10:48 +01:00
										 |  |  | 				       DMA_TO_DEVICE); | 
					
						
							|  |  |  | 		if (dma_mapping_error(&pdev->dev, map)) | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:11 +00:00
										 |  |  | 			goto unwind; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		nf->dma = map; | 
					
						
							| 
									
										
										
										
											2011-10-18 21:00:24 +00:00
										 |  |  | 		nf->length = skb_frag_size(frag); | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:11 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2009-01-14 20:50:00 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:11 +00:00
										 |  |  | unwind: | 
					
						
							| 
									
										
										
										
											2009-09-03 13:10:55 +00:00
										 |  |  | 	while (--i >= 0) { | 
					
						
							|  |  |  | 		nf = &pbuf->frag_array[i+1]; | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:11 +00:00
										 |  |  | 		pci_unmap_page(pdev, nf->dma, nf->length, PCI_DMA_TODEVICE); | 
					
						
							| 
									
										
										
										
											2013-01-22 06:33:05 +00:00
										 |  |  | 		nf->dma = 0ULL; | 
					
						
							| 
									
										
										
										
											2009-01-14 20:50:00 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	nf = &pbuf->frag_array[0]; | 
					
						
							|  |  |  | 	pci_unmap_single(pdev, nf->dma, skb_headlen(skb), PCI_DMA_TODEVICE); | 
					
						
							| 
									
										
										
										
											2013-01-22 06:33:05 +00:00
										 |  |  | 	nf->dma = 0ULL; | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | out_err: | 
					
						
							|  |  |  | 	return -ENOMEM; | 
					
						
							| 
									
										
										
										
											2009-01-14 20:50:00 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:53 +00:00
										 |  |  | static inline void | 
					
						
							|  |  |  | netxen_clear_cmddesc(u64 *desc) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:40 +00:00
										 |  |  | 	desc[0] = 0ULL; | 
					
						
							|  |  |  | 	desc[2] = 0ULL; | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:53 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-31 19:50:58 +00:00
										 |  |  | static netdev_tx_t | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:53 +00:00
										 |  |  | netxen_nic_xmit_frame(struct sk_buff *skb, struct net_device *netdev) | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-04-20 07:52:37 -07:00
										 |  |  | 	struct netxen_adapter *adapter = netdev_priv(netdev); | 
					
						
							| 
									
										
										
										
											2009-04-28 15:29:10 +00:00
										 |  |  | 	struct nx_host_tx_ring *tx_ring = adapter->tx_ring; | 
					
						
							| 
									
										
										
										
											2009-01-14 20:48:11 -08:00
										 |  |  | 	struct netxen_cmd_buffer *pbuf; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	struct netxen_skb_frag *buffrag; | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:40 +00:00
										 |  |  | 	struct cmd_desc_type0 *hwdesc, *first_desc; | 
					
						
							|  |  |  | 	struct pci_dev *pdev; | 
					
						
							| 
									
										
										
										
											2009-01-14 20:48:11 -08:00
										 |  |  | 	int i, k; | 
					
						
							| 
									
										
										
										
											2011-04-11 02:10:22 +00:00
										 |  |  | 	int delta = 0; | 
					
						
							|  |  |  | 	struct skb_frag_struct *frag; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-17 17:27:25 +00:00
										 |  |  | 	u32 producer; | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:11 +00:00
										 |  |  | 	int frag_count, no_of_desc; | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:40 +00:00
										 |  |  | 	u32 num_txd = tx_ring->num_desc; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	frag_count = skb_shinfo(skb)->nr_frags + 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-11 02:10:22 +00:00
										 |  |  | 	/* 14 frags supported for normal packet and
 | 
					
						
							|  |  |  | 	 * 32 frags supported for TSO packet | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (!skb_is_gso(skb) && frag_count > NETXEN_MAX_FRAGS_PER_TX) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for (i = 0; i < (frag_count - NETXEN_MAX_FRAGS_PER_TX); i++) { | 
					
						
							|  |  |  | 			frag = &skb_shinfo(skb)->frags[i]; | 
					
						
							| 
									
										
										
										
											2011-10-18 21:00:24 +00:00
										 |  |  | 			delta += skb_frag_size(frag); | 
					
						
							| 
									
										
										
										
											2011-04-11 02:10:22 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (!__pskb_pull_tail(skb, delta)) | 
					
						
							|  |  |  | 			goto drop_packet; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		frag_count = 1 + skb_shinfo(skb)->nr_frags; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:40 +00:00
										 |  |  | 	/* 4 fragments per cmd des */ | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	no_of_desc = (frag_count + 3) >> 2; | 
					
						
							| 
									
										
										
										
											2007-12-26 10:23:58 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-18 02:03:41 +00:00
										 |  |  | 	if (unlikely(netxen_tx_avail(tx_ring) <= TX_STOP_THRESH)) { | 
					
						
							| 
									
										
										
										
											2008-03-17 19:59:50 -07:00
										 |  |  | 		netif_stop_queue(netdev); | 
					
						
							| 
									
										
										
										
											2010-10-18 02:03:41 +00:00
										 |  |  | 		smp_mb(); | 
					
						
							|  |  |  | 		if (netxen_tx_avail(tx_ring) > TX_STOP_THRESH) | 
					
						
							|  |  |  | 			netif_start_queue(netdev); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			return NETDEV_TX_BUSY; | 
					
						
							| 
									
										
										
										
											2007-12-26 10:23:58 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-17 17:27:25 +00:00
										 |  |  | 	producer = tx_ring->producer; | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:11 +00:00
										 |  |  | 	pbuf = &tx_ring->cmd_buf_arr[producer]; | 
					
						
							| 
									
										
										
										
											2009-06-17 17:27:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:40 +00:00
										 |  |  | 	pdev = adapter->pdev; | 
					
						
							| 
									
										
										
										
											2009-01-14 20:48:11 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:11 +00:00
										 |  |  | 	if (netxen_map_tx_skb(pdev, skb, pbuf)) | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:40 +00:00
										 |  |  | 		goto drop_packet; | 
					
						
							| 
									
										
										
										
											2009-01-14 20:48:11 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	pbuf->skb = skb; | 
					
						
							|  |  |  | 	pbuf->frag_count = frag_count; | 
					
						
							| 
									
										
										
										
											2009-01-14 20:50:00 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:40 +00:00
										 |  |  | 	first_desc = hwdesc = &tx_ring->desc_head[producer]; | 
					
						
							|  |  |  | 	netxen_clear_cmddesc((u64 *)hwdesc); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:11 +00:00
										 |  |  | 	netxen_set_tx_frags_len(first_desc, frag_count, skb->len); | 
					
						
							|  |  |  | 	netxen_set_tx_port(first_desc, adapter->portnum); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:11 +00:00
										 |  |  | 	for (i = 0; i < frag_count; i++) { | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:11 +00:00
										 |  |  | 		k = i % 4; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if ((k == 0) && (i > 0)) { | 
					
						
							|  |  |  | 			/* move to next desc.*/ | 
					
						
							| 
									
										
										
										
											2008-03-17 19:59:50 -07:00
										 |  |  | 			producer = get_next_index(producer, num_txd); | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:40 +00:00
										 |  |  | 			hwdesc = &tx_ring->desc_head[producer]; | 
					
						
							| 
									
										
										
										
											2009-03-09 08:50:53 +00:00
										 |  |  | 			netxen_clear_cmddesc((u64 *)hwdesc); | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:11 +00:00
										 |  |  | 			tx_ring->cmd_buf_arr[producer].skb = NULL; | 
					
						
							| 
									
										
										
										
											2009-01-14 20:50:00 -08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:11 +00:00
										 |  |  | 		buffrag = &pbuf->frag_array[i]; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:11 +00:00
										 |  |  | 		hwdesc->buffer_length[k] = cpu_to_le16(buffrag->length); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 		switch (k) { | 
					
						
							|  |  |  | 		case 0: | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:11 +00:00
										 |  |  | 			hwdesc->addr_buffer1 = cpu_to_le64(buffrag->dma); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		case 1: | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:11 +00:00
										 |  |  | 			hwdesc->addr_buffer2 = cpu_to_le64(buffrag->dma); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		case 2: | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:11 +00:00
										 |  |  | 			hwdesc->addr_buffer3 = cpu_to_le64(buffrag->dma); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		case 3: | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:11 +00:00
										 |  |  | 			hwdesc->addr_buffer4 = cpu_to_le64(buffrag->dma); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:40 +00:00
										 |  |  | 	tx_ring->producer = get_next_index(producer, num_txd); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:40 +00:00
										 |  |  | 	netxen_tso_check(netdev, tx_ring, first_desc, skb); | 
					
						
							| 
									
										
										
										
											2007-04-20 07:55:26 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:40 +00:00
										 |  |  | 	adapter->stats.txbytes += skb->len; | 
					
						
							| 
									
										
										
										
											2008-03-17 19:59:50 -07:00
										 |  |  | 	adapter->stats.xmitcalled++; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-19 20:26:15 +00:00
										 |  |  | 	netxen_nic_update_cmd_producer(adapter, tx_ring); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	return NETDEV_TX_OK; | 
					
						
							| 
									
										
										
										
											2009-01-14 20:50:00 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | drop_packet: | 
					
						
							|  |  |  | 	adapter->stats.txdropped++; | 
					
						
							|  |  |  | 	dev_kfree_skb_any(skb); | 
					
						
							|  |  |  | 	return NETDEV_TX_OK; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:05 -07:00
										 |  |  | static int netxen_nic_check_temp(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct net_device *netdev = adapter->netdev; | 
					
						
							|  |  |  | 	uint32_t temp, temp_state, temp_val; | 
					
						
							|  |  |  | 	int rv = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 	temp = NXRD32(adapter, CRB_TEMP_STATE); | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:05 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	temp_state = nx_get_temp_state(temp); | 
					
						
							|  |  |  | 	temp_val = nx_get_temp_val(temp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (temp_state == NX_TEMP_PANIC) { | 
					
						
							|  |  |  | 		printk(KERN_ALERT | 
					
						
							|  |  |  | 		       "%s: Device temperature %d degrees C exceeds" | 
					
						
							|  |  |  | 		       " maximum allowed. Hardware has been shut down.\n", | 
					
						
							| 
									
										
										
										
											2009-07-17 15:27:08 +00:00
										 |  |  | 		       netdev->name, temp_val); | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:05 -07:00
										 |  |  | 		rv = 1; | 
					
						
							|  |  |  | 	} else if (temp_state == NX_TEMP_WARN) { | 
					
						
							|  |  |  | 		if (adapter->temp == NX_TEMP_NORMAL) { | 
					
						
							|  |  |  | 			printk(KERN_ALERT | 
					
						
							|  |  |  | 			       "%s: Device temperature %d degrees C " | 
					
						
							|  |  |  | 			       "exceeds operating range." | 
					
						
							|  |  |  | 			       " Immediate action needed.\n", | 
					
						
							| 
									
										
										
										
											2009-07-17 15:27:08 +00:00
										 |  |  | 			       netdev->name, temp_val); | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:05 -07:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		if (adapter->temp == NX_TEMP_WARN) { | 
					
						
							|  |  |  | 			printk(KERN_INFO | 
					
						
							|  |  |  | 			       "%s: Device temperature is now %d degrees C" | 
					
						
							| 
									
										
										
										
											2009-07-17 15:27:08 +00:00
										 |  |  | 			       " in normal range.\n", netdev->name, | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:05 -07:00
										 |  |  | 			       temp_val); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	adapter->temp = temp_state; | 
					
						
							|  |  |  | 	return rv; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:42 +00:00
										 |  |  | void netxen_advert_link_change(struct netxen_adapter *adapter, int linkup) | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:05 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct net_device *netdev = adapter->netdev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (adapter->ahw.linkup && !linkup) { | 
					
						
							|  |  |  | 		printk(KERN_INFO "%s: %s NIC Link is down\n", | 
					
						
							|  |  |  | 		       netxen_nic_driver_name, netdev->name); | 
					
						
							|  |  |  | 		adapter->ahw.linkup = 0; | 
					
						
							|  |  |  | 		if (netif_running(netdev)) { | 
					
						
							|  |  |  | 			netif_carrier_off(netdev); | 
					
						
							|  |  |  | 			netif_stop_queue(netdev); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-08-13 07:03:00 +00:00
										 |  |  | 		adapter->link_changed = !adapter->has_link_events; | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:05 -07:00
										 |  |  | 	} else if (!adapter->ahw.linkup && linkup) { | 
					
						
							|  |  |  | 		printk(KERN_INFO "%s: %s NIC Link is up\n", | 
					
						
							|  |  |  | 		       netxen_nic_driver_name, netdev->name); | 
					
						
							|  |  |  | 		adapter->ahw.linkup = 1; | 
					
						
							|  |  |  | 		if (netif_running(netdev)) { | 
					
						
							|  |  |  | 			netif_carrier_on(netdev); | 
					
						
							|  |  |  | 			netif_wake_queue(netdev); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-08-13 07:03:00 +00:00
										 |  |  | 		adapter->link_changed = !adapter->has_link_events; | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:05 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:42 +00:00
										 |  |  | static void netxen_nic_handle_phy_intr(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u32 val, port, linkup; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	port = adapter->physical_port; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) { | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:45 +00:00
										 |  |  | 		val = NXRD32(adapter, CRB_XG_STATE_P3); | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:42 +00:00
										 |  |  | 		val = XG_LINK_STATE_P3(adapter->ahw.pci_func, val); | 
					
						
							|  |  |  | 		linkup = (val == XG_LINK_UP_P3); | 
					
						
							|  |  |  | 	} 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; | 
					
						
							|  |  |  | 		linkup = (val == XG_LINK_UP); | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:42 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	netxen_advert_link_change(adapter, linkup); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | static void netxen_tx_timeout(struct net_device *netdev) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-08-13 07:03:00 +00:00
										 |  |  | 	struct netxen_adapter *adapter = netdev_priv(netdev); | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	if (test_bit(__NX_RESETTING, &adapter->state)) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:43 +00:00
										 |  |  | 	dev_err(&netdev->dev, "transmit timeout, resetting.\n"); | 
					
						
							| 
									
										
										
										
											2009-08-13 07:03:00 +00:00
										 |  |  | 	schedule_work(&adapter->tx_timeout_task); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-11 11:28:14 +00:00
										 |  |  | static void netxen_tx_timeout_task(struct work_struct *work) | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-11-23 21:23:36 -05:00
										 |  |  | 	struct netxen_adapter *adapter = | 
					
						
							| 
									
										
										
										
											2007-04-20 07:52:37 -07:00
										 |  |  | 		container_of(work, struct netxen_adapter, tx_timeout_task); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-17 15:27:07 +00:00
										 |  |  | 	if (!netif_running(adapter->netdev)) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-11 11:28:14 +00:00
										 |  |  | 	if (test_and_set_bit(__NX_RESETTING, &adapter->state)) | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-11 11:28:14 +00:00
										 |  |  | 	if (++adapter->tx_timeo_cnt >= NX_MAX_TX_TIMEOUTS) | 
					
						
							|  |  |  | 		goto request_reset; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-07 23:05:23 -07:00
										 |  |  | 	rtnl_lock(); | 
					
						
							| 
									
										
										
										
											2009-09-11 11:28:14 +00:00
										 |  |  | 	if (NX_IS_REVISION_P2(adapter->ahw.revision_id)) { | 
					
						
							|  |  |  | 		/* try to scrub interrupt */ | 
					
						
							|  |  |  | 		netxen_napi_disable(adapter); | 
					
						
							| 
									
										
										
										
											2008-03-17 19:59:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-11 11:28:14 +00:00
										 |  |  | 		netxen_napi_enable(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		netif_wake_queue(adapter->netdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-20 19:20:38 +00:00
										 |  |  | 		clear_bit(__NX_RESETTING, &adapter->state); | 
					
						
							| 
									
										
										
										
											2009-09-11 11:28:14 +00:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2009-09-20 19:20:38 +00:00
										 |  |  | 		clear_bit(__NX_RESETTING, &adapter->state); | 
					
						
							| 
									
										
										
										
											2010-08-07 23:05:23 -07:00
										 |  |  | 		if (netxen_nic_reset_context(adapter)) { | 
					
						
							|  |  |  | 			rtnl_unlock(); | 
					
						
							|  |  |  | 			goto request_reset; | 
					
						
							| 
									
										
										
										
											2009-09-11 11:28:14 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-08-07 23:05:23 -07:00
										 |  |  | 	adapter->netdev->trans_start = jiffies; | 
					
						
							|  |  |  | 	rtnl_unlock(); | 
					
						
							|  |  |  | 	return; | 
					
						
							| 
									
										
										
										
											2009-09-11 11:28:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | request_reset: | 
					
						
							|  |  |  | 	adapter->need_fw_reset = 1; | 
					
						
							| 
									
										
										
										
											2009-10-21 19:39:02 +00:00
										 |  |  | 	clear_bit(__NX_RESETTING, &adapter->state); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-08 14:54:01 +00:00
										 |  |  | static struct rtnl_link_stats64 *netxen_nic_get_stats(struct net_device *netdev, | 
					
						
							|  |  |  | 						      struct rtnl_link_stats64 *stats) | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:05 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = netdev_priv(netdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:09 +00:00
										 |  |  | 	stats->rx_packets = adapter->stats.rx_pkts + adapter->stats.lro_pkts; | 
					
						
							| 
									
										
										
										
											2009-04-07 22:50:38 +00:00
										 |  |  | 	stats->tx_packets = adapter->stats.xmitfinished; | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:05 -07:00
										 |  |  | 	stats->rx_bytes = adapter->stats.rxbytes; | 
					
						
							|  |  |  | 	stats->tx_bytes = adapter->stats.txbytes; | 
					
						
							|  |  |  | 	stats->rx_dropped = adapter->stats.rxdropped; | 
					
						
							|  |  |  | 	stats->tx_dropped = adapter->stats.txdropped; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return stats; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:02 -07:00
										 |  |  | static irqreturn_t netxen_intr(int irq, void *data) | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | 	struct nx_host_sds_ring *sds_ring = data; | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = sds_ring->adapter; | 
					
						
							| 
									
										
										
										
											2008-08-01 03:14:57 -07:00
										 |  |  | 	u32 status = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:10 +00:00
										 |  |  | 	status = readl(adapter->isr_int_vec); | 
					
						
							| 
									
										
										
										
											2008-08-01 03:14:57 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:10 +00:00
										 |  |  | 	if (!(status & adapter->int_vec_bit)) | 
					
						
							| 
									
										
										
										
											2008-03-17 19:59:49 -07:00
										 |  |  | 		return IRQ_NONE; | 
					
						
							| 
									
										
										
										
											2007-07-25 20:13:12 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:10 +00:00
										 |  |  | 	if (NX_IS_REVISION_P3(adapter->ahw.revision_id)) { | 
					
						
							| 
									
										
										
										
											2008-08-01 03:14:57 -07:00
										 |  |  | 		/* check interrupt state machine, to be sure */ | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:10 +00:00
										 |  |  | 		status = readl(adapter->crb_int_state_reg); | 
					
						
							| 
									
										
										
										
											2008-08-01 03:14:57 -07:00
										 |  |  | 		if (!ISR_LEGACY_INT_TRIGGERED(status)) | 
					
						
							|  |  |  | 			return IRQ_NONE; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-08 00:08:43 -07:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		unsigned long our_int = 0; | 
					
						
							| 
									
										
										
										
											2008-08-01 03:14:57 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:10 +00:00
										 |  |  | 		our_int = readl(adapter->crb_int_state_reg); | 
					
						
							| 
									
										
										
										
											2008-08-08 00:08:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-01 03:14:57 -07:00
										 |  |  | 		/* not our interrupt */ | 
					
						
							| 
									
										
										
										
											2008-08-08 00:08:43 -07:00
										 |  |  | 		if (!test_and_clear_bit((7 + adapter->portnum), &our_int)) | 
					
						
							| 
									
										
										
										
											2008-08-01 03:14:57 -07:00
										 |  |  | 			return IRQ_NONE; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-08 00:08:43 -07:00
										 |  |  | 		/* claim interrupt */ | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:10 +00:00
										 |  |  | 		writel((our_int & 0xffffffff), adapter->crb_int_state_reg); | 
					
						
							| 
									
										
										
										
											2007-07-25 20:13:12 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:10 +00:00
										 |  |  | 		/* clear interrupt */ | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | 		netxen_nic_disable_int(sds_ring); | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:10 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-08-08 00:08:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:10 +00:00
										 |  |  | 	writel(0xffffffff, adapter->tgt_status_reg); | 
					
						
							| 
									
										
										
										
											2008-08-08 00:08:43 -07:00
										 |  |  | 	/* read twice to ensure write is flushed */ | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:10 +00:00
										 |  |  | 	readl(adapter->isr_int_vec); | 
					
						
							|  |  |  | 	readl(adapter->isr_int_vec); | 
					
						
							| 
									
										
										
										
											2008-08-08 00:08:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | 	napi_schedule(&sds_ring->napi); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return IRQ_HANDLED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-21 19:44:02 -07:00
										 |  |  | static irqreturn_t netxen_msi_intr(int irq, void *data) | 
					
						
							| 
									
										
										
										
											2008-03-17 19:59:49 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | 	struct nx_host_sds_ring *sds_ring = data; | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = sds_ring->adapter; | 
					
						
							| 
									
										
										
										
											2008-03-17 19:59:49 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-08 00:08:43 -07:00
										 |  |  | 	/* clear interrupt */ | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:10 +00:00
										 |  |  | 	writel(0xffffffff, adapter->tgt_status_reg); | 
					
						
							| 
									
										
										
										
											2008-08-08 00:08:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | 	napi_schedule(&sds_ring->napi); | 
					
						
							| 
									
										
										
										
											2008-03-17 19:59:49 -07:00
										 |  |  | 	return IRQ_HANDLED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-08 19:20:19 -08:00
										 |  |  | static irqreturn_t netxen_msix_intr(int irq, void *data) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | 	struct nx_host_sds_ring *sds_ring = data; | 
					
						
							| 
									
										
										
										
											2009-02-08 19:20:19 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | 	napi_schedule(&sds_ring->napi); | 
					
						
							| 
									
										
										
										
											2009-02-08 19:20:19 -08:00
										 |  |  | 	return IRQ_HANDLED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
											  
											
												[NET]: Make NAPI polling independent of struct net_device objects.
Several devices have multiple independant RX queues per net
device, and some have a single interrupt doorbell for several
queues.
In either case, it's easier to support layouts like that if the
structure representing the poll is independant from the net
device itself.
The signature of the ->poll() call back goes from:
	int foo_poll(struct net_device *dev, int *budget)
to
	int foo_poll(struct napi_struct *napi, int budget)
The caller is returned the number of RX packets processed (or
the number of "NAPI credits" consumed if you want to get
abstract).  The callee no longer messes around bumping
dev->quota, *budget, etc. because that is all handled in the
caller upon return.
The napi_struct is to be embedded in the device driver private data
structures.
Furthermore, it is the driver's responsibility to disable all NAPI
instances in it's ->stop() device close handler.  Since the
napi_struct is privatized into the driver's private data structures,
only the driver knows how to get at all of the napi_struct instances
it may have per-device.
With lots of help and suggestions from Rusty Russell, Roland Dreier,
Michael Chan, Jeff Garzik, and Jamal Hadi Salim.
Bug fixes from Thomas Graf, Roland Dreier, Peter Zijlstra,
Joseph Fannin, Scott Wood, Hans J. Koch, and Michael Chan.
[ Ported to current tree and all drivers converted.  Integrated
  Stephen's follow-on kerneldoc additions, and restored poll_list
  handling to the old style to fix mutual exclusion issues.  -DaveM ]
Signed-off-by: Stephen Hemminger <shemminger@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
											
										 
											2007-10-03 16:41:36 -07:00
										 |  |  | static int netxen_nic_poll(struct napi_struct *napi, int budget) | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | 	struct nx_host_sds_ring *sds_ring = | 
					
						
							|  |  |  | 		container_of(napi, struct nx_host_sds_ring, napi); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = sds_ring->adapter; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-17 19:59:49 -07:00
										 |  |  | 	int tx_complete; | 
					
						
							| 
									
										
											  
											
												[NET]: Make NAPI polling independent of struct net_device objects.
Several devices have multiple independant RX queues per net
device, and some have a single interrupt doorbell for several
queues.
In either case, it's easier to support layouts like that if the
structure representing the poll is independant from the net
device itself.
The signature of the ->poll() call back goes from:
	int foo_poll(struct net_device *dev, int *budget)
to
	int foo_poll(struct napi_struct *napi, int budget)
The caller is returned the number of RX packets processed (or
the number of "NAPI credits" consumed if you want to get
abstract).  The callee no longer messes around bumping
dev->quota, *budget, etc. because that is all handled in the
caller upon return.
The napi_struct is to be embedded in the device driver private data
structures.
Furthermore, it is the driver's responsibility to disable all NAPI
instances in it's ->stop() device close handler.  Since the
napi_struct is privatized into the driver's private data structures,
only the driver knows how to get at all of the napi_struct instances
it may have per-device.
With lots of help and suggestions from Rusty Russell, Roland Dreier,
Michael Chan, Jeff Garzik, and Jamal Hadi Salim.
Bug fixes from Thomas Graf, Roland Dreier, Peter Zijlstra,
Joseph Fannin, Scott Wood, Hans J. Koch, and Michael Chan.
[ Ported to current tree and all drivers converted.  Integrated
  Stephen's follow-on kerneldoc additions, and restored poll_list
  handling to the old style to fix mutual exclusion issues.  -DaveM ]
Signed-off-by: Stephen Hemminger <shemminger@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
											
										 
											2007-10-03 16:41:36 -07:00
										 |  |  | 	int work_done; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-17 19:59:49 -07:00
										 |  |  | 	tx_complete = netxen_process_cmd_ring(adapter); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | 	work_done = netxen_process_rcv_ring(sds_ring, budget); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-17 19:59:49 -07:00
										 |  |  | 	if ((work_done < budget) && tx_complete) { | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:05 +00:00
										 |  |  | 		napi_complete(&sds_ring->napi); | 
					
						
							| 
									
										
										
										
											2009-12-05 12:23:55 +00:00
										 |  |  | 		if (test_bit(__NX_DEV_UP, &adapter->state)) | 
					
						
							| 
									
										
										
										
											2009-07-17 15:27:07 +00:00
										 |  |  | 			netxen_nic_enable_int(sds_ring); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
											  
											
												[NET]: Make NAPI polling independent of struct net_device objects.
Several devices have multiple independant RX queues per net
device, and some have a single interrupt doorbell for several
queues.
In either case, it's easier to support layouts like that if the
structure representing the poll is independant from the net
device itself.
The signature of the ->poll() call back goes from:
	int foo_poll(struct net_device *dev, int *budget)
to
	int foo_poll(struct napi_struct *napi, int budget)
The caller is returned the number of RX packets processed (or
the number of "NAPI credits" consumed if you want to get
abstract).  The callee no longer messes around bumping
dev->quota, *budget, etc. because that is all handled in the
caller upon return.
The napi_struct is to be embedded in the device driver private data
structures.
Furthermore, it is the driver's responsibility to disable all NAPI
instances in it's ->stop() device close handler.  Since the
napi_struct is privatized into the driver's private data structures,
only the driver knows how to get at all of the napi_struct instances
it may have per-device.
With lots of help and suggestions from Rusty Russell, Roland Dreier,
Michael Chan, Jeff Garzik, and Jamal Hadi Salim.
Bug fixes from Thomas Graf, Roland Dreier, Peter Zijlstra,
Joseph Fannin, Scott Wood, Hans J. Koch, and Michael Chan.
[ Ported to current tree and all drivers converted.  Integrated
  Stephen's follow-on kerneldoc additions, and restored poll_list
  handling to the old style to fix mutual exclusion issues.  -DaveM ]
Signed-off-by: Stephen Hemminger <shemminger@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
											
										 
											2007-10-03 16:41:36 -07:00
										 |  |  | 	return work_done; | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_NET_POLL_CONTROLLER
 | 
					
						
							|  |  |  | static void netxen_nic_poll_controller(struct net_device *netdev) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-08-22 21:56:19 +00:00
										 |  |  | 	int ring; | 
					
						
							|  |  |  | 	struct nx_host_sds_ring *sds_ring; | 
					
						
							| 
									
										
										
										
											2007-04-20 07:52:37 -07:00
										 |  |  | 	struct netxen_adapter *adapter = netdev_priv(netdev); | 
					
						
							| 
									
										
										
										
											2010-08-22 21:56:19 +00:00
										 |  |  | 	struct netxen_recv_context *recv_ctx = &adapter->recv_ctx; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	disable_irq(adapter->irq); | 
					
						
							| 
									
										
										
										
											2010-08-22 21:56:19 +00:00
										 |  |  | 	for (ring = 0; ring < adapter->max_sds_rings; ring++) { | 
					
						
							|  |  |  | 		sds_ring = &recv_ctx->sds_rings[ring]; | 
					
						
							|  |  |  | 		netxen_intr(adapter->irq, sds_ring); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | 	enable_irq(adapter->irq); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | static int | 
					
						
							|  |  |  | nx_incr_dev_ref_cnt(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int count; | 
					
						
							|  |  |  | 	if (netxen_api_lock(adapter)) | 
					
						
							|  |  |  | 		return -EIO; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	count = NXRD32(adapter, NX_CRB_DEV_REF_COUNT); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	NXWR32(adapter, NX_CRB_DEV_REF_COUNT, ++count); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	netxen_api_unlock(adapter); | 
					
						
							|  |  |  | 	return count; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | nx_decr_dev_ref_cnt(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | 	int count, state; | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	if (netxen_api_lock(adapter)) | 
					
						
							|  |  |  | 		return -EIO; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	count = NXRD32(adapter, NX_CRB_DEV_REF_COUNT); | 
					
						
							|  |  |  | 	WARN_ON(count == 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	NXWR32(adapter, NX_CRB_DEV_REF_COUNT, --count); | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | 	state = NXRD32(adapter, NX_CRB_DEV_STATE); | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | 	if (count == 0 && state != NX_DEV_FAILED) | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 		NXWR32(adapter, NX_CRB_DEV_STATE, NX_DEV_COLD); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	netxen_api_unlock(adapter); | 
					
						
							|  |  |  | 	return count; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 20:40:56 +00:00
										 |  |  | static int | 
					
						
							|  |  |  | nx_dev_request_aer(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u32 state; | 
					
						
							|  |  |  | 	int ret = -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (netxen_api_lock(adapter)) | 
					
						
							|  |  |  | 		return ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	state = NXRD32(adapter, NX_CRB_DEV_STATE); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (state == NX_DEV_NEED_AER) | 
					
						
							|  |  |  | 		ret = 0; | 
					
						
							|  |  |  | 	else if (state == NX_DEV_READY) { | 
					
						
							|  |  |  | 		NXWR32(adapter, NX_CRB_DEV_STATE, NX_DEV_NEED_AER); | 
					
						
							|  |  |  | 		ret = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	netxen_api_unlock(adapter); | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | int | 
					
						
							| 
									
										
										
										
											2009-09-11 11:28:14 +00:00
										 |  |  | nx_dev_request_reset(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u32 state; | 
					
						
							| 
									
										
										
										
											2009-12-08 20:40:56 +00:00
										 |  |  | 	int ret = -EINVAL; | 
					
						
							| 
									
										
										
										
											2009-09-11 11:28:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (netxen_api_lock(adapter)) | 
					
						
							| 
									
										
										
										
											2009-12-08 20:40:56 +00:00
										 |  |  | 		return ret; | 
					
						
							| 
									
										
										
										
											2009-09-11 11:28:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	state = NXRD32(adapter, NX_CRB_DEV_STATE); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | 	if (state == NX_DEV_NEED_RESET || state == NX_DEV_FAILED) | 
					
						
							| 
									
										
										
										
											2009-12-08 20:40:56 +00:00
										 |  |  | 		ret = 0; | 
					
						
							|  |  |  | 	else if (state != NX_DEV_INITALIZING && state != NX_DEV_NEED_AER) { | 
					
						
							| 
									
										
										
										
											2009-09-11 11:28:14 +00:00
										 |  |  | 		NXWR32(adapter, NX_CRB_DEV_STATE, NX_DEV_NEED_RESET); | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | 		adapter->flags |= NETXEN_FW_RESET_OWNER; | 
					
						
							| 
									
										
										
										
											2009-12-08 20:40:56 +00:00
										 |  |  | 		ret = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-11 11:28:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	netxen_api_unlock(adapter); | 
					
						
							| 
									
										
										
										
											2009-12-08 20:40:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							| 
									
										
										
										
											2009-09-11 11:28:14 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | static int | 
					
						
							|  |  |  | netxen_can_start_firmware(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int count; | 
					
						
							|  |  |  | 	int can_start = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | 	if (netxen_api_lock(adapter)) { | 
					
						
							|  |  |  | 		nx_incr_dev_ref_cnt(adapter); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	count = NXRD32(adapter, NX_CRB_DEV_REF_COUNT); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if ((count < 0) || (count >= NX_MAX_PCI_FUNC)) | 
					
						
							|  |  |  | 		count = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (count == 0) { | 
					
						
							|  |  |  | 		can_start = 1; | 
					
						
							|  |  |  | 		NXWR32(adapter, NX_CRB_DEV_STATE, NX_DEV_INITALIZING); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	NXWR32(adapter, NX_CRB_DEV_REF_COUNT, ++count); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	netxen_api_unlock(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return can_start; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | netxen_schedule_work(struct netxen_adapter *adapter, | 
					
						
							|  |  |  | 		work_func_t func, int delay) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	INIT_DELAYED_WORK(&adapter->fw_work, func); | 
					
						
							|  |  |  | 	schedule_delayed_work(&adapter->fw_work, delay); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | netxen_cancel_fw_work(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	while (test_and_set_bit(__NX_RESETTING, &adapter->state)) | 
					
						
							|  |  |  | 		msleep(10); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cancel_delayed_work_sync(&adapter->fw_work); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | netxen_attach_work(struct work_struct *work) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = container_of(work, | 
					
						
							|  |  |  | 				struct netxen_adapter, fw_work.work); | 
					
						
							|  |  |  | 	struct net_device *netdev = adapter->netdev; | 
					
						
							|  |  |  | 	int err = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (netif_running(netdev)) { | 
					
						
							|  |  |  | 		err = netxen_nic_attach(adapter); | 
					
						
							|  |  |  | 		if (err) | 
					
						
							|  |  |  | 			goto done; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		err = netxen_nic_up(adapter, netdev); | 
					
						
							|  |  |  | 		if (err) { | 
					
						
							|  |  |  | 			netxen_nic_detach(adapter); | 
					
						
							|  |  |  | 			goto done; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-06 16:46:44 +00:00
										 |  |  | 		netxen_restore_indev_addr(netdev, NETDEV_UP); | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	netif_device_attach(netdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | done: | 
					
						
							|  |  |  | 	adapter->fw_fail_cnt = 0; | 
					
						
							|  |  |  | 	clear_bit(__NX_RESETTING, &adapter->state); | 
					
						
							|  |  |  | 	netxen_schedule_work(adapter, netxen_fw_poll_work, FW_POLL_DELAY); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | netxen_fwinit_work(struct work_struct *work) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = container_of(work, | 
					
						
							|  |  |  | 				struct netxen_adapter, fw_work.work); | 
					
						
							|  |  |  | 	int dev_state; | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | 	int count; | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	dev_state = NXRD32(adapter, NX_CRB_DEV_STATE); | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | 	if (adapter->flags & NETXEN_FW_RESET_OWNER) { | 
					
						
							|  |  |  | 		count = NXRD32(adapter, NX_CRB_DEV_REF_COUNT); | 
					
						
							|  |  |  | 		WARN_ON(count == 0); | 
					
						
							|  |  |  | 		if (count == 1) { | 
					
						
							|  |  |  | 			if (adapter->mdump.md_enabled) { | 
					
						
							|  |  |  | 				rtnl_lock(); | 
					
						
							|  |  |  | 				netxen_dump_fw(adapter); | 
					
						
							|  |  |  | 				rtnl_unlock(); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			adapter->flags &= ~NETXEN_FW_RESET_OWNER; | 
					
						
							|  |  |  | 			if (netxen_api_lock(adapter)) { | 
					
						
							|  |  |  | 				clear_bit(__NX_RESETTING, &adapter->state); | 
					
						
							|  |  |  | 				NXWR32(adapter, NX_CRB_DEV_STATE, | 
					
						
							|  |  |  | 						NX_DEV_FAILED); | 
					
						
							|  |  |  | 				return; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			count = NXRD32(adapter, NX_CRB_DEV_REF_COUNT); | 
					
						
							|  |  |  | 			NXWR32(adapter, NX_CRB_DEV_REF_COUNT, --count); | 
					
						
							|  |  |  | 			NXWR32(adapter, NX_CRB_DEV_STATE, NX_DEV_COLD); | 
					
						
							|  |  |  | 			dev_state = NX_DEV_COLD; | 
					
						
							|  |  |  | 			netxen_api_unlock(adapter); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	switch (dev_state) { | 
					
						
							|  |  |  | 	case NX_DEV_COLD: | 
					
						
							|  |  |  | 	case NX_DEV_READY: | 
					
						
							| 
									
										
										
										
											2009-09-11 11:28:14 +00:00
										 |  |  | 		if (!netxen_start_firmware(adapter)) { | 
					
						
							|  |  |  | 			netxen_schedule_work(adapter, netxen_attach_work, 0); | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-29 02:43:42 +00:00
										 |  |  | 	case NX_DEV_NEED_RESET: | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	case NX_DEV_INITALIZING: | 
					
						
							|  |  |  | 			netxen_schedule_work(adapter, | 
					
						
							|  |  |  | 					netxen_fwinit_work, 2 * FW_POLL_DELAY); | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	case NX_DEV_FAILED: | 
					
						
							|  |  |  | 	default: | 
					
						
							| 
									
										
										
										
											2009-12-02 15:46:19 +00:00
										 |  |  | 		nx_incr_dev_ref_cnt(adapter); | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | 	if (netxen_api_lock(adapter)) { | 
					
						
							|  |  |  | 		clear_bit(__NX_RESETTING, &adapter->state); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	NXWR32(adapter, NX_CRB_DEV_STATE, NX_DEV_FAILED); | 
					
						
							|  |  |  | 	netxen_api_unlock(adapter); | 
					
						
							|  |  |  | 	dev_err(&adapter->pdev->dev, "%s: Device initialization Failed\n", | 
					
						
							|  |  |  | 				adapter->netdev->name); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	clear_bit(__NX_RESETTING, &adapter->state); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | netxen_detach_work(struct work_struct *work) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = container_of(work, | 
					
						
							|  |  |  | 				struct netxen_adapter, fw_work.work); | 
					
						
							|  |  |  | 	struct net_device *netdev = adapter->netdev; | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | 	int ref_cnt = 0, delay; | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	u32 status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	netif_device_detach(netdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-05 12:23:54 +00:00
										 |  |  | 	netxen_nic_down(adapter, netdev); | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-02 04:16:21 +00:00
										 |  |  | 	rtnl_lock(); | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	netxen_nic_detach(adapter); | 
					
						
							| 
									
										
										
										
											2010-02-02 04:16:21 +00:00
										 |  |  | 	rtnl_unlock(); | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	status = NXRD32(adapter, NETXEN_PEG_HALT_STATUS1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (status & NX_RCODE_FATAL_ERROR) | 
					
						
							| 
									
										
										
										
											2009-12-02 15:46:19 +00:00
										 |  |  | 		goto err_ret; | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (adapter->temp == NX_TEMP_PANIC) | 
					
						
							| 
									
										
										
										
											2009-12-02 15:46:19 +00:00
										 |  |  | 		goto err_ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | 	if (!(adapter->flags & NETXEN_FW_RESET_OWNER)) | 
					
						
							|  |  |  | 		ref_cnt = nx_decr_dev_ref_cnt(adapter); | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-29 02:43:42 +00:00
										 |  |  | 	if (ref_cnt == -EIO) | 
					
						
							|  |  |  | 		goto err_ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	delay = (ref_cnt == 0) ? 0 : (2 * FW_POLL_DELAY); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	adapter->fw_wait_cnt = 0; | 
					
						
							|  |  |  | 	netxen_schedule_work(adapter, netxen_fwinit_work, delay); | 
					
						
							| 
									
										
										
										
											2009-12-02 15:46:19 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | err_ret: | 
					
						
							|  |  |  | 	clear_bit(__NX_RESETTING, &adapter->state); | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | netxen_check_health(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u32 state, heartbit; | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:13 +00:00
										 |  |  | 	u32 peg_status; | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	struct net_device *netdev = adapter->netdev; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 20:40:56 +00:00
										 |  |  | 	state = NXRD32(adapter, NX_CRB_DEV_STATE); | 
					
						
							|  |  |  | 	if (state == NX_DEV_NEED_AER) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	if (netxen_nic_check_temp(adapter)) | 
					
						
							|  |  |  | 		goto detach; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-11 11:28:14 +00:00
										 |  |  | 	if (adapter->need_fw_reset) { | 
					
						
							| 
									
										
										
										
											2009-12-08 20:40:56 +00:00
										 |  |  | 		if (nx_dev_request_reset(adapter)) | 
					
						
							|  |  |  | 			return 0; | 
					
						
							| 
									
										
										
										
											2009-09-11 11:28:14 +00:00
										 |  |  | 		goto detach; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 20:40:56 +00:00
										 |  |  | 	/* NX_DEV_NEED_RESET, this state can be marked in two cases
 | 
					
						
							|  |  |  | 	 * 1. Tx timeout 2. Fw hang | 
					
						
							|  |  |  | 	 * Send request to destroy context in case of tx timeout only | 
					
						
							|  |  |  | 	 * and doesn't required in case of Fw hang | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:11 +00:00
										 |  |  | 	if (state == NX_DEV_NEED_RESET || state == NX_DEV_FAILED) { | 
					
						
							| 
									
										
										
										
											2009-12-08 20:40:55 +00:00
										 |  |  | 		adapter->need_fw_reset = 1; | 
					
						
							| 
									
										
										
										
											2009-12-08 20:40:56 +00:00
										 |  |  | 		if (NX_IS_REVISION_P2(adapter->ahw.revision_id)) | 
					
						
							|  |  |  | 			goto detach; | 
					
						
							| 
									
										
										
										
											2009-12-08 20:40:55 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (NX_IS_REVISION_P2(adapter->ahw.revision_id)) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	heartbit = NXRD32(adapter, NETXEN_PEG_ALIVE_COUNTER); | 
					
						
							|  |  |  | 	if (heartbit != adapter->heartbit) { | 
					
						
							|  |  |  | 		adapter->heartbit = heartbit; | 
					
						
							|  |  |  | 		adapter->fw_fail_cnt = 0; | 
					
						
							| 
									
										
										
										
											2009-12-08 20:40:56 +00:00
										 |  |  | 		if (adapter->need_fw_reset) | 
					
						
							|  |  |  | 			goto detach; | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (++adapter->fw_fail_cnt < FW_FAIL_THRESH) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 20:40:56 +00:00
										 |  |  | 	if (nx_dev_request_reset(adapter)) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 	clear_bit(__NX_FW_ATTACHED, &adapter->state); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:13 +00:00
										 |  |  | 	dev_err(&netdev->dev, "firmware hang detected\n"); | 
					
						
							|  |  |  | 	peg_status = NXRD32(adapter, NETXEN_PEG_HALT_STATUS1); | 
					
						
							|  |  |  | 	dev_err(&adapter->pdev->dev, "Dumping hw/fw registers\n" | 
					
						
							|  |  |  | 			"PEG_HALT_STATUS1: 0x%x, PEG_HALT_STATUS2: 0x%x,\n" | 
					
						
							|  |  |  | 			"PEG_NET_0_PC: 0x%x, PEG_NET_1_PC: 0x%x,\n" | 
					
						
							|  |  |  | 			"PEG_NET_2_PC: 0x%x, PEG_NET_3_PC: 0x%x,\n" | 
					
						
							|  |  |  | 			"PEG_NET_4_PC: 0x%x\n", | 
					
						
							|  |  |  | 			peg_status, | 
					
						
							|  |  |  | 			NXRD32(adapter, NETXEN_PEG_HALT_STATUS2), | 
					
						
							|  |  |  | 			NXRD32(adapter, NETXEN_CRB_PEG_NET_0 + 0x3c), | 
					
						
							|  |  |  | 			NXRD32(adapter, NETXEN_CRB_PEG_NET_1 + 0x3c), | 
					
						
							|  |  |  | 			NXRD32(adapter, NETXEN_CRB_PEG_NET_2 + 0x3c), | 
					
						
							|  |  |  | 			NXRD32(adapter, NETXEN_CRB_PEG_NET_3 + 0x3c), | 
					
						
							|  |  |  | 			NXRD32(adapter, NETXEN_CRB_PEG_NET_4 + 0x3c)); | 
					
						
							|  |  |  | 	if (NX_FWERROR_PEGSTAT1(peg_status) == 0x67) | 
					
						
							|  |  |  | 		dev_err(&adapter->pdev->dev, | 
					
						
							|  |  |  | 			"Firmware aborted with error code 0x00006700. " | 
					
						
							|  |  |  | 				"Device is being reset.\n"); | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | detach: | 
					
						
							| 
									
										
										
										
											2009-10-16 15:50:11 +00:00
										 |  |  | 	if ((auto_fw_reset == AUTO_FW_RESET_ENABLED) && | 
					
						
							|  |  |  | 			!test_and_set_bit(__NX_RESETTING, &adapter->state)) | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:08 +00:00
										 |  |  | 		netxen_schedule_work(adapter, netxen_detach_work, 0); | 
					
						
							|  |  |  | 	return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | netxen_fw_poll_work(struct work_struct *work) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = container_of(work, | 
					
						
							|  |  |  | 				struct netxen_adapter, fw_work.work); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (test_bit(__NX_RESETTING, &adapter->state)) | 
					
						
							|  |  |  | 		goto reschedule; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (test_bit(__NX_DEV_UP, &adapter->state)) { | 
					
						
							|  |  |  | 		if (!adapter->has_link_events) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			netxen_nic_handle_phy_intr(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (adapter->link_changed) | 
					
						
							|  |  |  | 				netxen_nic_set_link_parameters(adapter); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (netxen_check_health(adapter)) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | reschedule: | 
					
						
							|  |  |  | 	netxen_schedule_work(adapter, netxen_fw_poll_work, FW_POLL_DELAY); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-24 19:23:28 +00:00
										 |  |  | static ssize_t | 
					
						
							|  |  |  | netxen_store_bridged_mode(struct device *dev, | 
					
						
							|  |  |  | 		struct device_attribute *attr, const char *buf, size_t len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct net_device *net = to_net_dev(dev); | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = netdev_priv(net); | 
					
						
							|  |  |  | 	unsigned long new; | 
					
						
							|  |  |  | 	int ret = -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!(adapter->capabilities & NX_FW_CAPABILITY_BDG)) | 
					
						
							|  |  |  | 		goto err_out; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (adapter->is_up != NETXEN_ADAPTER_UP_MAGIC) | 
					
						
							|  |  |  | 		goto err_out; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-31 21:21:35 +00:00
										 |  |  | 	if (kstrtoul(buf, 2, &new)) | 
					
						
							| 
									
										
										
										
											2009-08-24 19:23:28 +00:00
										 |  |  | 		goto err_out; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!netxen_config_bridged_mode(adapter, !!new)) | 
					
						
							|  |  |  | 		ret = len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | err_out: | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static ssize_t | 
					
						
							|  |  |  | netxen_show_bridged_mode(struct device *dev, | 
					
						
							|  |  |  | 		struct device_attribute *attr, char *buf) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct net_device *net = to_net_dev(dev); | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter; | 
					
						
							|  |  |  | 	int bridged_mode = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	adapter = netdev_priv(net); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (adapter->capabilities & NX_FW_CAPABILITY_BDG) | 
					
						
							|  |  |  | 		bridged_mode = !!(adapter->flags & NETXEN_NIC_BRIDGE_ENABLED); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return sprintf(buf, "%d\n", bridged_mode); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct device_attribute dev_attr_bridged_mode = { | 
					
						
							|  |  |  |        .attr = {.name = "bridged_mode", .mode = (S_IRUGO | S_IWUSR)}, | 
					
						
							|  |  |  |        .show = netxen_show_bridged_mode, | 
					
						
							|  |  |  |        .store = netxen_store_bridged_mode, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-13 05:31:45 +00:00
										 |  |  | static ssize_t | 
					
						
							|  |  |  | netxen_store_diag_mode(struct device *dev, | 
					
						
							|  |  |  | 		struct device_attribute *attr, const char *buf, size_t len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = dev_get_drvdata(dev); | 
					
						
							|  |  |  | 	unsigned long new; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-31 21:21:35 +00:00
										 |  |  | 	if (kstrtoul(buf, 2, &new)) | 
					
						
							| 
									
										
										
										
											2009-10-13 05:31:45 +00:00
										 |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!!new != !!(adapter->flags & NETXEN_NIC_DIAG_ENABLED)) | 
					
						
							|  |  |  | 		adapter->flags ^= NETXEN_NIC_DIAG_ENABLED; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return len; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static ssize_t | 
					
						
							|  |  |  | netxen_show_diag_mode(struct device *dev, | 
					
						
							|  |  |  | 		struct device_attribute *attr, char *buf) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = dev_get_drvdata(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return sprintf(buf, "%d\n", | 
					
						
							|  |  |  | 			!!(adapter->flags & NETXEN_NIC_DIAG_ENABLED)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct device_attribute dev_attr_diag_mode = { | 
					
						
							|  |  |  | 	.attr = {.name = "diag_mode", .mode = (S_IRUGO | S_IWUSR)}, | 
					
						
							|  |  |  | 	.show = netxen_show_diag_mode, | 
					
						
							|  |  |  | 	.store = netxen_store_diag_mode, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | netxen_sysfs_validate_crb(struct netxen_adapter *adapter, | 
					
						
							|  |  |  | 		loff_t offset, size_t size) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-11 23:53:05 +00:00
										 |  |  | 	size_t crb_size = 4; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-13 05:31:45 +00:00
										 |  |  | 	if (!(adapter->flags & NETXEN_NIC_DIAG_ENABLED)) | 
					
						
							|  |  |  | 		return -EIO; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-11 23:53:05 +00:00
										 |  |  | 	if (offset < NETXEN_PCI_CRBSPACE) { | 
					
						
							|  |  |  | 		if (NX_IS_REVISION_P2(adapter->ahw.revision_id)) | 
					
						
							|  |  |  | 			return -EINVAL; | 
					
						
							| 
									
										
										
										
											2009-10-13 05:31:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-11 23:53:05 +00:00
										 |  |  | 		if (ADDR_IN_RANGE(offset, NETXEN_PCI_CAMQM, | 
					
						
							|  |  |  | 						NETXEN_PCI_CAMQM_2M_END)) | 
					
						
							|  |  |  | 			crb_size = 8; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			return -EINVAL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if ((size != crb_size) || (offset & (crb_size-1))) | 
					
						
							|  |  |  | 		return  -EINVAL; | 
					
						
							| 
									
										
										
										
											2009-10-13 05:31:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static ssize_t | 
					
						
							| 
									
										
										
										
											2010-05-12 18:28:57 -07:00
										 |  |  | netxen_sysfs_read_crb(struct file *filp, struct kobject *kobj, | 
					
						
							|  |  |  | 		struct bin_attribute *attr, | 
					
						
							| 
									
										
										
										
											2009-10-13 05:31:45 +00:00
										 |  |  | 		char *buf, loff_t offset, size_t size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct device *dev = container_of(kobj, struct device, kobj); | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = dev_get_drvdata(dev); | 
					
						
							|  |  |  | 	u32 data; | 
					
						
							| 
									
										
										
										
											2010-05-11 23:53:05 +00:00
										 |  |  | 	u64 qmdata; | 
					
						
							| 
									
										
										
										
											2009-10-13 05:31:45 +00:00
										 |  |  | 	int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ret = netxen_sysfs_validate_crb(adapter, offset, size); | 
					
						
							|  |  |  | 	if (ret != 0) | 
					
						
							|  |  |  | 		return ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-11 23:53:05 +00:00
										 |  |  | 	if (NX_IS_REVISION_P3(adapter->ahw.revision_id) && | 
					
						
							|  |  |  | 		ADDR_IN_RANGE(offset, NETXEN_PCI_CAMQM, | 
					
						
							|  |  |  | 					NETXEN_PCI_CAMQM_2M_END)) { | 
					
						
							|  |  |  | 		netxen_pci_camqm_read_2M(adapter, offset, &qmdata); | 
					
						
							|  |  |  | 		memcpy(buf, &qmdata, size); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		data = NXRD32(adapter, offset); | 
					
						
							|  |  |  | 		memcpy(buf, &data, size); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-13 05:31:45 +00:00
										 |  |  | 	return size; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static ssize_t | 
					
						
							| 
									
										
										
										
											2010-05-12 18:28:57 -07:00
										 |  |  | netxen_sysfs_write_crb(struct file *filp, struct kobject *kobj, | 
					
						
							|  |  |  | 		struct bin_attribute *attr, | 
					
						
							| 
									
										
										
										
											2009-10-13 05:31:45 +00:00
										 |  |  | 		char *buf, loff_t offset, size_t size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct device *dev = container_of(kobj, struct device, kobj); | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = dev_get_drvdata(dev); | 
					
						
							|  |  |  | 	u32 data; | 
					
						
							| 
									
										
										
										
											2010-05-11 23:53:05 +00:00
										 |  |  | 	u64 qmdata; | 
					
						
							| 
									
										
										
										
											2009-10-13 05:31:45 +00:00
										 |  |  | 	int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ret = netxen_sysfs_validate_crb(adapter, offset, size); | 
					
						
							|  |  |  | 	if (ret != 0) | 
					
						
							|  |  |  | 		return ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-11 23:53:05 +00:00
										 |  |  | 	if (NX_IS_REVISION_P3(adapter->ahw.revision_id) && | 
					
						
							|  |  |  | 		ADDR_IN_RANGE(offset, NETXEN_PCI_CAMQM, | 
					
						
							|  |  |  | 					NETXEN_PCI_CAMQM_2M_END)) { | 
					
						
							|  |  |  | 		memcpy(&qmdata, buf, size); | 
					
						
							|  |  |  | 		netxen_pci_camqm_write_2M(adapter, offset, qmdata); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		memcpy(&data, buf, size); | 
					
						
							|  |  |  | 		NXWR32(adapter, offset, data); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-13 05:31:45 +00:00
										 |  |  | 	return size; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | netxen_sysfs_validate_mem(struct netxen_adapter *adapter, | 
					
						
							|  |  |  | 		loff_t offset, size_t size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (!(adapter->flags & NETXEN_NIC_DIAG_ENABLED)) | 
					
						
							|  |  |  | 		return -EIO; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if ((size != 8) || (offset & 0x7)) | 
					
						
							|  |  |  | 		return  -EIO; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static ssize_t | 
					
						
							| 
									
										
										
										
											2010-05-12 18:28:57 -07:00
										 |  |  | netxen_sysfs_read_mem(struct file *filp, struct kobject *kobj, | 
					
						
							|  |  |  | 		struct bin_attribute *attr, | 
					
						
							| 
									
										
										
										
											2009-10-13 05:31:45 +00:00
										 |  |  | 		char *buf, loff_t offset, size_t size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct device *dev = container_of(kobj, struct device, kobj); | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = dev_get_drvdata(dev); | 
					
						
							|  |  |  | 	u64 data; | 
					
						
							|  |  |  | 	int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ret = netxen_sysfs_validate_mem(adapter, offset, size); | 
					
						
							|  |  |  | 	if (ret != 0) | 
					
						
							|  |  |  | 		return ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (adapter->pci_mem_read(adapter, offset, &data)) | 
					
						
							|  |  |  | 		return -EIO; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memcpy(buf, &data, size); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return size; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-12 18:28:57 -07:00
										 |  |  | static ssize_t netxen_sysfs_write_mem(struct file *filp, struct kobject *kobj, | 
					
						
							| 
									
										
										
										
											2009-10-13 05:31:45 +00:00
										 |  |  | 		struct bin_attribute *attr, char *buf, | 
					
						
							|  |  |  | 		loff_t offset, size_t size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct device *dev = container_of(kobj, struct device, kobj); | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = dev_get_drvdata(dev); | 
					
						
							|  |  |  | 	u64 data; | 
					
						
							|  |  |  | 	int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ret = netxen_sysfs_validate_mem(adapter, offset, size); | 
					
						
							|  |  |  | 	if (ret != 0) | 
					
						
							|  |  |  | 		return ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memcpy(&data, buf, size); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (adapter->pci_mem_write(adapter, offset, data)) | 
					
						
							|  |  |  | 		return -EIO; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return size; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct bin_attribute bin_attr_crb = { | 
					
						
							|  |  |  | 	.attr = {.name = "crb", .mode = (S_IRUGO | S_IWUSR)}, | 
					
						
							|  |  |  | 	.size = 0, | 
					
						
							|  |  |  | 	.read = netxen_sysfs_read_crb, | 
					
						
							|  |  |  | 	.write = netxen_sysfs_write_crb, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct bin_attribute bin_attr_mem = { | 
					
						
							|  |  |  | 	.attr = {.name = "mem", .mode = (S_IRUGO | S_IWUSR)}, | 
					
						
							|  |  |  | 	.size = 0, | 
					
						
							|  |  |  | 	.read = netxen_sysfs_read_mem, | 
					
						
							|  |  |  | 	.write = netxen_sysfs_write_mem, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-09 05:55:29 +00:00
										 |  |  | static ssize_t | 
					
						
							|  |  |  | netxen_sysfs_read_dimm(struct file *filp, struct kobject *kobj, | 
					
						
							|  |  |  | 		struct bin_attribute *attr, | 
					
						
							|  |  |  | 		char *buf, loff_t offset, size_t size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct device *dev = container_of(kobj, struct device, kobj); | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = dev_get_drvdata(dev); | 
					
						
							|  |  |  | 	struct net_device *netdev = adapter->netdev; | 
					
						
							|  |  |  | 	struct netxen_dimm_cfg dimm; | 
					
						
							|  |  |  | 	u8 dw, rows, cols, banks, ranks; | 
					
						
							|  |  |  | 	u32 val; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (size != sizeof(struct netxen_dimm_cfg)) { | 
					
						
							|  |  |  | 		netdev_err(netdev, "Invalid size\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memset(&dimm, 0, sizeof(struct netxen_dimm_cfg)); | 
					
						
							|  |  |  | 	val = NXRD32(adapter, NETXEN_DIMM_CAPABILITY); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Checks if DIMM info is valid. */ | 
					
						
							|  |  |  | 	if (val & NETXEN_DIMM_VALID_FLAG) { | 
					
						
							|  |  |  | 		netdev_err(netdev, "Invalid DIMM flag\n"); | 
					
						
							|  |  |  | 		dimm.presence = 0xff; | 
					
						
							|  |  |  | 		goto out; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	rows = NETXEN_DIMM_NUMROWS(val); | 
					
						
							|  |  |  | 	cols = NETXEN_DIMM_NUMCOLS(val); | 
					
						
							|  |  |  | 	ranks = NETXEN_DIMM_NUMRANKS(val); | 
					
						
							|  |  |  | 	banks = NETXEN_DIMM_NUMBANKS(val); | 
					
						
							|  |  |  | 	dw = NETXEN_DIMM_DATAWIDTH(val); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dimm.presence = (val & NETXEN_DIMM_PRESENT); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Checks if DIMM info is present. */ | 
					
						
							|  |  |  | 	if (!dimm.presence) { | 
					
						
							|  |  |  | 		netdev_err(netdev, "DIMM not present\n"); | 
					
						
							|  |  |  | 		goto out; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dimm.dimm_type = NETXEN_DIMM_TYPE(val); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (dimm.dimm_type) { | 
					
						
							|  |  |  | 	case NETXEN_DIMM_TYPE_RDIMM: | 
					
						
							|  |  |  | 	case NETXEN_DIMM_TYPE_UDIMM: | 
					
						
							|  |  |  | 	case NETXEN_DIMM_TYPE_SO_DIMM: | 
					
						
							|  |  |  | 	case NETXEN_DIMM_TYPE_Micro_DIMM: | 
					
						
							|  |  |  | 	case NETXEN_DIMM_TYPE_Mini_RDIMM: | 
					
						
							|  |  |  | 	case NETXEN_DIMM_TYPE_Mini_UDIMM: | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		netdev_err(netdev, "Invalid DIMM type %x\n", dimm.dimm_type); | 
					
						
							|  |  |  | 		goto out; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (val & NETXEN_DIMM_MEMTYPE_DDR2_SDRAM) | 
					
						
							|  |  |  | 		dimm.mem_type = NETXEN_DIMM_MEM_DDR2_SDRAM; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		dimm.mem_type = NETXEN_DIMM_MEMTYPE(val); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (val & NETXEN_DIMM_SIZE) { | 
					
						
							|  |  |  | 		dimm.size = NETXEN_DIMM_STD_MEM_SIZE; | 
					
						
							|  |  |  | 		goto out; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!rows) { | 
					
						
							|  |  |  | 		netdev_err(netdev, "Invalid no of rows %x\n", rows); | 
					
						
							|  |  |  | 		goto out; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!cols) { | 
					
						
							|  |  |  | 		netdev_err(netdev, "Invalid no of columns %x\n", cols); | 
					
						
							|  |  |  | 		goto out; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!banks) { | 
					
						
							|  |  |  | 		netdev_err(netdev, "Invalid no of banks %x\n", banks); | 
					
						
							|  |  |  | 		goto out; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ranks += 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (dw) { | 
					
						
							|  |  |  | 	case 0x0: | 
					
						
							|  |  |  | 		dw = 32; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 0x1: | 
					
						
							|  |  |  | 		dw = 33; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 0x2: | 
					
						
							|  |  |  | 		dw = 36; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 0x3: | 
					
						
							|  |  |  | 		dw = 64; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 0x4: | 
					
						
							|  |  |  | 		dw = 72; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 0x5: | 
					
						
							|  |  |  | 		dw = 80; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 0x6: | 
					
						
							|  |  |  | 		dw = 128; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 0x7: | 
					
						
							|  |  |  | 		dw = 144; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		netdev_err(netdev, "Invalid data-width %x\n", dw); | 
					
						
							|  |  |  | 		goto out; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dimm.size = ((1 << rows) * (1 << cols) * dw * banks * ranks) / 8; | 
					
						
							|  |  |  | 	/* Size returned in MB. */ | 
					
						
							|  |  |  | 	dimm.size = (dimm.size) / 0x100000; | 
					
						
							|  |  |  | out: | 
					
						
							|  |  |  | 	memcpy(buf, &dimm, sizeof(struct netxen_dimm_cfg)); | 
					
						
							|  |  |  | 	return sizeof(struct netxen_dimm_cfg); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct bin_attribute bin_attr_dimm = { | 
					
						
							|  |  |  | 	.attr = { .name = "dimm", .mode = (S_IRUGO | S_IWUSR) }, | 
					
						
							|  |  |  | 	.size = 0, | 
					
						
							|  |  |  | 	.read = netxen_sysfs_read_dimm, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-16 15:50:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-24 19:23:28 +00:00
										 |  |  | static void | 
					
						
							|  |  |  | netxen_create_sysfs_entries(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:14 +00:00
										 |  |  | 	struct device *dev = &adapter->pdev->dev; | 
					
						
							| 
									
										
										
										
											2009-08-24 19:23:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (adapter->capabilities & NX_FW_CAPABILITY_BDG) { | 
					
						
							|  |  |  | 		/* bridged_mode control */ | 
					
						
							|  |  |  | 		if (device_create_file(dev, &dev_attr_bridged_mode)) { | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:14 +00:00
										 |  |  | 			dev_warn(dev, | 
					
						
							| 
									
										
										
										
											2009-08-24 19:23:28 +00:00
										 |  |  | 				"failed to create bridged_mode sysfs entry\n"); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | netxen_remove_sysfs_entries(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-03 11:35:14 +00:00
										 |  |  | 	struct device *dev = &adapter->pdev->dev; | 
					
						
							| 
									
										
										
										
											2009-08-24 19:23:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (adapter->capabilities & NX_FW_CAPABILITY_BDG) | 
					
						
							|  |  |  | 		device_remove_file(dev, &dev_attr_bridged_mode); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-13 05:31:45 +00:00
										 |  |  | static void | 
					
						
							|  |  |  | netxen_create_diag_entries(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct pci_dev *pdev = adapter->pdev; | 
					
						
							|  |  |  | 	struct device *dev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dev = &pdev->dev; | 
					
						
							|  |  |  | 	if (device_create_file(dev, &dev_attr_diag_mode)) | 
					
						
							|  |  |  | 		dev_info(dev, "failed to create diag_mode sysfs entry\n"); | 
					
						
							|  |  |  | 	if (device_create_bin_file(dev, &bin_attr_crb)) | 
					
						
							|  |  |  | 		dev_info(dev, "failed to create crb sysfs entry\n"); | 
					
						
							|  |  |  | 	if (device_create_bin_file(dev, &bin_attr_mem)) | 
					
						
							|  |  |  | 		dev_info(dev, "failed to create mem sysfs entry\n"); | 
					
						
							| 
									
										
										
										
											2012-05-09 05:55:29 +00:00
										 |  |  | 	if (device_create_bin_file(dev, &bin_attr_dimm)) | 
					
						
							|  |  |  | 		dev_info(dev, "failed to create dimm sysfs entry\n"); | 
					
						
							| 
									
										
										
										
											2009-10-13 05:31:45 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | netxen_remove_diag_entries(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct pci_dev *pdev = adapter->pdev; | 
					
						
							|  |  |  | 	struct device *dev = &pdev->dev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	device_remove_file(dev, &dev_attr_diag_mode); | 
					
						
							|  |  |  | 	device_remove_bin_file(dev, &bin_attr_crb); | 
					
						
							|  |  |  | 	device_remove_bin_file(dev, &bin_attr_mem); | 
					
						
							| 
									
										
										
										
											2012-05-09 05:55:29 +00:00
										 |  |  | 	device_remove_bin_file(dev, &bin_attr_dimm); | 
					
						
							| 
									
										
										
										
											2009-10-13 05:31:45 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-28 09:10:03 +00:00
										 |  |  | #ifdef CONFIG_INET
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:37 +00:00
										 |  |  | #define is_netxen_netdev(dev) (dev->netdev_ops == &netxen_netdev_ops)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | netxen_destip_supported(struct netxen_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (NX_IS_REVISION_P2(adapter->ahw.revision_id)) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (adapter->ahw.cut_through) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:09 +00:00
										 |  |  | static void | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | netxen_free_ip_list(struct netxen_adapter *adapter, bool master) | 
					
						
							| 
									
										
										
										
											2011-08-06 16:46:44 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | 	struct nx_ip_list  *cur, *tmp_cur; | 
					
						
							| 
									
										
										
										
											2011-08-06 16:46:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | 	list_for_each_entry_safe(cur, tmp_cur, &adapter->ip_list, list) { | 
					
						
							|  |  |  | 		if (master) { | 
					
						
							|  |  |  | 			if (cur->master) { | 
					
						
							|  |  |  | 				netxen_config_ipaddr(adapter, cur->ip_addr, | 
					
						
							|  |  |  | 						     NX_IP_DOWN); | 
					
						
							|  |  |  | 				list_del(&cur->list); | 
					
						
							|  |  |  | 				kfree(cur); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			netxen_config_ipaddr(adapter, cur->ip_addr, NX_IP_DOWN); | 
					
						
							|  |  |  | 			list_del(&cur->list); | 
					
						
							|  |  |  | 			kfree(cur); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2011-08-06 16:46:44 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static bool | 
					
						
							|  |  |  | netxen_list_config_ip(struct netxen_adapter *adapter, | 
					
						
							| 
									
										
										
										
											2011-08-06 16:46:44 +00:00
										 |  |  | 		struct in_ifaddr *ifa, unsigned long event) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct net_device *dev; | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | 	struct nx_ip_list *cur, *tmp_cur; | 
					
						
							| 
									
										
										
										
											2011-08-06 16:46:44 +00:00
										 |  |  | 	struct list_head *head; | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | 	bool ret = false; | 
					
						
							| 
									
										
										
										
											2011-08-06 16:46:44 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	dev = ifa->ifa_dev ? ifa->ifa_dev->dev : NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (dev == NULL) | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | 		goto out; | 
					
						
							| 
									
										
										
										
											2011-08-06 16:46:44 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	switch (event) { | 
					
						
							|  |  |  | 	case NX_IP_UP: | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | 		list_for_each(head, &adapter->ip_list) { | 
					
						
							|  |  |  | 			cur = list_entry(head, struct nx_ip_list, list); | 
					
						
							| 
									
										
										
										
											2011-08-06 16:46:44 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (cur->ip_addr == ifa->ifa_address) | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | 				goto out; | 
					
						
							| 
									
										
										
										
											2011-08-06 16:46:44 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | 		cur = kzalloc(sizeof(struct nx_ip_list), GFP_ATOMIC); | 
					
						
							| 
									
										
										
										
											2013-02-03 17:43:58 +00:00
										 |  |  | 		if (cur == NULL) | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | 			goto out; | 
					
						
							|  |  |  | 		if (dev->priv_flags & IFF_802_1Q_VLAN) | 
					
						
							|  |  |  | 			dev = vlan_dev_real_dev(dev); | 
					
						
							|  |  |  | 		cur->master = !!netif_is_bond_master(dev); | 
					
						
							| 
									
										
										
										
											2011-08-06 16:46:44 +00:00
										 |  |  | 		cur->ip_addr = ifa->ifa_address; | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | 		list_add_tail(&cur->list, &adapter->ip_list); | 
					
						
							|  |  |  | 		netxen_config_ipaddr(adapter, ifa->ifa_address, NX_IP_UP); | 
					
						
							|  |  |  | 		ret = true; | 
					
						
							| 
									
										
										
										
											2011-08-06 16:46:44 +00:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case NX_IP_DOWN: | 
					
						
							|  |  |  | 		list_for_each_entry_safe(cur, tmp_cur, | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | 					&adapter->ip_list, list) { | 
					
						
							| 
									
										
										
										
											2011-08-06 16:46:44 +00:00
										 |  |  | 			if (cur->ip_addr == ifa->ifa_address) { | 
					
						
							|  |  |  | 				list_del(&cur->list); | 
					
						
							|  |  |  | 				kfree(cur); | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | 				netxen_config_ipaddr(adapter, ifa->ifa_address, | 
					
						
							|  |  |  | 						     NX_IP_DOWN); | 
					
						
							|  |  |  | 				ret = true; | 
					
						
							| 
									
										
										
										
											2011-08-06 16:46:44 +00:00
										 |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | out: | 
					
						
							|  |  |  | 	return ret; | 
					
						
							| 
									
										
										
										
											2011-08-06 16:46:44 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-06 16:46:44 +00:00
										 |  |  | static void | 
					
						
							|  |  |  | netxen_config_indev_addr(struct netxen_adapter *adapter, | 
					
						
							|  |  |  | 		struct net_device *dev, unsigned long event) | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:09 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct in_device *indev; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-09 18:12:37 -07:00
										 |  |  | 	if (!netxen_destip_supported(adapter)) | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:09 +00:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	indev = in_dev_get(dev); | 
					
						
							|  |  |  | 	if (!indev) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for_ifa(indev) { | 
					
						
							|  |  |  | 		switch (event) { | 
					
						
							|  |  |  | 		case NETDEV_UP: | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | 			netxen_list_config_ip(adapter, ifa, NX_IP_UP); | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:09 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		case NETDEV_DOWN: | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | 			netxen_list_config_ip(adapter, ifa, NX_IP_DOWN); | 
					
						
							| 
									
										
										
										
											2009-09-05 17:43:09 +00:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} endfor_ifa(indev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	in_dev_put(indev); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-06 16:46:44 +00:00
										 |  |  | static void | 
					
						
							|  |  |  | netxen_restore_indev_addr(struct net_device *netdev, unsigned long event) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = netdev_priv(netdev); | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | 	struct nx_ip_list *pos, *tmp_pos; | 
					
						
							| 
									
										
										
										
											2011-08-06 16:46:44 +00:00
										 |  |  | 	unsigned long ip_event; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ip_event = (event == NETDEV_UP) ? NX_IP_UP : NX_IP_DOWN; | 
					
						
							|  |  |  | 	netxen_config_indev_addr(adapter, netdev, event); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | 	list_for_each_entry_safe(pos, tmp_pos, &adapter->ip_list, list) { | 
					
						
							| 
									
										
										
										
											2011-08-06 16:46:44 +00:00
										 |  |  | 		netxen_config_ipaddr(adapter, pos->ip_addr, ip_event); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | static inline bool | 
					
						
							|  |  |  | netxen_config_checkdev(struct net_device *dev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!is_netxen_netdev(dev)) | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	adapter = netdev_priv(dev); | 
					
						
							|  |  |  | 	if (!adapter) | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	if (!netxen_destip_supported(adapter)) | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	if (adapter->is_up != NETXEN_ADAPTER_UP_MAGIC) | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * netxen_config_master - configure addresses based on master | 
					
						
							|  |  |  |  * @dev: netxen device | 
					
						
							|  |  |  |  * @event: netdev event | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void netxen_config_master(struct net_device *dev, unsigned long event) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct net_device *master, *slave; | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter = netdev_priv(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	rcu_read_lock(); | 
					
						
							|  |  |  | 	master = netdev_master_upper_dev_get_rcu(dev); | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * This is the case where the netxen nic is being | 
					
						
							|  |  |  | 	 * enslaved and is dev_open()ed in bond_enslave() | 
					
						
							|  |  |  | 	 * Now we should program the bond's (and its vlans') | 
					
						
							|  |  |  | 	 * addresses in the netxen NIC. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (master && netif_is_bond_master(master) && | 
					
						
							|  |  |  | 	    !netif_is_bond_slave(dev)) { | 
					
						
							|  |  |  | 		netxen_config_indev_addr(adapter, master, event); | 
					
						
							|  |  |  | 		for_each_netdev_rcu(&init_net, slave) | 
					
						
							|  |  |  | 			if (slave->priv_flags & IFF_802_1Q_VLAN && | 
					
						
							|  |  |  | 			    vlan_dev_real_dev(slave) == master) | 
					
						
							|  |  |  | 				netxen_config_indev_addr(adapter, slave, event); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	rcu_read_unlock(); | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * This is the case where the netxen nic is being | 
					
						
							|  |  |  | 	 * released and is dev_close()ed in bond_release() | 
					
						
							|  |  |  | 	 * just before IFF_BONDING is stripped. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (!master && dev->priv_flags & IFF_BONDING) | 
					
						
							|  |  |  | 		netxen_free_ip_list(adapter, true); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:37 +00:00
										 |  |  | static int netxen_netdev_event(struct notifier_block *this, | 
					
						
							|  |  |  | 				 unsigned long event, void *ptr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter; | 
					
						
							| 
									
										
										
										
											2013-05-28 01:30:21 +00:00
										 |  |  | 	struct net_device *dev = netdev_notifier_info_to_dev(ptr); | 
					
						
							| 
									
										
										
										
											2011-08-06 16:46:44 +00:00
										 |  |  | 	struct net_device *orig_dev = dev; | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | 	struct net_device *slave; | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:37 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | recheck: | 
					
						
							|  |  |  | 	if (dev == NULL) | 
					
						
							|  |  |  | 		goto done; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (dev->priv_flags & IFF_802_1Q_VLAN) { | 
					
						
							|  |  |  | 		dev = vlan_dev_real_dev(dev); | 
					
						
							|  |  |  | 		goto recheck; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | 	if (event == NETDEV_UP || event == NETDEV_DOWN) { | 
					
						
							|  |  |  | 		/* If this is a bonding device, look for netxen-based slaves*/ | 
					
						
							|  |  |  | 		if (netif_is_bond_master(dev)) { | 
					
						
							|  |  |  | 			rcu_read_lock(); | 
					
						
							|  |  |  | 			for_each_netdev_in_bond_rcu(dev, slave) { | 
					
						
							|  |  |  | 				if (!netxen_config_checkdev(slave)) | 
					
						
							|  |  |  | 					continue; | 
					
						
							|  |  |  | 				adapter = netdev_priv(slave); | 
					
						
							|  |  |  | 				netxen_config_indev_addr(adapter, | 
					
						
							|  |  |  | 							 orig_dev, event); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			rcu_read_unlock(); | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			if (!netxen_config_checkdev(dev)) | 
					
						
							|  |  |  | 				goto done; | 
					
						
							|  |  |  | 			adapter = netdev_priv(dev); | 
					
						
							|  |  |  | 			/* Act only if the actual netxen is the target */ | 
					
						
							|  |  |  | 			if (orig_dev == dev) | 
					
						
							|  |  |  | 				netxen_config_master(dev, event); | 
					
						
							|  |  |  | 			netxen_config_indev_addr(adapter, orig_dev, event); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:37 +00:00
										 |  |  | done: | 
					
						
							|  |  |  | 	return NOTIFY_DONE; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | netxen_inetaddr_event(struct notifier_block *this, | 
					
						
							|  |  |  | 		unsigned long event, void *ptr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct netxen_adapter *adapter; | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | 	struct net_device *dev, *slave; | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:37 +00:00
										 |  |  | 	struct in_ifaddr *ifa = (struct in_ifaddr *)ptr; | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | 	unsigned long ip_event; | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:37 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	dev = ifa->ifa_dev ? ifa->ifa_dev->dev : NULL; | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | 	ip_event = (event == NETDEV_UP) ? NX_IP_UP : NX_IP_DOWN; | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:37 +00:00
										 |  |  | recheck: | 
					
						
							| 
									
										
										
										
											2011-08-06 16:46:44 +00:00
										 |  |  | 	if (dev == NULL) | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:37 +00:00
										 |  |  | 		goto done; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (dev->priv_flags & IFF_802_1Q_VLAN) { | 
					
						
							|  |  |  | 		dev = vlan_dev_real_dev(dev); | 
					
						
							|  |  |  | 		goto recheck; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | 	if (event == NETDEV_UP || event == NETDEV_DOWN) { | 
					
						
							|  |  |  | 		/* If this is a bonding device, look for netxen-based slaves*/ | 
					
						
							|  |  |  | 		if (netif_is_bond_master(dev)) { | 
					
						
							|  |  |  | 			rcu_read_lock(); | 
					
						
							|  |  |  | 			for_each_netdev_in_bond_rcu(dev, slave) { | 
					
						
							|  |  |  | 				if (!netxen_config_checkdev(slave)) | 
					
						
							|  |  |  | 					continue; | 
					
						
							|  |  |  | 				adapter = netdev_priv(slave); | 
					
						
							|  |  |  | 				netxen_list_config_ip(adapter, ifa, ip_event); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			rcu_read_unlock(); | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			if (!netxen_config_checkdev(dev)) | 
					
						
							|  |  |  | 				goto done; | 
					
						
							|  |  |  | 			adapter = netdev_priv(dev); | 
					
						
							|  |  |  | 			netxen_list_config_ip(adapter, ifa, ip_event); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:37 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | done: | 
					
						
							|  |  |  | 	return NOTIFY_DONE; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct notifier_block	netxen_netdev_cb = { | 
					
						
							|  |  |  | 	.notifier_call = netxen_netdev_event, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct notifier_block netxen_inetaddr_cb = { | 
					
						
							|  |  |  | 	.notifier_call = netxen_inetaddr_event, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2009-09-11 12:41:04 +00:00
										 |  |  | #else
 | 
					
						
							|  |  |  | static void | 
					
						
							| 
									
										
										
										
											2011-08-06 16:46:44 +00:00
										 |  |  | netxen_restore_indev_addr(struct net_device *dev, unsigned long event) | 
					
						
							|  |  |  | { } | 
					
						
							|  |  |  | static void | 
					
						
							| 
									
										
										
										
											2013-03-12 02:49:01 +00:00
										 |  |  | netxen_free_ip_list(struct netxen_adapter *adapter, bool master) | 
					
						
							| 
									
										
										
										
											2009-09-11 12:41:04 +00:00
										 |  |  | { } | 
					
						
							| 
									
										
										
										
											2009-07-28 09:10:03 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-07 09:33:15 -07:00
										 |  |  | static const struct pci_error_handlers netxen_err_handler = { | 
					
						
							| 
									
										
										
										
											2009-12-08 20:40:56 +00:00
										 |  |  | 	.error_detected = netxen_io_error_detected, | 
					
						
							|  |  |  | 	.slot_reset = netxen_io_slot_reset, | 
					
						
							|  |  |  | 	.resume = netxen_io_resume, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | static struct pci_driver netxen_driver = { | 
					
						
							|  |  |  | 	.name = netxen_nic_driver_name, | 
					
						
							|  |  |  | 	.id_table = netxen_pci_tbl, | 
					
						
							|  |  |  | 	.probe = netxen_nic_probe, | 
					
						
							| 
									
										
										
										
											2012-12-03 09:23:24 -05:00
										 |  |  | 	.remove = netxen_nic_remove, | 
					
						
							| 
									
										
										
										
											2009-06-22 20:26:20 +00:00
										 |  |  | #ifdef CONFIG_PM
 | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:02 +00:00
										 |  |  | 	.suspend = netxen_nic_suspend, | 
					
						
							| 
									
										
										
										
											2009-08-23 08:35:12 +00:00
										 |  |  | 	.resume = netxen_nic_resume, | 
					
						
							| 
									
										
										
										
											2009-06-22 20:26:20 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-12-08 20:40:56 +00:00
										 |  |  | 	.shutdown = netxen_nic_shutdown, | 
					
						
							|  |  |  | 	.err_handler = &netxen_err_handler | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int __init netxen_init_module(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-03-13 14:52:06 +00:00
										 |  |  | 	printk(KERN_INFO "%s\n", netxen_nic_driver_string); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-28 09:10:03 +00:00
										 |  |  | #ifdef CONFIG_INET
 | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:37 +00:00
										 |  |  | 	register_netdevice_notifier(&netxen_netdev_cb); | 
					
						
							|  |  |  | 	register_inetaddr_notifier(&netxen_inetaddr_cb); | 
					
						
							| 
									
										
										
										
											2009-07-28 09:10:03 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2007-01-22 06:52:53 -08:00
										 |  |  | 	return pci_register_driver(&netxen_driver); | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module_init(netxen_init_module); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __exit netxen_exit_module(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	pci_unregister_driver(&netxen_driver); | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-28 09:10:03 +00:00
										 |  |  | #ifdef CONFIG_INET
 | 
					
						
							| 
									
										
										
										
											2009-07-26 20:07:37 +00:00
										 |  |  | 	unregister_inetaddr_notifier(&netxen_inetaddr_cb); | 
					
						
							|  |  |  | 	unregister_netdevice_notifier(&netxen_netdev_cb); | 
					
						
							| 
									
										
										
										
											2009-07-28 09:10:03 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2006-10-21 15:33:03 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module_exit(netxen_exit_module); |