devices/e100-2.6.18-ethercat.c
branchstable-1.3
changeset 1758 2f7f5fa7b870
parent 1757 c5757cebfaea
child 1759 c3b4d3a50ac6
equal deleted inserted replaced
1757:c5757cebfaea 1758:2f7f5fa7b870
     1 /******************************************************************************
       
     2  *
       
     3  *  $Id$
       
     4  *
       
     5  *  Copyright (C) 2007  Florian Pose, Ingenieurgemeinschaft IgH
       
     6  *
       
     7  *  This file is part of the IgH EtherCAT Master.
       
     8  *
       
     9  *  The IgH EtherCAT Master is free software; you can redistribute it
       
    10  *  and/or modify it under the terms of the GNU General Public License
       
    11  *  as published by the Free Software Foundation; either version 2 of the
       
    12  *  License, or (at your option) any later version.
       
    13  *
       
    14  *  The IgH EtherCAT Master is distributed in the hope that it will be
       
    15  *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
       
    17  *  GNU General Public License for more details.
       
    18  *
       
    19  *  You should have received a copy of the GNU General Public License
       
    20  *  along with the IgH EtherCAT Master; if not, write to the Free Software
       
    21  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
       
    22  *
       
    23  *  The right to use EtherCAT Technology is granted and comes free of
       
    24  *  charge under condition of compatibility of product made by
       
    25  *  Licensee. People intending to distribute/sell products based on the
       
    26  *  code, have to sign an agreement to guarantee that products using
       
    27  *  software based on IgH EtherCAT master stay compatible with the actual
       
    28  *  EtherCAT specification (which are released themselves as an open
       
    29  *  standard) as the (only) precondition to have the right to use EtherCAT
       
    30  *  Technology, IP and trade marks.
       
    31  *
       
    32  *****************************************************************************/
       
    33 
       
    34 /**
       
    35    \file
       
    36    EtherCAT driver for e100-compatible NICs.
       
    37 */
       
    38 
       
    39 /* Former documentation: */
       
    40 
       
    41 /*******************************************************************************
       
    42 
       
    43   Copyright(c) 1999 - 2005 Intel Corporation. All rights reserved.
       
    44 
       
    45   This program is free software; you can redistribute it and/or modify it
       
    46   under the terms of the GNU General Public License as published by the Free
       
    47   Software Foundation; either version 2 of the License, or (at your option)
       
    48   any later version.
       
    49 
       
    50   This program is distributed in the hope that it will be useful, but WITHOUT
       
    51   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
       
    52   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
       
    53   more details.
       
    54 
       
    55   You should have received a copy of the GNU General Public License along with
       
    56   this program; if not, write to the Free Software Foundation, Inc., 59
       
    57   Temple Place - Suite 330, Boston, MA  02111-1307, USA.
       
    58 
       
    59   The full GNU General Public License is included in this distribution in the
       
    60   file called LICENSE.
       
    61 
       
    62   Contact Information:
       
    63   Linux NICS <linux.nics@intel.com>
       
    64   Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
       
    65 
       
    66 *******************************************************************************/
       
    67 
       
    68 /*
       
    69  *	e100.c: Intel(R) PRO/100 ethernet driver
       
    70  *
       
    71  *	(Re)written 2003 by scott.feldman@intel.com.  Based loosely on
       
    72  *	original e100 driver, but better described as a munging of
       
    73  *	e100, e1000, eepro100, tg3, 8139cp, and other drivers.
       
    74  *
       
    75  *	References:
       
    76  *		Intel 8255x 10/100 Mbps Ethernet Controller Family,
       
    77  *		Open Source Software Developers Manual,
       
    78  *		http://sourceforge.net/projects/e1000
       
    79  *
       
    80  *
       
    81  *	                      Theory of Operation
       
    82  *
       
    83  *	I.   General
       
    84  *
       
    85  *	The driver supports Intel(R) 10/100 Mbps PCI Fast Ethernet
       
    86  *	controller family, which includes the 82557, 82558, 82559, 82550,
       
    87  *	82551, and 82562 devices.  82558 and greater controllers
       
    88  *	integrate the Intel 82555 PHY.  The controllers are used in
       
    89  *	server and client network interface cards, as well as in
       
    90  *	LAN-On-Motherboard (LOM), CardBus, MiniPCI, and ICHx
       
    91  *	configurations.  8255x supports a 32-bit linear addressing
       
    92  *	mode and operates at 33Mhz PCI clock rate.
       
    93  *
       
    94  *	II.  Driver Operation
       
    95  *
       
    96  *	Memory-mapped mode is used exclusively to access the device's
       
    97  *	shared-memory structure, the Control/Status Registers (CSR). All
       
    98  *	setup, configuration, and control of the device, including queuing
       
    99  *	of Tx, Rx, and configuration commands is through the CSR.
       
   100  *	cmd_lock serializes accesses to the CSR command register.  cb_lock
       
   101  *	protects the shared Command Block List (CBL).
       
   102  *
       
   103  *	8255x is highly MII-compliant and all access to the PHY go
       
   104  *	through the Management Data Interface (MDI).  Consequently, the
       
   105  *	driver leverages the mii.c library shared with other MII-compliant
       
   106  *	devices.
       
   107  *
       
   108  *	Big- and Little-Endian byte order as well as 32- and 64-bit
       
   109  *	archs are supported.  Weak-ordered memory and non-cache-coherent
       
   110  *	archs are supported.
       
   111  *
       
   112  *	III. Transmit
       
   113  *
       
   114  *	A Tx skb is mapped and hangs off of a TCB.  TCBs are linked
       
   115  *	together in a fixed-size ring (CBL) thus forming the flexible mode
       
   116  *	memory structure.  A TCB marked with the suspend-bit indicates
       
   117  *	the end of the ring.  The last TCB processed suspends the
       
   118  *	controller, and the controller can be restarted by issue a CU
       
   119  *	resume command to continue from the suspend point, or a CU start
       
   120  *	command to start at a given position in the ring.
       
   121  *
       
   122  *	Non-Tx commands (config, multicast setup, etc) are linked
       
   123  *	into the CBL ring along with Tx commands.  The common structure
       
   124  *	used for both Tx and non-Tx commands is the Command Block (CB).
       
   125  *
       
   126  *	cb_to_use is the next CB to use for queuing a command; cb_to_clean
       
   127  *	is the next CB to check for completion; cb_to_send is the first
       
   128  *	CB to start on in case of a previous failure to resume.  CB clean
       
   129  *	up happens in interrupt context in response to a CU interrupt.
       
   130  *	cbs_avail keeps track of number of free CB resources available.
       
   131  *
       
   132  * 	Hardware padding of short packets to minimum packet size is
       
   133  * 	enabled.  82557 pads with 7Eh, while the later controllers pad
       
   134  * 	with 00h.
       
   135  *
       
   136  *	IV.  Recieve
       
   137  *
       
   138  *	The Receive Frame Area (RFA) comprises a ring of Receive Frame
       
   139  *	Descriptors (RFD) + data buffer, thus forming the simplified mode
       
   140  *	memory structure.  Rx skbs are allocated to contain both the RFD
       
   141  *	and the data buffer, but the RFD is pulled off before the skb is
       
   142  *	indicated.  The data buffer is aligned such that encapsulated
       
   143  *	protocol headers are u32-aligned.  Since the RFD is part of the
       
   144  *	mapped shared memory, and completion status is contained within
       
   145  *	the RFD, the RFD must be dma_sync'ed to maintain a consistent
       
   146  *	view from software and hardware.
       
   147  *
       
   148  *	Under typical operation, the  receive unit (RU) is start once,
       
   149  *	and the controller happily fills RFDs as frames arrive.  If
       
   150  *	replacement RFDs cannot be allocated, or the RU goes non-active,
       
   151  *	the RU must be restarted.  Frame arrival generates an interrupt,
       
   152  *	and Rx indication and re-allocation happen in the same context,
       
   153  *	therefore no locking is required.  A software-generated interrupt
       
   154  *	is generated from the watchdog to recover from a failed allocation
       
   155  *	senario where all Rx resources have been indicated and none re-
       
   156  *	placed.
       
   157  *
       
   158  *	V.   Miscellaneous
       
   159  *
       
   160  * 	VLAN offloading of tagging, stripping and filtering is not
       
   161  * 	supported, but driver will accommodate the extra 4-byte VLAN tag
       
   162  * 	for processing by upper layers.  Tx/Rx Checksum offloading is not
       
   163  * 	supported.  Tx Scatter/Gather is not supported.  Jumbo Frames is
       
   164  * 	not supported (hardware limitation).
       
   165  *
       
   166  * 	MagicPacket(tm) WoL support is enabled/disabled via ethtool.
       
   167  *
       
   168  * 	Thanks to JC (jchapman@katalix.com) for helping with
       
   169  * 	testing/troubleshooting the development driver.
       
   170  *
       
   171  * 	TODO:
       
   172  * 	o several entry points race with dev->close
       
   173  * 	o check for tx-no-resources/stop Q races with tx clean/wake Q
       
   174  *
       
   175  *	FIXES:
       
   176  * 2005/12/02 - Michael O'Donnell <Michael.ODonnell at stratus dot com>
       
   177  *	- Stratus87247: protect MDI control register manipulations
       
   178  */
       
   179 
       
   180 #include <linux/module.h>
       
   181 #include <linux/moduleparam.h>
       
   182 #include <linux/kernel.h>
       
   183 #include <linux/types.h>
       
   184 #include <linux/slab.h>
       
   185 #include <linux/delay.h>
       
   186 #include <linux/init.h>
       
   187 #include <linux/pci.h>
       
   188 #include <linux/dma-mapping.h>
       
   189 #include <linux/netdevice.h>
       
   190 #include <linux/etherdevice.h>
       
   191 #include <linux/mii.h>
       
   192 #include <linux/if_vlan.h>
       
   193 #include <linux/skbuff.h>
       
   194 #include <linux/ethtool.h>
       
   195 #include <linux/string.h>
       
   196 #include <asm/unaligned.h>
       
   197 
       
   198 // EtherCAT includes
       
   199 #include "../globals.h"
       
   200 #include "ecdev.h"
       
   201 
       
   202 #define DRV_NAME		"ec_e100"
       
   203 #define DRV_EXT		"-NAPI"
       
   204 #define DRV_VERSION		"3.5.10-k2"DRV_EXT
       
   205 #define DRV_DESCRIPTION		"EtherCAT-capable Intel(R) PRO/100 Network Driver"
       
   206 #define PFX			DRV_NAME ": "
       
   207 
       
   208 #define E100_WATCHDOG_PERIOD	(2 * HZ)
       
   209 #define E100_NAPI_WEIGHT	16
       
   210 
       
   211 MODULE_DESCRIPTION(DRV_DESCRIPTION);
       
   212 MODULE_AUTHOR("Florian Pose <fp@igh-essen.com>");
       
   213 MODULE_LICENSE("GPL");
       
   214 MODULE_VERSION(DRV_VERSION ", master " EC_MASTER_VERSION);
       
   215 
       
   216 // EtherCAT variables
       
   217 static int ec_device_index = -1;
       
   218 static int ec_device_master_index = 0;
       
   219 struct net_device *e100_ec_netdev = NULL;
       
   220 unsigned int e100_device_index = 0;
       
   221 
       
   222 // EtherCAT module parameters
       
   223 module_param(ec_device_index, int, -1);
       
   224 module_param(ec_device_master_index, int, 0);
       
   225 MODULE_PARM_DESC(ec_device_index,
       
   226                  "Index of the device reserved for EtherCAT.");
       
   227 MODULE_PARM_DESC(ec_device_master_index,
       
   228                  "Index of the EtherCAT master to register the device.");
       
   229 
       
   230 void e100_ec_poll(struct net_device *);
       
   231 
       
   232 static int debug = 3;
       
   233 static int eeprom_bad_csum_allow = 0;
       
   234 module_param(debug, int, 0);
       
   235 module_param(eeprom_bad_csum_allow, int, 0);
       
   236 MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
       
   237 MODULE_PARM_DESC(eeprom_bad_csum_allow, "Allow bad eeprom checksums");
       
   238 #define DPRINTK(nlevel, klevel, fmt, args...) \
       
   239 	(void)((NETIF_MSG_##nlevel & nic->msg_enable) && \
       
   240 	printk(KERN_##klevel PFX "%s: %s: " fmt, nic->netdev->name, \
       
   241 		__FUNCTION__ , ## args))
       
   242 
       
   243 #define INTEL_8255X_ETHERNET_DEVICE(device_id, ich) {\
       
   244 	PCI_VENDOR_ID_INTEL, device_id, PCI_ANY_ID, PCI_ANY_ID, \
       
   245 	PCI_CLASS_NETWORK_ETHERNET << 8, 0xFFFF00, ich }
       
   246 static struct pci_device_id e100_id_table[] = {
       
   247 	INTEL_8255X_ETHERNET_DEVICE(0x1029, 0),
       
   248 	INTEL_8255X_ETHERNET_DEVICE(0x1030, 0),
       
   249 	INTEL_8255X_ETHERNET_DEVICE(0x1031, 3),
       
   250 	INTEL_8255X_ETHERNET_DEVICE(0x1032, 3),
       
   251 	INTEL_8255X_ETHERNET_DEVICE(0x1033, 3),
       
   252 	INTEL_8255X_ETHERNET_DEVICE(0x1034, 3),
       
   253 	INTEL_8255X_ETHERNET_DEVICE(0x1038, 3),
       
   254 	INTEL_8255X_ETHERNET_DEVICE(0x1039, 4),
       
   255 	INTEL_8255X_ETHERNET_DEVICE(0x103A, 4),
       
   256 	INTEL_8255X_ETHERNET_DEVICE(0x103B, 4),
       
   257 	INTEL_8255X_ETHERNET_DEVICE(0x103C, 4),
       
   258 	INTEL_8255X_ETHERNET_DEVICE(0x103D, 4),
       
   259 	INTEL_8255X_ETHERNET_DEVICE(0x103E, 4),
       
   260 	INTEL_8255X_ETHERNET_DEVICE(0x1050, 5),
       
   261 	INTEL_8255X_ETHERNET_DEVICE(0x1051, 5),
       
   262 	INTEL_8255X_ETHERNET_DEVICE(0x1052, 5),
       
   263 	INTEL_8255X_ETHERNET_DEVICE(0x1053, 5),
       
   264 	INTEL_8255X_ETHERNET_DEVICE(0x1054, 5),
       
   265 	INTEL_8255X_ETHERNET_DEVICE(0x1055, 5),
       
   266 	INTEL_8255X_ETHERNET_DEVICE(0x1056, 5),
       
   267 	INTEL_8255X_ETHERNET_DEVICE(0x1057, 5),
       
   268 	INTEL_8255X_ETHERNET_DEVICE(0x1059, 0),
       
   269 	INTEL_8255X_ETHERNET_DEVICE(0x1064, 6),
       
   270 	INTEL_8255X_ETHERNET_DEVICE(0x1065, 6),
       
   271 	INTEL_8255X_ETHERNET_DEVICE(0x1066, 6),
       
   272 	INTEL_8255X_ETHERNET_DEVICE(0x1067, 6),
       
   273 	INTEL_8255X_ETHERNET_DEVICE(0x1068, 6),
       
   274 	INTEL_8255X_ETHERNET_DEVICE(0x1069, 6),
       
   275 	INTEL_8255X_ETHERNET_DEVICE(0x106A, 6),
       
   276 	INTEL_8255X_ETHERNET_DEVICE(0x106B, 6),
       
   277 	INTEL_8255X_ETHERNET_DEVICE(0x1091, 7),
       
   278 	INTEL_8255X_ETHERNET_DEVICE(0x1092, 7),
       
   279 	INTEL_8255X_ETHERNET_DEVICE(0x1093, 7),
       
   280 	INTEL_8255X_ETHERNET_DEVICE(0x1094, 7),
       
   281 	INTEL_8255X_ETHERNET_DEVICE(0x1095, 7),
       
   282 	INTEL_8255X_ETHERNET_DEVICE(0x1209, 0),
       
   283 	INTEL_8255X_ETHERNET_DEVICE(0x1229, 0),
       
   284 	INTEL_8255X_ETHERNET_DEVICE(0x2449, 2),
       
   285 	INTEL_8255X_ETHERNET_DEVICE(0x2459, 2),
       
   286 	INTEL_8255X_ETHERNET_DEVICE(0x245D, 2),
       
   287 	INTEL_8255X_ETHERNET_DEVICE(0x27DC, 7),
       
   288 	{ 0, }
       
   289 };
       
   290 // prevent from being loaded automatically
       
   291 //MODULE_DEVICE_TABLE(pci, e100_id_table);
       
   292 
       
   293 enum mac {
       
   294 	mac_82557_D100_A  = 0,
       
   295 	mac_82557_D100_B  = 1,
       
   296 	mac_82557_D100_C  = 2,
       
   297 	mac_82558_D101_A4 = 4,
       
   298 	mac_82558_D101_B0 = 5,
       
   299 	mac_82559_D101M   = 8,
       
   300 	mac_82559_D101S   = 9,
       
   301 	mac_82550_D102    = 12,
       
   302 	mac_82550_D102_C  = 13,
       
   303 	mac_82551_E       = 14,
       
   304 	mac_82551_F       = 15,
       
   305 	mac_82551_10      = 16,
       
   306 	mac_unknown       = 0xFF,
       
   307 };
       
   308 
       
   309 enum phy {
       
   310 	phy_100a     = 0x000003E0,
       
   311 	phy_100c     = 0x035002A8,
       
   312 	phy_82555_tx = 0x015002A8,
       
   313 	phy_nsc_tx   = 0x5C002000,
       
   314 	phy_82562_et = 0x033002A8,
       
   315 	phy_82562_em = 0x032002A8,
       
   316 	phy_82562_ek = 0x031002A8,
       
   317 	phy_82562_eh = 0x017002A8,
       
   318 	phy_unknown  = 0xFFFFFFFF,
       
   319 };
       
   320 
       
   321 /* CSR (Control/Status Registers) */
       
   322 struct csr {
       
   323 	struct {
       
   324 		u8 status;
       
   325 		u8 stat_ack;
       
   326 		u8 cmd_lo;
       
   327 		u8 cmd_hi;
       
   328 		u32 gen_ptr;
       
   329 	} scb;
       
   330 	u32 port;
       
   331 	u16 flash_ctrl;
       
   332 	u8 eeprom_ctrl_lo;
       
   333 	u8 eeprom_ctrl_hi;
       
   334 	u32 mdi_ctrl;
       
   335 	u32 rx_dma_count;
       
   336 };
       
   337 
       
   338 enum scb_status {
       
   339 	rus_ready        = 0x10,
       
   340 	rus_mask         = 0x3C,
       
   341 };
       
   342 
       
   343 enum ru_state  {
       
   344 	RU_SUSPENDED = 0,
       
   345 	RU_RUNNING	 = 1,
       
   346 	RU_UNINITIALIZED = -1,
       
   347 };
       
   348 
       
   349 enum scb_stat_ack {
       
   350 	stat_ack_not_ours    = 0x00,
       
   351 	stat_ack_sw_gen      = 0x04,
       
   352 	stat_ack_rnr         = 0x10,
       
   353 	stat_ack_cu_idle     = 0x20,
       
   354 	stat_ack_frame_rx    = 0x40,
       
   355 	stat_ack_cu_cmd_done = 0x80,
       
   356 	stat_ack_not_present = 0xFF,
       
   357 	stat_ack_rx = (stat_ack_sw_gen | stat_ack_rnr | stat_ack_frame_rx),
       
   358 	stat_ack_tx = (stat_ack_cu_idle | stat_ack_cu_cmd_done),
       
   359 };
       
   360 
       
   361 enum scb_cmd_hi {
       
   362 	irq_mask_none = 0x00,
       
   363 	irq_mask_all  = 0x01,
       
   364 	irq_sw_gen    = 0x02,
       
   365 };
       
   366 
       
   367 enum scb_cmd_lo {
       
   368 	cuc_nop        = 0x00,
       
   369 	ruc_start      = 0x01,
       
   370 	ruc_load_base  = 0x06,
       
   371 	cuc_start      = 0x10,
       
   372 	cuc_resume     = 0x20,
       
   373 	cuc_dump_addr  = 0x40,
       
   374 	cuc_dump_stats = 0x50,
       
   375 	cuc_load_base  = 0x60,
       
   376 	cuc_dump_reset = 0x70,
       
   377 };
       
   378 
       
   379 enum cuc_dump {
       
   380 	cuc_dump_complete       = 0x0000A005,
       
   381 	cuc_dump_reset_complete = 0x0000A007,
       
   382 };
       
   383 
       
   384 enum port {
       
   385 	software_reset  = 0x0000,
       
   386 	selftest        = 0x0001,
       
   387 	selective_reset = 0x0002,
       
   388 };
       
   389 
       
   390 enum eeprom_ctrl_lo {
       
   391 	eesk = 0x01,
       
   392 	eecs = 0x02,
       
   393 	eedi = 0x04,
       
   394 	eedo = 0x08,
       
   395 };
       
   396 
       
   397 enum mdi_ctrl {
       
   398 	mdi_write = 0x04000000,
       
   399 	mdi_read  = 0x08000000,
       
   400 	mdi_ready = 0x10000000,
       
   401 };
       
   402 
       
   403 enum eeprom_op {
       
   404 	op_write = 0x05,
       
   405 	op_read  = 0x06,
       
   406 	op_ewds  = 0x10,
       
   407 	op_ewen  = 0x13,
       
   408 };
       
   409 
       
   410 enum eeprom_offsets {
       
   411 	eeprom_cnfg_mdix  = 0x03,
       
   412 	eeprom_id         = 0x0A,
       
   413 	eeprom_config_asf = 0x0D,
       
   414 	eeprom_smbus_addr = 0x90,
       
   415 };
       
   416 
       
   417 enum eeprom_cnfg_mdix {
       
   418 	eeprom_mdix_enabled = 0x0080,
       
   419 };
       
   420 
       
   421 enum eeprom_id {
       
   422 	eeprom_id_wol = 0x0020,
       
   423 };
       
   424 
       
   425 enum eeprom_config_asf {
       
   426 	eeprom_asf = 0x8000,
       
   427 	eeprom_gcl = 0x4000,
       
   428 };
       
   429 
       
   430 enum cb_status {
       
   431 	cb_complete = 0x8000,
       
   432 	cb_ok       = 0x2000,
       
   433 };
       
   434 
       
   435 enum cb_command {
       
   436 	cb_nop    = 0x0000,
       
   437 	cb_iaaddr = 0x0001,
       
   438 	cb_config = 0x0002,
       
   439 	cb_multi  = 0x0003,
       
   440 	cb_tx     = 0x0004,
       
   441 	cb_ucode  = 0x0005,
       
   442 	cb_dump   = 0x0006,
       
   443 	cb_tx_sf  = 0x0008,
       
   444 	cb_cid    = 0x1f00,
       
   445 	cb_i      = 0x2000,
       
   446 	cb_s      = 0x4000,
       
   447 	cb_el     = 0x8000,
       
   448 };
       
   449 
       
   450 struct rfd {
       
   451 	u16 status;
       
   452 	u16 command;
       
   453 	u32 link;
       
   454 	u32 rbd;
       
   455 	u16 actual_size;
       
   456 	u16 size;
       
   457 };
       
   458 
       
   459 struct rx {
       
   460 	struct rx *next, *prev;
       
   461 	struct sk_buff *skb;
       
   462 	dma_addr_t dma_addr;
       
   463 };
       
   464 
       
   465 #if defined(__BIG_ENDIAN_BITFIELD)
       
   466 #define X(a,b)	b,a
       
   467 #else
       
   468 #define X(a,b)	a,b
       
   469 #endif
       
   470 struct config {
       
   471 /*0*/	u8 X(byte_count:6, pad0:2);
       
   472 /*1*/	u8 X(X(rx_fifo_limit:4, tx_fifo_limit:3), pad1:1);
       
   473 /*2*/	u8 adaptive_ifs;
       
   474 /*3*/	u8 X(X(X(X(mwi_enable:1, type_enable:1), read_align_enable:1),
       
   475 	   term_write_cache_line:1), pad3:4);
       
   476 /*4*/	u8 X(rx_dma_max_count:7, pad4:1);
       
   477 /*5*/	u8 X(tx_dma_max_count:7, dma_max_count_enable:1);
       
   478 /*6*/	u8 X(X(X(X(X(X(X(late_scb_update:1, direct_rx_dma:1),
       
   479 	   tno_intr:1), cna_intr:1), standard_tcb:1), standard_stat_counter:1),
       
   480 	   rx_discard_overruns:1), rx_save_bad_frames:1);
       
   481 /*7*/	u8 X(X(X(X(X(rx_discard_short_frames:1, tx_underrun_retry:2),
       
   482 	   pad7:2), rx_extended_rfd:1), tx_two_frames_in_fifo:1),
       
   483 	   tx_dynamic_tbd:1);
       
   484 /*8*/	u8 X(X(mii_mode:1, pad8:6), csma_disabled:1);
       
   485 /*9*/	u8 X(X(X(X(X(rx_tcpudp_checksum:1, pad9:3), vlan_arp_tco:1),
       
   486 	   link_status_wake:1), arp_wake:1), mcmatch_wake:1);
       
   487 /*10*/	u8 X(X(X(pad10:3, no_source_addr_insertion:1), preamble_length:2),
       
   488 	   loopback:2);
       
   489 /*11*/	u8 X(linear_priority:3, pad11:5);
       
   490 /*12*/	u8 X(X(linear_priority_mode:1, pad12:3), ifs:4);
       
   491 /*13*/	u8 ip_addr_lo;
       
   492 /*14*/	u8 ip_addr_hi;
       
   493 /*15*/	u8 X(X(X(X(X(X(X(promiscuous_mode:1, broadcast_disabled:1),
       
   494 	   wait_after_win:1), pad15_1:1), ignore_ul_bit:1), crc_16_bit:1),
       
   495 	   pad15_2:1), crs_or_cdt:1);
       
   496 /*16*/	u8 fc_delay_lo;
       
   497 /*17*/	u8 fc_delay_hi;
       
   498 /*18*/	u8 X(X(X(X(X(rx_stripping:1, tx_padding:1), rx_crc_transfer:1),
       
   499 	   rx_long_ok:1), fc_priority_threshold:3), pad18:1);
       
   500 /*19*/	u8 X(X(X(X(X(X(X(addr_wake:1, magic_packet_disable:1),
       
   501 	   fc_disable:1), fc_restop:1), fc_restart:1), fc_reject:1),
       
   502 	   full_duplex_force:1), full_duplex_pin:1);
       
   503 /*20*/	u8 X(X(X(pad20_1:5, fc_priority_location:1), multi_ia:1), pad20_2:1);
       
   504 /*21*/	u8 X(X(pad21_1:3, multicast_all:1), pad21_2:4);
       
   505 /*22*/	u8 X(X(rx_d102_mode:1, rx_vlan_drop:1), pad22:6);
       
   506 	u8 pad_d102[9];
       
   507 };
       
   508 
       
   509 #define E100_MAX_MULTICAST_ADDRS	64
       
   510 struct multi {
       
   511 	u16 count;
       
   512 	u8 addr[E100_MAX_MULTICAST_ADDRS * ETH_ALEN + 2/*pad*/];
       
   513 };
       
   514 
       
   515 /* Important: keep total struct u32-aligned */
       
   516 #define UCODE_SIZE			134
       
   517 struct cb {
       
   518 	u16 status;
       
   519 	u16 command;
       
   520 	u32 link;
       
   521 	union {
       
   522 		u8 iaaddr[ETH_ALEN];
       
   523 		u32 ucode[UCODE_SIZE];
       
   524 		struct config config;
       
   525 		struct multi multi;
       
   526 		struct {
       
   527 			u32 tbd_array;
       
   528 			u16 tcb_byte_count;
       
   529 			u8 threshold;
       
   530 			u8 tbd_count;
       
   531 			struct {
       
   532 				u32 buf_addr;
       
   533 				u16 size;
       
   534 				u16 eol;
       
   535 			} tbd;
       
   536 		} tcb;
       
   537 		u32 dump_buffer_addr;
       
   538 	} u;
       
   539 	struct cb *next, *prev;
       
   540 	dma_addr_t dma_addr;
       
   541 	struct sk_buff *skb;
       
   542 };
       
   543 
       
   544 enum loopback {
       
   545 	lb_none = 0, lb_mac = 1, lb_phy = 3,
       
   546 };
       
   547 
       
   548 struct stats {
       
   549 	u32 tx_good_frames, tx_max_collisions, tx_late_collisions,
       
   550 		tx_underruns, tx_lost_crs, tx_deferred, tx_single_collisions,
       
   551 		tx_multiple_collisions, tx_total_collisions;
       
   552 	u32 rx_good_frames, rx_crc_errors, rx_alignment_errors,
       
   553 		rx_resource_errors, rx_overrun_errors, rx_cdt_errors,
       
   554 		rx_short_frame_errors;
       
   555 	u32 fc_xmt_pause, fc_rcv_pause, fc_rcv_unsupported;
       
   556 	u16 xmt_tco_frames, rcv_tco_frames;
       
   557 	u32 complete;
       
   558 };
       
   559 
       
   560 struct mem {
       
   561 	struct {
       
   562 		u32 signature;
       
   563 		u32 result;
       
   564 	} selftest;
       
   565 	struct stats stats;
       
   566 	u8 dump_buf[596];
       
   567 };
       
   568 
       
   569 struct param_range {
       
   570 	u32 min;
       
   571 	u32 max;
       
   572 	u32 count;
       
   573 };
       
   574 
       
   575 struct params {
       
   576 	struct param_range rfds;
       
   577 	struct param_range cbs;
       
   578 };
       
   579 
       
   580 struct nic {
       
   581 	/* Begin: frequently used values: keep adjacent for cache effect */
       
   582 	u32 msg_enable				____cacheline_aligned;
       
   583 	struct net_device *netdev;
       
   584 	struct pci_dev *pdev;
       
   585 
       
   586 	struct rx *rxs				____cacheline_aligned;
       
   587 	struct rx *rx_to_use;
       
   588 	struct rx *rx_to_clean;
       
   589 	struct rfd blank_rfd;
       
   590 	enum ru_state ru_running;
       
   591 
       
   592 	spinlock_t cb_lock			____cacheline_aligned;
       
   593 	spinlock_t cmd_lock;
       
   594 	struct csr __iomem *csr;
       
   595 	enum scb_cmd_lo cuc_cmd;
       
   596 	unsigned int cbs_avail;
       
   597 	struct cb *cbs;
       
   598 	struct cb *cb_to_use;
       
   599 	struct cb *cb_to_send;
       
   600 	struct cb *cb_to_clean;
       
   601 	u16 tx_command;
       
   602 	/* End: frequently used values: keep adjacent for cache effect */
       
   603 
       
   604 	enum {
       
   605 		ich                = (1 << 0),
       
   606 		promiscuous        = (1 << 1),
       
   607 		multicast_all      = (1 << 2),
       
   608 		wol_magic          = (1 << 3),
       
   609 		ich_10h_workaround = (1 << 4),
       
   610 	} flags					____cacheline_aligned;
       
   611 
       
   612 	enum mac mac;
       
   613 	enum phy phy;
       
   614 	struct params params;
       
   615 	struct net_device_stats net_stats;
       
   616 	struct timer_list watchdog;
       
   617 	struct timer_list blink_timer;
       
   618 	struct mii_if_info mii;
       
   619 	struct work_struct tx_timeout_task;
       
   620 	enum loopback loopback;
       
   621 
       
   622 	struct mem *mem;
       
   623 	dma_addr_t dma_addr;
       
   624 
       
   625 	dma_addr_t cbs_dma_addr;
       
   626 	u8 adaptive_ifs;
       
   627 	u8 tx_threshold;
       
   628 	u32 tx_frames;
       
   629 	u32 tx_collisions;
       
   630 	u32 tx_deferred;
       
   631 	u32 tx_single_collisions;
       
   632 	u32 tx_multiple_collisions;
       
   633 	u32 tx_fc_pause;
       
   634 	u32 tx_tco_frames;
       
   635 
       
   636 	u32 rx_fc_pause;
       
   637 	u32 rx_fc_unsupported;
       
   638 	u32 rx_tco_frames;
       
   639 	u32 rx_over_length_errors;
       
   640 
       
   641 	u8 rev_id;
       
   642 	u16 leds;
       
   643 	u16 eeprom_wc;
       
   644 	u16 eeprom[256];
       
   645 	spinlock_t mdio_lock;
       
   646 
       
   647     u8 ethercat;
       
   648     ec_device_t *ecdev;
       
   649 };
       
   650 
       
   651 static inline void e100_write_flush(struct nic *nic)
       
   652 {
       
   653 	/* Flush previous PCI writes through intermediate bridges
       
   654 	 * by doing a benign read */
       
   655 	(void)readb(&nic->csr->scb.status);
       
   656 }
       
   657 
       
   658 static void e100_enable_irq(struct nic *nic)
       
   659 {
       
   660 	unsigned long flags;
       
   661 
       
   662 	spin_lock_irqsave(&nic->cmd_lock, flags);
       
   663 	writeb(irq_mask_none, &nic->csr->scb.cmd_hi);
       
   664 	e100_write_flush(nic);
       
   665 	spin_unlock_irqrestore(&nic->cmd_lock, flags);
       
   666 }
       
   667 
       
   668 static void e100_disable_irq(struct nic *nic)
       
   669 {
       
   670 	unsigned long flags;
       
   671 
       
   672 	spin_lock_irqsave(&nic->cmd_lock, flags);
       
   673 	writeb(irq_mask_all, &nic->csr->scb.cmd_hi);
       
   674 	e100_write_flush(nic);
       
   675 	spin_unlock_irqrestore(&nic->cmd_lock, flags);
       
   676 }
       
   677 
       
   678 static void e100_hw_reset(struct nic *nic)
       
   679 {
       
   680 	/* Put CU and RU into idle with a selective reset to get
       
   681 	 * device off of PCI bus */
       
   682 	writel(selective_reset, &nic->csr->port);
       
   683 	e100_write_flush(nic); udelay(20);
       
   684 
       
   685 	/* Now fully reset device */
       
   686 	writel(software_reset, &nic->csr->port);
       
   687 	e100_write_flush(nic); udelay(20);
       
   688 
       
   689 	/* Mask off our interrupt line - it's unmasked after reset */
       
   690 	e100_disable_irq(nic);
       
   691 }
       
   692 
       
   693 static int e100_self_test(struct nic *nic)
       
   694 {
       
   695 	u32 dma_addr = nic->dma_addr + offsetof(struct mem, selftest);
       
   696 
       
   697 	/* Passing the self-test is a pretty good indication
       
   698 	 * that the device can DMA to/from host memory */
       
   699 
       
   700 	nic->mem->selftest.signature = 0;
       
   701 	nic->mem->selftest.result = 0xFFFFFFFF;
       
   702 
       
   703 	writel(selftest | dma_addr, &nic->csr->port);
       
   704 	e100_write_flush(nic);
       
   705 	/* Wait 10 msec for self-test to complete */
       
   706 	msleep(10);
       
   707 
       
   708 	/* Interrupts are enabled after self-test */
       
   709 	e100_disable_irq(nic);
       
   710 
       
   711 	/* Check results of self-test */
       
   712 	if(nic->mem->selftest.result != 0) {
       
   713 		DPRINTK(HW, ERR, "Self-test failed: result=0x%08X\n",
       
   714 			nic->mem->selftest.result);
       
   715 		return -ETIMEDOUT;
       
   716 	}
       
   717 	if(nic->mem->selftest.signature == 0) {
       
   718 		DPRINTK(HW, ERR, "Self-test failed: timed out\n");
       
   719 		return -ETIMEDOUT;
       
   720 	}
       
   721 
       
   722 	return 0;
       
   723 }
       
   724 
       
   725 static void e100_eeprom_write(struct nic *nic, u16 addr_len, u16 addr, u16 data)
       
   726 {
       
   727 	u32 cmd_addr_data[3];
       
   728 	u8 ctrl;
       
   729 	int i, j;
       
   730 
       
   731 	/* Three cmds: write/erase enable, write data, write/erase disable */
       
   732 	cmd_addr_data[0] = op_ewen << (addr_len - 2);
       
   733 	cmd_addr_data[1] = (((op_write << addr_len) | addr) << 16) |
       
   734 		cpu_to_le16(data);
       
   735 	cmd_addr_data[2] = op_ewds << (addr_len - 2);
       
   736 
       
   737 	/* Bit-bang cmds to write word to eeprom */
       
   738 	for(j = 0; j < 3; j++) {
       
   739 
       
   740 		/* Chip select */
       
   741 		writeb(eecs | eesk, &nic->csr->eeprom_ctrl_lo);
       
   742 		e100_write_flush(nic); udelay(4);
       
   743 
       
   744 		for(i = 31; i >= 0; i--) {
       
   745 			ctrl = (cmd_addr_data[j] & (1 << i)) ?
       
   746 				eecs | eedi : eecs;
       
   747 			writeb(ctrl, &nic->csr->eeprom_ctrl_lo);
       
   748 			e100_write_flush(nic); udelay(4);
       
   749 
       
   750 			writeb(ctrl | eesk, &nic->csr->eeprom_ctrl_lo);
       
   751 			e100_write_flush(nic); udelay(4);
       
   752 		}
       
   753 		/* Wait 10 msec for cmd to complete */
       
   754 		msleep(10);
       
   755 
       
   756 		/* Chip deselect */
       
   757 		writeb(0, &nic->csr->eeprom_ctrl_lo);
       
   758 		e100_write_flush(nic); udelay(4);
       
   759 	}
       
   760 };
       
   761 
       
   762 /* General technique stolen from the eepro100 driver - very clever */
       
   763 static u16 e100_eeprom_read(struct nic *nic, u16 *addr_len, u16 addr)
       
   764 {
       
   765 	u32 cmd_addr_data;
       
   766 	u16 data = 0;
       
   767 	u8 ctrl;
       
   768 	int i;
       
   769 
       
   770 	cmd_addr_data = ((op_read << *addr_len) | addr) << 16;
       
   771 
       
   772 	/* Chip select */
       
   773 	writeb(eecs | eesk, &nic->csr->eeprom_ctrl_lo);
       
   774 	e100_write_flush(nic); udelay(4);
       
   775 
       
   776 	/* Bit-bang to read word from eeprom */
       
   777 	for(i = 31; i >= 0; i--) {
       
   778 		ctrl = (cmd_addr_data & (1 << i)) ? eecs | eedi : eecs;
       
   779 		writeb(ctrl, &nic->csr->eeprom_ctrl_lo);
       
   780 		e100_write_flush(nic); udelay(4);
       
   781 
       
   782 		writeb(ctrl | eesk, &nic->csr->eeprom_ctrl_lo);
       
   783 		e100_write_flush(nic); udelay(4);
       
   784 
       
   785 		/* Eeprom drives a dummy zero to EEDO after receiving
       
   786 		 * complete address.  Use this to adjust addr_len. */
       
   787 		ctrl = readb(&nic->csr->eeprom_ctrl_lo);
       
   788 		if(!(ctrl & eedo) && i > 16) {
       
   789 			*addr_len -= (i - 16);
       
   790 			i = 17;
       
   791 		}
       
   792 
       
   793 		data = (data << 1) | (ctrl & eedo ? 1 : 0);
       
   794 	}
       
   795 
       
   796 	/* Chip deselect */
       
   797 	writeb(0, &nic->csr->eeprom_ctrl_lo);
       
   798 	e100_write_flush(nic); udelay(4);
       
   799 
       
   800 	return le16_to_cpu(data);
       
   801 };
       
   802 
       
   803 /* Load entire EEPROM image into driver cache and validate checksum */
       
   804 static int e100_eeprom_load(struct nic *nic)
       
   805 {
       
   806 	u16 addr, addr_len = 8, checksum = 0;
       
   807 
       
   808 	/* Try reading with an 8-bit addr len to discover actual addr len */
       
   809 	e100_eeprom_read(nic, &addr_len, 0);
       
   810 	nic->eeprom_wc = 1 << addr_len;
       
   811 
       
   812 	for(addr = 0; addr < nic->eeprom_wc; addr++) {
       
   813 		nic->eeprom[addr] = e100_eeprom_read(nic, &addr_len, addr);
       
   814 		if(addr < nic->eeprom_wc - 1)
       
   815 			checksum += cpu_to_le16(nic->eeprom[addr]);
       
   816 	}
       
   817 
       
   818 	/* The checksum, stored in the last word, is calculated such that
       
   819 	 * the sum of words should be 0xBABA */
       
   820 	checksum = le16_to_cpu(0xBABA - checksum);
       
   821 	if(checksum != nic->eeprom[nic->eeprom_wc - 1]) {
       
   822 		DPRINTK(PROBE, ERR, "EEPROM corrupted\n");
       
   823 		if (!eeprom_bad_csum_allow)
       
   824 			return -EAGAIN;
       
   825 	}
       
   826 
       
   827 	return 0;
       
   828 }
       
   829 
       
   830 /* Save (portion of) driver EEPROM cache to device and update checksum */
       
   831 static int e100_eeprom_save(struct nic *nic, u16 start, u16 count)
       
   832 {
       
   833 	u16 addr, addr_len = 8, checksum = 0;
       
   834 
       
   835 	/* Try reading with an 8-bit addr len to discover actual addr len */
       
   836 	e100_eeprom_read(nic, &addr_len, 0);
       
   837 	nic->eeprom_wc = 1 << addr_len;
       
   838 
       
   839 	if(start + count >= nic->eeprom_wc)
       
   840 		return -EINVAL;
       
   841 
       
   842 	for(addr = start; addr < start + count; addr++)
       
   843 		e100_eeprom_write(nic, addr_len, addr, nic->eeprom[addr]);
       
   844 
       
   845 	/* The checksum, stored in the last word, is calculated such that
       
   846 	 * the sum of words should be 0xBABA */
       
   847 	for(addr = 0; addr < nic->eeprom_wc - 1; addr++)
       
   848 		checksum += cpu_to_le16(nic->eeprom[addr]);
       
   849 	nic->eeprom[nic->eeprom_wc - 1] = le16_to_cpu(0xBABA - checksum);
       
   850 	e100_eeprom_write(nic, addr_len, nic->eeprom_wc - 1,
       
   851 		nic->eeprom[nic->eeprom_wc - 1]);
       
   852 
       
   853 	return 0;
       
   854 }
       
   855 
       
   856 #define E100_WAIT_SCB_TIMEOUT 20000 /* we might have to wait 100ms!!! */
       
   857 #define E100_WAIT_SCB_FAST 20       /* delay like the old code */
       
   858 static int e100_exec_cmd(struct nic *nic, u8 cmd, dma_addr_t dma_addr)
       
   859 {
       
   860 	unsigned long flags = 0;
       
   861 	unsigned int i;
       
   862 	int err = 0;
       
   863 
       
   864     if (!nic->ethercat)
       
   865         spin_lock_irqsave(&nic->cmd_lock, flags);
       
   866 
       
   867 	/* Previous command is accepted when SCB clears */
       
   868 	for(i = 0; i < E100_WAIT_SCB_TIMEOUT; i++) {
       
   869 		if(likely(!readb(&nic->csr->scb.cmd_lo)))
       
   870 			break;
       
   871 		cpu_relax();
       
   872 		if(unlikely(i > E100_WAIT_SCB_FAST))
       
   873 			udelay(5);
       
   874 	}
       
   875 	if(unlikely(i == E100_WAIT_SCB_TIMEOUT)) {
       
   876 		err = -EAGAIN;
       
   877 		goto err_unlock;
       
   878 	}
       
   879 
       
   880 	if(unlikely(cmd != cuc_resume))
       
   881 		writel(dma_addr, &nic->csr->scb.gen_ptr);
       
   882 	writeb(cmd, &nic->csr->scb.cmd_lo);
       
   883 
       
   884 err_unlock:
       
   885     if (!nic->ethercat)
       
   886         spin_unlock_irqrestore(&nic->cmd_lock, flags);
       
   887 
       
   888 	return err;
       
   889 }
       
   890 
       
   891 static int e100_exec_cb(struct nic *nic, struct sk_buff *skb,
       
   892 	void (*cb_prepare)(struct nic *, struct cb *, struct sk_buff *))
       
   893 {
       
   894 	struct cb *cb;
       
   895 	unsigned long flags = 0;
       
   896 	int err = 0;
       
   897 
       
   898     if (!nic->ethercat)
       
   899         spin_lock_irqsave(&nic->cb_lock, flags);
       
   900 
       
   901 	if(unlikely(!nic->cbs_avail)) {
       
   902 		err = -ENOMEM;
       
   903 		goto err_unlock;
       
   904 	}
       
   905 
       
   906 	cb = nic->cb_to_use;
       
   907 	nic->cb_to_use = cb->next;
       
   908 	nic->cbs_avail--;
       
   909 	cb->skb = skb;
       
   910 
       
   911 	if(unlikely(!nic->cbs_avail))
       
   912 		err = -ENOSPC;
       
   913 
       
   914 	cb_prepare(nic, cb, skb);
       
   915 
       
   916 	/* Order is important otherwise we'll be in a race with h/w:
       
   917 	 * set S-bit in current first, then clear S-bit in previous. */
       
   918 	cb->command |= cpu_to_le16(cb_s);
       
   919 	wmb();
       
   920 	cb->prev->command &= cpu_to_le16(~cb_s);
       
   921 
       
   922 	while(nic->cb_to_send != nic->cb_to_use) {
       
   923 		if(unlikely(e100_exec_cmd(nic, nic->cuc_cmd,
       
   924 			nic->cb_to_send->dma_addr))) {
       
   925 			/* Ok, here's where things get sticky.  It's
       
   926 			 * possible that we can't schedule the command
       
   927 			 * because the controller is too busy, so
       
   928 			 * let's just queue the command and try again
       
   929 			 * when another command is scheduled. */
       
   930 			if(err == -ENOSPC) {
       
   931 				//request a reset
       
   932                 if (!nic->ethercat)
       
   933                     schedule_work(&nic->tx_timeout_task);
       
   934 			}
       
   935 			break;
       
   936 		} else {
       
   937 			nic->cuc_cmd = cuc_resume;
       
   938 			nic->cb_to_send = nic->cb_to_send->next;
       
   939 		}
       
   940 	}
       
   941 
       
   942 err_unlock:
       
   943     if (!nic->ethercat)
       
   944         spin_unlock_irqrestore(&nic->cb_lock, flags);
       
   945 
       
   946 	return err;
       
   947 }
       
   948 
       
   949 static u16 mdio_ctrl(struct nic *nic, u32 addr, u32 dir, u32 reg, u16 data)
       
   950 {
       
   951 	u32 data_out = 0;
       
   952 	unsigned int i;
       
   953 	unsigned long flags;
       
   954 
       
   955 
       
   956 	/*
       
   957 	 * Stratus87247: we shouldn't be writing the MDI control
       
   958 	 * register until the Ready bit shows True.  Also, since
       
   959 	 * manipulation of the MDI control registers is a multi-step
       
   960 	 * procedure it should be done under lock.
       
   961 	 */
       
   962 	spin_lock_irqsave(&nic->mdio_lock, flags);
       
   963 	for (i = 100; i; --i) {
       
   964 		if (readl(&nic->csr->mdi_ctrl) & mdi_ready)
       
   965 			break;
       
   966 		udelay(20);
       
   967 	}
       
   968 	if (unlikely(!i)) {
       
   969 		printk("e100.mdio_ctrl(%s) won't go Ready\n",
       
   970 			nic->netdev->name );
       
   971 		spin_unlock_irqrestore(&nic->mdio_lock, flags);
       
   972 		return 0;		/* No way to indicate timeout error */
       
   973 	}
       
   974 	writel((reg << 16) | (addr << 21) | dir | data, &nic->csr->mdi_ctrl);
       
   975 
       
   976 	for (i = 0; i < 100; i++) {
       
   977 		udelay(20);
       
   978 		if ((data_out = readl(&nic->csr->mdi_ctrl)) & mdi_ready)
       
   979 			break;
       
   980 	}
       
   981 	spin_unlock_irqrestore(&nic->mdio_lock, flags);
       
   982 	DPRINTK(HW, DEBUG,
       
   983 		"%s:addr=%d, reg=%d, data_in=0x%04X, data_out=0x%04X\n",
       
   984 		dir == mdi_read ? "READ" : "WRITE", addr, reg, data, data_out);
       
   985 	return (u16)data_out;
       
   986 }
       
   987 
       
   988 static int mdio_read(struct net_device *netdev, int addr, int reg)
       
   989 {
       
   990 	return mdio_ctrl(netdev_priv(netdev), addr, mdi_read, reg, 0);
       
   991 }
       
   992 
       
   993 static void mdio_write(struct net_device *netdev, int addr, int reg, int data)
       
   994 {
       
   995 	mdio_ctrl(netdev_priv(netdev), addr, mdi_write, reg, data);
       
   996 }
       
   997 
       
   998 static void e100_get_defaults(struct nic *nic)
       
   999 {
       
  1000 	struct param_range rfds = { .min = 16, .max = 256, .count = 256 };
       
  1001 	struct param_range cbs  = { .min = 64, .max = 256, .count = 128 };
       
  1002 
       
  1003 	pci_read_config_byte(nic->pdev, PCI_REVISION_ID, &nic->rev_id);
       
  1004 	/* MAC type is encoded as rev ID; exception: ICH is treated as 82559 */
       
  1005 	nic->mac = (nic->flags & ich) ? mac_82559_D101M : nic->rev_id;
       
  1006 	if(nic->mac == mac_unknown)
       
  1007 		nic->mac = mac_82557_D100_A;
       
  1008 
       
  1009 	nic->params.rfds = rfds;
       
  1010 	nic->params.cbs = cbs;
       
  1011 
       
  1012 	/* Quadwords to DMA into FIFO before starting frame transmit */
       
  1013 	nic->tx_threshold = 0xE0;
       
  1014 
       
  1015 	/* no interrupt for every tx completion, delay = 256us if not 557*/
       
  1016 	nic->tx_command = cpu_to_le16(cb_tx | cb_tx_sf |
       
  1017 		((nic->mac >= mac_82558_D101_A4) ? cb_cid : cb_i));
       
  1018 
       
  1019 	/* Template for a freshly allocated RFD */
       
  1020 	nic->blank_rfd.command = cpu_to_le16(cb_el);
       
  1021 	nic->blank_rfd.rbd = 0xFFFFFFFF;
       
  1022 	nic->blank_rfd.size = cpu_to_le16(VLAN_ETH_FRAME_LEN);
       
  1023 
       
  1024 	/* MII setup */
       
  1025 	nic->mii.phy_id_mask = 0x1F;
       
  1026 	nic->mii.reg_num_mask = 0x1F;
       
  1027 	nic->mii.dev = nic->netdev;
       
  1028 	nic->mii.mdio_read = mdio_read;
       
  1029 	nic->mii.mdio_write = mdio_write;
       
  1030 }
       
  1031 
       
  1032 static void e100_configure(struct nic *nic, struct cb *cb, struct sk_buff *skb)
       
  1033 {
       
  1034 	struct config *config = &cb->u.config;
       
  1035 	u8 *c = (u8 *)config;
       
  1036 
       
  1037 	cb->command = cpu_to_le16(cb_config);
       
  1038 
       
  1039 	memset(config, 0, sizeof(struct config));
       
  1040 
       
  1041 	config->byte_count = 0x16;		/* bytes in this struct */
       
  1042 	config->rx_fifo_limit = 0x8;		/* bytes in FIFO before DMA */
       
  1043 	config->direct_rx_dma = 0x1;		/* reserved */
       
  1044 	config->standard_tcb = 0x1;		/* 1=standard, 0=extended */
       
  1045 	config->standard_stat_counter = 0x1;	/* 1=standard, 0=extended */
       
  1046 	config->rx_discard_short_frames = 0x1;	/* 1=discard, 0=pass */
       
  1047 	config->tx_underrun_retry = 0x3;	/* # of underrun retries */
       
  1048 	config->mii_mode = 0x1;			/* 1=MII mode, 0=503 mode */
       
  1049 	config->pad10 = 0x6;
       
  1050 	config->no_source_addr_insertion = 0x1;	/* 1=no, 0=yes */
       
  1051 	config->preamble_length = 0x2;		/* 0=1, 1=3, 2=7, 3=15 bytes */
       
  1052 	config->ifs = 0x6;			/* x16 = inter frame spacing */
       
  1053 	config->ip_addr_hi = 0xF2;		/* ARP IP filter - not used */
       
  1054 	config->pad15_1 = 0x1;
       
  1055 	config->pad15_2 = 0x1;
       
  1056 	config->crs_or_cdt = 0x0;		/* 0=CRS only, 1=CRS or CDT */
       
  1057 	config->fc_delay_hi = 0x40;		/* time delay for fc frame */
       
  1058 	config->tx_padding = 0x1;		/* 1=pad short frames */
       
  1059 	config->fc_priority_threshold = 0x7;	/* 7=priority fc disabled */
       
  1060 	config->pad18 = 0x1;
       
  1061 	config->full_duplex_pin = 0x1;		/* 1=examine FDX# pin */
       
  1062 	config->pad20_1 = 0x1F;
       
  1063 	config->fc_priority_location = 0x1;	/* 1=byte#31, 0=byte#19 */
       
  1064 	config->pad21_1 = 0x5;
       
  1065 
       
  1066 	config->adaptive_ifs = nic->adaptive_ifs;
       
  1067 	config->loopback = nic->loopback;
       
  1068 
       
  1069 	if(nic->mii.force_media && nic->mii.full_duplex)
       
  1070 		config->full_duplex_force = 0x1;	/* 1=force, 0=auto */
       
  1071 
       
  1072 	if(nic->flags & promiscuous || nic->loopback) {
       
  1073 		config->rx_save_bad_frames = 0x1;	/* 1=save, 0=discard */
       
  1074 		config->rx_discard_short_frames = 0x0;	/* 1=discard, 0=save */
       
  1075 		config->promiscuous_mode = 0x1;		/* 1=on, 0=off */
       
  1076 	}
       
  1077 
       
  1078 	if(nic->flags & multicast_all)
       
  1079 		config->multicast_all = 0x1;		/* 1=accept, 0=no */
       
  1080 
       
  1081 	/* disable WoL when up */
       
  1082 	if (nic->ethercat ||
       
  1083             (netif_running(nic->netdev) || !(nic->flags & wol_magic)))
       
  1084 		config->magic_packet_disable = 0x1;	/* 1=off, 0=on */
       
  1085 
       
  1086 	if(nic->mac >= mac_82558_D101_A4) {
       
  1087 		config->fc_disable = 0x1;	/* 1=Tx fc off, 0=Tx fc on */
       
  1088 		config->mwi_enable = 0x1;	/* 1=enable, 0=disable */
       
  1089 		config->standard_tcb = 0x0;	/* 1=standard, 0=extended */
       
  1090 		config->rx_long_ok = 0x1;	/* 1=VLANs ok, 0=standard */
       
  1091 		if(nic->mac >= mac_82559_D101M)
       
  1092 			config->tno_intr = 0x1;		/* TCO stats enable */
       
  1093 		else
       
  1094 			config->standard_stat_counter = 0x0;
       
  1095 	}
       
  1096 
       
  1097 	DPRINTK(HW, DEBUG, "[00-07]=%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X\n",
       
  1098 		c[0], c[1], c[2], c[3], c[4], c[5], c[6], c[7]);
       
  1099 	DPRINTK(HW, DEBUG, "[08-15]=%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X\n",
       
  1100 		c[8], c[9], c[10], c[11], c[12], c[13], c[14], c[15]);
       
  1101 	DPRINTK(HW, DEBUG, "[16-23]=%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X\n",
       
  1102 		c[16], c[17], c[18], c[19], c[20], c[21], c[22], c[23]);
       
  1103 }
       
  1104 
       
  1105 /********************************************************/
       
  1106 /*  Micro code for 8086:1229 Rev 8                      */
       
  1107 /********************************************************/
       
  1108 
       
  1109 /*  Parameter values for the D101M B-step  */
       
  1110 #define D101M_CPUSAVER_TIMER_DWORD		78
       
  1111 #define D101M_CPUSAVER_BUNDLE_DWORD		65
       
  1112 #define D101M_CPUSAVER_MIN_SIZE_DWORD		126
       
  1113 
       
  1114 #define D101M_B_RCVBUNDLE_UCODE \
       
  1115 {\
       
  1116 0x00550215, 0xFFFF0437, 0xFFFFFFFF, 0x06A70789, 0xFFFFFFFF, 0x0558FFFF, \
       
  1117 0x000C0001, 0x00101312, 0x000C0008, 0x00380216, \
       
  1118 0x0010009C, 0x00204056, 0x002380CC, 0x00380056, \
       
  1119 0x0010009C, 0x00244C0B, 0x00000800, 0x00124818, \
       
  1120 0x00380438, 0x00000000, 0x00140000, 0x00380555, \
       
  1121 0x00308000, 0x00100662, 0x00100561, 0x000E0408, \
       
  1122 0x00134861, 0x000C0002, 0x00103093, 0x00308000, \
       
  1123 0x00100624, 0x00100561, 0x000E0408, 0x00100861, \
       
  1124 0x000C007E, 0x00222C21, 0x000C0002, 0x00103093, \
       
  1125 0x00380C7A, 0x00080000, 0x00103090, 0x00380C7A, \
       
  1126 0x00000000, 0x00000000, 0x00000000, 0x00000000, \
       
  1127 0x0010009C, 0x00244C2D, 0x00010004, 0x00041000, \
       
  1128 0x003A0437, 0x00044010, 0x0038078A, 0x00000000, \
       
  1129 0x00100099, 0x00206C7A, 0x0010009C, 0x00244C48, \
       
  1130 0x00130824, 0x000C0001, 0x00101213, 0x00260C75, \
       
  1131 0x00041000, 0x00010004, 0x00130826, 0x000C0006, \
       
  1132 0x002206A8, 0x0013C926, 0x00101313, 0x003806A8, \
       
  1133 0x00000000, 0x00000000, 0x00000000, 0x00000000, \
       
  1134 0x00000000, 0x00000000, 0x00000000, 0x00000000, \
       
  1135 0x00080600, 0x00101B10, 0x00050004, 0x00100826, \
       
  1136 0x00101210, 0x00380C34, 0x00000000, 0x00000000, \
       
  1137 0x0021155B, 0x00100099, 0x00206559, 0x0010009C, \
       
  1138 0x00244559, 0x00130836, 0x000C0000, 0x00220C62, \
       
  1139 0x000C0001, 0x00101B13, 0x00229C0E, 0x00210C0E, \
       
  1140 0x00226C0E, 0x00216C0E, 0x0022FC0E, 0x00215C0E, \
       
  1141 0x00214C0E, 0x00380555, 0x00010004, 0x00041000, \
       
  1142 0x00278C67, 0x00040800, 0x00018100, 0x003A0437, \
       
  1143 0x00130826, 0x000C0001, 0x00220559, 0x00101313, \
       
  1144 0x00380559, 0x00000000, 0x00000000, 0x00000000, \
       
  1145 0x00000000, 0x00000000, 0x00000000, 0x00000000, \
       
  1146 0x00000000, 0x00130831, 0x0010090B, 0x00124813, \
       
  1147 0x000CFF80, 0x002606AB, 0x00041000, 0x00010004, \
       
  1148 0x003806A8, 0x00000000, 0x00000000, 0x00000000, \
       
  1149 }
       
  1150 
       
  1151 /********************************************************/
       
  1152 /*  Micro code for 8086:1229 Rev 9                      */
       
  1153 /********************************************************/
       
  1154 
       
  1155 /*  Parameter values for the D101S  */
       
  1156 #define D101S_CPUSAVER_TIMER_DWORD		78
       
  1157 #define D101S_CPUSAVER_BUNDLE_DWORD		67
       
  1158 #define D101S_CPUSAVER_MIN_SIZE_DWORD		128
       
  1159 
       
  1160 #define D101S_RCVBUNDLE_UCODE \
       
  1161 {\
       
  1162 0x00550242, 0xFFFF047E, 0xFFFFFFFF, 0x06FF0818, 0xFFFFFFFF, 0x05A6FFFF, \
       
  1163 0x000C0001, 0x00101312, 0x000C0008, 0x00380243, \
       
  1164 0x0010009C, 0x00204056, 0x002380D0, 0x00380056, \
       
  1165 0x0010009C, 0x00244F8B, 0x00000800, 0x00124818, \
       
  1166 0x0038047F, 0x00000000, 0x00140000, 0x003805A3, \
       
  1167 0x00308000, 0x00100610, 0x00100561, 0x000E0408, \
       
  1168 0x00134861, 0x000C0002, 0x00103093, 0x00308000, \
       
  1169 0x00100624, 0x00100561, 0x000E0408, 0x00100861, \
       
  1170 0x000C007E, 0x00222FA1, 0x000C0002, 0x00103093, \
       
  1171 0x00380F90, 0x00080000, 0x00103090, 0x00380F90, \
       
  1172 0x00000000, 0x00000000, 0x00000000, 0x00000000, \
       
  1173 0x0010009C, 0x00244FAD, 0x00010004, 0x00041000, \
       
  1174 0x003A047E, 0x00044010, 0x00380819, 0x00000000, \
       
  1175 0x00100099, 0x00206FFD, 0x0010009A, 0x0020AFFD, \
       
  1176 0x0010009C, 0x00244FC8, 0x00130824, 0x000C0001, \
       
  1177 0x00101213, 0x00260FF7, 0x00041000, 0x00010004, \
       
  1178 0x00130826, 0x000C0006, 0x00220700, 0x0013C926, \
       
  1179 0x00101313, 0x00380700, 0x00000000, 0x00000000, \
       
  1180 0x00000000, 0x00000000, 0x00000000, 0x00000000, \
       
  1181 0x00080600, 0x00101B10, 0x00050004, 0x00100826, \
       
  1182 0x00101210, 0x00380FB6, 0x00000000, 0x00000000, \
       
  1183 0x002115A9, 0x00100099, 0x002065A7, 0x0010009A, \
       
  1184 0x0020A5A7, 0x0010009C, 0x002445A7, 0x00130836, \
       
  1185 0x000C0000, 0x00220FE4, 0x000C0001, 0x00101B13, \
       
  1186 0x00229F8E, 0x00210F8E, 0x00226F8E, 0x00216F8E, \
       
  1187 0x0022FF8E, 0x00215F8E, 0x00214F8E, 0x003805A3, \
       
  1188 0x00010004, 0x00041000, 0x00278FE9, 0x00040800, \
       
  1189 0x00018100, 0x003A047E, 0x00130826, 0x000C0001, \
       
  1190 0x002205A7, 0x00101313, 0x003805A7, 0x00000000, \
       
  1191 0x00000000, 0x00000000, 0x00000000, 0x00000000, \
       
  1192 0x00000000, 0x00000000, 0x00000000, 0x00130831, \
       
  1193 0x0010090B, 0x00124813, 0x000CFF80, 0x00260703, \
       
  1194 0x00041000, 0x00010004, 0x00380700  \
       
  1195 }
       
  1196 
       
  1197 /********************************************************/
       
  1198 /*  Micro code for the 8086:1229 Rev F/10               */
       
  1199 /********************************************************/
       
  1200 
       
  1201 /*  Parameter values for the D102 E-step  */
       
  1202 #define D102_E_CPUSAVER_TIMER_DWORD		42
       
  1203 #define D102_E_CPUSAVER_BUNDLE_DWORD		54
       
  1204 #define D102_E_CPUSAVER_MIN_SIZE_DWORD		46
       
  1205 
       
  1206 #define     D102_E_RCVBUNDLE_UCODE \
       
  1207 {\
       
  1208 0x007D028F, 0x0E4204F9, 0x14ED0C85, 0x14FA14E9, 0x0EF70E36, 0x1FFF1FFF, \
       
  1209 0x00E014B9, 0x00000000, 0x00000000, 0x00000000, \
       
  1210 0x00E014BD, 0x00000000, 0x00000000, 0x00000000, \
       
  1211 0x00E014D5, 0x00000000, 0x00000000, 0x00000000, \
       
  1212 0x00000000, 0x00000000, 0x00000000, 0x00000000, \
       
  1213 0x00E014C1, 0x00000000, 0x00000000, 0x00000000, \
       
  1214 0x00000000, 0x00000000, 0x00000000, 0x00000000, \
       
  1215 0x00000000, 0x00000000, 0x00000000, 0x00000000, \
       
  1216 0x00000000, 0x00000000, 0x00000000, 0x00000000, \
       
  1217 0x00E014C8, 0x00000000, 0x00000000, 0x00000000, \
       
  1218 0x00200600, 0x00E014EE, 0x00000000, 0x00000000, \
       
  1219 0x0030FF80, 0x00940E46, 0x00038200, 0x00102000, \
       
  1220 0x00E00E43, 0x00000000, 0x00000000, 0x00000000, \
       
  1221 0x00300006, 0x00E014FB, 0x00000000, 0x00000000, \
       
  1222 0x00000000, 0x00000000, 0x00000000, 0x00000000, \
       
  1223 0x00000000, 0x00000000, 0x00000000, 0x00000000, \
       
  1224 0x00000000, 0x00000000, 0x00000000, 0x00000000, \
       
  1225 0x00906E41, 0x00800E3C, 0x00E00E39, 0x00000000, \
       
  1226 0x00906EFD, 0x00900EFD, 0x00E00EF8, 0x00000000, \
       
  1227 0x00000000, 0x00000000, 0x00000000, 0x00000000, \
       
  1228 0x00000000, 0x00000000, 0x00000000, 0x00000000, \
       
  1229 0x00000000, 0x00000000, 0x00000000, 0x00000000, \
       
  1230 0x00000000, 0x00000000, 0x00000000, 0x00000000, \
       
  1231 0x00000000, 0x00000000, 0x00000000, 0x00000000, \
       
  1232 0x00000000, 0x00000000, 0x00000000, 0x00000000, \
       
  1233 0x00000000, 0x00000000, 0x00000000, 0x00000000, \
       
  1234 0x00000000, 0x00000000, 0x00000000, 0x00000000, \
       
  1235 0x00000000, 0x00000000, 0x00000000, 0x00000000, \
       
  1236 0x00000000, 0x00000000, 0x00000000, 0x00000000, \
       
  1237 0x00000000, 0x00000000, 0x00000000, 0x00000000, \
       
  1238 0x00000000, 0x00000000, 0x00000000, 0x00000000, \
       
  1239 0x00000000, 0x00000000, 0x00000000, 0x00000000, \
       
  1240 0x00000000, 0x00000000, 0x00000000, 0x00000000, \
       
  1241 }
       
  1242 
       
  1243 static void e100_setup_ucode(struct nic *nic, struct cb *cb, struct sk_buff *skb)
       
  1244 {
       
  1245 /* *INDENT-OFF* */
       
  1246 	static struct {
       
  1247 		u32 ucode[UCODE_SIZE + 1];
       
  1248 		u8 mac;
       
  1249 		u8 timer_dword;
       
  1250 		u8 bundle_dword;
       
  1251 		u8 min_size_dword;
       
  1252 	} ucode_opts[] = {
       
  1253 		{ D101M_B_RCVBUNDLE_UCODE,
       
  1254 		  mac_82559_D101M,
       
  1255 		  D101M_CPUSAVER_TIMER_DWORD,
       
  1256 		  D101M_CPUSAVER_BUNDLE_DWORD,
       
  1257 		  D101M_CPUSAVER_MIN_SIZE_DWORD },
       
  1258 		{ D101S_RCVBUNDLE_UCODE,
       
  1259 		  mac_82559_D101S,
       
  1260 		  D101S_CPUSAVER_TIMER_DWORD,
       
  1261 		  D101S_CPUSAVER_BUNDLE_DWORD,
       
  1262 		  D101S_CPUSAVER_MIN_SIZE_DWORD },
       
  1263 		{ D102_E_RCVBUNDLE_UCODE,
       
  1264 		  mac_82551_F,
       
  1265 		  D102_E_CPUSAVER_TIMER_DWORD,
       
  1266 		  D102_E_CPUSAVER_BUNDLE_DWORD,
       
  1267 		  D102_E_CPUSAVER_MIN_SIZE_DWORD },
       
  1268 		{ D102_E_RCVBUNDLE_UCODE,
       
  1269 		  mac_82551_10,
       
  1270 		  D102_E_CPUSAVER_TIMER_DWORD,
       
  1271 		  D102_E_CPUSAVER_BUNDLE_DWORD,
       
  1272 		  D102_E_CPUSAVER_MIN_SIZE_DWORD },
       
  1273 		{ {0}, 0, 0, 0, 0}
       
  1274 	}, *opts;
       
  1275 /* *INDENT-ON* */
       
  1276 
       
  1277 /*************************************************************************
       
  1278 *  CPUSaver parameters
       
  1279 *
       
  1280 *  All CPUSaver parameters are 16-bit literals that are part of a
       
  1281 *  "move immediate value" instruction.  By changing the value of
       
  1282 *  the literal in the instruction before the code is loaded, the
       
  1283 *  driver can change the algorithm.
       
  1284 *
       
  1285 *  INTDELAY - This loads the dead-man timer with its inital value.
       
  1286 *    When this timer expires the interrupt is asserted, and the
       
  1287 *    timer is reset each time a new packet is received.  (see
       
  1288 *    BUNDLEMAX below to set the limit on number of chained packets)
       
  1289 *    The current default is 0x600 or 1536.  Experiments show that
       
  1290 *    the value should probably stay within the 0x200 - 0x1000.
       
  1291 *
       
  1292 *  BUNDLEMAX -
       
  1293 *    This sets the maximum number of frames that will be bundled.  In
       
  1294 *    some situations, such as the TCP windowing algorithm, it may be
       
  1295 *    better to limit the growth of the bundle size than let it go as
       
  1296 *    high as it can, because that could cause too much added latency.
       
  1297 *    The default is six, because this is the number of packets in the
       
  1298 *    default TCP window size.  A value of 1 would make CPUSaver indicate
       
  1299 *    an interrupt for every frame received.  If you do not want to put
       
  1300 *    a limit on the bundle size, set this value to xFFFF.
       
  1301 *
       
  1302 *  BUNDLESMALL -
       
  1303 *    This contains a bit-mask describing the minimum size frame that
       
  1304 *    will be bundled.  The default masks the lower 7 bits, which means
       
  1305 *    that any frame less than 128 bytes in length will not be bundled,
       
  1306 *    but will instead immediately generate an interrupt.  This does
       
  1307 *    not affect the current bundle in any way.  Any frame that is 128
       
  1308 *    bytes or large will be bundled normally.  This feature is meant
       
  1309 *    to provide immediate indication of ACK frames in a TCP environment.
       
  1310 *    Customers were seeing poor performance when a machine with CPUSaver
       
  1311 *    enabled was sending but not receiving.  The delay introduced when
       
  1312 *    the ACKs were received was enough to reduce total throughput, because
       
  1313 *    the sender would sit idle until the ACK was finally seen.
       
  1314 *
       
  1315 *    The current default is 0xFF80, which masks out the lower 7 bits.
       
  1316 *    This means that any frame which is x7F (127) bytes or smaller
       
  1317 *    will cause an immediate interrupt.  Because this value must be a
       
  1318 *    bit mask, there are only a few valid values that can be used.  To
       
  1319 *    turn this feature off, the driver can write the value xFFFF to the
       
  1320 *    lower word of this instruction (in the same way that the other
       
  1321 *    parameters are used).  Likewise, a value of 0xF800 (2047) would
       
  1322 *    cause an interrupt to be generated for every frame, because all
       
  1323 *    standard Ethernet frames are <= 2047 bytes in length.
       
  1324 *************************************************************************/
       
  1325 
       
  1326 /* if you wish to disable the ucode functionality, while maintaining the
       
  1327  * workarounds it provides, set the following defines to:
       
  1328  * BUNDLESMALL 0
       
  1329  * BUNDLEMAX 1
       
  1330  * INTDELAY 1
       
  1331  */
       
  1332 #define BUNDLESMALL 1
       
  1333 #define BUNDLEMAX (u16)6
       
  1334 #define INTDELAY (u16)1536 /* 0x600 */
       
  1335 
       
  1336 	/* do not load u-code for ICH devices */
       
  1337 	if (nic->flags & ich)
       
  1338 		goto noloaducode;
       
  1339 
       
  1340 	/* Search for ucode match against h/w rev_id */
       
  1341 	for (opts = ucode_opts; opts->mac; opts++) {
       
  1342 		int i;
       
  1343 		u32 *ucode = opts->ucode;
       
  1344 		if (nic->mac != opts->mac)
       
  1345 			continue;
       
  1346 
       
  1347 		/* Insert user-tunable settings */
       
  1348 		ucode[opts->timer_dword] &= 0xFFFF0000;
       
  1349 		ucode[opts->timer_dword] |= INTDELAY;
       
  1350 		ucode[opts->bundle_dword] &= 0xFFFF0000;
       
  1351 		ucode[opts->bundle_dword] |= BUNDLEMAX;
       
  1352 		ucode[opts->min_size_dword] &= 0xFFFF0000;
       
  1353 		ucode[opts->min_size_dword] |= (BUNDLESMALL) ? 0xFFFF : 0xFF80;
       
  1354 
       
  1355 		for (i = 0; i < UCODE_SIZE; i++)
       
  1356 			cb->u.ucode[i] = cpu_to_le32(ucode[i]);
       
  1357 		cb->command = cpu_to_le16(cb_ucode | cb_el);
       
  1358 		return;
       
  1359 	}
       
  1360 
       
  1361 noloaducode:
       
  1362 	cb->command = cpu_to_le16(cb_nop | cb_el);
       
  1363 }
       
  1364 
       
  1365 static inline int e100_exec_cb_wait(struct nic *nic, struct sk_buff *skb,
       
  1366 	void (*cb_prepare)(struct nic *, struct cb *, struct sk_buff *))
       
  1367 {
       
  1368 	int err = 0, counter = 50;
       
  1369 	struct cb *cb = nic->cb_to_clean;
       
  1370 
       
  1371 	if ((err = e100_exec_cb(nic, NULL, e100_setup_ucode)))
       
  1372 		DPRINTK(PROBE,ERR, "ucode cmd failed with error %d\n", err);
       
  1373 
       
  1374 	/* must restart cuc */
       
  1375 	nic->cuc_cmd = cuc_start;
       
  1376 
       
  1377 	/* wait for completion */
       
  1378 	e100_write_flush(nic);
       
  1379 	udelay(10);
       
  1380 
       
  1381 	/* wait for possibly (ouch) 500ms */
       
  1382 	while (!(cb->status & cpu_to_le16(cb_complete))) {
       
  1383 		msleep(10);
       
  1384 		if (!--counter) break;
       
  1385 	}
       
  1386 
       
  1387 	/* ack any interupts, something could have been set */
       
  1388 	writeb(~0, &nic->csr->scb.stat_ack);
       
  1389 
       
  1390 	/* if the command failed, or is not OK, notify and return */
       
  1391 	if (!counter || !(cb->status & cpu_to_le16(cb_ok))) {
       
  1392 		DPRINTK(PROBE,ERR, "ucode load failed\n");
       
  1393 		err = -EPERM;
       
  1394 	}
       
  1395 
       
  1396 	return err;
       
  1397 }
       
  1398 
       
  1399 static void e100_setup_iaaddr(struct nic *nic, struct cb *cb,
       
  1400 	struct sk_buff *skb)
       
  1401 {
       
  1402 	cb->command = cpu_to_le16(cb_iaaddr);
       
  1403 	memcpy(cb->u.iaaddr, nic->netdev->dev_addr, ETH_ALEN);
       
  1404 }
       
  1405 
       
  1406 static void e100_dump(struct nic *nic, struct cb *cb, struct sk_buff *skb)
       
  1407 {
       
  1408 	cb->command = cpu_to_le16(cb_dump);
       
  1409 	cb->u.dump_buffer_addr = cpu_to_le32(nic->dma_addr +
       
  1410 		offsetof(struct mem, dump_buf));
       
  1411 }
       
  1412 
       
  1413 #define NCONFIG_AUTO_SWITCH	0x0080
       
  1414 #define MII_NSC_CONG		MII_RESV1
       
  1415 #define NSC_CONG_ENABLE		0x0100
       
  1416 #define NSC_CONG_TXREADY	0x0400
       
  1417 #define ADVERTISE_FC_SUPPORTED	0x0400
       
  1418 static int e100_phy_init(struct nic *nic)
       
  1419 {
       
  1420 	struct net_device *netdev = nic->netdev;
       
  1421 	u32 addr;
       
  1422 	u16 bmcr, stat, id_lo, id_hi, cong;
       
  1423 
       
  1424 	/* Discover phy addr by searching addrs in order {1,0,2,..., 31} */
       
  1425 	for(addr = 0; addr < 32; addr++) {
       
  1426 		nic->mii.phy_id = (addr == 0) ? 1 : (addr == 1) ? 0 : addr;
       
  1427 		bmcr = mdio_read(netdev, nic->mii.phy_id, MII_BMCR);
       
  1428 		stat = mdio_read(netdev, nic->mii.phy_id, MII_BMSR);
       
  1429 		stat = mdio_read(netdev, nic->mii.phy_id, MII_BMSR);
       
  1430 		if(!((bmcr == 0xFFFF) || ((stat == 0) && (bmcr == 0))))
       
  1431 			break;
       
  1432 	}
       
  1433 	DPRINTK(HW, DEBUG, "phy_addr = %d\n", nic->mii.phy_id);
       
  1434 	if(addr == 32)
       
  1435 		return -EAGAIN;
       
  1436 
       
  1437 	/* Selected the phy and isolate the rest */
       
  1438 	for(addr = 0; addr < 32; addr++) {
       
  1439 		if(addr != nic->mii.phy_id) {
       
  1440 			mdio_write(netdev, addr, MII_BMCR, BMCR_ISOLATE);
       
  1441 		} else {
       
  1442 			bmcr = mdio_read(netdev, addr, MII_BMCR);
       
  1443 			mdio_write(netdev, addr, MII_BMCR,
       
  1444 				bmcr & ~BMCR_ISOLATE);
       
  1445 		}
       
  1446 	}
       
  1447 
       
  1448 	/* Get phy ID */
       
  1449 	id_lo = mdio_read(netdev, nic->mii.phy_id, MII_PHYSID1);
       
  1450 	id_hi = mdio_read(netdev, nic->mii.phy_id, MII_PHYSID2);
       
  1451 	nic->phy = (u32)id_hi << 16 | (u32)id_lo;
       
  1452 	DPRINTK(HW, DEBUG, "phy ID = 0x%08X\n", nic->phy);
       
  1453 
       
  1454 	/* Handle National tx phys */
       
  1455 #define NCS_PHY_MODEL_MASK	0xFFF0FFFF
       
  1456 	if((nic->phy & NCS_PHY_MODEL_MASK) == phy_nsc_tx) {
       
  1457 		/* Disable congestion control */
       
  1458 		cong = mdio_read(netdev, nic->mii.phy_id, MII_NSC_CONG);
       
  1459 		cong |= NSC_CONG_TXREADY;
       
  1460 		cong &= ~NSC_CONG_ENABLE;
       
  1461 		mdio_write(netdev, nic->mii.phy_id, MII_NSC_CONG, cong);
       
  1462 	}
       
  1463 
       
  1464 	if((nic->mac >= mac_82550_D102) || ((nic->flags & ich) &&
       
  1465 	   (mdio_read(netdev, nic->mii.phy_id, MII_TPISTATUS) & 0x8000))) {
       
  1466 		/* enable/disable MDI/MDI-X auto-switching.
       
  1467 		   MDI/MDI-X auto-switching is disabled for 82551ER/QM chips */
       
  1468 		if((nic->mac == mac_82551_E) || (nic->mac == mac_82551_F) ||
       
  1469 		   (nic->mac == mac_82551_10) || (nic->mii.force_media) ||
       
  1470 		   !(nic->eeprom[eeprom_cnfg_mdix] & eeprom_mdix_enabled))
       
  1471 			mdio_write(netdev, nic->mii.phy_id, MII_NCONFIG, 0);
       
  1472 		else
       
  1473 			mdio_write(netdev, nic->mii.phy_id, MII_NCONFIG, NCONFIG_AUTO_SWITCH);
       
  1474 	}
       
  1475 
       
  1476 	return 0;
       
  1477 }
       
  1478 
       
  1479 static int e100_hw_init(struct nic *nic)
       
  1480 {
       
  1481 	int err;
       
  1482 
       
  1483 	e100_hw_reset(nic);
       
  1484 
       
  1485 	DPRINTK(HW, ERR, "e100_hw_init\n");
       
  1486 	if(!in_interrupt() && (err = e100_self_test(nic)))
       
  1487 		return err;
       
  1488 
       
  1489 	if((err = e100_phy_init(nic)))
       
  1490 		return err;
       
  1491 	if((err = e100_exec_cmd(nic, cuc_load_base, 0)))
       
  1492 		return err;
       
  1493 	if((err = e100_exec_cmd(nic, ruc_load_base, 0)))
       
  1494 		return err;
       
  1495 	if ((err = e100_exec_cb_wait(nic, NULL, e100_setup_ucode)))
       
  1496 		return err;
       
  1497 	if((err = e100_exec_cb(nic, NULL, e100_configure)))
       
  1498 		return err;
       
  1499 	if((err = e100_exec_cb(nic, NULL, e100_setup_iaaddr)))
       
  1500 		return err;
       
  1501 	if((err = e100_exec_cmd(nic, cuc_dump_addr,
       
  1502 		nic->dma_addr + offsetof(struct mem, stats))))
       
  1503 		return err;
       
  1504 	if((err = e100_exec_cmd(nic, cuc_dump_reset, 0)))
       
  1505 		return err;
       
  1506 
       
  1507 	e100_disable_irq(nic);
       
  1508 
       
  1509 	return 0;
       
  1510 }
       
  1511 
       
  1512 static void e100_multi(struct nic *nic, struct cb *cb, struct sk_buff *skb)
       
  1513 {
       
  1514 	struct net_device *netdev = nic->netdev;
       
  1515 	struct dev_mc_list *list = netdev->mc_list;
       
  1516 	u16 i, count = min(netdev->mc_count, E100_MAX_MULTICAST_ADDRS);
       
  1517 
       
  1518 	cb->command = cpu_to_le16(cb_multi);
       
  1519 	cb->u.multi.count = cpu_to_le16(count * ETH_ALEN);
       
  1520 	for(i = 0; list && i < count; i++, list = list->next)
       
  1521 		memcpy(&cb->u.multi.addr[i*ETH_ALEN], &list->dmi_addr,
       
  1522 			ETH_ALEN);
       
  1523 }
       
  1524 
       
  1525 static void e100_set_multicast_list(struct net_device *netdev)
       
  1526 {
       
  1527 	struct nic *nic = netdev_priv(netdev);
       
  1528 
       
  1529 	DPRINTK(HW, DEBUG, "mc_count=%d, flags=0x%04X\n",
       
  1530 		netdev->mc_count, netdev->flags);
       
  1531 
       
  1532 	if(netdev->flags & IFF_PROMISC)
       
  1533 		nic->flags |= promiscuous;
       
  1534 	else
       
  1535 		nic->flags &= ~promiscuous;
       
  1536 
       
  1537 	if(netdev->flags & IFF_ALLMULTI ||
       
  1538 		netdev->mc_count > E100_MAX_MULTICAST_ADDRS)
       
  1539 		nic->flags |= multicast_all;
       
  1540 	else
       
  1541 		nic->flags &= ~multicast_all;
       
  1542 
       
  1543 	e100_exec_cb(nic, NULL, e100_configure);
       
  1544 	e100_exec_cb(nic, NULL, e100_multi);
       
  1545 }
       
  1546 
       
  1547 static void e100_update_stats(struct nic *nic)
       
  1548 {
       
  1549 	struct net_device_stats *ns = &nic->net_stats;
       
  1550 	struct stats *s = &nic->mem->stats;
       
  1551 	u32 *complete = (nic->mac < mac_82558_D101_A4) ? &s->fc_xmt_pause :
       
  1552 		(nic->mac < mac_82559_D101M) ? (u32 *)&s->xmt_tco_frames :
       
  1553 		&s->complete;
       
  1554 
       
  1555 	/* Device's stats reporting may take several microseconds to
       
  1556 	 * complete, so where always waiting for results of the
       
  1557 	 * previous command. */
       
  1558 
       
  1559 	if(*complete == le32_to_cpu(cuc_dump_reset_complete)) {
       
  1560 		*complete = 0;
       
  1561 		nic->tx_frames = le32_to_cpu(s->tx_good_frames);
       
  1562 		nic->tx_collisions = le32_to_cpu(s->tx_total_collisions);
       
  1563 		ns->tx_aborted_errors += le32_to_cpu(s->tx_max_collisions);
       
  1564 		ns->tx_window_errors += le32_to_cpu(s->tx_late_collisions);
       
  1565 		ns->tx_carrier_errors += le32_to_cpu(s->tx_lost_crs);
       
  1566 		ns->tx_fifo_errors += le32_to_cpu(s->tx_underruns);
       
  1567 		ns->collisions += nic->tx_collisions;
       
  1568 		ns->tx_errors += le32_to_cpu(s->tx_max_collisions) +
       
  1569 			le32_to_cpu(s->tx_lost_crs);
       
  1570 		ns->rx_length_errors += le32_to_cpu(s->rx_short_frame_errors) +
       
  1571 			nic->rx_over_length_errors;
       
  1572 		ns->rx_crc_errors += le32_to_cpu(s->rx_crc_errors);
       
  1573 		ns->rx_frame_errors += le32_to_cpu(s->rx_alignment_errors);
       
  1574 		ns->rx_over_errors += le32_to_cpu(s->rx_overrun_errors);
       
  1575 		ns->rx_fifo_errors += le32_to_cpu(s->rx_overrun_errors);
       
  1576 		ns->rx_missed_errors += le32_to_cpu(s->rx_resource_errors);
       
  1577 		ns->rx_errors += le32_to_cpu(s->rx_crc_errors) +
       
  1578 			le32_to_cpu(s->rx_alignment_errors) +
       
  1579 			le32_to_cpu(s->rx_short_frame_errors) +
       
  1580 			le32_to_cpu(s->rx_cdt_errors);
       
  1581 		nic->tx_deferred += le32_to_cpu(s->tx_deferred);
       
  1582 		nic->tx_single_collisions +=
       
  1583 			le32_to_cpu(s->tx_single_collisions);
       
  1584 		nic->tx_multiple_collisions +=
       
  1585 			le32_to_cpu(s->tx_multiple_collisions);
       
  1586 		if(nic->mac >= mac_82558_D101_A4) {
       
  1587 			nic->tx_fc_pause += le32_to_cpu(s->fc_xmt_pause);
       
  1588 			nic->rx_fc_pause += le32_to_cpu(s->fc_rcv_pause);
       
  1589 			nic->rx_fc_unsupported +=
       
  1590 				le32_to_cpu(s->fc_rcv_unsupported);
       
  1591 			if(nic->mac >= mac_82559_D101M) {
       
  1592 				nic->tx_tco_frames +=
       
  1593 					le16_to_cpu(s->xmt_tco_frames);
       
  1594 				nic->rx_tco_frames +=
       
  1595 					le16_to_cpu(s->rcv_tco_frames);
       
  1596 			}
       
  1597 		}
       
  1598 	}
       
  1599 
       
  1600 
       
  1601 	if(e100_exec_cmd(nic, cuc_dump_reset, 0))
       
  1602 		DPRINTK(TX_ERR, DEBUG, "exec cuc_dump_reset failed\n");
       
  1603 }
       
  1604 
       
  1605 static void e100_adjust_adaptive_ifs(struct nic *nic, int speed, int duplex)
       
  1606 {
       
  1607 	/* Adjust inter-frame-spacing (IFS) between two transmits if
       
  1608 	 * we're getting collisions on a half-duplex connection. */
       
  1609 
       
  1610 	if(duplex == DUPLEX_HALF) {
       
  1611 		u32 prev = nic->adaptive_ifs;
       
  1612 		u32 min_frames = (speed == SPEED_100) ? 1000 : 100;
       
  1613 
       
  1614 		if((nic->tx_frames / 32 < nic->tx_collisions) &&
       
  1615 		   (nic->tx_frames > min_frames)) {
       
  1616 			if(nic->adaptive_ifs < 60)
       
  1617 				nic->adaptive_ifs += 5;
       
  1618 		} else if (nic->tx_frames < min_frames) {
       
  1619 			if(nic->adaptive_ifs >= 5)
       
  1620 				nic->adaptive_ifs -= 5;
       
  1621 		}
       
  1622 		if(nic->adaptive_ifs != prev)
       
  1623 			e100_exec_cb(nic, NULL, e100_configure);
       
  1624 	}
       
  1625 }
       
  1626 
       
  1627 static void e100_watchdog(unsigned long data)
       
  1628 {
       
  1629 	struct nic *nic = (struct nic *)data;
       
  1630 	struct ethtool_cmd cmd;
       
  1631 
       
  1632 	DPRINTK(TIMER, DEBUG, "right now = %ld\n", jiffies);
       
  1633 
       
  1634 	/* mii library handles link maintenance tasks */
       
  1635 
       
  1636     if (nic->ethercat) {
       
  1637 		ecdev_set_link(nic->ecdev, mii_link_ok(&nic->mii) ? 1 : 0);
       
  1638         goto finish;
       
  1639     }
       
  1640 
       
  1641     mii_ethtool_gset(&nic->mii, &cmd);
       
  1642 
       
  1643     if(mii_link_ok(&nic->mii) && !netif_carrier_ok(nic->netdev)) {
       
  1644         DPRINTK(LINK, INFO, "link up, %sMbps, %s-duplex\n",
       
  1645                 cmd.speed == SPEED_100 ? "100" : "10",
       
  1646                 cmd.duplex == DUPLEX_FULL ? "full" : "half");
       
  1647     } else if(!mii_link_ok(&nic->mii) && netif_carrier_ok(nic->netdev)) {
       
  1648         DPRINTK(LINK, INFO, "link down\n");
       
  1649     }
       
  1650 
       
  1651 	mii_check_link(&nic->mii);
       
  1652 
       
  1653 	/* Software generated interrupt to recover from (rare) Rx
       
  1654 	 * allocation failure.
       
  1655 	 * Unfortunately have to use a spinlock to not re-enable interrupts
       
  1656 	 * accidentally, due to hardware that shares a register between the
       
  1657 	 * interrupt mask bit and the SW Interrupt generation bit */
       
  1658 	spin_lock_irq(&nic->cmd_lock);
       
  1659 	writeb(readb(&nic->csr->scb.cmd_hi) | irq_sw_gen,&nic->csr->scb.cmd_hi);
       
  1660 	e100_write_flush(nic);
       
  1661 	spin_unlock_irq(&nic->cmd_lock);
       
  1662 
       
  1663 	e100_update_stats(nic);
       
  1664 	e100_adjust_adaptive_ifs(nic, cmd.speed, cmd.duplex);
       
  1665 
       
  1666 	if(nic->mac <= mac_82557_D100_C)
       
  1667 		/* Issue a multicast command to workaround a 557 lock up */
       
  1668 		e100_set_multicast_list(nic->netdev);
       
  1669 
       
  1670 	if(nic->flags & ich && cmd.speed==SPEED_10 && cmd.duplex==DUPLEX_HALF)
       
  1671 		/* Need SW workaround for ICH[x] 10Mbps/half duplex Tx hang. */
       
  1672 		nic->flags |= ich_10h_workaround;
       
  1673 	else
       
  1674 		nic->flags &= ~ich_10h_workaround;
       
  1675 
       
  1676 finish:
       
  1677 	mod_timer(&nic->watchdog, jiffies + E100_WATCHDOG_PERIOD);
       
  1678 }
       
  1679 
       
  1680 static void e100_xmit_prepare(struct nic *nic, struct cb *cb,
       
  1681 	struct sk_buff *skb)
       
  1682 {
       
  1683 	cb->command = nic->tx_command;
       
  1684 	/* interrupt every 16 packets regardless of delay */
       
  1685 	if((nic->cbs_avail & ~15) == nic->cbs_avail)
       
  1686 		cb->command |= cpu_to_le16(cb_i);
       
  1687 	cb->u.tcb.tbd_array = cb->dma_addr + offsetof(struct cb, u.tcb.tbd);
       
  1688 	cb->u.tcb.tcb_byte_count = 0;
       
  1689 	cb->u.tcb.threshold = nic->tx_threshold;
       
  1690 	cb->u.tcb.tbd_count = 1;
       
  1691 	cb->u.tcb.tbd.buf_addr = cpu_to_le32(pci_map_single(nic->pdev,
       
  1692 		skb->data, skb->len, PCI_DMA_TODEVICE));
       
  1693 	/* check for mapping failure? */
       
  1694 	cb->u.tcb.tbd.size = cpu_to_le16(skb->len);
       
  1695 }
       
  1696 
       
  1697 static int e100_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
       
  1698 {
       
  1699 	struct nic *nic = netdev_priv(netdev);
       
  1700 	int err;
       
  1701 
       
  1702 	if(nic->flags & ich_10h_workaround) {
       
  1703 		/* SW workaround for ICH[x] 10Mbps/half duplex Tx hang.
       
  1704 		   Issue a NOP command followed by a 1us delay before
       
  1705 		   issuing the Tx command. */
       
  1706 		if(e100_exec_cmd(nic, cuc_nop, 0))
       
  1707 			DPRINTK(TX_ERR, DEBUG, "exec cuc_nop failed\n");
       
  1708 		udelay(1);
       
  1709 	}
       
  1710 
       
  1711 	err = e100_exec_cb(nic, skb, e100_xmit_prepare);
       
  1712 
       
  1713 	switch(err) {
       
  1714 	case -ENOSPC:
       
  1715 		/* We queued the skb, but now we're out of space. */
       
  1716 		DPRINTK(TX_ERR, DEBUG, "No space for CB\n");
       
  1717         if (!nic->ethercat)
       
  1718             netif_stop_queue(netdev);
       
  1719 		break;
       
  1720 	case -ENOMEM:
       
  1721 		/* This is a hard error - log it. */
       
  1722 		DPRINTK(TX_ERR, DEBUG, "Out of Tx resources, returning skb\n");
       
  1723         if (!nic->ethercat)
       
  1724             netif_stop_queue(netdev);
       
  1725 		return 1;
       
  1726 	}
       
  1727 
       
  1728 	netdev->trans_start = jiffies;
       
  1729 	return 0;
       
  1730 }
       
  1731 
       
  1732 static int e100_tx_clean(struct nic *nic)
       
  1733 {
       
  1734 	struct cb *cb;
       
  1735 	int tx_cleaned = 0;
       
  1736 
       
  1737     printk(KERN_DEBUG DRV_NAME " tx_clean(%X)\n", (unsigned) nic); // FIXME
       
  1738 
       
  1739     if (!nic->cb_to_clean) { // FIXME
       
  1740         printk(KERN_WARNING DRV_NAME "cb_to_clean is NULL!\n");
       
  1741         return 0;
       
  1742     }
       
  1743 
       
  1744     if (!nic->ethercat)
       
  1745         spin_lock(&nic->cb_lock);
       
  1746 
       
  1747 	DPRINTK(TX_DONE, DEBUG, "cb->status = 0x%04X\n",
       
  1748 		nic->cb_to_clean->status);
       
  1749 
       
  1750 	/* Clean CBs marked complete */
       
  1751 	for(cb = nic->cb_to_clean;
       
  1752 	    cb->status & cpu_to_le16(cb_complete);
       
  1753 	    cb = nic->cb_to_clean = cb->next) {
       
  1754 		if(likely(cb->skb != NULL)) {
       
  1755 			nic->net_stats.tx_packets++;
       
  1756 			nic->net_stats.tx_bytes += cb->skb->len;
       
  1757 
       
  1758 			pci_unmap_single(nic->pdev,
       
  1759 				le32_to_cpu(cb->u.tcb.tbd.buf_addr),
       
  1760 				le16_to_cpu(cb->u.tcb.tbd.size),
       
  1761 				PCI_DMA_TODEVICE);
       
  1762             if (!nic->ethercat)
       
  1763                 dev_kfree_skb_any(cb->skb);
       
  1764 			cb->skb = NULL;
       
  1765 			tx_cleaned = 1;
       
  1766 		}
       
  1767 		cb->status = 0;
       
  1768 		nic->cbs_avail++;
       
  1769 	}
       
  1770 
       
  1771     if (!nic->ethercat) {
       
  1772         spin_unlock(&nic->cb_lock);
       
  1773 
       
  1774         /* Recover from running out of Tx resources in xmit_frame */
       
  1775         if(unlikely(tx_cleaned && netif_queue_stopped(nic->netdev)))
       
  1776             netif_wake_queue(nic->netdev);
       
  1777     }
       
  1778 
       
  1779 	return tx_cleaned;
       
  1780 }
       
  1781 
       
  1782 static void e100_clean_cbs(struct nic *nic)
       
  1783 {
       
  1784 	if(nic->cbs) {
       
  1785 		while(nic->cbs_avail != nic->params.cbs.count) {
       
  1786 			struct cb *cb = nic->cb_to_clean;
       
  1787 			if(cb->skb) {
       
  1788 				pci_unmap_single(nic->pdev,
       
  1789 					le32_to_cpu(cb->u.tcb.tbd.buf_addr),
       
  1790 					le16_to_cpu(cb->u.tcb.tbd.size),
       
  1791 					PCI_DMA_TODEVICE);
       
  1792 				dev_kfree_skb(cb->skb);
       
  1793 			}
       
  1794 			nic->cb_to_clean = nic->cb_to_clean->next;
       
  1795 			nic->cbs_avail++;
       
  1796 		}
       
  1797 		pci_free_consistent(nic->pdev,
       
  1798 			sizeof(struct cb) * nic->params.cbs.count,
       
  1799 			nic->cbs, nic->cbs_dma_addr);
       
  1800 		nic->cbs = NULL;
       
  1801 		nic->cbs_avail = 0;
       
  1802 	}
       
  1803 	nic->cuc_cmd = cuc_start;
       
  1804 	nic->cb_to_use = nic->cb_to_send = nic->cb_to_clean =
       
  1805 		nic->cbs;
       
  1806 }
       
  1807 
       
  1808 static int e100_alloc_cbs(struct nic *nic)
       
  1809 {
       
  1810 	struct cb *cb;
       
  1811 	unsigned int i, count = nic->params.cbs.count;
       
  1812 
       
  1813 	nic->cuc_cmd = cuc_start;
       
  1814 	nic->cb_to_use = nic->cb_to_send = nic->cb_to_clean = NULL;
       
  1815 	nic->cbs_avail = 0;
       
  1816 
       
  1817 	nic->cbs = pci_alloc_consistent(nic->pdev,
       
  1818 		sizeof(struct cb) * count, &nic->cbs_dma_addr);
       
  1819 	if(!nic->cbs)
       
  1820 		return -ENOMEM;
       
  1821 
       
  1822 	for(cb = nic->cbs, i = 0; i < count; cb++, i++) {
       
  1823 		cb->next = (i + 1 < count) ? cb + 1 : nic->cbs;
       
  1824 		cb->prev = (i == 0) ? nic->cbs + count - 1 : cb - 1;
       
  1825 
       
  1826 		cb->dma_addr = nic->cbs_dma_addr + i * sizeof(struct cb);
       
  1827 		cb->link = cpu_to_le32(nic->cbs_dma_addr +
       
  1828 			((i+1) % count) * sizeof(struct cb));
       
  1829 		cb->skb = NULL;
       
  1830 	}
       
  1831 
       
  1832 	nic->cb_to_use = nic->cb_to_send = nic->cb_to_clean = nic->cbs;
       
  1833 	nic->cbs_avail = count;
       
  1834 
       
  1835 	return 0;
       
  1836 }
       
  1837 
       
  1838 static inline void e100_start_receiver(struct nic *nic, struct rx *rx)
       
  1839 {
       
  1840 	if(!nic->rxs) return;
       
  1841 	if(RU_SUSPENDED != nic->ru_running) return;
       
  1842 
       
  1843 	/* handle init time starts */
       
  1844 	if(!rx) rx = nic->rxs;
       
  1845 
       
  1846 	/* (Re)start RU if suspended or idle and RFA is non-NULL */
       
  1847 	if(rx->skb) {
       
  1848 		e100_exec_cmd(nic, ruc_start, rx->dma_addr);
       
  1849 		nic->ru_running = RU_RUNNING;
       
  1850 	}
       
  1851 }
       
  1852 
       
  1853 #define RFD_BUF_LEN (sizeof(struct rfd) + VLAN_ETH_FRAME_LEN)
       
  1854 static int e100_rx_alloc_skb(struct nic *nic, struct rx *rx)
       
  1855 {
       
  1856 	if(!(rx->skb = dev_alloc_skb(RFD_BUF_LEN + NET_IP_ALIGN)))
       
  1857 		return -ENOMEM;
       
  1858 
       
  1859 	/* Align, init, and map the RFD. */
       
  1860 	rx->skb->dev = nic->netdev;
       
  1861 	skb_reserve(rx->skb, NET_IP_ALIGN);
       
  1862 	memcpy(rx->skb->data, &nic->blank_rfd, sizeof(struct rfd));
       
  1863 	rx->dma_addr = pci_map_single(nic->pdev, rx->skb->data,
       
  1864 		RFD_BUF_LEN, PCI_DMA_BIDIRECTIONAL);
       
  1865 
       
  1866 	if(pci_dma_mapping_error(rx->dma_addr)) {
       
  1867 		dev_kfree_skb_any(rx->skb);
       
  1868 		rx->skb = NULL;
       
  1869 		rx->dma_addr = 0;
       
  1870 		return -ENOMEM;
       
  1871 	}
       
  1872 
       
  1873 	/* Link the RFD to end of RFA by linking previous RFD to
       
  1874 	 * this one, and clearing EL bit of previous.  */
       
  1875 	if(rx->prev->skb) {
       
  1876 		struct rfd *prev_rfd = (struct rfd *)rx->prev->skb->data;
       
  1877 		put_unaligned(cpu_to_le32(rx->dma_addr),
       
  1878 			(u32 *)&prev_rfd->link);
       
  1879 		wmb();
       
  1880 		prev_rfd->command &= ~cpu_to_le16(cb_el);
       
  1881 		pci_dma_sync_single_for_device(nic->pdev, rx->prev->dma_addr,
       
  1882 			sizeof(struct rfd), PCI_DMA_TODEVICE);
       
  1883 	}
       
  1884 
       
  1885 	return 0;
       
  1886 }
       
  1887 
       
  1888 static int e100_rx_indicate(struct nic *nic, struct rx *rx,
       
  1889 	unsigned int *work_done, unsigned int work_to_do)
       
  1890 {
       
  1891 	struct sk_buff *skb = rx->skb;
       
  1892 	struct rfd *rfd = (struct rfd *)skb->data;
       
  1893 	u16 rfd_status, actual_size;
       
  1894 
       
  1895 	if(unlikely(work_done && *work_done >= work_to_do))
       
  1896 		return -EAGAIN;
       
  1897 
       
  1898 	/* Need to sync before taking a peek at cb_complete bit */
       
  1899 	pci_dma_sync_single_for_cpu(nic->pdev, rx->dma_addr,
       
  1900 		sizeof(struct rfd), PCI_DMA_FROMDEVICE);
       
  1901 	rfd_status = le16_to_cpu(rfd->status);
       
  1902 
       
  1903 	DPRINTK(RX_STATUS, DEBUG, "status=0x%04X\n", rfd_status);
       
  1904 
       
  1905 	/* If data isn't ready, nothing to indicate */
       
  1906 	if(unlikely(!(rfd_status & cb_complete)))
       
  1907 		return -ENODATA;
       
  1908 
       
  1909 	/* Get actual data size */
       
  1910 	actual_size = le16_to_cpu(rfd->actual_size) & 0x3FFF;
       
  1911 	if(unlikely(actual_size > RFD_BUF_LEN - sizeof(struct rfd)))
       
  1912 		actual_size = RFD_BUF_LEN - sizeof(struct rfd);
       
  1913 
       
  1914 	/* Get data */
       
  1915 	pci_unmap_single(nic->pdev, rx->dma_addr,
       
  1916 		RFD_BUF_LEN, PCI_DMA_FROMDEVICE);
       
  1917 
       
  1918 	/* this allows for a fast restart without re-enabling interrupts */
       
  1919 	if(le16_to_cpu(rfd->command) & cb_el)
       
  1920 		nic->ru_running = RU_SUSPENDED;
       
  1921 
       
  1922 	/* Pull off the RFD and put the actual data (minus eth hdr) */
       
  1923 	skb_reserve(skb, sizeof(struct rfd));
       
  1924 	skb_put(skb, actual_size);
       
  1925 	skb->protocol = eth_type_trans(skb, nic->netdev);
       
  1926 
       
  1927 	if(unlikely(!(rfd_status & cb_ok))) {
       
  1928 		/* Don't indicate if hardware indicates errors */
       
  1929         if (!nic->ethercat)
       
  1930             dev_kfree_skb_any(skb);
       
  1931 	} else if(actual_size > ETH_DATA_LEN + VLAN_ETH_HLEN) {
       
  1932 		/* Don't indicate oversized frames */
       
  1933 		nic->rx_over_length_errors++;
       
  1934         if (!nic->ethercat)
       
  1935             dev_kfree_skb_any(skb);
       
  1936 	} else {
       
  1937 		nic->net_stats.rx_packets++;
       
  1938 		nic->net_stats.rx_bytes += actual_size;
       
  1939 		nic->netdev->last_rx = jiffies;
       
  1940         if (!nic->ethercat)
       
  1941             netif_receive_skb(skb);
       
  1942         else {
       
  1943             //ecdev_receive(e100_ec_dev, &rx_ring[ring_offset + 4], pkt_size);
       
  1944         }
       
  1945 		if(work_done)
       
  1946 			(*work_done)++;
       
  1947 	}
       
  1948 
       
  1949 	rx->skb = NULL;
       
  1950 
       
  1951 	return 0;
       
  1952 }
       
  1953 
       
  1954 static void e100_rx_clean(struct nic *nic, unsigned int *work_done,
       
  1955 	unsigned int work_to_do)
       
  1956 {
       
  1957 	struct rx *rx;
       
  1958 	int restart_required = 0;
       
  1959 	struct rx *rx_to_start = NULL;
       
  1960 
       
  1961 	/* are we already rnr? then pay attention!!! this ensures that
       
  1962 	 * the state machine progression never allows a start with a
       
  1963 	 * partially cleaned list, avoiding a race between hardware
       
  1964 	 * and rx_to_clean when in NAPI mode */
       
  1965 	if(RU_SUSPENDED == nic->ru_running)
       
  1966 		restart_required = 1;
       
  1967 
       
  1968 	/* Indicate newly arrived packets */
       
  1969 	for(rx = nic->rx_to_clean; rx->skb; rx = nic->rx_to_clean = rx->next) {
       
  1970 		int err = e100_rx_indicate(nic, rx, work_done, work_to_do);
       
  1971 		if(-EAGAIN == err) {
       
  1972 			/* hit quota so have more work to do, restart once
       
  1973 			 * cleanup is complete */
       
  1974 			restart_required = 0;
       
  1975 			break;
       
  1976 		} else if(-ENODATA == err)
       
  1977 			break; /* No more to clean */
       
  1978 	}
       
  1979 
       
  1980 	/* save our starting point as the place we'll restart the receiver */
       
  1981 	if(restart_required)
       
  1982 		rx_to_start = nic->rx_to_clean;
       
  1983 
       
  1984 	/* Alloc new skbs to refill list */
       
  1985 	for(rx = nic->rx_to_use; !rx->skb; rx = nic->rx_to_use = rx->next) {
       
  1986 		if(unlikely(e100_rx_alloc_skb(nic, rx)))
       
  1987 			break; /* Better luck next time (see watchdog) */
       
  1988 	}
       
  1989 
       
  1990 	if(restart_required) {
       
  1991 		// ack the rnr?
       
  1992 		writeb(stat_ack_rnr, &nic->csr->scb.stat_ack);
       
  1993 		e100_start_receiver(nic, rx_to_start);
       
  1994 		if(work_done)
       
  1995 			(*work_done)++;
       
  1996 	}
       
  1997 }
       
  1998 
       
  1999 static void e100_rx_clean_list(struct nic *nic)
       
  2000 {
       
  2001 	struct rx *rx;
       
  2002 	unsigned int i, count = nic->params.rfds.count;
       
  2003 
       
  2004 	nic->ru_running = RU_UNINITIALIZED;
       
  2005 
       
  2006 	if(nic->rxs) {
       
  2007 		for(rx = nic->rxs, i = 0; i < count; rx++, i++) {
       
  2008 			if(rx->skb) {
       
  2009 				pci_unmap_single(nic->pdev, rx->dma_addr,
       
  2010 					RFD_BUF_LEN, PCI_DMA_FROMDEVICE);
       
  2011 				dev_kfree_skb(rx->skb); // FIXME
       
  2012 			}
       
  2013 		}
       
  2014 		kfree(nic->rxs);
       
  2015 		nic->rxs = NULL;
       
  2016 	}
       
  2017 
       
  2018 	nic->rx_to_use = nic->rx_to_clean = NULL;
       
  2019 }
       
  2020 
       
  2021 static int e100_rx_alloc_list(struct nic *nic)
       
  2022 {
       
  2023 	struct rx *rx;
       
  2024 	unsigned int i, count = nic->params.rfds.count;
       
  2025 
       
  2026 	nic->rx_to_use = nic->rx_to_clean = NULL;
       
  2027 	nic->ru_running = RU_UNINITIALIZED;
       
  2028 
       
  2029 	if(!(nic->rxs = kmalloc(sizeof(struct rx) * count, GFP_ATOMIC)))
       
  2030 		return -ENOMEM;
       
  2031 	memset(nic->rxs, 0, sizeof(struct rx) * count);
       
  2032 
       
  2033 	for(rx = nic->rxs, i = 0; i < count; rx++, i++) {
       
  2034 		rx->next = (i + 1 < count) ? rx + 1 : nic->rxs;
       
  2035 		rx->prev = (i == 0) ? nic->rxs + count - 1 : rx - 1;
       
  2036 		if(e100_rx_alloc_skb(nic, rx)) {
       
  2037 			e100_rx_clean_list(nic);
       
  2038 			return -ENOMEM;
       
  2039 		}
       
  2040 	}
       
  2041 
       
  2042 	nic->rx_to_use = nic->rx_to_clean = nic->rxs;
       
  2043 	nic->ru_running = RU_SUSPENDED;
       
  2044 
       
  2045 	return 0;
       
  2046 }
       
  2047 
       
  2048 static irqreturn_t e100_intr(int irq, void *dev_id, struct pt_regs *regs)
       
  2049 {
       
  2050 	struct net_device *netdev = dev_id;
       
  2051 	struct nic *nic = netdev_priv(netdev);
       
  2052 	u8 stat_ack = readb(&nic->csr->scb.stat_ack);
       
  2053 
       
  2054 	DPRINTK(INTR, DEBUG, "stat_ack = 0x%02X\n", stat_ack);
       
  2055 
       
  2056 	if(stat_ack == stat_ack_not_ours ||	/* Not our interrupt */
       
  2057 	   stat_ack == stat_ack_not_present)	/* Hardware is ejected */
       
  2058 		return IRQ_NONE;
       
  2059 
       
  2060 	/* Ack interrupt(s) */
       
  2061 	writeb(stat_ack, &nic->csr->scb.stat_ack);
       
  2062 
       
  2063 	/* We hit Receive No Resource (RNR); restart RU after cleaning */
       
  2064 	if(stat_ack & stat_ack_rnr)
       
  2065 		nic->ru_running = RU_SUSPENDED;
       
  2066 
       
  2067 	if(!nic->ethercat && likely(netif_rx_schedule_prep(netdev))) {
       
  2068 		e100_disable_irq(nic);
       
  2069 		__netif_rx_schedule(netdev);
       
  2070 	}
       
  2071 
       
  2072 	return IRQ_HANDLED;
       
  2073 }
       
  2074 
       
  2075 void e100_ec_poll(struct net_device *netdev)
       
  2076 {
       
  2077 	struct nic *nic = netdev_priv(netdev);
       
  2078     static unsigned int cleaned = 0;
       
  2079 
       
  2080 	cleaned += e100_tx_clean(nic);
       
  2081 
       
  2082     if (cleaned >= 1000) {
       
  2083         printk(KERN_INFO DRV_NAME " %u frames sent.\n", cleaned);
       
  2084         cleaned = 0;
       
  2085     }
       
  2086 }
       
  2087 
       
  2088 static int e100_poll(struct net_device *netdev, int *budget)
       
  2089 {
       
  2090 	struct nic *nic = netdev_priv(netdev);
       
  2091 	unsigned int work_to_do = min(netdev->quota, *budget);
       
  2092 	unsigned int work_done = 0;
       
  2093 	int tx_cleaned;
       
  2094 
       
  2095 	e100_rx_clean(nic, &work_done, work_to_do);
       
  2096 	tx_cleaned = e100_tx_clean(nic);
       
  2097 
       
  2098 	/* If no Rx and Tx cleanup work was done, exit polling mode. */
       
  2099 	if(!nic->ethercat &&
       
  2100             ((!tx_cleaned && (work_done == 0)) || !netif_running(netdev))) {
       
  2101 		netif_rx_complete(netdev);
       
  2102 		e100_enable_irq(nic);
       
  2103 		return 0;
       
  2104 	}
       
  2105 
       
  2106 	*budget -= work_done;
       
  2107 	netdev->quota -= work_done;
       
  2108 
       
  2109 	return 1;
       
  2110 }
       
  2111 
       
  2112 #ifdef CONFIG_NET_POLL_CONTROLLER
       
  2113 static void e100_netpoll(struct net_device *netdev)
       
  2114 {
       
  2115 	struct nic *nic = netdev_priv(netdev);
       
  2116 
       
  2117     if (nic->ethercat)
       
  2118         return;
       
  2119 
       
  2120 	e100_disable_irq(nic);
       
  2121 	e100_intr(nic->pdev->irq, netdev, NULL);
       
  2122 	e100_tx_clean(nic);
       
  2123 	e100_enable_irq(nic);
       
  2124 }
       
  2125 #endif
       
  2126 
       
  2127 static struct net_device_stats *e100_get_stats(struct net_device *netdev)
       
  2128 {
       
  2129 	struct nic *nic = netdev_priv(netdev);
       
  2130 	return &nic->net_stats;
       
  2131 }
       
  2132 
       
  2133 static int e100_set_mac_address(struct net_device *netdev, void *p)
       
  2134 {
       
  2135 	struct nic *nic = netdev_priv(netdev);
       
  2136 	struct sockaddr *addr = p;
       
  2137 
       
  2138 	if (!is_valid_ether_addr(addr->sa_data))
       
  2139 		return -EADDRNOTAVAIL;
       
  2140 
       
  2141 	memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
       
  2142 	e100_exec_cb(nic, NULL, e100_setup_iaaddr);
       
  2143 
       
  2144 	return 0;
       
  2145 }
       
  2146 
       
  2147 static int e100_change_mtu(struct net_device *netdev, int new_mtu)
       
  2148 {
       
  2149 	if(new_mtu < ETH_ZLEN || new_mtu > ETH_DATA_LEN)
       
  2150 		return -EINVAL;
       
  2151 	netdev->mtu = new_mtu;
       
  2152 	return 0;
       
  2153 }
       
  2154 
       
  2155 #ifdef CONFIG_PM
       
  2156 static int e100_asf(struct nic *nic)
       
  2157 {
       
  2158 	/* ASF can be enabled from eeprom */
       
  2159 	return((nic->pdev->device >= 0x1050) && (nic->pdev->device <= 0x1057) &&
       
  2160 	   (nic->eeprom[eeprom_config_asf] & eeprom_asf) &&
       
  2161 	   !(nic->eeprom[eeprom_config_asf] & eeprom_gcl) &&
       
  2162 	   ((nic->eeprom[eeprom_smbus_addr] & 0xFF) != 0xFE));
       
  2163 }
       
  2164 #endif
       
  2165 
       
  2166 static int e100_up(struct nic *nic)
       
  2167 {
       
  2168 	int err;
       
  2169 
       
  2170 	if((err = e100_rx_alloc_list(nic)))
       
  2171 		return err;
       
  2172 	if((err = e100_alloc_cbs(nic)))
       
  2173 		goto err_rx_clean_list;
       
  2174 	if((err = e100_hw_init(nic)))
       
  2175 		goto err_clean_cbs;
       
  2176 	if (!nic->ethercat) {
       
  2177         e100_set_multicast_list(nic->netdev);
       
  2178         e100_start_receiver(nic, NULL); // FIXME
       
  2179     }
       
  2180 	mod_timer(&nic->watchdog, jiffies);
       
  2181     if (!nic->ethercat) {
       
  2182         if((err = request_irq(nic->pdev->irq, e100_intr, IRQF_SHARED,
       
  2183                         nic->netdev->name, nic->netdev)))
       
  2184             goto err_no_irq;
       
  2185         netif_wake_queue(nic->netdev);
       
  2186         netif_poll_enable(nic->netdev);
       
  2187         /* enable ints _after_ enabling poll, preventing a race between
       
  2188          * disable ints+schedule */
       
  2189         e100_enable_irq(nic);
       
  2190     }
       
  2191 	return 0;
       
  2192 
       
  2193 err_no_irq:
       
  2194 	del_timer_sync(&nic->watchdog);
       
  2195 err_clean_cbs:
       
  2196 	e100_clean_cbs(nic);
       
  2197 err_rx_clean_list:
       
  2198 	e100_rx_clean_list(nic);
       
  2199 	return err;
       
  2200 }
       
  2201 
       
  2202 static void e100_down(struct nic *nic)
       
  2203 {
       
  2204     if (!nic->ethercat) {
       
  2205         /* wait here for poll to complete */
       
  2206         netif_poll_disable(nic->netdev);
       
  2207         netif_stop_queue(nic->netdev);
       
  2208     }
       
  2209 	e100_hw_reset(nic);
       
  2210     if (!nic->ethercat)
       
  2211         free_irq(nic->pdev->irq, nic->netdev);
       
  2212 	del_timer_sync(&nic->watchdog);
       
  2213     if (!nic->ethercat)
       
  2214         netif_carrier_off(nic->netdev);
       
  2215 	e100_clean_cbs(nic);
       
  2216 	e100_rx_clean_list(nic);
       
  2217 }
       
  2218 
       
  2219 static void e100_tx_timeout(struct net_device *netdev)
       
  2220 {
       
  2221 	struct nic *nic = netdev_priv(netdev);
       
  2222 
       
  2223 	/* Reset outside of interrupt context, to avoid request_irq
       
  2224 	 * in interrupt context */
       
  2225 	schedule_work(&nic->tx_timeout_task); // FIXME
       
  2226 }
       
  2227 
       
  2228 static void e100_tx_timeout_task(struct net_device *netdev)
       
  2229 {
       
  2230 	struct nic *nic = netdev_priv(netdev);
       
  2231 
       
  2232 	DPRINTK(TX_ERR, DEBUG, "scb.status=0x%02X\n",
       
  2233 		readb(&nic->csr->scb.status));
       
  2234 	e100_down(netdev_priv(netdev));
       
  2235 	e100_up(netdev_priv(netdev));
       
  2236 }
       
  2237 
       
  2238 static int e100_loopback_test(struct nic *nic, enum loopback loopback_mode)
       
  2239 {
       
  2240 	int err;
       
  2241 	struct sk_buff *skb;
       
  2242 
       
  2243 	/* Use driver resources to perform internal MAC or PHY
       
  2244 	 * loopback test.  A single packet is prepared and transmitted
       
  2245 	 * in loopback mode, and the test passes if the received
       
  2246 	 * packet compares byte-for-byte to the transmitted packet. */
       
  2247 
       
  2248 	if((err = e100_rx_alloc_list(nic)))
       
  2249 		return err;
       
  2250 	if((err = e100_alloc_cbs(nic)))
       
  2251 		goto err_clean_rx;
       
  2252 
       
  2253 	/* ICH PHY loopback is broken so do MAC loopback instead */
       
  2254 	if(nic->flags & ich && loopback_mode == lb_phy)
       
  2255 		loopback_mode = lb_mac;
       
  2256 
       
  2257 	nic->loopback = loopback_mode;
       
  2258 	if((err = e100_hw_init(nic)))
       
  2259 		goto err_loopback_none;
       
  2260 
       
  2261 	if(loopback_mode == lb_phy)
       
  2262 		mdio_write(nic->netdev, nic->mii.phy_id, MII_BMCR,
       
  2263 			BMCR_LOOPBACK);
       
  2264 
       
  2265 	e100_start_receiver(nic, NULL);
       
  2266 
       
  2267 	if(!(skb = dev_alloc_skb(ETH_DATA_LEN))) {
       
  2268 		err = -ENOMEM;
       
  2269 		goto err_loopback_none;
       
  2270 	}
       
  2271 	skb_put(skb, ETH_DATA_LEN);
       
  2272 	memset(skb->data, 0xFF, ETH_DATA_LEN);
       
  2273 	e100_xmit_frame(skb, nic->netdev);
       
  2274 
       
  2275 	msleep(10);
       
  2276 
       
  2277 	pci_dma_sync_single_for_cpu(nic->pdev, nic->rx_to_clean->dma_addr,
       
  2278 			RFD_BUF_LEN, PCI_DMA_FROMDEVICE);
       
  2279 
       
  2280 	if(memcmp(nic->rx_to_clean->skb->data + sizeof(struct rfd),
       
  2281 	   skb->data, ETH_DATA_LEN))
       
  2282 		err = -EAGAIN;
       
  2283 
       
  2284 err_loopback_none:
       
  2285 	mdio_write(nic->netdev, nic->mii.phy_id, MII_BMCR, 0);
       
  2286 	nic->loopback = lb_none;
       
  2287 	e100_clean_cbs(nic);
       
  2288 	e100_hw_reset(nic);
       
  2289 err_clean_rx:
       
  2290 	e100_rx_clean_list(nic);
       
  2291 	return err;
       
  2292 }
       
  2293 
       
  2294 #define MII_LED_CONTROL	0x1B
       
  2295 static void e100_blink_led(unsigned long data)
       
  2296 {
       
  2297 	struct nic *nic = (struct nic *)data;
       
  2298 	enum led_state {
       
  2299 		led_on     = 0x01,
       
  2300 		led_off    = 0x04,
       
  2301 		led_on_559 = 0x05,
       
  2302 		led_on_557 = 0x07,
       
  2303 	};
       
  2304 
       
  2305 	nic->leds = (nic->leds & led_on) ? led_off :
       
  2306 		(nic->mac < mac_82559_D101M) ? led_on_557 : led_on_559;
       
  2307 	mdio_write(nic->netdev, nic->mii.phy_id, MII_LED_CONTROL, nic->leds);
       
  2308 	mod_timer(&nic->blink_timer, jiffies + HZ / 4);
       
  2309 }
       
  2310 
       
  2311 static int e100_get_settings(struct net_device *netdev, struct ethtool_cmd *cmd)
       
  2312 {
       
  2313 	struct nic *nic = netdev_priv(netdev);
       
  2314 	return mii_ethtool_gset(&nic->mii, cmd);
       
  2315 }
       
  2316 
       
  2317 static int e100_set_settings(struct net_device *netdev, struct ethtool_cmd *cmd)
       
  2318 {
       
  2319 	struct nic *nic = netdev_priv(netdev);
       
  2320 	int err;
       
  2321 
       
  2322 	mdio_write(netdev, nic->mii.phy_id, MII_BMCR, BMCR_RESET);
       
  2323 	err = mii_ethtool_sset(&nic->mii, cmd);
       
  2324 	e100_exec_cb(nic, NULL, e100_configure);
       
  2325 
       
  2326 	return err;
       
  2327 }
       
  2328 
       
  2329 static void e100_get_drvinfo(struct net_device *netdev,
       
  2330 	struct ethtool_drvinfo *info)
       
  2331 {
       
  2332 	struct nic *nic = netdev_priv(netdev);
       
  2333 	strcpy(info->driver, DRV_NAME);
       
  2334 	strcpy(info->version, DRV_VERSION);
       
  2335 	strcpy(info->fw_version, "N/A");
       
  2336 	strcpy(info->bus_info, pci_name(nic->pdev));
       
  2337 }
       
  2338 
       
  2339 static int e100_get_regs_len(struct net_device *netdev)
       
  2340 {
       
  2341 	struct nic *nic = netdev_priv(netdev);
       
  2342 #define E100_PHY_REGS		0x1C
       
  2343 #define E100_REGS_LEN		1 + E100_PHY_REGS + \
       
  2344 	sizeof(nic->mem->dump_buf) / sizeof(u32)
       
  2345 	return E100_REGS_LEN * sizeof(u32);
       
  2346 }
       
  2347 
       
  2348 static void e100_get_regs(struct net_device *netdev,
       
  2349 	struct ethtool_regs *regs, void *p)
       
  2350 {
       
  2351 	struct nic *nic = netdev_priv(netdev);
       
  2352 	u32 *buff = p;
       
  2353 	int i;
       
  2354 
       
  2355 	regs->version = (1 << 24) | nic->rev_id;
       
  2356 	buff[0] = readb(&nic->csr->scb.cmd_hi) << 24 |
       
  2357 		readb(&nic->csr->scb.cmd_lo) << 16 |
       
  2358 		readw(&nic->csr->scb.status);
       
  2359 	for(i = E100_PHY_REGS; i >= 0; i--)
       
  2360 		buff[1 + E100_PHY_REGS - i] =
       
  2361 			mdio_read(netdev, nic->mii.phy_id, i);
       
  2362 	memset(nic->mem->dump_buf, 0, sizeof(nic->mem->dump_buf));
       
  2363 	e100_exec_cb(nic, NULL, e100_dump);
       
  2364 	msleep(10);
       
  2365 	memcpy(&buff[2 + E100_PHY_REGS], nic->mem->dump_buf,
       
  2366 		sizeof(nic->mem->dump_buf));
       
  2367 }
       
  2368 
       
  2369 static void e100_get_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
       
  2370 {
       
  2371 	struct nic *nic = netdev_priv(netdev);
       
  2372 	wol->supported = (nic->mac >= mac_82558_D101_A4) ?  WAKE_MAGIC : 0;
       
  2373 	wol->wolopts = (nic->flags & wol_magic) ? WAKE_MAGIC : 0;
       
  2374 }
       
  2375 
       
  2376 static int e100_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
       
  2377 {
       
  2378 	struct nic *nic = netdev_priv(netdev);
       
  2379 
       
  2380 	if(wol->wolopts != WAKE_MAGIC && wol->wolopts != 0)
       
  2381 		return -EOPNOTSUPP;
       
  2382 
       
  2383 	if(wol->wolopts)
       
  2384 		nic->flags |= wol_magic;
       
  2385 	else
       
  2386 		nic->flags &= ~wol_magic;
       
  2387 
       
  2388 	e100_exec_cb(nic, NULL, e100_configure);
       
  2389 
       
  2390 	return 0;
       
  2391 }
       
  2392 
       
  2393 static u32 e100_get_msglevel(struct net_device *netdev)
       
  2394 {
       
  2395 	struct nic *nic = netdev_priv(netdev);
       
  2396 	return nic->msg_enable;
       
  2397 }
       
  2398 
       
  2399 static void e100_set_msglevel(struct net_device *netdev, u32 value)
       
  2400 {
       
  2401 	struct nic *nic = netdev_priv(netdev);
       
  2402 	nic->msg_enable = value;
       
  2403 }
       
  2404 
       
  2405 static int e100_nway_reset(struct net_device *netdev)
       
  2406 {
       
  2407 	struct nic *nic = netdev_priv(netdev);
       
  2408 	return mii_nway_restart(&nic->mii);
       
  2409 }
       
  2410 
       
  2411 static u32 e100_get_link(struct net_device *netdev)
       
  2412 {
       
  2413 	struct nic *nic = netdev_priv(netdev);
       
  2414 	return mii_link_ok(&nic->mii);
       
  2415 }
       
  2416 
       
  2417 static int e100_get_eeprom_len(struct net_device *netdev)
       
  2418 {
       
  2419 	struct nic *nic = netdev_priv(netdev);
       
  2420 	return nic->eeprom_wc << 1;
       
  2421 }
       
  2422 
       
  2423 #define E100_EEPROM_MAGIC	0x1234
       
  2424 static int e100_get_eeprom(struct net_device *netdev,
       
  2425 	struct ethtool_eeprom *eeprom, u8 *bytes)
       
  2426 {
       
  2427 	struct nic *nic = netdev_priv(netdev);
       
  2428 
       
  2429 	eeprom->magic = E100_EEPROM_MAGIC;
       
  2430 	memcpy(bytes, &((u8 *)nic->eeprom)[eeprom->offset], eeprom->len);
       
  2431 
       
  2432 	return 0;
       
  2433 }
       
  2434 
       
  2435 static int e100_set_eeprom(struct net_device *netdev,
       
  2436 	struct ethtool_eeprom *eeprom, u8 *bytes)
       
  2437 {
       
  2438 	struct nic *nic = netdev_priv(netdev);
       
  2439 
       
  2440 	if(eeprom->magic != E100_EEPROM_MAGIC)
       
  2441 		return -EINVAL;
       
  2442 
       
  2443 	memcpy(&((u8 *)nic->eeprom)[eeprom->offset], bytes, eeprom->len);
       
  2444 
       
  2445 	return e100_eeprom_save(nic, eeprom->offset >> 1,
       
  2446 		(eeprom->len >> 1) + 1);
       
  2447 }
       
  2448 
       
  2449 static void e100_get_ringparam(struct net_device *netdev,
       
  2450 	struct ethtool_ringparam *ring)
       
  2451 {
       
  2452 	struct nic *nic = netdev_priv(netdev);
       
  2453 	struct param_range *rfds = &nic->params.rfds;
       
  2454 	struct param_range *cbs = &nic->params.cbs;
       
  2455 
       
  2456 	ring->rx_max_pending = rfds->max;
       
  2457 	ring->tx_max_pending = cbs->max;
       
  2458 	ring->rx_mini_max_pending = 0;
       
  2459 	ring->rx_jumbo_max_pending = 0;
       
  2460 	ring->rx_pending = rfds->count;
       
  2461 	ring->tx_pending = cbs->count;
       
  2462 	ring->rx_mini_pending = 0;
       
  2463 	ring->rx_jumbo_pending = 0;
       
  2464 }
       
  2465 
       
  2466 static int e100_set_ringparam(struct net_device *netdev,
       
  2467 	struct ethtool_ringparam *ring)
       
  2468 {
       
  2469 	struct nic *nic = netdev_priv(netdev);
       
  2470 	struct param_range *rfds = &nic->params.rfds;
       
  2471 	struct param_range *cbs = &nic->params.cbs;
       
  2472 
       
  2473 	if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
       
  2474 		return -EINVAL;
       
  2475 
       
  2476 	if(netif_running(netdev))
       
  2477 		e100_down(nic);
       
  2478 	rfds->count = max(ring->rx_pending, rfds->min);
       
  2479 	rfds->count = min(rfds->count, rfds->max);
       
  2480 	cbs->count = max(ring->tx_pending, cbs->min);
       
  2481 	cbs->count = min(cbs->count, cbs->max);
       
  2482 	DPRINTK(DRV, INFO, "Ring Param settings: rx: %d, tx %d\n",
       
  2483 	        rfds->count, cbs->count);
       
  2484 	if(netif_running(netdev))
       
  2485 		e100_up(nic);
       
  2486 
       
  2487 	return 0;
       
  2488 }
       
  2489 
       
  2490 static const char e100_gstrings_test[][ETH_GSTRING_LEN] = {
       
  2491 	"Link test     (on/offline)",
       
  2492 	"Eeprom test   (on/offline)",
       
  2493 	"Self test        (offline)",
       
  2494 	"Mac loopback     (offline)",
       
  2495 	"Phy loopback     (offline)",
       
  2496 };
       
  2497 #define E100_TEST_LEN	sizeof(e100_gstrings_test) / ETH_GSTRING_LEN
       
  2498 
       
  2499 static int e100_diag_test_count(struct net_device *netdev)
       
  2500 {
       
  2501 	return E100_TEST_LEN;
       
  2502 }
       
  2503 
       
  2504 static void e100_diag_test(struct net_device *netdev,
       
  2505 	struct ethtool_test *test, u64 *data)
       
  2506 {
       
  2507 	struct ethtool_cmd cmd;
       
  2508 	struct nic *nic = netdev_priv(netdev);
       
  2509 	int i, err;
       
  2510 
       
  2511 	memset(data, 0, E100_TEST_LEN * sizeof(u64));
       
  2512 	data[0] = !mii_link_ok(&nic->mii);
       
  2513 	data[1] = e100_eeprom_load(nic);
       
  2514 	if(test->flags & ETH_TEST_FL_OFFLINE) {
       
  2515 
       
  2516 		/* save speed, duplex & autoneg settings */
       
  2517 		err = mii_ethtool_gset(&nic->mii, &cmd);
       
  2518 
       
  2519 		if(netif_running(netdev))
       
  2520 			e100_down(nic);
       
  2521 		data[2] = e100_self_test(nic);
       
  2522 		data[3] = e100_loopback_test(nic, lb_mac);
       
  2523 		data[4] = e100_loopback_test(nic, lb_phy);
       
  2524 
       
  2525 		/* restore speed, duplex & autoneg settings */
       
  2526 		err = mii_ethtool_sset(&nic->mii, &cmd);
       
  2527 
       
  2528 		if(netif_running(netdev))
       
  2529 			e100_up(nic);
       
  2530 	}
       
  2531 	for(i = 0; i < E100_TEST_LEN; i++)
       
  2532 		test->flags |= data[i] ? ETH_TEST_FL_FAILED : 0;
       
  2533 
       
  2534 	msleep_interruptible(4 * 1000);
       
  2535 }
       
  2536 
       
  2537 static int e100_phys_id(struct net_device *netdev, u32 data)
       
  2538 {
       
  2539 	struct nic *nic = netdev_priv(netdev);
       
  2540 
       
  2541 	if(!data || data > (u32)(MAX_SCHEDULE_TIMEOUT / HZ))
       
  2542 		data = (u32)(MAX_SCHEDULE_TIMEOUT / HZ);
       
  2543 	mod_timer(&nic->blink_timer, jiffies);
       
  2544 	msleep_interruptible(data * 1000);
       
  2545 	del_timer_sync(&nic->blink_timer);
       
  2546 	mdio_write(netdev, nic->mii.phy_id, MII_LED_CONTROL, 0);
       
  2547 
       
  2548 	return 0;
       
  2549 }
       
  2550 
       
  2551 static const char e100_gstrings_stats[][ETH_GSTRING_LEN] = {
       
  2552 	"rx_packets", "tx_packets", "rx_bytes", "tx_bytes", "rx_errors",
       
  2553 	"tx_errors", "rx_dropped", "tx_dropped", "multicast", "collisions",
       
  2554 	"rx_length_errors", "rx_over_errors", "rx_crc_errors",
       
  2555 	"rx_frame_errors", "rx_fifo_errors", "rx_missed_errors",
       
  2556 	"tx_aborted_errors", "tx_carrier_errors", "tx_fifo_errors",
       
  2557 	"tx_heartbeat_errors", "tx_window_errors",
       
  2558 	/* device-specific stats */
       
  2559 	"tx_deferred", "tx_single_collisions", "tx_multi_collisions",
       
  2560 	"tx_flow_control_pause", "rx_flow_control_pause",
       
  2561 	"rx_flow_control_unsupported", "tx_tco_packets", "rx_tco_packets",
       
  2562 };
       
  2563 #define E100_NET_STATS_LEN	21
       
  2564 #define E100_STATS_LEN	sizeof(e100_gstrings_stats) / ETH_GSTRING_LEN
       
  2565 
       
  2566 static int e100_get_stats_count(struct net_device *netdev)
       
  2567 {
       
  2568 	return E100_STATS_LEN;
       
  2569 }
       
  2570 
       
  2571 static void e100_get_ethtool_stats(struct net_device *netdev,
       
  2572 	struct ethtool_stats *stats, u64 *data)
       
  2573 {
       
  2574 	struct nic *nic = netdev_priv(netdev);
       
  2575 	int i;
       
  2576 
       
  2577 	for(i = 0; i < E100_NET_STATS_LEN; i++)
       
  2578 		data[i] = ((unsigned long *)&nic->net_stats)[i];
       
  2579 
       
  2580 	data[i++] = nic->tx_deferred;
       
  2581 	data[i++] = nic->tx_single_collisions;
       
  2582 	data[i++] = nic->tx_multiple_collisions;
       
  2583 	data[i++] = nic->tx_fc_pause;
       
  2584 	data[i++] = nic->rx_fc_pause;
       
  2585 	data[i++] = nic->rx_fc_unsupported;
       
  2586 	data[i++] = nic->tx_tco_frames;
       
  2587 	data[i++] = nic->rx_tco_frames;
       
  2588 }
       
  2589 
       
  2590 static void e100_get_strings(struct net_device *netdev, u32 stringset, u8 *data)
       
  2591 {
       
  2592 	switch(stringset) {
       
  2593 	case ETH_SS_TEST:
       
  2594 		memcpy(data, *e100_gstrings_test, sizeof(e100_gstrings_test));
       
  2595 		break;
       
  2596 	case ETH_SS_STATS:
       
  2597 		memcpy(data, *e100_gstrings_stats, sizeof(e100_gstrings_stats));
       
  2598 		break;
       
  2599 	}
       
  2600 }
       
  2601 
       
  2602 static struct ethtool_ops e100_ethtool_ops = {
       
  2603 	.get_settings		= e100_get_settings,
       
  2604 	.set_settings		= e100_set_settings,
       
  2605 	.get_drvinfo		= e100_get_drvinfo,
       
  2606 	.get_regs_len		= e100_get_regs_len,
       
  2607 	.get_regs		= e100_get_regs,
       
  2608 	.get_wol		= e100_get_wol,
       
  2609 	.set_wol		= e100_set_wol,
       
  2610 	.get_msglevel		= e100_get_msglevel,
       
  2611 	.set_msglevel		= e100_set_msglevel,
       
  2612 	.nway_reset		= e100_nway_reset,
       
  2613 	.get_link		= e100_get_link,
       
  2614 	.get_eeprom_len		= e100_get_eeprom_len,
       
  2615 	.get_eeprom		= e100_get_eeprom,
       
  2616 	.set_eeprom		= e100_set_eeprom,
       
  2617 	.get_ringparam		= e100_get_ringparam,
       
  2618 	.set_ringparam		= e100_set_ringparam,
       
  2619 	.self_test_count	= e100_diag_test_count,
       
  2620 	.self_test		= e100_diag_test,
       
  2621 	.get_strings		= e100_get_strings,
       
  2622 	.phys_id		= e100_phys_id,
       
  2623 	.get_stats_count	= e100_get_stats_count,
       
  2624 	.get_ethtool_stats	= e100_get_ethtool_stats,
       
  2625 	.get_perm_addr		= ethtool_op_get_perm_addr,
       
  2626 };
       
  2627 
       
  2628 static int e100_do_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
       
  2629 {
       
  2630 	struct nic *nic = netdev_priv(netdev);
       
  2631 
       
  2632 	return generic_mii_ioctl(&nic->mii, if_mii(ifr), cmd, NULL);
       
  2633 }
       
  2634 
       
  2635 static int e100_alloc(struct nic *nic)
       
  2636 {
       
  2637 	nic->mem = pci_alloc_consistent(nic->pdev, sizeof(struct mem),
       
  2638 		&nic->dma_addr);
       
  2639 	return nic->mem ? 0 : -ENOMEM;
       
  2640 }
       
  2641 
       
  2642 static void e100_free(struct nic *nic)
       
  2643 {
       
  2644 	if(nic->mem) {
       
  2645 		pci_free_consistent(nic->pdev, sizeof(struct mem),
       
  2646 			nic->mem, nic->dma_addr);
       
  2647 		nic->mem = NULL;
       
  2648 	}
       
  2649 }
       
  2650 
       
  2651 static int e100_open(struct net_device *netdev)
       
  2652 {
       
  2653 	struct nic *nic = netdev_priv(netdev);
       
  2654 	int err = 0;
       
  2655 
       
  2656     if (!nic->ethercat)
       
  2657         netif_carrier_off(netdev);
       
  2658 	if((err = e100_up(nic)))
       
  2659 		DPRINTK(IFUP, ERR, "Cannot open interface, aborting.\n");
       
  2660 	return err;
       
  2661 }
       
  2662 
       
  2663 static int e100_close(struct net_device *netdev)
       
  2664 {
       
  2665 	e100_down(netdev_priv(netdev));
       
  2666 	return 0;
       
  2667 }
       
  2668 
       
  2669 static int __devinit e100_probe(struct pci_dev *pdev,
       
  2670 	const struct pci_device_id *ent)
       
  2671 {
       
  2672 	struct net_device *netdev;
       
  2673 	struct nic *nic;
       
  2674 	int err;
       
  2675 
       
  2676 	if(!(netdev = alloc_etherdev(sizeof(struct nic)))) {
       
  2677 		if(((1 << debug) - 1) & NETIF_MSG_PROBE)
       
  2678 			printk(KERN_ERR PFX "Etherdev alloc failed, abort.\n");
       
  2679 		return -ENOMEM;
       
  2680 	}
       
  2681 
       
  2682 	netdev->open = e100_open;
       
  2683 	netdev->stop = e100_close;
       
  2684 	netdev->hard_start_xmit = e100_xmit_frame;
       
  2685 	netdev->get_stats = e100_get_stats;
       
  2686 	netdev->set_multicast_list = e100_set_multicast_list;
       
  2687 	netdev->set_mac_address = e100_set_mac_address;
       
  2688 	netdev->change_mtu = e100_change_mtu;
       
  2689 	netdev->do_ioctl = e100_do_ioctl;
       
  2690 	SET_ETHTOOL_OPS(netdev, &e100_ethtool_ops);
       
  2691 	netdev->tx_timeout = e100_tx_timeout;
       
  2692 	netdev->watchdog_timeo = E100_WATCHDOG_PERIOD;
       
  2693 	netdev->poll = e100_poll;
       
  2694 	netdev->weight = E100_NAPI_WEIGHT;
       
  2695 #ifdef CONFIG_NET_POLL_CONTROLLER
       
  2696 	netdev->poll_controller = e100_netpoll;
       
  2697 #endif
       
  2698 	strcpy(netdev->name, pci_name(pdev));
       
  2699 
       
  2700 	nic = netdev_priv(netdev);
       
  2701 	nic->netdev = netdev;
       
  2702 	nic->pdev = pdev;
       
  2703 	nic->msg_enable = (1 << debug) - 1;
       
  2704 	pci_set_drvdata(pdev, netdev);
       
  2705 
       
  2706     if (e100_device_index++ == ec_device_index) {
       
  2707         nic->ethercat = 1;
       
  2708         e100_ec_netdev = netdev;
       
  2709     }
       
  2710     else {
       
  2711         nic->ethercat = 0;
       
  2712     }
       
  2713     nic->ecdev = NULL;
       
  2714 
       
  2715 	if((err = pci_enable_device(pdev))) {
       
  2716 		DPRINTK(PROBE, ERR, "Cannot enable PCI device, aborting.\n");
       
  2717 		goto err_out_free_dev;
       
  2718 	}
       
  2719 
       
  2720 	if(!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
       
  2721 		DPRINTK(PROBE, ERR, "Cannot find proper PCI device "
       
  2722 			"base address, aborting.\n");
       
  2723 		err = -ENODEV;
       
  2724 		goto err_out_disable_pdev;
       
  2725 	}
       
  2726 
       
  2727 	if((err = pci_request_regions(pdev, DRV_NAME))) {
       
  2728 		DPRINTK(PROBE, ERR, "Cannot obtain PCI resources, aborting.\n");
       
  2729 		goto err_out_disable_pdev;
       
  2730 	}
       
  2731 
       
  2732 	if((err = pci_set_dma_mask(pdev, DMA_32BIT_MASK))) {
       
  2733 		DPRINTK(PROBE, ERR, "No usable DMA configuration, aborting.\n");
       
  2734 		goto err_out_free_res;
       
  2735 	}
       
  2736 
       
  2737 	SET_MODULE_OWNER(netdev);
       
  2738 	SET_NETDEV_DEV(netdev, &pdev->dev);
       
  2739 
       
  2740 	nic->csr = ioremap(pci_resource_start(pdev, 0), sizeof(struct csr));
       
  2741 	if(!nic->csr) {
       
  2742 		DPRINTK(PROBE, ERR, "Cannot map device registers, aborting.\n");
       
  2743 		err = -ENOMEM;
       
  2744 		goto err_out_free_res;
       
  2745 	}
       
  2746 
       
  2747 	if(ent->driver_data)
       
  2748 		nic->flags |= ich;
       
  2749 	else
       
  2750 		nic->flags &= ~ich;
       
  2751 
       
  2752 	e100_get_defaults(nic);
       
  2753 
       
  2754 	/* locks must be initialized before calling hw_reset */
       
  2755 	spin_lock_init(&nic->cb_lock);
       
  2756 	spin_lock_init(&nic->cmd_lock);
       
  2757 	spin_lock_init(&nic->mdio_lock);
       
  2758 
       
  2759 	/* Reset the device before pci_set_master() in case device is in some
       
  2760 	 * funky state and has an interrupt pending - hint: we don't have the
       
  2761 	 * interrupt handler registered yet. */
       
  2762 	e100_hw_reset(nic);
       
  2763 
       
  2764 	pci_set_master(pdev);
       
  2765 
       
  2766 	init_timer(&nic->watchdog);
       
  2767 	nic->watchdog.function = e100_watchdog;
       
  2768 	nic->watchdog.data = (unsigned long)nic;
       
  2769 	init_timer(&nic->blink_timer);
       
  2770 	nic->blink_timer.function = e100_blink_led;
       
  2771 	nic->blink_timer.data = (unsigned long)nic;
       
  2772 
       
  2773 	INIT_WORK(&nic->tx_timeout_task,
       
  2774 		(void (*)(void *))e100_tx_timeout_task, netdev);
       
  2775 
       
  2776 	if((err = e100_alloc(nic))) {
       
  2777 		DPRINTK(PROBE, ERR, "Cannot alloc driver memory, aborting.\n");
       
  2778 		goto err_out_iounmap;
       
  2779 	}
       
  2780 
       
  2781 	if((err = e100_eeprom_load(nic)))
       
  2782 		goto err_out_free;
       
  2783 
       
  2784 	e100_phy_init(nic);
       
  2785 
       
  2786 	memcpy(netdev->dev_addr, nic->eeprom, ETH_ALEN);
       
  2787 	memcpy(netdev->perm_addr, nic->eeprom, ETH_ALEN);
       
  2788 	if(!is_valid_ether_addr(netdev->perm_addr)) {
       
  2789 		DPRINTK(PROBE, ERR, "Invalid MAC address from "
       
  2790 			"EEPROM, aborting.\n");
       
  2791 		err = -EAGAIN;
       
  2792 		goto err_out_free;
       
  2793 	}
       
  2794 
       
  2795 	/* Wol magic packet can be enabled from eeprom */
       
  2796 	if((nic->mac >= mac_82558_D101_A4) &&
       
  2797 	   (nic->eeprom[eeprom_id] & eeprom_id_wol))
       
  2798 		nic->flags |= wol_magic;
       
  2799 
       
  2800 	/* ack any pending wake events, disable PME */
       
  2801 	err = pci_enable_wake(pdev, 0, 0);
       
  2802 	if (err)
       
  2803 		DPRINTK(PROBE, ERR, "Error clearing wake event\n");
       
  2804 
       
  2805     if (!nic->ethercat) {
       
  2806         strcpy(netdev->name, "eth%d");
       
  2807         if((err = register_netdev(netdev))) {
       
  2808             DPRINTK(PROBE, ERR, "Cannot register net device, aborting.\n");
       
  2809             goto err_out_free;
       
  2810         }
       
  2811     }
       
  2812     else {
       
  2813         strcpy(netdev->name, "ec0");
       
  2814     }
       
  2815 
       
  2816 	DPRINTK(PROBE, INFO, "addr 0x%llx, irq %d, "
       
  2817 		"MAC addr %02X:%02X:%02X:%02X:%02X:%02X\n",
       
  2818 		(unsigned long long)pci_resource_start(pdev, 0), pdev->irq,
       
  2819 		netdev->dev_addr[0], netdev->dev_addr[1], netdev->dev_addr[2],
       
  2820 		netdev->dev_addr[3], netdev->dev_addr[4], netdev->dev_addr[5]);
       
  2821 
       
  2822 	return 0;
       
  2823 
       
  2824 err_out_free:
       
  2825 	e100_free(nic);
       
  2826 err_out_iounmap:
       
  2827 	iounmap(nic->csr);
       
  2828 err_out_free_res:
       
  2829 	pci_release_regions(pdev);
       
  2830 err_out_disable_pdev:
       
  2831 	pci_disable_device(pdev);
       
  2832 err_out_free_dev:
       
  2833 	pci_set_drvdata(pdev, NULL);
       
  2834 	free_netdev(netdev);
       
  2835 	return err;
       
  2836 }
       
  2837 
       
  2838 static void __devexit e100_remove(struct pci_dev *pdev)
       
  2839 {
       
  2840 	struct net_device *netdev = pci_get_drvdata(pdev);
       
  2841 
       
  2842 	if(netdev) {
       
  2843 		struct nic *nic = netdev_priv(netdev);
       
  2844         if (!nic->ethercat)
       
  2845             unregister_netdev(netdev);
       
  2846 		e100_free(nic);
       
  2847 		iounmap(nic->csr);
       
  2848 		free_netdev(netdev);
       
  2849 		pci_release_regions(pdev);
       
  2850 		pci_disable_device(pdev);
       
  2851 		pci_set_drvdata(pdev, NULL);
       
  2852 	}
       
  2853 }
       
  2854 
       
  2855 #ifdef CONFIG_PM
       
  2856 static int e100_suspend(struct pci_dev *pdev, pm_message_t state)
       
  2857 {
       
  2858 	struct net_device *netdev = pci_get_drvdata(pdev);
       
  2859 	struct nic *nic = netdev_priv(netdev);
       
  2860 	int retval;
       
  2861 
       
  2862 	if (nic->ethercat || netif_running(netdev))
       
  2863 		e100_down(nic);
       
  2864 	e100_hw_reset(nic);
       
  2865     if (!nic->ethercat)
       
  2866         netif_device_detach(netdev);
       
  2867 
       
  2868 	pci_save_state(pdev);
       
  2869 	retval = pci_enable_wake(pdev, pci_choose_state(pdev, state),
       
  2870 	                         nic->flags & (wol_magic | e100_asf(nic)));
       
  2871 	if (retval)
       
  2872 		DPRINTK(PROBE,ERR, "Error enabling wake\n");
       
  2873 	pci_disable_device(pdev);
       
  2874 	retval = pci_set_power_state(pdev, pci_choose_state(pdev, state));
       
  2875 	if (retval)
       
  2876 		DPRINTK(PROBE,ERR, "Error %d setting power state\n", retval);
       
  2877 
       
  2878 	return 0;
       
  2879 }
       
  2880 
       
  2881 static int e100_resume(struct pci_dev *pdev)
       
  2882 {
       
  2883 	struct net_device *netdev = pci_get_drvdata(pdev);
       
  2884 	struct nic *nic = netdev_priv(netdev);
       
  2885 	int retval;
       
  2886 
       
  2887 	retval = pci_set_power_state(pdev, PCI_D0);
       
  2888 	if (retval)
       
  2889 		DPRINTK(PROBE,ERR, "Error waking adapter\n");
       
  2890 	pci_restore_state(pdev);
       
  2891 	/* ack any pending wake events, disable PME */
       
  2892 	retval = pci_enable_wake(pdev, 0, 0);
       
  2893 	if (retval)
       
  2894 		DPRINTK(PROBE,ERR, "Error clearing wake events\n");
       
  2895 
       
  2896     if (!nic->ethercat)
       
  2897         netif_device_attach(netdev);
       
  2898 	if (nic->ethercat || netif_running(netdev))
       
  2899 		e100_up(nic);
       
  2900 
       
  2901 	return 0;
       
  2902 }
       
  2903 #endif
       
  2904 
       
  2905 
       
  2906 static void e100_shutdown(struct pci_dev *pdev)
       
  2907 {
       
  2908 	struct net_device *netdev = pci_get_drvdata(pdev);
       
  2909 	struct nic *nic = netdev_priv(netdev);
       
  2910 	int retval;
       
  2911 
       
  2912 #ifdef CONFIG_PM
       
  2913 	retval = pci_enable_wake(pdev, 0, nic->flags & (wol_magic | e100_asf(nic)));
       
  2914 #else
       
  2915 	retval = pci_enable_wake(pdev, 0, nic->flags & (wol_magic));
       
  2916 #endif
       
  2917 	if (retval)
       
  2918 		DPRINTK(PROBE,ERR, "Error enabling wake\n");
       
  2919 }
       
  2920 
       
  2921 /* ------------------ PCI Error Recovery infrastructure  -------------- */
       
  2922 /**
       
  2923  * e100_io_error_detected - called when PCI error is detected.
       
  2924  * @pdev: Pointer to PCI device
       
  2925  * @state: The current pci conneection state
       
  2926  */
       
  2927 static pci_ers_result_t e100_io_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
       
  2928 {
       
  2929 	struct net_device *netdev = pci_get_drvdata(pdev);
       
  2930 	struct nic *nic = netdev_priv(netdev);
       
  2931 
       
  2932 	/* Similar to calling e100_down(), but avoids adpater I/O. */
       
  2933 	netdev->stop(netdev);
       
  2934 
       
  2935     if (!nic->ethercat) {
       
  2936         /* Detach; put netif into state similar to hotplug unplug. */
       
  2937         netif_poll_enable(netdev);
       
  2938         netif_device_detach(netdev);
       
  2939     }
       
  2940 
       
  2941 	/* Request a slot reset. */
       
  2942 	return PCI_ERS_RESULT_NEED_RESET;
       
  2943 }
       
  2944 
       
  2945 /**
       
  2946  * e100_io_slot_reset - called after the pci bus has been reset.
       
  2947  * @pdev: Pointer to PCI device
       
  2948  *
       
  2949  * Restart the card from scratch.
       
  2950  */
       
  2951 static pci_ers_result_t e100_io_slot_reset(struct pci_dev *pdev)
       
  2952 {
       
  2953 	struct net_device *netdev = pci_get_drvdata(pdev);
       
  2954 	struct nic *nic = netdev_priv(netdev);
       
  2955 
       
  2956 	if (pci_enable_device(pdev)) {
       
  2957 		printk(KERN_ERR "e100: Cannot re-enable PCI device after reset.\n");
       
  2958 		return PCI_ERS_RESULT_DISCONNECT;
       
  2959 	}
       
  2960 	pci_set_master(pdev);
       
  2961 
       
  2962 	/* Only one device per card can do a reset */
       
  2963 	if (0 != PCI_FUNC(pdev->devfn))
       
  2964 		return PCI_ERS_RESULT_RECOVERED;
       
  2965 	e100_hw_reset(nic);
       
  2966 	e100_phy_init(nic);
       
  2967 
       
  2968 	return PCI_ERS_RESULT_RECOVERED;
       
  2969 }
       
  2970 
       
  2971 /**
       
  2972  * e100_io_resume - resume normal operations
       
  2973  * @pdev: Pointer to PCI device
       
  2974  *
       
  2975  * Resume normal operations after an error recovery
       
  2976  * sequence has been completed.
       
  2977  */
       
  2978 static void e100_io_resume(struct pci_dev *pdev)
       
  2979 {
       
  2980 	struct net_device *netdev = pci_get_drvdata(pdev);
       
  2981 	struct nic *nic = netdev_priv(netdev);
       
  2982 
       
  2983 	/* ack any pending wake events, disable PME */
       
  2984 	pci_enable_wake(pdev, 0, 0);
       
  2985 
       
  2986     if (!nic->ethercat)
       
  2987         netif_device_attach(netdev);
       
  2988 	if (nic->ethercat || netif_running(netdev)) {
       
  2989 		e100_open(netdev);
       
  2990 		mod_timer(&nic->watchdog, jiffies);
       
  2991 	}
       
  2992 }
       
  2993 
       
  2994 static struct pci_error_handlers e100_err_handler = {
       
  2995 	.error_detected = e100_io_error_detected,
       
  2996 	.slot_reset = e100_io_slot_reset,
       
  2997 	.resume = e100_io_resume,
       
  2998 };
       
  2999 
       
  3000 static struct pci_driver e100_driver = {
       
  3001 	.name =         DRV_NAME,
       
  3002 	.id_table =     e100_id_table,
       
  3003 	.probe =        e100_probe,
       
  3004 	.remove =       __devexit_p(e100_remove),
       
  3005 #ifdef CONFIG_PM
       
  3006 	.suspend =      e100_suspend,
       
  3007 	.resume =       e100_resume,
       
  3008 #endif
       
  3009 	.shutdown =     e100_shutdown,
       
  3010 	.err_handler = &e100_err_handler,
       
  3011 };
       
  3012 
       
  3013 static int __init e100_init_module(void)
       
  3014 {
       
  3015     struct nic *nic;
       
  3016 
       
  3017     printk(KERN_INFO DRV_NAME " " DRV_DESCRIPTION " " DRV_VERSION
       
  3018             ", master " EC_MASTER_VERSION "\n");
       
  3019 	printk(KERN_INFO DRV_NAME " ec_device_index is %i\n", ec_device_index);
       
  3020 
       
  3021 	if (pci_module_init(&e100_driver) < 0) {
       
  3022 		printk(KERN_ERR DRV_NAME " Failed to init PCI module.\n");
       
  3023 		goto out_return;
       
  3024 	}
       
  3025 
       
  3026 	if (e100_ec_netdev) {
       
  3027         nic = netdev_priv(e100_ec_netdev);
       
  3028 		printk(KERN_INFO DRV_NAME " Registering EtherCAT device...\n");
       
  3029 		if (!(nic->ecdev = ecdev_register(ec_device_master_index,
       
  3030                         e100_ec_netdev, e100_ec_poll, THIS_MODULE))) {
       
  3031 			printk(KERN_ERR DRV_NAME " Failed to register EtherCAT device!\n");
       
  3032 			goto out_pci;
       
  3033 		}
       
  3034 		printk(KERN_INFO DRV_NAME " Opening EtherCAT device...\n");
       
  3035 		if (ecdev_open(nic->ecdev)) {
       
  3036 			printk(KERN_ERR DRV_NAME " Failed to open EtherCAT device!\n");
       
  3037 			goto out_unregister;
       
  3038 		}
       
  3039 
       
  3040 		printk(KERN_INFO DRV_NAME " EtherCAT device ready.\n");
       
  3041 	} else {
       
  3042 		printk(KERN_WARNING DRV_NAME " No EtherCAT device registered!\n");
       
  3043 	}
       
  3044 
       
  3045 	return 0;
       
  3046 
       
  3047 out_unregister:
       
  3048 	printk(KERN_INFO DRV_NAME " Unregistering EtherCAT device...\n");
       
  3049 	ecdev_unregister(ec_device_master_index, nic->ecdev);
       
  3050 out_pci:
       
  3051 	pci_unregister_driver(&e100_driver);
       
  3052 out_return:
       
  3053 	return -1;
       
  3054 }
       
  3055 
       
  3056 static void __exit e100_cleanup_module(void)
       
  3057 {
       
  3058 	printk(KERN_INFO DRV_NAME " Cleaning up module...\n");
       
  3059 
       
  3060 	if (e100_ec_netdev) {
       
  3061         struct nic *nic = netdev_priv(e100_ec_netdev);
       
  3062 		printk(KERN_INFO DRV_NAME " Closing EtherCAT device...\n");
       
  3063 		ecdev_close(nic->ecdev);
       
  3064 		printk(KERN_INFO DRV_NAME " Unregistering EtherCAT device...\n");
       
  3065 		ecdev_unregister(ec_device_master_index, nic->ecdev);
       
  3066 	}
       
  3067 
       
  3068 	pci_unregister_driver(&e100_driver);
       
  3069 
       
  3070 	printk(KERN_INFO DRV_NAME " module cleaned up.\n");
       
  3071 }
       
  3072 
       
  3073 module_init(e100_init_module);
       
  3074 module_exit(e100_cleanup_module);