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