devices/e1000/e1000_main-2.6.29-ethercat.c
branchstable-1.5
changeset 2161 072c172e6a85
child 2421 bc2d4bf9cbe5
equal deleted inserted replaced
2155:11db674389b1 2161:072c172e6a85
       
     1 /*******************************************************************************
       
     2 
       
     3   Intel PRO/1000 Linux driver
       
     4   Copyright(c) 1999 - 2006 Intel Corporation.
       
     5 
       
     6   This program is free software; you can redistribute it and/or modify it
       
     7   under the terms and conditions of the GNU General Public License,
       
     8   version 2, as published by the Free Software Foundation.
       
     9 
       
    10   This program is distributed in the hope it will be useful, but WITHOUT
       
    11   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
       
    12   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
       
    13   more details.
       
    14 
       
    15   You should have received a copy of the GNU General Public License along with
       
    16   this program; if not, write to the Free Software Foundation, Inc.,
       
    17   51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
       
    18 
       
    19   The full GNU General Public License is included in this distribution in
       
    20   the file called "COPYING".
       
    21 
       
    22   Contact Information:
       
    23   Linux NICS <linux.nics@intel.com>
       
    24   e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
       
    25   Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
       
    26 
       
    27 *******************************************************************************/
       
    28 
       
    29 #include "e1000-2.6.29-ethercat.h"
       
    30 #include <net/ip6_checksum.h>
       
    31 
       
    32 char e1000_driver_name[] = "ec_e1000";
       
    33 static char e1000_driver_string[] = "Intel(R) PRO/1000 Network Driver";
       
    34 #define DRV_VERSION "7.3.21-k3-NAPI"
       
    35 const char e1000_driver_version[] = DRV_VERSION;
       
    36 static const char e1000_copyright[] = "Copyright (c) 1999-2006 Intel Corporation.";
       
    37 
       
    38 /* e1000_pci_tbl - PCI Device ID Table
       
    39  *
       
    40  * Last entry must be all 0s
       
    41  *
       
    42  * Macro expands to...
       
    43  *   {PCI_DEVICE(PCI_VENDOR_ID_INTEL, device_id)}
       
    44  */
       
    45 static struct pci_device_id e1000_pci_tbl[] = {
       
    46 	INTEL_E1000_ETHERNET_DEVICE(0x1000),
       
    47 	INTEL_E1000_ETHERNET_DEVICE(0x1001),
       
    48 	INTEL_E1000_ETHERNET_DEVICE(0x1004),
       
    49 	INTEL_E1000_ETHERNET_DEVICE(0x1008),
       
    50 	INTEL_E1000_ETHERNET_DEVICE(0x1009),
       
    51 	INTEL_E1000_ETHERNET_DEVICE(0x100C),
       
    52 	INTEL_E1000_ETHERNET_DEVICE(0x100D),
       
    53 	INTEL_E1000_ETHERNET_DEVICE(0x100E),
       
    54 	INTEL_E1000_ETHERNET_DEVICE(0x100F),
       
    55 	INTEL_E1000_ETHERNET_DEVICE(0x1010),
       
    56 	INTEL_E1000_ETHERNET_DEVICE(0x1011),
       
    57 	INTEL_E1000_ETHERNET_DEVICE(0x1012),
       
    58 	INTEL_E1000_ETHERNET_DEVICE(0x1013),
       
    59 	INTEL_E1000_ETHERNET_DEVICE(0x1014),
       
    60 	INTEL_E1000_ETHERNET_DEVICE(0x1015),
       
    61 	INTEL_E1000_ETHERNET_DEVICE(0x1016),
       
    62 	INTEL_E1000_ETHERNET_DEVICE(0x1017),
       
    63 	INTEL_E1000_ETHERNET_DEVICE(0x1018),
       
    64 	INTEL_E1000_ETHERNET_DEVICE(0x1019),
       
    65 	INTEL_E1000_ETHERNET_DEVICE(0x101A),
       
    66 	INTEL_E1000_ETHERNET_DEVICE(0x101D),
       
    67 	INTEL_E1000_ETHERNET_DEVICE(0x101E),
       
    68 	INTEL_E1000_ETHERNET_DEVICE(0x1026),
       
    69 	INTEL_E1000_ETHERNET_DEVICE(0x1027),
       
    70 	INTEL_E1000_ETHERNET_DEVICE(0x1028),
       
    71 	INTEL_E1000_ETHERNET_DEVICE(0x1075),
       
    72 	INTEL_E1000_ETHERNET_DEVICE(0x1076),
       
    73 	INTEL_E1000_ETHERNET_DEVICE(0x1077),
       
    74 	INTEL_E1000_ETHERNET_DEVICE(0x1078),
       
    75 	INTEL_E1000_ETHERNET_DEVICE(0x1079),
       
    76 	INTEL_E1000_ETHERNET_DEVICE(0x107A),
       
    77 	INTEL_E1000_ETHERNET_DEVICE(0x107B),
       
    78 	INTEL_E1000_ETHERNET_DEVICE(0x107C),
       
    79 	INTEL_E1000_ETHERNET_DEVICE(0x108A),
       
    80 	INTEL_E1000_ETHERNET_DEVICE(0x1099),
       
    81 	INTEL_E1000_ETHERNET_DEVICE(0x10B5),
       
    82 	/* required last entry */
       
    83 	{0,}
       
    84 };
       
    85 
       
    86 // do not auto-load driver
       
    87 // MODULE_DEVICE_TABLE(pci, e1000_pci_tbl);
       
    88 
       
    89 int e1000_up(struct e1000_adapter *adapter);
       
    90 void e1000_down(struct e1000_adapter *adapter);
       
    91 void e1000_reinit_locked(struct e1000_adapter *adapter);
       
    92 void e1000_reset(struct e1000_adapter *adapter);
       
    93 int e1000_set_spd_dplx(struct e1000_adapter *adapter, u16 spddplx);
       
    94 int e1000_setup_all_tx_resources(struct e1000_adapter *adapter);
       
    95 int e1000_setup_all_rx_resources(struct e1000_adapter *adapter);
       
    96 void e1000_free_all_tx_resources(struct e1000_adapter *adapter);
       
    97 void e1000_free_all_rx_resources(struct e1000_adapter *adapter);
       
    98 static int e1000_setup_tx_resources(struct e1000_adapter *adapter,
       
    99                              struct e1000_tx_ring *txdr);
       
   100 static int e1000_setup_rx_resources(struct e1000_adapter *adapter,
       
   101                              struct e1000_rx_ring *rxdr);
       
   102 static void e1000_free_tx_resources(struct e1000_adapter *adapter,
       
   103                              struct e1000_tx_ring *tx_ring);
       
   104 static void e1000_free_rx_resources(struct e1000_adapter *adapter,
       
   105                              struct e1000_rx_ring *rx_ring);
       
   106 void e1000_update_stats(struct e1000_adapter *adapter);
       
   107 
       
   108 static int e1000_init_module(void);
       
   109 static void e1000_exit_module(void);
       
   110 static int e1000_probe(struct pci_dev *pdev, const struct pci_device_id *ent);
       
   111 static void __devexit e1000_remove(struct pci_dev *pdev);
       
   112 static int e1000_alloc_queues(struct e1000_adapter *adapter);
       
   113 static int e1000_sw_init(struct e1000_adapter *adapter);
       
   114 static int e1000_open(struct net_device *netdev);
       
   115 static int e1000_close(struct net_device *netdev);
       
   116 static void e1000_configure_tx(struct e1000_adapter *adapter);
       
   117 static void e1000_configure_rx(struct e1000_adapter *adapter);
       
   118 static void e1000_setup_rctl(struct e1000_adapter *adapter);
       
   119 static void e1000_clean_all_tx_rings(struct e1000_adapter *adapter);
       
   120 static void e1000_clean_all_rx_rings(struct e1000_adapter *adapter);
       
   121 static void e1000_clean_tx_ring(struct e1000_adapter *adapter,
       
   122                                 struct e1000_tx_ring *tx_ring);
       
   123 static void e1000_clean_rx_ring(struct e1000_adapter *adapter,
       
   124                                 struct e1000_rx_ring *rx_ring);
       
   125 static void e1000_set_rx_mode(struct net_device *netdev);
       
   126 static void e1000_update_phy_info(unsigned long data);
       
   127 static void e1000_watchdog(unsigned long data);
       
   128 static void e1000_82547_tx_fifo_stall(unsigned long data);
       
   129 static int e1000_xmit_frame(struct sk_buff *skb, struct net_device *netdev);
       
   130 static struct net_device_stats * e1000_get_stats(struct net_device *netdev);
       
   131 static int e1000_change_mtu(struct net_device *netdev, int new_mtu);
       
   132 static int e1000_set_mac(struct net_device *netdev, void *p);
       
   133 void ec_poll(struct net_device *);
       
   134 static irqreturn_t e1000_intr(int irq, void *data);
       
   135 static irqreturn_t e1000_intr_msi(int irq, void *data);
       
   136 static bool e1000_clean_tx_irq(struct e1000_adapter *adapter,
       
   137 			       struct e1000_tx_ring *tx_ring);
       
   138 static int e1000_clean(struct napi_struct *napi, int budget);
       
   139 static bool e1000_clean_rx_irq(struct e1000_adapter *adapter,
       
   140 			       struct e1000_rx_ring *rx_ring,
       
   141 			       int *work_done, int work_to_do);
       
   142 static void e1000_alloc_rx_buffers(struct e1000_adapter *adapter,
       
   143                                    struct e1000_rx_ring *rx_ring,
       
   144 				   int cleaned_count);
       
   145 static int e1000_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd);
       
   146 static int e1000_mii_ioctl(struct net_device *netdev, struct ifreq *ifr,
       
   147 			   int cmd);
       
   148 static void e1000_enter_82542_rst(struct e1000_adapter *adapter);
       
   149 static void e1000_leave_82542_rst(struct e1000_adapter *adapter);
       
   150 static void e1000_tx_timeout(struct net_device *dev);
       
   151 static void e1000_reset_task(struct work_struct *work);
       
   152 static void e1000_smartspeed(struct e1000_adapter *adapter);
       
   153 static int e1000_82547_fifo_workaround(struct e1000_adapter *adapter,
       
   154                                        struct sk_buff *skb);
       
   155 
       
   156 static void e1000_vlan_rx_register(struct net_device *netdev, struct vlan_group *grp);
       
   157 static void e1000_vlan_rx_add_vid(struct net_device *netdev, u16 vid);
       
   158 static void e1000_vlan_rx_kill_vid(struct net_device *netdev, u16 vid);
       
   159 static void e1000_restore_vlan(struct e1000_adapter *adapter);
       
   160 
       
   161 static int e1000_suspend(struct pci_dev *pdev, pm_message_t state);
       
   162 #ifdef CONFIG_PM
       
   163 static int e1000_resume(struct pci_dev *pdev);
       
   164 #endif
       
   165 static void e1000_shutdown(struct pci_dev *pdev);
       
   166 
       
   167 #ifdef CONFIG_NET_POLL_CONTROLLER
       
   168 /* for netdump / net console */
       
   169 static void e1000_netpoll (struct net_device *netdev);
       
   170 #endif
       
   171 
       
   172 #define COPYBREAK_DEFAULT 256
       
   173 static unsigned int copybreak __read_mostly = COPYBREAK_DEFAULT;
       
   174 module_param(copybreak, uint, 0644);
       
   175 MODULE_PARM_DESC(copybreak,
       
   176 	"Maximum size of packet that is copied to a new buffer on receive");
       
   177 
       
   178 static pci_ers_result_t e1000_io_error_detected(struct pci_dev *pdev,
       
   179                      pci_channel_state_t state);
       
   180 static pci_ers_result_t e1000_io_slot_reset(struct pci_dev *pdev);
       
   181 static void e1000_io_resume(struct pci_dev *pdev);
       
   182 
       
   183 static struct pci_error_handlers e1000_err_handler = {
       
   184 	.error_detected = e1000_io_error_detected,
       
   185 	.slot_reset = e1000_io_slot_reset,
       
   186 	.resume = e1000_io_resume,
       
   187 };
       
   188 
       
   189 static struct pci_driver e1000_driver = {
       
   190 	.name     = e1000_driver_name,
       
   191 	.id_table = e1000_pci_tbl,
       
   192 	.probe    = e1000_probe,
       
   193 	.remove   = __devexit_p(e1000_remove),
       
   194 #ifdef CONFIG_PM
       
   195 	/* Power Managment Hooks */
       
   196 	.suspend  = e1000_suspend,
       
   197 	.resume   = e1000_resume,
       
   198 #endif
       
   199 	.shutdown = e1000_shutdown,
       
   200 	.err_handler = &e1000_err_handler
       
   201 };
       
   202 
       
   203 MODULE_AUTHOR("Florian Pose <fp@igh-essen.com>");
       
   204 MODULE_DESCRIPTION("EtherCAT-capable Intel(R) PRO/1000 Network Driver");
       
   205 MODULE_LICENSE("GPL");
       
   206 MODULE_VERSION(DRV_VERSION);
       
   207 
       
   208 static int debug = NETIF_MSG_DRV | NETIF_MSG_PROBE;
       
   209 module_param(debug, int, 0);
       
   210 MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
       
   211 
       
   212 /**
       
   213  * e1000_init_module - Driver Registration Routine
       
   214  *
       
   215  * e1000_init_module is the first routine called when the driver is
       
   216  * loaded. All it does is register with the PCI subsystem.
       
   217  **/
       
   218 
       
   219 static int __init e1000_init_module(void)
       
   220 {
       
   221 	int ret;
       
   222 	printk(KERN_INFO "%s - version %s\n",
       
   223 	       e1000_driver_string, e1000_driver_version);
       
   224 
       
   225 	printk(KERN_INFO "%s\n", e1000_copyright);
       
   226 
       
   227 	ret = pci_register_driver(&e1000_driver);
       
   228 	if (copybreak != COPYBREAK_DEFAULT) {
       
   229 		if (copybreak == 0)
       
   230 			printk(KERN_INFO "e1000: copybreak disabled\n");
       
   231 		else
       
   232 			printk(KERN_INFO "e1000: copybreak enabled for "
       
   233 			       "packets <= %u bytes\n", copybreak);
       
   234 	}
       
   235 	return ret;
       
   236 }
       
   237 
       
   238 module_init(e1000_init_module);
       
   239 
       
   240 /**
       
   241  * e1000_exit_module - Driver Exit Cleanup Routine
       
   242  *
       
   243  * e1000_exit_module is called just before the driver is removed
       
   244  * from memory.
       
   245  **/
       
   246 
       
   247 static void __exit e1000_exit_module(void)
       
   248 {
       
   249 	pci_unregister_driver(&e1000_driver);
       
   250 }
       
   251 
       
   252 module_exit(e1000_exit_module);
       
   253 
       
   254 static int e1000_request_irq(struct e1000_adapter *adapter)
       
   255 {
       
   256 	struct e1000_hw *hw = &adapter->hw;
       
   257 	struct net_device *netdev = adapter->netdev;
       
   258 	irq_handler_t handler = e1000_intr;
       
   259 	int irq_flags = IRQF_SHARED;
       
   260 	int err;
       
   261 
       
   262  	if (adapter->ecdev)
       
   263  		return 0;
       
   264  
       
   265 	if (hw->mac_type >= e1000_82571) {
       
   266 		adapter->have_msi = !pci_enable_msi(adapter->pdev);
       
   267 		if (adapter->have_msi) {
       
   268 			handler = e1000_intr_msi;
       
   269 			irq_flags = 0;
       
   270 		}
       
   271 	}
       
   272 
       
   273 	err = request_irq(adapter->pdev->irq, handler, irq_flags, netdev->name,
       
   274 	                  netdev);
       
   275 	if (err) {
       
   276 		if (adapter->have_msi)
       
   277 			pci_disable_msi(adapter->pdev);
       
   278 		DPRINTK(PROBE, ERR,
       
   279 		        "Unable to allocate interrupt Error: %d\n", err);
       
   280 	}
       
   281 
       
   282 	return err;
       
   283 }
       
   284 
       
   285 static void e1000_free_irq(struct e1000_adapter *adapter)
       
   286 {
       
   287 	struct net_device *netdev = adapter->netdev;
       
   288 
       
   289 	if (adapter->ecdev)
       
   290 		return;
       
   291 
       
   292 	free_irq(adapter->pdev->irq, netdev);
       
   293 
       
   294 	if (adapter->have_msi)
       
   295 		pci_disable_msi(adapter->pdev);
       
   296 }
       
   297 
       
   298 /**
       
   299  * e1000_irq_disable - Mask off interrupt generation on the NIC
       
   300  * @adapter: board private structure
       
   301  **/
       
   302 
       
   303 static void e1000_irq_disable(struct e1000_adapter *adapter)
       
   304 {
       
   305 	struct e1000_hw *hw = &adapter->hw;
       
   306 
       
   307 	if (adapter->ecdev)
       
   308 		return;
       
   309 
       
   310 	ew32(IMC, ~0);
       
   311 	E1000_WRITE_FLUSH();
       
   312 	synchronize_irq(adapter->pdev->irq);
       
   313 }
       
   314 
       
   315 /**
       
   316  * e1000_irq_enable - Enable default interrupt generation settings
       
   317  * @adapter: board private structure
       
   318  **/
       
   319 
       
   320 static void e1000_irq_enable(struct e1000_adapter *adapter)
       
   321 {
       
   322 	struct e1000_hw *hw = &adapter->hw;
       
   323 
       
   324 	if (adapter->ecdev)
       
   325 		return;
       
   326  
       
   327 	ew32(IMS, IMS_ENABLE_MASK);
       
   328 	E1000_WRITE_FLUSH();
       
   329 }
       
   330 
       
   331 static void e1000_update_mng_vlan(struct e1000_adapter *adapter)
       
   332 {
       
   333 	struct e1000_hw *hw = &adapter->hw;
       
   334 	struct net_device *netdev = adapter->netdev;
       
   335 	u16 vid = hw->mng_cookie.vlan_id;
       
   336 	u16 old_vid = adapter->mng_vlan_id;
       
   337 	if (adapter->vlgrp) {
       
   338 		if (!vlan_group_get_device(adapter->vlgrp, vid)) {
       
   339 			if (hw->mng_cookie.status &
       
   340 				E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT) {
       
   341 				e1000_vlan_rx_add_vid(netdev, vid);
       
   342 				adapter->mng_vlan_id = vid;
       
   343 			} else
       
   344 				adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
       
   345 
       
   346 			if ((old_vid != (u16)E1000_MNG_VLAN_NONE) &&
       
   347 					(vid != old_vid) &&
       
   348 			    !vlan_group_get_device(adapter->vlgrp, old_vid))
       
   349 				e1000_vlan_rx_kill_vid(netdev, old_vid);
       
   350 		} else
       
   351 			adapter->mng_vlan_id = vid;
       
   352 	}
       
   353 }
       
   354 
       
   355 /**
       
   356  * e1000_release_hw_control - release control of the h/w to f/w
       
   357  * @adapter: address of board private structure
       
   358  *
       
   359  * e1000_release_hw_control resets {CTRL_EXT|FWSM}:DRV_LOAD bit.
       
   360  * For ASF and Pass Through versions of f/w this means that the
       
   361  * driver is no longer loaded. For AMT version (only with 82573) i
       
   362  * of the f/w this means that the network i/f is closed.
       
   363  *
       
   364  **/
       
   365 
       
   366 static void e1000_release_hw_control(struct e1000_adapter *adapter)
       
   367 {
       
   368 	u32 ctrl_ext;
       
   369 	u32 swsm;
       
   370 	struct e1000_hw *hw = &adapter->hw;
       
   371 
       
   372 	/* Let firmware taken over control of h/w */
       
   373 	switch (hw->mac_type) {
       
   374 	case e1000_82573:
       
   375 		swsm = er32(SWSM);
       
   376 		ew32(SWSM, swsm & ~E1000_SWSM_DRV_LOAD);
       
   377 		break;
       
   378 	case e1000_82571:
       
   379 	case e1000_82572:
       
   380 	case e1000_80003es2lan:
       
   381 	case e1000_ich8lan:
       
   382 		ctrl_ext = er32(CTRL_EXT);
       
   383 		ew32(CTRL_EXT, ctrl_ext & ~E1000_CTRL_EXT_DRV_LOAD);
       
   384 		break;
       
   385 	default:
       
   386 		break;
       
   387 	}
       
   388 }
       
   389 
       
   390 /**
       
   391  * e1000_get_hw_control - get control of the h/w from f/w
       
   392  * @adapter: address of board private structure
       
   393  *
       
   394  * e1000_get_hw_control sets {CTRL_EXT|FWSM}:DRV_LOAD bit.
       
   395  * For ASF and Pass Through versions of f/w this means that
       
   396  * the driver is loaded. For AMT version (only with 82573)
       
   397  * of the f/w this means that the network i/f is open.
       
   398  *
       
   399  **/
       
   400 
       
   401 static void e1000_get_hw_control(struct e1000_adapter *adapter)
       
   402 {
       
   403 	u32 ctrl_ext;
       
   404 	u32 swsm;
       
   405 	struct e1000_hw *hw = &adapter->hw;
       
   406 
       
   407 	/* Let firmware know the driver has taken over */
       
   408 	switch (hw->mac_type) {
       
   409 	case e1000_82573:
       
   410 		swsm = er32(SWSM);
       
   411 		ew32(SWSM, swsm | E1000_SWSM_DRV_LOAD);
       
   412 		break;
       
   413 	case e1000_82571:
       
   414 	case e1000_82572:
       
   415 	case e1000_80003es2lan:
       
   416 	case e1000_ich8lan:
       
   417 		ctrl_ext = er32(CTRL_EXT);
       
   418 		ew32(CTRL_EXT, ctrl_ext | E1000_CTRL_EXT_DRV_LOAD);
       
   419 		break;
       
   420 	default:
       
   421 		break;
       
   422 	}
       
   423 }
       
   424 
       
   425 static void e1000_init_manageability(struct e1000_adapter *adapter)
       
   426 {
       
   427 	struct e1000_hw *hw = &adapter->hw;
       
   428 
       
   429 	if (adapter->en_mng_pt) {
       
   430 		u32 manc = er32(MANC);
       
   431 
       
   432 		/* disable hardware interception of ARP */
       
   433 		manc &= ~(E1000_MANC_ARP_EN);
       
   434 
       
   435 		/* enable receiving management packets to the host */
       
   436 		/* this will probably generate destination unreachable messages
       
   437 		 * from the host OS, but the packets will be handled on SMBUS */
       
   438 		if (hw->has_manc2h) {
       
   439 			u32 manc2h = er32(MANC2H);
       
   440 
       
   441 			manc |= E1000_MANC_EN_MNG2HOST;
       
   442 #define E1000_MNG2HOST_PORT_623 (1 << 5)
       
   443 #define E1000_MNG2HOST_PORT_664 (1 << 6)
       
   444 			manc2h |= E1000_MNG2HOST_PORT_623;
       
   445 			manc2h |= E1000_MNG2HOST_PORT_664;
       
   446 			ew32(MANC2H, manc2h);
       
   447 		}
       
   448 
       
   449 		ew32(MANC, manc);
       
   450 	}
       
   451 }
       
   452 
       
   453 static void e1000_release_manageability(struct e1000_adapter *adapter)
       
   454 {
       
   455 	struct e1000_hw *hw = &adapter->hw;
       
   456 
       
   457 	if (adapter->en_mng_pt) {
       
   458 		u32 manc = er32(MANC);
       
   459 
       
   460 		/* re-enable hardware interception of ARP */
       
   461 		manc |= E1000_MANC_ARP_EN;
       
   462 
       
   463 		if (hw->has_manc2h)
       
   464 			manc &= ~E1000_MANC_EN_MNG2HOST;
       
   465 
       
   466 		/* don't explicitly have to mess with MANC2H since
       
   467 		 * MANC has an enable disable that gates MANC2H */
       
   468 
       
   469 		ew32(MANC, manc);
       
   470 	}
       
   471 }
       
   472 
       
   473 /**
       
   474  * e1000_configure - configure the hardware for RX and TX
       
   475  * @adapter = private board structure
       
   476  **/
       
   477 static void e1000_configure(struct e1000_adapter *adapter)
       
   478 {
       
   479 	struct net_device *netdev = adapter->netdev;
       
   480 	int i;
       
   481 
       
   482 	e1000_set_rx_mode(netdev);
       
   483 
       
   484 	e1000_restore_vlan(adapter);
       
   485 	e1000_init_manageability(adapter);
       
   486 
       
   487 	e1000_configure_tx(adapter);
       
   488 	e1000_setup_rctl(adapter);
       
   489 	e1000_configure_rx(adapter);
       
   490 	/* call E1000_DESC_UNUSED which always leaves
       
   491 	 * at least 1 descriptor unused to make sure
       
   492 	 * next_to_use != next_to_clean */
       
   493 	for (i = 0; i < adapter->num_rx_queues; i++) {
       
   494 		struct e1000_rx_ring *ring = &adapter->rx_ring[i];
       
   495 		if (adapter->ecdev) {
       
   496 			/* fill rx ring completely! */
       
   497 			adapter->alloc_rx_buf(adapter, ring, ring->count);
       
   498 		} else {
       
   499             /* this one leaves the last ring element unallocated! */
       
   500 			adapter->alloc_rx_buf(adapter, ring,
       
   501 					E1000_DESC_UNUSED(ring));
       
   502 		}
       
   503 	}
       
   504 
       
   505 	adapter->tx_queue_len = netdev->tx_queue_len;
       
   506 }
       
   507 
       
   508 int e1000_up(struct e1000_adapter *adapter)
       
   509 {
       
   510 	struct e1000_hw *hw = &adapter->hw;
       
   511 
       
   512 	/* hardware has been reset, we need to reload some things */
       
   513 	e1000_configure(adapter);
       
   514 
       
   515 	clear_bit(__E1000_DOWN, &adapter->flags);
       
   516 
       
   517 	if (!adapter->ecdev) {
       
   518 		napi_enable(&adapter->napi);
       
   519 
       
   520 		e1000_irq_enable(adapter);
       
   521 
       
   522 		/* fire a link change interrupt to start the watchdog */
       
   523 		ew32(ICS, E1000_ICS_LSC);
       
   524 	}
       
   525 	return 0;
       
   526 }
       
   527 
       
   528 /**
       
   529  * e1000_power_up_phy - restore link in case the phy was powered down
       
   530  * @adapter: address of board private structure
       
   531  *
       
   532  * The phy may be powered down to save power and turn off link when the
       
   533  * driver is unloaded and wake on lan is not enabled (among others)
       
   534  * *** this routine MUST be followed by a call to e1000_reset ***
       
   535  *
       
   536  **/
       
   537 
       
   538 void e1000_power_up_phy(struct e1000_adapter *adapter)
       
   539 {
       
   540 	struct e1000_hw *hw = &adapter->hw;
       
   541 	u16 mii_reg = 0;
       
   542 
       
   543 	/* Just clear the power down bit to wake the phy back up */
       
   544 	if (hw->media_type == e1000_media_type_copper) {
       
   545 		/* according to the manual, the phy will retain its
       
   546 		 * settings across a power-down/up cycle */
       
   547 		e1000_read_phy_reg(hw, PHY_CTRL, &mii_reg);
       
   548 		mii_reg &= ~MII_CR_POWER_DOWN;
       
   549 		e1000_write_phy_reg(hw, PHY_CTRL, mii_reg);
       
   550 	}
       
   551 }
       
   552 
       
   553 static void e1000_power_down_phy(struct e1000_adapter *adapter)
       
   554 {
       
   555 	struct e1000_hw *hw = &adapter->hw;
       
   556 
       
   557 	/* Power down the PHY so no link is implied when interface is down *
       
   558 	 * The PHY cannot be powered down if any of the following is true *
       
   559 	 * (a) WoL is enabled
       
   560 	 * (b) AMT is active
       
   561 	 * (c) SoL/IDER session is active */
       
   562 	if (!adapter->wol && hw->mac_type >= e1000_82540 &&
       
   563 	   hw->media_type == e1000_media_type_copper) {
       
   564 		u16 mii_reg = 0;
       
   565 
       
   566 		switch (hw->mac_type) {
       
   567 		case e1000_82540:
       
   568 		case e1000_82545:
       
   569 		case e1000_82545_rev_3:
       
   570 		case e1000_82546:
       
   571 		case e1000_82546_rev_3:
       
   572 		case e1000_82541:
       
   573 		case e1000_82541_rev_2:
       
   574 		case e1000_82547:
       
   575 		case e1000_82547_rev_2:
       
   576 			if (er32(MANC) & E1000_MANC_SMBUS_EN)
       
   577 				goto out;
       
   578 			break;
       
   579 		case e1000_82571:
       
   580 		case e1000_82572:
       
   581 		case e1000_82573:
       
   582 		case e1000_80003es2lan:
       
   583 		case e1000_ich8lan:
       
   584 			if (e1000_check_mng_mode(hw) ||
       
   585 			    e1000_check_phy_reset_block(hw))
       
   586 				goto out;
       
   587 			break;
       
   588 		default:
       
   589 			goto out;
       
   590 		}
       
   591 		e1000_read_phy_reg(hw, PHY_CTRL, &mii_reg);
       
   592 		mii_reg |= MII_CR_POWER_DOWN;
       
   593 		e1000_write_phy_reg(hw, PHY_CTRL, mii_reg);
       
   594 		mdelay(1);
       
   595 	}
       
   596 out:
       
   597 	return;
       
   598 }
       
   599 
       
   600 void e1000_down(struct e1000_adapter *adapter)
       
   601 {
       
   602 	struct net_device *netdev = adapter->netdev;
       
   603 
       
   604 	/* signal that we're down so the interrupt handler does not
       
   605 	 * reschedule our watchdog timer */
       
   606 	set_bit(__E1000_DOWN, &adapter->flags);
       
   607 
       
   608 	if (!adapter->ecdev) {
       
   609 		napi_disable(&adapter->napi);
       
   610 
       
   611 		e1000_irq_disable(adapter);
       
   612 
       
   613 		del_timer_sync(&adapter->tx_fifo_stall_timer);
       
   614 		del_timer_sync(&adapter->watchdog_timer);
       
   615 		del_timer_sync(&adapter->phy_info_timer);
       
   616 	}
       
   617 
       
   618 	netdev->tx_queue_len = adapter->tx_queue_len;
       
   619 	adapter->link_speed = 0;
       
   620 	adapter->link_duplex = 0;
       
   621  	if (!adapter->ecdev) {
       
   622 		netif_carrier_off(netdev);
       
   623 		netif_stop_queue(netdev);
       
   624 	}
       
   625 
       
   626 	e1000_reset(adapter);
       
   627 	e1000_clean_all_tx_rings(adapter);
       
   628 	e1000_clean_all_rx_rings(adapter);
       
   629 }
       
   630 
       
   631 void e1000_reinit_locked(struct e1000_adapter *adapter)
       
   632 {
       
   633 	WARN_ON(in_interrupt());
       
   634 	while (test_and_set_bit(__E1000_RESETTING, &adapter->flags))
       
   635 		msleep(1);
       
   636 	e1000_down(adapter);
       
   637 	e1000_up(adapter);
       
   638 	clear_bit(__E1000_RESETTING, &adapter->flags);
       
   639 }
       
   640 
       
   641 void e1000_reset(struct e1000_adapter *adapter)
       
   642 {
       
   643 	struct e1000_hw *hw = &adapter->hw;
       
   644 	u32 pba = 0, tx_space, min_tx_space, min_rx_space;
       
   645 	u16 fc_high_water_mark = E1000_FC_HIGH_DIFF;
       
   646 	bool legacy_pba_adjust = false;
       
   647 
       
   648 	/* Repartition Pba for greater than 9k mtu
       
   649 	 * To take effect CTRL.RST is required.
       
   650 	 */
       
   651 
       
   652 	switch (hw->mac_type) {
       
   653 	case e1000_82542_rev2_0:
       
   654 	case e1000_82542_rev2_1:
       
   655 	case e1000_82543:
       
   656 	case e1000_82544:
       
   657 	case e1000_82540:
       
   658 	case e1000_82541:
       
   659 	case e1000_82541_rev_2:
       
   660 		legacy_pba_adjust = true;
       
   661 		pba = E1000_PBA_48K;
       
   662 		break;
       
   663 	case e1000_82545:
       
   664 	case e1000_82545_rev_3:
       
   665 	case e1000_82546:
       
   666 	case e1000_82546_rev_3:
       
   667 		pba = E1000_PBA_48K;
       
   668 		break;
       
   669 	case e1000_82547:
       
   670 	case e1000_82547_rev_2:
       
   671 		legacy_pba_adjust = true;
       
   672 		pba = E1000_PBA_30K;
       
   673 		break;
       
   674 	case e1000_82571:
       
   675 	case e1000_82572:
       
   676 	case e1000_80003es2lan:
       
   677 		pba = E1000_PBA_38K;
       
   678 		break;
       
   679 	case e1000_82573:
       
   680 		pba = E1000_PBA_20K;
       
   681 		break;
       
   682 	case e1000_ich8lan:
       
   683 		pba = E1000_PBA_8K;
       
   684 	case e1000_undefined:
       
   685 	case e1000_num_macs:
       
   686 		break;
       
   687 	}
       
   688 
       
   689 	if (legacy_pba_adjust) {
       
   690 		if (adapter->netdev->mtu > E1000_RXBUFFER_8192)
       
   691 			pba -= 8; /* allocate more FIFO for Tx */
       
   692 
       
   693 		if (hw->mac_type == e1000_82547) {
       
   694 			adapter->tx_fifo_head = 0;
       
   695 			adapter->tx_head_addr = pba << E1000_TX_HEAD_ADDR_SHIFT;
       
   696 			adapter->tx_fifo_size =
       
   697 				(E1000_PBA_40K - pba) << E1000_PBA_BYTES_SHIFT;
       
   698 			atomic_set(&adapter->tx_fifo_stall, 0);
       
   699 		}
       
   700 	} else if (hw->max_frame_size > MAXIMUM_ETHERNET_FRAME_SIZE) {
       
   701 		/* adjust PBA for jumbo frames */
       
   702 		ew32(PBA, pba);
       
   703 
       
   704 		/* To maintain wire speed transmits, the Tx FIFO should be
       
   705 		 * large enough to accomodate two full transmit packets,
       
   706 		 * rounded up to the next 1KB and expressed in KB.  Likewise,
       
   707 		 * the Rx FIFO should be large enough to accomodate at least
       
   708 		 * one full receive packet and is similarly rounded up and
       
   709 		 * expressed in KB. */
       
   710 		pba = er32(PBA);
       
   711 		/* upper 16 bits has Tx packet buffer allocation size in KB */
       
   712 		tx_space = pba >> 16;
       
   713 		/* lower 16 bits has Rx packet buffer allocation size in KB */
       
   714 		pba &= 0xffff;
       
   715 		/* don't include ethernet FCS because hardware appends/strips */
       
   716 		min_rx_space = adapter->netdev->mtu + ENET_HEADER_SIZE +
       
   717 		               VLAN_TAG_SIZE;
       
   718 		min_tx_space = min_rx_space;
       
   719 		min_tx_space *= 2;
       
   720 		min_tx_space = ALIGN(min_tx_space, 1024);
       
   721 		min_tx_space >>= 10;
       
   722 		min_rx_space = ALIGN(min_rx_space, 1024);
       
   723 		min_rx_space >>= 10;
       
   724 
       
   725 		/* If current Tx allocation is less than the min Tx FIFO size,
       
   726 		 * and the min Tx FIFO size is less than the current Rx FIFO
       
   727 		 * allocation, take space away from current Rx allocation */
       
   728 		if (tx_space < min_tx_space &&
       
   729 		    ((min_tx_space - tx_space) < pba)) {
       
   730 			pba = pba - (min_tx_space - tx_space);
       
   731 
       
   732 			/* PCI/PCIx hardware has PBA alignment constraints */
       
   733 			switch (hw->mac_type) {
       
   734 			case e1000_82545 ... e1000_82546_rev_3:
       
   735 				pba &= ~(E1000_PBA_8K - 1);
       
   736 				break;
       
   737 			default:
       
   738 				break;
       
   739 			}
       
   740 
       
   741 			/* if short on rx space, rx wins and must trump tx
       
   742 			 * adjustment or use Early Receive if available */
       
   743 			if (pba < min_rx_space) {
       
   744 				switch (hw->mac_type) {
       
   745 				case e1000_82573:
       
   746 					/* ERT enabled in e1000_configure_rx */
       
   747 					break;
       
   748 				default:
       
   749 					pba = min_rx_space;
       
   750 					break;
       
   751 				}
       
   752 			}
       
   753 		}
       
   754 	}
       
   755 
       
   756 	ew32(PBA, pba);
       
   757 
       
   758 	/* flow control settings */
       
   759 	/* Set the FC high water mark to 90% of the FIFO size.
       
   760 	 * Required to clear last 3 LSB */
       
   761 	fc_high_water_mark = ((pba * 9216)/10) & 0xFFF8;
       
   762 	/* We can't use 90% on small FIFOs because the remainder
       
   763 	 * would be less than 1 full frame.  In this case, we size
       
   764 	 * it to allow at least a full frame above the high water
       
   765 	 *  mark. */
       
   766 	if (pba < E1000_PBA_16K)
       
   767 		fc_high_water_mark = (pba * 1024) - 1600;
       
   768 
       
   769 	hw->fc_high_water = fc_high_water_mark;
       
   770 	hw->fc_low_water = fc_high_water_mark - 8;
       
   771 	if (hw->mac_type == e1000_80003es2lan)
       
   772 		hw->fc_pause_time = 0xFFFF;
       
   773 	else
       
   774 		hw->fc_pause_time = E1000_FC_PAUSE_TIME;
       
   775 	hw->fc_send_xon = 1;
       
   776 	hw->fc = hw->original_fc;
       
   777 
       
   778 	/* Allow time for pending master requests to run */
       
   779 	e1000_reset_hw(hw);
       
   780 	if (hw->mac_type >= e1000_82544)
       
   781 		ew32(WUC, 0);
       
   782 
       
   783 	if (e1000_init_hw(hw))
       
   784 		DPRINTK(PROBE, ERR, "Hardware Error\n");
       
   785 	e1000_update_mng_vlan(adapter);
       
   786 
       
   787 	/* if (adapter->hwflags & HWFLAGS_PHY_PWR_BIT) { */
       
   788 	if (hw->mac_type >= e1000_82544 &&
       
   789 	    hw->mac_type <= e1000_82547_rev_2 &&
       
   790 	    hw->autoneg == 1 &&
       
   791 	    hw->autoneg_advertised == ADVERTISE_1000_FULL) {
       
   792 		u32 ctrl = er32(CTRL);
       
   793 		/* clear phy power management bit if we are in gig only mode,
       
   794 		 * which if enabled will attempt negotiation to 100Mb, which
       
   795 		 * can cause a loss of link at power off or driver unload */
       
   796 		ctrl &= ~E1000_CTRL_SWDPIN3;
       
   797 		ew32(CTRL, ctrl);
       
   798 	}
       
   799 
       
   800 	/* Enable h/w to recognize an 802.1Q VLAN Ethernet packet */
       
   801 	ew32(VET, ETHERNET_IEEE_VLAN_TYPE);
       
   802 
       
   803 	e1000_reset_adaptive(hw);
       
   804 	e1000_phy_get_info(hw, &adapter->phy_info);
       
   805 
       
   806 	if (!adapter->smart_power_down &&
       
   807 	    (hw->mac_type == e1000_82571 ||
       
   808 	     hw->mac_type == e1000_82572)) {
       
   809 		u16 phy_data = 0;
       
   810 		/* speed up time to link by disabling smart power down, ignore
       
   811 		 * the return value of this function because there is nothing
       
   812 		 * different we would do if it failed */
       
   813 		e1000_read_phy_reg(hw, IGP02E1000_PHY_POWER_MGMT,
       
   814 		                   &phy_data);
       
   815 		phy_data &= ~IGP02E1000_PM_SPD;
       
   816 		e1000_write_phy_reg(hw, IGP02E1000_PHY_POWER_MGMT,
       
   817 		                    phy_data);
       
   818 	}
       
   819 
       
   820 	e1000_release_manageability(adapter);
       
   821 }
       
   822 
       
   823 /**
       
   824  *  Dump the eeprom for users having checksum issues
       
   825  **/
       
   826 static void e1000_dump_eeprom(struct e1000_adapter *adapter)
       
   827 {
       
   828 	struct net_device *netdev = adapter->netdev;
       
   829 	struct ethtool_eeprom eeprom;
       
   830 	const struct ethtool_ops *ops = netdev->ethtool_ops;
       
   831 	u8 *data;
       
   832 	int i;
       
   833 	u16 csum_old, csum_new = 0;
       
   834 
       
   835 	eeprom.len = ops->get_eeprom_len(netdev);
       
   836 	eeprom.offset = 0;
       
   837 
       
   838 	data = kmalloc(eeprom.len, GFP_KERNEL);
       
   839 	if (!data) {
       
   840 		printk(KERN_ERR "Unable to allocate memory to dump EEPROM"
       
   841 		       " data\n");
       
   842 		return;
       
   843 	}
       
   844 
       
   845 	ops->get_eeprom(netdev, &eeprom, data);
       
   846 
       
   847 	csum_old = (data[EEPROM_CHECKSUM_REG * 2]) +
       
   848 		   (data[EEPROM_CHECKSUM_REG * 2 + 1] << 8);
       
   849 	for (i = 0; i < EEPROM_CHECKSUM_REG * 2; i += 2)
       
   850 		csum_new += data[i] + (data[i + 1] << 8);
       
   851 	csum_new = EEPROM_SUM - csum_new;
       
   852 
       
   853 	printk(KERN_ERR "/*********************/\n");
       
   854 	printk(KERN_ERR "Current EEPROM Checksum : 0x%04x\n", csum_old);
       
   855 	printk(KERN_ERR "Calculated              : 0x%04x\n", csum_new);
       
   856 
       
   857 	printk(KERN_ERR "Offset    Values\n");
       
   858 	printk(KERN_ERR "========  ======\n");
       
   859 	print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 16, 1, data, 128, 0);
       
   860 
       
   861 	printk(KERN_ERR "Include this output when contacting your support "
       
   862 	       "provider.\n");
       
   863 	printk(KERN_ERR "This is not a software error! Something bad "
       
   864 	       "happened to your hardware or\n");
       
   865 	printk(KERN_ERR "EEPROM image. Ignoring this "
       
   866 	       "problem could result in further problems,\n");
       
   867 	printk(KERN_ERR "possibly loss of data, corruption or system hangs!\n");
       
   868 	printk(KERN_ERR "The MAC Address will be reset to 00:00:00:00:00:00, "
       
   869 	       "which is invalid\n");
       
   870 	printk(KERN_ERR "and requires you to set the proper MAC "
       
   871 	       "address manually before continuing\n");
       
   872 	printk(KERN_ERR "to enable this network device.\n");
       
   873 	printk(KERN_ERR "Please inspect the EEPROM dump and report the issue "
       
   874 	       "to your hardware vendor\n");
       
   875 	printk(KERN_ERR "or Intel Customer Support.\n");
       
   876 	printk(KERN_ERR "/*********************/\n");
       
   877 
       
   878 	kfree(data);
       
   879 }
       
   880 
       
   881 /**
       
   882  * e1000_is_need_ioport - determine if an adapter needs ioport resources or not
       
   883  * @pdev: PCI device information struct
       
   884  *
       
   885  * Return true if an adapter needs ioport resources
       
   886  **/
       
   887 static int e1000_is_need_ioport(struct pci_dev *pdev)
       
   888 {
       
   889 	switch (pdev->device) {
       
   890 	case E1000_DEV_ID_82540EM:
       
   891 	case E1000_DEV_ID_82540EM_LOM:
       
   892 	case E1000_DEV_ID_82540EP:
       
   893 	case E1000_DEV_ID_82540EP_LOM:
       
   894 	case E1000_DEV_ID_82540EP_LP:
       
   895 	case E1000_DEV_ID_82541EI:
       
   896 	case E1000_DEV_ID_82541EI_MOBILE:
       
   897 	case E1000_DEV_ID_82541ER:
       
   898 	case E1000_DEV_ID_82541ER_LOM:
       
   899 	case E1000_DEV_ID_82541GI:
       
   900 	case E1000_DEV_ID_82541GI_LF:
       
   901 	case E1000_DEV_ID_82541GI_MOBILE:
       
   902 	case E1000_DEV_ID_82544EI_COPPER:
       
   903 	case E1000_DEV_ID_82544EI_FIBER:
       
   904 	case E1000_DEV_ID_82544GC_COPPER:
       
   905 	case E1000_DEV_ID_82544GC_LOM:
       
   906 	case E1000_DEV_ID_82545EM_COPPER:
       
   907 	case E1000_DEV_ID_82545EM_FIBER:
       
   908 	case E1000_DEV_ID_82546EB_COPPER:
       
   909 	case E1000_DEV_ID_82546EB_FIBER:
       
   910 	case E1000_DEV_ID_82546EB_QUAD_COPPER:
       
   911 		return true;
       
   912 	default:
       
   913 		return false;
       
   914 	}
       
   915 }
       
   916 
       
   917 static const struct net_device_ops e1000_netdev_ops = {
       
   918 	.ndo_open		= e1000_open,
       
   919 	.ndo_stop		= e1000_close,
       
   920 	.ndo_start_xmit		= e1000_xmit_frame,
       
   921 	.ndo_get_stats		= e1000_get_stats,
       
   922 	.ndo_set_rx_mode	= e1000_set_rx_mode,
       
   923 	.ndo_set_mac_address	= e1000_set_mac,
       
   924 	.ndo_tx_timeout 	= e1000_tx_timeout,
       
   925 	.ndo_change_mtu		= e1000_change_mtu,
       
   926 	.ndo_do_ioctl		= e1000_ioctl,
       
   927 	.ndo_validate_addr	= eth_validate_addr,
       
   928 
       
   929 	.ndo_vlan_rx_register	= e1000_vlan_rx_register,
       
   930 	.ndo_vlan_rx_add_vid	= e1000_vlan_rx_add_vid,
       
   931 	.ndo_vlan_rx_kill_vid	= e1000_vlan_rx_kill_vid,
       
   932 #ifdef CONFIG_NET_POLL_CONTROLLER
       
   933 	.ndo_poll_controller	= e1000_netpoll,
       
   934 #endif
       
   935 };
       
   936 
       
   937 /**
       
   938  * e1000_probe - Device Initialization Routine
       
   939  * @pdev: PCI device information struct
       
   940  * @ent: entry in e1000_pci_tbl
       
   941  *
       
   942  * Returns 0 on success, negative on failure
       
   943  *
       
   944  * e1000_probe initializes an adapter identified by a pci_dev structure.
       
   945  * The OS initialization, configuring of the adapter private structure,
       
   946  * and a hardware reset occur.
       
   947  **/
       
   948 static int __devinit e1000_probe(struct pci_dev *pdev,
       
   949 				 const struct pci_device_id *ent)
       
   950 {
       
   951 	struct net_device *netdev;
       
   952 	struct e1000_adapter *adapter;
       
   953 	struct e1000_hw *hw;
       
   954 
       
   955 	static int cards_found = 0;
       
   956 	static int global_quad_port_a = 0; /* global ksp3 port a indication */
       
   957 	int i, err, pci_using_dac;
       
   958 	u16 eeprom_data = 0;
       
   959 	u16 eeprom_apme_mask = E1000_EEPROM_APME;
       
   960 	int bars, need_ioport;
       
   961 
       
   962 	/* do not allocate ioport bars when not needed */
       
   963 	need_ioport = e1000_is_need_ioport(pdev);
       
   964 	if (need_ioport) {
       
   965 		bars = pci_select_bars(pdev, IORESOURCE_MEM | IORESOURCE_IO);
       
   966 		err = pci_enable_device(pdev);
       
   967 	} else {
       
   968 		bars = pci_select_bars(pdev, IORESOURCE_MEM);
       
   969 		err = pci_enable_device_mem(pdev);
       
   970 	}
       
   971 	if (err)
       
   972 		return err;
       
   973 
       
   974 	if (!pci_set_dma_mask(pdev, DMA_64BIT_MASK) &&
       
   975 	    !pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK)) {
       
   976 		pci_using_dac = 1;
       
   977 	} else {
       
   978 		err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
       
   979 		if (err) {
       
   980 			err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
       
   981 			if (err) {
       
   982 				E1000_ERR("No usable DMA configuration, "
       
   983 					  "aborting\n");
       
   984 				goto err_dma;
       
   985 			}
       
   986 		}
       
   987 		pci_using_dac = 0;
       
   988 	}
       
   989 
       
   990 	err = pci_request_selected_regions(pdev, bars, e1000_driver_name);
       
   991 	if (err)
       
   992 		goto err_pci_reg;
       
   993 
       
   994 	pci_set_master(pdev);
       
   995 
       
   996 	err = -ENOMEM;
       
   997 	netdev = alloc_etherdev(sizeof(struct e1000_adapter));
       
   998 	if (!netdev)
       
   999 		goto err_alloc_etherdev;
       
  1000 
       
  1001 	SET_NETDEV_DEV(netdev, &pdev->dev);
       
  1002 
       
  1003 	pci_set_drvdata(pdev, netdev);
       
  1004 	adapter = netdev_priv(netdev);
       
  1005 	adapter->netdev = netdev;
       
  1006 	adapter->pdev = pdev;
       
  1007 	adapter->msg_enable = (1 << debug) - 1;
       
  1008 	adapter->bars = bars;
       
  1009 	adapter->need_ioport = need_ioport;
       
  1010 
       
  1011 	hw = &adapter->hw;
       
  1012 	hw->back = adapter;
       
  1013 
       
  1014 	err = -EIO;
       
  1015 	hw->hw_addr = pci_ioremap_bar(pdev, BAR_0);
       
  1016 	if (!hw->hw_addr)
       
  1017 		goto err_ioremap;
       
  1018 
       
  1019 	if (adapter->need_ioport) {
       
  1020 		for (i = BAR_1; i <= BAR_5; i++) {
       
  1021 			if (pci_resource_len(pdev, i) == 0)
       
  1022 				continue;
       
  1023 			if (pci_resource_flags(pdev, i) & IORESOURCE_IO) {
       
  1024 				hw->io_base = pci_resource_start(pdev, i);
       
  1025 				break;
       
  1026 			}
       
  1027 		}
       
  1028 	}
       
  1029 
       
  1030 	netdev->netdev_ops = &e1000_netdev_ops;
       
  1031 	e1000_set_ethtool_ops(netdev);
       
  1032 	netdev->watchdog_timeo = 5 * HZ;
       
  1033 	netif_napi_add(netdev, &adapter->napi, e1000_clean, 64);
       
  1034 
       
  1035 	strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1);
       
  1036 
       
  1037 	adapter->bd_number = cards_found;
       
  1038 
       
  1039 	/* setup the private structure */
       
  1040 
       
  1041 	err = e1000_sw_init(adapter);
       
  1042 	if (err)
       
  1043 		goto err_sw_init;
       
  1044 
       
  1045 	err = -EIO;
       
  1046 	/* Flash BAR mapping must happen after e1000_sw_init
       
  1047 	 * because it depends on mac_type */
       
  1048 	if ((hw->mac_type == e1000_ich8lan) &&
       
  1049 	   (pci_resource_flags(pdev, 1) & IORESOURCE_MEM)) {
       
  1050 		hw->flash_address = pci_ioremap_bar(pdev, 1);
       
  1051 		if (!hw->flash_address)
       
  1052 			goto err_flashmap;
       
  1053 	}
       
  1054 
       
  1055 	if (e1000_check_phy_reset_block(hw))
       
  1056 		DPRINTK(PROBE, INFO, "PHY reset is blocked due to SOL/IDER session.\n");
       
  1057 
       
  1058 	if (hw->mac_type >= e1000_82543) {
       
  1059 		netdev->features = NETIF_F_SG |
       
  1060 				   NETIF_F_HW_CSUM |
       
  1061 				   NETIF_F_HW_VLAN_TX |
       
  1062 				   NETIF_F_HW_VLAN_RX |
       
  1063 				   NETIF_F_HW_VLAN_FILTER;
       
  1064 		if (hw->mac_type == e1000_ich8lan)
       
  1065 			netdev->features &= ~NETIF_F_HW_VLAN_FILTER;
       
  1066 	}
       
  1067 
       
  1068 	if ((hw->mac_type >= e1000_82544) &&
       
  1069 	   (hw->mac_type != e1000_82547))
       
  1070 		netdev->features |= NETIF_F_TSO;
       
  1071 
       
  1072 	if (hw->mac_type > e1000_82547_rev_2)
       
  1073 		netdev->features |= NETIF_F_TSO6;
       
  1074 	if (pci_using_dac)
       
  1075 		netdev->features |= NETIF_F_HIGHDMA;
       
  1076 
       
  1077 	netdev->features |= NETIF_F_LLTX;
       
  1078 
       
  1079 	netdev->vlan_features |= NETIF_F_TSO;
       
  1080 	netdev->vlan_features |= NETIF_F_TSO6;
       
  1081 	netdev->vlan_features |= NETIF_F_HW_CSUM;
       
  1082 	netdev->vlan_features |= NETIF_F_SG;
       
  1083 
       
  1084 	adapter->en_mng_pt = e1000_enable_mng_pass_thru(hw);
       
  1085 
       
  1086 	/* initialize eeprom parameters */
       
  1087 	if (e1000_init_eeprom_params(hw)) {
       
  1088 		E1000_ERR("EEPROM initialization failed\n");
       
  1089 		goto err_eeprom;
       
  1090 	}
       
  1091 
       
  1092 	/* before reading the EEPROM, reset the controller to
       
  1093 	 * put the device in a known good starting state */
       
  1094 
       
  1095 	e1000_reset_hw(hw);
       
  1096 
       
  1097 	/* make sure the EEPROM is good */
       
  1098 	if (e1000_validate_eeprom_checksum(hw) < 0) {
       
  1099 		DPRINTK(PROBE, ERR, "The EEPROM Checksum Is Not Valid\n");
       
  1100 		e1000_dump_eeprom(adapter);
       
  1101 		/*
       
  1102 		 * set MAC address to all zeroes to invalidate and temporary
       
  1103 		 * disable this device for the user. This blocks regular
       
  1104 		 * traffic while still permitting ethtool ioctls from reaching
       
  1105 		 * the hardware as well as allowing the user to run the
       
  1106 		 * interface after manually setting a hw addr using
       
  1107 		 * `ip set address`
       
  1108 		 */
       
  1109 		memset(hw->mac_addr, 0, netdev->addr_len);
       
  1110 	} else {
       
  1111 		/* copy the MAC address out of the EEPROM */
       
  1112 		if (e1000_read_mac_addr(hw))
       
  1113 			DPRINTK(PROBE, ERR, "EEPROM Read Error\n");
       
  1114 	}
       
  1115 	/* don't block initalization here due to bad MAC address */
       
  1116 	memcpy(netdev->dev_addr, hw->mac_addr, netdev->addr_len);
       
  1117 	memcpy(netdev->perm_addr, hw->mac_addr, netdev->addr_len);
       
  1118 
       
  1119 	if (!is_valid_ether_addr(netdev->perm_addr))
       
  1120 		DPRINTK(PROBE, ERR, "Invalid MAC Address\n");
       
  1121 
       
  1122 	e1000_get_bus_info(hw);
       
  1123 
       
  1124 	init_timer(&adapter->tx_fifo_stall_timer);
       
  1125 	adapter->tx_fifo_stall_timer.function = &e1000_82547_tx_fifo_stall;
       
  1126 	adapter->tx_fifo_stall_timer.data = (unsigned long)adapter;
       
  1127 
       
  1128 	init_timer(&adapter->watchdog_timer);
       
  1129 	adapter->watchdog_timer.function = &e1000_watchdog;
       
  1130 	adapter->watchdog_timer.data = (unsigned long) adapter;
       
  1131 
       
  1132 	init_timer(&adapter->phy_info_timer);
       
  1133 	adapter->phy_info_timer.function = &e1000_update_phy_info;
       
  1134 	adapter->phy_info_timer.data = (unsigned long)adapter;
       
  1135 
       
  1136 	INIT_WORK(&adapter->reset_task, e1000_reset_task);
       
  1137 
       
  1138 	e1000_check_options(adapter);
       
  1139 
       
  1140 	/* Initial Wake on LAN setting
       
  1141 	 * If APM wake is enabled in the EEPROM,
       
  1142 	 * enable the ACPI Magic Packet filter
       
  1143 	 */
       
  1144 
       
  1145 	switch (hw->mac_type) {
       
  1146 	case e1000_82542_rev2_0:
       
  1147 	case e1000_82542_rev2_1:
       
  1148 	case e1000_82543:
       
  1149 		break;
       
  1150 	case e1000_82544:
       
  1151 		e1000_read_eeprom(hw,
       
  1152 			EEPROM_INIT_CONTROL2_REG, 1, &eeprom_data);
       
  1153 		eeprom_apme_mask = E1000_EEPROM_82544_APM;
       
  1154 		break;
       
  1155 	case e1000_ich8lan:
       
  1156 		e1000_read_eeprom(hw,
       
  1157 			EEPROM_INIT_CONTROL1_REG, 1, &eeprom_data);
       
  1158 		eeprom_apme_mask = E1000_EEPROM_ICH8_APME;
       
  1159 		break;
       
  1160 	case e1000_82546:
       
  1161 	case e1000_82546_rev_3:
       
  1162 	case e1000_82571:
       
  1163 	case e1000_80003es2lan:
       
  1164 		if (er32(STATUS) & E1000_STATUS_FUNC_1){
       
  1165 			e1000_read_eeprom(hw,
       
  1166 				EEPROM_INIT_CONTROL3_PORT_B, 1, &eeprom_data);
       
  1167 			break;
       
  1168 		}
       
  1169 		/* Fall Through */
       
  1170 	default:
       
  1171 		e1000_read_eeprom(hw,
       
  1172 			EEPROM_INIT_CONTROL3_PORT_A, 1, &eeprom_data);
       
  1173 		break;
       
  1174 	}
       
  1175 	if (eeprom_data & eeprom_apme_mask)
       
  1176 		adapter->eeprom_wol |= E1000_WUFC_MAG;
       
  1177 
       
  1178 	/* now that we have the eeprom settings, apply the special cases
       
  1179 	 * where the eeprom may be wrong or the board simply won't support
       
  1180 	 * wake on lan on a particular port */
       
  1181 	switch (pdev->device) {
       
  1182 	case E1000_DEV_ID_82546GB_PCIE:
       
  1183 		adapter->eeprom_wol = 0;
       
  1184 		break;
       
  1185 	case E1000_DEV_ID_82546EB_FIBER:
       
  1186 	case E1000_DEV_ID_82546GB_FIBER:
       
  1187 	case E1000_DEV_ID_82571EB_FIBER:
       
  1188 		/* Wake events only supported on port A for dual fiber
       
  1189 		 * regardless of eeprom setting */
       
  1190 		if (er32(STATUS) & E1000_STATUS_FUNC_1)
       
  1191 			adapter->eeprom_wol = 0;
       
  1192 		break;
       
  1193 	case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
       
  1194 	case E1000_DEV_ID_82571EB_QUAD_COPPER:
       
  1195 	case E1000_DEV_ID_82571EB_QUAD_FIBER:
       
  1196 	case E1000_DEV_ID_82571EB_QUAD_COPPER_LOWPROFILE:
       
  1197 	case E1000_DEV_ID_82571PT_QUAD_COPPER:
       
  1198 		/* if quad port adapter, disable WoL on all but port A */
       
  1199 		if (global_quad_port_a != 0)
       
  1200 			adapter->eeprom_wol = 0;
       
  1201 		else
       
  1202 			adapter->quad_port_a = 1;
       
  1203 		/* Reset for multiple quad port adapters */
       
  1204 		if (++global_quad_port_a == 4)
       
  1205 			global_quad_port_a = 0;
       
  1206 		break;
       
  1207 	}
       
  1208 
       
  1209 	/* initialize the wol settings based on the eeprom settings */
       
  1210 	adapter->wol = adapter->eeprom_wol;
       
  1211 	device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
       
  1212 
       
  1213 	/* print bus type/speed/width info */
       
  1214 	DPRINTK(PROBE, INFO, "(PCI%s:%s:%s) ",
       
  1215 		((hw->bus_type == e1000_bus_type_pcix) ? "-X" :
       
  1216 		 (hw->bus_type == e1000_bus_type_pci_express ? " Express":"")),
       
  1217 		((hw->bus_speed == e1000_bus_speed_2500) ? "2.5Gb/s" :
       
  1218 		 (hw->bus_speed == e1000_bus_speed_133) ? "133MHz" :
       
  1219 		 (hw->bus_speed == e1000_bus_speed_120) ? "120MHz" :
       
  1220 		 (hw->bus_speed == e1000_bus_speed_100) ? "100MHz" :
       
  1221 		 (hw->bus_speed == e1000_bus_speed_66) ? "66MHz" : "33MHz"),
       
  1222 		((hw->bus_width == e1000_bus_width_64) ? "64-bit" :
       
  1223 		 (hw->bus_width == e1000_bus_width_pciex_4) ? "Width x4" :
       
  1224 		 (hw->bus_width == e1000_bus_width_pciex_1) ? "Width x1" :
       
  1225 		 "32-bit"));
       
  1226 
       
  1227 	printk("%pM\n", netdev->dev_addr);
       
  1228 
       
  1229 	if (hw->bus_type == e1000_bus_type_pci_express) {
       
  1230 		DPRINTK(PROBE, WARNING, "This device (id %04x:%04x) will no "
       
  1231 			"longer be supported by this driver in the future.\n",
       
  1232 			pdev->vendor, pdev->device);
       
  1233 		DPRINTK(PROBE, WARNING, "please use the \"e1000e\" "
       
  1234 			"driver instead.\n");
       
  1235 	}
       
  1236 
       
  1237 	/* reset the hardware with the new settings */
       
  1238 	e1000_reset(adapter);
       
  1239 
       
  1240 	/* If the controller is 82573 and f/w is AMT, do not set
       
  1241 	 * DRV_LOAD until the interface is up.  For all other cases,
       
  1242 	 * let the f/w know that the h/w is now under the control
       
  1243 	 * of the driver. */
       
  1244 	if (hw->mac_type != e1000_82573 ||
       
  1245 	    !e1000_check_mng_mode(hw))
       
  1246 		e1000_get_hw_control(adapter);
       
  1247 
       
  1248  	// offer device to EtherCAT master module
       
  1249  	adapter->ecdev = ecdev_offer(netdev, ec_poll, THIS_MODULE);
       
  1250  	if (adapter->ecdev) {
       
  1251  		if (ecdev_open(adapter->ecdev)) {
       
  1252  			ecdev_withdraw(adapter->ecdev);
       
  1253  			goto err_register;
       
  1254  		}
       
  1255  	} else {
       
  1256 		/* tell the stack to leave us alone until e1000_open() is called */
       
  1257 		netif_carrier_off(netdev);
       
  1258 		netif_stop_queue(netdev);
       
  1259 
       
  1260 		strcpy(netdev->name, "eth%d");
       
  1261 		err = register_netdev(netdev);
       
  1262 		if (err)
       
  1263 			goto err_register;
       
  1264  	}
       
  1265 
       
  1266 	DPRINTK(PROBE, INFO, "Intel(R) PRO/1000 Network Connection\n");
       
  1267 
       
  1268 	cards_found++;
       
  1269 	return 0;
       
  1270 
       
  1271 err_register:
       
  1272 	e1000_release_hw_control(adapter);
       
  1273 err_eeprom:
       
  1274 	if (!e1000_check_phy_reset_block(hw))
       
  1275 		e1000_phy_hw_reset(hw);
       
  1276 
       
  1277 	if (hw->flash_address)
       
  1278 		iounmap(hw->flash_address);
       
  1279 err_flashmap:
       
  1280 	kfree(adapter->tx_ring);
       
  1281 	kfree(adapter->rx_ring);
       
  1282 err_sw_init:
       
  1283 	iounmap(hw->hw_addr);
       
  1284 err_ioremap:
       
  1285 	free_netdev(netdev);
       
  1286 err_alloc_etherdev:
       
  1287 	pci_release_selected_regions(pdev, bars);
       
  1288 err_pci_reg:
       
  1289 err_dma:
       
  1290 	pci_disable_device(pdev);
       
  1291 	return err;
       
  1292 }
       
  1293 
       
  1294 /**
       
  1295  * e1000_remove - Device Removal Routine
       
  1296  * @pdev: PCI device information struct
       
  1297  *
       
  1298  * e1000_remove is called by the PCI subsystem to alert the driver
       
  1299  * that it should release a PCI device.  The could be caused by a
       
  1300  * Hot-Plug event, or because the driver is going to be removed from
       
  1301  * memory.
       
  1302  **/
       
  1303 
       
  1304 static void __devexit e1000_remove(struct pci_dev *pdev)
       
  1305 {
       
  1306 	struct net_device *netdev = pci_get_drvdata(pdev);
       
  1307 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  1308 	struct e1000_hw *hw = &adapter->hw;
       
  1309 
       
  1310 	cancel_work_sync(&adapter->reset_task);
       
  1311 
       
  1312 	e1000_release_manageability(adapter);
       
  1313 
       
  1314 	/* Release control of h/w to f/w.  If f/w is AMT enabled, this
       
  1315 	 * would have already happened in close and is redundant. */
       
  1316 	e1000_release_hw_control(adapter);
       
  1317 
       
  1318 	if (adapter->ecdev) {
       
  1319 		ecdev_close(adapter->ecdev);
       
  1320 		ecdev_withdraw(adapter->ecdev);
       
  1321 	} else {
       
  1322 		unregister_netdev(netdev);
       
  1323 	}
       
  1324 
       
  1325 	if (!e1000_check_phy_reset_block(hw))
       
  1326 		e1000_phy_hw_reset(hw);
       
  1327 
       
  1328 	kfree(adapter->tx_ring);
       
  1329 	kfree(adapter->rx_ring);
       
  1330 
       
  1331 	iounmap(hw->hw_addr);
       
  1332 	if (hw->flash_address)
       
  1333 		iounmap(hw->flash_address);
       
  1334 	pci_release_selected_regions(pdev, adapter->bars);
       
  1335 
       
  1336 	free_netdev(netdev);
       
  1337 
       
  1338 	pci_disable_device(pdev);
       
  1339 }
       
  1340 
       
  1341 /**
       
  1342  * e1000_sw_init - Initialize general software structures (struct e1000_adapter)
       
  1343  * @adapter: board private structure to initialize
       
  1344  *
       
  1345  * e1000_sw_init initializes the Adapter private data structure.
       
  1346  * Fields are initialized based on PCI device information and
       
  1347  * OS network device settings (MTU size).
       
  1348  **/
       
  1349 
       
  1350 static int __devinit e1000_sw_init(struct e1000_adapter *adapter)
       
  1351 {
       
  1352 	struct e1000_hw *hw = &adapter->hw;
       
  1353 	struct net_device *netdev = adapter->netdev;
       
  1354 	struct pci_dev *pdev = adapter->pdev;
       
  1355 
       
  1356 	/* PCI config space info */
       
  1357 
       
  1358 	hw->vendor_id = pdev->vendor;
       
  1359 	hw->device_id = pdev->device;
       
  1360 	hw->subsystem_vendor_id = pdev->subsystem_vendor;
       
  1361 	hw->subsystem_id = pdev->subsystem_device;
       
  1362 	hw->revision_id = pdev->revision;
       
  1363 
       
  1364 	pci_read_config_word(pdev, PCI_COMMAND, &hw->pci_cmd_word);
       
  1365 
       
  1366 	adapter->rx_buffer_len = MAXIMUM_ETHERNET_VLAN_SIZE;
       
  1367 	hw->max_frame_size = netdev->mtu +
       
  1368 			     ENET_HEADER_SIZE + ETHERNET_FCS_SIZE;
       
  1369 	hw->min_frame_size = MINIMUM_ETHERNET_FRAME_SIZE;
       
  1370 
       
  1371 	/* identify the MAC */
       
  1372 
       
  1373 	if (e1000_set_mac_type(hw)) {
       
  1374 		DPRINTK(PROBE, ERR, "Unknown MAC Type\n");
       
  1375 		return -EIO;
       
  1376 	}
       
  1377 
       
  1378 	switch (hw->mac_type) {
       
  1379 	default:
       
  1380 		break;
       
  1381 	case e1000_82541:
       
  1382 	case e1000_82547:
       
  1383 	case e1000_82541_rev_2:
       
  1384 	case e1000_82547_rev_2:
       
  1385 		hw->phy_init_script = 1;
       
  1386 		break;
       
  1387 	}
       
  1388 
       
  1389 	e1000_set_media_type(hw);
       
  1390 
       
  1391 	hw->wait_autoneg_complete = false;
       
  1392 	hw->tbi_compatibility_en = true;
       
  1393 	hw->adaptive_ifs = true;
       
  1394 
       
  1395 	/* Copper options */
       
  1396 
       
  1397 	if (hw->media_type == e1000_media_type_copper) {
       
  1398 		hw->mdix = AUTO_ALL_MODES;
       
  1399 		hw->disable_polarity_correction = false;
       
  1400 		hw->master_slave = E1000_MASTER_SLAVE;
       
  1401 	}
       
  1402 
       
  1403 	adapter->num_tx_queues = 1;
       
  1404 	adapter->num_rx_queues = 1;
       
  1405 
       
  1406 	if (e1000_alloc_queues(adapter)) {
       
  1407 		DPRINTK(PROBE, ERR, "Unable to allocate memory for queues\n");
       
  1408 		return -ENOMEM;
       
  1409 	}
       
  1410 
       
  1411 	spin_lock_init(&adapter->tx_queue_lock);
       
  1412 
       
  1413 	/* Explicitly disable IRQ since the NIC can be in any state. */
       
  1414 	e1000_irq_disable(adapter);
       
  1415 
       
  1416 	spin_lock_init(&adapter->stats_lock);
       
  1417 
       
  1418 	set_bit(__E1000_DOWN, &adapter->flags);
       
  1419 
       
  1420 	return 0;
       
  1421 }
       
  1422 
       
  1423 /**
       
  1424  * e1000_alloc_queues - Allocate memory for all rings
       
  1425  * @adapter: board private structure to initialize
       
  1426  *
       
  1427  * We allocate one ring per queue at run-time since we don't know the
       
  1428  * number of queues at compile-time.
       
  1429  **/
       
  1430 
       
  1431 static int __devinit e1000_alloc_queues(struct e1000_adapter *adapter)
       
  1432 {
       
  1433 	adapter->tx_ring = kcalloc(adapter->num_tx_queues,
       
  1434 	                           sizeof(struct e1000_tx_ring), GFP_KERNEL);
       
  1435 	if (!adapter->tx_ring)
       
  1436 		return -ENOMEM;
       
  1437 
       
  1438 	adapter->rx_ring = kcalloc(adapter->num_rx_queues,
       
  1439 	                           sizeof(struct e1000_rx_ring), GFP_KERNEL);
       
  1440 	if (!adapter->rx_ring) {
       
  1441 		kfree(adapter->tx_ring);
       
  1442 		return -ENOMEM;
       
  1443 	}
       
  1444 
       
  1445 	return E1000_SUCCESS;
       
  1446 }
       
  1447 
       
  1448 /**
       
  1449  * e1000_open - Called when a network interface is made active
       
  1450  * @netdev: network interface device structure
       
  1451  *
       
  1452  * Returns 0 on success, negative value on failure
       
  1453  *
       
  1454  * The open entry point is called when a network interface is made
       
  1455  * active by the system (IFF_UP).  At this point all resources needed
       
  1456  * for transmit and receive operations are allocated, the interrupt
       
  1457  * handler is registered with the OS, the watchdog timer is started,
       
  1458  * and the stack is notified that the interface is ready.
       
  1459  **/
       
  1460 
       
  1461 static int e1000_open(struct net_device *netdev)
       
  1462 {
       
  1463 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  1464 	struct e1000_hw *hw = &adapter->hw;
       
  1465 	int err;
       
  1466 
       
  1467 	/* disallow open during test */
       
  1468 	if (test_bit(__E1000_TESTING, &adapter->flags))
       
  1469 		return -EBUSY;
       
  1470 
       
  1471 	/* allocate transmit descriptors */
       
  1472 	err = e1000_setup_all_tx_resources(adapter);
       
  1473 	if (err)
       
  1474 		goto err_setup_tx;
       
  1475 
       
  1476 	/* allocate receive descriptors */
       
  1477 	err = e1000_setup_all_rx_resources(adapter);
       
  1478 	if (err)
       
  1479 		goto err_setup_rx;
       
  1480 
       
  1481 	e1000_power_up_phy(adapter);
       
  1482 
       
  1483 	adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
       
  1484 	if ((hw->mng_cookie.status &
       
  1485 			  E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT)) {
       
  1486 		e1000_update_mng_vlan(adapter);
       
  1487 	}
       
  1488 
       
  1489 	/* If AMT is enabled, let the firmware know that the network
       
  1490 	 * interface is now open */
       
  1491 	if (hw->mac_type == e1000_82573 &&
       
  1492 	    e1000_check_mng_mode(hw))
       
  1493 		e1000_get_hw_control(adapter);
       
  1494 
       
  1495 	/* before we allocate an interrupt, we must be ready to handle it.
       
  1496 	 * Setting DEBUG_SHIRQ in the kernel makes it fire an interrupt
       
  1497 	 * as soon as we call pci_request_irq, so we have to setup our
       
  1498 	 * clean_rx handler before we do so.  */
       
  1499 	e1000_configure(adapter);
       
  1500 
       
  1501 	err = e1000_request_irq(adapter);
       
  1502 	if (err)
       
  1503 		goto err_req_irq;
       
  1504 
       
  1505 	/* From here on the code is the same as e1000_up() */
       
  1506 	clear_bit(__E1000_DOWN, &adapter->flags);
       
  1507 
       
  1508 	napi_enable(&adapter->napi);
       
  1509 
       
  1510 	e1000_irq_enable(adapter);
       
  1511 
       
  1512 	netif_start_queue(netdev);
       
  1513 
       
  1514 	/* fire a link status change interrupt to start the watchdog */
       
  1515 	ew32(ICS, E1000_ICS_LSC);
       
  1516 
       
  1517 	return E1000_SUCCESS;
       
  1518 
       
  1519 err_req_irq:
       
  1520 	e1000_release_hw_control(adapter);
       
  1521 	e1000_power_down_phy(adapter);
       
  1522 	e1000_free_all_rx_resources(adapter);
       
  1523 err_setup_rx:
       
  1524 	e1000_free_all_tx_resources(adapter);
       
  1525 err_setup_tx:
       
  1526 	e1000_reset(adapter);
       
  1527 
       
  1528 	return err;
       
  1529 }
       
  1530 
       
  1531 /**
       
  1532  * e1000_close - Disables a network interface
       
  1533  * @netdev: network interface device structure
       
  1534  *
       
  1535  * Returns 0, this is not allowed to fail
       
  1536  *
       
  1537  * The close entry point is called when an interface is de-activated
       
  1538  * by the OS.  The hardware is still under the drivers control, but
       
  1539  * needs to be disabled.  A global MAC reset is issued to stop the
       
  1540  * hardware, and all transmit and receive resources are freed.
       
  1541  **/
       
  1542 
       
  1543 static int e1000_close(struct net_device *netdev)
       
  1544 {
       
  1545 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  1546 	struct e1000_hw *hw = &adapter->hw;
       
  1547 
       
  1548 	WARN_ON(test_bit(__E1000_RESETTING, &adapter->flags));
       
  1549 	e1000_down(adapter);
       
  1550 	e1000_power_down_phy(adapter);
       
  1551 	e1000_free_irq(adapter);
       
  1552 
       
  1553 	e1000_free_all_tx_resources(adapter);
       
  1554 	e1000_free_all_rx_resources(adapter);
       
  1555 
       
  1556 	/* kill manageability vlan ID if supported, but not if a vlan with
       
  1557 	 * the same ID is registered on the host OS (let 8021q kill it) */
       
  1558 	if ((hw->mng_cookie.status &
       
  1559 			  E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT) &&
       
  1560 	     !(adapter->vlgrp &&
       
  1561 	       vlan_group_get_device(adapter->vlgrp, adapter->mng_vlan_id))) {
       
  1562 		e1000_vlan_rx_kill_vid(netdev, adapter->mng_vlan_id);
       
  1563 	}
       
  1564 
       
  1565 	/* If AMT is enabled, let the firmware know that the network
       
  1566 	 * interface is now closed */
       
  1567 	if (hw->mac_type == e1000_82573 &&
       
  1568 	    e1000_check_mng_mode(hw))
       
  1569 		e1000_release_hw_control(adapter);
       
  1570 
       
  1571 	return 0;
       
  1572 }
       
  1573 
       
  1574 /**
       
  1575  * e1000_check_64k_bound - check that memory doesn't cross 64kB boundary
       
  1576  * @adapter: address of board private structure
       
  1577  * @start: address of beginning of memory
       
  1578  * @len: length of memory
       
  1579  **/
       
  1580 static bool e1000_check_64k_bound(struct e1000_adapter *adapter, void *start,
       
  1581 				  unsigned long len)
       
  1582 {
       
  1583 	struct e1000_hw *hw = &adapter->hw;
       
  1584 	unsigned long begin = (unsigned long)start;
       
  1585 	unsigned long end = begin + len;
       
  1586 
       
  1587 	/* First rev 82545 and 82546 need to not allow any memory
       
  1588 	 * write location to cross 64k boundary due to errata 23 */
       
  1589 	if (hw->mac_type == e1000_82545 ||
       
  1590 	    hw->mac_type == e1000_82546) {
       
  1591 		return ((begin ^ (end - 1)) >> 16) != 0 ? false : true;
       
  1592 	}
       
  1593 
       
  1594 	return true;
       
  1595 }
       
  1596 
       
  1597 /**
       
  1598  * e1000_setup_tx_resources - allocate Tx resources (Descriptors)
       
  1599  * @adapter: board private structure
       
  1600  * @txdr:    tx descriptor ring (for a specific queue) to setup
       
  1601  *
       
  1602  * Return 0 on success, negative on failure
       
  1603  **/
       
  1604 
       
  1605 static int e1000_setup_tx_resources(struct e1000_adapter *adapter,
       
  1606 				    struct e1000_tx_ring *txdr)
       
  1607 {
       
  1608 	struct pci_dev *pdev = adapter->pdev;
       
  1609 	int size;
       
  1610 
       
  1611 	size = sizeof(struct e1000_buffer) * txdr->count;
       
  1612 	txdr->buffer_info = vmalloc(size);
       
  1613 	if (!txdr->buffer_info) {
       
  1614 		DPRINTK(PROBE, ERR,
       
  1615 		"Unable to allocate memory for the transmit descriptor ring\n");
       
  1616 		return -ENOMEM;
       
  1617 	}
       
  1618 	memset(txdr->buffer_info, 0, size);
       
  1619 
       
  1620 	/* round up to nearest 4K */
       
  1621 
       
  1622 	txdr->size = txdr->count * sizeof(struct e1000_tx_desc);
       
  1623 	txdr->size = ALIGN(txdr->size, 4096);
       
  1624 
       
  1625 	txdr->desc = pci_alloc_consistent(pdev, txdr->size, &txdr->dma);
       
  1626 	if (!txdr->desc) {
       
  1627 setup_tx_desc_die:
       
  1628 		vfree(txdr->buffer_info);
       
  1629 		DPRINTK(PROBE, ERR,
       
  1630 		"Unable to allocate memory for the transmit descriptor ring\n");
       
  1631 		return -ENOMEM;
       
  1632 	}
       
  1633 
       
  1634 	/* Fix for errata 23, can't cross 64kB boundary */
       
  1635 	if (!e1000_check_64k_bound(adapter, txdr->desc, txdr->size)) {
       
  1636 		void *olddesc = txdr->desc;
       
  1637 		dma_addr_t olddma = txdr->dma;
       
  1638 		DPRINTK(TX_ERR, ERR, "txdr align check failed: %u bytes "
       
  1639 				     "at %p\n", txdr->size, txdr->desc);
       
  1640 		/* Try again, without freeing the previous */
       
  1641 		txdr->desc = pci_alloc_consistent(pdev, txdr->size, &txdr->dma);
       
  1642 		/* Failed allocation, critical failure */
       
  1643 		if (!txdr->desc) {
       
  1644 			pci_free_consistent(pdev, txdr->size, olddesc, olddma);
       
  1645 			goto setup_tx_desc_die;
       
  1646 		}
       
  1647 
       
  1648 		if (!e1000_check_64k_bound(adapter, txdr->desc, txdr->size)) {
       
  1649 			/* give up */
       
  1650 			pci_free_consistent(pdev, txdr->size, txdr->desc,
       
  1651 					    txdr->dma);
       
  1652 			pci_free_consistent(pdev, txdr->size, olddesc, olddma);
       
  1653 			DPRINTK(PROBE, ERR,
       
  1654 				"Unable to allocate aligned memory "
       
  1655 				"for the transmit descriptor ring\n");
       
  1656 			vfree(txdr->buffer_info);
       
  1657 			return -ENOMEM;
       
  1658 		} else {
       
  1659 			/* Free old allocation, new allocation was successful */
       
  1660 			pci_free_consistent(pdev, txdr->size, olddesc, olddma);
       
  1661 		}
       
  1662 	}
       
  1663 	memset(txdr->desc, 0, txdr->size);
       
  1664 
       
  1665 	txdr->next_to_use = 0;
       
  1666 	txdr->next_to_clean = 0;
       
  1667 	spin_lock_init(&txdr->tx_lock);
       
  1668 
       
  1669 	return 0;
       
  1670 }
       
  1671 
       
  1672 /**
       
  1673  * e1000_setup_all_tx_resources - wrapper to allocate Tx resources
       
  1674  * 				  (Descriptors) for all queues
       
  1675  * @adapter: board private structure
       
  1676  *
       
  1677  * Return 0 on success, negative on failure
       
  1678  **/
       
  1679 
       
  1680 int e1000_setup_all_tx_resources(struct e1000_adapter *adapter)
       
  1681 {
       
  1682 	int i, err = 0;
       
  1683 
       
  1684 	for (i = 0; i < adapter->num_tx_queues; i++) {
       
  1685 		err = e1000_setup_tx_resources(adapter, &adapter->tx_ring[i]);
       
  1686 		if (err) {
       
  1687 			DPRINTK(PROBE, ERR,
       
  1688 				"Allocation for Tx Queue %u failed\n", i);
       
  1689 			for (i-- ; i >= 0; i--)
       
  1690 				e1000_free_tx_resources(adapter,
       
  1691 							&adapter->tx_ring[i]);
       
  1692 			break;
       
  1693 		}
       
  1694 	}
       
  1695 
       
  1696 	return err;
       
  1697 }
       
  1698 
       
  1699 /**
       
  1700  * e1000_configure_tx - Configure 8254x Transmit Unit after Reset
       
  1701  * @adapter: board private structure
       
  1702  *
       
  1703  * Configure the Tx unit of the MAC after a reset.
       
  1704  **/
       
  1705 
       
  1706 static void e1000_configure_tx(struct e1000_adapter *adapter)
       
  1707 {
       
  1708 	u64 tdba;
       
  1709 	struct e1000_hw *hw = &adapter->hw;
       
  1710 	u32 tdlen, tctl, tipg, tarc;
       
  1711 	u32 ipgr1, ipgr2;
       
  1712 
       
  1713 	/* Setup the HW Tx Head and Tail descriptor pointers */
       
  1714 
       
  1715 	switch (adapter->num_tx_queues) {
       
  1716 	case 1:
       
  1717 	default:
       
  1718 		tdba = adapter->tx_ring[0].dma;
       
  1719 		tdlen = adapter->tx_ring[0].count *
       
  1720 			sizeof(struct e1000_tx_desc);
       
  1721 		ew32(TDLEN, tdlen);
       
  1722 		ew32(TDBAH, (tdba >> 32));
       
  1723 		ew32(TDBAL, (tdba & 0x00000000ffffffffULL));
       
  1724 		ew32(TDT, 0);
       
  1725 		ew32(TDH, 0);
       
  1726 		adapter->tx_ring[0].tdh = ((hw->mac_type >= e1000_82543) ? E1000_TDH : E1000_82542_TDH);
       
  1727 		adapter->tx_ring[0].tdt = ((hw->mac_type >= e1000_82543) ? E1000_TDT : E1000_82542_TDT);
       
  1728 		break;
       
  1729 	}
       
  1730 
       
  1731 	/* Set the default values for the Tx Inter Packet Gap timer */
       
  1732 	if (hw->mac_type <= e1000_82547_rev_2 &&
       
  1733 	    (hw->media_type == e1000_media_type_fiber ||
       
  1734 	     hw->media_type == e1000_media_type_internal_serdes))
       
  1735 		tipg = DEFAULT_82543_TIPG_IPGT_FIBER;
       
  1736 	else
       
  1737 		tipg = DEFAULT_82543_TIPG_IPGT_COPPER;
       
  1738 
       
  1739 	switch (hw->mac_type) {
       
  1740 	case e1000_82542_rev2_0:
       
  1741 	case e1000_82542_rev2_1:
       
  1742 		tipg = DEFAULT_82542_TIPG_IPGT;
       
  1743 		ipgr1 = DEFAULT_82542_TIPG_IPGR1;
       
  1744 		ipgr2 = DEFAULT_82542_TIPG_IPGR2;
       
  1745 		break;
       
  1746 	case e1000_80003es2lan:
       
  1747 		ipgr1 = DEFAULT_82543_TIPG_IPGR1;
       
  1748 		ipgr2 = DEFAULT_80003ES2LAN_TIPG_IPGR2;
       
  1749 		break;
       
  1750 	default:
       
  1751 		ipgr1 = DEFAULT_82543_TIPG_IPGR1;
       
  1752 		ipgr2 = DEFAULT_82543_TIPG_IPGR2;
       
  1753 		break;
       
  1754 	}
       
  1755 	tipg |= ipgr1 << E1000_TIPG_IPGR1_SHIFT;
       
  1756 	tipg |= ipgr2 << E1000_TIPG_IPGR2_SHIFT;
       
  1757 	ew32(TIPG, tipg);
       
  1758 
       
  1759 	/* Set the Tx Interrupt Delay register */
       
  1760 
       
  1761 	ew32(TIDV, adapter->tx_int_delay);
       
  1762 	if (hw->mac_type >= e1000_82540)
       
  1763 		ew32(TADV, adapter->tx_abs_int_delay);
       
  1764 
       
  1765 	/* Program the Transmit Control Register */
       
  1766 
       
  1767 	tctl = er32(TCTL);
       
  1768 	tctl &= ~E1000_TCTL_CT;
       
  1769 	tctl |= E1000_TCTL_PSP | E1000_TCTL_RTLC |
       
  1770 		(E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT);
       
  1771 
       
  1772 	if (hw->mac_type == e1000_82571 || hw->mac_type == e1000_82572) {
       
  1773 		tarc = er32(TARC0);
       
  1774 		/* set the speed mode bit, we'll clear it if we're not at
       
  1775 		 * gigabit link later */
       
  1776 		tarc |= (1 << 21);
       
  1777 		ew32(TARC0, tarc);
       
  1778 	} else if (hw->mac_type == e1000_80003es2lan) {
       
  1779 		tarc = er32(TARC0);
       
  1780 		tarc |= 1;
       
  1781 		ew32(TARC0, tarc);
       
  1782 		tarc = er32(TARC1);
       
  1783 		tarc |= 1;
       
  1784 		ew32(TARC1, tarc);
       
  1785 	}
       
  1786 
       
  1787 	e1000_config_collision_dist(hw);
       
  1788 
       
  1789 	/* Setup Transmit Descriptor Settings for eop descriptor */
       
  1790 	adapter->txd_cmd = E1000_TXD_CMD_EOP | E1000_TXD_CMD_IFCS;
       
  1791 
       
  1792 	/* only set IDE if we are delaying interrupts using the timers */
       
  1793 	if (adapter->tx_int_delay)
       
  1794 		adapter->txd_cmd |= E1000_TXD_CMD_IDE;
       
  1795 
       
  1796 	if (hw->mac_type < e1000_82543)
       
  1797 		adapter->txd_cmd |= E1000_TXD_CMD_RPS;
       
  1798 	else
       
  1799 		adapter->txd_cmd |= E1000_TXD_CMD_RS;
       
  1800 
       
  1801 	/* Cache if we're 82544 running in PCI-X because we'll
       
  1802 	 * need this to apply a workaround later in the send path. */
       
  1803 	if (hw->mac_type == e1000_82544 &&
       
  1804 	    hw->bus_type == e1000_bus_type_pcix)
       
  1805 		adapter->pcix_82544 = 1;
       
  1806 
       
  1807 	ew32(TCTL, tctl);
       
  1808 
       
  1809 }
       
  1810 
       
  1811 /**
       
  1812  * e1000_setup_rx_resources - allocate Rx resources (Descriptors)
       
  1813  * @adapter: board private structure
       
  1814  * @rxdr:    rx descriptor ring (for a specific queue) to setup
       
  1815  *
       
  1816  * Returns 0 on success, negative on failure
       
  1817  **/
       
  1818 
       
  1819 static int e1000_setup_rx_resources(struct e1000_adapter *adapter,
       
  1820 				    struct e1000_rx_ring *rxdr)
       
  1821 {
       
  1822 	struct e1000_hw *hw = &adapter->hw;
       
  1823 	struct pci_dev *pdev = adapter->pdev;
       
  1824 	int size, desc_len;
       
  1825 
       
  1826 	size = sizeof(struct e1000_buffer) * rxdr->count;
       
  1827 	rxdr->buffer_info = vmalloc(size);
       
  1828 	if (!rxdr->buffer_info) {
       
  1829 		DPRINTK(PROBE, ERR,
       
  1830 		"Unable to allocate memory for the receive descriptor ring\n");
       
  1831 		return -ENOMEM;
       
  1832 	}
       
  1833 	memset(rxdr->buffer_info, 0, size);
       
  1834 
       
  1835 	if (hw->mac_type <= e1000_82547_rev_2)
       
  1836 		desc_len = sizeof(struct e1000_rx_desc);
       
  1837 	else
       
  1838 		desc_len = sizeof(union e1000_rx_desc_packet_split);
       
  1839 
       
  1840 	/* Round up to nearest 4K */
       
  1841 
       
  1842 	rxdr->size = rxdr->count * desc_len;
       
  1843 	rxdr->size = ALIGN(rxdr->size, 4096);
       
  1844 
       
  1845 	rxdr->desc = pci_alloc_consistent(pdev, rxdr->size, &rxdr->dma);
       
  1846 
       
  1847 	if (!rxdr->desc) {
       
  1848 		DPRINTK(PROBE, ERR,
       
  1849 		"Unable to allocate memory for the receive descriptor ring\n");
       
  1850 setup_rx_desc_die:
       
  1851 		vfree(rxdr->buffer_info);
       
  1852 		return -ENOMEM;
       
  1853 	}
       
  1854 
       
  1855 	/* Fix for errata 23, can't cross 64kB boundary */
       
  1856 	if (!e1000_check_64k_bound(adapter, rxdr->desc, rxdr->size)) {
       
  1857 		void *olddesc = rxdr->desc;
       
  1858 		dma_addr_t olddma = rxdr->dma;
       
  1859 		DPRINTK(RX_ERR, ERR, "rxdr align check failed: %u bytes "
       
  1860 				     "at %p\n", rxdr->size, rxdr->desc);
       
  1861 		/* Try again, without freeing the previous */
       
  1862 		rxdr->desc = pci_alloc_consistent(pdev, rxdr->size, &rxdr->dma);
       
  1863 		/* Failed allocation, critical failure */
       
  1864 		if (!rxdr->desc) {
       
  1865 			pci_free_consistent(pdev, rxdr->size, olddesc, olddma);
       
  1866 			DPRINTK(PROBE, ERR,
       
  1867 				"Unable to allocate memory "
       
  1868 				"for the receive descriptor ring\n");
       
  1869 			goto setup_rx_desc_die;
       
  1870 		}
       
  1871 
       
  1872 		if (!e1000_check_64k_bound(adapter, rxdr->desc, rxdr->size)) {
       
  1873 			/* give up */
       
  1874 			pci_free_consistent(pdev, rxdr->size, rxdr->desc,
       
  1875 					    rxdr->dma);
       
  1876 			pci_free_consistent(pdev, rxdr->size, olddesc, olddma);
       
  1877 			DPRINTK(PROBE, ERR,
       
  1878 				"Unable to allocate aligned memory "
       
  1879 				"for the receive descriptor ring\n");
       
  1880 			goto setup_rx_desc_die;
       
  1881 		} else {
       
  1882 			/* Free old allocation, new allocation was successful */
       
  1883 			pci_free_consistent(pdev, rxdr->size, olddesc, olddma);
       
  1884 		}
       
  1885 	}
       
  1886 	memset(rxdr->desc, 0, rxdr->size);
       
  1887 
       
  1888 	rxdr->next_to_clean = 0;
       
  1889 	rxdr->next_to_use = 0;
       
  1890 
       
  1891 	return 0;
       
  1892 }
       
  1893 
       
  1894 /**
       
  1895  * e1000_setup_all_rx_resources - wrapper to allocate Rx resources
       
  1896  * 				  (Descriptors) for all queues
       
  1897  * @adapter: board private structure
       
  1898  *
       
  1899  * Return 0 on success, negative on failure
       
  1900  **/
       
  1901 
       
  1902 int e1000_setup_all_rx_resources(struct e1000_adapter *adapter)
       
  1903 {
       
  1904 	int i, err = 0;
       
  1905 
       
  1906 	for (i = 0; i < adapter->num_rx_queues; i++) {
       
  1907 		err = e1000_setup_rx_resources(adapter, &adapter->rx_ring[i]);
       
  1908 		if (err) {
       
  1909 			DPRINTK(PROBE, ERR,
       
  1910 				"Allocation for Rx Queue %u failed\n", i);
       
  1911 			for (i-- ; i >= 0; i--)
       
  1912 				e1000_free_rx_resources(adapter,
       
  1913 							&adapter->rx_ring[i]);
       
  1914 			break;
       
  1915 		}
       
  1916 	}
       
  1917 
       
  1918 	return err;
       
  1919 }
       
  1920 
       
  1921 /**
       
  1922  * e1000_setup_rctl - configure the receive control registers
       
  1923  * @adapter: Board private structure
       
  1924  **/
       
  1925 #define PAGE_USE_COUNT(S) (((S) >> PAGE_SHIFT) + \
       
  1926 			(((S) & (PAGE_SIZE - 1)) ? 1 : 0))
       
  1927 static void e1000_setup_rctl(struct e1000_adapter *adapter)
       
  1928 {
       
  1929 	struct e1000_hw *hw = &adapter->hw;
       
  1930 	u32 rctl;
       
  1931 
       
  1932 	rctl = er32(RCTL);
       
  1933 
       
  1934 	rctl &= ~(3 << E1000_RCTL_MO_SHIFT);
       
  1935 
       
  1936 	rctl |= E1000_RCTL_EN | E1000_RCTL_BAM |
       
  1937 		E1000_RCTL_LBM_NO | E1000_RCTL_RDMTS_HALF |
       
  1938 		(hw->mc_filter_type << E1000_RCTL_MO_SHIFT);
       
  1939 
       
  1940 	if (hw->tbi_compatibility_on == 1)
       
  1941 		rctl |= E1000_RCTL_SBP;
       
  1942 	else
       
  1943 		rctl &= ~E1000_RCTL_SBP;
       
  1944 
       
  1945 	if (adapter->netdev->mtu <= ETH_DATA_LEN)
       
  1946 		rctl &= ~E1000_RCTL_LPE;
       
  1947 	else
       
  1948 		rctl |= E1000_RCTL_LPE;
       
  1949 
       
  1950 	/* Setup buffer sizes */
       
  1951 	rctl &= ~E1000_RCTL_SZ_4096;
       
  1952 	rctl |= E1000_RCTL_BSEX;
       
  1953 	switch (adapter->rx_buffer_len) {
       
  1954 		case E1000_RXBUFFER_256:
       
  1955 			rctl |= E1000_RCTL_SZ_256;
       
  1956 			rctl &= ~E1000_RCTL_BSEX;
       
  1957 			break;
       
  1958 		case E1000_RXBUFFER_512:
       
  1959 			rctl |= E1000_RCTL_SZ_512;
       
  1960 			rctl &= ~E1000_RCTL_BSEX;
       
  1961 			break;
       
  1962 		case E1000_RXBUFFER_1024:
       
  1963 			rctl |= E1000_RCTL_SZ_1024;
       
  1964 			rctl &= ~E1000_RCTL_BSEX;
       
  1965 			break;
       
  1966 		case E1000_RXBUFFER_2048:
       
  1967 		default:
       
  1968 			rctl |= E1000_RCTL_SZ_2048;
       
  1969 			rctl &= ~E1000_RCTL_BSEX;
       
  1970 			break;
       
  1971 		case E1000_RXBUFFER_4096:
       
  1972 			rctl |= E1000_RCTL_SZ_4096;
       
  1973 			break;
       
  1974 		case E1000_RXBUFFER_8192:
       
  1975 			rctl |= E1000_RCTL_SZ_8192;
       
  1976 			break;
       
  1977 		case E1000_RXBUFFER_16384:
       
  1978 			rctl |= E1000_RCTL_SZ_16384;
       
  1979 			break;
       
  1980 	}
       
  1981 
       
  1982 	ew32(RCTL, rctl);
       
  1983 }
       
  1984 
       
  1985 /**
       
  1986  * e1000_configure_rx - Configure 8254x Receive Unit after Reset
       
  1987  * @adapter: board private structure
       
  1988  *
       
  1989  * Configure the Rx unit of the MAC after a reset.
       
  1990  **/
       
  1991 
       
  1992 static void e1000_configure_rx(struct e1000_adapter *adapter)
       
  1993 {
       
  1994 	u64 rdba;
       
  1995 	struct e1000_hw *hw = &adapter->hw;
       
  1996 	u32 rdlen, rctl, rxcsum, ctrl_ext;
       
  1997 
       
  1998 	rdlen = adapter->rx_ring[0].count *
       
  1999 		sizeof(struct e1000_rx_desc);
       
  2000 	adapter->clean_rx = e1000_clean_rx_irq;
       
  2001 	adapter->alloc_rx_buf = e1000_alloc_rx_buffers;
       
  2002 
       
  2003 	/* disable receives while setting up the descriptors */
       
  2004 	rctl = er32(RCTL);
       
  2005 	ew32(RCTL, rctl & ~E1000_RCTL_EN);
       
  2006 
       
  2007 	/* set the Receive Delay Timer Register */
       
  2008 	ew32(RDTR, adapter->rx_int_delay);
       
  2009 
       
  2010 	if (hw->mac_type >= e1000_82540) {
       
  2011 		ew32(RADV, adapter->rx_abs_int_delay);
       
  2012 		if (adapter->itr_setting != 0)
       
  2013 			ew32(ITR, 1000000000 / (adapter->itr * 256));
       
  2014 	}
       
  2015 
       
  2016 	if (hw->mac_type >= e1000_82571) {
       
  2017 		ctrl_ext = er32(CTRL_EXT);
       
  2018 		/* Reset delay timers after every interrupt */
       
  2019 		ctrl_ext |= E1000_CTRL_EXT_INT_TIMER_CLR;
       
  2020 		/* Auto-Mask interrupts upon ICR access */
       
  2021 		ctrl_ext |= E1000_CTRL_EXT_IAME;
       
  2022 		ew32(IAM, 0xffffffff);
       
  2023 		ew32(CTRL_EXT, ctrl_ext);
       
  2024 		E1000_WRITE_FLUSH();
       
  2025 	}
       
  2026 
       
  2027 	/* Setup the HW Rx Head and Tail Descriptor Pointers and
       
  2028 	 * the Base and Length of the Rx Descriptor Ring */
       
  2029 	switch (adapter->num_rx_queues) {
       
  2030 	case 1:
       
  2031 	default:
       
  2032 		rdba = adapter->rx_ring[0].dma;
       
  2033 		ew32(RDLEN, rdlen);
       
  2034 		ew32(RDBAH, (rdba >> 32));
       
  2035 		ew32(RDBAL, (rdba & 0x00000000ffffffffULL));
       
  2036 		ew32(RDT, 0);
       
  2037 		ew32(RDH, 0);
       
  2038 		adapter->rx_ring[0].rdh = ((hw->mac_type >= e1000_82543) ? E1000_RDH : E1000_82542_RDH);
       
  2039 		adapter->rx_ring[0].rdt = ((hw->mac_type >= e1000_82543) ? E1000_RDT : E1000_82542_RDT);
       
  2040 		break;
       
  2041 	}
       
  2042 
       
  2043 	/* Enable 82543 Receive Checksum Offload for TCP and UDP */
       
  2044 	if (hw->mac_type >= e1000_82543) {
       
  2045 		rxcsum = er32(RXCSUM);
       
  2046 		if (adapter->rx_csum)
       
  2047 			rxcsum |= E1000_RXCSUM_TUOFL;
       
  2048 		else
       
  2049 			/* don't need to clear IPPCSE as it defaults to 0 */
       
  2050 			rxcsum &= ~E1000_RXCSUM_TUOFL;
       
  2051 		ew32(RXCSUM, rxcsum);
       
  2052 	}
       
  2053 
       
  2054 	/* Enable Receives */
       
  2055 	ew32(RCTL, rctl);
       
  2056 }
       
  2057 
       
  2058 /**
       
  2059  * e1000_free_tx_resources - Free Tx Resources per Queue
       
  2060  * @adapter: board private structure
       
  2061  * @tx_ring: Tx descriptor ring for a specific queue
       
  2062  *
       
  2063  * Free all transmit software resources
       
  2064  **/
       
  2065 
       
  2066 static void e1000_free_tx_resources(struct e1000_adapter *adapter,
       
  2067 				    struct e1000_tx_ring *tx_ring)
       
  2068 {
       
  2069 	struct pci_dev *pdev = adapter->pdev;
       
  2070 
       
  2071 	e1000_clean_tx_ring(adapter, tx_ring);
       
  2072 
       
  2073 	vfree(tx_ring->buffer_info);
       
  2074 	tx_ring->buffer_info = NULL;
       
  2075 
       
  2076 	pci_free_consistent(pdev, tx_ring->size, tx_ring->desc, tx_ring->dma);
       
  2077 
       
  2078 	tx_ring->desc = NULL;
       
  2079 }
       
  2080 
       
  2081 /**
       
  2082  * e1000_free_all_tx_resources - Free Tx Resources for All Queues
       
  2083  * @adapter: board private structure
       
  2084  *
       
  2085  * Free all transmit software resources
       
  2086  **/
       
  2087 
       
  2088 void e1000_free_all_tx_resources(struct e1000_adapter *adapter)
       
  2089 {
       
  2090 	int i;
       
  2091 
       
  2092 	for (i = 0; i < adapter->num_tx_queues; i++)
       
  2093 		e1000_free_tx_resources(adapter, &adapter->tx_ring[i]);
       
  2094 }
       
  2095 
       
  2096 static void e1000_unmap_and_free_tx_resource(struct e1000_adapter *adapter,
       
  2097 					     struct e1000_buffer *buffer_info)
       
  2098 {
       
  2099 	if (adapter->ecdev)
       
  2100 		return;
       
  2101 
       
  2102 	if (buffer_info->dma) {
       
  2103 		pci_unmap_page(adapter->pdev,
       
  2104 				buffer_info->dma,
       
  2105 				buffer_info->length,
       
  2106 				PCI_DMA_TODEVICE);
       
  2107 		buffer_info->dma = 0;
       
  2108 	}
       
  2109 	if (buffer_info->skb) {
       
  2110 		dev_kfree_skb_any(buffer_info->skb);
       
  2111 		buffer_info->skb = NULL;
       
  2112 	}
       
  2113 	/* buffer_info must be completely set up in the transmit path */
       
  2114 }
       
  2115 
       
  2116 /**
       
  2117  * e1000_clean_tx_ring - Free Tx Buffers
       
  2118  * @adapter: board private structure
       
  2119  * @tx_ring: ring to be cleaned
       
  2120  **/
       
  2121 
       
  2122 static void e1000_clean_tx_ring(struct e1000_adapter *adapter,
       
  2123 				struct e1000_tx_ring *tx_ring)
       
  2124 {
       
  2125 	struct e1000_hw *hw = &adapter->hw;
       
  2126 	struct e1000_buffer *buffer_info;
       
  2127 	unsigned long size;
       
  2128 	unsigned int i;
       
  2129 
       
  2130 	/* Free all the Tx ring sk_buffs */
       
  2131 
       
  2132 	for (i = 0; i < tx_ring->count; i++) {
       
  2133 		buffer_info = &tx_ring->buffer_info[i];
       
  2134 		e1000_unmap_and_free_tx_resource(adapter, buffer_info);
       
  2135 	}
       
  2136 
       
  2137 	size = sizeof(struct e1000_buffer) * tx_ring->count;
       
  2138 	memset(tx_ring->buffer_info, 0, size);
       
  2139 
       
  2140 	/* Zero out the descriptor ring */
       
  2141 
       
  2142 	memset(tx_ring->desc, 0, tx_ring->size);
       
  2143 
       
  2144 	tx_ring->next_to_use = 0;
       
  2145 	tx_ring->next_to_clean = 0;
       
  2146 	tx_ring->last_tx_tso = 0;
       
  2147 
       
  2148 	writel(0, hw->hw_addr + tx_ring->tdh);
       
  2149 	writel(0, hw->hw_addr + tx_ring->tdt);
       
  2150 }
       
  2151 
       
  2152 /**
       
  2153  * e1000_clean_all_tx_rings - Free Tx Buffers for all queues
       
  2154  * @adapter: board private structure
       
  2155  **/
       
  2156 
       
  2157 static void e1000_clean_all_tx_rings(struct e1000_adapter *adapter)
       
  2158 {
       
  2159 	int i;
       
  2160 
       
  2161 	for (i = 0; i < adapter->num_tx_queues; i++)
       
  2162 		e1000_clean_tx_ring(adapter, &adapter->tx_ring[i]);
       
  2163 }
       
  2164 
       
  2165 /**
       
  2166  * e1000_free_rx_resources - Free Rx Resources
       
  2167  * @adapter: board private structure
       
  2168  * @rx_ring: ring to clean the resources from
       
  2169  *
       
  2170  * Free all receive software resources
       
  2171  **/
       
  2172 
       
  2173 static void e1000_free_rx_resources(struct e1000_adapter *adapter,
       
  2174 				    struct e1000_rx_ring *rx_ring)
       
  2175 {
       
  2176 	struct pci_dev *pdev = adapter->pdev;
       
  2177 
       
  2178 	e1000_clean_rx_ring(adapter, rx_ring);
       
  2179 
       
  2180 	vfree(rx_ring->buffer_info);
       
  2181 	rx_ring->buffer_info = NULL;
       
  2182 
       
  2183 	pci_free_consistent(pdev, rx_ring->size, rx_ring->desc, rx_ring->dma);
       
  2184 
       
  2185 	rx_ring->desc = NULL;
       
  2186 }
       
  2187 
       
  2188 /**
       
  2189  * e1000_free_all_rx_resources - Free Rx Resources for All Queues
       
  2190  * @adapter: board private structure
       
  2191  *
       
  2192  * Free all receive software resources
       
  2193  **/
       
  2194 
       
  2195 void e1000_free_all_rx_resources(struct e1000_adapter *adapter)
       
  2196 {
       
  2197 	int i;
       
  2198 
       
  2199 	for (i = 0; i < adapter->num_rx_queues; i++)
       
  2200 		e1000_free_rx_resources(adapter, &adapter->rx_ring[i]);
       
  2201 }
       
  2202 
       
  2203 /**
       
  2204  * e1000_clean_rx_ring - Free Rx Buffers per Queue
       
  2205  * @adapter: board private structure
       
  2206  * @rx_ring: ring to free buffers from
       
  2207  **/
       
  2208 
       
  2209 static void e1000_clean_rx_ring(struct e1000_adapter *adapter,
       
  2210 				struct e1000_rx_ring *rx_ring)
       
  2211 {
       
  2212 	struct e1000_hw *hw = &adapter->hw;
       
  2213 	struct e1000_buffer *buffer_info;
       
  2214 	struct pci_dev *pdev = adapter->pdev;
       
  2215 	unsigned long size;
       
  2216 	unsigned int i;
       
  2217 
       
  2218 	/* Free all the Rx ring sk_buffs */
       
  2219 	for (i = 0; i < rx_ring->count; i++) {
       
  2220 		buffer_info = &rx_ring->buffer_info[i];
       
  2221 		if (buffer_info->skb) {
       
  2222 			pci_unmap_single(pdev,
       
  2223 					 buffer_info->dma,
       
  2224 					 buffer_info->length,
       
  2225 					 PCI_DMA_FROMDEVICE);
       
  2226 
       
  2227 			dev_kfree_skb(buffer_info->skb);
       
  2228 			buffer_info->skb = NULL;
       
  2229 		}
       
  2230 	}
       
  2231 
       
  2232 	size = sizeof(struct e1000_buffer) * rx_ring->count;
       
  2233 	memset(rx_ring->buffer_info, 0, size);
       
  2234 
       
  2235 	/* Zero out the descriptor ring */
       
  2236 
       
  2237 	memset(rx_ring->desc, 0, rx_ring->size);
       
  2238 
       
  2239 	rx_ring->next_to_clean = 0;
       
  2240 	rx_ring->next_to_use = 0;
       
  2241 
       
  2242 	writel(0, hw->hw_addr + rx_ring->rdh);
       
  2243 	writel(0, hw->hw_addr + rx_ring->rdt);
       
  2244 }
       
  2245 
       
  2246 /**
       
  2247  * e1000_clean_all_rx_rings - Free Rx Buffers for all queues
       
  2248  * @adapter: board private structure
       
  2249  **/
       
  2250 
       
  2251 static void e1000_clean_all_rx_rings(struct e1000_adapter *adapter)
       
  2252 {
       
  2253 	int i;
       
  2254 
       
  2255 	for (i = 0; i < adapter->num_rx_queues; i++)
       
  2256 		e1000_clean_rx_ring(adapter, &adapter->rx_ring[i]);
       
  2257 }
       
  2258 
       
  2259 /* The 82542 2.0 (revision 2) needs to have the receive unit in reset
       
  2260  * and memory write and invalidate disabled for certain operations
       
  2261  */
       
  2262 static void e1000_enter_82542_rst(struct e1000_adapter *adapter)
       
  2263 {
       
  2264 	struct e1000_hw *hw = &adapter->hw;
       
  2265 	struct net_device *netdev = adapter->netdev;
       
  2266 	u32 rctl;
       
  2267 
       
  2268 	e1000_pci_clear_mwi(hw);
       
  2269 
       
  2270 	rctl = er32(RCTL);
       
  2271 	rctl |= E1000_RCTL_RST;
       
  2272 	ew32(RCTL, rctl);
       
  2273 	E1000_WRITE_FLUSH();
       
  2274 	mdelay(5);
       
  2275 
       
  2276 	if (!adapter->ecdev && netif_running(netdev))
       
  2277 		e1000_clean_all_rx_rings(adapter);
       
  2278 }
       
  2279 
       
  2280 static void e1000_leave_82542_rst(struct e1000_adapter *adapter)
       
  2281 {
       
  2282 	struct e1000_hw *hw = &adapter->hw;
       
  2283 	struct net_device *netdev = adapter->netdev;
       
  2284 	u32 rctl;
       
  2285 
       
  2286 	rctl = er32(RCTL);
       
  2287 	rctl &= ~E1000_RCTL_RST;
       
  2288 	ew32(RCTL, rctl);
       
  2289 	E1000_WRITE_FLUSH();
       
  2290 	mdelay(5);
       
  2291 
       
  2292 	if (hw->pci_cmd_word & PCI_COMMAND_INVALIDATE)
       
  2293 		e1000_pci_set_mwi(hw);
       
  2294 
       
  2295 	if (!adapter->netdev && netif_running(netdev)) {
       
  2296 		/* No need to loop, because 82542 supports only 1 queue */
       
  2297 		struct e1000_rx_ring *ring = &adapter->rx_ring[0];
       
  2298 		e1000_configure_rx(adapter);
       
  2299 		if (adapter->ecdev) { 
       
  2300 			/* fill rx ring completely! */
       
  2301 			adapter->alloc_rx_buf(adapter, ring, ring->count);
       
  2302 		} else {
       
  2303             /* this one leaves the last ring element unallocated! */
       
  2304 			adapter->alloc_rx_buf(adapter, ring, E1000_DESC_UNUSED(ring));
       
  2305 		}
       
  2306 
       
  2307 	}
       
  2308 }
       
  2309 
       
  2310 /**
       
  2311  * e1000_set_mac - Change the Ethernet Address of the NIC
       
  2312  * @netdev: network interface device structure
       
  2313  * @p: pointer to an address structure
       
  2314  *
       
  2315  * Returns 0 on success, negative on failure
       
  2316  **/
       
  2317 
       
  2318 static int e1000_set_mac(struct net_device *netdev, void *p)
       
  2319 {
       
  2320 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  2321 	struct e1000_hw *hw = &adapter->hw;
       
  2322 	struct sockaddr *addr = p;
       
  2323 
       
  2324 	if (!is_valid_ether_addr(addr->sa_data))
       
  2325 		return -EADDRNOTAVAIL;
       
  2326 
       
  2327 	/* 82542 2.0 needs to be in reset to write receive address registers */
       
  2328 
       
  2329 	if (hw->mac_type == e1000_82542_rev2_0)
       
  2330 		e1000_enter_82542_rst(adapter);
       
  2331 
       
  2332 	memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
       
  2333 	memcpy(hw->mac_addr, addr->sa_data, netdev->addr_len);
       
  2334 
       
  2335 	e1000_rar_set(hw, hw->mac_addr, 0);
       
  2336 
       
  2337 	/* With 82571 controllers, LAA may be overwritten (with the default)
       
  2338 	 * due to controller reset from the other port. */
       
  2339 	if (hw->mac_type == e1000_82571) {
       
  2340 		/* activate the work around */
       
  2341 		hw->laa_is_present = 1;
       
  2342 
       
  2343 		/* Hold a copy of the LAA in RAR[14] This is done so that
       
  2344 		 * between the time RAR[0] gets clobbered  and the time it
       
  2345 		 * gets fixed (in e1000_watchdog), the actual LAA is in one
       
  2346 		 * of the RARs and no incoming packets directed to this port
       
  2347 		 * are dropped. Eventaully the LAA will be in RAR[0] and
       
  2348 		 * RAR[14] */
       
  2349 		e1000_rar_set(hw, hw->mac_addr,
       
  2350 					E1000_RAR_ENTRIES - 1);
       
  2351 	}
       
  2352 
       
  2353 	if (hw->mac_type == e1000_82542_rev2_0)
       
  2354 		e1000_leave_82542_rst(adapter);
       
  2355 
       
  2356 	return 0;
       
  2357 }
       
  2358 
       
  2359 /**
       
  2360  * e1000_set_rx_mode - Secondary Unicast, Multicast and Promiscuous mode set
       
  2361  * @netdev: network interface device structure
       
  2362  *
       
  2363  * The set_rx_mode entry point is called whenever the unicast or multicast
       
  2364  * address lists or the network interface flags are updated. This routine is
       
  2365  * responsible for configuring the hardware for proper unicast, multicast,
       
  2366  * promiscuous mode, and all-multi behavior.
       
  2367  **/
       
  2368 
       
  2369 static void e1000_set_rx_mode(struct net_device *netdev)
       
  2370 {
       
  2371 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  2372 	struct e1000_hw *hw = &adapter->hw;
       
  2373 	struct dev_addr_list *uc_ptr;
       
  2374 	struct dev_addr_list *mc_ptr;
       
  2375 	u32 rctl;
       
  2376 	u32 hash_value;
       
  2377 	int i, rar_entries = E1000_RAR_ENTRIES;
       
  2378 	int mta_reg_count = (hw->mac_type == e1000_ich8lan) ?
       
  2379 				E1000_NUM_MTA_REGISTERS_ICH8LAN :
       
  2380 				E1000_NUM_MTA_REGISTERS;
       
  2381 
       
  2382 	if (hw->mac_type == e1000_ich8lan)
       
  2383 		rar_entries = E1000_RAR_ENTRIES_ICH8LAN;
       
  2384 
       
  2385 	/* reserve RAR[14] for LAA over-write work-around */
       
  2386 	if (hw->mac_type == e1000_82571)
       
  2387 		rar_entries--;
       
  2388 
       
  2389 	/* Check for Promiscuous and All Multicast modes */
       
  2390 
       
  2391 	rctl = er32(RCTL);
       
  2392 
       
  2393 	if (netdev->flags & IFF_PROMISC) {
       
  2394 		rctl |= (E1000_RCTL_UPE | E1000_RCTL_MPE);
       
  2395 		rctl &= ~E1000_RCTL_VFE;
       
  2396 	} else {
       
  2397 		if (netdev->flags & IFF_ALLMULTI) {
       
  2398 			rctl |= E1000_RCTL_MPE;
       
  2399 		} else {
       
  2400 			rctl &= ~E1000_RCTL_MPE;
       
  2401 		}
       
  2402 		if (adapter->hw.mac_type != e1000_ich8lan)
       
  2403 			rctl |= E1000_RCTL_VFE;
       
  2404 	}
       
  2405 
       
  2406 	uc_ptr = NULL;
       
  2407 	if (netdev->uc_count > rar_entries - 1) {
       
  2408 		rctl |= E1000_RCTL_UPE;
       
  2409 	} else if (!(netdev->flags & IFF_PROMISC)) {
       
  2410 		rctl &= ~E1000_RCTL_UPE;
       
  2411 		uc_ptr = netdev->uc_list;
       
  2412 	}
       
  2413 
       
  2414 	ew32(RCTL, rctl);
       
  2415 
       
  2416 	/* 82542 2.0 needs to be in reset to write receive address registers */
       
  2417 
       
  2418 	if (hw->mac_type == e1000_82542_rev2_0)
       
  2419 		e1000_enter_82542_rst(adapter);
       
  2420 
       
  2421 	/* load the first 14 addresses into the exact filters 1-14. Unicast
       
  2422 	 * addresses take precedence to avoid disabling unicast filtering
       
  2423 	 * when possible.
       
  2424 	 *
       
  2425 	 * RAR 0 is used for the station MAC adddress
       
  2426 	 * if there are not 14 addresses, go ahead and clear the filters
       
  2427 	 * -- with 82571 controllers only 0-13 entries are filled here
       
  2428 	 */
       
  2429 	mc_ptr = netdev->mc_list;
       
  2430 
       
  2431 	for (i = 1; i < rar_entries; i++) {
       
  2432 		if (uc_ptr) {
       
  2433 			e1000_rar_set(hw, uc_ptr->da_addr, i);
       
  2434 			uc_ptr = uc_ptr->next;
       
  2435 		} else if (mc_ptr) {
       
  2436 			e1000_rar_set(hw, mc_ptr->da_addr, i);
       
  2437 			mc_ptr = mc_ptr->next;
       
  2438 		} else {
       
  2439 			E1000_WRITE_REG_ARRAY(hw, RA, i << 1, 0);
       
  2440 			E1000_WRITE_FLUSH();
       
  2441 			E1000_WRITE_REG_ARRAY(hw, RA, (i << 1) + 1, 0);
       
  2442 			E1000_WRITE_FLUSH();
       
  2443 		}
       
  2444 	}
       
  2445 	WARN_ON(uc_ptr != NULL);
       
  2446 
       
  2447 	/* clear the old settings from the multicast hash table */
       
  2448 
       
  2449 	for (i = 0; i < mta_reg_count; i++) {
       
  2450 		E1000_WRITE_REG_ARRAY(hw, MTA, i, 0);
       
  2451 		E1000_WRITE_FLUSH();
       
  2452 	}
       
  2453 
       
  2454 	/* load any remaining addresses into the hash table */
       
  2455 
       
  2456 	for (; mc_ptr; mc_ptr = mc_ptr->next) {
       
  2457 		hash_value = e1000_hash_mc_addr(hw, mc_ptr->da_addr);
       
  2458 		e1000_mta_set(hw, hash_value);
       
  2459 	}
       
  2460 
       
  2461 	if (hw->mac_type == e1000_82542_rev2_0)
       
  2462 		e1000_leave_82542_rst(adapter);
       
  2463 }
       
  2464 
       
  2465 /* Need to wait a few seconds after link up to get diagnostic information from
       
  2466  * the phy */
       
  2467 
       
  2468 static void e1000_update_phy_info(unsigned long data)
       
  2469 {
       
  2470 	struct e1000_adapter *adapter = (struct e1000_adapter *)data;
       
  2471 	struct e1000_hw *hw = &adapter->hw;
       
  2472 	e1000_phy_get_info(hw, &adapter->phy_info);
       
  2473 }
       
  2474 
       
  2475 /**
       
  2476  * e1000_82547_tx_fifo_stall - Timer Call-back
       
  2477  * @data: pointer to adapter cast into an unsigned long
       
  2478  **/
       
  2479 
       
  2480 static void e1000_82547_tx_fifo_stall(unsigned long data)
       
  2481 {
       
  2482 	struct e1000_adapter *adapter = (struct e1000_adapter *)data;
       
  2483 	struct e1000_hw *hw = &adapter->hw;
       
  2484 	struct net_device *netdev = adapter->netdev;
       
  2485 	u32 tctl;
       
  2486 
       
  2487 	if (atomic_read(&adapter->tx_fifo_stall)) {
       
  2488 		if ((er32(TDT) == er32(TDH)) &&
       
  2489 		   (er32(TDFT) == er32(TDFH)) &&
       
  2490 		   (er32(TDFTS) == er32(TDFHS))) {
       
  2491 			tctl = er32(TCTL);
       
  2492 			ew32(TCTL, tctl & ~E1000_TCTL_EN);
       
  2493 			ew32(TDFT, adapter->tx_head_addr);
       
  2494 			ew32(TDFH, adapter->tx_head_addr);
       
  2495 			ew32(TDFTS, adapter->tx_head_addr);
       
  2496 			ew32(TDFHS, adapter->tx_head_addr);
       
  2497 			ew32(TCTL, tctl);
       
  2498 			E1000_WRITE_FLUSH();
       
  2499 
       
  2500 			adapter->tx_fifo_head = 0;
       
  2501 			atomic_set(&adapter->tx_fifo_stall, 0);
       
  2502 			if (!adapter->ecdev) netif_wake_queue(netdev);
       
  2503 		} else {
       
  2504 			if (!adapter->ecdev)
       
  2505 				mod_timer(&adapter->tx_fifo_stall_timer, jiffies + 1);
       
  2506 		}
       
  2507 	}
       
  2508 }
       
  2509 
       
  2510 /**
       
  2511  * e1000_watchdog - Timer Call-back
       
  2512  * @data: pointer to adapter cast into an unsigned long
       
  2513  **/
       
  2514 static void e1000_watchdog(unsigned long data)
       
  2515 {
       
  2516 	struct e1000_adapter *adapter = (struct e1000_adapter *)data;
       
  2517 	struct e1000_hw *hw = &adapter->hw;
       
  2518 	struct net_device *netdev = adapter->netdev;
       
  2519 	struct e1000_tx_ring *txdr = adapter->tx_ring;
       
  2520 	u32 link, tctl;
       
  2521 	s32 ret_val;
       
  2522 
       
  2523 	ret_val = e1000_check_for_link(hw);
       
  2524 	if ((ret_val == E1000_ERR_PHY) &&
       
  2525 	    (hw->phy_type == e1000_phy_igp_3) &&
       
  2526 	    (er32(CTRL) & E1000_PHY_CTRL_GBE_DISABLE)) {
       
  2527 		/* See e1000_kumeran_lock_loss_workaround() */
       
  2528 		DPRINTK(LINK, INFO,
       
  2529 			"Gigabit has been disabled, downgrading speed\n");
       
  2530 	}
       
  2531 
       
  2532 	if (hw->mac_type == e1000_82573) {
       
  2533 		e1000_enable_tx_pkt_filtering(hw);
       
  2534 		if (adapter->mng_vlan_id != hw->mng_cookie.vlan_id)
       
  2535 			e1000_update_mng_vlan(adapter);
       
  2536 	}
       
  2537 
       
  2538 	if ((hw->media_type == e1000_media_type_internal_serdes) &&
       
  2539 	   !(er32(TXCW) & E1000_TXCW_ANE))
       
  2540 		link = !hw->serdes_link_down;
       
  2541 	else
       
  2542 		link = er32(STATUS) & E1000_STATUS_LU;
       
  2543 
       
  2544 	if (link) {
       
  2545 		if ((adapter->ecdev && !ecdev_get_link(adapter->ecdev))
       
  2546 				|| (!adapter->ecdev && !netif_carrier_ok(netdev))) {
       
  2547 			u32 ctrl;
       
  2548 			bool txb2b = true;
       
  2549 			e1000_get_speed_and_duplex(hw,
       
  2550 			                           &adapter->link_speed,
       
  2551 			                           &adapter->link_duplex);
       
  2552 
       
  2553 			ctrl = er32(CTRL);
       
  2554 			printk(KERN_INFO "e1000: %s NIC Link is Up %d Mbps %s, "
       
  2555 			       "Flow Control: %s\n",
       
  2556 			       netdev->name,
       
  2557 			       adapter->link_speed,
       
  2558 			       adapter->link_duplex == FULL_DUPLEX ?
       
  2559 			        "Full Duplex" : "Half Duplex",
       
  2560 			        ((ctrl & E1000_CTRL_TFCE) && (ctrl &
       
  2561 			        E1000_CTRL_RFCE)) ? "RX/TX" : ((ctrl &
       
  2562 			        E1000_CTRL_RFCE) ? "RX" : ((ctrl &
       
  2563 			        E1000_CTRL_TFCE) ? "TX" : "None" )));
       
  2564 
       
  2565 			/* tweak tx_queue_len according to speed/duplex
       
  2566 			 * and adjust the timeout factor */
       
  2567 			netdev->tx_queue_len = adapter->tx_queue_len;
       
  2568 			adapter->tx_timeout_factor = 1;
       
  2569 			switch (adapter->link_speed) {
       
  2570 			case SPEED_10:
       
  2571 				txb2b = false;
       
  2572 				netdev->tx_queue_len = 10;
       
  2573 				adapter->tx_timeout_factor = 8;
       
  2574 				break;
       
  2575 			case SPEED_100:
       
  2576 				txb2b = false;
       
  2577 				netdev->tx_queue_len = 100;
       
  2578 				/* maybe add some timeout factor ? */
       
  2579 				break;
       
  2580 			}
       
  2581 
       
  2582 			if ((hw->mac_type == e1000_82571 ||
       
  2583 			     hw->mac_type == e1000_82572) &&
       
  2584 			    !txb2b) {
       
  2585 				u32 tarc0;
       
  2586 				tarc0 = er32(TARC0);
       
  2587 				tarc0 &= ~(1 << 21);
       
  2588 				ew32(TARC0, tarc0);
       
  2589 			}
       
  2590 
       
  2591 			/* disable TSO for pcie and 10/100 speeds, to avoid
       
  2592 			 * some hardware issues */
       
  2593 			if (!adapter->tso_force &&
       
  2594 			    hw->bus_type == e1000_bus_type_pci_express){
       
  2595 				switch (adapter->link_speed) {
       
  2596 				case SPEED_10:
       
  2597 				case SPEED_100:
       
  2598 					DPRINTK(PROBE,INFO,
       
  2599 				        "10/100 speed: disabling TSO\n");
       
  2600 					netdev->features &= ~NETIF_F_TSO;
       
  2601 					netdev->features &= ~NETIF_F_TSO6;
       
  2602 					break;
       
  2603 				case SPEED_1000:
       
  2604 					netdev->features |= NETIF_F_TSO;
       
  2605 					netdev->features |= NETIF_F_TSO6;
       
  2606 					break;
       
  2607 				default:
       
  2608 					/* oops */
       
  2609 					break;
       
  2610 				}
       
  2611 			}
       
  2612 
       
  2613 			/* enable transmits in the hardware, need to do this
       
  2614 			 * after setting TARC0 */
       
  2615 			tctl = er32(TCTL);
       
  2616 			tctl |= E1000_TCTL_EN;
       
  2617 			ew32(TCTL, tctl);
       
  2618 
       
  2619 			if (adapter->ecdev) {
       
  2620 				ecdev_set_link(adapter->ecdev, 1);
       
  2621 			} else {
       
  2622 				netif_carrier_on(netdev);
       
  2623 				netif_wake_queue(netdev);
       
  2624 				mod_timer(&adapter->phy_info_timer, round_jiffies(jiffies + 2 * HZ));
       
  2625 			}
       
  2626 			adapter->smartspeed = 0;
       
  2627 		} else {
       
  2628 			/* make sure the receive unit is started */
       
  2629 			if (hw->rx_needs_kicking) {
       
  2630 				u32 rctl = er32(RCTL);
       
  2631 				ew32(RCTL, rctl | E1000_RCTL_EN);
       
  2632 			}
       
  2633 		}
       
  2634 	} else {
       
  2635 		if ((adapter->ecdev && ecdev_get_link(adapter->ecdev))
       
  2636 				|| (!adapter->ecdev && netif_carrier_ok(netdev))) {
       
  2637 			adapter->link_speed = 0;
       
  2638 			adapter->link_duplex = 0;
       
  2639 			printk(KERN_INFO "e1000: %s NIC Link is Down\n",
       
  2640 			       netdev->name);
       
  2641             if (adapter->ecdev) {
       
  2642 				ecdev_set_link(adapter->ecdev, 0);
       
  2643 			} else {
       
  2644 				netif_carrier_off(netdev);
       
  2645 				netif_stop_queue(netdev);
       
  2646 				mod_timer(&adapter->phy_info_timer, round_jiffies(jiffies + 2 * HZ));
       
  2647 			}
       
  2648 
       
  2649 			/* 80003ES2LAN workaround--
       
  2650 			 * For packet buffer work-around on link down event;
       
  2651 			 * disable receives in the ISR and
       
  2652 			 * reset device here in the watchdog
       
  2653 			 */
       
  2654 			if (hw->mac_type == e1000_80003es2lan)
       
  2655 				/* reset device */
       
  2656 				schedule_work(&adapter->reset_task);
       
  2657 		}
       
  2658 
       
  2659 		e1000_smartspeed(adapter);
       
  2660 	}
       
  2661 
       
  2662 	e1000_update_stats(adapter);
       
  2663 
       
  2664 	hw->tx_packet_delta = adapter->stats.tpt - adapter->tpt_old;
       
  2665 	adapter->tpt_old = adapter->stats.tpt;
       
  2666 	hw->collision_delta = adapter->stats.colc - adapter->colc_old;
       
  2667 	adapter->colc_old = adapter->stats.colc;
       
  2668 
       
  2669 	adapter->gorcl = adapter->stats.gorcl - adapter->gorcl_old;
       
  2670 	adapter->gorcl_old = adapter->stats.gorcl;
       
  2671 	adapter->gotcl = adapter->stats.gotcl - adapter->gotcl_old;
       
  2672 	adapter->gotcl_old = adapter->stats.gotcl;
       
  2673 
       
  2674 	e1000_update_adaptive(hw);
       
  2675 
       
  2676 	if (!adapter->ecdev && !netif_carrier_ok(netdev)) {
       
  2677 		if (E1000_DESC_UNUSED(txdr) + 1 < txdr->count) {
       
  2678 			/* We've lost link, so the controller stops DMA,
       
  2679 			 * but we've got queued Tx work that's never going
       
  2680 			 * to get done, so reset controller to flush Tx.
       
  2681 			 * (Do the reset outside of interrupt context). */
       
  2682 			adapter->tx_timeout_count++;
       
  2683 			schedule_work(&adapter->reset_task);
       
  2684 		}
       
  2685 	}
       
  2686 
       
  2687 	/* Cause software interrupt to ensure rx ring is cleaned */
       
  2688 	ew32(ICS, E1000_ICS_RXDMT0);
       
  2689 
       
  2690 	/* Force detection of hung controller every watchdog period */
       
  2691 	if (!adapter->ecdev) adapter->detect_tx_hung = true;
       
  2692 
       
  2693 	/* With 82571 controllers, LAA may be overwritten due to controller
       
  2694 	 * reset from the other port. Set the appropriate LAA in RAR[0] */
       
  2695 	if (hw->mac_type == e1000_82571 && hw->laa_is_present)
       
  2696 		e1000_rar_set(hw, hw->mac_addr, 0);
       
  2697 
       
  2698 	/* Reset the timer */
       
  2699 	if (!adapter->ecdev)
       
  2700 		mod_timer(&adapter->watchdog_timer, round_jiffies(jiffies + 2 * HZ));
       
  2701 }
       
  2702 
       
  2703 enum latency_range {
       
  2704 	lowest_latency = 0,
       
  2705 	low_latency = 1,
       
  2706 	bulk_latency = 2,
       
  2707 	latency_invalid = 255
       
  2708 };
       
  2709 
       
  2710 /**
       
  2711  * e1000_update_itr - update the dynamic ITR value based on statistics
       
  2712  *      Stores a new ITR value based on packets and byte
       
  2713  *      counts during the last interrupt.  The advantage of per interrupt
       
  2714  *      computation is faster updates and more accurate ITR for the current
       
  2715  *      traffic pattern.  Constants in this function were computed
       
  2716  *      based on theoretical maximum wire speed and thresholds were set based
       
  2717  *      on testing data as well as attempting to minimize response time
       
  2718  *      while increasing bulk throughput.
       
  2719  *      this functionality is controlled by the InterruptThrottleRate module
       
  2720  *      parameter (see e1000_param.c)
       
  2721  * @adapter: pointer to adapter
       
  2722  * @itr_setting: current adapter->itr
       
  2723  * @packets: the number of packets during this measurement interval
       
  2724  * @bytes: the number of bytes during this measurement interval
       
  2725  **/
       
  2726 static unsigned int e1000_update_itr(struct e1000_adapter *adapter,
       
  2727 				     u16 itr_setting, int packets, int bytes)
       
  2728 {
       
  2729 	unsigned int retval = itr_setting;
       
  2730 	struct e1000_hw *hw = &adapter->hw;
       
  2731 
       
  2732 	if (unlikely(hw->mac_type < e1000_82540))
       
  2733 		goto update_itr_done;
       
  2734 
       
  2735 	if (packets == 0)
       
  2736 		goto update_itr_done;
       
  2737 
       
  2738 	switch (itr_setting) {
       
  2739 	case lowest_latency:
       
  2740 		/* jumbo frames get bulk treatment*/
       
  2741 		if (bytes/packets > 8000)
       
  2742 			retval = bulk_latency;
       
  2743 		else if ((packets < 5) && (bytes > 512))
       
  2744 			retval = low_latency;
       
  2745 		break;
       
  2746 	case low_latency:  /* 50 usec aka 20000 ints/s */
       
  2747 		if (bytes > 10000) {
       
  2748 			/* jumbo frames need bulk latency setting */
       
  2749 			if (bytes/packets > 8000)
       
  2750 				retval = bulk_latency;
       
  2751 			else if ((packets < 10) || ((bytes/packets) > 1200))
       
  2752 				retval = bulk_latency;
       
  2753 			else if ((packets > 35))
       
  2754 				retval = lowest_latency;
       
  2755 		} else if (bytes/packets > 2000)
       
  2756 			retval = bulk_latency;
       
  2757 		else if (packets <= 2 && bytes < 512)
       
  2758 			retval = lowest_latency;
       
  2759 		break;
       
  2760 	case bulk_latency: /* 250 usec aka 4000 ints/s */
       
  2761 		if (bytes > 25000) {
       
  2762 			if (packets > 35)
       
  2763 				retval = low_latency;
       
  2764 		} else if (bytes < 6000) {
       
  2765 			retval = low_latency;
       
  2766 		}
       
  2767 		break;
       
  2768 	}
       
  2769 
       
  2770 update_itr_done:
       
  2771 	return retval;
       
  2772 }
       
  2773 
       
  2774 static void e1000_set_itr(struct e1000_adapter *adapter)
       
  2775 {
       
  2776 	struct e1000_hw *hw = &adapter->hw;
       
  2777 	u16 current_itr;
       
  2778 	u32 new_itr = adapter->itr;
       
  2779 
       
  2780 	if (unlikely(hw->mac_type < e1000_82540))
       
  2781 		return;
       
  2782 
       
  2783 	/* for non-gigabit speeds, just fix the interrupt rate at 4000 */
       
  2784 	if (unlikely(adapter->link_speed != SPEED_1000)) {
       
  2785 		current_itr = 0;
       
  2786 		new_itr = 4000;
       
  2787 		goto set_itr_now;
       
  2788 	}
       
  2789 
       
  2790 	adapter->tx_itr = e1000_update_itr(adapter,
       
  2791 	                            adapter->tx_itr,
       
  2792 	                            adapter->total_tx_packets,
       
  2793 	                            adapter->total_tx_bytes);
       
  2794 	/* conservative mode (itr 3) eliminates the lowest_latency setting */
       
  2795 	if (adapter->itr_setting == 3 && adapter->tx_itr == lowest_latency)
       
  2796 		adapter->tx_itr = low_latency;
       
  2797 
       
  2798 	adapter->rx_itr = e1000_update_itr(adapter,
       
  2799 	                            adapter->rx_itr,
       
  2800 	                            adapter->total_rx_packets,
       
  2801 	                            adapter->total_rx_bytes);
       
  2802 	/* conservative mode (itr 3) eliminates the lowest_latency setting */
       
  2803 	if (adapter->itr_setting == 3 && adapter->rx_itr == lowest_latency)
       
  2804 		adapter->rx_itr = low_latency;
       
  2805 
       
  2806 	current_itr = max(adapter->rx_itr, adapter->tx_itr);
       
  2807 
       
  2808 	switch (current_itr) {
       
  2809 	/* counts and packets in update_itr are dependent on these numbers */
       
  2810 	case lowest_latency:
       
  2811 		new_itr = 70000;
       
  2812 		break;
       
  2813 	case low_latency:
       
  2814 		new_itr = 20000; /* aka hwitr = ~200 */
       
  2815 		break;
       
  2816 	case bulk_latency:
       
  2817 		new_itr = 4000;
       
  2818 		break;
       
  2819 	default:
       
  2820 		break;
       
  2821 	}
       
  2822 
       
  2823 set_itr_now:
       
  2824 	if (new_itr != adapter->itr) {
       
  2825 		/* this attempts to bias the interrupt rate towards Bulk
       
  2826 		 * by adding intermediate steps when interrupt rate is
       
  2827 		 * increasing */
       
  2828 		new_itr = new_itr > adapter->itr ?
       
  2829 		             min(adapter->itr + (new_itr >> 2), new_itr) :
       
  2830 		             new_itr;
       
  2831 		adapter->itr = new_itr;
       
  2832 		ew32(ITR, 1000000000 / (new_itr * 256));
       
  2833 	}
       
  2834 
       
  2835 	return;
       
  2836 }
       
  2837 
       
  2838 #define E1000_TX_FLAGS_CSUM		0x00000001
       
  2839 #define E1000_TX_FLAGS_VLAN		0x00000002
       
  2840 #define E1000_TX_FLAGS_TSO		0x00000004
       
  2841 #define E1000_TX_FLAGS_IPV4		0x00000008
       
  2842 #define E1000_TX_FLAGS_VLAN_MASK	0xffff0000
       
  2843 #define E1000_TX_FLAGS_VLAN_SHIFT	16
       
  2844 
       
  2845 static int e1000_tso(struct e1000_adapter *adapter,
       
  2846 		     struct e1000_tx_ring *tx_ring, struct sk_buff *skb)
       
  2847 {
       
  2848 	struct e1000_context_desc *context_desc;
       
  2849 	struct e1000_buffer *buffer_info;
       
  2850 	unsigned int i;
       
  2851 	u32 cmd_length = 0;
       
  2852 	u16 ipcse = 0, tucse, mss;
       
  2853 	u8 ipcss, ipcso, tucss, tucso, hdr_len;
       
  2854 	int err;
       
  2855 
       
  2856 	if (skb_is_gso(skb)) {
       
  2857 		if (skb_header_cloned(skb)) {
       
  2858 			err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
       
  2859 			if (err)
       
  2860 				return err;
       
  2861 		}
       
  2862 
       
  2863 		hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
       
  2864 		mss = skb_shinfo(skb)->gso_size;
       
  2865 		if (skb->protocol == htons(ETH_P_IP)) {
       
  2866 			struct iphdr *iph = ip_hdr(skb);
       
  2867 			iph->tot_len = 0;
       
  2868 			iph->check = 0;
       
  2869 			tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr,
       
  2870 								 iph->daddr, 0,
       
  2871 								 IPPROTO_TCP,
       
  2872 								 0);
       
  2873 			cmd_length = E1000_TXD_CMD_IP;
       
  2874 			ipcse = skb_transport_offset(skb) - 1;
       
  2875 		} else if (skb->protocol == htons(ETH_P_IPV6)) {
       
  2876 			ipv6_hdr(skb)->payload_len = 0;
       
  2877 			tcp_hdr(skb)->check =
       
  2878 				~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
       
  2879 						 &ipv6_hdr(skb)->daddr,
       
  2880 						 0, IPPROTO_TCP, 0);
       
  2881 			ipcse = 0;
       
  2882 		}
       
  2883 		ipcss = skb_network_offset(skb);
       
  2884 		ipcso = (void *)&(ip_hdr(skb)->check) - (void *)skb->data;
       
  2885 		tucss = skb_transport_offset(skb);
       
  2886 		tucso = (void *)&(tcp_hdr(skb)->check) - (void *)skb->data;
       
  2887 		tucse = 0;
       
  2888 
       
  2889 		cmd_length |= (E1000_TXD_CMD_DEXT | E1000_TXD_CMD_TSE |
       
  2890 			       E1000_TXD_CMD_TCP | (skb->len - (hdr_len)));
       
  2891 
       
  2892 		i = tx_ring->next_to_use;
       
  2893 		context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
       
  2894 		buffer_info = &tx_ring->buffer_info[i];
       
  2895 
       
  2896 		context_desc->lower_setup.ip_fields.ipcss  = ipcss;
       
  2897 		context_desc->lower_setup.ip_fields.ipcso  = ipcso;
       
  2898 		context_desc->lower_setup.ip_fields.ipcse  = cpu_to_le16(ipcse);
       
  2899 		context_desc->upper_setup.tcp_fields.tucss = tucss;
       
  2900 		context_desc->upper_setup.tcp_fields.tucso = tucso;
       
  2901 		context_desc->upper_setup.tcp_fields.tucse = cpu_to_le16(tucse);
       
  2902 		context_desc->tcp_seg_setup.fields.mss     = cpu_to_le16(mss);
       
  2903 		context_desc->tcp_seg_setup.fields.hdr_len = hdr_len;
       
  2904 		context_desc->cmd_and_length = cpu_to_le32(cmd_length);
       
  2905 
       
  2906 		buffer_info->time_stamp = jiffies;
       
  2907 		buffer_info->next_to_watch = i;
       
  2908 
       
  2909 		if (++i == tx_ring->count) i = 0;
       
  2910 		tx_ring->next_to_use = i;
       
  2911 
       
  2912 		return true;
       
  2913 	}
       
  2914 	return false;
       
  2915 }
       
  2916 
       
  2917 static bool e1000_tx_csum(struct e1000_adapter *adapter,
       
  2918 			  struct e1000_tx_ring *tx_ring, struct sk_buff *skb)
       
  2919 {
       
  2920 	struct e1000_context_desc *context_desc;
       
  2921 	struct e1000_buffer *buffer_info;
       
  2922 	unsigned int i;
       
  2923 	u8 css;
       
  2924 	u32 cmd_len = E1000_TXD_CMD_DEXT;
       
  2925 
       
  2926 	if (skb->ip_summed != CHECKSUM_PARTIAL)
       
  2927 		return false;
       
  2928 
       
  2929 	switch (skb->protocol) {
       
  2930 	case __constant_htons(ETH_P_IP):
       
  2931 		if (ip_hdr(skb)->protocol == IPPROTO_TCP)
       
  2932 			cmd_len |= E1000_TXD_CMD_TCP;
       
  2933 		break;
       
  2934 	case __constant_htons(ETH_P_IPV6):
       
  2935 		/* XXX not handling all IPV6 headers */
       
  2936 		if (ipv6_hdr(skb)->nexthdr == IPPROTO_TCP)
       
  2937 			cmd_len |= E1000_TXD_CMD_TCP;
       
  2938 		break;
       
  2939 	default:
       
  2940 		if (unlikely(net_ratelimit()))
       
  2941 			DPRINTK(DRV, WARNING,
       
  2942 			        "checksum_partial proto=%x!\n", skb->protocol);
       
  2943 		break;
       
  2944 	}
       
  2945 
       
  2946 	css = skb_transport_offset(skb);
       
  2947 
       
  2948 	i = tx_ring->next_to_use;
       
  2949 	buffer_info = &tx_ring->buffer_info[i];
       
  2950 	context_desc = E1000_CONTEXT_DESC(*tx_ring, i);
       
  2951 
       
  2952 	context_desc->lower_setup.ip_config = 0;
       
  2953 	context_desc->upper_setup.tcp_fields.tucss = css;
       
  2954 	context_desc->upper_setup.tcp_fields.tucso =
       
  2955 		css + skb->csum_offset;
       
  2956 	context_desc->upper_setup.tcp_fields.tucse = 0;
       
  2957 	context_desc->tcp_seg_setup.data = 0;
       
  2958 	context_desc->cmd_and_length = cpu_to_le32(cmd_len);
       
  2959 
       
  2960 	buffer_info->time_stamp = jiffies;
       
  2961 	buffer_info->next_to_watch = i;
       
  2962 
       
  2963 	if (unlikely(++i == tx_ring->count)) i = 0;
       
  2964 	tx_ring->next_to_use = i;
       
  2965 
       
  2966 	return true;
       
  2967 }
       
  2968 
       
  2969 #define E1000_MAX_TXD_PWR	12
       
  2970 #define E1000_MAX_DATA_PER_TXD	(1<<E1000_MAX_TXD_PWR)
       
  2971 
       
  2972 static int e1000_tx_map(struct e1000_adapter *adapter,
       
  2973 			struct e1000_tx_ring *tx_ring,
       
  2974 			struct sk_buff *skb, unsigned int first,
       
  2975 			unsigned int max_per_txd, unsigned int nr_frags,
       
  2976 			unsigned int mss)
       
  2977 {
       
  2978 	struct e1000_hw *hw = &adapter->hw;
       
  2979 	struct e1000_buffer *buffer_info;
       
  2980 	unsigned int len = skb->len;
       
  2981 	unsigned int offset = 0, size, count = 0, i;
       
  2982 	unsigned int f;
       
  2983 	len -= skb->data_len;
       
  2984 
       
  2985 	i = tx_ring->next_to_use;
       
  2986 
       
  2987 	while (len) {
       
  2988 		buffer_info = &tx_ring->buffer_info[i];
       
  2989 		size = min(len, max_per_txd);
       
  2990 		/* Workaround for Controller erratum --
       
  2991 		 * descriptor for non-tso packet in a linear SKB that follows a
       
  2992 		 * tso gets written back prematurely before the data is fully
       
  2993 		 * DMA'd to the controller */
       
  2994 		if (!skb->data_len && tx_ring->last_tx_tso &&
       
  2995 		    !skb_is_gso(skb)) {
       
  2996 			tx_ring->last_tx_tso = 0;
       
  2997 			size -= 4;
       
  2998 		}
       
  2999 
       
  3000 		/* Workaround for premature desc write-backs
       
  3001 		 * in TSO mode.  Append 4-byte sentinel desc */
       
  3002 		if (unlikely(mss && !nr_frags && size == len && size > 8))
       
  3003 			size -= 4;
       
  3004 		/* work-around for errata 10 and it applies
       
  3005 		 * to all controllers in PCI-X mode
       
  3006 		 * The fix is to make sure that the first descriptor of a
       
  3007 		 * packet is smaller than 2048 - 16 - 16 (or 2016) bytes
       
  3008 		 */
       
  3009 		if (unlikely((hw->bus_type == e1000_bus_type_pcix) &&
       
  3010 		                (size > 2015) && count == 0))
       
  3011 		        size = 2015;
       
  3012 
       
  3013 		/* Workaround for potential 82544 hang in PCI-X.  Avoid
       
  3014 		 * terminating buffers within evenly-aligned dwords. */
       
  3015 		if (unlikely(adapter->pcix_82544 &&
       
  3016 		   !((unsigned long)(skb->data + offset + size - 1) & 4) &&
       
  3017 		   size > 4))
       
  3018 			size -= 4;
       
  3019 
       
  3020 		buffer_info->length = size;
       
  3021 		buffer_info->dma =
       
  3022 			pci_map_single(adapter->pdev,
       
  3023 				skb->data + offset,
       
  3024 				size,
       
  3025 				PCI_DMA_TODEVICE);
       
  3026 		buffer_info->time_stamp = jiffies;
       
  3027 		buffer_info->next_to_watch = i;
       
  3028 
       
  3029 		len -= size;
       
  3030 		offset += size;
       
  3031 		count++;
       
  3032 		if (unlikely(++i == tx_ring->count)) i = 0;
       
  3033 	}
       
  3034 
       
  3035 	for (f = 0; f < nr_frags; f++) {
       
  3036 		struct skb_frag_struct *frag;
       
  3037 
       
  3038 		frag = &skb_shinfo(skb)->frags[f];
       
  3039 		len = frag->size;
       
  3040 		offset = frag->page_offset;
       
  3041 
       
  3042 		while (len) {
       
  3043 			buffer_info = &tx_ring->buffer_info[i];
       
  3044 			size = min(len, max_per_txd);
       
  3045 			/* Workaround for premature desc write-backs
       
  3046 			 * in TSO mode.  Append 4-byte sentinel desc */
       
  3047 			if (unlikely(mss && f == (nr_frags-1) && size == len && size > 8))
       
  3048 				size -= 4;
       
  3049 			/* Workaround for potential 82544 hang in PCI-X.
       
  3050 			 * Avoid terminating buffers within evenly-aligned
       
  3051 			 * dwords. */
       
  3052 			if (unlikely(adapter->pcix_82544 &&
       
  3053 			   !((unsigned long)(frag->page+offset+size-1) & 4) &&
       
  3054 			   size > 4))
       
  3055 				size -= 4;
       
  3056 
       
  3057 			buffer_info->length = size;
       
  3058 			buffer_info->dma =
       
  3059 				pci_map_page(adapter->pdev,
       
  3060 					frag->page,
       
  3061 					offset,
       
  3062 					size,
       
  3063 					PCI_DMA_TODEVICE);
       
  3064 			buffer_info->time_stamp = jiffies;
       
  3065 			buffer_info->next_to_watch = i;
       
  3066 
       
  3067 			len -= size;
       
  3068 			offset += size;
       
  3069 			count++;
       
  3070 			if (unlikely(++i == tx_ring->count)) i = 0;
       
  3071 		}
       
  3072 	}
       
  3073 
       
  3074 	i = (i == 0) ? tx_ring->count - 1 : i - 1;
       
  3075 	tx_ring->buffer_info[i].skb = skb;
       
  3076 	tx_ring->buffer_info[first].next_to_watch = i;
       
  3077 
       
  3078 	return count;
       
  3079 }
       
  3080 
       
  3081 static void e1000_tx_queue(struct e1000_adapter *adapter,
       
  3082 			   struct e1000_tx_ring *tx_ring, int tx_flags,
       
  3083 			   int count)
       
  3084 {
       
  3085 	struct e1000_hw *hw = &adapter->hw;
       
  3086 	struct e1000_tx_desc *tx_desc = NULL;
       
  3087 	struct e1000_buffer *buffer_info;
       
  3088 	u32 txd_upper = 0, txd_lower = E1000_TXD_CMD_IFCS;
       
  3089 	unsigned int i;
       
  3090 
       
  3091 	if (likely(tx_flags & E1000_TX_FLAGS_TSO)) {
       
  3092 		txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D |
       
  3093 		             E1000_TXD_CMD_TSE;
       
  3094 		txd_upper |= E1000_TXD_POPTS_TXSM << 8;
       
  3095 
       
  3096 		if (likely(tx_flags & E1000_TX_FLAGS_IPV4))
       
  3097 			txd_upper |= E1000_TXD_POPTS_IXSM << 8;
       
  3098 	}
       
  3099 
       
  3100 	if (likely(tx_flags & E1000_TX_FLAGS_CSUM)) {
       
  3101 		txd_lower |= E1000_TXD_CMD_DEXT | E1000_TXD_DTYP_D;
       
  3102 		txd_upper |= E1000_TXD_POPTS_TXSM << 8;
       
  3103 	}
       
  3104 
       
  3105 	if (unlikely(tx_flags & E1000_TX_FLAGS_VLAN)) {
       
  3106 		txd_lower |= E1000_TXD_CMD_VLE;
       
  3107 		txd_upper |= (tx_flags & E1000_TX_FLAGS_VLAN_MASK);
       
  3108 	}
       
  3109 
       
  3110 	i = tx_ring->next_to_use;
       
  3111 
       
  3112 	while (count--) {
       
  3113 		buffer_info = &tx_ring->buffer_info[i];
       
  3114 		tx_desc = E1000_TX_DESC(*tx_ring, i);
       
  3115 		tx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
       
  3116 		tx_desc->lower.data =
       
  3117 			cpu_to_le32(txd_lower | buffer_info->length);
       
  3118 		tx_desc->upper.data = cpu_to_le32(txd_upper);
       
  3119 		if (unlikely(++i == tx_ring->count)) i = 0;
       
  3120 	}
       
  3121 
       
  3122 	tx_desc->lower.data |= cpu_to_le32(adapter->txd_cmd);
       
  3123 
       
  3124 	/* Force memory writes to complete before letting h/w
       
  3125 	 * know there are new descriptors to fetch.  (Only
       
  3126 	 * applicable for weak-ordered memory model archs,
       
  3127 	 * such as IA-64). */
       
  3128 	wmb();
       
  3129 
       
  3130 	tx_ring->next_to_use = i;
       
  3131 	writel(i, hw->hw_addr + tx_ring->tdt);
       
  3132 	/* we need this if more than one processor can write to our tail
       
  3133 	 * at a time, it syncronizes IO on IA64/Altix systems */
       
  3134 	mmiowb();
       
  3135 }
       
  3136 
       
  3137 /**
       
  3138  * 82547 workaround to avoid controller hang in half-duplex environment.
       
  3139  * The workaround is to avoid queuing a large packet that would span
       
  3140  * the internal Tx FIFO ring boundary by notifying the stack to resend
       
  3141  * the packet at a later time.  This gives the Tx FIFO an opportunity to
       
  3142  * flush all packets.  When that occurs, we reset the Tx FIFO pointers
       
  3143  * to the beginning of the Tx FIFO.
       
  3144  **/
       
  3145 
       
  3146 #define E1000_FIFO_HDR			0x10
       
  3147 #define E1000_82547_PAD_LEN		0x3E0
       
  3148 
       
  3149 static int e1000_82547_fifo_workaround(struct e1000_adapter *adapter,
       
  3150 				       struct sk_buff *skb)
       
  3151 {
       
  3152 	u32 fifo_space = adapter->tx_fifo_size - adapter->tx_fifo_head;
       
  3153 	u32 skb_fifo_len = skb->len + E1000_FIFO_HDR;
       
  3154 
       
  3155 	skb_fifo_len = ALIGN(skb_fifo_len, E1000_FIFO_HDR);
       
  3156 
       
  3157 	if (adapter->link_duplex != HALF_DUPLEX)
       
  3158 		goto no_fifo_stall_required;
       
  3159 
       
  3160 	if (atomic_read(&adapter->tx_fifo_stall))
       
  3161 		return 1;
       
  3162 
       
  3163 	if (skb_fifo_len >= (E1000_82547_PAD_LEN + fifo_space)) {
       
  3164 		atomic_set(&adapter->tx_fifo_stall, 1);
       
  3165 		return 1;
       
  3166 	}
       
  3167 
       
  3168 no_fifo_stall_required:
       
  3169 	adapter->tx_fifo_head += skb_fifo_len;
       
  3170 	if (adapter->tx_fifo_head >= adapter->tx_fifo_size)
       
  3171 		adapter->tx_fifo_head -= adapter->tx_fifo_size;
       
  3172 	return 0;
       
  3173 }
       
  3174 
       
  3175 #define MINIMUM_DHCP_PACKET_SIZE 282
       
  3176 static int e1000_transfer_dhcp_info(struct e1000_adapter *adapter,
       
  3177 				    struct sk_buff *skb)
       
  3178 {
       
  3179 	struct e1000_hw *hw =  &adapter->hw;
       
  3180 	u16 length, offset;
       
  3181 	if (vlan_tx_tag_present(skb)) {
       
  3182 		if (!((vlan_tx_tag_get(skb) == hw->mng_cookie.vlan_id) &&
       
  3183 			( hw->mng_cookie.status &
       
  3184 			  E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT)) )
       
  3185 			return 0;
       
  3186 	}
       
  3187 	if (skb->len > MINIMUM_DHCP_PACKET_SIZE) {
       
  3188 		struct ethhdr *eth = (struct ethhdr *)skb->data;
       
  3189 		if ((htons(ETH_P_IP) == eth->h_proto)) {
       
  3190 			const struct iphdr *ip =
       
  3191 				(struct iphdr *)((u8 *)skb->data+14);
       
  3192 			if (IPPROTO_UDP == ip->protocol) {
       
  3193 				struct udphdr *udp =
       
  3194 					(struct udphdr *)((u8 *)ip +
       
  3195 						(ip->ihl << 2));
       
  3196 				if (ntohs(udp->dest) == 67) {
       
  3197 					offset = (u8 *)udp + 8 - skb->data;
       
  3198 					length = skb->len - offset;
       
  3199 
       
  3200 					return e1000_mng_write_dhcp_info(hw,
       
  3201 							(u8 *)udp + 8,
       
  3202 							length);
       
  3203 				}
       
  3204 			}
       
  3205 		}
       
  3206 	}
       
  3207 	return 0;
       
  3208 }
       
  3209 
       
  3210 static int __e1000_maybe_stop_tx(struct net_device *netdev, int size)
       
  3211 {
       
  3212 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  3213 	struct e1000_tx_ring *tx_ring = adapter->tx_ring;
       
  3214 
       
  3215 	netif_stop_queue(netdev);
       
  3216 	/* Herbert's original patch had:
       
  3217 	 *  smp_mb__after_netif_stop_queue();
       
  3218 	 * but since that doesn't exist yet, just open code it. */
       
  3219 	smp_mb();
       
  3220 
       
  3221 	/* We need to check again in a case another CPU has just
       
  3222 	 * made room available. */
       
  3223 	if (likely(E1000_DESC_UNUSED(tx_ring) < size))
       
  3224 		return -EBUSY;
       
  3225 
       
  3226 	/* A reprieve! */
       
  3227 	netif_start_queue(netdev);
       
  3228 	++adapter->restart_queue;
       
  3229 	return 0;
       
  3230 }
       
  3231 
       
  3232 static int e1000_maybe_stop_tx(struct net_device *netdev,
       
  3233                                struct e1000_tx_ring *tx_ring, int size)
       
  3234 {
       
  3235 	if (likely(E1000_DESC_UNUSED(tx_ring) >= size))
       
  3236 		return 0;
       
  3237 	return __e1000_maybe_stop_tx(netdev, size);
       
  3238 }
       
  3239 
       
  3240 #define TXD_USE_COUNT(S, X) (((S) >> (X)) + 1 )
       
  3241 static int e1000_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
       
  3242 {
       
  3243 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  3244 	struct e1000_hw *hw = &adapter->hw;
       
  3245 	struct e1000_tx_ring *tx_ring;
       
  3246 	unsigned int first, max_per_txd = E1000_MAX_DATA_PER_TXD;
       
  3247 	unsigned int max_txd_pwr = E1000_MAX_TXD_PWR;
       
  3248 	unsigned int tx_flags = 0;
       
  3249 	unsigned int len = skb->len - skb->data_len;
       
  3250 	unsigned long flags = 0;
       
  3251 	unsigned int nr_frags = 0;
       
  3252 	unsigned int mss = 0;
       
  3253 	int count = 0;
       
  3254 	int tso;
       
  3255 	unsigned int f;
       
  3256 
       
  3257 	/* This goes back to the question of how to logically map a tx queue
       
  3258 	 * to a flow.  Right now, performance is impacted slightly negatively
       
  3259 	 * if using multiple tx queues.  If the stack breaks away from a
       
  3260 	 * single qdisc implementation, we can look at this again. */
       
  3261 	tx_ring = adapter->tx_ring;
       
  3262 
       
  3263 	if (unlikely(skb->len <= 0)) {
       
  3264 		if (!adapter->ecdev)
       
  3265 			dev_kfree_skb_any(skb);
       
  3266 		return NETDEV_TX_OK;
       
  3267 	}
       
  3268 
       
  3269 	/* 82571 and newer doesn't need the workaround that limited descriptor
       
  3270 	 * length to 4kB */
       
  3271 	if (hw->mac_type >= e1000_82571)
       
  3272 		max_per_txd = 8192;
       
  3273 
       
  3274 	mss = skb_shinfo(skb)->gso_size;
       
  3275 	/* The controller does a simple calculation to
       
  3276 	 * make sure there is enough room in the FIFO before
       
  3277 	 * initiating the DMA for each buffer.  The calc is:
       
  3278 	 * 4 = ceil(buffer len/mss).  To make sure we don't
       
  3279 	 * overrun the FIFO, adjust the max buffer len if mss
       
  3280 	 * drops. */
       
  3281 	if (mss) {
       
  3282 		u8 hdr_len;
       
  3283 		max_per_txd = min(mss << 2, max_per_txd);
       
  3284 		max_txd_pwr = fls(max_per_txd) - 1;
       
  3285 
       
  3286 		/* TSO Workaround for 82571/2/3 Controllers -- if skb->data
       
  3287 		* points to just header, pull a few bytes of payload from
       
  3288 		* frags into skb->data */
       
  3289 		hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
       
  3290 		if (skb->data_len && hdr_len == len) {
       
  3291 			switch (hw->mac_type) {
       
  3292 				unsigned int pull_size;
       
  3293 			case e1000_82544:
       
  3294 				/* Make sure we have room to chop off 4 bytes,
       
  3295 				 * and that the end alignment will work out to
       
  3296 				 * this hardware's requirements
       
  3297 				 * NOTE: this is a TSO only workaround
       
  3298 				 * if end byte alignment not correct move us
       
  3299 				 * into the next dword */
       
  3300 				if ((unsigned long)(skb_tail_pointer(skb) - 1) & 4)
       
  3301 					break;
       
  3302 				/* fall through */
       
  3303 			case e1000_82571:
       
  3304 			case e1000_82572:
       
  3305 			case e1000_82573:
       
  3306 			case e1000_ich8lan:
       
  3307 				pull_size = min((unsigned int)4, skb->data_len);
       
  3308 				if (!__pskb_pull_tail(skb, pull_size)) {
       
  3309 					DPRINTK(DRV, ERR,
       
  3310 						"__pskb_pull_tail failed.\n");
       
  3311 					dev_kfree_skb_any(skb);
       
  3312 					return NETDEV_TX_OK;
       
  3313 				}
       
  3314 				len = skb->len - skb->data_len;
       
  3315 				break;
       
  3316 			default:
       
  3317 				/* do nothing */
       
  3318 				break;
       
  3319 			}
       
  3320 		}
       
  3321 	}
       
  3322 
       
  3323 	/* reserve a descriptor for the offload context */
       
  3324 	if ((mss) || (skb->ip_summed == CHECKSUM_PARTIAL))
       
  3325 		count++;
       
  3326 	count++;
       
  3327 
       
  3328 	/* Controller Erratum workaround */
       
  3329 	if (!skb->data_len && tx_ring->last_tx_tso && !skb_is_gso(skb))
       
  3330 		count++;
       
  3331 
       
  3332 	count += TXD_USE_COUNT(len, max_txd_pwr);
       
  3333 
       
  3334 	if (adapter->pcix_82544)
       
  3335 		count++;
       
  3336 
       
  3337 	/* work-around for errata 10 and it applies to all controllers
       
  3338 	 * in PCI-X mode, so add one more descriptor to the count
       
  3339 	 */
       
  3340 	if (unlikely((hw->bus_type == e1000_bus_type_pcix) &&
       
  3341 			(len > 2015)))
       
  3342 		count++;
       
  3343 
       
  3344 	nr_frags = skb_shinfo(skb)->nr_frags;
       
  3345 	for (f = 0; f < nr_frags; f++)
       
  3346 		count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size,
       
  3347 				       max_txd_pwr);
       
  3348 	if (adapter->pcix_82544)
       
  3349 		count += nr_frags;
       
  3350 
       
  3351 
       
  3352 	if (hw->tx_pkt_filtering &&
       
  3353 	    (hw->mac_type == e1000_82573))
       
  3354 		e1000_transfer_dhcp_info(adapter, skb);
       
  3355 
       
  3356  	if (!adapter->ecdev &&
       
  3357  			!spin_trylock_irqsave(&tx_ring->tx_lock, flags))
       
  3358 		/* Collision - tell upper layer to requeue */
       
  3359 		return NETDEV_TX_LOCKED;
       
  3360 
       
  3361 	/* need: count + 2 desc gap to keep tail from touching
       
  3362 	 * head, otherwise try next time */
       
  3363 	if (unlikely(e1000_maybe_stop_tx(netdev, tx_ring, count + 2))) {
       
  3364 		if (!adapter->ecdev) {
       
  3365 			spin_unlock_irqrestore(&tx_ring->tx_lock, flags);
       
  3366 		}
       
  3367 		return NETDEV_TX_BUSY;
       
  3368 	}
       
  3369 
       
  3370 	if (unlikely(hw->mac_type == e1000_82547)) {
       
  3371 		if (unlikely(e1000_82547_fifo_workaround(adapter, skb))) {
       
  3372 			if (!adapter->ecdev) {
       
  3373 				netif_stop_queue(netdev);
       
  3374 				mod_timer(&adapter->tx_fifo_stall_timer, jiffies + 1);
       
  3375 				spin_unlock_irqrestore(&tx_ring->tx_lock, flags);
       
  3376 			}
       
  3377 			return NETDEV_TX_BUSY;
       
  3378 		}
       
  3379 	}
       
  3380 
       
  3381 	if (unlikely(adapter->vlgrp && vlan_tx_tag_present(skb))) {
       
  3382 		tx_flags |= E1000_TX_FLAGS_VLAN;
       
  3383 		tx_flags |= (vlan_tx_tag_get(skb) << E1000_TX_FLAGS_VLAN_SHIFT);
       
  3384 	}
       
  3385 
       
  3386 	first = tx_ring->next_to_use;
       
  3387 
       
  3388 	tso = e1000_tso(adapter, tx_ring, skb);
       
  3389 	if (tso < 0) {
       
  3390 		if (!adapter->ecdev) {
       
  3391 			dev_kfree_skb_any(skb);
       
  3392 			spin_unlock_irqrestore(&tx_ring->tx_lock, flags);
       
  3393 		}
       
  3394 		return NETDEV_TX_OK;
       
  3395 	}
       
  3396 
       
  3397 	if (likely(tso)) {
       
  3398 		tx_ring->last_tx_tso = 1;
       
  3399 		tx_flags |= E1000_TX_FLAGS_TSO;
       
  3400 	} else if (likely(e1000_tx_csum(adapter, tx_ring, skb)))
       
  3401 		tx_flags |= E1000_TX_FLAGS_CSUM;
       
  3402 
       
  3403 	/* Old method was to assume IPv4 packet by default if TSO was enabled.
       
  3404 	 * 82571 hardware supports TSO capabilities for IPv6 as well...
       
  3405 	 * no longer assume, we must. */
       
  3406 	if (likely(skb->protocol == htons(ETH_P_IP)))
       
  3407 		tx_flags |= E1000_TX_FLAGS_IPV4;
       
  3408 
       
  3409 	e1000_tx_queue(adapter, tx_ring, tx_flags,
       
  3410 	               e1000_tx_map(adapter, tx_ring, skb, first,
       
  3411 	                            max_per_txd, nr_frags, mss));
       
  3412 
       
  3413 	netdev->trans_start = jiffies;
       
  3414 
       
  3415 	if (!adapter->ecdev) {
       
  3416 		/* Make sure there is space in the ring for the next send. */
       
  3417 		e1000_maybe_stop_tx(netdev, tx_ring, MAX_SKB_FRAGS + 2);
       
  3418 
       
  3419 		spin_unlock_irqrestore(&tx_ring->tx_lock, flags);
       
  3420 	}
       
  3421 	return NETDEV_TX_OK;
       
  3422 }
       
  3423 
       
  3424 /**
       
  3425  * e1000_tx_timeout - Respond to a Tx Hang
       
  3426  * @netdev: network interface device structure
       
  3427  **/
       
  3428 
       
  3429 static void e1000_tx_timeout(struct net_device *netdev)
       
  3430 {
       
  3431 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  3432 
       
  3433 	/* Do the reset outside of interrupt context */
       
  3434 	adapter->tx_timeout_count++;
       
  3435 	schedule_work(&adapter->reset_task);
       
  3436 }
       
  3437 
       
  3438 static void e1000_reset_task(struct work_struct *work)
       
  3439 {
       
  3440 	struct e1000_adapter *adapter =
       
  3441 		container_of(work, struct e1000_adapter, reset_task);
       
  3442 
       
  3443 	e1000_reinit_locked(adapter);
       
  3444 }
       
  3445 
       
  3446 /**
       
  3447  * e1000_get_stats - Get System Network Statistics
       
  3448  * @netdev: network interface device structure
       
  3449  *
       
  3450  * Returns the address of the device statistics structure.
       
  3451  * The statistics are actually updated from the timer callback.
       
  3452  **/
       
  3453 
       
  3454 static struct net_device_stats *e1000_get_stats(struct net_device *netdev)
       
  3455 {
       
  3456 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  3457 
       
  3458 	/* only return the current stats */
       
  3459 	return &adapter->net_stats;
       
  3460 }
       
  3461 
       
  3462 /**
       
  3463  * e1000_change_mtu - Change the Maximum Transfer Unit
       
  3464  * @netdev: network interface device structure
       
  3465  * @new_mtu: new value for maximum frame size
       
  3466  *
       
  3467  * Returns 0 on success, negative on failure
       
  3468  **/
       
  3469 
       
  3470 static int e1000_change_mtu(struct net_device *netdev, int new_mtu)
       
  3471 {
       
  3472 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  3473 	struct e1000_hw *hw = &adapter->hw;
       
  3474 	int max_frame = new_mtu + ENET_HEADER_SIZE + ETHERNET_FCS_SIZE;
       
  3475 	u16 eeprom_data = 0;
       
  3476 
       
  3477 	if (adapter->ecdev)
       
  3478 		return -EBUSY;
       
  3479 
       
  3480 	if ((max_frame < MINIMUM_ETHERNET_FRAME_SIZE) ||
       
  3481 	    (max_frame > MAX_JUMBO_FRAME_SIZE)) {
       
  3482 		DPRINTK(PROBE, ERR, "Invalid MTU setting\n");
       
  3483 		return -EINVAL;
       
  3484 	}
       
  3485 
       
  3486 	/* Adapter-specific max frame size limits. */
       
  3487 	switch (hw->mac_type) {
       
  3488 	case e1000_undefined ... e1000_82542_rev2_1:
       
  3489 	case e1000_ich8lan:
       
  3490 		if (max_frame > MAXIMUM_ETHERNET_FRAME_SIZE) {
       
  3491 			DPRINTK(PROBE, ERR, "Jumbo Frames not supported.\n");
       
  3492 			return -EINVAL;
       
  3493 		}
       
  3494 		break;
       
  3495 	case e1000_82573:
       
  3496 		/* Jumbo Frames not supported if:
       
  3497 		 * - this is not an 82573L device
       
  3498 		 * - ASPM is enabled in any way (0x1A bits 3:2) */
       
  3499 		e1000_read_eeprom(hw, EEPROM_INIT_3GIO_3, 1,
       
  3500 		                  &eeprom_data);
       
  3501 		if ((hw->device_id != E1000_DEV_ID_82573L) ||
       
  3502 		    (eeprom_data & EEPROM_WORD1A_ASPM_MASK)) {
       
  3503 			if (max_frame > MAXIMUM_ETHERNET_FRAME_SIZE) {
       
  3504 				DPRINTK(PROBE, ERR,
       
  3505 			            	"Jumbo Frames not supported.\n");
       
  3506 				return -EINVAL;
       
  3507 			}
       
  3508 			break;
       
  3509 		}
       
  3510 		/* ERT will be enabled later to enable wire speed receives */
       
  3511 
       
  3512 		/* fall through to get support */
       
  3513 	case e1000_82571:
       
  3514 	case e1000_82572:
       
  3515 	case e1000_80003es2lan:
       
  3516 #define MAX_STD_JUMBO_FRAME_SIZE 9234
       
  3517 		if (max_frame > MAX_STD_JUMBO_FRAME_SIZE) {
       
  3518 			DPRINTK(PROBE, ERR, "MTU > 9216 not supported.\n");
       
  3519 			return -EINVAL;
       
  3520 		}
       
  3521 		break;
       
  3522 	default:
       
  3523 		/* Capable of supporting up to MAX_JUMBO_FRAME_SIZE limit. */
       
  3524 		break;
       
  3525 	}
       
  3526 
       
  3527 	/* NOTE: netdev_alloc_skb reserves 16 bytes, and typically NET_IP_ALIGN
       
  3528 	 * means we reserve 2 more, this pushes us to allocate from the next
       
  3529 	 * larger slab size
       
  3530 	 * i.e. RXBUFFER_2048 --> size-4096 slab */
       
  3531 
       
  3532 	if (max_frame <= E1000_RXBUFFER_256)
       
  3533 		adapter->rx_buffer_len = E1000_RXBUFFER_256;
       
  3534 	else if (max_frame <= E1000_RXBUFFER_512)
       
  3535 		adapter->rx_buffer_len = E1000_RXBUFFER_512;
       
  3536 	else if (max_frame <= E1000_RXBUFFER_1024)
       
  3537 		adapter->rx_buffer_len = E1000_RXBUFFER_1024;
       
  3538 	else if (max_frame <= E1000_RXBUFFER_2048)
       
  3539 		adapter->rx_buffer_len = E1000_RXBUFFER_2048;
       
  3540 	else if (max_frame <= E1000_RXBUFFER_4096)
       
  3541 		adapter->rx_buffer_len = E1000_RXBUFFER_4096;
       
  3542 	else if (max_frame <= E1000_RXBUFFER_8192)
       
  3543 		adapter->rx_buffer_len = E1000_RXBUFFER_8192;
       
  3544 	else if (max_frame <= E1000_RXBUFFER_16384)
       
  3545 		adapter->rx_buffer_len = E1000_RXBUFFER_16384;
       
  3546 
       
  3547 	/* adjust allocation if LPE protects us, and we aren't using SBP */
       
  3548 	if (!hw->tbi_compatibility_on &&
       
  3549 	    ((max_frame == MAXIMUM_ETHERNET_FRAME_SIZE) ||
       
  3550 	     (max_frame == MAXIMUM_ETHERNET_VLAN_SIZE)))
       
  3551 		adapter->rx_buffer_len = MAXIMUM_ETHERNET_VLAN_SIZE;
       
  3552 
       
  3553 	netdev->mtu = new_mtu;
       
  3554 	hw->max_frame_size = max_frame;
       
  3555 
       
  3556 	if (netif_running(netdev))
       
  3557 		e1000_reinit_locked(adapter);
       
  3558 
       
  3559 	return 0;
       
  3560 }
       
  3561 
       
  3562 /**
       
  3563  * e1000_update_stats - Update the board statistics counters
       
  3564  * @adapter: board private structure
       
  3565  **/
       
  3566 
       
  3567 void e1000_update_stats(struct e1000_adapter *adapter)
       
  3568 {
       
  3569 	struct e1000_hw *hw = &adapter->hw;
       
  3570 	struct pci_dev *pdev = adapter->pdev;
       
  3571 	unsigned long flags = 0;
       
  3572 	u16 phy_tmp;
       
  3573 
       
  3574 #define PHY_IDLE_ERROR_COUNT_MASK 0x00FF
       
  3575 
       
  3576 	/*
       
  3577 	 * Prevent stats update while adapter is being reset, or if the pci
       
  3578 	 * connection is down.
       
  3579 	 */
       
  3580 	if (adapter->link_speed == 0)
       
  3581 		return;
       
  3582 	if (pci_channel_offline(pdev))
       
  3583 		return;
       
  3584 
       
  3585 	if (!adapter->ecdev)
       
  3586 		spin_lock_irqsave(&adapter->stats_lock, flags);
       
  3587 
       
  3588 	/* these counters are modified from e1000_tbi_adjust_stats,
       
  3589 	 * called from the interrupt context, so they must only
       
  3590 	 * be written while holding adapter->stats_lock
       
  3591 	 */
       
  3592 
       
  3593 	adapter->stats.crcerrs += er32(CRCERRS);
       
  3594 	adapter->stats.gprc += er32(GPRC);
       
  3595 	adapter->stats.gorcl += er32(GORCL);
       
  3596 	adapter->stats.gorch += er32(GORCH);
       
  3597 	adapter->stats.bprc += er32(BPRC);
       
  3598 	adapter->stats.mprc += er32(MPRC);
       
  3599 	adapter->stats.roc += er32(ROC);
       
  3600 
       
  3601 	if (hw->mac_type != e1000_ich8lan) {
       
  3602 		adapter->stats.prc64 += er32(PRC64);
       
  3603 		adapter->stats.prc127 += er32(PRC127);
       
  3604 		adapter->stats.prc255 += er32(PRC255);
       
  3605 		adapter->stats.prc511 += er32(PRC511);
       
  3606 		adapter->stats.prc1023 += er32(PRC1023);
       
  3607 		adapter->stats.prc1522 += er32(PRC1522);
       
  3608 	}
       
  3609 
       
  3610 	adapter->stats.symerrs += er32(SYMERRS);
       
  3611 	adapter->stats.mpc += er32(MPC);
       
  3612 	adapter->stats.scc += er32(SCC);
       
  3613 	adapter->stats.ecol += er32(ECOL);
       
  3614 	adapter->stats.mcc += er32(MCC);
       
  3615 	adapter->stats.latecol += er32(LATECOL);
       
  3616 	adapter->stats.dc += er32(DC);
       
  3617 	adapter->stats.sec += er32(SEC);
       
  3618 	adapter->stats.rlec += er32(RLEC);
       
  3619 	adapter->stats.xonrxc += er32(XONRXC);
       
  3620 	adapter->stats.xontxc += er32(XONTXC);
       
  3621 	adapter->stats.xoffrxc += er32(XOFFRXC);
       
  3622 	adapter->stats.xofftxc += er32(XOFFTXC);
       
  3623 	adapter->stats.fcruc += er32(FCRUC);
       
  3624 	adapter->stats.gptc += er32(GPTC);
       
  3625 	adapter->stats.gotcl += er32(GOTCL);
       
  3626 	adapter->stats.gotch += er32(GOTCH);
       
  3627 	adapter->stats.rnbc += er32(RNBC);
       
  3628 	adapter->stats.ruc += er32(RUC);
       
  3629 	adapter->stats.rfc += er32(RFC);
       
  3630 	adapter->stats.rjc += er32(RJC);
       
  3631 	adapter->stats.torl += er32(TORL);
       
  3632 	adapter->stats.torh += er32(TORH);
       
  3633 	adapter->stats.totl += er32(TOTL);
       
  3634 	adapter->stats.toth += er32(TOTH);
       
  3635 	adapter->stats.tpr += er32(TPR);
       
  3636 
       
  3637 	if (hw->mac_type != e1000_ich8lan) {
       
  3638 		adapter->stats.ptc64 += er32(PTC64);
       
  3639 		adapter->stats.ptc127 += er32(PTC127);
       
  3640 		adapter->stats.ptc255 += er32(PTC255);
       
  3641 		adapter->stats.ptc511 += er32(PTC511);
       
  3642 		adapter->stats.ptc1023 += er32(PTC1023);
       
  3643 		adapter->stats.ptc1522 += er32(PTC1522);
       
  3644 	}
       
  3645 
       
  3646 	adapter->stats.mptc += er32(MPTC);
       
  3647 	adapter->stats.bptc += er32(BPTC);
       
  3648 
       
  3649 	/* used for adaptive IFS */
       
  3650 
       
  3651 	hw->tx_packet_delta = er32(TPT);
       
  3652 	adapter->stats.tpt += hw->tx_packet_delta;
       
  3653 	hw->collision_delta = er32(COLC);
       
  3654 	adapter->stats.colc += hw->collision_delta;
       
  3655 
       
  3656 	if (hw->mac_type >= e1000_82543) {
       
  3657 		adapter->stats.algnerrc += er32(ALGNERRC);
       
  3658 		adapter->stats.rxerrc += er32(RXERRC);
       
  3659 		adapter->stats.tncrs += er32(TNCRS);
       
  3660 		adapter->stats.cexterr += er32(CEXTERR);
       
  3661 		adapter->stats.tsctc += er32(TSCTC);
       
  3662 		adapter->stats.tsctfc += er32(TSCTFC);
       
  3663 	}
       
  3664 	if (hw->mac_type > e1000_82547_rev_2) {
       
  3665 		adapter->stats.iac += er32(IAC);
       
  3666 		adapter->stats.icrxoc += er32(ICRXOC);
       
  3667 
       
  3668 		if (hw->mac_type != e1000_ich8lan) {
       
  3669 			adapter->stats.icrxptc += er32(ICRXPTC);
       
  3670 			adapter->stats.icrxatc += er32(ICRXATC);
       
  3671 			adapter->stats.ictxptc += er32(ICTXPTC);
       
  3672 			adapter->stats.ictxatc += er32(ICTXATC);
       
  3673 			adapter->stats.ictxqec += er32(ICTXQEC);
       
  3674 			adapter->stats.ictxqmtc += er32(ICTXQMTC);
       
  3675 			adapter->stats.icrxdmtc += er32(ICRXDMTC);
       
  3676 		}
       
  3677 	}
       
  3678 
       
  3679 	/* Fill out the OS statistics structure */
       
  3680 	adapter->net_stats.multicast = adapter->stats.mprc;
       
  3681 	adapter->net_stats.collisions = adapter->stats.colc;
       
  3682 
       
  3683 	/* Rx Errors */
       
  3684 
       
  3685 	/* RLEC on some newer hardware can be incorrect so build
       
  3686 	* our own version based on RUC and ROC */
       
  3687 	adapter->net_stats.rx_errors = adapter->stats.rxerrc +
       
  3688 		adapter->stats.crcerrs + adapter->stats.algnerrc +
       
  3689 		adapter->stats.ruc + adapter->stats.roc +
       
  3690 		adapter->stats.cexterr;
       
  3691 	adapter->stats.rlerrc = adapter->stats.ruc + adapter->stats.roc;
       
  3692 	adapter->net_stats.rx_length_errors = adapter->stats.rlerrc;
       
  3693 	adapter->net_stats.rx_crc_errors = adapter->stats.crcerrs;
       
  3694 	adapter->net_stats.rx_frame_errors = adapter->stats.algnerrc;
       
  3695 	adapter->net_stats.rx_missed_errors = adapter->stats.mpc;
       
  3696 
       
  3697 	/* Tx Errors */
       
  3698 	adapter->stats.txerrc = adapter->stats.ecol + adapter->stats.latecol;
       
  3699 	adapter->net_stats.tx_errors = adapter->stats.txerrc;
       
  3700 	adapter->net_stats.tx_aborted_errors = adapter->stats.ecol;
       
  3701 	adapter->net_stats.tx_window_errors = adapter->stats.latecol;
       
  3702 	adapter->net_stats.tx_carrier_errors = adapter->stats.tncrs;
       
  3703 	if (hw->bad_tx_carr_stats_fd &&
       
  3704 	    adapter->link_duplex == FULL_DUPLEX) {
       
  3705 		adapter->net_stats.tx_carrier_errors = 0;
       
  3706 		adapter->stats.tncrs = 0;
       
  3707 	}
       
  3708 
       
  3709 	/* Tx Dropped needs to be maintained elsewhere */
       
  3710 
       
  3711 	/* Phy Stats */
       
  3712 	if (hw->media_type == e1000_media_type_copper) {
       
  3713 		if ((adapter->link_speed == SPEED_1000) &&
       
  3714 		   (!e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_tmp))) {
       
  3715 			phy_tmp &= PHY_IDLE_ERROR_COUNT_MASK;
       
  3716 			adapter->phy_stats.idle_errors += phy_tmp;
       
  3717 		}
       
  3718 
       
  3719 		if ((hw->mac_type <= e1000_82546) &&
       
  3720 		   (hw->phy_type == e1000_phy_m88) &&
       
  3721 		   !e1000_read_phy_reg(hw, M88E1000_RX_ERR_CNTR, &phy_tmp))
       
  3722 			adapter->phy_stats.receive_errors += phy_tmp;
       
  3723 	}
       
  3724 
       
  3725 	/* Management Stats */
       
  3726 	if (hw->has_smbus) {
       
  3727 		adapter->stats.mgptc += er32(MGTPTC);
       
  3728 		adapter->stats.mgprc += er32(MGTPRC);
       
  3729 		adapter->stats.mgpdc += er32(MGTPDC);
       
  3730 	}
       
  3731 
       
  3732 	if (!adapter->ecdev)
       
  3733 		spin_unlock_irqrestore(&adapter->stats_lock, flags);
       
  3734 }
       
  3735 
       
  3736 void ec_poll(struct net_device *netdev)
       
  3737 {
       
  3738     struct e1000_adapter *adapter = netdev_priv(netdev);
       
  3739 
       
  3740     if (jiffies - adapter->ec_watchdog_jiffies >= 2 * HZ) {
       
  3741         e1000_watchdog((unsigned long) adapter);
       
  3742         adapter->ec_watchdog_jiffies = jiffies;
       
  3743     }
       
  3744 
       
  3745 #ifdef CONFIG_PCI_MSI
       
  3746 	e1000_intr_msi(0, netdev);
       
  3747 #else
       
  3748     e1000_intr(0, netdev);
       
  3749 #endif
       
  3750 }
       
  3751 
       
  3752 /**
       
  3753  * e1000_intr_msi - Interrupt Handler
       
  3754  * @irq: interrupt number
       
  3755  * @data: pointer to a network interface device structure
       
  3756  **/
       
  3757 
       
  3758 static irqreturn_t e1000_intr_msi(int irq, void *data)
       
  3759 {
       
  3760 	struct net_device *netdev = data;
       
  3761 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  3762 	struct e1000_hw *hw = &adapter->hw;
       
  3763 	u32 icr = er32(ICR);
       
  3764 
       
  3765  	if (adapter->ecdev) {
       
  3766  		int i, ec_work_done = 0;
       
  3767  		for (i = 0; i < E1000_MAX_INTR; i++) {
       
  3768  			if (unlikely(!adapter->clean_rx(adapter, adapter->rx_ring,
       
  3769                              &ec_work_done, 100) &&
       
  3770  						!e1000_clean_tx_irq(adapter, adapter->tx_ring))) {
       
  3771  				break;
       
  3772  			}
       
  3773  		}
       
  3774  	} else {
       
  3775 		/* in NAPI mode read ICR disables interrupts using IAM */
       
  3776 
       
  3777 		if (icr & (E1000_ICR_RXSEQ | E1000_ICR_LSC)) {
       
  3778 			hw->get_link_status = 1;
       
  3779 			/* 80003ES2LAN workaround-- For packet buffer work-around on
       
  3780 			 * link down event; disable receives here in the ISR and reset
       
  3781 			 * adapter in watchdog */
       
  3782 			if (netif_carrier_ok(netdev) &&
       
  3783 				(hw->mac_type == e1000_80003es2lan)) {
       
  3784 				/* disable receives */
       
  3785 				u32 rctl = er32(RCTL);
       
  3786 				ew32(RCTL, rctl & ~E1000_RCTL_EN);
       
  3787 			}
       
  3788 			/* guard against interrupt when we're going down */
       
  3789 			if (!test_bit(__E1000_DOWN, &adapter->flags))
       
  3790 				mod_timer(&adapter->watchdog_timer, jiffies + 1);
       
  3791 		}
       
  3792 
       
  3793 		if (likely(netif_rx_schedule_prep(&adapter->napi))) {
       
  3794 			adapter->total_tx_bytes = 0;
       
  3795 			adapter->total_tx_packets = 0;
       
  3796 			adapter->total_rx_bytes = 0;
       
  3797 			adapter->total_rx_packets = 0;
       
  3798 			__netif_rx_schedule(&adapter->napi);
       
  3799 		} else
       
  3800 			e1000_irq_enable(adapter);
       
  3801 	}
       
  3802 
       
  3803 	return IRQ_HANDLED;
       
  3804 }
       
  3805 
       
  3806 /**
       
  3807  * e1000_intr - Interrupt Handler
       
  3808  * @irq: interrupt number
       
  3809  * @data: pointer to a network interface device structure
       
  3810  **/
       
  3811 
       
  3812 static irqreturn_t e1000_intr(int irq, void *data)
       
  3813 {
       
  3814 	struct net_device *netdev = data;
       
  3815 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  3816 	struct e1000_hw *hw = &adapter->hw;
       
  3817 	u32 rctl, icr = er32(ICR);
       
  3818 
       
  3819 	if (unlikely((!icr) || test_bit(__E1000_RESETTING, &adapter->flags)))
       
  3820 		return IRQ_NONE;  /* Not our interrupt */
       
  3821 
       
  3822 	/* IMS will not auto-mask if INT_ASSERTED is not set, and if it is
       
  3823 	 * not set, then the adapter didn't send an interrupt */
       
  3824 	if (unlikely(hw->mac_type >= e1000_82571 &&
       
  3825 	             !(icr & E1000_ICR_INT_ASSERTED)))
       
  3826 		return IRQ_NONE;
       
  3827 
       
  3828 	/* Interrupt Auto-Mask...upon reading ICR, interrupts are masked.  No
       
  3829 	 * need for the IMC write */
       
  3830 
       
  3831 	if (!adapter->ecdev && unlikely(icr & (E1000_ICR_RXSEQ | E1000_ICR_LSC))) {
       
  3832 		hw->get_link_status = 1;
       
  3833 		/* 80003ES2LAN workaround--
       
  3834 		 * For packet buffer work-around on link down event;
       
  3835 		 * disable receives here in the ISR and
       
  3836 		 * reset adapter in watchdog
       
  3837 		 */
       
  3838 		if (netif_carrier_ok(netdev) &&
       
  3839 		    (hw->mac_type == e1000_80003es2lan)) {
       
  3840 			/* disable receives */
       
  3841 			rctl = er32(RCTL);
       
  3842 			ew32(RCTL, rctl & ~E1000_RCTL_EN);
       
  3843 		}
       
  3844 		/* guard against interrupt when we're going down */
       
  3845 		if (!test_bit(__E1000_DOWN, &adapter->flags))
       
  3846 			mod_timer(&adapter->watchdog_timer, jiffies + 1);
       
  3847 	}
       
  3848 
       
  3849 	if (adapter->ecdev) {
       
  3850 		int i, ec_work_done = 0;
       
  3851 		for (i = 0; i < E1000_MAX_INTR; i++) {
       
  3852 			if (unlikely(!adapter->clean_rx(adapter, adapter->rx_ring,
       
  3853 							&ec_work_done, 100) &&
       
  3854 						!e1000_clean_tx_irq(adapter, adapter->tx_ring))) {
       
  3855 				break;
       
  3856 			}
       
  3857 		}
       
  3858 	} else {
       
  3859 		if (unlikely(hw->mac_type < e1000_82571)) {
       
  3860 			/* disable interrupts, without the synchronize_irq bit */
       
  3861 			ew32(IMC, ~0);
       
  3862 			E1000_WRITE_FLUSH();
       
  3863 		}
       
  3864 		if (likely(netif_rx_schedule_prep(&adapter->napi))) {
       
  3865 			adapter->total_tx_bytes = 0;
       
  3866 			adapter->total_tx_packets = 0;
       
  3867 			adapter->total_rx_bytes = 0;
       
  3868 			adapter->total_rx_packets = 0;
       
  3869 			__netif_rx_schedule(&adapter->napi);
       
  3870 		} else
       
  3871 			/* this really should not happen! if it does it is basically a
       
  3872 			 * bug, but not a hard error, so enable ints and continue */
       
  3873 			e1000_irq_enable(adapter);
       
  3874 	}
       
  3875 
       
  3876 	return IRQ_HANDLED;
       
  3877 }
       
  3878 
       
  3879 /**
       
  3880  * e1000_clean - NAPI Rx polling callback
       
  3881  * @adapter: board private structure
       
  3882  **/
       
  3883 static int e1000_clean(struct napi_struct *napi, int budget)
       
  3884 {
       
  3885 	struct e1000_adapter *adapter = container_of(napi, struct e1000_adapter, napi);
       
  3886 	struct net_device *poll_dev = adapter->netdev;
       
  3887 	int tx_cleaned = 0, work_done = 0;
       
  3888 
       
  3889 	adapter = netdev_priv(poll_dev);
       
  3890 
       
  3891 	/* e1000_clean is called per-cpu.  This lock protects
       
  3892 	 * tx_ring[0] from being cleaned by multiple cpus
       
  3893 	 * simultaneously.  A failure obtaining the lock means
       
  3894 	 * tx_ring[0] is currently being cleaned anyway. */
       
  3895 	if (spin_trylock(&adapter->tx_queue_lock)) {
       
  3896 		tx_cleaned = e1000_clean_tx_irq(adapter,
       
  3897 						&adapter->tx_ring[0]);
       
  3898 		spin_unlock(&adapter->tx_queue_lock);
       
  3899 	}
       
  3900 
       
  3901 	adapter->clean_rx(adapter, &adapter->rx_ring[0],
       
  3902 	                  &work_done, budget);
       
  3903 
       
  3904 	if (tx_cleaned)
       
  3905 		work_done = budget;
       
  3906 
       
  3907 	/* If budget not fully consumed, exit the polling mode */
       
  3908 	if (work_done < budget) {
       
  3909 		if (likely(adapter->itr_setting & 3))
       
  3910 			e1000_set_itr(adapter);
       
  3911 		netif_rx_complete(napi);
       
  3912 		e1000_irq_enable(adapter);
       
  3913 	}
       
  3914 
       
  3915 	return work_done;
       
  3916 }
       
  3917 
       
  3918 /**
       
  3919  * e1000_clean_tx_irq - Reclaim resources after transmit completes
       
  3920  * @adapter: board private structure
       
  3921  **/
       
  3922 static bool e1000_clean_tx_irq(struct e1000_adapter *adapter,
       
  3923 			       struct e1000_tx_ring *tx_ring)
       
  3924 {
       
  3925 	struct e1000_hw *hw = &adapter->hw;
       
  3926 	struct net_device *netdev = adapter->netdev;
       
  3927 	struct e1000_tx_desc *tx_desc, *eop_desc;
       
  3928 	struct e1000_buffer *buffer_info;
       
  3929 	unsigned int i, eop;
       
  3930 	unsigned int count = 0;
       
  3931 	bool cleaned = false;
       
  3932 	unsigned int total_tx_bytes=0, total_tx_packets=0;
       
  3933 
       
  3934 	i = tx_ring->next_to_clean;
       
  3935 	eop = tx_ring->buffer_info[i].next_to_watch;
       
  3936 	eop_desc = E1000_TX_DESC(*tx_ring, eop);
       
  3937 
       
  3938 	while (eop_desc->upper.data & cpu_to_le32(E1000_TXD_STAT_DD)) {
       
  3939 		for (cleaned = false; !cleaned; ) {
       
  3940 			tx_desc = E1000_TX_DESC(*tx_ring, i);
       
  3941 			buffer_info = &tx_ring->buffer_info[i];
       
  3942 			cleaned = (i == eop);
       
  3943 
       
  3944 			if (cleaned) {
       
  3945 				struct sk_buff *skb = buffer_info->skb;
       
  3946 				unsigned int segs, bytecount;
       
  3947 				segs = skb_shinfo(skb)->gso_segs ?: 1;
       
  3948 				/* multiply data chunks by size of headers */
       
  3949 				bytecount = ((segs - 1) * skb_headlen(skb)) +
       
  3950 				            skb->len;
       
  3951 				total_tx_packets += segs;
       
  3952 				total_tx_bytes += bytecount;
       
  3953 			}
       
  3954 			e1000_unmap_and_free_tx_resource(adapter, buffer_info);
       
  3955 			tx_desc->upper.data = 0;
       
  3956 
       
  3957 			if (unlikely(++i == tx_ring->count)) i = 0;
       
  3958 		}
       
  3959 
       
  3960 		eop = tx_ring->buffer_info[i].next_to_watch;
       
  3961 		eop_desc = E1000_TX_DESC(*tx_ring, eop);
       
  3962 #define E1000_TX_WEIGHT 64
       
  3963 		/* weight of a sort for tx, to avoid endless transmit cleanup */
       
  3964 		if (count++ == E1000_TX_WEIGHT)
       
  3965 			break;
       
  3966 	}
       
  3967 
       
  3968 	tx_ring->next_to_clean = i;
       
  3969 
       
  3970 #define TX_WAKE_THRESHOLD 32
       
  3971 	if (!adapter->ecdev && unlikely(cleaned && netif_carrier_ok(netdev) &&
       
  3972 		     E1000_DESC_UNUSED(tx_ring) >= TX_WAKE_THRESHOLD)) {
       
  3973 		/* Make sure that anybody stopping the queue after this
       
  3974 		 * sees the new next_to_clean.
       
  3975 		 */
       
  3976 		smp_mb();
       
  3977 		if (netif_queue_stopped(netdev)) {
       
  3978 			netif_wake_queue(netdev);
       
  3979 			++adapter->restart_queue;
       
  3980 		}
       
  3981 	}
       
  3982 
       
  3983 	if (!adapter->ecdev && adapter->detect_tx_hung) {
       
  3984 		/* Detect a transmit hang in hardware, this serializes the
       
  3985 		 * check with the clearing of time_stamp and movement of i */
       
  3986 		adapter->detect_tx_hung = false;
       
  3987 		if (tx_ring->buffer_info[eop].dma &&
       
  3988 		    time_after(jiffies, tx_ring->buffer_info[eop].time_stamp +
       
  3989 		               (adapter->tx_timeout_factor * HZ))
       
  3990 		    && !(er32(STATUS) & E1000_STATUS_TXOFF)) {
       
  3991 
       
  3992 			/* detected Tx unit hang */
       
  3993 			DPRINTK(DRV, ERR, "Detected Tx Unit Hang\n"
       
  3994 					"  Tx Queue             <%lu>\n"
       
  3995 					"  TDH                  <%x>\n"
       
  3996 					"  TDT                  <%x>\n"
       
  3997 					"  next_to_use          <%x>\n"
       
  3998 					"  next_to_clean        <%x>\n"
       
  3999 					"buffer_info[next_to_clean]\n"
       
  4000 					"  time_stamp           <%lx>\n"
       
  4001 					"  next_to_watch        <%x>\n"
       
  4002 					"  jiffies              <%lx>\n"
       
  4003 					"  next_to_watch.status <%x>\n",
       
  4004 				(unsigned long)((tx_ring - adapter->tx_ring) /
       
  4005 					sizeof(struct e1000_tx_ring)),
       
  4006 				readl(hw->hw_addr + tx_ring->tdh),
       
  4007 				readl(hw->hw_addr + tx_ring->tdt),
       
  4008 				tx_ring->next_to_use,
       
  4009 				tx_ring->next_to_clean,
       
  4010 				tx_ring->buffer_info[eop].time_stamp,
       
  4011 				eop,
       
  4012 				jiffies,
       
  4013 				eop_desc->upper.fields.status);
       
  4014 			netif_stop_queue(netdev);
       
  4015 		}
       
  4016 	}
       
  4017 	adapter->total_tx_bytes += total_tx_bytes;
       
  4018 	adapter->total_tx_packets += total_tx_packets;
       
  4019 	adapter->net_stats.tx_bytes += total_tx_bytes;
       
  4020 	adapter->net_stats.tx_packets += total_tx_packets;
       
  4021 	return cleaned;
       
  4022 }
       
  4023 
       
  4024 /**
       
  4025  * e1000_rx_checksum - Receive Checksum Offload for 82543
       
  4026  * @adapter:     board private structure
       
  4027  * @status_err:  receive descriptor status and error fields
       
  4028  * @csum:        receive descriptor csum field
       
  4029  * @sk_buff:     socket buffer with received data
       
  4030  **/
       
  4031 
       
  4032 static void e1000_rx_checksum(struct e1000_adapter *adapter, u32 status_err,
       
  4033 			      u32 csum, struct sk_buff *skb)
       
  4034 {
       
  4035 	struct e1000_hw *hw = &adapter->hw;
       
  4036 	u16 status = (u16)status_err;
       
  4037 	u8 errors = (u8)(status_err >> 24);
       
  4038 	skb->ip_summed = CHECKSUM_NONE;
       
  4039 
       
  4040 	/* 82543 or newer only */
       
  4041 	if (unlikely(hw->mac_type < e1000_82543)) return;
       
  4042 	/* Ignore Checksum bit is set */
       
  4043 	if (unlikely(status & E1000_RXD_STAT_IXSM)) return;
       
  4044 	/* TCP/UDP checksum error bit is set */
       
  4045 	if (unlikely(errors & E1000_RXD_ERR_TCPE)) {
       
  4046 		/* let the stack verify checksum errors */
       
  4047 		adapter->hw_csum_err++;
       
  4048 		return;
       
  4049 	}
       
  4050 	/* TCP/UDP Checksum has not been calculated */
       
  4051 	if (hw->mac_type <= e1000_82547_rev_2) {
       
  4052 		if (!(status & E1000_RXD_STAT_TCPCS))
       
  4053 			return;
       
  4054 	} else {
       
  4055 		if (!(status & (E1000_RXD_STAT_TCPCS | E1000_RXD_STAT_UDPCS)))
       
  4056 			return;
       
  4057 	}
       
  4058 	/* It must be a TCP or UDP packet with a valid checksum */
       
  4059 	if (likely(status & E1000_RXD_STAT_TCPCS)) {
       
  4060 		/* TCP checksum is good */
       
  4061 		skb->ip_summed = CHECKSUM_UNNECESSARY;
       
  4062 	} else if (hw->mac_type > e1000_82547_rev_2) {
       
  4063 		/* IP fragment with UDP payload */
       
  4064 		/* Hardware complements the payload checksum, so we undo it
       
  4065 		 * and then put the value in host order for further stack use.
       
  4066 		 */
       
  4067 		__sum16 sum = (__force __sum16)htons(csum);
       
  4068 		skb->csum = csum_unfold(~sum);
       
  4069 		skb->ip_summed = CHECKSUM_COMPLETE;
       
  4070 	}
       
  4071 	adapter->hw_csum_good++;
       
  4072 }
       
  4073 
       
  4074 /**
       
  4075  * e1000_clean_rx_irq - Send received data up the network stack; legacy
       
  4076  * @adapter: board private structure
       
  4077  **/
       
  4078 static bool e1000_clean_rx_irq(struct e1000_adapter *adapter,
       
  4079 			       struct e1000_rx_ring *rx_ring,
       
  4080 			       int *work_done, int work_to_do)
       
  4081 {
       
  4082 	struct e1000_hw *hw = &adapter->hw;
       
  4083 	struct net_device *netdev = adapter->netdev;
       
  4084 	struct pci_dev *pdev = adapter->pdev;
       
  4085 	struct e1000_rx_desc *rx_desc, *next_rxd;
       
  4086 	struct e1000_buffer *buffer_info, *next_buffer;
       
  4087 	unsigned long flags;
       
  4088 	u32 length;
       
  4089 	u8 last_byte;
       
  4090 	unsigned int i;
       
  4091 	int cleaned_count = 0;
       
  4092 	bool cleaned = false;
       
  4093 	unsigned int total_rx_bytes=0, total_rx_packets=0;
       
  4094 
       
  4095 	i = rx_ring->next_to_clean;
       
  4096 	rx_desc = E1000_RX_DESC(*rx_ring, i);
       
  4097 	buffer_info = &rx_ring->buffer_info[i];
       
  4098 
       
  4099 	while (rx_desc->status & E1000_RXD_STAT_DD) {
       
  4100 		struct sk_buff *skb;
       
  4101 		u8 status;
       
  4102 
       
  4103 		if (*work_done >= work_to_do)
       
  4104 			break;
       
  4105 		(*work_done)++;
       
  4106 
       
  4107 		status = rx_desc->status;
       
  4108 		skb = buffer_info->skb;
       
  4109 		if (!adapter->ecdev) buffer_info->skb = NULL;
       
  4110 
       
  4111 		prefetch(skb->data - NET_IP_ALIGN);
       
  4112 
       
  4113 		if (++i == rx_ring->count) i = 0;
       
  4114 		next_rxd = E1000_RX_DESC(*rx_ring, i);
       
  4115 		prefetch(next_rxd);
       
  4116 
       
  4117 		next_buffer = &rx_ring->buffer_info[i];
       
  4118 
       
  4119 		cleaned = true;
       
  4120 		cleaned_count++;
       
  4121 		pci_unmap_single(pdev,
       
  4122 		                 buffer_info->dma,
       
  4123 		                 buffer_info->length,
       
  4124 		                 PCI_DMA_FROMDEVICE);
       
  4125 
       
  4126 		length = le16_to_cpu(rx_desc->length);
       
  4127 
       
  4128 		if (unlikely(!(status & E1000_RXD_STAT_EOP))) {
       
  4129 			/* All receives must fit into a single buffer */
       
  4130 			E1000_DBG("%s: Receive packet consumed multiple"
       
  4131 				  " buffers\n", netdev->name);
       
  4132 			/* recycle */
       
  4133 			buffer_info->skb = skb;
       
  4134 			goto next_desc;
       
  4135 		}
       
  4136 
       
  4137 		if (!adapter->ecdev &&
       
  4138                 unlikely(rx_desc->errors & E1000_RXD_ERR_FRAME_ERR_MASK)) {
       
  4139 			last_byte = *(skb->data + length - 1);
       
  4140 			if (TBI_ACCEPT(hw, status, rx_desc->errors, length,
       
  4141 				       last_byte)) {
       
  4142 				spin_lock_irqsave(&adapter->stats_lock, flags);
       
  4143 				e1000_tbi_adjust_stats(hw, &adapter->stats,
       
  4144 				                       length, skb->data);
       
  4145 				spin_unlock_irqrestore(&adapter->stats_lock,
       
  4146 				                       flags);
       
  4147 				length--;
       
  4148 			} else {
       
  4149 				/* recycle */
       
  4150 				buffer_info->skb = skb;
       
  4151 				goto next_desc;
       
  4152 			}
       
  4153 		}
       
  4154 
       
  4155 		/* adjust length to remove Ethernet CRC, this must be
       
  4156 		 * done after the TBI_ACCEPT workaround above */
       
  4157 		length -= 4;
       
  4158 
       
  4159 		/* probably a little skewed due to removing CRC */
       
  4160 		total_rx_bytes += length;
       
  4161 		total_rx_packets++;
       
  4162 
       
  4163 		/* code added for copybreak, this should improve
       
  4164 		 * performance for small packets with large amounts
       
  4165 		 * of reassembly being done in the stack */
       
  4166 		if (!adapter->ecdev && length < copybreak) {
       
  4167 			struct sk_buff *new_skb =
       
  4168 			    netdev_alloc_skb(netdev, length + NET_IP_ALIGN);
       
  4169 			if (new_skb) {
       
  4170 				skb_reserve(new_skb, NET_IP_ALIGN);
       
  4171 				skb_copy_to_linear_data_offset(new_skb,
       
  4172 							       -NET_IP_ALIGN,
       
  4173 							       (skb->data -
       
  4174 							        NET_IP_ALIGN),
       
  4175 							       (length +
       
  4176 							        NET_IP_ALIGN));
       
  4177 				/* save the skb in buffer_info as good */
       
  4178 				buffer_info->skb = skb;
       
  4179 				skb = new_skb;
       
  4180 			}
       
  4181 			/* else just continue with the old one */
       
  4182 		}
       
  4183 		/* end copybreak code */
       
  4184 		skb_put(skb, length);
       
  4185 
       
  4186 		/* Receive Checksum Offload */
       
  4187 		e1000_rx_checksum(adapter,
       
  4188 				  (u32)(status) |
       
  4189 				  ((u32)(rx_desc->errors) << 24),
       
  4190 				  le16_to_cpu(rx_desc->csum), skb);
       
  4191 
       
  4192 		if (adapter->ecdev) {
       
  4193 			ecdev_receive(adapter->ecdev, skb->data, length);
       
  4194 
       
  4195 			// No need to detect link status as
       
  4196 			// long as frames are received: Reset watchdog.
       
  4197 			adapter->ec_watchdog_jiffies = jiffies;
       
  4198 		} else {
       
  4199 			skb->protocol = eth_type_trans(skb, netdev);
       
  4200 
       
  4201 			if (unlikely(adapter->vlgrp &&
       
  4202 						(status & E1000_RXD_STAT_VP))) {
       
  4203 				vlan_hwaccel_receive_skb(skb, adapter->vlgrp,
       
  4204 						le16_to_cpu(rx_desc->special));
       
  4205 			} else {
       
  4206 				netif_receive_skb(skb);
       
  4207 			}
       
  4208 		}
       
  4209 
       
  4210 next_desc:
       
  4211 		rx_desc->status = 0;
       
  4212 
       
  4213 		/* return some buffers to hardware, one at a time is too slow */
       
  4214 		if (unlikely(cleaned_count >= E1000_RX_BUFFER_WRITE)) {
       
  4215 			adapter->alloc_rx_buf(adapter, rx_ring, cleaned_count);
       
  4216 			cleaned_count = 0;
       
  4217 		}
       
  4218 
       
  4219 		/* use prefetched values */
       
  4220 		rx_desc = next_rxd;
       
  4221 		buffer_info = next_buffer;
       
  4222 	}
       
  4223 	rx_ring->next_to_clean = i;
       
  4224 
       
  4225 	cleaned_count = E1000_DESC_UNUSED(rx_ring);
       
  4226 	if (cleaned_count)
       
  4227 		adapter->alloc_rx_buf(adapter, rx_ring, cleaned_count);
       
  4228 
       
  4229 	adapter->total_rx_packets += total_rx_packets;
       
  4230 	adapter->total_rx_bytes += total_rx_bytes;
       
  4231 	adapter->net_stats.rx_bytes += total_rx_bytes;
       
  4232 	adapter->net_stats.rx_packets += total_rx_packets;
       
  4233 	return cleaned;
       
  4234 }
       
  4235 
       
  4236 /**
       
  4237  * e1000_alloc_rx_buffers - Replace used receive buffers; legacy & extended
       
  4238  * @adapter: address of board private structure
       
  4239  **/
       
  4240 
       
  4241 static void e1000_alloc_rx_buffers(struct e1000_adapter *adapter,
       
  4242 				   struct e1000_rx_ring *rx_ring,
       
  4243 				   int cleaned_count)
       
  4244 {
       
  4245 	struct e1000_hw *hw = &adapter->hw;
       
  4246 	struct net_device *netdev = adapter->netdev;
       
  4247 	struct pci_dev *pdev = adapter->pdev;
       
  4248 	struct e1000_rx_desc *rx_desc;
       
  4249 	struct e1000_buffer *buffer_info;
       
  4250 	struct sk_buff *skb;
       
  4251 	unsigned int i;
       
  4252 	unsigned int bufsz = adapter->rx_buffer_len + NET_IP_ALIGN;
       
  4253 
       
  4254 	i = rx_ring->next_to_use;
       
  4255 	buffer_info = &rx_ring->buffer_info[i];
       
  4256 
       
  4257 	while (cleaned_count--) {
       
  4258 		skb = buffer_info->skb;
       
  4259 		if (skb) {
       
  4260 			skb_trim(skb, 0);
       
  4261 			goto map_skb;
       
  4262 		}
       
  4263 
       
  4264 		skb = netdev_alloc_skb(netdev, bufsz);
       
  4265 		if (unlikely(!skb)) {
       
  4266 			/* Better luck next round */
       
  4267 			adapter->alloc_rx_buff_failed++;
       
  4268 			break;
       
  4269 		}
       
  4270 
       
  4271 		/* Fix for errata 23, can't cross 64kB boundary */
       
  4272 		if (!e1000_check_64k_bound(adapter, skb->data, bufsz)) {
       
  4273 			struct sk_buff *oldskb = skb;
       
  4274 			DPRINTK(RX_ERR, ERR, "skb align check failed: %u bytes "
       
  4275 					     "at %p\n", bufsz, skb->data);
       
  4276 			/* Try again, without freeing the previous */
       
  4277 			skb = netdev_alloc_skb(netdev, bufsz);
       
  4278 			/* Failed allocation, critical failure */
       
  4279 			if (!skb) {
       
  4280 				dev_kfree_skb(oldskb);
       
  4281 				break;
       
  4282 			}
       
  4283 
       
  4284 			if (!e1000_check_64k_bound(adapter, skb->data, bufsz)) {
       
  4285 				/* give up */
       
  4286 				dev_kfree_skb(skb);
       
  4287 				dev_kfree_skb(oldskb);
       
  4288 				break; /* while !buffer_info->skb */
       
  4289 			}
       
  4290 
       
  4291 			/* Use new allocation */
       
  4292 			dev_kfree_skb(oldskb);
       
  4293 		}
       
  4294 		/* Make buffer alignment 2 beyond a 16 byte boundary
       
  4295 		 * this will result in a 16 byte aligned IP header after
       
  4296 		 * the 14 byte MAC header is removed
       
  4297 		 */
       
  4298 		skb_reserve(skb, NET_IP_ALIGN);
       
  4299 
       
  4300 		buffer_info->skb = skb;
       
  4301 		buffer_info->length = adapter->rx_buffer_len;
       
  4302 map_skb:
       
  4303 		buffer_info->dma = pci_map_single(pdev,
       
  4304 						  skb->data,
       
  4305 						  adapter->rx_buffer_len,
       
  4306 						  PCI_DMA_FROMDEVICE);
       
  4307 
       
  4308 		/* Fix for errata 23, can't cross 64kB boundary */
       
  4309 		if (!e1000_check_64k_bound(adapter,
       
  4310 					(void *)(unsigned long)buffer_info->dma,
       
  4311 					adapter->rx_buffer_len)) {
       
  4312 			DPRINTK(RX_ERR, ERR,
       
  4313 				"dma align check failed: %u bytes at %p\n",
       
  4314 				adapter->rx_buffer_len,
       
  4315 				(void *)(unsigned long)buffer_info->dma);
       
  4316 			if (!adapter->ecdev) {
       
  4317 				dev_kfree_skb(skb);
       
  4318 				buffer_info->skb = NULL;
       
  4319 			}
       
  4320 
       
  4321 			pci_unmap_single(pdev, buffer_info->dma,
       
  4322 					 adapter->rx_buffer_len,
       
  4323 					 PCI_DMA_FROMDEVICE);
       
  4324 
       
  4325 			break; /* while !buffer_info->skb */
       
  4326 		}
       
  4327 		rx_desc = E1000_RX_DESC(*rx_ring, i);
       
  4328 		rx_desc->buffer_addr = cpu_to_le64(buffer_info->dma);
       
  4329 
       
  4330 		if (unlikely(++i == rx_ring->count))
       
  4331 			i = 0;
       
  4332 		buffer_info = &rx_ring->buffer_info[i];
       
  4333 	}
       
  4334 
       
  4335 	if (likely(rx_ring->next_to_use != i)) {
       
  4336 		rx_ring->next_to_use = i;
       
  4337 		if (unlikely(i-- == 0))
       
  4338 			i = (rx_ring->count - 1);
       
  4339 
       
  4340 		/* Force memory writes to complete before letting h/w
       
  4341 		 * know there are new descriptors to fetch.  (Only
       
  4342 		 * applicable for weak-ordered memory model archs,
       
  4343 		 * such as IA-64). */
       
  4344 		wmb();
       
  4345 		writel(i, hw->hw_addr + rx_ring->rdt);
       
  4346 	}
       
  4347 }
       
  4348 
       
  4349 /**
       
  4350  * e1000_smartspeed - Workaround for SmartSpeed on 82541 and 82547 controllers.
       
  4351  * @adapter:
       
  4352  **/
       
  4353 
       
  4354 static void e1000_smartspeed(struct e1000_adapter *adapter)
       
  4355 {
       
  4356 	struct e1000_hw *hw = &adapter->hw;
       
  4357 	u16 phy_status;
       
  4358 	u16 phy_ctrl;
       
  4359 
       
  4360 	if ((hw->phy_type != e1000_phy_igp) || !hw->autoneg ||
       
  4361 	   !(hw->autoneg_advertised & ADVERTISE_1000_FULL))
       
  4362 		return;
       
  4363 
       
  4364 	if (adapter->smartspeed == 0) {
       
  4365 		/* If Master/Slave config fault is asserted twice,
       
  4366 		 * we assume back-to-back */
       
  4367 		e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_status);
       
  4368 		if (!(phy_status & SR_1000T_MS_CONFIG_FAULT)) return;
       
  4369 		e1000_read_phy_reg(hw, PHY_1000T_STATUS, &phy_status);
       
  4370 		if (!(phy_status & SR_1000T_MS_CONFIG_FAULT)) return;
       
  4371 		e1000_read_phy_reg(hw, PHY_1000T_CTRL, &phy_ctrl);
       
  4372 		if (phy_ctrl & CR_1000T_MS_ENABLE) {
       
  4373 			phy_ctrl &= ~CR_1000T_MS_ENABLE;
       
  4374 			e1000_write_phy_reg(hw, PHY_1000T_CTRL,
       
  4375 					    phy_ctrl);
       
  4376 			adapter->smartspeed++;
       
  4377 			if (!e1000_phy_setup_autoneg(hw) &&
       
  4378 			   !e1000_read_phy_reg(hw, PHY_CTRL,
       
  4379 				   	       &phy_ctrl)) {
       
  4380 				phy_ctrl |= (MII_CR_AUTO_NEG_EN |
       
  4381 					     MII_CR_RESTART_AUTO_NEG);
       
  4382 				e1000_write_phy_reg(hw, PHY_CTRL,
       
  4383 						    phy_ctrl);
       
  4384 			}
       
  4385 		}
       
  4386 		return;
       
  4387 	} else if (adapter->smartspeed == E1000_SMARTSPEED_DOWNSHIFT) {
       
  4388 		/* If still no link, perhaps using 2/3 pair cable */
       
  4389 		e1000_read_phy_reg(hw, PHY_1000T_CTRL, &phy_ctrl);
       
  4390 		phy_ctrl |= CR_1000T_MS_ENABLE;
       
  4391 		e1000_write_phy_reg(hw, PHY_1000T_CTRL, phy_ctrl);
       
  4392 		if (!e1000_phy_setup_autoneg(hw) &&
       
  4393 		   !e1000_read_phy_reg(hw, PHY_CTRL, &phy_ctrl)) {
       
  4394 			phy_ctrl |= (MII_CR_AUTO_NEG_EN |
       
  4395 				     MII_CR_RESTART_AUTO_NEG);
       
  4396 			e1000_write_phy_reg(hw, PHY_CTRL, phy_ctrl);
       
  4397 		}
       
  4398 	}
       
  4399 	/* Restart process after E1000_SMARTSPEED_MAX iterations */
       
  4400 	if (adapter->smartspeed++ == E1000_SMARTSPEED_MAX)
       
  4401 		adapter->smartspeed = 0;
       
  4402 }
       
  4403 
       
  4404 /**
       
  4405  * e1000_ioctl -
       
  4406  * @netdev:
       
  4407  * @ifreq:
       
  4408  * @cmd:
       
  4409  **/
       
  4410 
       
  4411 static int e1000_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
       
  4412 {
       
  4413 	switch (cmd) {
       
  4414 	case SIOCGMIIPHY:
       
  4415 	case SIOCGMIIREG:
       
  4416 	case SIOCSMIIREG:
       
  4417 		return e1000_mii_ioctl(netdev, ifr, cmd);
       
  4418 	default:
       
  4419 		return -EOPNOTSUPP;
       
  4420 	}
       
  4421 }
       
  4422 
       
  4423 /**
       
  4424  * e1000_mii_ioctl -
       
  4425  * @netdev:
       
  4426  * @ifreq:
       
  4427  * @cmd:
       
  4428  **/
       
  4429 
       
  4430 static int e1000_mii_ioctl(struct net_device *netdev, struct ifreq *ifr,
       
  4431 			   int cmd)
       
  4432 {
       
  4433 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  4434 	struct e1000_hw *hw = &adapter->hw;
       
  4435 	struct mii_ioctl_data *data = if_mii(ifr);
       
  4436 	int retval;
       
  4437 	u16 mii_reg;
       
  4438 	u16 spddplx;
       
  4439 	unsigned long flags;
       
  4440 
       
  4441 	if (hw->media_type != e1000_media_type_copper)
       
  4442 		return -EOPNOTSUPP;
       
  4443 
       
  4444 	switch (cmd) {
       
  4445 	case SIOCGMIIPHY:
       
  4446 		data->phy_id = hw->phy_addr;
       
  4447 		break;
       
  4448 	case SIOCGMIIREG:
       
  4449 		if (adapter->ecdev || !capable(CAP_NET_ADMIN))
       
  4450 			return -EPERM;
       
  4451 		spin_lock_irqsave(&adapter->stats_lock, flags);
       
  4452 		if (e1000_read_phy_reg(hw, data->reg_num & 0x1F,
       
  4453 				   &data->val_out)) {
       
  4454 			spin_unlock_irqrestore(&adapter->stats_lock, flags);
       
  4455 			return -EIO;
       
  4456 		}
       
  4457 		spin_unlock_irqrestore(&adapter->stats_lock, flags);
       
  4458 		break;
       
  4459 	case SIOCSMIIREG:
       
  4460 		if (adapter->ecdev || !capable(CAP_NET_ADMIN))
       
  4461 			return -EPERM;
       
  4462 		if (data->reg_num & ~(0x1F))
       
  4463 			return -EFAULT;
       
  4464 		mii_reg = data->val_in;
       
  4465 		spin_lock_irqsave(&adapter->stats_lock, flags);
       
  4466 		if (e1000_write_phy_reg(hw, data->reg_num,
       
  4467 					mii_reg)) {
       
  4468 			spin_unlock_irqrestore(&adapter->stats_lock, flags);
       
  4469 			return -EIO;
       
  4470 		}
       
  4471 		spin_unlock_irqrestore(&adapter->stats_lock, flags);
       
  4472 		if (hw->media_type == e1000_media_type_copper) {
       
  4473 			switch (data->reg_num) {
       
  4474 			case PHY_CTRL:
       
  4475 				if (mii_reg & MII_CR_POWER_DOWN)
       
  4476 					break;
       
  4477 				if (mii_reg & MII_CR_AUTO_NEG_EN) {
       
  4478 					hw->autoneg = 1;
       
  4479 					hw->autoneg_advertised = 0x2F;
       
  4480 				} else {
       
  4481 					if (mii_reg & 0x40)
       
  4482 						spddplx = SPEED_1000;
       
  4483 					else if (mii_reg & 0x2000)
       
  4484 						spddplx = SPEED_100;
       
  4485 					else
       
  4486 						spddplx = SPEED_10;
       
  4487 					spddplx += (mii_reg & 0x100)
       
  4488 						   ? DUPLEX_FULL :
       
  4489 						   DUPLEX_HALF;
       
  4490 					retval = e1000_set_spd_dplx(adapter,
       
  4491 								    spddplx);
       
  4492 					if (retval)
       
  4493 						return retval;
       
  4494 				}
       
  4495 				if (netif_running(adapter->netdev))
       
  4496 					e1000_reinit_locked(adapter);
       
  4497 				else
       
  4498 					e1000_reset(adapter);
       
  4499 				break;
       
  4500 			case M88E1000_PHY_SPEC_CTRL:
       
  4501 			case M88E1000_EXT_PHY_SPEC_CTRL:
       
  4502 				if (e1000_phy_reset(hw))
       
  4503 					return -EIO;
       
  4504 				break;
       
  4505 			}
       
  4506 		} else {
       
  4507 			switch (data->reg_num) {
       
  4508 			case PHY_CTRL:
       
  4509 				if (mii_reg & MII_CR_POWER_DOWN)
       
  4510 					break;
       
  4511 				if (netif_running(adapter->netdev))
       
  4512 					e1000_reinit_locked(adapter);
       
  4513 				else
       
  4514 					e1000_reset(adapter);
       
  4515 				break;
       
  4516 			}
       
  4517 		}
       
  4518 		break;
       
  4519 	default:
       
  4520 		return -EOPNOTSUPP;
       
  4521 	}
       
  4522 	return E1000_SUCCESS;
       
  4523 }
       
  4524 
       
  4525 void e1000_pci_set_mwi(struct e1000_hw *hw)
       
  4526 {
       
  4527 	struct e1000_adapter *adapter = hw->back;
       
  4528 	int ret_val = pci_set_mwi(adapter->pdev);
       
  4529 
       
  4530 	if (ret_val)
       
  4531 		DPRINTK(PROBE, ERR, "Error in setting MWI\n");
       
  4532 }
       
  4533 
       
  4534 void e1000_pci_clear_mwi(struct e1000_hw *hw)
       
  4535 {
       
  4536 	struct e1000_adapter *adapter = hw->back;
       
  4537 
       
  4538 	pci_clear_mwi(adapter->pdev);
       
  4539 }
       
  4540 
       
  4541 int e1000_pcix_get_mmrbc(struct e1000_hw *hw)
       
  4542 {
       
  4543 	struct e1000_adapter *adapter = hw->back;
       
  4544 	return pcix_get_mmrbc(adapter->pdev);
       
  4545 }
       
  4546 
       
  4547 void e1000_pcix_set_mmrbc(struct e1000_hw *hw, int mmrbc)
       
  4548 {
       
  4549 	struct e1000_adapter *adapter = hw->back;
       
  4550 	pcix_set_mmrbc(adapter->pdev, mmrbc);
       
  4551 }
       
  4552 
       
  4553 s32 e1000_read_pcie_cap_reg(struct e1000_hw *hw, u32 reg, u16 *value)
       
  4554 {
       
  4555     struct e1000_adapter *adapter = hw->back;
       
  4556     u16 cap_offset;
       
  4557 
       
  4558     cap_offset = pci_find_capability(adapter->pdev, PCI_CAP_ID_EXP);
       
  4559     if (!cap_offset)
       
  4560         return -E1000_ERR_CONFIG;
       
  4561 
       
  4562     pci_read_config_word(adapter->pdev, cap_offset + reg, value);
       
  4563 
       
  4564     return E1000_SUCCESS;
       
  4565 }
       
  4566 
       
  4567 void e1000_io_write(struct e1000_hw *hw, unsigned long port, u32 value)
       
  4568 {
       
  4569 	outl(value, port);
       
  4570 }
       
  4571 
       
  4572 static void e1000_vlan_rx_register(struct net_device *netdev,
       
  4573 				   struct vlan_group *grp)
       
  4574 {
       
  4575 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  4576 	struct e1000_hw *hw = &adapter->hw;
       
  4577 	u32 ctrl, rctl;
       
  4578 
       
  4579 	if (!test_bit(__E1000_DOWN, &adapter->flags))
       
  4580 		e1000_irq_disable(adapter);
       
  4581 	adapter->vlgrp = grp;
       
  4582 
       
  4583 	if (grp) {
       
  4584 		/* enable VLAN tag insert/strip */
       
  4585 		ctrl = er32(CTRL);
       
  4586 		ctrl |= E1000_CTRL_VME;
       
  4587 		ew32(CTRL, ctrl);
       
  4588 
       
  4589 		if (adapter->hw.mac_type != e1000_ich8lan) {
       
  4590 			/* enable VLAN receive filtering */
       
  4591 			rctl = er32(RCTL);
       
  4592 			rctl &= ~E1000_RCTL_CFIEN;
       
  4593 			ew32(RCTL, rctl);
       
  4594 			e1000_update_mng_vlan(adapter);
       
  4595 		}
       
  4596 	} else {
       
  4597 		/* disable VLAN tag insert/strip */
       
  4598 		ctrl = er32(CTRL);
       
  4599 		ctrl &= ~E1000_CTRL_VME;
       
  4600 		ew32(CTRL, ctrl);
       
  4601 
       
  4602 		if (adapter->hw.mac_type != e1000_ich8lan) {
       
  4603 			if (adapter->mng_vlan_id !=
       
  4604 			    (u16)E1000_MNG_VLAN_NONE) {
       
  4605 				e1000_vlan_rx_kill_vid(netdev,
       
  4606 				                       adapter->mng_vlan_id);
       
  4607 				adapter->mng_vlan_id = E1000_MNG_VLAN_NONE;
       
  4608 			}
       
  4609 		}
       
  4610 	}
       
  4611 
       
  4612 	if (!test_bit(__E1000_DOWN, &adapter->flags))
       
  4613 		e1000_irq_enable(adapter);
       
  4614 }
       
  4615 
       
  4616 static void e1000_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
       
  4617 {
       
  4618 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  4619 	struct e1000_hw *hw = &adapter->hw;
       
  4620 	u32 vfta, index;
       
  4621 
       
  4622 	if ((hw->mng_cookie.status &
       
  4623 	     E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT) &&
       
  4624 	    (vid == adapter->mng_vlan_id))
       
  4625 		return;
       
  4626 	/* add VID to filter table */
       
  4627 	index = (vid >> 5) & 0x7F;
       
  4628 	vfta = E1000_READ_REG_ARRAY(hw, VFTA, index);
       
  4629 	vfta |= (1 << (vid & 0x1F));
       
  4630 	e1000_write_vfta(hw, index, vfta);
       
  4631 }
       
  4632 
       
  4633 static void e1000_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
       
  4634 {
       
  4635 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  4636 	struct e1000_hw *hw = &adapter->hw;
       
  4637 	u32 vfta, index;
       
  4638 
       
  4639 	if (!test_bit(__E1000_DOWN, &adapter->flags))
       
  4640 		e1000_irq_disable(adapter);
       
  4641 	vlan_group_set_device(adapter->vlgrp, vid, NULL);
       
  4642 	if (!test_bit(__E1000_DOWN, &adapter->flags))
       
  4643 		e1000_irq_enable(adapter);
       
  4644 
       
  4645 	if ((hw->mng_cookie.status &
       
  4646 	     E1000_MNG_DHCP_COOKIE_STATUS_VLAN_SUPPORT) &&
       
  4647 	    (vid == adapter->mng_vlan_id)) {
       
  4648 		/* release control to f/w */
       
  4649 		e1000_release_hw_control(adapter);
       
  4650 		return;
       
  4651 	}
       
  4652 
       
  4653 	/* remove VID from filter table */
       
  4654 	index = (vid >> 5) & 0x7F;
       
  4655 	vfta = E1000_READ_REG_ARRAY(hw, VFTA, index);
       
  4656 	vfta &= ~(1 << (vid & 0x1F));
       
  4657 	e1000_write_vfta(hw, index, vfta);
       
  4658 }
       
  4659 
       
  4660 static void e1000_restore_vlan(struct e1000_adapter *adapter)
       
  4661 {
       
  4662 	e1000_vlan_rx_register(adapter->netdev, adapter->vlgrp);
       
  4663 
       
  4664 	if (adapter->vlgrp) {
       
  4665 		u16 vid;
       
  4666 		for (vid = 0; vid < VLAN_GROUP_ARRAY_LEN; vid++) {
       
  4667 			if (!vlan_group_get_device(adapter->vlgrp, vid))
       
  4668 				continue;
       
  4669 			e1000_vlan_rx_add_vid(adapter->netdev, vid);
       
  4670 		}
       
  4671 	}
       
  4672 }
       
  4673 
       
  4674 int e1000_set_spd_dplx(struct e1000_adapter *adapter, u16 spddplx)
       
  4675 {
       
  4676 	struct e1000_hw *hw = &adapter->hw;
       
  4677 
       
  4678 	hw->autoneg = 0;
       
  4679 
       
  4680 	/* Fiber NICs only allow 1000 gbps Full duplex */
       
  4681 	if ((hw->media_type == e1000_media_type_fiber) &&
       
  4682 		spddplx != (SPEED_1000 + DUPLEX_FULL)) {
       
  4683 		DPRINTK(PROBE, ERR, "Unsupported Speed/Duplex configuration\n");
       
  4684 		return -EINVAL;
       
  4685 	}
       
  4686 
       
  4687 	switch (spddplx) {
       
  4688 	case SPEED_10 + DUPLEX_HALF:
       
  4689 		hw->forced_speed_duplex = e1000_10_half;
       
  4690 		break;
       
  4691 	case SPEED_10 + DUPLEX_FULL:
       
  4692 		hw->forced_speed_duplex = e1000_10_full;
       
  4693 		break;
       
  4694 	case SPEED_100 + DUPLEX_HALF:
       
  4695 		hw->forced_speed_duplex = e1000_100_half;
       
  4696 		break;
       
  4697 	case SPEED_100 + DUPLEX_FULL:
       
  4698 		hw->forced_speed_duplex = e1000_100_full;
       
  4699 		break;
       
  4700 	case SPEED_1000 + DUPLEX_FULL:
       
  4701 		hw->autoneg = 1;
       
  4702 		hw->autoneg_advertised = ADVERTISE_1000_FULL;
       
  4703 		break;
       
  4704 	case SPEED_1000 + DUPLEX_HALF: /* not supported */
       
  4705 	default:
       
  4706 		DPRINTK(PROBE, ERR, "Unsupported Speed/Duplex configuration\n");
       
  4707 		return -EINVAL;
       
  4708 	}
       
  4709 	return 0;
       
  4710 }
       
  4711 
       
  4712 static int e1000_suspend(struct pci_dev *pdev, pm_message_t state)
       
  4713 {
       
  4714 	struct net_device *netdev = pci_get_drvdata(pdev);
       
  4715 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  4716 	struct e1000_hw *hw = &adapter->hw;
       
  4717 	u32 ctrl, ctrl_ext, rctl, status;
       
  4718 	u32 wufc = adapter->wol;
       
  4719 #ifdef CONFIG_PM
       
  4720 	int retval = 0;
       
  4721 #endif
       
  4722 
       
  4723 	if (adapter->ecdev)
       
  4724 		return -EBUSY;
       
  4725 
       
  4726 	netif_device_detach(netdev);
       
  4727 
       
  4728 	if (netif_running(netdev)) {
       
  4729 		WARN_ON(test_bit(__E1000_RESETTING, &adapter->flags));
       
  4730 		e1000_down(adapter);
       
  4731 	}
       
  4732 
       
  4733 #ifdef CONFIG_PM
       
  4734 	retval = pci_save_state(pdev);
       
  4735 	if (retval)
       
  4736 		return retval;
       
  4737 #endif
       
  4738 
       
  4739 	status = er32(STATUS);
       
  4740 	if (status & E1000_STATUS_LU)
       
  4741 		wufc &= ~E1000_WUFC_LNKC;
       
  4742 
       
  4743 	if (wufc) {
       
  4744 		e1000_setup_rctl(adapter);
       
  4745 		e1000_set_rx_mode(netdev);
       
  4746 
       
  4747 		/* turn on all-multi mode if wake on multicast is enabled */
       
  4748 		if (wufc & E1000_WUFC_MC) {
       
  4749 			rctl = er32(RCTL);
       
  4750 			rctl |= E1000_RCTL_MPE;
       
  4751 			ew32(RCTL, rctl);
       
  4752 		}
       
  4753 
       
  4754 		if (hw->mac_type >= e1000_82540) {
       
  4755 			ctrl = er32(CTRL);
       
  4756 			/* advertise wake from D3Cold */
       
  4757 			#define E1000_CTRL_ADVD3WUC 0x00100000
       
  4758 			/* phy power management enable */
       
  4759 			#define E1000_CTRL_EN_PHY_PWR_MGMT 0x00200000
       
  4760 			ctrl |= E1000_CTRL_ADVD3WUC |
       
  4761 				E1000_CTRL_EN_PHY_PWR_MGMT;
       
  4762 			ew32(CTRL, ctrl);
       
  4763 		}
       
  4764 
       
  4765 		if (hw->media_type == e1000_media_type_fiber ||
       
  4766 		   hw->media_type == e1000_media_type_internal_serdes) {
       
  4767 			/* keep the laser running in D3 */
       
  4768 			ctrl_ext = er32(CTRL_EXT);
       
  4769 			ctrl_ext |= E1000_CTRL_EXT_SDP7_DATA;
       
  4770 			ew32(CTRL_EXT, ctrl_ext);
       
  4771 		}
       
  4772 
       
  4773 		/* Allow time for pending master requests to run */
       
  4774 		e1000_disable_pciex_master(hw);
       
  4775 
       
  4776 		ew32(WUC, E1000_WUC_PME_EN);
       
  4777 		ew32(WUFC, wufc);
       
  4778 		pci_enable_wake(pdev, PCI_D3hot, 1);
       
  4779 		pci_enable_wake(pdev, PCI_D3cold, 1);
       
  4780 	} else {
       
  4781 		ew32(WUC, 0);
       
  4782 		ew32(WUFC, 0);
       
  4783 		pci_enable_wake(pdev, PCI_D3hot, 0);
       
  4784 		pci_enable_wake(pdev, PCI_D3cold, 0);
       
  4785 	}
       
  4786 
       
  4787 	e1000_release_manageability(adapter);
       
  4788 
       
  4789 	/* make sure adapter isn't asleep if manageability is enabled */
       
  4790 	if (adapter->en_mng_pt) {
       
  4791 		pci_enable_wake(pdev, PCI_D3hot, 1);
       
  4792 		pci_enable_wake(pdev, PCI_D3cold, 1);
       
  4793 	}
       
  4794 
       
  4795 	if (hw->phy_type == e1000_phy_igp_3)
       
  4796 		e1000_phy_powerdown_workaround(hw);
       
  4797 
       
  4798 	if (netif_running(netdev))
       
  4799 		e1000_free_irq(adapter);
       
  4800 
       
  4801 	/* Release control of h/w to f/w.  If f/w is AMT enabled, this
       
  4802 	 * would have already happened in close and is redundant. */
       
  4803 	e1000_release_hw_control(adapter);
       
  4804 
       
  4805 	pci_disable_device(pdev);
       
  4806 
       
  4807 	pci_set_power_state(pdev, pci_choose_state(pdev, state));
       
  4808 
       
  4809 	return 0;
       
  4810 }
       
  4811 
       
  4812 #ifdef CONFIG_PM
       
  4813 static int e1000_resume(struct pci_dev *pdev)
       
  4814 {
       
  4815 	struct net_device *netdev = pci_get_drvdata(pdev);
       
  4816 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  4817 	struct e1000_hw *hw = &adapter->hw;
       
  4818 	u32 err;
       
  4819 
       
  4820 	if (adapter->ecdev)
       
  4821 		return -EBUSY;
       
  4822 
       
  4823 	pci_set_power_state(pdev, PCI_D0);
       
  4824 	pci_restore_state(pdev);
       
  4825 
       
  4826 	if (adapter->need_ioport)
       
  4827 		err = pci_enable_device(pdev);
       
  4828 	else
       
  4829 		err = pci_enable_device_mem(pdev);
       
  4830 	if (err) {
       
  4831 		printk(KERN_ERR "e1000: Cannot enable PCI device from suspend\n");
       
  4832 		return err;
       
  4833 	}
       
  4834 	pci_set_master(pdev);
       
  4835 
       
  4836 	pci_enable_wake(pdev, PCI_D3hot, 0);
       
  4837 	pci_enable_wake(pdev, PCI_D3cold, 0);
       
  4838 
       
  4839 	if (netif_running(netdev)) {
       
  4840 		err = e1000_request_irq(adapter);
       
  4841 		if (err)
       
  4842 			return err;
       
  4843 	}
       
  4844 
       
  4845 	e1000_power_up_phy(adapter);
       
  4846 	e1000_reset(adapter);
       
  4847 	ew32(WUS, ~0);
       
  4848 
       
  4849 	e1000_init_manageability(adapter);
       
  4850 
       
  4851 	if (netif_running(netdev))
       
  4852 		e1000_up(adapter);
       
  4853 
       
  4854 	if (!adapter->ecdev) netif_device_attach(netdev);
       
  4855 
       
  4856 	/* If the controller is 82573 and f/w is AMT, do not set
       
  4857 	 * DRV_LOAD until the interface is up.  For all other cases,
       
  4858 	 * let the f/w know that the h/w is now under the control
       
  4859 	 * of the driver. */
       
  4860 	if (hw->mac_type != e1000_82573 ||
       
  4861 	    !e1000_check_mng_mode(hw))
       
  4862 		e1000_get_hw_control(adapter);
       
  4863 
       
  4864 	return 0;
       
  4865 }
       
  4866 #endif
       
  4867 
       
  4868 static void e1000_shutdown(struct pci_dev *pdev)
       
  4869 {
       
  4870 	e1000_suspend(pdev, PMSG_SUSPEND);
       
  4871 }
       
  4872 
       
  4873 #ifdef CONFIG_NET_POLL_CONTROLLER
       
  4874 /*
       
  4875  * Polling 'interrupt' - used by things like netconsole to send skbs
       
  4876  * without having to re-enable interrupts. It's not called while
       
  4877  * the interrupt routine is executing.
       
  4878  */
       
  4879 static void e1000_netpoll(struct net_device *netdev)
       
  4880 {
       
  4881 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  4882 
       
  4883 	disable_irq(adapter->pdev->irq);
       
  4884 	e1000_intr(adapter->pdev->irq, netdev);
       
  4885 	enable_irq(adapter->pdev->irq);
       
  4886 }
       
  4887 #endif
       
  4888 
       
  4889 /**
       
  4890  * e1000_io_error_detected - called when PCI error is detected
       
  4891  * @pdev: Pointer to PCI device
       
  4892  * @state: The current pci conneection state
       
  4893  *
       
  4894  * This function is called after a PCI bus error affecting
       
  4895  * this device has been detected.
       
  4896  */
       
  4897 static pci_ers_result_t e1000_io_error_detected(struct pci_dev *pdev,
       
  4898 						pci_channel_state_t state)
       
  4899 {
       
  4900 	struct net_device *netdev = pci_get_drvdata(pdev);
       
  4901 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  4902 
       
  4903 	netif_device_detach(netdev);
       
  4904 
       
  4905 	if (netif_running(netdev))
       
  4906 		e1000_down(adapter);
       
  4907 	pci_disable_device(pdev);
       
  4908 
       
  4909 	/* Request a slot slot reset. */
       
  4910 	return PCI_ERS_RESULT_NEED_RESET;
       
  4911 }
       
  4912 
       
  4913 /**
       
  4914  * e1000_io_slot_reset - called after the pci bus has been reset.
       
  4915  * @pdev: Pointer to PCI device
       
  4916  *
       
  4917  * Restart the card from scratch, as if from a cold-boot. Implementation
       
  4918  * resembles the first-half of the e1000_resume routine.
       
  4919  */
       
  4920 static pci_ers_result_t e1000_io_slot_reset(struct pci_dev *pdev)
       
  4921 {
       
  4922 	struct net_device *netdev = pci_get_drvdata(pdev);
       
  4923 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  4924 	struct e1000_hw *hw = &adapter->hw;
       
  4925 	int err;
       
  4926 
       
  4927 	if (adapter->need_ioport)
       
  4928 		err = pci_enable_device(pdev);
       
  4929 	else
       
  4930 		err = pci_enable_device_mem(pdev);
       
  4931 	if (err) {
       
  4932 		printk(KERN_ERR "e1000: Cannot re-enable PCI device after reset.\n");
       
  4933 		return PCI_ERS_RESULT_DISCONNECT;
       
  4934 	}
       
  4935 	pci_set_master(pdev);
       
  4936 
       
  4937 	pci_enable_wake(pdev, PCI_D3hot, 0);
       
  4938 	pci_enable_wake(pdev, PCI_D3cold, 0);
       
  4939 
       
  4940 	e1000_reset(adapter);
       
  4941 	ew32(WUS, ~0);
       
  4942 
       
  4943 	return PCI_ERS_RESULT_RECOVERED;
       
  4944 }
       
  4945 
       
  4946 /**
       
  4947  * e1000_io_resume - called when traffic can start flowing again.
       
  4948  * @pdev: Pointer to PCI device
       
  4949  *
       
  4950  * This callback is called when the error recovery driver tells us that
       
  4951  * its OK to resume normal operation. Implementation resembles the
       
  4952  * second-half of the e1000_resume routine.
       
  4953  */
       
  4954 static void e1000_io_resume(struct pci_dev *pdev)
       
  4955 {
       
  4956 	struct net_device *netdev = pci_get_drvdata(pdev);
       
  4957 	struct e1000_adapter *adapter = netdev_priv(netdev);
       
  4958 	struct e1000_hw *hw = &adapter->hw;
       
  4959 
       
  4960 	e1000_init_manageability(adapter);
       
  4961 
       
  4962 	if (netif_running(netdev)) {
       
  4963 		if (e1000_up(adapter)) {
       
  4964 			printk("e1000: can't bring device back up after reset\n");
       
  4965 			return;
       
  4966 		}
       
  4967 	}
       
  4968 
       
  4969 	netif_device_attach(netdev);
       
  4970 
       
  4971 	/* If the controller is 82573 and f/w is AMT, do not set
       
  4972 	 * DRV_LOAD until the interface is up.  For all other cases,
       
  4973 	 * let the f/w know that the h/w is now under the control
       
  4974 	 * of the driver. */
       
  4975 	if (hw->mac_type != e1000_82573 ||
       
  4976 	    !e1000_check_mng_mode(hw))
       
  4977 		e1000_get_hw_control(adapter);
       
  4978 
       
  4979 }
       
  4980 
       
  4981 /* e1000_main.c */